@use "@/src/assets/scss/variables" as *;
@use "@/src/assets/scss/partial" as *;

// Start Font CSS

// @font-face {
//   font-family: "Manrope";
//   src: url("../fonts/Manrope-ExtraBold.woff2") format("woff2"),
//     url("../fonts/Manrope-ExtraBold.woff") format("woff");
//   font-weight: $fw800;
//   font-style: normal;
//   font-display: swap;
// }

// @font-face {
//   font-family: "Manrope";
//   src: url("../fonts/Manrope-SemiBold.woff2") format("woff2"),
//     url("../fonts/Manrope-SemiBold.woff") format("woff");
//   font-weight: $fw600;
//   font-style: normal;
//   font-display: swap;
// }

// @font-face {
//   font-family: "Manrope";
//   src: url("../fonts/Manrope-Bold.woff2") format("woff2"),
//     url("../fonts/Manrope-Bold.woff") format("woff");
//   font-weight: $fw700;
//   font-style: normal;
//   font-display: swap;
// }

// @font-face {
//   font-family: "Manrope";
//   src: url("../fonts/Manrope-Medium.woff2") format("woff2"),
//     url("../fonts/Manrope-Medium.woff") format("woff");
//   font-weight: $fw500;
//   font-style: normal;
//   font-display: swap;
// }

// @font-face {
//   font-family: "Manrope";
//   src: url("../fonts/Manrope-Light.woff2") format("woff2"),
//     url("../fonts/Manrope-Light.woff") format("woff");
//   font-weight: $fw300;
//   font-style: normal;
//   font-display: swap;
// }

// @font-face {
//   font-family: "Manrope";
//   src: url("../fonts/Manrope-Regular.woff2") format("woff2"),
//     url("../fonts/Manrope-Regular.woff") format("woff");
//   font-weight: $fw400;
//   font-style: normal;
//   font-display: swap;
// }

// @font-face {
//   font-family: "Manrope";
//   src: url("../fonts/Manrope-ExtraLight.woff2") format("woff2"),
//     url("../fonts/Manrope-ExtraLight.woff") format("woff");
//   font-weight: $fw200;
//   font-style: normal;
//   font-display: swap;
// }

// End Font CSS

// Common CSS
* {
  box-sizing: border-box;
}

html,
body {
  scrollbar-width: auto;
  scrollbar-color: $primaryColor rgba($primaryColor, 0.1);
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: rgba($primaryColor, 0.1);
  border-radius: 200px;
}

::-webkit-scrollbar-thumb {
  background: $primaryColor;
  border-radius: 200px;
}

// ::-webkit-scrollbar {
//   width: 8px;
//   height: 8px;
//   border-radius: 200px;
// }
// ::-webkit-scrollbar-track {
//   background: rgba($color: $primaryColor, $alpha: 0.1);
//   border-radius: 200px;
// }

// ::-webkit-scrollbar-thumb {
//   background: $primaryColor;
//   border-radius: 200px;
// }

// ::-webkit-scrollbar-thumb:hover {
//   background: $primaryColor;
//   opacity: 1;
// }

:focus-visible {
  outline: none;
}

html,
body,
input,
select,
textarea,
button {
  font-family: var(--font-manrope);
}

body {
  overflow-x: hidden;
  font-size: $fs16;
  line-height: 24px;
  font-weight: $fw400;
  color: $black;
  padding: 0;
  margin: 0;
  margin: 0;

  &.modal-open {
    overflow: hidden;

    @media (min-width: $xl) {
      padding-right: 16px;
    }
  }

  &.OverflowHidden {
    overflow: hidden;
  }

  @media (min-width: $lg) {
    &.OverflowHidden {
      overflow: auto;
    }
  }
}

a {
  color: $primaryColor;
  text-decoration: none;
  transition: all 0.4s;

  &:hover {
    transition: all 0.4s;
  }
}

button {
  cursor: pointer;
}

iframe {
  margin: 0;
  display: block;
  border: none;
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
  margin-top: 0;
  margin-bottom: 16px;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 100%;
  padding: 0 16px;
  margin: 0 auto;

  @media (min-width: $lg) {
    max-width: 1000px;
  }

  @media (min-width: $xl) {
    max-width: 1200px;
  }

  @media (min-width: $xxl) {
    max-width: 1350px;
  }

  @media (min-width: $xxxl) {
    max-width: 1600px;
  }
}

.container-fluid {
  width: 100%;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}

.navMenu {
  li {
    a {
      &.active {
        font-weight: $fw700;
      }
    }
  }
}

/* Typography */
h1,
.h1 {
  font-weight: $fw700;
  font-size: $fs36;
  line-height: normal;

  @media (min-width: $xsm) {
    font-size: $fs40;
  }

  @media (min-width: $sm) {
    font-size: $fs46;
  }

  @media (min-width: $md) {
    font-size: $fs56;
  }

  @media (min-width: $xxl) {
    font-size: $fs76;
  }

  @media (min-width: $xxxl) {
    font-size: $fs80;
  }
}

h2,
.h2 {
  font-weight: $fw700;
  font-size: $fs28;
  line-height: normal;

  @media (min-width: $sm) {
    font-size: $fs36;
  }

  @media (min-width: $md) {
    font-size: $fs46;
  }

  @media (min-width: $xl) {
    font-size: $fs50;
  }

  @media (min-width: $xxl) {
    font-size: $fs56;
  }
}

h3,
.h3 {
  font-weight: $fw700;
  font-size: $fs24;
  line-height: normal;

  @media (min-width: $md) {
    font-size: $fs28;
  }

  @media (min-width: $xl) {
    font-size: $fs30;
  }

  @media (min-width: $xxl) {
    font-size: $fs42;
  }
}

h4,
.h4 {
  font-weight: $fw700;
  font-size: $fs22;
  line-height: normal;

  @media (min-width: $md) {
    font-size: $fs24;
  }

  @media (min-width: $xl) {
    font-size: $fs26;
  }

  @media (min-width: $xxl) {
    font-size: $fs32;
  }
}

h5,
.h5 {
  font-weight: $fw700;
  font-size: $fs20;
  line-height: normal;

  @media (min-width: $md) {
    font-size: $fs22;
  }

  @media (min-width: $xl) {
    font-size: $fs24;
  }

  @media (min-width: $xxl) {
    font-size: $fs26;
  }
}

h6,
.h6 {
  font-weight: $fw700;
  font-size: $fs18;
  line-height: normal;

  @media (min-width: $md) {
    font-size: $fs20;
  }

  @media (min-width: $xl) {
    font-size: $fs22;
  }

  @media (min-width: $xxl) {
    font-size: $fs24;
  }
}

p {
  font-size: $fs16;
  line-height: normal;
  font-weight: $fw400;

  @media (min-width: $lg) {
    text-align: justify;
  }
}

.fs-20 {
  font-size: $fs16;
  line-height: normal;

  @media (min-width: $lg) {
    font-size: $fs18;
  }

  @media (min-width: $xxl) {
    font-size: $fs20;
  }
}

.fs-18 {
  font-size: $fs16;
  line-height: normal;

  @media (min-width: $xl) {
    font-size: $fs18;
  }
}

.fs-16 {
  line-height: normal;
  font-size: $fs14;
  @media (min-width: $xl) {
    font-size: $fs16;
  }
}

.fs-14 {
  line-height: normal;
  font-size: $fs14;

  @media (min-width: $xl) {
    font-size: $fs16;
  }
}

.fs-12 {
  line-height: normal;
  font-size: $fs12;
}

// Padding and Margin
.pt112 {
  padding-top: 40px;

  @media (min-width: $sm) {
    padding-top: 50px;
  }

  @media (min-width: $md) {
    padding-top: 60px;
  }

  @media (min-width: $lg) {
    padding-top: 80px;
  }

  @media (min-width: $xl) {
    padding-top: 112px;
  }
}

.pb112 {
  padding-bottom: 40px;

  @media (min-width: $sm) {
    padding-bottom: 50px;
  }

  @media (min-width: $md) {
    padding-bottom: 60px;
  }

  @media (min-width: $lg) {
    padding-bottom: 80px;
  }

  @media (min-width: $xl) {
    padding-bottom: 112px;
  }
}

.ptb112 {
  padding: 40px 0px;

  @media (min-width: $sm) {
    padding: 50px 0px;
  }

  @media (min-width: $md) {
    padding: 60px 0px;
  }

  @media (min-width: $lg) {
    padding: 80px 0px;
  }

  @media (min-width: $xl) {
    padding: 112px 0px;
  }
}

.mt112 {
  margin-top: 40px;

  @media (min-width: $sm) {
    margin-top: 50px;
  }

  @media (min-width: $md) {
    margin-top: 60px;
  }

  @media (min-width: $lg) {
    margin-top: 80px;
  }

  @media (min-width: $xl) {
    margin-top: 112px;
  }
}

.mb112 {
  margin-bottom: 40px;

  @media (min-width: $sm) {
    margin-bottom: 50px;
  }

  @media (min-width: $md) {
    margin-bottom: 60px;
  }

  @media (min-width: $lg) {
    margin-bottom: 80px;
  }

  @media (min-width: $xl) {
    margin-bottom: 112px;
  }
}

.mtb112 {
  margin: 40px 0px;

  @media (min-width: $sm) {
    margin: 50px 0px;
  }

  @media (min-width: $md) {
    margin: 60px 0px;
  }

  @media (min-width: $lg) {
    margin: 80px 0px;
  }

  @media (min-width: $xl) {
    margin: 112px 0px;
  }
}

.main-mt {
  margin-top: 60px;

  @media (min-width: $lg) {
    margin-top: 70px;
  }

  @media (min-width: $xxl) {
    margin-top: 88px;
  }
}

// Button Css Start
.SecondaryBtn,
.PrimaryBtn,
.SecondaryBorderedBtn,
.WhiteBtn,
.WhiteBorderedBtn {
  font-weight: $fw600;
  padding: 10px 17px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  outline: none;
  font-size: $fs16;
  line-height: 22px;
  border-width: 1px;
  border-style: solid;
  border-radius: 100px;
  transition: 0.3s all;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  @media (min-width: $lg) {
    height: 45px;
    line-height: 24px;
    padding: 13px 33px;
  }

  @media (min-width: $xxl) {
    font-size: $fs16;
  }

  @media (min-width: $xxxl) {
    height: 50px;
    font-size: $fs18;
  }
}

.SecondaryBtn {
  color: $whiteColor;
  border-color: $secondaryColor;
  background-color: $secondaryColor;

  &:hover {
    border-color: $hoverSecondaryBgColor;
    background-color: $hoverSecondaryBgColor;
  }
}

.SecondaryBorderedBtn {
  color: $secondaryColor;
  border-color: $secondaryColor;
  background-color: $whiteColor;

  &:hover {
    color: $whiteColor;
    background-color: $secondaryColor;
  }
}

.PrimaryBtn {
  color: $whiteColor;
  border-color: $primaryColor;
  background-color: $primaryColor;

  &:hover {
    border-color: $secondaryColor;
    background-color: $secondaryColor;
  }
}

