/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap');


:root {
  --main-text-color: #297FCA;
  --secondary-color: #3FA2F7;
}


#secondary {
  display: none !important;
}
#primary {
  width: 100%;
  margin: 0;
}

body {
}

/**
 * Booking form styles
*/
.playground-booking-form {
  display: flex;
  font-family: var(--main-font-family);
  gap: 20px;
  align-items: flex-start;
}

/**
 * Booking room styles
*/
.booking-room-list {
  width: auto;
  color: black;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex-grow: 1;
}

.booking-room-list .booking-room-item {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
}

.booking-room-list .booking-room-title {
  font-size: 18px;
  line-height: 28px;
  width: 100%;
  padding-bottom: 10px;
  color: black;
  font-size: 18px;
  font-family: Mona;
  font-weight: 700;
}

.booking-room-list .booking-room-img {
  margin-right: 15px;
  flex: 0;
  position: relative;
}

.booking-room-list .booking-room-img img {
  width: auto !important;
  min-width: 150px;
  max-width: 250px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
}
.booking-room-list .booking-room-more-link {
  position: absolute;
  bottom: 15px;
  width: 90%;
  background: #fff;
  padding: 6px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  display: block;
  margin-left: 5%;
  margin-right: 5%;
  border-radius: 15px;
  color: #000;
  font-weight: 600;
  font-family: poppins;
}

.booking-room-list .select-room-time {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: flex-start;
}

.booking-room-list .room-time-row {
  border-bottom: 1px solid #fff200;
  font-size: 14px;
  line-height: 25px;
  display: flex;
  gap: 15px;
  padding-top: 7px;
  padding-bottom: 7px;
}

.booking-room-list .room-time-row .room-select {
  margin-left: auto;
}

.booking-room-list .room-time-row .room-time {
  min-width: 110px;
  text-align: left;
}

.booking-room-list .room-radio-button {
  margin-left: -10px;
}

.booking-room-list .room-radio-button input {
  margin: 0;
  margin-inline-end: 0;
}

.booking-room-list .room-day,
.booking-room-list .room-select {
  text-transform: capitalize;
}

.booking-room-list .room-time-row:last-child {
  border-bottom: 0px;
}
/**
  * Booking form calendar styles
*/
.playground-booking-form .booking-calendar {
  width: 35%;
  border: 1px solid #fff200;
  padding: 15px 10px;
  border-radius: 15px;;
}

.playground-booking-form .ui-datepicker-calendar {
  margin: 0;
}

.playground-booking-form .ui-datepicker-calendar td,
.playground-booking-form .ui-datepicker-calendar th {
  padding: 0;
  text-align: center;
  font-size: 14px;
  color: black;
  font-weight: 700;
  background: none;
  border: 0;
}

.playground-booking-form .ui-datepicker-calendar th {
  padding-top: 10px;
  padding-bottom: 10px;
  border: 0 !important;
}

.playground-booking-form .ui-datepicker-calendar td span,
.playground-booking-form .ui-datepicker-calendar td a {
  border: 1px solid #D5D4DF;
  line-height: 44px;
  width: 44px;
  display: block;
  color: black;
  text-decoration: none;
  border-radius: 50%;
  margin: auto;
}

.playground-booking-form .ui-datepicker-calendar td {
  padding: 5px;
}

.playground-booking-form .ui-datepicker-calendar td.ui-state-disabled span {
  background: #F2F3F7;
  color: #A8A8A8;
}

.playground-booking-form .ui-datepicker-calendar td .ui-state-active {
  background: #fff200;
}

.playground-booking-form .ui-datepicker-header {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 20px;
  color: balck;
  font-weight: 700;
  font-size: 18px;
  text-transform: capitalize;
}

.playground-booking-form .ui-datepicker-prev,
.playground-booking-form .ui-datepicker-next {
  display: inline-block;
  width: 14px;
  height: 14px;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  order: 3;
  margin-left: 15px;
  margin-right: 15px;
  line-height: 600%;

  border: solid black;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  margin-top: 6px;
}

