@import url(https://fonts.bunny.net/css?family=Poppins);
.calendar-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.calendar-container .calendar-container-top {
  width: 366px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.calendar-container .calendar-container-top .left {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.calendar-container .calendar-container-top .right {
  color: #BB4B3A;
  text-decoration-line: underline;
}
.calendar-container .calendar-container-bottom {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.calendar-container .calendar-container-bottom .arrow-area {
  width: 60px;
  height: 64px;
  border-radius: 4px;
  border: 1px solid #e8ecef;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.calendar-container .calendar-container-bottom .arrow-area .arrow-area-left {
  width: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.calendar-container .calendar-container-bottom .arrow-area .arrow-area-left .next-prev-text {
  width: 100%;
  /* height: 40px; */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4e565a;
}
.calendar-container .calendar-container-bottom .arrow-area .arrow-area-left .total-event-quantity {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  color: #fff;
  background-color: #4e565a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calendar-container .calendar-container-bottom .active-week-section {
  height: 100%;
  min-width: 240px;
  border-radius: 4px;
  border: 1px solid var(--Pb360-red, #BB4B3A);
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calendar-container .calendar-container-bottom .active-week-section .eachday {
  width: 34px;
  height: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.calendar-container .calendar-container-bottom .active-week-section .eachday .day {
  width: 100%;
  height: 14px;
  color: #4E565A;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calendar-container .calendar-container-bottom .active-week-section .eachday .day.active {
  color: #BB4B3A;
}
.calendar-container .calendar-container-bottom .active-week-section .eachday .date {
  width: 24px;
  height: 24px;
  color: #4E565A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calendar-container .calendar-container-bottom .active-week-section .eachday .date.active {
  color: #fff;
  background-color: #BB4B3A;
}
.calendar-container .calendar-container-bottom .active-week-section .eachday .quantity-section {
  width: 100%;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calendar-container .calendar-container-bottom .active-week-section .eachday .quantity-section .quantity {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  color: #fff;
  background-color: #4e565a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calendar-container .calendar-container-bottom .active-week-section .eachday .quantity-section .quantity.active {
  background-color: #BB4B3A;
}

.events-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.events-container .filter-section {
  width: 366px;
  height: 36px;
  border-radius: 18.5px;
  border: 1px solid #A2ABB1;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.events-container .events-section {
  width: 366px;
  max-height: calc(100dvh - 230px);
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.events-container .events-section .event {
  width: 100%;
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.events-container .events-section .event .event-header {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
}
.events-container .events-section .event .event-card {
  width: 100%;
  background: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 4px 12px;
}
.events-container .events-section .event .event-card .top {
  width: 100%;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.events-container .events-section .event .event-card .top .title {
  color: #393939;
}
.events-container .events-section .event .event-card .top .event-status {
  display: flex;
  align-items: center;
  gap: 4px;
}
.events-container .events-section .event .event-card .bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.events-container .events-section .event .event-card .bottom .club-picture {
  width: 88px;
  height: 88px;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}
.events-container .events-section .event .event-card .bottom .club-picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.events-container .events-section .event .event-card .bottom .event-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.events-container .events-section .event .event-card .bottom .event-description .attendee-count {
  font-weight: 600;
  color: #00ac30;
}
.events-container .events-section .event .event-card .bottom .event-description .attendee-count.full {
  color: #ff0000;
}
.events-container .events-section .event .no-activities {
  width: 92px;
  height: 2px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.events-container .events-section .event .expiring-membership-section {
  width: 100%;
  height: 92px;
  border-radius: 4px;
  background: #FFD42A;
  padding: 4px;
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  gap: 4px;
}
.events-container .events-section .event .expiring-membership-section .left {
  width: 278px;
  gap: 2px;
  display: flex;
  flex-direction: column;
}
.events-container .events-section .event .expiring-membership-section .left .header {
  width: 100%;
}
.events-container .events-section .event .expiring-membership-section .left .info {
  width: 100%;
  height: 90px;
  white-space: normal;
}
.events-container .events-section .event .expiring-membership-section .right {
  width: 74pxpx;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.events-container .events-section .event .expiring-membership-section .right .price {
  width: 100%;
}
.events-container .events-section .event .expiring-membership-section .right .renew-btn {
  width: 111px;
  height: 46px;
  border-radius: 4px;
  background: #BB4B3A;
  color: #fff;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.events-container .events-section .event .expiring-membership-section .right .renew-btn.not-clickable {
  background: #cccccc;
}
.events-container .events-section .event-placeholder {
  width: 100%;
  height: 670px;
  flex: 0 0 auto;
  background-color: transparent;
  border: none;
}

.sliding-popup-section {
  z-index: 5;
  width: 375px;
  min-height: 300px;
  padding: 24px 20px;
  border-radius: 20px 20px 0px 0px;
  border: 2px solid #a2abb1;
  background: #e8ecef;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  bottom: -500px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
}
.sliding-popup-section.active {
  bottom: 0;
}
.sliding-popup-section .close-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: -52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8ecef;
  border: 2px solid #a2abb1;
}
.sliding-popup-section .filter-activities-with-club-section {
  width: 100%;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.sliding-popup-section .filter-activities-with-club-section .filter-row {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sliding-popup-section .filter-activities-with-club-section .filter-row .header {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.sliding-popup-section .filter-activities-with-club-section .filter-row .dropdown-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.sliding-popup-section .filter-activities-with-club-section .filter-row .dropdown-section .dropdown-display-area {
  width: 74px;
  height: 48px;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  background-color: #fff;
}
.sliding-popup-section .filter-activities-with-club-section .filter-row .dropdown-section .dropdown-display-area.full {
  width: 100%;
  border-radius: 4px;
  border: 1px solid #a2abb1;
}
.sliding-popup-section .filter-activities-with-club-section .filter-row .dropdown-section .dropdown-display-area .dropdown-arrow {
  position: absolute;
  right: 15px;
}
.sliding-popup-section .filter-activities-with-club-section .filter-row .dropdown-section .dropdown-display-area .dropdown-display-box {
  width: 100%;
  height: 100%;
  padding-left: 15px;
  display: flex;
  align-items: center;
}
.sliding-popup-section .filter-activities-with-club-section .filter-row .dropdown-section .dropdown-box {
  z-index: 5;
  height: 0;
  width: 100%;
  border-radius: 4px;
  border: 0px solid #a2abb1;
  background: #fff;
  transition: all 0.3s linear;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  /* gap: 14px; */
  position: absolute;
  top: 43px;
}
.sliding-popup-section .filter-activities-with-club-section .filter-row .dropdown-section .dropdown-box.active {
  height: 165px;
  border: 1px solid #a2abb1;
}
.sliding-popup-section .filter-activities-with-club-section .filter-row .dropdown-section .rows {
  width: 100%;
  padding: 8px 15px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sliding-popup-section .filter-activities-with-club-section .filter-row .dropdown-section .rows .row {
  width: 100%;
  height: 24px;
  min-height: 24px;
  cursor: pointer;
}
.sliding-popup-section .filter-activities-with-club-section .filter-row .dropdown-section .rows .row label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sliding-popup-section .filter-activities-with-club-section .react-calendar-section {
  margin-top: 12px;
  border-radius: 8px;
  overflow: hidden;
}
.sliding-popup-section .filter-activities-with-club-section .react-calendar-section .react-calendar {
  border: none;
}
.sliding-popup-section .filter-activities-with-club-section .react-calendar-section .react-calendar__tile.react-calendar__tile--active.react-calendar__tile--range.react-calendar__tile--rangeStart.react-calendar__tile--rangeEnd.react-calendar__tile--rangeBothEnds.react-calendar__month-view__days__day {
  background-color: #BB4B3A;
  border-radius: 12px;
  color: #fff;
  border: none;
  text-align: center;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: 0.5px;
}
.sliding-popup-section .filter-activities-with-club-section .react-calendar-section .react-calendar__tile.react-calendar__tile--now.react-calendar__month-view__days__day {
  background-color: #fff;
  color: #4E565A;
  border: 1px solid #4E565A;
  border-radius: 12px;
  text-align: center;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.5px;
}
.sliding-popup-section .add-a-new-player-section.active {
  display: flex;
}

.buttons {
  width: 336px;
  height: 52px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: absolute;
  bottom: 10px;
}
.buttons .button {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  border: 2px solid #BB4B3A;
  background-color: transparent;
  color: #BB4B3A;
  text-align: center;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 113.2%;
}
.buttons .button.active {
  color: #fff;
  background-color: #BB4B3A;
}

.general-text {
  text-align: center;
  vertical-align: middle;
  font-family: Poppins;
  font-style: normal;
  line-height: normal;
}

.left {
  text-align: left;
}

.fs-8 {
  font-size: 8px;
}

.fs-10 {
  font-size: 10px;
}

.fs-12 {
  font-size: 12px;
}

.fs-14 {
  font-size: 14px;
}

.fs-16 {
  font-size: 16px;
}

.fs-17 {
  font-size: 17px;
}

.fs-18 {
  font-size: 18px;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.my-activities-container {
  width: 100%;
  height: calc(100dvh - 60px);
  padding: 8px 0;
  background: #F3F6F8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

input[type=checkbox] {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  vertical-align: text-top;
  border: 1px solid #b6b6b6;
}

input:checked {
  accent-color: #c95d4d;
  border: none;
}

.page-cover {
  background: rgba(0, 0, 0, 0.66);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: none;
}
.page-cover.active {
  display: block;
}

/* // Bootstrap
@import 'bootstrap/scss/bootstrap'; */