.WhiteBtn {
  background-color: $whiteColor;
  color: $grey344Color;
  border-color: $whiteColor;

  &:hover {
    border-color: $hoverWhiteBgColor;
    background-color: $hoverWhiteBgColor;
  }
}

.WhiteBorderedBtn {
  color: $whiteColor;
  border-color: #ffffff45;
  background-color: transparent;

  &:hover {
    background-color: $hoverWhiteBorderBtnBgColor;
  }
}

// Button CSS End

// End Common CSS

.main-swiper {
  width: 100%;
  height: 100%;

  .swiper-slide {
    text-align: center;
    font-size: $fs18;
    background-color: $whiteColor;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide {
    img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  .swiper-button-prev,
  .swiper-button-next {
    &:after {
      font-size: $fs26;
      color: $whiteColor;
      font-weight: $fw800;

      @media (min-width: $sm) {
        font-size: $fs36;
      }
    }
  }
}

.swiper-slider {
  overflow: hidden;

  .swiper-wrapper {
    display: flex;
    align-items: stretch;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 42px;
    height: 42px;
    border-radius: 100%;
    overflow: hidden;
    background-color: $whiteColor;
    border: 1px solid $primaryColor;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: static;
    margin-top: 10px;
    transition: all 0.3s ease-in-out;

    @media (min-width: $xl) {
      width: 50px;
      height: 50px;
    }

    @media (min-width: $xxxl) {
      width: 57px;
      height: 57px;
    }

    &::before {
      content: "";
      position: absolute;
      display: inline-block;
      width: 18px;
      height: 18px;
      mask-size: contain;
      -webkit-mask-size: contain;
      mask-repeat: no-repeat;
      -webkit-mask-repeat: no-repeat;
      transition: all 0.3s ease-in-out;
      background-color: $primaryColor;

      @media (min-width: $xl) {
        width: 22px;
        height: 22px;
      }

      @media (min-width: $xxxl) {
        width: 24px;
        height: 24px;
      }
    }

    &:hover {
      background-color: $primaryColor;

      &::before {
        background-color: $whiteColor;
      }
    }

    &::after {
      display: none;
    }
  }

  .swiper-button-prev {
    &::before {
      mask-image: url("../../../public/images/icon-left-arrow.svg");
      -webkit-mask-image: url("../../../public/images/icon-left-arrow.svg");
      mask-position: center;
    }
  }

  .swiper-button-next {
    margin-left: 10px;

    @media (min-width: $lg) {
      margin-left: 16px;
    }

    &::before {
      mask-image: url("../../../public/images/icon-right-arrow.svg");
      -webkit-mask-image: url("../../../public/images/icon-right-arrow.svg");
      mask-position: center;
    }
  }
}

// Fullscreen Slider
.FullScreenSliderWrap {
  .swiper {
    overflow: visible;

    .swiper-slide {
      height: auto;
    }

    .swiper-button-prev,
    .swiper-button-next {
      position: relative;
      left: 43%;
      transform: translateX(-50%);
      margin-top: 40px;

      @media (min-width: $xsm) {
        left: 45%;
      }

      @media (min-width: $sm) {
        left: 46%;
      }

      @media (min-width: $md) {
        left: 47%;
      }

      @media (min-width: $xl) {
        left: 48%;
      }
    }
  }
}

// Testimonial Slider button
.TestimonialSliderWrap {
  .swiper {
    padding-bottom: 20px;

    @media (min-width: $sm) {
      padding-top: 20px;
    }

    @media (min-width: $md) {
      padding-bottom: 60px;
    }

    @media (min-width: $xl) {
      padding-bottom: 80px;
    }
  }

  .custom-prev,
  .custom-next {
    width: 42px;
    height: 42px;
    border-radius: 100%;
    overflow: hidden;
    background-color: $whiteColor;
    border: 1px solid $primaryColor;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0px;
    transition: 0.3s all;

    @media (min-width: $xl) {
      width: 50px;
      height: 50px;
    }

    @media (min-width: $xxxl) {
      width: 57px;
      height: 57px;
    }

    &:hover {
      background-color: #ff927f1f;
    }

    &::before {
      content: "";
      position: absolute;
      display: inline-block;
      width: 18px;
      height: 18px;
      mask-size: contain;
      -webkit-mask-size: contain;
      mask-repeat: no-repeat;
      -webkit-mask-repeat: no-repeat;
      transition: all 0.3s ease-in-out;
      background-color: $primaryColor;

      @media (min-width: $xl) {
        width: 22px;
        height: 22px;
      }

      @media (min-width: $xxxl) {
        width: 24px;
        height: 24px;
      }
    }

    &::after {
      display: none;
    }
  }

  .custom-prev {
    &::before {
      mask-image: url("../../../public/images/icon-left-arrow.svg");
      -webkit-mask-image: url("../../../public/images/icon-left-arrow.svg");
      mask-position: center;
    }
  }

  .custom-next {
    margin-left: 0px;

    &::before {
      mask-image: url("../../../public/images/icon-right-arrow.svg");
      -webkit-mask-image: url("../../../public/images/icon-right-arrow.svg");
      mask-position: center;
    }
  }
}

// Icon CSS Start
.Icon {
  display: block;
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  transition: 0.2s all;
  mask-position: center;
  background-color: $blackColor;
}

.DownArrowIcon {
  display: block;
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  transition: 0.2s all;
  background-color: $whiteColor;
  mask-image: url("../../../public/images/icon-right-arrow.svg");
  -webkit-mask-image: url("../../../public/images/icon-right-arrow.svg");
  mask-position: center;
}

.TwitterIcon {
  background-color: $whiteColor;
  mask-image: url("../../../public/images/twitter-icon.svg");
  -webkit-mask-image: url("../../../public/images/twitter-icon.svg");
}

.FacebookIcon {
  background-color: $whiteColor;
  mask-image: url("../../../public/images/facebook-icon.svg");
  -webkit-mask-image: url("../../../public/images/facebook-icon.svg");
}

.InstagramIcon {
  background-color: $whiteColor;
  mask-image: url("../../../public/images/instagram-icon.svg");
  -webkit-mask-image: url("../../../public/images/instagram-icon.svg");
}

.PinterestIcon {
  background-color: $whiteColor;
  mask-image: url("../../../public/images/pintrest-icon.svg");
  -webkit-mask-image: url("../../../public/images/pintrest-icon.svg");
}

.IconInfo {
  mask-image: url("../../../public/images/info-circle.svg");
  -webkit-mask-image: url("../../../public/images/info-circle.svg");
}

.IconDate {
  mask-image: url("../../../public/images/icon-date.svg");
  -webkit-mask-image: url("../../../public/images/icon-date.svg");
}

.IconPlus {
  mask-image: url("../../../public/images/plus-icon.svg");
  -webkit-mask-image: url("../../../public/images/plus-icon.svg");
}

.IconMinus {
  mask-image: url("../../../public/images/minus-icon.svg");
  -webkit-mask-image: url("../../../public/images/minus-icon.svg");
}

.IconStar {
  mask-image: url("../../../public/images/icon-star.svg");
  -webkit-mask-image: url("../../../public/images/icon-star.svg");
  background-color: #fdb022 !important;
}

.IconBed {
  mask-image: url("../../../public/images/icon-bed.svg");
  -webkit-mask-image: url("../../../public/images/icon-bed.svg");
}

.IconWifi {
  mask-image: url("../../../public/images/icon-wifi.svg");
  -webkit-mask-image: url("../../../public/images/icon-wifi.svg");
}

.IconClose {
  mask-image: url("../../../public/images/icon-close.svg");
  -webkit-mask-image: url("../../../public/images/icon-close.svg");
}

.IconFilter {
  mask-image: url("../../../public/images/icon-filter.svg");
  -webkit-mask-image: url("../../../public/images/icon-filter.svg");
}

.IconChek {
  mask-image: url("../../../public/images/icon-check.svg");
  -webkit-mask-image: url("../../../public/images/icon-check.svg");
  background-color: #17b26a;
}

.IconCross {
  mask-image: url("../../../public/images/icon-cross.svg");
  -webkit-mask-image: url("../../../public/images/icon-cross.svg");
  background-color: #b42318;
}

.IconGoogle {
  mask-image: url("../../../public/images/icon-google.svg");
  -webkit-mask-image: url("../../../public/images/icon-google.svg");
}

.IconFacebook {
  mask-image: url("../../../public/images/icon-facebook.svg");
  -webkit-mask-image: url("../../../public/images/icon-facebook.svg");
}

.IconApple {
  mask-image: url("../../../public/images/icon-apple.svg");
  -webkit-mask-image: url("../../../public/images/icon-apple.svg");
}

.IconQuote {
  mask-image: url("../../../public/images/icon-quote.svg");
  -webkit-mask-image: url("../../../public/images/icon-quote.svg");
}

.IconTick {
  mask-image: url("../../../public/images/icon-tick.svg");
  -webkit-mask-image: url("../../../public/images/icon-tick.svg");
}

.IconHome {
  mask-image: url("../../../public/images/icon-home.svg");
  -webkit-mask-image: url("../../../public/images/icon-home.svg");
}

.IconOwner {
  mask-image: url("../../../public/images/icon-owner.svg");
  -webkit-mask-image: url("../../../public/images/icon-owner.svg");
}

.IconRightArrow {
  mask-image: url("../../../public/images/icon-right-arrow.svg");
  -webkit-mask-image: url("../../../public/images/icon-right-arrow.svg");
}

.IconWorkingSpace {
  mask-image: url("../../../public/images/working-space.svg");
  -webkit-mask-image: url("../../../public/images/working-space.svg");
}

.IconStayHome {
  mask-image: url("../../../public/images/stay-home.svg");
  -webkit-mask-image: url("../../../public/images/stay-home.svg");
}

.IconLogout {
  mask-image: url("../../../public/images/icon-logout.svg");
  -webkit-mask-image: url("../../../public/images/icon-logout.svg");
}

.IconVolume {
  mask-image: url("../../../public/images/icon-volume.svg");
  -webkit-mask-image: url("../../../public/images/icon-volume.svg");
}

.IconGroup {
  mask-image: url("../../../public/images/icon-group.svg");
  -webkit-mask-image: url("../../../public/images/icon-group.svg");
}

.IconLocation {
  mask-image: url("../../../public/images/icon-location.svg");
  -webkit-mask-image: url("../../../public/images/icon-location.svg");
}

.IconMonitor {
  mask-image: url("../../../public/images/icon-monitor.svg");
  -webkit-mask-image: url("../../../public/images/icon-monitor.svg");
}

.IconDesk {
  mask-image: url("../../../public/images/icon-desk.svg");
  -webkit-mask-image: url("../../../public/images/icon-desk.svg");
}

.IconChair {
  mask-image: url("../../../public/images/icon-chair.svg");
  -webkit-mask-image: url("../../../public/images/icon-chair.svg");
}

.IconLamp {
  mask-image: url("../../../public/images/icon-lamp.svg");
  -webkit-mask-image: url("../../../public/images/icon-lamp.svg");
}

.IconSpeaker {
  mask-image: url("../../../public/images/icon-speaker.svg");
  -webkit-mask-image: url("../../../public/images/icon-speaker.svg");
}

.IconKitchen {
  mask-image: url("../../../public/images/icon-kitchen.svg");
  -webkit-mask-image: url("../../../public/images/icon-kitchen.svg");
}

.IconWashingMachine {
  mask-image: url("../../../public/images/icon-washing-machine.svg");
  -webkit-mask-image: url("../../../public/images/icon-washing-machine.svg");
}

.IconDishwasher {
  mask-image: url("../../../public/images/icon-dishwasher.svg");
  -webkit-mask-image: url("../../../public/images/icon-dishwasher.svg");
}

.IconShower {
  mask-image: url("../../../public/images/icon-shower.svg");
  -webkit-mask-image: url("../../../public/images/icon-shower.svg");
}

.IconUmbrella {
  mask-image: url("../../../public/images/icon-umbrella.svg");
  -webkit-mask-image: url("../../../public/images/icon-umbrella.svg");
}

.IconSurfing {
  mask-image: url("../../../public/images/icon-surfing.svg");
  -webkit-mask-image: url("../../../public/images/icon-surfing.svg");
}

.IconHiking {
  mask-image: url("../../../public/images/icon-hiking.svg");
  -webkit-mask-image: url("../../../public/images/icon-hiking.svg");
}

.IconHandshake {
  mask-image: url("../../../public/images/icon-handshake.svg");
  -webkit-mask-image: url("../../../public/images/icon-handshake.svg");
}

.IconYoga {
  mask-image: url("../../../public/images/icon-yoga.svg");
  -webkit-mask-image: url("../../../public/images/icon-yoga.svg");
}

.IconCoin {
  mask-image: url("../../../public/images/icon-coins.svg");
  -webkit-mask-image: url("../../../public/images/icon-coins.svg");
}

.IconPets {
  mask-image: url("../../../public/images/pets-not-allowed.svg");
  -webkit-mask-image: url("../../../public/images/pets-not-allowed.svg");
}

.IconUserGroup {
  mask-image: url("../../../public/images/icon-user-group.svg");
  -webkit-mask-image: url("../../../public/images/icon-user-group.svg");
}

.IconWebcam {
  mask-image: url("../../../public/images/ixon-webcam.svg");
  -webkit-mask-image: url("../../../public/images/ixon-webcam.svg");
}

.IconHeadphone {
  mask-image: url("../../../public/images/icon-headphones.svg");
  -webkit-mask-image: url("../../../public/images/icon-headphones.svg");
}

.IconMouse {
  mask-image: url("../../../public/images/icon-mouse.svg");
  -webkit-mask-image: url("../../../public/images/icon-mouse.svg");
}

.IconKeyboard {
  mask-image: url("../../../public/images/icon-keyboard.svg");
  -webkit-mask-image: url("../../../public/images/icon-keyboard.svg");
}

.IconCharge {
  mask-image: url("../../../public/images/icon-charge.svg");
  -webkit-mask-image: url("../../../public/images/icon-charge.svg");
}

.IconClock {
  mask-image: url("../../../public/images/icon-clock.svg");
  -webkit-mask-image: url("../../../public/images/icon-clock.svg");
}

.IconDeskChair {
  mask-image: url("../../../public/images/icon-desk-chair.svg");
  -webkit-mask-image: url("../../../public/images/icon-desk-chair.svg");
}

.IconGlob {
  mask-image: url("../../../public/images/icon-glob.svg");
  -webkit-mask-image: url("../../../public/images/icon-glob.svg");
}

.IconBottomArrow {
  mask-image: url("../../../public/images/icon-bottom-arrow.svg");
  -webkit-mask-image: url("../../../public/images/icon-bottom-arrow.svg");
}

.IconEyeClose {
  mask-image: url("../../../public/images/icon-eye-close.svg");
  -webkit-mask-image: url("../../../public/images/icon-eye-close.svg");
}

.IconEyeOpenPassword {
  mask-image: url("../../../public/images/icon-eye-open-password.svg");
  -webkit-mask-image: url("../../../public/images/icon-eye-open-password.svg");
}

.IconSearch {
  mask-image: url("../../../public/images/search-icon.svg");
  -webkit-mask-image: url("../../../public/images/search-icon.svg");
}

.IconAccordion {
  mask-image: url("../../../public/images/breadcrumb-arrow.svg");
  -webkit-mask-image: url("../../../public/images/breadcrumb-arrow.svg");
}

.IconSearchMap {
  mask-image: url("../../../public/images/icon-map-view.svg");
  -webkit-mask-image: url("../../../public/images/icon-map-view.svg");
}

.IconSearchList {
  mask-image: url("../../../public/images/icon-list-view.svg");
  -webkit-mask-image: url("../../../public/images/icon-list-view.svg");
}

.IconSort {
  mask-image: url("../../../public/images/icon-sort.svg");
  -webkit-mask-image: url("../../../public/images/icon-sort.svg");
}

.IconDownArrow {
  mask-image: url("../../../public/images/icon-bottom.svg");
  -webkit-mask-image: url("../../../public/images/icon-bottom.svg");
}

.IconTwoUser {
  mask-image: url("../../../public/images/icon-twouser.svg");
  -webkit-mask-image: url("../../../public/images/icon-twouser.svg");
}

.IconHomeNew {
  mask-image: url("../../../public/images/icon-homenew.svg");
  -webkit-mask-image: url("../../../public/images/icon-homenew.svg");
}

.IconExport {
  mask-image: url("../../../public/images/icon-export.svg");
  -webkit-mask-image: url("../../../public/images/icon-export.svg");
}

.IconImport {
  mask-image: url("../../../public/images/icon-import.svg");
  -webkit-mask-image: url("../../../public/images/icon-import.svg");
}

.IconNoSmoke {
  mask-image: url("../../../public/images/icon-no-smoking.svg");
  -webkit-mask-image: url("../../../public/images/icon-no-smoking.svg");
}

.IconSmoke {
  mask-image: url("../../../public/images/icon-smoking.svg");
  -webkit-mask-image: url("../../../public/images/icon-smoking.svg");
}

.IconOneUser {
  mask-image: url("../../../public/images/icon-singleuser.svg");
  -webkit-mask-image: url("../../../public/images/icon-singleuser.svg");
}

.IconPetsAllow {
  mask-image: url("../../../public/images/icon-pets-allow.svg");
  -webkit-mask-image: url("../../../public/images/icon-pets-allow.svg");
}

.IconFowrardArrow {
  mask-image: url("../../../public/images/icon-forward-arrow.svg");
  -webkit-mask-image: url("../../../public/images/icon-forward-arrow.svg");
}

.IconBackArrow {
  mask-image: url("../../../public/images/icon-back-arrow.svg");
  -webkit-mask-image: url("../../../public/images/icon-back-arrow.svg");
}

.IconRecentre {
  mask-image: url("../../../public/images/icon-recentre.svg");
  -webkit-mask-image: url("../../../public/images/icon-recentre.svg");
  height: 20px;
  width: 20px;
}

.IconCurrentLocation {
  mask-image: url("../../../public/images/icon-current-location.svg");
  -webkit-mask-image: url("../../../public/images/icon-current-location.svg");
  height: 20px;
  width: 20px;
}

.IconKidsAllow {
  mask-image: url("../../../public/images/icon-kids-allow.svg");
  -webkit-mask-image: url("../../../public/images/icon-kids-allow.svg");
}

.IconKidsNotAllow {
  mask-image: url("../../../public/images/kids-not-allowed.svg");
  -webkit-mask-image: url("../../../public/images/kids-not-allowed.svg");
}

.IconKitchenUtensils {
  mask-image: url("../../../public/images/icon-kitchen-utensils.svg");
  -webkit-mask-image: url("../../../public/images/icon-kitchen-utensils.svg");
}

.IconOutdoorSpace {
  mask-image: url("../../../public/images/icon-outdoor-space.svg");
  -webkit-mask-image: url("../../../public/images/icon-outdoor-space.svg");
}

.IconOtherAmenities {
  mask-image: url("../../../public/images/icon-other-amenities.svg");
  -webkit-mask-image: url("../../../public/images/icon-other-amenities.svg");
}

.IconUpload {
  mask-image: url("../../../public/images/upload-icon.svg");
  -webkit-mask-image: url("../../../public/images/upload-icon.svg");
}

.IconCreditCard {
  mask-image: url("../../../public/images/credit-card.svg");
  -webkit-mask-image: url("../../../public/images/credit-card.svg");
}

.IconDoc {
  mask-image: url("../../../public/images/doc-icon.svg");
  -webkit-mask-image: url("../../../public/images/doc-icon.svg");
}

.IconImage {
  mask-image: url("../../../public/images/image-icon.svg");
  -webkit-mask-image: url("../../../public/images/image-icon.svg");
}

.IconVideo {
  mask-image: url("../../../public/images/video-icon.svg");
  -webkit-mask-image: url("../../../public/images/video-icon.svg");
}

// Icon CSS End

// input type number arrow remove
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Remove arrows in Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

/* common BoxWrapper */
.boxWrapper {
  background-color: $bgColor;
  border-radius: 10px;
  padding: 12px;

  .titleWrapper {
    text-align: center;
    margin-bottom: 15px;

    @media (min-width: $md) {
      margin-bottom: 20px;
    }

    h4,
    h5 {
      margin: 0 auto;
      width: fit-content;
    }

    p {
      margin: 6px auto;
      color: $grey344Color;
    }
  }
}

// Global Input CSS
form {
  .RowWrap {
    display: flex;
    column-gap: 12px;
    flex-wrap: wrap;

    @media (min-width: $md) {
      column-gap: 15px;
    }

    @media (min-width: $lg) {
      flex-wrap: nowrap;
    }

    @media (min-width: $xl) {
      column-gap: 20px;
    }

    .InputWrapper {
      &:last-child {
        margin-bottom: 20px;
      }
    }
  }

  .InputWrapper {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    width: 100%;
    margin-bottom: 20px;

    @media (min-width: $xl) {
      gap: 10px;
    }

    &:last-child {
      margin-bottom: 0px;
    }

    label {
      font-size: $fs14;
      line-height: 1.2;
      color: $grey344Color;
      font-weight: $fw500;

      @media (min-width: $xxl) {
        font-size: $fs16;
      }
    }

    input,
    textarea {
      min-height: 44px;
      border-radius: 200px;
      background-color: $whiteColor;
      border: 1px solid transparent;
      width: 100%;
      padding: 10px 14px;
      transition: 0.3s ease;
      font-size: $fs16;
      font-weight: $fw400;
      line-height: 1.3;
      color: $blackColor;

      &:focus,
      &:active {
        border-color: $primaryColor;
        box-shadow: 0px 0px 0px 4px #ffe2dd;
      }

      @media (min-width: $xxl) {
        padding: 14px 16px;
      }
    }

    textarea {
      border-radius: 16px;
      min-height: 190px;
      max-height: 250px;
    }
  }
}

/* Common Checkbox & Radio */
.CheckBoxBG {
  background-color: #ffffff80;
  border-radius: 10px;
}

.CommonCheckbox {
  display: flex;
  align-items: center;
  position: relative;
  padding: 8px;
  height: 100%;

  @media (min-width: $xxl) {
    padding: 10px;
  }

  label {
    width: 100%;
    color: $grey344Color;
  }

  input[type="checkbox"],
  input[type="radio"] {
    position: absolute;
    visibility: hidden;
    opacity: 0;

    &+span {
      padding-left: 23px;
      font-size: $fs14;
      font-weight: $fw500;
      line-height: normal;
      word-break: break-word;
      position: relative;
      cursor: pointer;
      color: $grey344Color;

      @media (min-width: $md) {
        padding-left: 25px;
      }

      @media (min-width: $xxl) {
        font-size: $fs16;
      }

      &:before {
        content: "";
        position: absolute;
        height: 16px;
        width: 16px;
        border-radius: 100%;
        border: none;
        left: 0;
        background-color: $bgColor;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        top: 2px;

        @media (min-width: $xxl) {
          top: 3.4px;
        }
      }

      &:after {
        content: "";
        position: absolute;
        width: 4px;
        top: 6px;
        left: 6px;
        height: 7px;
        border: solid $whiteColor;
        border-width: 0 2px 2px 0;
        rotate: 45deg;
        opacity: 0;
        transition: opacity 0.3s ease;

        @media (min-width: $xxl) {
          top: 7px;
        }
      }
    }

    // &[type="radio"]+span {
    //   &:after {
    //     width: 8px;
    //     height: 8px;
    //     border-radius: 100%;
    //     background: white;
    //     transform: none;
    //     left: 6px;
    //     top: 6px;
    //     border: none;
    //   }
    // }
    &:checked+span {
      &:before {
        background: $primaryColor;
        border: none;
      }

      &:after {
        opacity: 1;
      }
    }
  }

  input[type="checkbox"] {
    &+span {
      &:before {
        border-radius: 3px;
      }
    }
  }
}

/* tooltip Main Box */
.CheckBoxBG {
  &:nth-child(even) {
    .tooltipMainBox {
      .hiddenTooltip {
        left: unset;
        right: 0;

        &::before {
          @media (min-width: $md) {
            top: 0;
            left: 50%;
            transform: translate(-50%, 0);
          }
        }
      }
    }
  }
}

.tooltipMainBox {
  display: flex;

  &:hover {
    .hiddenTooltip {
      visibility: visible;
      opacity: 1;
    }
  }

  .tooltipSpan {
    height: 16px;
    width: 16px;
    display: block;
    cursor: pointer;

    @media (min-width: $md) {
      height: 18px;
      width: 18px;
    }

    i {
      background: $grey667Color;
      height: 100%;
      width: 100%;
      display: block;
    }
  }

  .hiddenTooltip {
    visibility: hidden;
    opacity: 0;
    transition: 0.2s ease;
    background-color: $secondaryColor;
    position: absolute;
    top: 50px;
    transform: translate(0, 0);
    left: 0;
    border-radius: 8px;
    padding: 12px;
    height: auto;
    z-index: 5;
    width: 300px;

    p {
      text-align: left !important;
    }

    &.orangetooltip {
      background-color: $secondaryColor;
      top: 35px;
      left: -40px;
      width: 230px;

      @media (min-width: $sm) {
        width: 300px;
        top: 45px;
        left: 0;
      }

      &::before {
        left: 102px;
        background: $secondaryColor;

        @media (min-width: $sm) {
          left: 50px;
        }
      }
    }

    &::before {
      content: "";
      position: absolute;
      top: -3px;
      left: 50px;
      transform: translate(0, 0);
      width: 9px;
      height: 9px;
      background: $secondaryColor;
      z-index: 0;
      rotate: 45deg;
    }

    p {
      color: $whiteColor;
      line-height: normal;
      margin-bottom: 8px;
      font-size: $fs14;

      &.tooltipDescription {
        font-size: $fs14;
      }
    }
  }
}

// Common box grid css
.boxGrid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 12px;

  @media (min-width: $md) {
    gap: 20px 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .CommonCheckbox:nth-last-child(1):nth-child(3),
  .CommonCheckbox:nth-last-child(1):nth-child(5),
  .CommonCheckbox:nth-last-child(1):nth-child(7) {
    @media (min-width: $md) {
      grid-column: span 2;
    }
  }
}

// Dropdown
.DropdownMainBox {
  .customDropdown {

    &.whereSelect {

      .css-13cymwt-control,
      .css-t3ipsp-control {
        background-color: $whiteColor;
      }
    }

    .css-13cymwt-control,
    .css-t3ipsp-control {
      border-radius: 200px;
      padding: 0 16px;
      border: none;
      box-shadow: none;
      background-color: $bgColor;
      cursor: pointer;
      height: 100%;

      @media (min-width: $xxl) {
        // min-height: 51px;
      }

      .css-19bb58m,
      .css-1cf01cf,
      .css-hlgwow {
        margin: 0;
        padding: 0;
        line-height: 1.2;

        input {
          line-height: 1.2 !important;
        }
      }

      .css-1u9des2-indicatorSeparator {
        display: none;
      }

      .css-tj5bde-Svg {
        fill: #475467;
      }
    }

    .css-1nmdiq5-menu,
    .css-14h4o58-menu {
      margin: 0;
      border-radius: 20px;
      background-color: $whiteColor;
      border: none;
      padding: 0;
      overflow: hidden;

      .css-tr4s17-option,
      .css-d7l1ni-option,
      .css-10wo9uf-option {
        border-radius: 200px;
        margin: 2px 0;
        line-height: 1.5;
        color: $grey344Color;
        cursor: pointer;
      }

      .css-tr4s17-option {
        background-color: $primaryColor !important;
        color: $whiteColor;
        position: relative;
        padding-right: 30px;

        &::before {
          content: "";
          position: absolute;
          width: 20px;
          height: 20px;
          display: inline-block;
          right: 8px;
          top: 50%;
          transform: translateY(-50%);
          mask-image: url("../../../public/images/icon-before-check.svg");
          -webkit-mask-image: url("../../../public/images/icon-before-check.svg");
          mask-size: contain;
          -webkit-mask-size: contain;
          background-color: $whiteColor;
        }
      }

      .css-d7l1ni-option {
        background-color: transparent;

        &:hover {
          // opacity: 0.6;
          background-color: $primaryColor !important;
          color: $whiteColor;
        }

        &:focus {
          background-color: $primaryColor !important;
          color: $whiteColor;
        }
      }

      .css-qr46ko {
        max-height: 300px;
        overflow: auto;
        padding: 5px 8px;
      }
    }

    .css-1dimb5e-singleValue,
    input {
      color: $black;
    }

    input,
    textarea {

      &.active,
      &:focus {
        box-shadow: none !important;
        border: none !important;
      }
    }

    .css-1xc3v61-indicatorContainer,
    .css-15lsz6c-indicatorContainer {
      padding: 0;
      padding-left: 10px;
    }

    &.bgWhite {

      .css-1nmdiq5-menu,
      .css-14h4o58-menu,
      .css-t3ipsp-control {
        background-color: $whiteColor !important;
      }

      .css-1cfo1cf {
        color: $white !important;
      }
    }
  }

  &.CountryDropdown {
    input {
      border-top-left-radius: 0px;
      border-bottom-left-radius: 0px;
    }

    .customDropdown {

      .css-13cymwt-control,
      .css-t3ipsp-control {
        background-color: $whiteColor;
        height: 100%;
        border-top-right-radius: 0px !important;
        border-bottom-right-radius: 0px !important;
        padding-right: 0px !important;

        input {
          box-shadow: none !important;

          &:focus,
          &:active {
            box-shadow: none !important;
          }
        }
      }

      .css-1nmdiq5-menu {
        .css-tr4s17-option {
          padding: 8px 12px;
        }
      }

      .css-1xc3v61-indicatorContainer,
      .css-15lsz6c-indicatorContainer {
        padding-right: 0px;
        padding-left: 0px;
      }
    }
  }
}

/* Global Badge*/
.badge {
  background-color: $primaryColor;
  border-radius: 15px;
  padding: 4px 12px;
  color: $whiteColor;

  &.primaryBadge {
    background-color: $primaryColor;
  }

  &.whiteBadge {
    background-color: $whiteFBColor;
    color: $grey344Color;
    padding: 6px 12px;

    i {
      background-color: $grey344Color;
    }
  }
}

/* Room Details Listing*/
.roomDetailsLists {
  li {
    min-height: 32px;

    span {
      font-weight: $fw500;

      &:nth-child(2) {
        color: $primaryColor;
      }
    }

    i {
      width: 18px;
      height: 18px;

      &.lines {
        width: 5px;
        height: 6px;
        border-radius: 100px;
        background-color: $green;

        @media (min-width: $xsm) {
          width: 15px;
        }

        @media (min-width: $sm) {
          width: 20px;
        }

        @media (min-width: $md) {
          width: 24px;
        }
      }
    }
  }
}

// Popup
.PopupWrapper {
  .h3 {
    font-size: $fs22;

    @media (min-width: $sm) {
      font-size: $fs24;
    }

    @media (min-width: $xxl) {
      font-size: $fs30;
    }
  }

  .popupDivider {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    color: $grey667Color;
    margin: 12px 0px;
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;

    @media (min-width: $xl) {
      margin: 20px 0px;
    }

    span {
      position: relative;
      z-index: 1;
      padding: 0px 12px;
      background-color: $whiteColor;
      font-size: $fs16;
    }

    &::after {
      position: absolute;
      content: "";
      width: 100%;
      height: 1px;
      background-color: #d0d5dd;
    }
  }

  .popupForm {
    .popupFormBody {
      margin-bottom: 22px;
      max-height: 330px;
      overflow-y: auto;

      @media (min-width: $md) {
        max-height: 250px;
      }

      @media (min-width: $xl) {
        max-height: 350px;
        overflow: auto;
      }

      @media (min-width: $xxl) {
        max-height: 420px;
        overflow: auto;
      }

      @media (min-width: $xxxl) {
        max-height: 470px;
        overflow: auto;
      }

      &::-webkit-scrollbar {
        width: 7px;
        height: 7px;
      }

      &::-webkit-scrollbar-track {
        background: #ededed;
        border-radius: 12px;
      }

      &::-webkit-scrollbar-thumb {
        background: $grey344Color;
        border-radius: 12px;
      }

      &::-webkit-scrollbar-thumb:hover {
        background: #555;
        border-radius: 12px;
      }
    }

    .InputWrapper {
      gap: 5px;

      @media (min-width: $xxl) {
        gap: 10px;
      }

      label {
        color: $blackColor;
        font-weight: $fw500;
      }

      input,
      textarea {
        background-color: $bgColor;
        color: $grey344Color;

        &::placeholder {
          color: $grey667Color;
        }

        &:focus,
        &:active {
          box-shadow: none;

          &::placeholder {
            opacity: 80%;
          }
        }
      }
    }
  }

  .loginLink {
    font-size: $fs16;
    color: $grey667Color;
    text-align: center;
    margin-top: 20px;
  }

  // Global Input CSS
  form {
    display: flex;
    flex-direction: column;
    gap: 20px;

    .InputWrapper {
      display: flex;
      flex-direction: column;
      gap: 6px;

      label {
        font-size: $fs14;
        line-height: 1.2;
        color: $grey344Color;
        font-weight: $fw500;

        @media (min-width: $xxl) {
          font-size: $fs16;
        }
      }

      input {
        min-height: 44px;
        border-radius: 200px;
        background-color: $bgColor;
        border: 1px solid transparent;
        width: 100%;
        padding: 10px 14px;
        transition: 0.3s ease;
        font-size: $fs16;
        font-weight: $fw400;
        line-height: 1.3;
        color: $blackColor;

        &:focus,
        &:active {
          border-color: $secondaryColor;
          box-shadow: 0px 0px 0px 4px #ffe2dd;
        }
      }
    }
  }
}

.authLayout {
  form {
    display: flex;
    flex-direction: column;
    gap: 24px;

    .InputWrapper {
      margin-bottom: 0px;
      gap: 6px;

      input {
        background-color: $whiteColor;
        height: 44px;
        font-size: $fs16;
        line-height: 1.3;
      }
    }
  }
}

// primaryBtn
.primaryBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
  width: 100%;
  min-height: 44px;
  text-align: center;
  font-size: $fs16;
  line-height: 1.5;
  color: $whiteColor;
  font-weight: $fw700;
  font-family: inherit;
  background-color: $secondaryColor;
  border-radius: 200px;
  padding: 6px 15px;
  transition: 0.3s ease;
  border: 1px solid $secondaryColor;
  outline: none;
  box-shadow: none;
  cursor: pointer;

  @media (min-width: $md) {
    min-height: 48px;
    padding: 10px 15px;
  }

  .icon {
    background-color: $whiteColor;
  }

  &:hover {
    background: #68b0ab;
  }
}

// AuthAlreadyBox
.AuthAlreadyBox {
  text-align: center;
  color: $grey85;
  margin-top: 32px;

  p {
    margin: 0;

    a {
      color: $secondaryColor;
    }
  }
}

// error message css
.error-msg {
  font-size: $fs12;
  line-height: 1;
  color: #f04438;
  position: absolute;
  bottom: -15px;
}

.username-available {
  font-size: $fs12;
  font-weight: $fw500;
  line-height: 1;
  color: #006A71;
  position: absolute;
  top: calc(100% + 3px);
}

.StepsDots {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 90px;
  margin: 32px auto 0;
}

.StepsDots span {
  height: 18px;
  width: 18px;
  border-radius: 100%;
  border: 2px solid transparent;
  position: relative;
}

.StepsDots span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #006a71;
  position: absolute;
}