.playground-booking-form .ui-datepicker-prev {
  order: 2;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}
.playground-booking-form .ui-datepicker-next {
  order: 2;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.playground-booking-form .ui-datepicker-title {
  text-align: left;
  width: 100%;
  order: 1;
}

.playground-booking-form thead th {
  border-top: 1px solid var(--secondary-color);

}
/**
 * Progressbar styles
*/
.playground-progresbar {
  --line-position: 53px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 16px;
  line-height: 19px;
  color: var(--main-text-color);
  font-family: var(--main-font-family);
  font-weight: 500;
  position: relative;
}

.playground-progresbar .line {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff200;
  top: var(--line-position);
  z-index: 1;
}

.playground-progresbar .step {
  text-align: center;
  width: 25%;
  position: relative;
  color: black;
  font-size: 14px;
  font-weight: 400;
}

.playground-progresbar .step::after {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid;
  border-color: #000;
  background: #fff;
  display: block;
  content: "";
  position: absolute;
  top: calc(var(--line-position) - 5px);
  left: calc(50% - 5px);
  z-index: 2;
}

.playground-progresbar .icon {
  font-weight: 400;
  width: 24px;
  height: 24px;
  line-height: 20px;
  margin: auto;
  margin-bottom: 50px;
  border: 1px solid #D5D4DF;
  border-radius: 50%;
  font-size: 14px;
  text-align: center;
  
}

.playground-progresbar .step.active {
  font-weight: 600;
}


.checkmark {
  font-family: arial;
  -ms-transform: scaleX(-1) rotate(-35deg); /* IE 9 */
  -webkit-transform: scaleX(-1) rotate(-35deg); /* Chrome, Safari, Opera */
  transform: scaleX(-1) rotate(-35deg);
}

.playground-progresbar .step.active .icon {
  border-color: #fff200;
}


.playground-progresbar .step .icon.done {
  border-color: #fff200;
  background-color: #fff200;
}

/**
  * Timer
  */
.playground-time-left {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background: var(--secondary-color);
  border-radius: 20px;
  max-width: 300px;
  padding: 20px;
  color: #fff;
  z-index: 1000;
}
.playground-time-left .time-left {
  font-size: 20px;
}


/**
 * Minicart
 */

.playground-minicart {
  border: 1px solid var(--wd-title-color);
}

.playground-deposit-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 0px;
}
.playground-deposit-options .deposit-option {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 10px;
}
.playground-deposit-options .deposit-option div > * {
  display: block;
}

/**
  * Loader
*/
.lds-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ripple div {
  position: absolute;
  border: 4px solid #cef;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}
@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 0;
  }
  4.9% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 0;
  }
  5% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}

:is(.blockOverlay,.wd-loader-overlay):after {
  display: none !important;
}

.hide-on-desktop {
  display: none !important;
}

@media only screen and (max-width: 767px) {
  .playground-progresbar .step {
    font-size: 10px;
    font-weight: 600;
  }

  .playground-progresbar .step .title {
    transform: rotate(45deg);
  }

  .playground-progresbar .step::after {
    left: calc(12px);
  }

  .playground-progresbar .icon {
    margin-left: 5px;
    margin-bottom: 65px;
  }

  .playground-booking-form {
    flex-direction: column;
  }
  .playground-booking-form .booking-calendar {
    width: 100%;
  }
  .playground-booking-form .ui-datepicker-calendar td {
    padding: 3px;
    font-size: 12px;
  }
  .playground-booking-form .ui-datepicker-calendar td span, .playground-booking-form .ui-datepicker-calendar td a {
    width: 28px;
    line-height: 28px;
  }
  .booking-room-list .booking-room-img {
    flex: 100%;
    margin: 0;
    margin-bottom: 10px;
  }
  .booking-room-list .booking-room-img img {
    width: 100%;
    max-width: 100%;
  }
  .playground-checkout  {
    flex-direction: column !important;
  }
  body .hide-on-desktop {
    display: block !important;
  }
}