.StepsDots span.active {
  border-color: #006a71;
}

/* Location Badge */
.locationWrap {
  line-height: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  // gap: 20px;
  .locationBadge {
    font-size: $fs16;
    line-height: normal;
    display: inline-block;
    background-color: $primaryColor;
    color: $whiteFC;
    border-radius: 200px;
    padding: 4px 12px;
    margin-bottom: 6px;
  }

  .locationAnimate {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    background-color: rgba($color: $primaryColor, $alpha: 0.1);

    &::before,
    &::after {
      content: "";
      position: absolute;
      border-radius: 100%;
    }

    &::before {
      width: 8px;
      height: 8px;
      background-color: $primaryColor;
      z-index: 0;
    }

    &::after {
      width: 24px;
      height: 24px;
      background-color: rgba($color: $primaryColor, $alpha: 0.2);
    }
  }

  .mapPropertyBox {
    border-radius: 10px;
    padding: 10px;
    display: flex;
    gap: 8px;
    max-width: 280px;
    background-color: $whiteColor;
    margin-bottom: 5px;
    position: relative;
    box-shadow: 0px 10.89px 14.52px -3.63px #10182814;
    cursor: pointer;

    &::before {
      content: "";
      position: absolute;
      bottom: -8px;
      left: 50%;
      transform: translate(-50%, 0);
      width: 9px;
      height: 9px;
      background: $whiteColor;
      z-index: 0;
      rotate: 45deg;
    }

    .mapPropertyImage {
      width: 44px;
      height: 44px;
      overflow: hidden;
      border-radius: 8px;

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }

    .mapPropertyDetail {
      width: calc(100% - 53px);

      p {
        margin-bottom: 0px;
        color: $grey344Color;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }
    }
  }
}

/* Arrow Button */
.roundedArrowBtn {
  width: 50px;
  height: 50px;
  background-color: $primaryColor;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  transition: 0.3s ease-in-out;
  cursor: pointer;

  @media (min-width: $xxl) {
    width: 57px;
    height: 57px;
  }

  .Icon {
    background-color: $whiteFC;
    width: 20px;
    height: 20px;
    transform: rotate(-45deg);

    @media (min-width: $xxl) {
      width: 24px;
      height: 24px;
    }
  }

  &:hover {
    background-color: rgba($color: $primaryColor, $alpha: 0.8);
  }
}

// Pattern With Background
.patternWithbg {
  position: relative;
  background-color: $whiteFC;
  border-radius: 40px;
  padding: 20px;
  z-index: 1;

  &::before {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    mask-image: url("../../../public/images/top-right-pattern.svg");
    -webkit-mask-image: url("../../../public/images/top-right-pattern.svg");
    mask-size: cover;
    -webkit-mask-size: cover;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    right: 0;
    top: 0;
    background-color: $bgColor;
    z-index: 1;

    @media (min-width: $xxl) {
      width: 100px;
      height: 100px;
    }
  }

  .mainTitle {
    max-width: calc(100% - 70px);
  }

  &.propertyImageBox {
    padding: 0;

    &::before {
      background-color: $whiteColor;
    }
  }
}

// Calender Global css
.react-datepicker-wrapper {
  max-width: 95px;
  display: inline-block;
  padding: 0;
  border: 0;
}

.react-datepicker__tab-loop {
  position: absolute !important;
}

// Custom date picker css
.react-datepicker-wrapper {
  max-width: 120px;

  input {
    width: 100% !important;
  }

  .react-datepicker__input-container {
    input {
      font-size: $fs14 !important;

      @media (min-width: $xxl) {
        font-size: $fs16 !important;
      }
    }
  }
}

.react-datepicker__tab-loop {
  position: absolute !important;
}

.react-datepicker-popper {
  top: 0px !important;
  cursor: default !important;

  h2 {
    line-height: normal !important;
  }
}

.detailsListWrap,
.bookingSearchWrap {
  .react-datepicker-popper {
    right: -220px !important;
  }

  @media (min-width: $lg) {
    .react-datepicker-popper {
      right: -240px !important;
    }
  }
}

.bookingSearchWrap {
  .react-datepicker-popper {
    right: -180px !important;
  }

  &.srollActive {
    .react-datepicker-popper {
      right: -295px !important;
    }
  }
}

.disabled-btn {
  .react-datepicker-wrapper {
    .react-datepicker__input-container {
      button {
        cursor: default;
      }
    }
  }
}

.bookNowForm {
  .datePicker {
    .react-datepicker__tab-loop {
      .react-datepicker-popper {
        left: unset !important;
        width: 260px;
        right: -200px !important;

        @media (min-width: $xsm) {
          width: 280px;
          right: -210px !important;
        }

        .react-datepicker {
          width: 100%;

          .react-datepicker__day {
            height: 30px !important;
          }
        }
      }
    }
  }
}

// Default Datepicker position with default width
.defaultWidthDatepicker {
  .datePicker {
    .react-datepicker__tab-loop {
      .react-datepicker-popper {
        width: 260px;
        left: 55px !important;

        @media (min-width: $xsm) {
          width: 280px;
          left: 65px !important;
        }

        .react-datepicker {
          width: 100%;

          .react-datepicker__day {
            height: 35px !important;
          }
        }
      }
    }
  }
}

.swalContent {
  &.bookNowForm {
    .datePicker {
      .react-datepicker__tab-loop {
        .react-datepicker-popper {
          top: 100px !important;
          left: unset !important;
          width: 260px;
          right: -190px !important;

          @media (min-width: $xsm) {
            top: unset !important;
            width: 280px;
            right: -200px !important;
          }
        }
      }
    }
  }
}

// Datepicker
.datePicker {
  .react-datepicker-wrapper {
    width: 100%;
  }

  .react-datepicker__input-container {
    .react-datepicker__close-icon {
      padding: 0;
      width: 16px;

      &::after {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 17px;
        background-color: $whiteColor;
        border: 1px solid $primaryColor;
        color: $primaryColor;
        padding: 0px;
        border-radius: 100px;
        height: 16px;
        width: 100%;
      }
    }
  }

  // .react-datepicker__day--range-start {
  //   background-color: $hoverSecondaryBgColor !important;
  //   // border-radius: 100px 0px 0px 100px !important;
  //   color: $whiteColor !important;

  //   &:hover {
  //     background-color: $hoverSecondaryBgColor !important;
  //   }
  // }

  // .react-datepicker__day--range-end {
  //   background-color: $hoverSecondaryBgColor !important;
  //   // border-radius: 0px 100px 100px 0px !important;
  //   color: $whiteColor !important;

  //   &:hover {
  //     background-color: $hoverSecondaryBgColor !important;
  //   }
  // }

  .react-datepicker {
    cursor: default;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 0;
    background-color: $whiteColor;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 18%);
    padding: 10px;
    overflow: hidden;
    border-radius: 20px;
    overflow: auto;

    @media (min-width: $sm) {
      border-radius: 20px;
    }

    @media (min-width: $md) {
      height: auto;
      top: unset;
      flex-direction: row;
      border-radius: 25px;
    }

    @media (min-width: $xxl) {
      border-radius: 30px;
    }

    &.react-datepicker--time-only {
      padding: 16px 0;
      background-color: $blackColor;
    }

    .react-datepicker__month-container {
      width: 100%;
      font-family: var(--font-manrope);

      .react-datepicker__header {
        padding: 0;
        background-color: transparent;
        border: 0;

        div {
          border-radius: 100px;
          background-color: $bgColor !important;

          &.react-datepicker__day-names,
          .react-datepicker__day-name {
            background-color: transparent !important;
          }
        }

        span {
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 16px;
          font-weight: $fw600;

          @media (min-width: $xxl) {
            font-size: 18px;
          }
        }

        button {
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 100%;
          width: 30px;
          height: 30px;
          transition: 0.2s all;
          font-size: 24px;

          &:hover {
            background-color: $primaryColor;
            color: $whiteColor;
          }

          &.react-datepicker__navigation--next {
            right: 18px;
          }

          &.react-datepicker__navigation--previous {
            left: 18px;
          }

          span::before {
            left: -4px;
            top: 10px;
            height: 8px;
            width: 8px;
            border-color: $black;
            border-width: 1px 1px 0 0;
            transition: 0.2s all;
          }
        }

        h2 {
          color: $black;
          font-weight: $fw600;
          font-size: 16px;
          margin-bottom: 0px;
          padding: 10px 0px;
          background: $bgColor;
          border-radius: 100px;

          @media (min-width: $sm) {
            font-size: 18px;
          }
        }

        .react-datepicker__header__dropdown {
          display: flex;
          gap: 12px;
          margin-bottom: 12px;

          @media (min-width: $md) {
            gap: 15px;
            margin-bottom: 16px;
          }

          @media (min-width: $xxl) {
            gap: 18px;
          }

          .react-datepicker__month-dropdown-container,
          .react-datepicker__year-dropdown-container {
            margin: 0;
            width: 100%;
            position: relative;

            &::after {
              content: "";
              position: absolute;
              top: 50%;
              transform: translateY(-50%);
              right: 12px;
              width: 15px;
              height: 15px;
              // background-image: url($arrow-down-icon);
              background-position: center;
              background-repeat: no-repeat;
              background-size: contain;

              @media (min-width: $sm) {
                width: 18px;
                height: 18px;
              }
            }

            select {
              cursor: pointer;
              width: 100%;
              font-family: var(--font-manrope);
              font-size: $fs14;
              font-weight: 400;
              line-height: 1.5;
              padding: 6px 12px;
              border-radius: 68px;
              color: $grey344Color;
              border: 1px solid $whiteColor;
              background-color: transparent;
              height: 40px;
              appearance: none;

              @media (min-width: $sm) {
                font-size: $fs14;
              }

              @media (min-width: $md) {
                height: 50px;
              }

              &:focus {
                border-color: $primaryColor;
              }

              &::placeholder {
                color: $whiteColor;
                opacity: 1;
              }

              option {
                background-color: $black;
              }
            }
          }
        }

        .react-datepicker__day-names {
          display: flex;
          justify-content: space-between;

          .react-datepicker__day-name {
            color: $grey344Color;
            margin: 0;
            font-weight: $fw500;
            font-size: $fs14;
            width: 100%;
          }
        }
      }

      .react-datepicker__month {
        margin: 0;
        padding-top: 15px;
        display: flex;
        flex-direction: column;
        gap: 5px;

        .react-datepicker__week {
          display: flex;
          justify-content: space-between;

          div {
            &:empty {
              // display: none;
              visibility: hidden;
              background-color: transparent;

              &:hover {
                cursor: default;
              }
            }
          }

          .react-datepicker__day {
            cursor: pointer;
            color: $grey344Color;
            margin: 0;
            height: auto;
            border-radius: 0px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: $fs12;
            font-weight: 400 !important;
            height: 35px;
            width: 100%;

            &:hover {
              background-color: #ecf4f3;
              color: #101828;
            }

            @media (min-width: $lg) {
              font-size: $fs14;
            }

            @media (min-width: $xl) {
              height: 45px;
            }

            // &.react-datepicker__day--outside-month,
            // &.react-datepicker__day--disabled {
            //   color: #C7C7C7 !important;
            //   background-color: transparent !important;

            //   &::after {
            //     display: none;
            //   }
            // }

            &.react-datepicker__day--disabled {
              text-decoration: line-through;
            }

            &.react-datepicker__day--keyboard-selected {
              background-color: transparent !important;
            }

            &.react-datepicker__day--selected,
            &.react-datepicker__day--in-range {
              position: relative;
              color: $blackColor;
              font-weight: $fw500;
              background-color: $bgColor;
              // &:last-child{
              //   border-radius: 0px 100px 100px 0px !important;
              // }
              // &:first-child{
              //   border-radius: 100px 0px 0px 100px !important;
              // }
              // &:after{
              //   content: '';
              //   position: absolute;
              //   bottom: -3px;
              //   left: 50%;
              //   transform: translateX(-50%);
              //   width: 6px;
              //   height: 6px;
              //   background-color: $primaryColor;
              //   rotate: 45deg;
              // }
            }

            &.react-datepicker__day--in-selecting-range {
              position: relative;
              background-color: transparent;

              &:hover {
                background-color: #ecf4f3;
              }
            }

            &.react-datepicker__day--in-range,
            &.react-datepicker__day--selected {
              color: $blackColor;
              font-weight: $fw500;
              background-color: $bgColor;

              &:hover {
                background-color: $bgColor;
                color: $blackColor;
              }
            }

            &.react-datepicker__day--outside-month,
            &.react-datepicker__day--disabled {
              color: #c7c7c7;
              background-color: transparent;

              &:hover {
                color: #c7c7c7;
                background-color: transparent;
              }

              &::after {
                display: none;
              }
            }

            &.react-datepicker__day--range-start {
              background-color: $hoverSecondaryBgColor;
              color: $whiteColor;

              &:hover {
                background-color: $hoverSecondaryBgColor;
                color: $whiteColor;
              }
            }

            &.react-datepicker__day--range-end {
              background-color: $hoverSecondaryBgColor;
              color: $whiteColor;

              &:hover {
                background-color: $hoverSecondaryBgColor;
                color: $whiteColor;
              }
            }

            &.react-datepicker__day--today {
              background-color: $primaryColor !important;
              color: $whiteColor !important;
              opacity: 100%;

              &:hover {
                background-color: $primaryColor !important;
                color: $whiteColor !important;
              }
            }
          }
        }
      }
    }
  }

  .react-datepicker-popper {
    top: 10px !important;
    // left: 40px !important;
    // right: inherit !important;

    .react-datepicker__triangle {
      display: none;
    }
  }

  .react-datepicker__day--selected {
    &.react-datepicker__day--disabled {
      background-color: $hoverSecondaryBgColor !important;
      color: $white !important;
    }
  }
}

//
.searchInput {
  .datePicker {
    .react-datepicker__tab-loop {
      .react-datepicker-popper {
        @media (min-width: $md) {
          top: -15px !important;
          left: -120px !important;
          transform: translateX(0%) !important;
        }
      }

      .react-datepicker {
        @media (min-width: $md) {
          width: 500px;
        }

        @media (min-width: $xl) {
          width: 670px;
        }

        .react-datepicker__month-container {
          .react-datepicker__header {
            .react-datepicker__day-names {
              margin-top: 10px;

              .react-datepicker__day-name {
                width: 100%;
              }
            }
          }

          // .react-datepicker__month{
          //   .react-datepicker__week{
          //     .react-datepicker__day{
          //       height: 35px;
          //       @media (min-width: $xl) {
          //           height: 45px;
          //         }
          //     }
          //   }
          // }
        }
      }
    }
  }
}

// Mobile Datepicker
.MobileSearchbarWrapper {
  .dateSelectRow {
    .datePicker {
      .react-datepicker__tab-loop {
        .react-datepicker-popper {
          .react-datepicker {
            width: 100%;
          }
        }
      }
    }

    label {
      .datePicker {
        .react-datepicker__tab-loop {
          .react-datepicker-popper {
            left: 40px !important;
          }
        }
      }

      &:last-child {
        .datePicker {
          .react-datepicker__tab-loop {
            .react-datepicker-popper {
              left: -40px !important;

              @media (min-width: $xsm) {
                left: 40px !important;
              }

              right: inherit !important;
            }
          }
        }
      }
    }
  }
}

// Sort Dropdowm
.sortDropdownWrap {
  .css-b62m3t-container {
    .css-igz222-menu {
      overflow: hidden;
      box-shadow: none;
      border: 1px solid rgb(235, 235, 235);
      border-radius: 20px;
      min-width: 280px;
      right: 0;

      @media (min-width: $sm) {
        min-width: 300px;
      }

      .dropDownOption {

        input[type="checkbox"],
        input[type="radio"] {
          display: none;
          visibility: hidden;
          opacity: 0;
          background-color: $bgColor;

          &+label {
            padding-left: 23px;
            font-size: $fs14;
            font-weight: $fw500;
            line-height: normal;
            word-break: break-word;
            position: relative;
            cursor: pointer;
            color: $grey344Color;

            @media (min-width: $md) {
              padding-left: 25px;
            }

            @media (min-width: $xxl) {
              font-size: $fs16;
            }

            &:before {
              content: "";
              position: absolute;
              height: 16px;
              width: 16px;
              border-radius: 100%;
              border: none;
              left: 0;
              background-color: $bgColor;
              display: flex;
              align-items: center;
              justify-content: center;
              transition: all 0.3s ease;
              top: 2px;

              @media (min-width: $xxl) {
                top: 3.4px;
              }
            }

            &:after {
              content: "";
              position: absolute;
              width: 4px;
              top: 6px;
              left: 6px;
              height: 7px;
              border: solid $whiteColor;
              border-width: 0 2px 2px 0;
              rotate: 45deg;
              opacity: 0;
              transition: opacity 0.3s ease;

              @media (min-width: $xxl) {
                top: 7px;
              }
            }
          }

          &:checked+label {
            &:before {
              background: $primaryColor;
              border: none;
            }

            &:after {
              opacity: 1;
            }
          }
        }

        &:hover {

          input[type="checkbox"],
          input[type="radio"] {
            &+label {
              &:before {
                background-color: $whiteColor;
              }
            }

            &:checked+label {
              &:before {
                background: $primaryColor !important;
              }
            }
          }
        }
      }
    }
  }
}

/* Tabs CSS */
.siteTabsWrap {
  .sitTabsButtons {
    background-color: $bgColor;
    border-radius: 100px;
    padding: 5px;
    display: inline-flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: 16px;

    .tab-button {
      padding: 12px;
      border-radius: 100px;
      font-size: $fs14;
      line-height: 18px;
      font-weight: $fw600;
      text-align: center;
      color: $black;
      min-width: 112px;
      background-color: $whiteColor;
      transition: 0.2s all;
      cursor: pointer;
      outline: none;
      border: none;
      text-decoration: none;

      @media (min-width: $xsm) {
        min-width: 150px;
      }

      @media (min-width: $md) {
        font-size: $fs16;
      }

      &.active {
        background-color: $primaryColor;
        color: $white;
      }
    }
  }

  .tab-content {
    .tab-pane {
      display: none;

      &.active {
        display: block;
      }
    }
  }
}

// Popup Css
.commonPopup {
  .popup-wrapper-body {
    .swalContent {
      .title {
        margin-bottom: 10px;

        &:last-child {
          margin-bottom: 0;
        }
      }
    }
  }
}

// AutoClose Popup
.autoClosepopup {
  .commonPopup {
    .popupWrapper {
      background-color: $whiteColor;
      border-radius: 30px;

      .PopupCloseBtn {
        display: none;
      }
    }
  }
}

// CustomPopup Css
.CustomPopup {
  .overlayBackground {
    backdrop-filter: blur(4px);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 50%, #000000d4 100%);
  }

  .popupWrapper {
    .popupBox {
      --r: 28px;
      --s: 30px;
      --x: 10px;
      --y: 10px;
      background: $whiteColor;
      border-radius: var(--r);
      --_m: /calc(2 * var(--r)) calc(2 * var(--r)) radial-gradient(#000 70%, #0000 72%);
      --_g: conic-gradient(at calc(100% - var(--r)) var(--r),
          #0000 25%,
          #000 0);
      --_d: (var(--s) + var(--r));
      mask: calc(100% - var(--_d) - var(--x)) 0 var(--_m),
        100% calc(var(--_d) + var(--y)) var(--_m),
        radial-gradient(var(--s) at 100% 0, #0000 99%, #000 calc(100% + 1px)) calc(-1 * var(--r) - var(--x)) calc(var(--r) + var(--y)),
        var(--_g) calc(-1 * var(--_d) - var(--x)) 0,
        var(--_g) 0 calc(var(--_d) + var(--y));
      mask-repeat: no-repeat;
    }

    .roundedArrowBtn {
      background-color: $secondaryColor;
      transition: 0.3s ease-in-out;
      width: 57px;
      height: 57px;

      &:hover {
        background-color: $primaryColor;
      }
    }
  }
}

.react-datepicker__month-container {

  .highlighted-day-hover,
  .selected-range {
    background-color: #ecf4f3 !important;
  }
}

input::-webkit-contacts-auto-fill-button {
  visibility: hidden;
  display: none !important;
  pointer-events: none;
  position: absolute;
  right: 0;
}

::-webkit-credentials-auto-fill-button {
  visibility: hidden;
  position: absolute;
  right: 0;
}

// Sort Center
.sortDropdownWrap {
  .css-igz222-menu {
    left: unset !important;
    transform: translateX(0%) !important;
    right: unset !important;
  }
}

.yearOption {
  font-size: $fs14;
  font-weight: $fw600;
  max-width: 100px !important;
  width: 100% !important;
  overflow: hidden;
  max-height: 250px !important;

  option {
    background-color: $whiteColor;
    color: $blackColor;
    font-size: $fs14;
    font-weight: $fw600;
    max-width: 150px !important;
    width: 100% !important;

    cursor: pointer !important;

    &:hover,
    &:focus,
    &:active,
    &:focus-visible {
      background: $secondaryColor !important;
      color: $whiteColor !important;
    }
  }
}

.newTooltip {
  top: unset !important;
  bottom: 30px !important;
  right: -15px !important;
  left: unset !important;
  min-width: unset !important;
  width: 250px !important;
  height: max-content !important;
  background: $secondaryColor !important;
  z-index: 1 !important;

  &::before {
    right: 18px !important;
    bottom: -5px !important;
    left: unset !important;
    top: unset !important;
  }
}

.mainPropertyOverviewBox {
  .newTooltip {
    @media (min-width: $xxl) {
      top: 0 !important;
      bottom: 0 !important;
      right: unset !important;
      left: 35px !important;
      transform: translateY(-50%) !important;
    }

    &::before {
      @media (min-width: $xxl) {
        top: 50% !important;
        right: unset !important;
        left: -6px !important;
        transform: translateY(-50%) !important;
      }
    }
  }
}

// DOB Select year Dropdown
.DOBDropDown {
  .datePicker {
    .react-datepicker {
      .react-datepicker__header {
        .css-qr46ko {
          border-radius: 30px !important;
          background-color: $white !important;
        }

        .css-d7l1ni-option {
          background-color: $white !important;
        }

        .css-10wo9uf-option {
          padding: 5px;
          background-color: $white !important;
          border-radius: 20px !important;
          font-size: $fs14 !important;

          @media (min-width: $md) {
            font-size: $fs16 !important;
          }
        }

        .css-1nmdiq5-menu {
          border-radius: 20px !important;
          background-color: $white !important;
        }

        .css-1nmdiq5-menu {
          .css-d7l1ni-option {
            padding: 5px !important;
          }

          .css-d7l1ni-option:hover,
          .css-tr4s17-option {
            background-color: $primaryColor !important;
            padding: 5px !important;
          }

          .react-select__option--is-selected,
          .react-select__option--is-focused {
            background-color: $primaryColor !important;
            font-size: $fs14 !important;

            @media (min-width: $md) {
              font-size: $fs16 !important;
            }
          }
        }

        .css-t3ipsp-control {
          outline: none !important;
          border: none !important;
          box-shadow: none !important;
          margin-top: 5px !important;
          min-height: 35px !important;
          max-height: 35px !important;
        }

        .css-hlgwow {
          input {
            min-height: 35px !important;
            max-height: 35px !important;
          }
        }

        .css-1dimb5e-singleValue {
          color: $black28 !important;
          font-weight: $fw600 !important;
          font-size: $fs14 !important;

          @media (min-width: $md) {
            font-size: $fs16 !important;
          }
        }
      }

      .css-13cymwt-control {
        border: none !important;
        min-height: 35px !important;
        max-height: 35px !important;
        margin-top: 5px !important;
      }

      .css-1wy0on6 {
        display: none;
      }

      .css-qr46ko {
        max-height: 190px !important;
      }
    }
  }
}

//
.ck-balloon-panel {
  display: none !important;
}


.Toastify {
  position: relative;
  z-index: 99999;
}


.map-container {
  .leaflet-popup-content {
    margin: 0px !important;
  }

  .leaflet-control-container>.leaflet-top {
    .leaflet-control {
      cursor: pointer;
      border: 1px solid $grey344Color;
      border-radius: 5px;
      overflow: hidden;
      padding: 2px;
      background: $white !important;

      a {
        width: 25px !important;

        @media (min-width: $md) {
          width: 30px !important;
        }
      }
    }
  }

  .leaflet-control-attribution {
    display: none !important;
  }
}


.InputBox {
  display: flex;
  flex-wrap: wrap;
  padding: 5px 7px;
  border-radius: 4px;
  min-height: 40px;
  align-items: center;
  gap: 6px 7px;
  background-color: $bgColor;
  border: none;
  border-radius: 20px;

  .tag {
    display: flex;
    align-items: center;
    background-color: $whiteColor;
    padding: 9px 16px;
    font-size: $fs14;
    font-weight: $fw600;
    line-height: 1;
    color: $secondaryColor;
    border-radius: 30px;
    gap: 4px;
    white-space: normal;
    text-wrap: balance;
    word-break: break-word;
  }

  .remove {
    cursor: pointer;
    width: 15px;
    height: 15px;
    background-color: $secondaryColor;

    &:hover {
      background-color: $primaryColor;
    }
  }

  .input {
    flex: 1;
    border: none;
    outline: none;
    min-width: 100px;
    // &:focus{
    //   border: none;
    //   outline: none;
    //   box-shadow: none;
    // }
  }
}


.search-multiple-items {
  .search-items {
    height: 51px;
    padding: 5px 16px;
    justify-content: space-between;

    .InputBox {
      padding: 0;
      flex-wrap: nowrap;
      overflow-x: auto;

      .tag {
        padding: 6px 8px;
        flex-shrink: 0;
        white-space: nowrap;
      }

      .remove {
        width: 11px;
        height: 11px;
      }
    }
  }
}

.search-multiple-items-desktop {
  .search-items-desktop {
    .InputBox {
      padding: 0;
      flex-wrap: nowrap;
      overflow-x: auto;
      background-color: transparent;
      min-height: auto;
      scrollbar-width: auto;
      scrollbar-color: rgba($color: $primaryColor, $alpha: 0.1);

      .tag {
        padding: 6px 8px;
        flex-shrink: 0;
        white-space: nowrap;
        background-color: $secondaryColor;
        color: $white;
      }

      .remove {
        width: 11px;
        height: 11px;
        background-color: $white;

        &:hover {
          background-color: $primaryColor;
        }
      }
    }
  }
}

.children-dropdown {
  .DropdownMainBox {
    .customDropdown {

      .css-13cymwt-control,
      .css-t3ipsp-control {
        padding: 0 12px;
        border: 1px solid transparent;
        transition: border 0.2s ease, box-shadow 0.2s ease;

        // When input inside is focused
        &:focus-within {
          border-color: $primaryColor;
          box-shadow: 0 0 0 1px $primaryColor;
        }

      }

      .css-1nmdiq5-menu {

        .css-d7l1ni-option:hover,
        .css-tr4s17-option {
          background-color: $primaryColor !important;
        }

        .react-select__option--is-focused {
          background-color: $primaryColor !important;
          color: $whiteColor !important;
        }
      }


      .css-1xc3v61-indicatorContainer,
      .css-15lsz6c-indicatorContainer {
        padding-left: 3px;
      }

      input {
        width: auto;
      }
    }
  }

  .error-msg {
    bottom: -12px;
  }
}

/* Toggle Button*/
.togglebtn {
  width: 36px;
  height: 20px;
  background-color: $bgColor;
  border-radius: 12px;
  position: relative;
  padding: 2px;
  cursor: pointer;
  display: inline-flex;
  transition: 0.3s ease-in-out;

  .round {
    width: 16px;
    height: 16px;
    background-color: $primaryColor;
    border-radius: 100%;
    position: absolute;
    left: 2px;
    transition: 0.3s ease-in-out;
  }

  input {
    display: none;

    &:checked {
      ~.round {
        left: calc(100% - 18px);
        transition: 0.3s ease-in-out;
      }
    }
  }

  // &:has(input:checked){
  //   background-color: $primaryColor;
  // }
}

.children-dropdown {
  .DropdownMainBox {
    .customDropdown {
      .css-1nmdiq5-menu {
        .css-qr46ko {
          max-height: 135px !important;
        }
      }
    }
  }
}

.durationTypeDropdown {
  .customDropdown {
    height: 43px;

    .css-13cymwt-control,
    .css-t3ipsp-control {
      border: 1px solid transparent;
      transition: border 0.2s ease, box-shadow 0.2s ease;

      // When input inside is focused
      &:focus-within {
        border-color: $primaryColor;
        box-shadow: 0 0 0 1px $primaryColor;
      }

    }

    .css-1nmdiq5-menu {

      .css-d7l1ni-option:hover,
      .css-tr4s17-option {
        background-color: $primaryColor !important;
      }

      .react-select__option--is-focused {
        background-color: $primaryColor !important;
        color: $whiteColor !important;
      }
    }
  }
}


.reviewMainWrapper {
  .reviewLeftWrapper {
    .commonTabsButtonWrap {
      align-items: flex-end;

      @media (min-width: $xxxl) {
        gap: 10px;
      }

      .commonTabsButton {
        flex-direction: column;
        padding: 16px 6px;

        @media (min-width: $xxxl) {
          flex-direction: row;
        }

        i {
          width: 20px !important;
          height: 20px !important;
        }

        span {
          font-size: $fs14;

          @media (min-width: $xxl) {
            font-size: $fs16;
          }
        }
      }
    }
  }
}

// .scrollbarwidth-thin {
//   scrollbar-width: thin;
// }

.break-content {
  &:only-child {
    word-break: break-all !important;
  }
}

.break-content {

  p,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  span,
  a {
    word-break: break-all !important;
  }
}

.gm-style-iw.gm-style-iw-c {
  padding: 0 !important;
}

.gm-style-iw-chr {
  .gm-style-iw-ch {
    display: none !important;
  }
}

gmp-internal-camera-control {
  display: none !important;
}

.gm-ui-hover-effect {
  position: absolute !important;
  z-index: 1;
  right: 6px;
  top: 6px;
  width: 20px !important;
  height: 20px !important;

  span {
    width: 20px !important;
    height: 20px !important;
    margin: 0px !important;
  }
}

.gm-style-iw-d {
  overflow: hidden !important;
}

.notesForGuest {
  p {
    margin-bottom: 16px;
  }

  ul,
  ol {
    padding-left: 20px;

    &:not(:first-child) {
      margin-top: 16px;
    }

    li {
      &:not(:last-child) {
        margin-bottom: 16px;
      }
    }
  }

  ul {
    li {
      list-style-type: disc;
    }
  }

  ol {
    li {
      list-style-type: decimal;
    }
  }
}

figure {

  table {
    border: 1px solid black;
    border-collapse: collapse;

    th,
    td {
      border: 1px solid black;
      border-collapse: collapse;
      padding: 8px 10px;
    }
  }
}

.searchPage {
  z-index: 9;
}

.filterActive.searchPage {
  z-index: 20;
}

.searchPage.stickyTop {
  top: -10px;

  @media (min-width: 425px) {
    top: 5px;
  }

  @media (min-width: $xsm) {
    top: -15px;
  }

  @media (min-width: 523px) {
    top: 3px;
  }

  @media (min-width: $md) {
    top: 0px;
  }

  @media (min-width: $lg) {
    top: 10px;
  }

  @media (min-width: $xl) {
    top: 3px;
  }

  @media (min-width: $xxl) {
    top: 22px;
  }
}

.book-now-section {

  h4,
  .h4 {
    font-weight: $fw700;
    font-size: $fs22;
    line-height: normal;

    @media (min-width: $md) {
      font-size: $fs22;
    }

    @media (min-width: $xl) {
      font-size: $fs24;
    }

    @media (min-width: $xxl) {
      font-size: $fs24;
    }
  }
}

i.icon-info {
  mask-repeat: no-repeat;
}

.about-you-section {
  .h4 {
    font-weight: $fw700;
    font-size: $fs18;
    line-height: normal;

    @media (min-width: $md) {
      font-size: $fs20;
    }

    @media (min-width: $xl) {
      font-size: $fs22;
    }

    @media (min-width: $xxl) {
      font-size: $fs24;
    }
  }

  h4 {
    font-weight: $fw700;
    font-size: $fs18;
    line-height: normal;

    @media (min-width: $md) {
      font-size: $fs20;
    }

    @media (min-width: $xl) {
      font-size: $fs22;
    }

    @media (min-width: $xxl) {
      font-size: $fs24;
    }
  }

  .DropdownMainBox {
    .customDropdown {

      .css-13cymwt-control,
      .css-t3ipsp-control {
        background-color: $hoverSecondaryBorderBtnBgColor !important;

        @media (min-width: $xxl) {
          // min-height: 51px;
        }
      }

      .css-1nmdiq5-menu,
      .css-14h4o58-menu {
        background-color: $whiteColor;

        .css-tr4s17-option,
        .css-d7l1ni-option,
        .css-10wo9uf-option {
          color: $grey344Color;
        }

        .css-tr4s17-option {
          background-color: $primaryColor !important;
          color: $whiteColor;
        }

        .css-d7l1ni-option {
          background-color: transparent;

          &:hover {
            // opacity: 0.6;
            background-color: $primaryColor !important;
            color: $whiteColor;
          }

          &:focus {
            background-color: $primaryColor !important;
            color: $whiteColor;
          }
        }
      }

      .css-1dimb5e-singleValue,
      input {
        color: $black;
      }

      input,
      textarea {

        &.active,
        &:focus {
          box-shadow: none !important;
          border: none !important;
        }
      }
    }
  }
}

.booking-summary {
  h2 {
    font-weight: $fw700;
    font-size: $fs18;
    line-height: normal;

    @media (min-width: $md) {
      font-size: $fs20;
    }

    @media (min-width: $xl) {
      font-size: $fs22;
    }

    @media (min-width: $xxl) {
      font-size: $fs24;
    }
  }
}

.booking-confirmed {

  h2,
  .h2 {
    font-weight: $fw700;
    font-size: $fs22;
    line-height: normal;

    @media (min-width: $md) {
      font-size: $fs24;
    }

    @media (min-width: $xl) {
      font-size: $fs26;
    }

    @media (min-width: $xxl) {
      font-size: $fs32;
    }
  }
}

.property-details-map {
  .swalContent {
    h4 {
      font-size: $fs20 !important;
    }
  }
}


.ckeditor-content-indent {

  picture,
  figure {
    margin-top: 20px;
  }

  a {
    cursor: pointer !important;
    color: $primaryColor !important;

    &:hover {
      text-decoration: underline !important;
    }
  }

  ul,
  ol {
    padding-left: 36px;
  }

  .pdl-40 {
    padding-left: 40px
  }

  .pdl-80 {
    padding-left: 80px
  }

  .pdl-120 {
    padding-left: 120px
  }

  .pdl-160 {
    padding-left: 160px
  }

  .pdl-200 {
    padding-left: 200px
  }

  .pdl-list-60 {
    padding-left: 60px !important
  }

  .pdl-list-100 {
    padding-left: 100px !important
  }

  .pdl-list-140 {
    padding-left: 140px !important
  }

  .pdl-list-180 {
    padding-left: 180px !important
  }

  .pdl-list-220 {
    padding-left: 220px !important
  }
}

.sortDropdownWrap {
  &.bedroomsShortDropdown {
    .css-b62m3t-container {
      .css-igz222-menu {
        @media (min-width: $sm) {
          min-width: 200px !important;
        }
      }
    }
  }

  .css-b62m3t-container {
    .css-igz222-menu {
      overflow: hidden;
      box-shadow: none;
      border: 1px solid rgb(235, 235, 235);
      border-radius: 20px;
      min-width: 280px;
      right: 0;

      @media (min-width: $sm) {
        min-width: 300px;
      }


      .dropDownOption {

        input[type="checkbox"],
        input[type="radio"] {
          display: none;
          visibility: hidden;
          opacity: 0;
          background-color: $bgColor;

          &+label {
            padding-left: 23px;
            font-size: $fs14;
            font-weight: $fw400;
            line-height: normal;
            word-break: break-word;
            position: relative;
            cursor: pointer;
            color: $grey344Color;

            @media (min-width: $md) {
              padding-left: 25px;
            }

            @media (min-width: $xxl) {
              font-size: $fs16;
            }

            &:before {
              content: "";
              position: absolute;
              height: 16px;
              width: 16px;
              border-radius: 100%;
              border: none;
              left: 0;
              background-color: $bgColor;
              display: flex;
              align-items: center;
              justify-content: center;
              transition: all 0.3s ease;
              top: 2px;

              @media (min-width: $xxl) {
                top: 3.4px;
              }
            }

            &:after {
              content: "";
              position: absolute;
              width: 4px;
              top: 6px;
              left: 6px;
              height: 7px;
              border: solid $white;
              border-width: 0 2px 2px 0;
              rotate: 45deg;
              opacity: 0;
              transition: opacity 0.3s ease;

              @media (min-width: $xxl) {
                top: 7px;
              }
            }
          }

          &:checked+label {
            &:before {
              background: $primaryColor;
              border: none;
            }

            &:after {
              opacity: 1;
            }
          }
        }

        &:hover {

          input[type="checkbox"],
          input[type="radio"] {
            &+label {
              &:before {
                background-color: $white;
              }
            }

            &:checked+label {
              &:before {
                background: $primaryColor !important;
              }
            }
          }
        }
      }
    }
  }
}

.bedroomListWrapper {
  background: $whiteFBColor;

  .bedroomWeek {
    color: $primaryColor;

    @media (max-width: 767px) {
      margin: 0;
    }
  }

  .bedroomMobileHead {
    h3 {
      font-size: 14px;
      font-weight: 600;
      margin: 0;
    }
  }

  .bedroomListItem {
    position: relative;
    border: 1px solid transparent;
    background: $white;

    @media (max-width: 767px) {
      padding-bottom: 54px;
    }

    &.active {
      border-color: $secondaryColor;
      background: $bgColor;
    }

    .bedroomActionLis {
      .bedroomBadge {
        background: $white;
      }
    }
  }

  .bedroomActionList {
    @media (max-width: 767px) {
      position: absolute;
      left: 10px;
      right: 10px;
      bottom: 10px;
    }

    .bedroomBadge {
      color: $grey667Color;
      background: $whiteFBColor;
    }

    .primaryBorderBtn {
      flex-shrink: 0;
      background: transparent;
      display: none;

      @media (min-width: $lg) {
        display: flex;
      }
    }

    .bedroomBadge,
    .primaryBorderBtn {
      font-size: $fs12;
      height: 40px;
      min-height: auto;
      height: 32px;

      @media (min-width: $md) {
        width: 114px;
        font-size: $fs14;
      }

      @media (min-width: $lg) {
        height: 40px;
      }

      @media (min-width: $xxl) {
        font-size: $fs16;
        width: 160px;
      }
    }
  }

  .bedroomsCheckbox {
    label {
      border: 1px solid rgba(0, 106, 113, 0.1019607843);
      width: 32px;
      height: 32px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 100%;
      cursor: pointer;

      @media (min-width: $xxl) {
        width: 40px;
        height: 40px;
      }
    }

    input[type="checkbox"] {
      position: absolute;
      visibility: hidden;
      opacity: 0;

      &+span {
        position: relative;
        padding-left: 20px;
        font-size: $fs14;
        font-weight: $fw400;
        line-height: 1.5;
        cursor: pointer;
        word-break: break-word;

        @media (min-width: $md) {
          font-size: $fs16;
          padding-left: 30px;
        }

        &:before {
          content: "";
          position: absolute;
          height: 16px;
          width: 16px;
          left: 2px;
          background: $bgColor;
          display: flex;
          align-items: center;
          justify-content: center;
          transition: all 0.3s ease;
          border-radius: 20%;
          top: 10px;
          transform: translate(0, -50%);

          @media (min-width: $xxl) {
            left: 0;
            height: 20px;
            width: 20px;
          }
        }

        &:after {
          content: "";
          position: absolute;
          left: 8px;
          top: 5px;
          width: 4px;
          height: 8px;
          border: solid white;
          border-width: 0 2px 2px 0;
          transform: rotate(45deg);
          opacity: 0;
          transition: opacity 0.3s ease;

          @media (min-width: $md) {
            width: 4px;
            top: 4px;
            left: 8px;
            height: 9px;
          }
        }
      }

      &:checked+span {
        &:before {
          background: $primaryColor;
        }

        &:after {
          opacity: 1;
        }
      }
    }
  }
}

.find-property-page{
  .web-search-wrap{
    margin-top: -55px !important;
  }
}

// New added css
.react-datepicker__day-names {
  margin-top: 8px;
  display: flex !important;
}

.react-datepicker__day-name {
  display: inline !important;
}

span.react-datepicker__sr-only {
  display: none !important;
}


.policy-card-wrapper {
  i {
    background-color: transparent !important;
    width: auto !important;
    height: auto !important;
    mask-size: auto !important;
  }
  ul{
    text-align: left;
    list-style: disc;
    padding-left: 45px;
    li{
      text-align: left;
      list-style-type: disc;
      margin-bottom: 5px !important;
      &:last-child{
        margin-bottom: 0;
      }
    }
  }
}