@charset "UTF-8";
@font-face {
  font-family: neue-helvetica-l;
  /* font-weight: 500; */
  src: url("/assets/fonts/neuehelvetica.otf") format("opentype");
}
@font-face {
  font-family: roboto-thin;
  src: url("/assets/fonts/Roboto-Light.ttf");
}
@font-face {
  font-family: neue-helvetica-l;
  src: url("/assets/fonts/neuehelvetica-lite.ttf");
}
@font-face {
  font-family: neue-helvetica-l;
  /* font-weight: 400; */
  src: url("/assets/fonts/FreeSans.otf");
}
::root {
  --primary-color-b: #3c2de9;
  --color-primary-b: #3c2de9;
  --color-primary-b-dark: #211884;
  --color-background-dark: #10069f;
  --color-secondary-o: #fe6d00;
  --color-secondary: #101d2c;
  --color-grey-light-1: #f9f7f6;
  --color-grey-light-2: #aaa;
  --color-grey-dark-1: #54483a;
  --color-grey-dark-2: #6d5d4b;
  --color-text-grey-1: #494949;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
@media only screen and (max-width: 675px) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (max-width: 323px) {
  html {
    font-size: 50%;
  }
}

body {
  font-family: "Helvetica", "Roboto", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #3b3b3b;
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background-image: linear-gradient(to right, #e8e5f8 0%, #f1effc 50%, #e8e5f8 100%);
  height: 100%;
  letter-spacing: 0.02rem;
}

.header {
  width: 100%;
  height: 56px;
  padding: 0 2.4rem;
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  background: #fff;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: 0.02rem;
}
@media only screen and (max-width: 1160px) {
  .header {
    padding: 0 0.8rem 0 0rem;
  }
}

.sticky .header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}

.sticky .main-section {
  margin-top: 56px;
}

.header-nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.header-nav__logo {
  height: 5.2rem;
  margin-left: 2.5rem;
}
.header-nav__name {
  font-size: 3.2rem;
  font-weight: 500;
  color: #3c2de9;
  margin-left: 1.5rem;
}

body.mbnav-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.mbnav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1;
}
.mbnav__brand {
  align-self: center;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 0.8rem;
  cursor: pointer;
}
@media only screen and (max-width: 450px) {
  .mbnav__brand {
    column-gap: 0.2rem;
  }
}
.mbnav__brand:link, .mbnav__brand:visited {
  text-decoration: none;
}
.mbnav__brand-logo {
  height: 55px;
  width: auto;
}
.mbnav__brand-name {
  font-weight: bolder;
  color: #3c2de9;
  font-size: 23px;
  font-family: "Merienda One", sans-serif;
  letter-spacing: 0.02rem;
}
@media only screen and (max-width: 800px) {
  .mbnav__movable-box {
    position: absolute;
    top: 56px;
    right: 0;
    background: rgb(255, 255, 255);
    width: 100%;
    box-sizing: border-box;
    padding: 4.8rem 2.4rem;
    z-index: 3;
    height: calc(100vh - 56px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.5s ease-in;
  }
}
@media only screen and (max-width: 800px) {
  .mbnav-open .mbnav__movable-box {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateX(0%);
    transition: all 0.5s ease-in;
  }
}
.mbnav__loggedin-box {
  line-height: 1;
  font-size: 16px;
  font-weight: 500;
  color: rgb(159, 77, 182);
  background-color: #fff;
  position: relative;
}
@media only screen and (max-width: 800px) {
  .mbnav__loggedin-box {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    justify-content: center;
  }
}
.mbnav__loggedin-box__profile {
  display: flex;
  justify-content: start;
  align-items: center;
  column-gap: 8px;
  background-color: #fff;
  padding: 0 24px;
  cursor: pointer;
}
@media only screen and (max-width: 800px) {
  .mbnav__loggedin-box__profile {
    justify-content: start;
    padding-left: 8px;
    column-gap: 16px;
  }
}
.mbnav__loggedin-box__profile-img {
  display: inline-block;
  height: 48px;
  width: 48px;
}
.mbnav__loggedin-box__profile-icon {
  font-size: 24px;
}
@media only screen and (max-width: 800px) {
  .mbnav__loggedin-box__profile-icon {
    font-size: 32px;
  }
}
.mbnav__loggedin-box__dropd-btn {
  background: none;
  border: none;
  outline: none;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid rgb(159, 77, 182); /* Adjust color */
  display: inline-block;
  margin: 0 16px; /* Adjust spacing */
}
@media only screen and (max-width: 800px) {
  .mbnav__loggedin-box__dropd-btn {
    margin: 0 16px 0 24px;
  }
}
.mbnav__loggedin-box__dropd-btn:focus, .mbnav__loggedin-box__dropd-btn:focus-visible {
  outline: none;
}
.mbnav__dropdown-box {
  position: relative;
}
.mbnav__dropdown-list {
  position: absolute;
  top: 100%;
  right: 0;
  list-style: none;
  background: #fff;
  padding: 24px 0px;
  width: 237px;
  box-shadow: 0px 6px 10px -2px rgba(0, 0, 0, 0.15); /* Removes top shadow */
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0rem;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  max-height: 0;
  overflow: scroll;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 800px) {
  .mbnav__dropdown-list {
    width: 100%;
    position: relative;
    top: 0%;
    left: 50%;
    box-shadow: none;
    transform: translateX(-50%);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    max-height: 500px;
    padding: 28px 0px;
  }
}
.mbnav .mbnav__loggedin-box.dropdown-active .mbnav__dropdown-list {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  max-height: 350px;
}
@media only screen and (max-width: 800px) {
  .mbnav .mbnav__loggedin-box.dropdown-active .mbnav__dropdown-list {
    max-height: 500px;
  }
}
.mbnav .mbnav__loggedin-box.dropdown-active .mbnav__loggedin-box__dropd-btn {
  transform: rotate(180deg);
}
@media only screen and (max-width: 800px) {
  .mbnav .mbnav__loggedin-box.dropdown-active .mbnav__loggedin-box__dropd-btn {
    transform: rotate(0deg);
  }
}
.mbnav__dropdown-list--item {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 16px;
}
@media only screen and (max-width: 800px) {
  .mbnav__dropdown-list--item {
    border-bottom: 1px solid #c1c2d5;
  }
}
.mbnav__dropdown-list--item i {
  color: #3c2de9;
  font-size: 16px;
}
.mbnav__dropdown-list--item .icon-home {
  font-size: 18px;
}
.mbnav__link-dropdown, .mbnav__link-dropdown:link, .mbnav__link-dropdown:visited {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 16px;
  width: 100%;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: #3c2de9;
  background-color: #fff;
  padding: 16px 24px;
  transition: all 0.3s ease-in;
}
@media only screen and (max-width: 800px) {
  .mbnav__link-dropdown, .mbnav__link-dropdown:link, .mbnav__link-dropdown:visited {
    padding-left: 8px;
    font-size: 14px;
    padding: 28px 8px;
  }
}
.mbnav__link-dropdown:hover, .mbnav__link-dropdown:active {
  background-color: #e0e0e0;
}
.mbnav__dropdown-list__pm {
  color: #333;
}
.mbnav__list {
  list-style: none;
  display: flex;
  justify-content: start;
  align-items: center;
  column-gap: 1.6rem;
}
@media only screen and (max-width: 800px) {
  .mbnav__list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: start;
    row-gap: 2.4rem;
  }
}
@media only screen and (max-width: 800px) {
  .mbnav__list-item {
    width: 100%;
  }
}
.mbnav__link-cta:link, .mbnav__link-cta:visited {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: none;
  background-color: #3c2de9;
  border: none;
  color: #fff;
  border-radius: 0.4rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}
@media only screen and (max-width: 800px) {
  .mbnav__link-cta:link, .mbnav__link-cta:visited {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
}
.mbnav__link-cta:hover, .mbnav__link-cta:active {
  background-color: #211884;
}
.mbnav__link-cta.mbnav__link-cta--secondary:link, .mbnav__link-cta.mbnav__link-cta--secondary:visited {
  display: inline-block;
  font-size: 1.2rem;
  background-color: #fff;
  color: #3c2de9;
  box-shadow: inset 0 0 0 1px #3c2de9;
}
@media only screen and (max-width: 800px) {
  .mbnav__link-cta.mbnav__link-cta--secondary:link, .mbnav__link-cta.mbnav__link-cta--secondary:visited {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    font-size: 1.6rem;
  }
}
.mbnav__link-cta.mbnav__link-cta--secondary:hover, .mbnav__link-cta.mbnav__link-cta--secondary:active {
  background-color: #e0e0e0;
}
.mbnav__button {
  height: 40px;
  width: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  display: none;
}
@media only screen and (max-width: 800px) {
  .mbnav__button {
    display: flex;
  }
}
.mbnav__button:focus, .mbnav__button:focus-visible {
  outline: none;
}
.mbnav__menu-outline {
  height: 30px;
  width: 30px;
}
.mbnav__menu-outline__line {
  width: 24px;
  height: 2px;
  background: rgb(125, 125, 125);
  transition: 0.3s;
}
.mbnav__menu-outline__l1 {
  margin-top: 6px;
}
.mbnav__menu-outline__l2 {
  margin-top: 6px;
}
.mbnav__menu-outline__l3 {
  margin-top: 6px;
}
.mbnav__close-outline {
  height: 30px;
  width: 30px;
  position: relative;
  display: none;
}
.mbnav__close-outline::before, .mbnav__close-outline::after {
  content: "";
  width: 22px;
  height: 2px;
  background: rgb(125, 125, 125);
  position: absolute;
  left: 6px;
  transform: translate(0, -100%);
}
.mbnav__close-outline::before {
  transform-origin: left bottom;
  top: 6px;
  transform: rotate(45deg);
}
.mbnav__close-outline::after {
  top: 22px;
  transform-origin: left top;
  transform: rotate(-45deg);
}
@media only screen and (max-width: 800px) {
  .mbnav-open .mbnav__menu-outline {
    display: none;
  }
}
@media only screen and (max-width: 800px) {
  .mbnav-open .mbnav__close-outline {
    display: block;
  }
}

.footer-section {
  padding: 9rem 0;
  background-color: #181818;
  margin-top: 9rem;
}
.footer-container {
  max-width: 116rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 8fr 4fr 2fr 2fr;
  grid-template-rows: auto;
  justify-content: center;
  align-content: center;
  row-gap: 4.4rem;
  column-gap: 5.6rem;
}
@media only screen and (max-width: 1130px) {
  .footer-container {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
}
@media only screen and (max-width: 600px) {
  .footer-container {
    column-gap: 1.6rem;
  }
}
@media only screen and (max-width: 1130px) {
  .footer-container {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
}
@media only screen and (max-width: 450px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto auto;
  }
}
@media only screen and (max-width: 380px) {
  .footer-container {
    grid-template-columns: 2fr 1fr;
  }
}
.footer-h5 {
  font-size: 1.6rem;
  font-weight: 600;
  color: rgb(241, 241, 241);
  align-self: flex-start;
}
@media only screen and (max-width: 1130px) {
  .footer-compInfo {
    grid-column: 1/-1;
    grid-row: 2/3;
  }
}
@media only screen and (max-width: 450px) {
  .footer-compInfo {
    grid-column: 1/-1;
    grid-row: 3/4;
  }
}
.footer-compInfo__logo {
  margin-left: 0rem;
}
.footer-compInfo__description {
  font-size: 1.6rem;
  font-weight: 300;
  color: rgb(170, 170, 170);
  line-height: 1.7;
  letter-spacing: 0.002rem;
}
@media only screen and (max-width: 450px) {
  .footer__nav--fus {
    grid-column: 1/-1;
    grid-row: 2/3;
  }
}
.footer__nav__h5 {
  margin-bottom: 2.4rem;
}
.footer__nav--list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2.4rem;
}
.footer__nav__follow-us {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.footer__nav__follow-us i {
  font-size: 2.4rem;
}
.footer__nav__follow-us--link:link, .footer__nav__follow-us--link:visited {
  text-decoration: none;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.footer__nav__follow-us--link:hover, .footer__nav__follow-us--link:active {
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;
}
.footer__nav__link:link, .footer__nav__link:visited {
  text-decoration: none;
  background-color: rgb(40, 40, 40);
  border-radius: 0.6rem;
  color: rgb(200, 200, 200);
  font-size: 1.6rem;
  padding: 0.8rem 1.6rem;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 600px) {
  .footer__nav__link:link, .footer__nav__link:visited {
    font-size: 1.4rem;
  }
}
.footer__nav__link:active, .footer__nav__link:hover {
  background-color: #fff;
  color: #3c2de9;
  transition: all 0.3s ease-in-out;
}
.footer__copyright {
  grid-column: 1/-1;
  justify-self: center;
  align-self: flex-start;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1.2;
  color: rgb(100, 100, 100);
  text-align: center;
}
@media only screen and (max-width: 600px) {
  .footer__copyright {
    grid-column: 1/-1;
    grid-row: 4/5;
  }
}

.whatsapp {
  color: #25d366;
}

.facebook {
  color: #3b5998;
}

.linkedin {
  color: #0a66c2;
}

.email {
  color: #bb001b;
}

.instagram {
  color: #bc2a8d;
}

.twitter {
  color: #1da1f2;
}

/* -----------------------------------------
    =CSS3 Loading animations
  -------------------------------------------- */
/* =Elements style
  ---------------------- */
.load-wrapp {
  border-radius: 5px;
  text-align: center;
  background-color: transparent;
}

.load-wrapp-wrapper .text-rep {
  font-size: 14px;
  display: block;
  padding: 10px;
}

.load-wrapp-wrapper {
  display: block;
  width: 100%;
  height: 40px;
  text-align: center;
}

.load-wrapp p {
  padding: 0 0 20px;
}

.load-wrapp:last-child {
  margin-right: 0;
}

.line {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: #f29c3e;
}

.ring-1 {
  width: 10px;
  height: 10px;
  margin: 0 auto;
  padding: 10px;
  border: 7px dashed #4b9cdb;
  border-radius: 100%;
}

.ring-2 {
  position: relative;
  width: 45px;
  height: 45px;
  margin: 0 auto;
  border: 4px solid #4b9cdb;
  border-radius: 100%;
}

.ball-holder {
  position: absolute;
  width: 12px;
  height: 45px;
  left: 17px;
  top: 0px;
}

.ball {
  position: absolute;
  top: -11px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  background: #4282b3;
}

.letter-holder {
  padding: 16px;
}

.letter {
  float: left;
  font-size: 14px;
  color: #777;
}

.square {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background-color: #4b9cdb;
}

.spinner {
  position: relative;
  width: 45px;
  height: 45px;
  margin: 0 auto;
}

.bubble-1,
.bubble-2 {
  position: absolute;
  top: 0;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  background-color: #4b9cdb;
}

.bubble-2 {
  top: auto;
  bottom: 0;
}

.bar {
  float: left;
  width: 15px;
  height: 6px;
  border-radius: 2px;
  background-color: #4b9cdb;
}

/* =Animate the stuff
  ------------------------ */
.load-1 .line:nth-last-child(1) {
  animation: loadingA 1.5s 1s infinite;
}

.load-1 .line:nth-last-child(2) {
  animation: loadingA 1.5s 0.5s infinite;
}

.load-1 .line:nth-last-child(3) {
  animation: loadingA 1.5s 0s infinite;
}

.load-2 .line:nth-last-child(1) {
  animation: loadingB 1.5s 1s infinite;
}

.load-2 .line:nth-last-child(2) {
  animation: loadingB 1.5s 0.5s infinite;
}

.load-2 .line:nth-last-child(3) {
  animation: loadingB 1.5s 0s infinite;
}

.load-3 .line:nth-last-child(1) {
  animation: loadingC 0.6s 0.1s linear infinite;
}

.load-3 .line:nth-last-child(2) {
  animation: loadingC 0.6s 0.2s linear infinite;
}

.load-3 .line:nth-last-child(3) {
  animation: loadingC 0.6s 0.3s linear infinite;
}

.load-4 .ring-1 {
  animation: loadingD 1.5s 0.3s cubic-bezier(0.17, 0.37, 0.43, 0.67) infinite;
}

.load-5 .ball-holder {
  animation: loadingE 1.3s linear infinite;
}

.load-6 .letter {
  animation-name: loadingF;
  animation-duration: 1.6s;
  animation-iteration-count: infinite;
  animation-direction: linear;
}

.l-1 {
  animation-delay: 0.48s;
}

.l-2 {
  animation-delay: 0.6s;
}

.l-3 {
  animation-delay: 0.72s;
}

.l-4 {
  animation-delay: 0.84s;
}

.l-5 {
  animation-delay: 0.96s;
}

.l-6 {
  animation-delay: 1.08s;
}

.l-7 {
  animation-delay: 1.2s;
}

.l-8 {
  animation-delay: 1.32s;
}

.l-9 {
  animation-delay: 1.44s;
}

.l-10 {
  animation-delay: 1.56s;
}

.load-7 .square {
  animation: loadingG 1.5s cubic-bezier(0.17, 0.37, 0.43, 0.67) infinite;
}

.load-8 .line {
  animation: loadingH 1.5s cubic-bezier(0.17, 0.37, 0.43, 0.67) infinite;
}

.load-9 .spinner {
  animation: loadingI 2s linear infinite;
}

.load-9 .bubble-1,
.load-9 .bubble-2 {
  animation: bounce 2s ease-in-out infinite;
}

.load-9 .bubble-2 {
  animation-delay: -1s;
}

.load-10 .bar {
  animation: loadingJ 2s cubic-bezier(0.17, 0.37, 0.43, 0.67) infinite;
}

@keyframes loadingA {
  0% {
    height: 15px;
  }
  50% {
    height: 35px;
  }
  100% {
    height: 15px;
  }
}
@keyframes loadingB {
  0% {
    width: 15px;
  }
  50% {
    width: 35px;
  }
  100% {
    width: 15px;
  }
}
@keyframes loadingC {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, 15px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes loadingD {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes loadingE {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes loadingF {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes loadingG {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(70px, 0) rotate(360deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}
@keyframes loadingH {
  0% {
    width: 15px;
  }
  50% {
    width: 35px;
    padding: 4px;
  }
  100% {
    width: 15px;
  }
}
@keyframes loadingI {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
}
@keyframes loadingJ {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(80px, 0);
    background-color: #f5634a;
    width: 25px;
  }
}
.hide {
  display: none !important;
}

.d-none {
  display: none !important;
}

.height__80vh {
  min-height: 80vh;
}

.custom-opacity {
  opacity: 0.5 !important;
}

.scroll-margin-top-75 {
  scroll-margin-top: 75px;
}

.map-invisible {
  display: none;
}

.auto-capture-error {
  font-size: 14px;
  color: #ffa2a2;
}

label.error {
  font-size: 14px;
  color: #ffa2a2;
  line-height: 1;
  margin-top: 0.4rem;
}

.custom-readonly {
  border-color: #2073d9;
  box-shadow: 0 0 0 0.05rem rgba(90, 203, 160, 0.14);
  background-color: #e8f0fe !important;
}

.error-grid-placement {
  grid-column: 2/3;
  grid-row: 2/3;
}
@media only screen and (max-width: 725px) {
  .error-grid-placement {
    grid-column: 1/-1;
    grid-row: 3/4;
  }
}

label,
input,
legend,
fieldset,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li {
  margin: 0;
  padding: 0;
  appearance: none;
}

sup.flat-area-ftsqre-showpage {
  top: -0.5em;
  left: -0.5em;
}

.text-align-center-helper {
  text-align: center;
}

.whatsapp {
  color: #25d366;
}

.facebook {
  color: #1877f2;
}

.linkedin {
  color: #0077b5;
}

.email {
  color: #bb001b;
}

.instagram {
  color: #bc2a8d;
}

.twitter {
  color: #1da1f2;
}

.marker-pulse {
  width: 20px;
  height: 20px;
  background: #fe6d00;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  z-index: 11;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.3;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
.custom-btn {
  appearance: none;
  outline: none;
  width: 100%;
  max-width: 100%;
  background-color: rgba(60, 45, 233, 0.1);
  padding: 0.8rem 3.2rem;
  border: 1px solid rgba(60, 45, 233, 0.1);
  border-radius: 2px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  color: #666 !important;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 402px) {
  .custom-btn {
    padding: 0.8rem 1.6rem;
    width: 15rem;
    max-width: 15rem;
  }
}

.custom-btn:focus {
  outline: none;
}

.custom-btn.active {
  border: 1px solid #3c2de9;
  background-color: rgb(60, 45, 233);
  color: #fff !important;
  transition: all 0.3s ease-in-out;
}

.mbanchor-textlink:link,
.mbanchor-textlink:visited {
  font-size: 1.6rem;
  color: #3c2de9;
  text-decoration: underline;
  text-decoration-color: #3c2de9;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: all 0.2s ease-in;
}

.mbanchor-textlink:hover,
.mbanchor-textlink:active {
  color: #29208a;
  text-decoration-color: #29208a;
  outline: none;
  transition: all 0.2s ease-in;
}

main {
  margin: 0;
  padding: 0;
}

.ap__header {
  height: 56px;
  width: 100%;
  background-color: #fff;
}

.ap__section-heading {
  max-width: 90rem;
  margin: 0rem auto;
  padding: 6.4rem 1.6rem 3.2rem 1.6rem;
  text-align: center;
}
.ap__section-heading--h1 {
  font-size: 3.2rem;
  line-height: 1.1;
  font-weight: 500;
  color: #333;
}
@media only screen and (max-width: 450px) {
  .ap__section-heading--h1 {
    font-size: 2.4rem;
  }
}
.ap__section {
  width: 100%;
  padding: 0rem 0rem 9rem 0rem;
}
.ap__container {
  max-width: 90rem;
  margin: 0rem auto;
  padding: 8rem 2.4rem 8rem 4rem;
  background-color: #fff;
  border-radius: 0.4rem;
}
@media only screen and (max-width: 920px) {
  .ap__container {
    margin: 0rem 1rem;
  }
}
@media only screen and (max-width: 450px) {
  .ap__container {
    padding: 4.8rem 2.4rem 2.4rem 2.4rem;
    margin: 0rem 0rem;
  }
}
.ap__p500 {
  font-size: 3.2rem;
  line-height: 1.1;
  font-weight: 500;
}
.ap__p400 {
  font-size: 3.2rem;
  line-height: 1.1;
  font-weight: 400;
}
.ap__p300 {
  font-size: 3.2rem;
  line-height: 1.1;
  font-weight: 300;
}
.ap__p200 {
  font-size: 3.2rem;
  line-height: 1.1;
  font-weight: 200;
}
.ap__form-filling-time {
  margin-top: 1.4rem;
  /* layout */
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 6px 14px;
  border-radius: 999px;
  width: max-content;
  line-height: 1.1;
  /* type */
  font-size: 1.4rem;
  font-weight: 600;
  color: #3c2de9; /* brand accent for text */
  /* surface */
  background: linear-gradient(90deg, rgba(60, 45, 233, 0.1) 0%, rgba(60, 45, 233, 0.03) 60%, rgba(60, 45, 233, 0.1) 100%);
  border: 1px solid rgba(60, 45, 233, 0.18);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  /* subtle one-time shimmer to catch attention */
  background-size: 200% 100%;
  animation: ap-pill-shimmer 1400ms ease 1;
  /* Motion-safe */
  /* Mobile tweaks */
}
.ap__form-filling-time::before {
  content: "⏱";
  font-size: 1.2em;
  line-height: 1;
  transform: translateY(1px);
}
.ap__form-filling-time strong {
  color: #2b26a8;
  font-weight: 700;
}
@media (prefers-reduced-motion: reduce) {
  .ap__form-filling-time .ap__form-filling-time {
    animation: none;
  }
}
@media (max-width: 500px) {
  .ap__form-filling-time .ap__form-filling-time {
    font-size: 1.3rem;
    padding: 5px 12px;
  }
}

/* keyframes */
@keyframes ap-pill-shimmer {
  from {
    background-position: 200% 0;
  }
  to {
    background-position: 0 0;
  }
}
[type=radio]:checked,
[type=radio]:not(:checked) {
  left: 13px;
  top: 6px;
  width: 0px;
  height: 0px;
  visibility: hidden;
}

[type=radio]:checked + label,
[type=radio]:not(:checked) + label {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: #666;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  column-gap: 0.8rem;
}
@media only screen and (max-width: 450px) {
  [type=radio]:checked + label,
  [type=radio]:not(:checked) + label {
    font-size: 1.6rem;
  }
}

[type=radio]:checked + label:before,
[type=radio]:not(:checked) + label:before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid #ddd;
  border-radius: 100%;
  background: #fff;
  position: relative;
}

[type=radio]:checked + label:after,
[type=radio]:not(:checked) + label:after {
  content: "";
  width: 12px;
  height: 12px;
  background: #3c2de9;
  position: absolute;
  top: 3px;
  left: 3px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

[type=radio]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  transition: all 0.2s ease-in;
}

[type=radio]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: all 0.2s ease-in;
}

::placeholder {
  color: rgb(177, 177, 177) !important;
}

[type=checkbox]:checked,
[type=checkbox]:not(:checked) {
  position: absolute;
  left: 0px;
  opacity: 0;
  appearance: none; /* Removes default styling */
  opacity: 0; /* Makes it invisible */
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
}

[type=checkbox]:checked + label,
[type=checkbox]:not(:checked) + label {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: #666;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  column-gap: 0.8rem;
}
@media only screen and (max-width: 450px) {
  [type=checkbox]:checked + label,
  [type=checkbox]:not(:checked) + label {
    font-size: 1.6rem;
  }
}

[type=checkbox]:checked + label:before,
[type=checkbox]:not(:checked) + label:before {
  display: inline-block;
  content: "";
  width: 18px;
  height: 18px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
}

[type=checkbox]:checked + label:after,
[type=checkbox]:not(:checked) + label:after {
  content: "✔";
  width: 12px;
  height: 12px;
  background: #3c2de9;
  position: absolute;
  top: 3px;
  left: 3px;
  padding: 1px;
  border-radius: 2px;
  font-size: 10px;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

[type=checkbox]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  transition: all 0.2s ease-in;
}

[type=checkbox]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: all 0.2s ease-in;
}

input[type=tel],
input[type=number],
input.ap-text-input,
input[type=email] {
  width: 100%;
  height: 4.8rem;
  border: solid 1px #ddd;
  border-radius: 0.6rem;
  padding-left: 2.4rem;
  padding-right: 1.6rem;
  font-size: 1.6rem;
  color: #666;
  box-sizing: border-box;
  outline: none; /* Remove default outline */
  transition: all 0.3s ease-in;
}
input[type=tel]::placeholder,
input[type=number]::placeholder,
input.ap-text-input::placeholder,
input[type=email]::placeholder {
  font-size: 1.6rem;
  font-weight: 400;
  color: rgba(51, 51, 51, 0.75);
}

input[type=number] {
  padding-left: 4.4rem;
}

input[type=number]:focus,
input[type=tel]:focus,
input.ap-text-input:focus {
  box-shadow: 0 0 4px 2px rgba(60, 45, 233, 0.7); /* (x-offset, y-offset, blur, spread, color) */
}

input:disabled,
input[readonly] {
  background-color: unset;
}

.property-details-section__h2 {
  text-transform: uppercase;
  font-size: 2.4rem;
  font-weight: 600;
  color: rgb(159, 77, 182);
  letter-spacing: 2px;
  margin-top: 3.2rem;
  margin-bottom: 1.6rem;
}
@media only screen and (max-width: 450px) {
  .property-details-section__h2 {
    text-transform: none;
  }
}

.ap-form-style {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 3.2rem;
}
@media only screen and (max-width: 450px) {
  .ap-form-style {
    row-gap: 2.4rem;
  }
}

.apform-widget {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: auto;
  column-gap: 1.6rem;
  align-content: flex-start;
  justify-content: start;
}
@media only screen and (max-width: 725px) {
  .apform-widget {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    row-gap: 0.8rem;
  }
}
.apform-widget--fieldset {
  border: none; /* Removes the border */
  padding: 0; /* Removes default padding */
  margin: 0; /* Removes default margin */
  appearance: none; /* Ensures no default appearance */
}
.apform-widget__rent-pg-selection {
  margin-bottom: 6.4rem;
}
.apform-widget__label-box {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: flex-start;
  align-content: center;
  justify-items: start;
  align-items: center;
  row-gap: 0.2rem;
}
.apform-widget__label-box__one-liner {
  align-self: flex-start;
}
.apform-widget__label-box__title {
  font-size: 1.6rem;
  font-weight: 500;
  color: rgb(159, 77, 182);
  line-height: 1.1;
  margin-bottom: 0;
}
.apform-widget__label-box__title--tail {
  font-size: 1.4rem;
}
.apform-widget__label-box__desc {
  font-size: 1.4rem;
  font-weight: 400;
  color: rgb(148, 148, 148);
  line-height: 1;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0.4rem;
}
.apform-widget__label-box__desc::before {
  font-family: "FontAwesome"; /* Use FontAwesome font */
  content: "\f05a"; /* Unicode for 'fa-info-circle' */
  display: inline-block;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #949494;
  font-size: 1.4rem;
  line-height: 1;
  align-self: flex-start;
}
.apform-widget__input-box1 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap; /* Wraps the rdio buttons when the screen is too narrow */
  row-gap: 0.8rem; /* Adds space between the radio buttons */
  column-gap: 2.4rem;
}
.apform-widget__input-box1__rent-pg {
  column-gap: 0.4rem;
}
.apform-widget__input-box2 {
  position: relative;
}
.apform-widget__input-box2--visitingType {
  max-width: 100%;
}
.apform-widget__input-box1--deposit {
  position: relative;
}
.apform-widget__input-box1--deposit::before {
  content: "₹"; /* Rupee symbol */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4.4rem;
  height: auto;
  position: absolute;
  top: 0.7rem;
  font-size: 2.4rem;
  font-weight: 500;
  color: #3c2de9;
}
.apform-widget__input-box1--date {
  position: relative;
}
.apform-widget__input-box1--oneLiner {
  flex-direction: column;
  align-items: flex-start;
  column-gap: 0rem;
  row-gap: 0.2rem;
}

.apform-widget__visitingType--box1 {
  justify-self: start;
  max-width: 40rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  justify-items: center;
}
.apform-widget__visitingType--box2 {
  max-width: 100%;
  position: relative;
}
.apform-widget__visitingType__label--off {
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}
.apform-widget__visitingType__label--on {
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
}

input[name=visiting]:checked + label,
input[name=visiting]:not(:checked) + label {
  display: inline-block;
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  background-color: rgba(60, 45, 233, 0.1);
  color: rgb(170, 170, 170);
  padding: 2.8rem 4.8rem;
  transition: all 0.3s ease;
}

input[name=visiting]:checked ~ label {
  background-color: #3c2de9;
  color: #fff;
  transition: all 0.3s ease;
}

input[name=visiting]:checked ~ label::before,
input[name=visiting]:not(:checked) ~ label::before {
  display: none;
}

input[name=visiting]:checked ~ label::after,
input[name=visiting]:not(:checked) ~ label::after {
  display: none;
}

.datepicker {
  padding: 1.2rem;
}

/* Style for the month and year in the header (e.g., "Feb 2025") */
.datepicker-days .datepicker-switch {
  font-size: 1.4rem; /* Adjust size */
  padding-bottom: 1.2rem;
  font-weight: bold;
  color: #333;
}

/* Style for previous (‹) and next (›) buttons */
.datepicker-days .prev,
.datepicker-days .next {
  padding-bottom: 1.2rem; /* Add space below the buttons */
  color: #333;
}

/* Style for weekday names (Su, Mo, Tu, etc.) */
.datepicker-days th {
  font-size: 1.2rem; /* Adjust the size as needed */
  color: #464646;
}

/* Style for date numbers */
.datepicker-days td {
  font-size: 1.2rem; /* Make only the date numbers bigger */
  font-weight: 500;
}

/* Style for the selected date */
.datepicker table tr td.active.active {
  background-color: #2073d9 !important;
  background-image: none;
}

.datepicker table tr td:hover {
  background-color: #2073d9 !important;
  background-image: none;
}

.datepicker table tr td.today {
  background-color: #ffeb3b !important; /* Change highlight color */
  color: #000 !important; /* Text color */
  font-weight: bold;
}

.bootstrap-datetimepicker-widget button,
.bootstrap-datetimepicker-widget button:hover,
.bootstrap-datetimepicker-widget button:active,
.bootstrap-datetimepicker-widget button:focus {
  background-color: #2073d9;
  border-color: #2073d9;
}

.bootstrap-datetimepicker-widget {
  padding: 0px;
}

.bootstrap-datetimepicker-widget .timepicker .btn .fa {
  color: #2073d9 !important;
}

.date-input {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: border-color 0.2s ease;
  z-index: 11;
}

.date-input:focus {
  outline: none;
  border-color: #4dabf7;
  box-shadow: 0 0 0 3px rgba(77, 171, 247, 0.1);
}

.calendar {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  width: 100%;
  max-width: 320px;
  max-width: 320px;
}

.calendar.visible {
  opacity: 1;
  transform: translateY(0);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.nav-button {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.nav-button:hover {
  background: #f8f9fa;
}

.month-year {
  font-weight: 600;
  color: #2d3436;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.day-header {
  padding: 0.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: #636e72;
}

.day {
  padding: 0.6rem;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.day:hover:not(.disabled) {
  background: #4dabf7;
  color: white;
}

.disabled {
  color: #b2bec3;
  cursor: not-allowed;
}

.selected {
  background: #4dabf7;
  color: white;
  font-weight: 600;
}

.today {
  background: #f8f9fa;
  font-weight: 600;
}

@media (max-width: 480px) {
  .calendar {
    /* position: fixed;
      left: 50%;
      top: 50%; */
    /* transform: translate(-50%, -40%); */
    width: 90vw;
    max-width: none;
  }
  .calendar.visible {
    /* transform: translate(-50%, -50%); */
  }
}
@media (max-width: 480px) {
  .calendar {
    width: 80%;
    max-width: 80%;
    padding: 0.8rem;
  }
  .day {
    padding: 0.4rem;
    font-size: 0.8rem;
  }
  .month-year {
    font-size: 0.9rem;
  }
  .nav-button {
    padding: 0.3rem;
  }
}
.textarea-container {
  width: 100%;
  position: relative;
}

#rent-form-user-oneLiner,
#pg-form-user-oneLiner {
  width: 100%;
  height: auto; /* Adjust height dynamically */
  min-height: 80px; /* Minimum height for 3 lines */
  font-size: 1.6rem;
  font-weight: 400;
  color: #666;
  padding: 1.2rem 1.6rem 2.4rem 1.6rem;
  margin-bottom: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  resize: vertical;
  line-height: 1.6; /* Adjust line spacing */
  word-wrap: break-word; /* Ensure long words break */
  overflow-y: auto; /* Allow scrolling if needed */
}

#rent-form-user-oneLiner:focus,
#pg-form-user-oneLiner:focus {
  outline: none;
  box-shadow: 0 0 4px 2px rgba(60, 45, 233, 0.7);
}

/* 🔹 Character Counter */
#textarea-charCount,
#pg-form-textarea-charCount {
  position: absolute;
  top: 6.4rem;
  right: 1.4rem;
  font-size: 1.2rem;
  color: #adb5bd;
  background: white;
  padding: 2px 2px;
  border-radius: 4px;
  z-index: 2; /* Ensure counter stays above textarea */
}
@media only screen and (max-width: 450px) {
  #textarea-charCount,
  #pg-form-textarea-charCount {
    background: transparent;
  }
}

#textarea-charCount.warning,
#pg-form-textarea-charCount.warning {
  color: #fcc419;
}

#textarea-charCount.error,
#pg-form-textarea-charCount.error {
  color: #ff6b6b;
}

/* 🔹 Dropdown */
#presetMessages-oneLiner,
#pg-form-presetMessages-oneLiner,
#bhwf-form__input__idtype,
#document-type {
  appearance: none;
  width: 100%;
  height: 50px;
  padding: 1.2rem 48px 1.2rem 1.6rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: white;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 400;
  color: #666;
  transition: all 0.3s ease-in-out;
}
#presetMessages-oneLiner__container,
#pg-form-presetMessages-oneLiner__container,
#bhwf-form__input__idtype__container,
#document-type__container {
  width: 100%;
  position: relative;
}
#presetMessages-oneLiner__container::after,
#pg-form-presetMessages-oneLiner__container::after,
#bhwf-form__input__idtype__container::after,
#document-type__container::after {
  content: "\f107"; /* Unicode for FontAwesome down arrow */
  font-family: FontAwesome;
  position: absolute;
  right: 1.4rem;
  top: 1.2rem;
  font-size: 18px;
  color: #666;
  pointer-events: none;
}

#presetMessages-oneLiner option,
#pg-form-presetMessages-oneLiner option,
#bhwf-form__input__idtype option,
#document-type option {
  padding: 1.2rem;
  white-space: normal; /* Allow multi-line text */
  border-bottom: 1px solid #ddd;
}

#presetMessages-oneLiner:focus,
#presetMessages-oneLiner:focus-visible,
#presetMessages-oneLiner:active,
#pg-form-presetMessages-oneLiner:focus,
#pg-form-presetMessages-oneLiner:focus-visible,
#pg-form-presetMessages-oneLiner:active,
#bhwf-form__input__idtype:focus,
#bhwf-form__input__idtype:focus-visible,
#bhwf-form__input__idtype:active,
#document-type:focus,
#document-type:focus-visible,
#document-type:active {
  outline: none;
  border-color: #ddd;
}

/* 🔹 Add FontAwesome Down Arrow */
.visitingType__selectionBox {
  margin-bottom: 3.2rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  column-gap: 1.6rem;
  row-gap: 0.4rem;
  justify-content: start;
  align-content: center;
  align-items: center;
  justify-items: start;
  scroll-behavior: auto; /* Prevents smooth scrolling effect */
}
@media only screen and (max-width: 725px) {
  .visitingType__selectionBox {
    grid-template-columns: 1fr;
    justify-content: start;
    justify-items: start;
  }
}
@media only screen and (max-width: 450px) {
  .visitingType__selectionBox {
    width: 100%;
  }
}
.visitingType__selectionBox h2 {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.1;
  color: #333333;
}
@media only screen and (max-width: 450px) {
  .visitingType__selectionBox h2 {
    font-size: 2rem;
    margin-bottom: -1.2rem;
  }
}

.level1 {
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media only screen and (max-width: 450px) {
  .level1 {
    max-width: 100%;
  }
}

.level2 {
  max-width: 100%;
}
.level2 label {
  font-size: 3.2rem;
  font-weight: 600;
}

.visitingType-descBox {
  display: grid;
  grid-column: 2/-1;
  grid-row: 2/3;
  margin-top: 0.8rem;
}
@media only screen and (max-width: 725px) {
  .visitingType-descBox {
    grid-column: 1/-1;
    grid-row: 3/4;
  }
}
.visitingType-descBox__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  justify-content: flex-start;
  justify-items: flex-start;
  align-items: center;
  row-gap: 0rem;
  position: relative;
}
@media only screen and (max-width: 500px) {
  .visitingType-descBox__list {
    row-gap: 0.4rem;
  }
}
.visitingType-descBox__list--item {
  display: grid;
  grid-template-columns: min-content 1fr;
  grid-template-rows: min-content;
  column-gap: 0.8rem;
}
.visitingType-descBox__list--item-text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
}
@media only screen and (max-width: 500px) {
  .visitingType-descBox__list--item-text {
    line-height: 1.1;
    font-size: 1.4rem;
    font-weight: 300;
    color: #333;
  }
}
.visitingType-descBox__list--item-special {
  font-size: 1.6rem;
  font-weight: 300;
  color: #494949;
}

.svgIcons {
  max-height: 100%;
  width: auto;
  fill: #3c2de9;
  stroke: none;
}
.svgIcons__list {
  width: 1.6rem;
  max-height: 1.6rem;
  fill: #3c2de9;
  stroke: none;
  align-self: center;
}
@media only screen and (max-width: 500px) {
  .svgIcons__list {
    font-size: 1.4rem;
    width: 1.4rem;
    max-height: 1.4rem;
    fill: #333;
  }
}
.svgIcons__list-psychology {
  fill: none;
}

input[name=x]:checked + label,
input[name=x]:not(:checked) + label {
  background-color: rgba(60, 45, 233, 0.1);
  font-size: 3.2rem;
  font-weight: 600;
  color: #9f9f9f;
  padding: 1.6rem 6.4rem;
  scroll-margin-top: 0; /* Ensures no extra scrolling */
  scroll-margin-bottom: 0; /* Ensures no extra scrolling */
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in;
}
@media only screen and (max-width: 600px) {
  input[name=x]:checked + label,
  input[name=x]:not(:checked) + label {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 370px) {
  input[name=x]:checked + label,
  input[name=x]:not(:checked) + label {
    padding: 1.6rem 3.2rem;
  }
}

input[name=x]:checked + label {
  background-color: #3c2de9;
  color: #fff;
  transition: all 0.3s ease-in;
}

input[name=x]:not(:checked) + label::before {
  width: 2.4rem;
  height: 2.4rem;
  border: 0px solid rgba(60, 45, 233, 0.5);
  background-color: rgba(60, 45, 233, 0.5);
  clip-path: polygon(40% 0%, 60% 0%, 60% 40%, 100% 40%, 100% 60%, 60% 60%, 60% 100%, 40% 100%, 40% 60%, 0% 60%, 0% 40%, 40% 40%);
  font-size: 3.2rem;
  transform: rotate(45deg);
}
@media only screen and (max-width: 450px) {
  input[name=x]:not(:checked) + label::before {
    font-size: 1.6rem;
    width: 1.6rem;
    height: 1.6rem;
  }
}

input[name=x]:checked + label::before {
  width: 2.4rem;
  height: 2.4rem;
  clip-path: polygon(0% 50%, 10% 60%, 30% 80%, 40% 90%, 50% 80%, 90% 20%, 100% 10%, 90% 0%, 40% 70%, 20% 50%);
}
@media only screen and (max-width: 450px) {
  input[name=x]:checked + label::before {
    font-size: 1.6rem;
    width: 1.6rem;
    height: 1.6rem;
  }
}

input[name=x]:checked + label::after,
input[name=x]:not(:checked) + label::after {
  background-color: transparent;
  border: transparent;
  top: 30%;
  left: 10%;
  width: 0px;
  height: 0px;
  transition: all 0.2s ease-in;
}

input[name=visiting]:checked + label,
input[name=visiting]:not(:checked) + label {
  background-color: rgba(60, 45, 233, 0.1);
  font-size: 3.2rem;
  font-weight: 600;
  color: #9f9f9f;
  padding: 2.4rem 4.8rem;
  transition: all 0.3s ease-in;
}

input[name=visiting]:checked + label {
  background-color: #3c2de9;
  color: #fff;
  transition: all 0.3s ease-in;
}

input[name=visiting]:not(:checked) + label::before {
  width: 2.4rem;
  height: 2.4rem;
  border: 0px solid rgba(60, 45, 233, 0.5);
  background-color: rgba(60, 45, 233, 0.5);
  clip-path: polygon(40% 0%, 60% 0%, 60% 40%, 100% 40%, 100% 60%, 60% 60%, 60% 100%, 40% 100%, 40% 60%, 0% 60%, 0% 40%, 40% 40%);
  font-size: 3.2rem;
  transform: rotate(45deg);
}

input[name=visiting]:checked + label::before {
  width: 2.4rem;
  height: 2.4rem;
  clip-path: polygon(0% 50%, 10% 60%, 30% 80%, 40% 90%, 50% 80%, 90% 20%, 100% 10%, 90% 0%, 40% 70%, 20% 50%);
}

input[name=visiting]:checked + label::after,
input[name=visiting]:not(:checked) + label::after {
  background-color: transparent;
  border: transparent;
  top: 30%;
  left: 10%;
  width: 0px;
  height: 0px;
  transition: all 0.2s ease-in;
}

.apform-location {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0.8rem;
}
.apform-location__h3 {
  font-size: 2rem;
  font-weight: 500;
  color: #3c2de9;
  line-height: 1;
  margin-bottom: 0.8rem;
}
.apform-location__autoCapture-btn {
  -webkit-appearance: none;
  appearance: none;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
  height: 5.2rem;
  width: max(50%, 350px);
  background-color: #2073d9;
  background-color: #6f63ff;
  background-color: #675afc;
  padding: 0rem 1.2rem;
  border-radius: 0.6rem;
  outline: none !important; /* Removes default focus outline */
  border: none; /* Ensures no border */
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
}
@media only screen and (max-width: 450px) {
  .apform-location__autoCapture-btn {
    width: 100%;
  }
}
.apform-location__autoCapture-btn:active, .apform-location__autoCapture-btn:focus {
  outline: none !important;
  border: none !important;
  box-shadow: none !important; /* Removes any shadow effect */
}
.apform-location__autoCapture-btn i {
  font-size: 2.4rem;
}
.apform-location__autoCapture-btn__label {
  font-size: 1.6rem;
  font-weight: 500;
  color: #3c2de9;
}
.apform-location__autoCapture-btn__desc {
  font-size: 1.4rem;
  font-weight: 400;
  color: #949494;
}
.apform-location__separater {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  color: #949494;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
}
.apform-location__search-on-map__label {
  font-size: 1.6rem;
  font-weight: 500;
  color: #333;
  line-height: 1;
  margin-bottom: 0;
}
.apform-location__search-on-map {
  position: relative;
  width: max(50%, 350px);
}
@media only screen and (max-width: 450px) {
  .apform-location__search-on-map {
    width: 100%;
  }
}
.apform-location__search-on-map__clear-input {
  position: absolute;
  top: 0.6rem;
  right: 0.8rem;
  font-size: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50px;
  border: none;
  background: rgba(0, 0, 0, 0.1);
  transition: background 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: none;
}
.apform-location__search-on-map__clear-input:hover {
  background: rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.apform-location__search-on-map__clear-input:active {
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.apform-location i {
  font-size: 2rem;
}
.apform-location__map__instruction {
  color: white;
  width: fit-content;
  position: relative;
  background-color: #2a2a2a;
  padding: 0.5rem 1rem;
  border-radius: 0.6rem;
  font-size: 1.6rem;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
}
.apform-location__map__instruction::before {
  content: " ";
  position: absolute;
  left: 45%;
  bottom: -10px;
  border-top: 10px solid #2a2a2a;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  z-index: 10;
}
.apform-location__map__container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.apform-location__map-preloader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right bottom, rgb(195, 194, 213) 0%, rgba(195, 194, 213, 0.5) 40%, rgba(195, 194, 213, 0.5) 60%, rgb(195, 194, 213) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.apform-location__map-preloader:before {
  content: "";
  width: 40px;
  height: 40px;
  border: 4px solid #fe6d00;
  border-top: 4px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 11;
}
.apform-location__address-details {
  width: max(50%, 350px);
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1.6rem;
  margin-top: 3.2rem;
}
@media only screen and (max-width: 450px) {
  .apform-location__address-details {
    width: 100%;
  }
}
.apform-location__address-details__h3 {
  font-size: 1.6rem;
  font-weight: 500;
  color: #3c2de9;
  line-height: 1;
}
.apform-location__address-details__h3-sub {
  font-size: 1.2rem;
  color: #949494;
  font-weight: 400;
}
.apform-location__address-details__row {
  position: relative;
}
.apform-location__address-details__check-icon {
  position: absolute;
  top: 1.3rem;
  left: 0.5rem;
  color: #28a745 !important;
}

#rent-location-map {
  pointer-events: auto !important; /* Ensure map is interactive */
}

input[id=rent-form-society-new],
input[id=pg-form-society-new] {
  padding-right: 4rem;
}

input[id=rent-form-society-new]:not(:placeholder-shown) + #clear-search-input-rent,
input[id=pg-form-society-new]:not(:placeholder-shown) + #clear-search-input-pg {
  display: flex;
}

.location-map {
  height: 400px;
}

.show-container {
  display: block;
  border: 2px solid;
  border-style: groove;
}

.hide-container {
  display: none;
}

.map-invisible {
  visibility: hidden;
  height: 0;
  width: 0;
}

.d-block {
  display: block !important;
}

input.apform-location__address-details__text-input {
  width: 100%;
  height: 5.2rem;
  border: solid 1px #3c2de9;
  border-radius: 0.6rem;
  padding-left: 2.4rem;
  padding-right: 1.6rem;
  font-size: 1.6rem;
  box-sizing: border-box;
  outline: none;
}
input.apform-location__address-details__text-input::placeholder {
  font-size: 1.6rem;
  font-weight: 400;
  color: rgba(51, 51, 51, 0.75);
}

.label-for-input {
  position: absolute;
  padding: 2px 4px;
  color: #333;
  color: #3c2de9;
  font-size: 1.2rem;
  font-weight: 400;
  background: transparent;
  left: 6%;
  top: 15px;
  opacity: 0; /* Use opacity to hide */
  visibility: hidden;
  transition: all 0.3s ease;
}

#label-for-society {
  width: 24rem;
}

#label-for__flatNo {
  width: 67rem;
}

.label {
  margin-bottom: 0;
}

input.apform-location__address-details__text-input:focus:not(:placeholder-shown) ~ .label-for-input,
input.apform-location__address-details__text-input:not(:focus):not(:placeholder-shown) ~ .label-for-input {
  display: block;
  opacity: 1;
  visibility: visible;
  left: 5%;
  top: -10px;
  background: #fff;
  transition: all 0.3s ease;
}

input.apform-location__address-details__text-input:focus:placeholder-shown ~ .apform-location__address-details__check-icon,
input.apform-location__address-details__text-input:focus:not(:placeholder-shown) ~ .apform-location__address-details__check-icon,
input.apform-location__address-details__text-input:not(:focus):placeholder-shown ~ .apform-location__address-details__check-icon {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in, visibility 0s linear 0.3s;
}

input.apform-location__address-details__text-input:not(:focus):not(:placeholder-shown) ~ .apform-location__address-details__check-icon {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease-in;
}

.pac-container {
  max-width: 100% !important; /* Ensures dropdown is not too narrow */
  white-space: normal !important; /* Allows text to wrap */
  word-wrap: break-word !important;
}

.pac-item {
  white-space: normal !important;
  overflow-wrap: break-word !important;
  padding: 10px !important; /* Adds space to prevent text cutting */
}

.pac-item {
  display: grid;
  grid-template-columns: min-content 1fr;
  grid-template-rows: auto auto; /* Two rows */
  gap: 0.2rem; /* Adjust spacing */
  padding: 0.8rem !important;
  font-size: 1.4rem !important;
  line-height: 1.6 !important;
  align-items: center;
  background: white !important; /* Force background */
  color: #000 !important; /* Default text color */
  border-bottom: 1px solid #c3c2d5 !important; /* Add separation between items */
}

.pac-item strong {
  grid-column: 2;
  grid-row: 1;
  font-size: 1.6rem;
  color: #000 !important; /* Dark color for main address */
  display: block;
}

.pac-item small {
  grid-column: 2;
  grid-row: 2;
  font-size: 1.4rem;
  color: #541c95 !important; /* Lighter color for secondary info */
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pac-icon {
  grid-column: 1;
  grid-row: 1/span 2; /* Icon should span both rows */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}

.pac-sub {
  grid-column: 2;
  grid-row: 2;
  font-size: 1.4rem;
  color: #35a424;
}

.pac-item:hover {
  background: #e6e6e6 !important; /* Better hover color */
  color: #000 !important; /* Ensure text color doesn't change */
}

.apform-location__autoCapture-btn__preloader {
  width: 3.6rem;
  height: 3.6rem;
  border: 4px solid #fe6d00;
  border-top: 4px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 11;
}

@keyframes scaler {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
.cta-buttons,
.custom-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 2.4rem;
  column-gap: 3.2rem;
  justify-items: start;
}
@media only screen and (max-width: 450px) {
  .cta-buttons,
  .custom-buttons {
    grid-template-columns: 1fr;
  }
}

.cta-button {
  appearance: none;
  font-size: 1.8rem;
  font-weight: 500;
  text-decoration: none;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  width: 26.7rem;
  max-width: 100%;
  background-color: #3c2de9;
  color: #fff;
  border-radius: 0.4rem;
  border: none;
  display: block;
  text-align: center;
  transition: all 0.2s ease-in;
}
@media only screen and (max-width: 900px) {
  .cta-button {
    width: 100%;
  }
}
.cta-button__secondary {
  background-color: #fff;
  color: #3c2de9;
  border: solid 1px #3c2de9;
}

.cta-button:hover,
.cta-button:active {
  background-color: #29208a;
  outline: none;
  transition: all 0.2s ease-in;
}

.cta-button:focus,
.cta-button:focus-visible {
  outline: none;
}

.apform__cta__button {
  margin-bottom: 4.8rem;
  margin-top: 4.8rem;
}
.apform__cta__button--submit {
  justify-self: end;
}

.appointment__section {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1.6rem;
}
@media only screen and (max-width: 450px) {
  .appointment__section {
    row-gap: 2.4rem;
  }
}
.appointment__heading__desc {
  font-size: 1.4rem;
  font-weight: 400;
  color: rgb(148, 148, 148);
  line-height: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  list-style: circle;
  margin-left: 1.2rem;
}
.appointment-row {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr;
  justify-content: center;
  align-content: center;
  justify-items: flex-start;
  align-items: center;
  column-gap: 2.4rem;
  row-gap: 2.4rem;
}
@media only screen and (max-width: 700px) {
  .appointment-row {
    grid-template-columns: 1fr 1fr;
    column-gap: 1.6rem;
    row-gap: 0.4rem;
  }
}
.appointment-row__day {
  width: 100%;
  max-width: 100%;
}
@media only screen and (max-width: 700px) {
  .appointment-row__day {
    grid-column: 1/-1;
  }
}
.appointment-row__start-time {
  width: 100%;
  max-width: 100%;
  position: relative;
}
@media only screen and (max-width: 450px) {
  .appointment-row__start-time {
    grid-row: 2/3;
  }
}
.appointment-row__end-time {
  width: 100%;
  max-width: 100%;
  position: relative;
}
@media only screen and (max-width: 450px) {
  .appointment-row__end-time {
    grid-row: 2/3;
  }
}

input.appointment__time-input {
  width: 100%;
  height: 4rem;
  border: solid 1px #ddd;
  border-radius: 0.6rem;
  padding-left: 2.4rem;
  padding-right: 1.6rem;
  font-size: 1.6rem;
  box-sizing: border-box;
  outline: none;
  font-size: 1.6rem;
  color: #666;
}
input.appointment__time-input::placeholder {
  font-size: 1.6rem;
  font-weight: 400;
  color: rgba(51, 51, 51, 0.75);
}

input.appointment__time-input:focus {
  box-shadow: 0 0 4px 2px rgba(60, 45, 233, 0.7); /* (x-offset, y-offset, blur, spread, color) */
}

#rent-form-property-description {
  width: 100%;
  height: auto; /* Adjust height dynamically */
  min-height: 80px; /* Minimum height for 3 lines */
  font-size: 1.6rem;
  font-weight: 400;
  color: #666;
  font-family: monospace;
  padding: 1.2rem 1.6rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  resize: vertical;
  line-height: 1.6; /* Adjust line spacing */
  word-wrap: break-word; /* Ensure long words break */
  overflow-y: auto; /* Allow scrolling if needed */
}

#rent-form-property-description:focus {
  outline: none;
  box-shadow: 0 0 4px 2px rgba(60, 45, 233, 0.7);
}

.apform__modal {
  /* Overlay: Full-screen background */
  /* Modal Box */
  /* Modal Header */
  /* Close Button */
  /* Modal Body */
}
.apform__modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 101;
  display: none; /* Initially hidden */
}
.apform__modal-content {
  background: white;
  border-radius: 4px;
  width: 400px;
  max-width: 90%;
  display: grid;
  grid-template-columns: 1fr;
  justify-content: start;
  align-content: center;
  justify-items: start;
  align-items: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow-y: auto; /* Enables scrolling inside the modal */
}
.apform__modal-header {
  width: 100%;
  max-width: 100%;
  padding: 2.4rem 2.4rem 1.6rem 2.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.6rem;
  border-bottom: 1px solid #c1c2d5;
}
.apform__modal-title {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.1;
  color: #3c2de9;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.apform__modal__close-btn {
  appearance: none;
  background: none;
  outline: none;
  border: none;
  font-size: 2.4rem;
  cursor: pointer;
}
.apform__modal__close-btn:focus, .apform__modal__close-btn:focus-visible {
  outline: none;
}
.apform__modal-body {
  width: 100%;
  max-width: 100%;
  padding: 4.8rem 2.4rem 6.4rem 2.4rem;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.1;
  color: #3c2de9;
}

.apform-submit-inprogress-modal__content {
  width: 600px;
}
.apform-submit-inprogress-modal__body {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  align-content: center;
  justify-items: center;
  align-items: center;
  row-gap: 2.4rem;
  position: relative;
}
.apform-submit-inprogress-modal__ctaPreloader {
  display: flex;
  justify-content: center;
  align-items: center;
}
.apform-submit-inprogress-modal__ctaPreloader__uploadProgress {
  font-weight: bold;
  font-size: 1rem;
  z-index: 11;
  animation: spinReverse 1s linear infinite;
}

.slick-slider {
  margin-bottom: 0 !important;
}

.bootstrap-datetimepicker-widget {
  position: absolute !important;
}

/* Top & bottom main4 buttons start here */
.m4-links__wrapper {
  background-color: #ffffff;
  width: 100%;
}
.m4-links__wrapper-transp {
  background-color: transparent;
}
.m4-links__box {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto;
}
@media only screen and (max-width: 900px) {
  .m4-links__box {
    position: fixed;
    bottom: 0px;
    width: 100vw;
    left: 0px;
    margin-top: 0px;
    z-index: 4;
  }
}
.m4-links__link {
  padding: 1.2rem;
  font-size: 1.6rem;
  font-weight: 400;
  color: rgb(51, 51, 51);
  box-shadow: inset -1px 0 0 rgba(195, 194, 213, 0.2), inset 0 -1px 0 rgba(195, 194, 213, 0.1);
  background-color: #ffffff;
  display: grid;
  grid-template-columns: min-content auto;
  grid-template-rows: auto;
  justify-content: center;
  align-items: center;
  column-gap: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
@media only screen and (max-width: 900px) {
  .m4-links__link {
    border-bottom: none;
    border-top: solid 1px rgb(255, 255, 255);
    grid-template-columns: auto;
    grid-template-rows: min-content auto;
    column-gap: 0px;
    justify-items: center;
  }
}
@media only screen and (max-width: 430px) {
  .m4-links__link {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 333px) {
  .m4-links__link {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 270px) {
  .m4-links__link {
    font-size: 1rem;
  }
}
.m4-links__link:hover,
.m4-links__link :active {
  background-color: #f8f9fa;
  text-decoration: none;
  transition: all 0.3s ease-out;
}
.m4-links__link:first-child {
  box-shadow: inset 1px 0 0 rgba(195, 194, 213, 0.2), inset -1px 0 0 rgba(195, 194, 213, 0.2), inset 0 -1px 0 rgba(195, 194, 213, 0.1);
}
.m4-links__link.active {
  border-bottom: none;
  border-bottom: solid 2px #3c2de9;
}
@media only screen and (max-width: 900px) {
  .m4-links__link.active {
    border-bottom: none;
    border-top: solid 2px #3c2de9;
  }
}
.m4-links__icon {
  font-size: 18px;
  color: #3c2de9;
}
@media only screen and (max-width: 430px) {
  .m4-links__icon {
    font-size: 20px;
  }
}
.m4-links__sub-title {
  text-decoration: none;
}
@media only screen and (max-width: 900px) {
  .m4-links__sub-title--desk {
    display: none;
  }
}
.m4-links__sub-title--mob {
  display: none;
}
@media only screen and (max-width: 900px) {
  .m4-links__sub-title--mob {
    display: block;
  }
}

/* Top & bottom main4 buttons ends here */
/*  */
/*  */
.ylpage__unl-headingbox {
  height: calc(100vh - 100px);
  margin: 5.2rem auto !important;
}

.ylpage__ul-headingbox {
  margin: 5.2rem auto !important;
}
@media only screen and (max-width: 500px) {
  .ylpage__ul-headingbox {
    margin: 5.2rem auto !important;
  }
}

.hiw__textbox {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2rem;
  padding: 3.2rem 4rem;
  margin: 0 1.2rem;
  border-radius: 1.6rem;
  background-image: linear-gradient(to right bottom, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.8) 80%, rgba(255, 255, 255, 0.5) 100%);
}
.hiw__text__heading-h4 {
  font-size: 2.4rem;
  line-height: 1.1;
  font-weight: 600;
  color: #333;
}
@media only screen and (max-width: 450px) {
  .hiw__text__heading-h4 {
    font-size: 2rem;
  }
}
.hiw__text__heading-h4--small {
  font-size: 1.6rem;
}
.hiw__text__heading-h4--medium {
  font-size: 2rem;
}
.hiw__text--list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
}
@media only screen and (max-width: 500px) {
  .hiw__text--list {
    line-height: 1.4;
    row-gap: 1.2rem;
    font-weight: 700;
  }
}
.hiw__text--listItem {
  display: flex;
  justify-content: start;
  align-items: stretch;
  font-size: 1.6rem;
  font-weight: 300;
  color: rgb(70, 70, 70);
  gap: 0.8rem;
  padding-left: 0rem;
}
.hiw__text--listItem::before {
  content: "✓";
  color: rgba(60, 60, 60, 0.65);
}

.ylpage__cta-button:link,
.ylpage__cta-button:visited {
  font-size: 1.8rem;
  font-weight: 500;
  text-decoration: none;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  width: 100%;
  max-width: 26.7rem;
  background-color: #3c2de9;
  color: #fff;
  border-radius: 0.4rem;
  display: block;
  text-align: center;
  margin-top: 0.8rem;
  transition: all 0.2s ease-in;
}
@media only screen and (max-width: 450px) {
  .ylpage__cta-button:link,
  .ylpage__cta-button:visited {
    max-width: 100%;
  }
}

.ylpage__cta-button:hover,
.ylpage__cta-button:focus,
.ylpage__cta-button:active {
  background-color: #211884;
}

.ylpage__cta-button i {
  font-weight: 300;
}

.please-login-box {
  max-width: 116rem;
  margin: 12.8rem auto;
  height: calc(100vh - 112px);
  background-color: transparent;
  padding: 6.4rem 1.6rem;
  text-align: center;
}
.please-login-box__h3 {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 0;
}
.please-login-box__h6 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 0;
  margin-top: 2.4rem;
}
.please-login-box__link:link, .please-login-box__link:visited {
  font-size: 2rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
  color: rgb(60, 45, 233);
  text-decoration-color: rgba(60, 45, 233, 0.8);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.property-card__container {
  max-width: 116rem;
  margin: 0 auto;
  margin-top: 2.4rem;
  margin-bottom: 6.4rem;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 4.8rem;
}
@media only screen and (max-width: 1180px) {
  .property-card__container {
    padding: 0 1rem;
  }
}
@media only screen and (max-width: 450px) {
  .property-card__container {
    padding: 0 1.2rem;
  }
}

.property-card {
  background-color: #ffffff;
  padding: 2rem 0rem;
  border-radius: 1.6rem;
  border: 1px solid #e5e4f7;
  box-shadow: 0 1rem 2rem rgba(60, 45, 233, 0.08);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto auto;
  position: relative;
}
.property-card__house {
  border-bottom: 1px solid #e8e5f8;
  padding: 3.2rem 1.6rem 3.2rem 4rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  column-gap: 1.6rem;
  row-gap: 1.6rem;
}
@media only screen and (max-width: 450px) {
  .property-card__house {
    padding: 1.6rem 1.6rem 1.6rem 2.4rem;
    padding: 3.2rem 1.6rem 3.2rem 2.4rem;
  }
}
.property-card__house--headline {
  font-size: 1.8rem;
  font-weight: 600 !important;
  line-height: 1.1;
  color: #333333;
}
@media only screen and (max-width: 450px) {
  .property-card__house--headline {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 450px) {
  .property-card__house--headline-tail {
    font-size: 1.2rem;
  }
}
.property-card__house--headline-new {
  font-weight: 600;
}
.property-card__house--subheading {
  grid-column: 1/-1;
  grid-row: 1/2;
  background-color: #e8e5f8;
  padding: 1.6rem 1.6rem 1.6rem 1.6rem;
  border-radius: 0.6rem;
}
.property-card__house--desc {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.6;
  color: #949494 !important;
}
@media only screen and (max-width: 450px) {
  .property-card__house--desc {
    line-height: 1.2;
  }
}
.property-card__house--desc i {
  color: #949494 !important;
}
.property-card__house--desc span {
  background: transparent !important;
  margin-top: -0.8rem;
}
.property-card__house--icons {
  display: grid;
  grid-template-columns: min-content min-content min-content;
  grid-template-rows: auto;
  justify-content: end;
  column-gap: 0.8rem;
  padding: 0rem 2rem 0 4rem;
}
@media only screen and (max-width: 450px) {
  .property-card__house--icons {
    font-size: 1.2rem;
  }
}
.property-card__msg {
  border-bottom: 1px solid #e8e5f8;
  padding: 3.2rem 2rem 3.2rem 4rem;
  display: grid;
  grid-template-columns: 1fr min-content;
  grid-template-rows: auto;
  column-gap: 1.6rem;
}
@media only screen and (max-width: 450px) {
  .property-card__msg {
    padding: 3.2rem 1.6rem 3.2rem 2.4rem;
  }
}
.property-card__msg--text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  color: #9f4db6;
}
.property-card__visiting {
  padding: 3.2rem 2rem 3.2rem 4rem;
}
@media only screen and (max-width: 450px) {
  .property-card__visiting {
    padding: 1.6rem 1.6rem 1.6rem 2.4rem;
    padding: 3.2rem 1.6rem 3.2rem 2.4rem;
  }
}
.property-card__uploads {
  padding: 3.2rem 2rem 3.2rem 2.4rem;
}
@media only screen and (max-width: 450px) {
  .property-card__uploads {
    padding: 1.6rem 1.6rem 1.6rem 2.4rem;
    padding: 2rem 1.6rem 2rem 2.4rem;
    padding: 3.2rem 1.6rem 3.2rem 2.4rem;
  }
}

.property-card__visiting {
  border-bottom: 1px solid #e8e5f8;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 5.2rem;
}
.property-card__visiting--heading {
  display: grid;
  grid-template-columns: min-content minmax(min-content, 240px) 1fr;
  grid-template-rows: auto;
  row-gap: 1.6rem;
  align-items: center;
}
@media only screen and (max-width: 450px) {
  .property-card__visiting--heading {
    grid-template-columns: 1fr 2fr;
    column-gap: 1.6rem;
  }
}
.property-card__visiting--h3 {
  font-size: 3.2rem;
  font-weight: 600;
  margin-right: 1.6rem;
  line-height: 1.1;
  color: #333;
}
@media only screen and (max-width: 450px) {
  .property-card__visiting--h3 {
    font-size: 2.8rem;
  }
}
@media only screen and (max-width: 330px) {
  .property-card__visiting--h3 {
    font-size: 2.4rem;
  }
}
@media only screen and (max-width: 300px) {
  .property-card__visiting--h3 {
    font-size: 2rem;
  }
}
.property-card__visiting--radio-box {
  align-self: center;
  padding: 0.8rem 1.2rem;
  border-radius: 12rem;
  display: grid;
  grid-template-columns: min-content min-content min-content;
  grid-template-rows: min-content;
  column-gap: 1.6rem;
  align-content: center;
  justify-content: center;
  align-items: center;
  justify-items: center;
}
@media only screen and (max-width: 450px) {
  .property-card__visiting--radio-box {
    column-gap: 2.8rem;
    padding: 0.8rem 1.2rem;
    background-image: linear-gradient(to right, #e8e5f8 0%, #f1effc 50%, #e8e5f8 100%);
  }
}
@media only screen and (max-width: 420px) {
  .property-card__visiting--radio-box {
    column-gap: 1.6rem;
  }
}
@media only screen and (max-width: 380px) {
  .property-card__visiting--radio-box {
    column-gap: 0.8rem;
  }
}
@media only screen and (max-width: 370px) {
  .property-card__visiting--radio-box {
    column-gap: 0.8rem;
  }
}
.property-card__visiting--heading-inputbox {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
}
.property-card__visiting--heading-inputbox.visitingTypeChecked {
  background-color: rgb(159, 77, 182);
}
.property-card__visiting--heading-inputbox-text {
  margin: 0;
  padding: 0;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  color: rgba(68, 68, 76, 0.2);
}
@media only screen and (max-width: 450px) {
  .property-card__visiting--heading-inputbox-text {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 370px) {
  .property-card__visiting--heading-inputbox-text {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 356px) {
  .property-card__visiting--heading-inputbox-text {
    font-size: 1.4rem;
  }
}
.property-card__visiting--heading-inputbox.visitingTypeChecked .property-card__visiting--heading-inputbox-text {
  color: #fff;
}
.property-card__visiting--heading-separator {
  padding: 0;
  margin: 0;
  line-height: 1;
  font-size: 3.2rem;
  color: rgba(68, 68, 76, 0.5);
}
@media only screen and (max-width: 450px) {
  .property-card__visiting--heading-separator {
    font-size: 2.4rem;
  }
}
@media only screen and (max-width: 330px) {
  .property-card__visiting--heading-separator {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 300px) {
  .property-card__visiting--heading-separator {
    font-size: 1.6rem;
  }
}
.property-card__visiting--desc {
  grid-row: 2; /* Place the cell in the second row */
  grid-column: 1/-1; /* Span from the first to the last column */
  margin-top: 2rem !important;
  margin-bottom: 0.8rem;
  list-style: none;
  max-width: 100%;
}
.property-card__visiting--desc--list {
  display: grid;
  grid-template-columns: min-content 1fr;
  grid-template-rows: auto;
  align-items: start;
  column-gap: 2.4rem;
  row-gap: 2rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 0.4rem;
  color: rgb(100, 100, 100);
}
.property-card__visiting--desc--list::before {
  content: "✓";
  color: rgba(60, 60, 60, 0.65);
}
@media only screen and (max-width: 450px) {
  .property-card__visiting--desc--list {
    column-gap: 1.6rem;
  }
}
.property-card__visiting--desc--list--dark {
  color: #333;
}
.property-card__visiting--desc--list--light {
  color: #7f7f7f;
  font-weight: 300;
}
.property-card__visiting--desc__icon {
  margin-top: 0.4rem;
  color: rgb(150, 150, 150);
  font-size: 16px;
}
.property-card__visiting--cta {
  grid-row: 3; /* Place the cell in the second row */
  grid-column: 1/3;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  color: #fff;
  border: none;
  background-color: #3c2de9;
  padding: 0.8rem 2.4rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.2s ease-in;
}
@media only screen and (max-width: 450px) {
  .property-card__visiting--cta {
    grid-column: 1/-1;
  }
}
.property-card__visiting--cta:hover {
  background-color: #211884;
  transition: all 0.2s ease-in;
}
.property-card__visiting--avlbl {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  column-gap: 1.6rem;
  row-gap: 0.8rem;
}
.property-card__visiting--avlbl.hide {
  display: none;
}
.property-card__visiting--avlbl-heading {
  display: grid;
  grid-template-columns: max-content min-content;
  grid-template-rows: auto;
  column-gap: 2.4rem;
  align-items: center;
}
@media only screen and (max-width: 450px) {
  .property-card__visiting--avlbl-heading {
    column-gap: 1.6rem;
  }
}
.property-card__visiting--avlbl-h4 {
  font-size: 2rem;
  font-weight: 600;
  color: #333333;
}
@media only screen and (max-width: 450px) {
  .property-card__visiting--avlbl-h4 {
    font-size: 1.8rem;
  }
}
.property-card__visiting--avlbl-desc {
  margin-bottom: 1.2rem;
}
.property-card__visiting--avlbl-desc-h5 {
  font-size: 1.4rem;
  font-weight: 400;
  color: #949494;
}
.property-card__visiting--avlbl-timing {
  font-size: 1.6rem;
  font-weight: 400;
  color: #949494;
  color: #333;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  column-gap: 1.6rem;
  row-gap: 0.4rem;
}
@media only screen and (max-width: 450px) {
  .property-card__visiting--avlbl-timing {
    row-gap: 0.2rem;
  }
}
.property-card__visiting--avlbl-timing i {
  font-weight: 500; /* does not have effect*/
  color: rgb(30, 30, 30);
  margin-bottom: 1px;
}
@media only screen and (max-width: 450px) {
  .property-card__visiting--avlbl-timing i {
    margin-bottom: 1px;
  }
}
.property-card__visiting--avlbl-timing-dayBox {
  display: grid;
  grid-template-columns: min-content 1fr;
  grid-template-rows: auto;
  justify-content: flex-start;
  align-content: center;
  justify-items: start;
  align-items: center;
  column-gap: 1.2rem;
}
.property-card__visiting--avlbl-timing-day {
  display: grid;
  grid-template-columns: min-content auto;
  grid-template-rows: auto;
  column-gap: 0.8rem;
  align-items: center;
  justify-content: start;
  justify-items: start;
  font-weight: 400;
}
.property-card__uploads {
  display: grid;
  grid-template-columns: 2fr 2fr 4fr;
  grid-template-rows: auto;
  row-gap: 2.4rem;
  column-gap: 2.4rem;
}
@media only screen and (max-width: 900px) {
  .property-card__uploads {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
}
.property-card__uploads--photos, .property-card__uploads--video {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  row-gap: 0.8rem;
  justify-content: center;
  align-content: center;
  justify-items: center;
  align-items: center;
}
.property-card__uploads--video-h5, .property-card__uploads--photos-h5 {
  width: 100%;
  text-align: start;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.6;
  color: #333;
}
.property-card__uploads--pvbox {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 16/9;
  border-radius: 2px;
  position: relative;
  background-image: linear-gradient(to right bottom, rgb(195, 194, 213) 0%, rgba(195, 194, 213, 0.5) 20%, rgba(195, 194, 213, 0.5) 80%, rgb(195, 194, 213) 100%);
  display: block; /* or flex, if preferred */
  overflow: hidden; /* safe to keep */
}
.property-card__uploads--pvbox-edit {
  padding: 0.8rem 0.8rem;
  position: absolute;
  bottom: 0%;
  right: 0%;
  z-index: 1;
}
.property-card__uploads--showImage {
  max-width: 100%;
  height: 100%;
  width: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
  flex-shrink: 0;
}
.property-card__uploads--showVideo {
  display: block;
  height: 100%;
  width: auto;
  max-width: 100%;
  margin: auto;
  /* optional */
  object-fit: contain;
}
.property-card__uploads--desc {
  align-self: center;
  justify-self: start;
  color: #7f7f7f;
  font-weight: 300 !important;
}
@media only screen and (max-width: 900px) {
  .property-card__uploads--desc {
    grid-column: 1/3;
  }
}
.property-card__uploads--desc__icon {
  color: #7f7f7f;
  margin-top: 0.4rem;
}

label[class=visitingType] {
  margin: 0;
  padding: 0;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.1;
  color: rgba(68, 68, 76, 0.5);
  padding: 2px 16px;
}
@media only screen and (max-width: 450px) {
  label[class=visitingType] {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 330px) {
  label[class=visitingType] {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 300px) {
  label[class=visitingType] {
    font-size: 1.6rem;
  }
}

input[class=visitingTypeInput]:checked ~ label[for=visitingTypeOff] {
  padding: 2px 16px;
  border-radius: 100px;
  background-color: #3c2de9;
  color: #fff;
}

input[class=visitingTypeInput]:checked ~ label[for=visitingTypeOn] {
  padding: 2px 16px;
  border-radius: 100px;
  background-color: #3c2de9;
  color: #fff;
}

input[class=visitingTypeInput] {
  margin-right: -3rem;
  appearance: none;
}

input[class=visitingTypeInput]:disabled {
  appearance: none; /* Removes default styles if needed */
}

input[class=visitingTypeInput]:disabled + label.visitingType {
  pointer-events: none; /* Prevent user interaction with the label */
  cursor: default;
}

.notification-indicator {
  width: 5px;
  height: 5px;
  background-color: #f29c3e;
}

.property-image-btn-wrapper {
  position: absolute;
  bottom: 25px;
  right: 25px;
  /* padding: 1px 10px; */
  background-color: #2073d9;
  border: 1px solid #2073d9;
  border-radius: 4px;
  cursor: pointer;
  z-index: 1;
}

.property-image-btn-wrapper .property-image-btn {
  text-decoration: none;
  color: #ffffff;
}

button.property-image-btn {
  background-color: transparent;
  border-width: 0;
  padding: 1px 10px;
  cursor: pointer;
}

.property-image-btn-wrapper {
  position: absolute;
  bottom: 25px;
  right: 25px;
  /* padding: 1px 10px; */
  background-color: #2073d9;
  border: 1px solid #2073d9;
  border-radius: 4px;
  cursor: pointer;
  z-index: 1;
}

.focus-box-shadow-none:focus {
  box-shadow: none;
  outline: none !important;
}

.property-btn-relative {
  position: relative;
  top: 0;
  right: 0;
  padding: 0px 5px;
}

.property-image-btn-wrapper {
  position: absolute;
  bottom: 25px;
  right: 25px;
  /* padding: 1px 10px; */
  background-color: #2073d9;
  border: 1px solid #2073d9;
  border-radius: 4px;
  cursor: pointer;
  z-index: 1;
}

.property-image-btn-wrapper:hover {
  background-color: #6c9dd9;
  border: 1px solid #6c9dd9;
}

.property-image-btn-wrapper .property-image-btn {
  text-decoration: none;
  color: #ffffff;
}

.property-image-final-main {
  height: 170px;
}

.property-video-final-main {
  height: 165px;
}

.test-btnBox {
  position: relative;
  max-width: 1140px;
  margin: 20px auto;
  padding: 90px 0px;
  background-color: #fff;
}

.test-btnBox {
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(6, min-content);
  grid-template-rows: auto;
  column-gap: 24px;
}

.ylabtn {
  padding: 0.8rem 1.2rem;
  padding: 0.2rem 0.4rem;
  background: transparent;
  text-decoration: none;
  text-align: center;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in;
  /* Tooltip arrow (triangle) */
  /* Show tooltip on hover */
}
.ylabtn:hover, .ylabtn:active {
  text-decoration: none;
  border: none;
  background: rgba(195, 194, 213, 0.5);
}
.ylabtn:focus {
  outline: none; /* Removes the focus outline */
}
.ylabtn__icon {
  color: #3c2de9;
  font-size: 1.6rem;
  font-size: 2rem;
}
.ylabtn__tooltip {
  position: relative;
  cursor: pointer;
}
.ylabtn__tooltip::after {
  content: attr(data-tooltip); /* Gets text from data-tooltip attribute */
  position: absolute;
  top: 100%; /* Position above the element */
  left: 50%;
  transform: translateX(-50%);
  background-color: rgb(195, 194, 213);
  color: #333;
  padding: 6px 10px;
  border-radius: 5px;
  font-size: 14px;
  white-space: nowrap;
  margin-top: 8px; /* Space between button and tooltip */
  opacity: 0;
  visibility: hidden;
  z-index: 11;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.ylabtn__tooltip::before {
  content: "";
  position: absolute;
  top: 90%; /* Align with tooltip box */
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent rgb(195, 194, 213) transparent;
  opacity: 0;
  visibility: hidden;
  z-index: 11;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.ylabtn__tooltip:hover::after, .ylabtn__tooltip:hover:before {
  opacity: 1;
  visibility: visible;
}

/* Tooltip container */
.ylabtn__tooltip {
  position: relative;
  cursor: pointer;
}

/* Tooltip text (hidden by default) */
.ylpage-modal-cta__preloader {
  width: 3.6rem;
  height: 3.6rem;
  border: 4px solid #fe6d00;
  border-top: 4px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 11;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spinReverse {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.mbModal {
  /* Overlay: Full-screen background */
  /* When modal is active, make it visible */
  /* Modal Box */
  /* Modal Header */
  /* Close Button */
  /* Modal Body */
}
.mbModal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 101;
  overflow-y: auto; /* Allow scrolling */
  /* Start with invisible state */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0.95);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out, visibility 0s linear 0.3s;
}
.mbModal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
  transition-delay: 0s;
}
.mbModal-overlay.active .mbModal-content {
  transform: translateY(0);
}
.mbModal-content {
  margin-top: 56px;
  margin-bottom: 70px;
  max-height: 90vh;
  overflow-y: auto; /* Enables scrolling if content is too long */
  background: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  width: 400px;
  max-width: 90%;
  display: grid;
  grid-template-columns: 1fr;
  justify-content: start;
  align-content: start;
  justify-items: start;
  align-items: center;
  transform: translateY(-20px);
  transition: transform 0.3s ease-out;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow-y: auto; /* Enables scrolling inside the modal */
  scrollbar-width: thin; /* For Firefox */
  scrollbar-color: rgba(0, 0, 0, 0.3) transparent; /* Subtle scrollbar */
  /* For Webkit browsers (Chrome, Safari, Edge) */
}
@media only screen and (max-width: 900px) {
  .mbModal-content {
    max-height: calc(90vh - 126px); /* Prevents modal from exceeding the viewport */
  }
}
.mbModal-content::-webkit-scrollbar {
  width: 6px;
}
.mbModal-content::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 3px;
}
.mbModal-content::-webkit-scrollbar-track {
  background: transparent;
}
.mbModal-header {
  width: 100%;
  max-width: 100%;
  padding: 2.4rem 2.4rem 1.6rem 2.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.6rem;
  border-bottom: 1px solid #e5e4f7;
}
.mbModal-title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.1;
  color: #3c2de9;
  color: #fe6d00;
  letter-spacing: 2px;
}
.mbModal__close-btn {
  appearance: none;
  background: none;
  outline: none;
  border: none;
  width: 30px;
  height: 30px;
  cursor: pointer;
  height: 30px;
  width: 30px;
  position: relative;
}
.mbModal__close-btn:focus, .mbModal__close-btn:focus-visible {
  outline: none;
}
.mbModal__close-btn::before, .mbModal__close-btn::after {
  content: "";
  width: 22px;
  height: 2px;
  background: rgb(125, 125, 125);
  position: absolute;
  left: 6px;
  transform: translate(0, -100%);
}
.mbModal__close-btn::before {
  transform-origin: left bottom;
  top: 4px;
  transform: rotate(45deg);
}
.mbModal__close-btn::after {
  top: 20px;
  transform-origin: left top;
  transform: rotate(-45deg);
}
.mbModal-body {
  width: 100%;
  max-width: 100%;
  padding: 4.8rem 2.4rem 9.6rem 2.4rem;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.1;
  color: #3c2de9;
  position: relative;
}
.mbModal-body__success {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  align-content: center;
  justify-items: center;
  align-items: center;
  row-gap: 3.2rem;
}
.mbModal-body__success i {
  font-size: 6.4rem;
}
.mbModal-body__success__message-box {
  text-align: center;
}
.mbModal-body__success__message {
  text-align: center;
  line-height: 1.6;
}
.mbModal-body__success__message--small {
  font-size: 1.6rem;
  margin-bottom: 1.6rem;
  color: #333;
}
.mbModal-body__success__message--big {
  font-size: 2rem;
  color: #3c2de9;
  line-height: 1.6;
}
.mbModal-body__success__check-circle {
  width: 11.2rem; /* Circle size */
  height: 11.2rem;
  background-color: green;
  border-radius: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mbModal-body__success__check-circle::before {
  content: "";
  position: absolute;
  width: 4.8rem;
  height: 2.4rem;
  border-left: 0.8rem solid white; /* Left part of check */
  border-bottom: 0.8rem solid white; /* Bottom part of check */
  transform: rotate(-45deg); /* Rotates to form a checkmark */
}
.mbModal-body__failure__cross-circle {
  width: 11.2rem;
  height: 11.2rem;
  background-color: red;
  border-radius: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mbModal-body__failure__cross-circle::before, .mbModal-body__failure__cross-circle::after {
  content: "";
  position: absolute;
  width: 4.8rem;
  height: 0.8rem;
  background-color: white;
  border-radius: 2px;
}
.mbModal-body__failure__cross-circle::before {
  transform: rotate(45deg);
}
.mbModal-body__failure__cross-circle::after {
  transform: rotate(-45deg);
}
.mbModal-body-title {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.6;
  color: #333;
}
.mbModal-form {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 4rem;
}
.mbModal__file-input-box {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1.6rem;
}
.mbModal-btn__box {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0.8rem;
  justify-content: center;
  align-content: center;
  justify-items: start;
  align-content: center;
}
.mbModal-btn {
  background-color: #3c2de9;
  border: none;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  padding: 0.8rem 0.8rem;
  width: 100%;
  max-width: 26.7rem;
  height: 52px;
  border-radius: 0.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1.6rem;
  transition: all 0.2s ease-in;
}
@media only screen and (max-width: 500px) {
  .mbModal-btn {
    max-width: 100%;
  }
}
.mbModal-btn:hover {
  background-color: #29208a;
  outline: none;
}
.mbModal-btn:focus,
.mbModal-btn .mbModal-btn:focus-visible {
  outline: none;
}
.mbModal-btn__preloader {
  width: 3.6rem;
  height: 3.6rem;
  border: 4px solid #fe6d00;
  border-top: 4px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 11;
}
.mbModal-btn__preloader-big {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none; /* Ensures clicks don't go through */
}
.mbModal-btn__preloader-big__circle {
  width: 20rem;
  height: 20rem;
  border: 16px solid #fe6d00;
  border-top: 16px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mbModal-btn__preloader__uploadProgress {
  color: white;
  font-size: 1.2rem;
}
.mbModal-btn__preloader-big__uploadProgress {
  color: #3c2de9;
  font-size: 3.2rem;
  animation: spinReverse 1s linear infinite;
}
.mbModal__validationError__message {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  color: #ffa2a2;
}
.mbModal__failureMessage-box {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border: solid 1px #ffa2a2;
  border-radius: 4px;
}
.mbModal__failureMessage {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  color: #ffa2a2;
}
.mbModal__file-input {
  display: block;
  width: 1px; /* Shrinks input */
  height: 1px;
  opacity: 0; /* Fully hides */
  overflow: hidden;
}
.mbModal__file-input-label {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.1;
  color: #fff;
  cursor: pointer;
  padding: 1.6rem 0.8rem 1.6rem 0.8rem;
  background-color: #fe6d00;
  background: linear-gradient(to right bottom, rgb(254, 109, 0) 0%, rgb(254, 109, 0) 10%, rgb(254, 109, 0) 15%, rgb(254, 109, 0) 100%);
  border-radius: 0.4rem;
  text-align: center;
}

.yltab-share-modal__content {
  width: 600px;
}
.yltab-share-modal__body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 4.8rem 1.6rem;
}
.yltab-share-modal__body__row {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  column-gap: 2.4rem;
  row-gap: 1.6rem;
  flex-wrap: wrap;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 400;
  color: #333;
  cursor: pointer;
}
@media only screen and (max-width: 450px) {
  .yltab-share-modal__body__row--li {
    grid-column: 2/3;
    grid-row: 1/2;
  }
}
.yltab-share-modal__body__row--iconBox {
  width: 8rem;
  height: 8rem;
  border-radius: 40px;
  background-color: #d8d8d8;
  display: flex;
  justify-content: center;
  align-items: center;
}
.yltab-share-modal__body__row--iconBox i {
  display: inline-block;
  color: #fff;
}
.yltab-share-modal__iconBox__ctcb {
  background-image: linear-gradient(to right, rgb(195, 194, 213) 0%, rgba(195, 194, 213, 0.5) 20%, rgba(195, 194, 213, 0.5) 80%, rgb(195, 194, 213) 100%);
}
.yltab-share-modal__iconBox__wa {
  background-color: #25d366;
}
.yltab-share-modal__iconBox__fb {
  background-color: rgb(44, 100, 246);
}
.yltab-share-modal__iconBox__li {
  background-color: rgb(49, 113, 173);
}
.yltab-share-modal__iconBox__em {
  background-color: #d14836;
}
.yltab-share-modal__iconBox__ig {
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}
.yltab-share-modal__icon-ctcb {
  font-size: 3.2rem;
}
.yltab-share-modal__icon-wa {
  font-size: 4rem;
}
.yltab-share-modal__icon-fb {
  font-size: 3.2rem;
}
.yltab-share-modal__icon-li {
  font-size: 3.2rem;
}
.yltab-share-modal__icon-email {
  font-size: 3.2rem;
}
.yltab-share-modal__icon-ig {
  font-size: 3.2rem;
}
.textarea-oneLiner.ylpage-form-oneLiner {
  width: 100%;
  height: auto; /* Adjust height dynamically */
  min-height: 80px; /* Minimum height for 3 lines */
  font-size: 1.6rem;
  font-weight: 400;
  color: #666;
  font-family: monospace;
  padding: 1.2rem 1.6rem 2.4rem 1.6rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  resize: vertical;
  line-height: 1.6; /* Adjust line spacing */
  word-wrap: break-word; /* Ensure long words break */
  overflow-y: auto; /* Allow scrolling if needed */
}

.textarea-oneLiner.ylpage-form-oneLiner:focus {
  outline: none;
  box-shadow: 0 0 4px 2px rgba(60, 45, 233, 0.7);
}

/* 🔹 Character Counter */
.textarea-charCount {
  position: absolute;
  top: 6.4rem;
  right: 1.4rem;
  font-size: 1.2rem;
  color: #adb5bd;
  background: white;
  padding: 2px 2px;
  border-radius: 4px;
  z-index: 2; /* Ensure counter stays above textarea */
}
@media only screen and (max-width: 450px) {
  .textarea-charCount {
    background: transparent;
  }
}

.textarea-charCount.warning {
  color: #fcc419;
}

.textarea-charCount.error {
  color: #ff6b6b;
}

.ylpage-one-liner-modal__content {
  width: 900px;
}
.ylpage-one-liner-modal__widget {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: start;
  align-content: center;
  justify-items: start;
  align-items: center;
  row-gap: 1.6rem;
}
.ylpage-one-liner-modal__input-box1 {
  width: 100%;
}

.ylpage-delete-modal__content {
  width: 900px;
}
.ylpage-delete-modal__body__title {
  margin-bottom: 5.2rem;
}
.ylpage-delete-modal__widget {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: start;
  align-content: center;
  justify-items: start;
  align-items: center;
  row-gap: 2.4rem;
}
.ylpage-delete-modal__widget__title {
  font-size: 1.6rem;
  color: #949494;
  font-weight: 600;
}
.ylpage-availability-modal__content {
  width: 650px;
}
.ylpage-availability-modal__widget {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: start;
  align-content: center;
  justify-items: start;
  align-items: center;
  row-gap: 1.2rem;
}
.ylpage-availability-modal__input-box1 {
  width: 100%;
}
.ylpage-availability-modal__button {
  margin-top: 3.2rem;
}

.ylpage-picture-modal__content {
  width: 600px;
  max-width: 98%;
}
.ylpage-picture-modal__body {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2.4rem;
  position: relative;
}
.ylpage-picture-modal__display-box--images {
  width: 100%;
  padding: 0.8rem 0rem;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 1.6rem;
  column-gap: 0.4rem;
  background-color: transparent;
}
.ylpage-picture-modal__display-image-box {
  width: 100px;
  height: 100px;
  border: 1px solid #ffffff;
  border-radius: 0.4rem;
  background-size: cover; /* Ensures image fits properly */
  background-position: center; /* Moves the image to the center */
  background-repeat: no-repeat; /* Prevents tiling */
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ylpage-picture-modal__display-image-box--uImages {
  width: 80px;
  height: 80px;
}
.ylpage-picture-modal__imgPreloader {
  border: 4px solid #fff;
  border-top: 4px solid transparent;
}
.ylpage-picture-modal__display-image-box__remove-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  background: red;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  padding-bottom: 2px;
  cursor: pointer;
}
@media only screen and (max-width: 450px) {
  .ylpage-picture-modal__display-image-box__remove-btn {
    padding-bottom: 0px;
  }
}
.ylpage-picture-modal__file-input-box {
  margin-top: 2.8rem;
}
.ylpage-picture-modal__label-icon {
  display: inline-block;
  font-weight: 300;
}
.ylpage-picture-modal__button {
  justify-self: center;
}
.ylpage-picture-modal__ctaPreloader {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ylpage-picture-modal__ctaPreloader__uploadProgress {
  font-weight: bold;
  font-size: 1rem;
  z-index: 11;
  animation: spinReverse 1s linear infinite;
}

.ylpage-video-modal__content {
  width: 600px;
}
.ylpage-video-modal__body {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  align-content: center;
  justify-items: center;
  align-items: center;
  row-gap: 2.4rem;
  position: relative;
}
.ylpage-video-modal__display-box--videos {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  align-content: center;
  justify-items: center;
  row-gap: 0.8rem;
  column-gap: 0.8rem;
}
.ylpage-video-modal__display-video-box {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 16/9;
  border-radius: 4px;
  overflow: hidden;
  background-image: linear-gradient(to right bottom, rgb(195, 194, 213) 0%, rgba(195, 194, 213, 0.5) 20%, rgba(195, 194, 213, 0.5) 80%, rgb(195, 194, 213) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ylpage-video-modal__videoPreloader {
  border: 4px solid #fff;
  border-top: 4px solid transparent;
  position: absolute;
}
.ylpage-video-modal__display-video-box__remove-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  background: red;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  padding-bottom: 2px;
  cursor: pointer;
}
@media only screen and (max-width: 450px) {
  .ylpage-video-modal__display-video-box__remove-btn {
    padding-bottom: 0px;
  }
}
.ylpage-video-modal__display-video {
  width: auto;
  height: 100%;
  object-fit: cover;
}
.ylpage-video-modal__file-input-box {
  margin-top: 2.8rem;
}
.ylpage-video-modal__label-icon {
  display: inline-block;
  font-weight: 300;
}
.ylpage-video-modal__button {
  justify-self: center;
}
.ylpage-video-modal__ctaPreloader {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ylpage-video-modal__ctaPreloader__uploadProgress {
  font-weight: bold;
  font-size: 1rem;
  z-index: 11;
  animation: spinReverse 1s linear infinite;
}

.modalBox {
  margin: 20px;
  padding: 10px;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 1.6rem;
  column-gap: 1.6rem;
}
.modalBox div {
  padding: 10px;
  background-color: #c1c2d5;
}
.modalBox div:focus {
  border: solid 1px #25d366;
}
.modalBox div:focus-visible {
  border: solid 1px #25d366;
}

.test-pointer-event {
  width: 200px;
  height: 400px;
  padding: 40px;
  margin: 0 auto;
  background: #8db9f1;
  position: relative;
}
.test-pointer-event__link-box {
  padding: 40px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 11;
}
.test-pointer-event__link-box a:link, .test-pointer-event__link-box a:visited {
  padding: 1.6rem;
  background-color: #3c2de9;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
}
.test-pointer-event__link-box a:hover, .test-pointer-event__link-box a:active {
  background-color: #fa7e1e;
  color: #fff;
}
.test-pointer-event__preloader {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 80%;
  height: 80%;
  background: rgba(255, 255, 255, 0.7);
}

/* main */
main.main-container {
  margin-top: 0rem !important;
}

.custom-card {
  margin-top: 0rem;
}
@media only screen and (max-width: 900px) {
  .custom-card {
    margin-top: 0rem;
  }
}

/* main */
.sr__box {
  width: 114rem;
  max-width: 100%;
  margin: 0rem auto;
  padding: 1.6rem 0.8rem;
  padding-top: 0rem;
}
@media only screen and (max-width: 600px) {
  .sr__box {
    padding: 1.6rem 0rem;
  }
}
.sr__wrapper {
  background-color: #fff;
  padding: 1.6rem 1.6rem 4.8rem 1.6rem;
  border-bottom-right-radius: 0.6rem;
  border-bottom-left-radius: 0.6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  column-gap: 1.6rem;
  row-gap: 1.6rem;
  justify-content: start;
  align-content: center;
}
@media only screen and (max-width: 900px) {
  .sr__wrapper {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    row-gap: 2.4rem;
  }
}
@media only screen and (max-width: 600px) {
  .sr__wrapper {
    padding-bottom: 1.6rem;
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
}
.sr__wrapper--no-results {
  padding: 1.6rem 2.4rem;
  background-color: #fff;
  border-bottom-right-radius: 0.6rem;
  border-bottom-left-radius: 0.6rem;
}
.sr__breadcrum--box {
  justify-self: start;
  align-self: flex-start;
  font-size: 1.2rem;
  font-weight: 400;
  color: #949494;
  line-height: 1.1;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 0.4rem;
  column-gap: 0.4rem;
}
@media only screen and (max-width: 450px) {
  .sr__breadcrum--box {
    font-size: 1.2rem;
  }
}
.sr__breadcrum--box i {
  color: #3c2de9;
}
.sr__sorting--box {
  justify-self: end;
  grid-row: 1/2;
  grid-column: 2/3;
  position: relative;
  width: 100%;
  max-width: 180px;
}
@media only screen and (max-width: 900px) {
  .sr__sorting--box {
    grid-row: 3/4;
    grid-column: 1/-1;
  }
}
@media only screen and (max-width: 600px) {
  .sr__sorting--box {
    max-width: 170px;
  }
}
.sr__sorting--box::after {
  content: "\f107"; /* Unicode for FontAwesome down arrow */
  font-family: FontAwesome;
  position: absolute;
  right: 1.4rem;
  top: 0.8rem;
  font-size: 18px;
  color: #666;
  pointer-events: none;
}
@media only screen and (max-width: 600px) {
  .sr__sorting--box::after {
    top: 0.6rem;
  }
}
.sr__sorting-label {
  font-size: 1.6rem;
  color: #555;
  margin-right: 1rem;
  font-weight: 500;
}
.sr__sorting-dropdown {
  appearance: none;
  width: 100%;
  height: 44px;
  padding: 1.2rem 36px 1.2rem 1.6rem;
  border: 1px solid #e8e5f8;
  border-radius: 5px;
  background: white;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.1;
  color: #666;
  transition: border-color 0.3s ease-in-out;
}
@media only screen and (max-width: 600px) {
  .sr__sorting-dropdown {
    height: 4rem;
    padding: 0.8rem 36px 0.8rem 1.6rem;
  }
}
.sr__sorting-dropdown:hover {
  border-color: #3c2de9;
  transition: all 0.3s ease;
}
.sr__sorting-dropdown:focus, .sr__sorting-dropdown:focus-visible {
  outline: none;
  border-color: #3c2de9;
  transition: all 0.3s ease;
}
.sr__heading--box {
  justify-self: center;
  text-align: center;
}
.sr__heading--box1 {
  background-color: #fff;
  padding: 3.2rem 1.6rem;
  border-radius: 0.6rem;
}
.sr__heading--box2 {
  grid-column: 1/-1;
  grid-row: 2/3;
}
@media only screen and (max-width: 600px) {
  .sr__heading--box2 {
    justify-self: start;
    text-align: start;
  }
}
.sr__heading__headline.mb-style-overwrite {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.1;
  color: #333;
  /* background-image: linear-gradient(to right, rgb(51, 51, 51) 0%, rgb(51, 51, 51) 50%, rgba(51, 51, 51, 0.7) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent; */
}
@media only screen and (max-width: 450px) {
  .sr__heading__headline.mb-style-overwrite {
    font-size: 1.6rem;
  }
}

.spcard__shareIcon {
  color: #333;
  font-size: 1.6rem;
  font-size: 2rem;
}
.spcard-search-results-box {
  width: 114rem;
  max-width: 100%;
  margin: 0rem auto;
  padding: 1.6rem 0.8rem 4.8rem 0.8rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  row-gap: 4.8rem;
  column-gap: 3.2rem;
}
.spcard-wrapper {
  width: 100%;
  max-width: 100%;
  background-color: #fff;
  border: 1px solid #e5e4f7;
  box-shadow: 0 1rem 2rem rgba(60, 45, 233, 0.08);
  line-height: 1;
  border-radius: 1.6rem;
  padding: 1.6rem 0 1.6rem 0;
  position: relative;
}
@media only screen and (max-width: 500px) {
  .spcard-wrapper {
    padding-bottom: 0rem;
    border-bottom-left-radius: 1.8rem;
    border-bottom-right-radius: 1.8rem;
    border-bottom: none;
  }
}
.spcard-wrapper--sub {
  width: 100%;
  max-width: 100%;
}
.spcard-already-booked {
  z-index: 1;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: rgba(255, 255, 255, 0.6);
  width: 100%;
  height: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
}
.spcard-already-booked__text {
  z-index: 2;
  position: absolute;
  top: 11.2rem;
  left: 0px;
  width: 20.5rem;
  padding: 0.8rem 1.6rem;
  color: white;
  background-color: #fe6d00;
  font-size: 1.2rem;
  line-height: 1.1;
  font-weight: 600;
  text-align: center;
  transform-origin: left bottom;
  letter-spacing: 2px;
  transform: rotate(-45deg);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
}
.spcard-already-booked__text__face-symbol {
  font-size: 1.6rem;
}
.spcard-header {
  padding: 1.6rem 1.6rem 1.6rem 1.6rem;
  border-bottom: 1px solid #e8e5f8;
  position: relative;
}
.spcard-header__heading__h3 {
  font-size: 2rem !important;
  font-weight: 600;
  color: #333;
  line-height: 1.1;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 450px) {
  .spcard-header__heading__h3 {
    font-size: 1.8rem !important;
    margin-bottom: 0.9rem;
  }
}
.spcard-header__heading__sub-heading {
  font-size: 1.4rem;
  font-weight: 500;
  color: #949494;
  line-height: 1.1;
  margin-top: 0.4rem;
}
@media only screen and (max-width: 600px) {
  .spcard-header__heading__sub-heading {
    font-size: 1.2rem;
  }
}
.spcard-header__share-btn {
  position: absolute;
  bottom: 1rem;
  right: 1.6rem;
  align-self: center;
  padding: 0;
  margin: 0;
  background-color: transparent;
  font-size: 1.6rem;
  border-radius: 0.2rem;
  border: none;
  line-height: 1;
  padding: 0.4rem 0.8rem;
  transition: all 0.3s ease-in;
}
@media only screen and (max-width: 900px) {
  .spcard-header__share-btn {
    grid-row: 1/2;
    justify-self: end;
  }
}
.spcard-header__share-btn:hover i {
  color: #3c2de9;
}
.spcard-details-box {
  border-bottom: 1px solid #e5e4f7;
  width: 100%;
  display: grid;
  grid-template-columns: 3fr 1fr;
  grid-template-rows: auto auto auto;
}
@media only screen and (max-width: 600px) {
  .spcard-details-box {
    grid-template-columns: 2fr 1fr;
  }
}
.spcard__prop-details {
  width: 100%;
  padding: 1.6rem 1.6rem 1.6rem 1.6rem;
  grid-column: 1/2;
  grid-row: 1/2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 1.2rem;
}
@media only screen and (max-width: 900px) {
  .spcard__prop-details {
    grid-template-columns: 1fr;
    row-gap: 0.8rem;
  }
}
.spcard__prop-details__label {
  font-size: 1.4rem;
  font-weight: 500;
  color: #949494;
  line-height: 1;
}
@media only screen and (max-width: 362px) {
  .spcard__prop-details__label {
    font-size: 1.2rem;
  }
}
.spcard__prop-details__value {
  font-size: 1.4rem;
  font-weight: 500;
  color: #464646;
  line-height: 1;
}
@media only screen and (max-width: 600px) {
  .spcard__prop-details__value {
    color: #949494;
  }
}
@media only screen and (max-width: 362px) {
  .spcard__prop-details__value {
    font-size: 1.2rem;
  }
}
.spcard__prop-details__item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 0.8rem;
  flex-wrap: wrap;
}
.spcard__prop-pics {
  grid-column: 2/3;
  grid-row: 1/4;
  width: 100%;
  border-radius: 2px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  row-gap: 0.4rem;
  justify-content: center;
  align-content: center;
  justify-items: start;
  align-items: center;
  padding-right: 0.8rem;
}
@media only screen and (max-width: 900px) {
  .spcard__prop-pics {
    grid-row: 1/2;
  }
}
.spcard__prop-pics__wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  background-image: linear-gradient(to right bottom, #e8e5f8 0%, #f1effc 40%, #f1effc 60%, #e8e5f8 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.spcard__prop-pics__gallery {
  height: 100%;
  width: auto;
  max-width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.spcard__prop-pics__interested-people__box {
  width: 100%;
}
.spcard__prop-pics__interested-people__text {
  color: #949494;
  font-size: 1.2rem;
  font-weight: 300;
}
.spcard__prop-address {
  padding: 0rem 1.6rem 1.6rem 1.6rem;
  margin-top: 0.4rem;
  margin-bottom: 0;
  grid-column: 1/2;
  grid-row: 2/3;
  font-size: 1.4rem;
  font-weight: 500;
  color: #464646;
  line-height: 1.6;
  font-style: normal;
}
@media only screen and (max-width: 900px) {
  .spcard__prop-address {
    grid-column: 1/3;
  }
}
.spcard__prop-address i {
  color: #666;
  font-size: 1.4rem;
  margin-right: 0.1rem;
}
.spcard__prop-address__label {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
}
.spcard__box-one-liner {
  grid-column: 1/2;
  grid-row: 3/4;
  padding: 1.6rem 1.6rem 1.6rem 1.6rem;
  border-top: 1px solid #e8e5f8;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  row-gap: 1.2rem;
}
@media only screen and (max-width: 900px) {
  .spcard__box-one-liner {
    grid-column: 1/3;
  }
}
.spcard__one-liner {
  font-size: 1.6rem;
  font-weight: 300;
  color: rgb(159, 77, 182);
  line-height: 1.6;
}
@media only screen and (max-width: 361px) {
  .spcard__one-liner {
    font-size: 1.4rem;
  }
}
.spcard__misx-box {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-template-rows: auto;
  justify-content: start;
  align-items: center;
  column-gap: 3.2rem;
  row-gap: 0.8rem;
  column-gap: 0.8rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  color: #333;
  line-height: 1.6;
}
@media only screen and (max-width: 500px) {
  .spcard__misx-box {
    column-gap: 1.6rem;
    grid-template-columns: 1fr 1fr 2fr;
  }
}
@media only screen and (max-width: 425px) {
  .spcard__misx-box {
    column-gap: 0.8rem;
    grid-template-columns: 1fr 1fr 2fr;
    color: #545454;
  }
}
@media only screen and (max-width: 342px) {
  .spcard__misx-box {
    column-gap: 0.2rem;
  }
}
@media only screen and (max-width: 331px) {
  .spcard__misx-box {
    column-gap: 0rem;
  }
}
.spcard__misx-box1 {
  display: flex;
  justify-content: start;
  align-items: center;
  column-gap: 1.2rem;
  background-color: #f4f3fe;
  padding: 0.8rem;
  border-radius: 0.4rem;
}
@media only screen and (max-width: 575px) {
  .spcard__misx-box1 {
    flex-direction: column;
    justify-content: center;
  }
}
.spcard__misx-box1__r2r-logo {
  font-weight: 400;
  padding: 0.4rem 0.8rem;
  background-color: #e8e5f8;
  color: #7c6dfa;
  border-radius: 0.4rem;
  font-size: 1.2rem;
  line-height: 1.1;
  font-weight: 400;
}
@media only screen and (max-width: 575px) {
  .spcard__misx-box1__r2r-logo {
    order: -1;
  }
}
.spcard__misx-box-visiting {
  display: flex;
  justify-content: start;
  align-items: center;
  column-gap: 1.2rem;
  background-color: #f4f3fe;
  padding: 0.8rem;
  border-radius: 0.4rem;
}
@media only screen and (max-width: 600px) {
  .spcard__misx-box-visiting {
    justify-content: center;
  }
}
@media only screen and (max-width: 575px) {
  .spcard__misx-box-visiting {
    flex-direction: column;
  }
}
.spcard__misx-box-visiting__status {
  font-weight: 400;
  padding: 0.4rem 0.8rem;
  border-radius: 100%;
  background-color: #f4f3fe;
  font-size: 1.2rem;
  line-height: 1.1;
  font-weight: 400;
  background-color: #e8e5f8;
  border-radius: 0.4rem;
  color: #7c6dfa;
}
@media only screen and (max-width: 575px) {
  .spcard__misx-box-visiting__status {
    order: -1;
  }
}
.spcard__misx-box-visiting__text {
  border-radius: 0.4rem;
}
.spcard__misx-box-request {
  display: flex;
  justify-content: start;
  align-items: center;
  column-gap: 1.2rem;
  flex-wrap: wrap;
  background-color: #f4f3fe;
  padding: 0.8rem;
  border-radius: 0.4rem;
  font-weight: 400;
}
@media only screen and (max-width: 442px) {
  .spcard__misx-box-request {
    justify-content: center;
  }
}
.spcard__misx-box-request__text {
  padding: 0.4rem 0.8rem;
  background-color: #e8e5f8;
  color: #7c6dfa;
  border-radius: 0.4rem;
  order: -1;
}
@media only screen and (max-width: 442px) {
  .spcard__misx-box-request__text {
    order: 3;
  }
}
.spcard__misx-box-request__btn {
  appearance: none;
  background-color: #3c2de9;
  border: none;
  outline: none;
  padding: 0.4rem 0.8rem;
  color: #fff;
  border-radius: 0.2rem;
  font-size: 1.2rem;
  line-height: 1.1;
  cursor: pointer;
  font-weight: 400;
}
.spcard__misx-box-request__btn:hover {
  background-color: #2f23b4;
}
.spcard__misx-box-request__btn:focus, .spcard__misx-box-request__btn:focus-visible {
  outline: none;
}
.spcard__misx-box-request__request-no {
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 1.1;
  color: #000000;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
}
.spcard__misx-box-request__request-no i {
  margin-right: 0.4rem;
  margin-left: -0.4rem;
  padding-bottom: 0.1rem;
}
@media only screen and (max-width: 606px) {
  .spcard__misx-box-request__request-no i {
    margin-left: 0rem;
  }
}
@media only screen and (max-width: 575px) {
  .spcard__misx-box-request__request-no i {
    margin-left: -0.4rem;
  }
}
@media only screen and (max-width: 517px) {
  .spcard__misx-box-request__request-no i {
    margin-left: 0rem;
  }
}
@media only screen and (max-width: 466px) {
  .spcard__misx-box-request__request-no i {
    margin-left: -0.4rem;
  }
}
.spcard__cta-box {
  padding: 1.6rem 1.6rem 0rem 1.6rem;
}
@media only screen and (max-width: 500px) {
  .spcard__cta-box {
    padding: 0rem 0rem 0rem 0rem;
    border-bottom-left-radius: 1.6rem;
    border-bottom-right-radius: 1.6rem;
  }
}
.spcard__cta-btn {
  font-size: 1.6rem;
  margin-bottom: 1.6rem;
}
@media only screen and (max-width: 500px) {
  .spcard__cta-btn {
    margin-bottom: 0rem;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 1.6rem;
    border-bottom-right-radius: 1.6rem;
  }
}
.spcard__tag-box {
  display: flex;
  gap: 0.8rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: #333;
  color: #333;
  line-height: 1.6;
}
@media only screen and (max-width: 600px) {
  .spcard__tag-box {
    justify-content: space-around;
    align-items: center;
  }
}
.spcard__tag-wrapper {
  background-color: #f4f3fe;
  padding: 0.8rem;
  border-radius: 0.4rem;
  display: flex;
  column-gap: 1.2rem;
}
@media only screen and (max-width: 600px) {
  .spcard__tag-wrapper {
    flex-direction: column;
    row-gap: 0.4rem;
    justify-content: center;
    align-items: center;
  }
}
.spcard__tag-icon {
  color: #7c6dfa;
}
.spcard__tag-desc--request {
  display: flex;
  justify-content: start;
  align-items: center;
  column-gap: 1.2rem;
  flex-wrap: nowrap;
}

.spin {
  animation: spin 0.5s linear infinite;
}

/* Responsive adjustment for small screens */
@media (max-width: 600px) {
  .list-to-access-listings-modal__content {
    width: 310px;
  }
}
/* Responsive adjustment for small screens */
@media (max-width: 320px) {
  .list-to-access-listings-modal__content {
    width: 300px;
  }
}
.list-to-access-listings-modal__textbox {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.4 !important;
}

.list-to-access-listings-modal__list {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  row-gap: 0.8rem;
}

.notification-page__sr__box {
  width: 116rem;
  max-width: 100%;
  margin: 0rem auto;
  padding-top: 0rem;
}

@media only screen and (max-width: 600px) {
  .notification-page__sr__box {
    padding: 1.6rem 0rem;
  }
}
.notification-page__sr__wrapper {
  border-radius: 0.6rem !important;
}

.negoPage-intro__textBox {
  margin: 0;
  border-radius: 1.6rem !important;
}

.negoPage-intro__headingBox {
  border-radius: 1.6rem !important;
}

.mbSlider-main {
  width: 100%;
  max-width: 100%;
  margin: 0rem auto;
  padding: 9rem 2.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider__container {
  max-width: 40rem;
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #3c2de9;
  position: relative;
}
@media only screen and (max-width: 550px) {
  .slider__container {
    max-width: none;
    width: 100%;
  }
}
.slider__wrapper {
  height: 100%;
  width: 100%;
  background-color: chartreuse;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
  scroll-snap-type: x mandatory;
}
.slider__wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
.slider__slide {
  background-color: #fe6d00;
  flex: 0 0 100%;
  height: 100%;
  scroll-snap-align: start;
}
.slider__media-box {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0.5rem;
  background-color: #000;
}
.slider__media-box img, .slider__media-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: none;
  background-color: rgba(0, 0, 0, 0.2);
  color: #fe6d00;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  .slider__nav {
    width: 20px;
    height: 20px;
    font-size: 14px;
  }
}
.slider__nav--prev {
  left: 0.4rem;
}
.slider__nav--next {
  right: 0.4rem;
}
.slider__dots {
  position: absolute;
  bottom: 0.6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}
.slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
@media (max-width: 600px) {
  .slider__dot {
    width: 6px;
    height: 6px;
  }
}
.slider__dot.active {
  background-color: #fe6d00;
}

.show-page__main-section {
  width: 100%;
}

.show-page__nav {
  max-width: 114rem;
  width: 100%;
  margin: 0 auto;
  margin-top: 56px;
  padding: 32px 0 32px 1.6rem;
}

.show-page__nav__back-btn:link,
.show-page__nav__back-btn:visited {
  font-size: 16px;
  color: #3c2de9;
  display: inline-block; /* ensures padding is respected */
  text-decoration: none; /* optional: remove underline */
}

.show-page-hero {
  max-width: 114rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 0.6rem;
  margin-bottom: 3.2rem;
  border-radius: 0.6rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto;
  row-gap: 2.4rem;
  column-gap: 1.6rem;
}
@media only screen and (max-width: 900px) {
  .show-page-hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 2.4rem;
    column-gap: 0rem;
  }
}
.show-page-hero-fromNegotiation {
  max-width: 114rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 0.6rem;
  margin-bottom: 3.2rem;
  border-radius: 0.6rem;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2.4rem;
  column-gap: 1.6rem;
}
.show-page-hero__right, .show-page-hero__left {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
}
.show-page-hero__left {
  row-gap: 3.2rem;
  align-self: start;
}
.show-page-hero__right {
  justify-content: center;
  align-content: stretch;
  align-items: stretch;
  row-gap: 2px;
}
@media only screen and (max-width: 900px) {
  .show-page-hero__right {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    column-gap: 3.2rem;
  }
}
@media only screen and (max-width: 600px) {
  .show-page-hero__right {
    grid-template-columns: 1fr;
    row-gap: 0.4rem;
  }
}
.show-page-hero__right--hero1 {
  background-color: #fff;
  border-radius: 0.6rem;
  align-self: stretch;
}
.show-page-hero__left__propcard-box {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  row-gap: 2px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.show-page-hero__left__propcard-box > * {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.show-page-hero__left__propcard-header {
  padding: 2.4rem 1.6rem;
  background-color: #fff;
  border-radius: 0.6rem;
  border-bottom: none;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.show-page-hero__left__propcard-header__heading {
  font-size: 2.4rem !important;
  font-weight: 400;
}
@media only screen and (max-width: 600px) {
  .show-page-hero__left__propcard-header__heading {
    font-size: 2rem !important;
  }
}
.show-page-hero__left__propcard-header__sub-heading {
  margin-top: 1rem;
}
.show-page-hero__left__propcard-oneliner {
  padding: 2.4rem 1.6rem;
  background-color: #fff;
  border-radius: 0.6rem;
  border-top: none;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  row-gap: 2rem;
  grid-row: 2/3;
}
.show-page-hero__right__heading {
  font-size: 1.6rem;
  font-weight: 400;
  color: #333;
  line-height: 1.4;
  padding: 2.4rem 1.6rem;
  background-color: rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border-radius: 0.6rem;
  align-self: stretch;
}
@media only screen and (max-width: 900px) {
  .show-page-hero__right__heading {
    display: none;
    padding: 1.6rem 1.6rem;
    font-size: 1.8rem;
    grid-column: 1/-1;
    grid-row: 1/2;
  }
}
@media only screen and (max-width: 600px) {
  .show-page-hero__right__heading {
    display: none;
    grid-column: 1/-1;
    grid-row: 1/2;
  }
}
@media only screen and (max-width: 450px) {
  .show-page-hero__right__heading {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 400px) {
  .show-page-hero__right__heading {
    font-size: 1.4rem;
  }
}
.show-page-hero__photo-container, .show-page-hero__video-container {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #000;
  border-radius: 0.6rem;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 900px) {
  .show-page-hero__photo-container {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
@media only screen and (max-width: 600px) {
  .show-page-hero__photo-container {
    grid-column: 1/-1;
    grid-row: 2/3;
  }
}
@media only screen and (max-width: 900px) {
  .show-page-hero__video-container {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
@media only screen and (max-width: 600px) {
  .show-page-hero__video-container {
    grid-column: 1/-1;
    grid-row: 3/4;
  }
}
.show-page-hero__prop-pic-wrapper {
  width: 100%;
  background-image: none;
  max-width: 50rem;
  background-color: rgba(255, 255, 255, 0.1); /* light white overlay */
  backdrop-filter: blur(8px); /* the blur effect for glass look */
  -webkit-backdrop-filter: blur(8px); /* Safari support */
  border-radius: 6px;
  /* border: 1px solid rgba(255, 255, 255, 0.2);  */
}
.show-page-hero__req-media__btn {
  position: absolute;
  left: 50%;
  bottom: 15%;
  transform: translate(-50%);
  line-height: 1.1;
  background-color: #3c2de9; /* your primary branding color */
  color: #ffffff;
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease, transform 0.2s ease;
  z-index: 10;
}
.show-page-hero__req-media__btn:hover {
  background-color: #2a1ecf;
}
.show-page-hero__req-media__btn i {
  margin-right: 0.4rem;
}
.show-page-hero__slider__container {
  width: 100%;
}

@keyframes pulse-scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.bh__box {
  width: 100%;
  min-height: 400px;
  background-color: #fff;
  border-radius: 0.6rem;
  padding: 2.4rem 1.6rem;
  opacity: 1;
  transition: all 0.01s ease-in-out;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.bh__heading {
  font-size: 2rem !important;
  font-weight: 500;
  color: #333;
  line-height: 1.1;
  text-align: start;
}
@media only screen and (max-width: 450px) {
  .bh__heading {
    font-size: 1.8rem !important;
  }
}
.bh__stages-box {
  padding: 3.2rem 1.6rem 3.2rem 0rem;
  max-width: 60rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  justify-content: center;
  align-items: center;
  justify-content: start;
  justify-items: start;
  position: relative;
}
.bh__stage-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}
@media only screen and (max-width: 450px) {
  .bh__stage-wrapper-2 {
    justify-self: center;
  }
}
@media only screen and (max-width: 450px) {
  .bh__stage-wrapper-3 {
    justify-self: end;
  }
}
.bh__stage {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  font-size: 1.6rem;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media only screen and (max-width: 500px) {
  .bh__stage {
    width: 4.8rem;
    height: 4.8rem;
    font-size: 1.6rem;
  }
}
.bh__stage::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent 70%);
  pointer-events: none;
}
.bh__stage:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}
.bh__stage--completed .bh__stage {
  background: rgb(159, 77, 182);
  box-shadow: 0 4px 10px rgba(159, 77, 182, 0.35), 0 2px 4px rgba(90, 40, 110, 0.2);
}
.bh__stage--active .bh__stage {
  background: rgb(159, 77, 182);
  box-shadow: 0 4px 10px rgba(159, 77, 182, 0.35), 0 2px 4px rgba(90, 40, 110, 0.2);
  animation: pulse-scale 1.5s ease-in-out infinite;
}
.bh__stage--inactive .bh__stage {
  background: #ddd8fa;
  box-shadow: 0 4px 10px rgba(159, 77, 182, 0.15), 0 2px 4px rgba(140, 100, 190, 0.1);
  color: #9f4db6;
}
.bh__stage__icon {
  font-size: 16px !important;
}
.bh__stage__icon--checkmark {
  position: absolute;
  bottom: 0px;
  right: 0px;
  font-size: 14px;
  color: white;
  background-color: #28a745;
  border-radius: 50%;
  padding: 4px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.bh__stage--completed .bh__stage__icon--checkmark {
  opacity: 1 !important;
}
.bh__stage-label {
  margin-top: 0.8rem;
  font-size: 1.6rem;
  line-height: 1.1;
  font-weight: 500;
  color: #8461a8;
}
.bh__stage--active .bh__stage-label {
  font-weight: 600;
}
.bh__stages__connector-line {
  position: absolute;
  display: block;
  top: 5.8rem;
  left: 5px;
  width: 70%;
  height: 2px;
  z-index: 0;
  background-color: #ddd8fa;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media only screen and (max-width: 450px) {
  .bh__stages__connector-line {
    width: 85%;
    left: 5px;
  }
}
.connector-line-active-1 .bh__stages__connector-line-1, .connector-line-active-2 .bh__stages__connector-line-1 {
  background-color: rgb(159, 77, 182);
}
.connector-line-active-2 .bh__stages__connector-line-2 {
  background-color: rgb(159, 77, 182);
}
.bhwf {
  padding: 8rem 0rem 4rem 0rem;
  border-top: 1px solid #ddd8fa;
  position: relative;
}
.bhwf-box {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 4rem;
}
.bhwf__h4 {
  font-size: 2.4rem !important;
  font-weight: 500;
  color: #333;
  line-height: 1.1;
}
.bhwf__h4--small {
  font-size: 2rem !important;
  font-weight: 500;
  color: #333;
  line-height: 1.1;
}
.bhwf__h5 {
  font-size: 1.6rem !important;
  font-weight: 500;
  color: #6c757d;
  line-height: 1.1;
}
.bhwf__subheading-14 {
  font-size: 1.4rem !important;
  font-weight: 500;
  color: rgb(150, 150, 150);
  line-height: 1.4;
}
.bhwf-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3.2rem;
  row-gap: 3.2rem;
}
@media only screen and (max-width: 600px) {
  .bhwf-form {
    grid-template-columns: 1fr;
    row-gap: 1.6rem;
  }
}
.bhwf-form__widget {
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  align-items: center;
  grid-template-rows: auto;
  column-gap: 1.6rem;
}
@media only screen and (max-width: 600px) {
  .bhwf-form__widget {
    grid-template-columns: 1fr;
    row-gap: 0rem;
  }
}
.bhwf-form__widget__label-box__title {
  font-size: 1.4rem;
  line-height: 1;
}
.bhwf__report-issue-box {
  font-size: 1.2rem;
  color: rgb(150, 150, 150);
  position: absolute;
  right: 0;
  top: 0;
  padding: 1.6rem 1.6rem 1.6rem 1.6rem;
}
.bhwf__report-issue-box i {
  margin-right: 0.4rem;
  color: #fe6d00;
}
.bhwf-cta-btn__box {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0.4rem;
}
.bhwf__error-box {
  width: 100%;
  margin-bottom: 0.8rem;
}
.bhwf-cta-btn {
  width: 34rem;
  display: flex;
  justify-content: center;
  justify-items: center;
  align-content: center;
  align-items: center;
  gap: 1.2rem;
}
@media only screen and (max-width: 450px) {
  .bhwf-cta-btn {
    width: 100%;
  }
}
@media only screen and (max-width: 600px) {
  .bhwf-cta-btn--getVisitingDetails {
    margin-top: 1.6rem;
  }
}
.bhwf-cta-btn__preloader {
  width: 2.6rem;
  height: 2.6rem;
  border: 3px solid #fe6d00;
  border-top: 3px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.bhwf__preloader-big__box {
  top: 35%;
  height: 65%;
}
.bhwf__preloader-big__circle {
  width: 15rem;
  height: 15rem;
}
.bhwf__ctaPreloader-big__box {
  transform: scale(1.04);
}
#bhwf-form__input__idtype__container::after {
  right: 1.4rem;
  top: 1rem;
}

#bhwf-form__input__idtype {
  width: 100%;
  font-size: 1.6rem;
  padding-top: 0;
  padding-bottom: 0;
  height: 4.8rem;
}

#bhwf-form__input__idtype:focus {
  outline: none;
  box-shadow: 0 0 4px 2px rgba(60, 45, 233, 0.7);
  transition: all 0.3s ease-in-out;
}

#bhwf-form__input__idtype option:disabled {
  color: rgba(51, 51, 51, 0.75) !important;
}

.show-page-property__container {
  padding: 2rem 1.6rem;
  max-width: 114rem;
  margin: 0 auto;
  margin-top: 8rem;
  margin-bottom: 8rem;
  background-color: #fff;
  background-color: rgb(242, 242, 242);
  background-color: transparent;
  border-radius: 0.6rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 3.2rem;
  column-gap: 4.8rem;
}
@media only screen and (max-width: 600px) {
  .show-page-property__container {
    grid-template-columns: 1fr;
    row-gap: 2.4rem;
    column-gap: 0rem;
  }
}
.show-page-property__container .show-page-property__h2 {
  font-size: 2.4rem;
  font-weight: 500;
  color: #333;
  line-height: 1.1;
  margin-bottom: 0.8rem;
}
@media only screen and (max-width: 600px) {
  .show-page-property__container .show-page-property__h2 {
    font-size: 2rem;
  }
}
.show-page-property__header {
  padding: 0.8rem 1.6rem 0.8rem 0rem;
  border-bottom: 1px solid #eee;
  grid-column: 1/-1;
  grid-row: 1/2;
}
.show-page-property__heading--h2 {
  font-size: 2.4rem;
  font-weight: 500;
  color: #333;
  line-height: 1.1;
}
@media only screen and (max-width: 600px) {
  .show-page-property__heading--h2 {
    font-size: 2rem;
  }
}
.show-page-property__property-map-section {
  width: 100%;
  background-color: none;
}
.show-page-property__property-map-section__heading {
  padding: 1.6rem;
}
.show-page-property__property-map-section__map-container {
  width: 100%;
  aspect-ratio: 1/1;
  background-image: linear-gradient(to right, rgb(255, 243, 250) 0%, rgba(255, 243, 250, 0.7) 20%, rgba(255, 243, 250, 0.7) 80%, rgb(255, 243, 250) 100%);
  position: relative;
}

.show-page-property__section {
  background-color: #fff;
  border-radius: 0.6rem;
  padding: 0.5rem 0 1.5rem 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.show-page-property__section-heading {
  padding: 0.8rem 1.6rem 0.8rem 1.6rem;
  border-bottom: 1px solid #eee;
}
.show-page-property__section-heading--h3 {
  font-size: 2rem;
  line-height: 1.1;
  color: #000;
  font-weight: 500;
  grid-column: 1/-1;
  grid-row: 1/2;
}
.show-page-property__section-body {
  padding: 2rem 1.6rem;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0.4rem;
  column-gap: 0rem;
}
.show-page-property__section-body .show-page-property__detail-row {
  display: flex;
  justify-content: flex-start;
  justify-items: flex-start;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 1.6rem;
  line-height: 1.6;
  color: rgb(50, 50, 50);
}
.show-page-property__section-body .show-page-property__detail-row::before {
  content: "●";
  color: rgba(60, 60, 60, 0.65);
  margin-right: 0.8rem;
}

.show-page-property__detail-row strong {
  width: 150px;
  font-weight: 500;
  color: rgb(50, 50, 50);
}
@media (max-width: 600px) {
  .show-page-property__detail-row strong {
    width: 120px;
  }
}

.show-page-property__detail-row span {
  flex: 1;
  justify-self: self-start;
  color: rgb(75, 75, 75);
}

.show-page-location__section {
  padding: 2rem 1.6rem;
  max-width: 114rem;
  margin: 0 auto;
  margin-top: 3.2rem;
  margin-bottom: 16rem;
  background-color: #fff;
  border-radius: 0.6rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.show-page-location__header {
  padding: 1.6rem 1.6rem 1.6rem 0rem;
  border-bottom: 1px solid #eee;
}
.show-page-location__heading--h3 {
  font-size: 2.4rem;
  font-weight: 500;
  color: #333;
  line-height: 1.1;
}
@media only screen and (max-width: 600px) {
  .show-page-location__heading--h3 {
    font-size: 2rem;
  }
}
.show-page-location__address-box {
  padding: 2.4rem 1.6rem 2.4rem 0rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.4rem;
  border-bottom: 1px solid #eee;
}
.show-page-location__address-box i {
  font-size: 3.2rem;
  color: rgb(150, 150, 150);
  margin-right: 1.6rem;
}
.show-page-location__address-box__text {
  font-size: 1.6rem;
  line-height: 1.6;
  color: rgb(50, 50, 50);
}
.show-page-location__link-box i {
  color: #3c2de9;
}
.show-page-location__map-container {
  width: 100%;
  aspect-ratio: 3/1;
  position: relative;
}
@media only screen and (max-width: 500px) {
  .show-page-location__map-container {
    aspect-ratio: 3/2;
  }
}
.show-page-location-map {
  width: 100%;
  height: 100%;
}

.primary-property-nomore-section {
  width: 100%;
  max-width: 114rem;
  padding: 2.4rem 1.6rem;
  margin: 0 auto;
  margin-top: 9rem;
  margin-bottom: 18rem;
}

.bhwf__physicl-tour__address-details {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 4rem;
  border-bottom: 1px solid #c1c2d5;
}
.bhwf__physicl-tour__address-details--heading {
  font-size: 2.4rem;
  line-height: 1.1rem;
}
.bhwf__physicl-tour__address-details--desc {
  display: inline-block;
  font-size: 1.4rem;
  margin-top: 0.8rem;
  line-height: 1.1rem;
  font-weight: 400;
  color: rgb(150, 150, 150) !important;
}
.bhwf__physicl-tour__vi {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 4.4rem;
  padding-bottom: 3.2rem;
}
.bhwf__physicl-tour__vi__list-main {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1.2rem;
  justify-content: start;
  align-content: center;
  justify-items: start;
  align-items: start;
}
.bhwf__physicl-tour__vi__list-main--item {
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: 400;
  color: #3c3c3c;
  display: grid;
  grid-template-columns: min-content max-content 1fr;
  column-gap: 0.8rem;
  row-gap: 1.2rem;
  align-content: center;
  align-items: center;
}
@media only screen and (max-width: 600px) {
  .bhwf__physicl-tour__vi__list-main--item {
    grid-template-columns: min-content 1fr;
    row-gap: 0.8rem;
    column-gap: 0rem;
    row-gap: 0rem;
    column-gap: 0.8rem;
  }
}
.bhwf__physicl-tour__vi__list-main--item::before {
  content: "●";
  color: rgba(60, 60, 60, 0.65);
  align-self: flex-start;
}
.bhwf__physicl-tour__vi__list-main--item strong {
  font-weight: 600;
  color: #3c3c3c;
  width: 12rem;
  align-self: flex-start;
}
@media only screen and (max-width: 600px) {
  .bhwf__physicl-tour__vi__list-main--item strong {
    width: 100%;
  }
}
.bhwf__physicl-tour__vi__list-main--item span {
  flex: 1;
  font-weight: 400;
  color: rgb(60, 60, 60);
  align-self: flex-start;
}
@media only screen and (max-width: 600px) {
  .bhwf__physicl-tour__vi__list-main--item span {
    grid-column: 2/-1;
    grid-row: 2/3;
  }
}
.bhwf__physicl-tour__vi__list-guidlines--item {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.6rem;
  font-weight: 400;
  color: rgb(150, 150, 150) !important;
  display: grid;
  grid-template-columns: min-content 1fr;
  column-gap: 0.8rem;
  row-gap: 1.8rem;
  margin-bottom: 0.8rem;
}
.bhwf__physicl-tour__vi__list-guidlines--item::before {
  content: "•";
  color: rgba(150, 150, 150, 0.65);
}
.bhwf__physicl-tour__vi__list-guidlines--item a:link, .bhwf__physicl-tour__vi__list-guidlines--item a:visited {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(60, 60, 60, 0.3);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: all 0.3s ease-in-out;
}
.bhwf__physicl-tour__vi__list-guidlines--item a:hover, .bhwf__physicl-tour__vi__list-guidlines--item a:active {
  color: #3c2de9;
  text-decoration-color: #3c2de9;
}
.bhwf__physicl-tour__ptnegotiation {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 3.2rem;
}
.proceed-to-negotiation-section__h4 {
  margin-bottom: 0.8rem;
  grid-column: 1/-1;
}
@media only screen and (max-width: 600px) {
  .proceed-to-negotiation-section__h4 {
    margin-bottom: 2.4rem;
  }
}
.proceed-to-negotiation-section__btn-box {
  grid-column: 1/-1;
}
@media only screen and (max-width: 600px) {
  .proceed-to-negotiation-section__cta-btn {
    margin-top: 1.6rem;
  }
}

.bhwf-negoprogress-section {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  justify-items: center;
  align-content: center;
  align-items: center;
}
.bhwf-negoprogress-section__status-circle {
  text-align: center;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  font-size: 2.4rem;
  background: rgb(159, 77, 182);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 2.4rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bhwf-negoprogress-section__status-circle--completed {
  background-color: #00c48c;
  box-shadow: 0 3px 7px rgba(40, 167, 69, 0.3);
}
.bhwf-negoprogress-section__status-circle--completed::before {
  content: "✓"; /* Unicode checkmark ✓ */
  font-weight: bold;
  color: #fff;
  font-size: 4rem;
}
.bhwf-negoprogress-section__status-circle--completed-unavailable {
  background-color: #ff4d4f;
  box-shadow: 0 3px 7px rgba(220, 53, 69, 0.3);
}
.bhwf-negoprogress-section__status-circle--completed-unavailable::before {
  content: "✕"; /* Unicode heavy multiplication X */
  font-size: 4rem;
  color: #fff;
  font-weight: bold;
}
.bhwf-negoprogress-section__status-circle i {
  font-size: 3.2rem;
  color: #fff;
}
.bhwf-negoprogress-section__h4 {
  margin-bottom: 4.8rem;
  text-align: center;
}
.bhwf-negoprogress-section__subheading-big {
  margin-bottom: 1.4rem;
  color: #3c2de9;
  text-align: center;
  animation: pulse-scale 1.5s ease-in-out infinite;
}
.bhwf-negoprogress-section__subheading-small {
  margin-bottom: 2.8rem;
  text-align: center;
}
.bhwf-negoprogress-section__cta-btn-box {
  justify-content: center;
  justify-items: center;
}
.bhwf-negoprogress-section__cta-button {
  height: 4rem;
  grid-column: 1/-1;
  grid-row: 5/6;
}
@media only screen and (max-width: 600px) {
  .bhwf-negoprogress-section__cta-button {
    grid-column: 1/-1;
    grid-row: 5/6;
  }
}
.bhwf-negoprogress-section__cta-button--au {
  margin-top: 1.4rem;
}
.bhwf-negoprogress-section__cta-button--nu {
  margin-top: 1.4rem;
}
.bhwf-negoprogress-section__terms {
  margin-top: 5.2rem;
}
@media only screen and (max-width: 450px) {
  .bhwf-negoprogress-section__terms {
    justify-self: center;
  }
}

p.bhwf-negoprogress-section__negoInfo {
  font-size: 1.4rem;
  font-weight: 500;
  color: #949494;
  text-align: center;
  margin-top: 5.6rem;
}
p.bhwf-negoprogress-section__negoInfo .bhwf-negoprogress-section__negoInfo__strong1 {
  color: #949494;
  font-size: 1.6rem;
  font-weight: 600;
}
p.bhwf-negoprogress-section__negoInfo .bhwf-negoprogress-section__negoInfo__strong2 {
  color: #333;
  font-size: 1.6rem;
  font-weight: 600;
}

.bhwf-grab-deal-section {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: start;
  justify-items: start;
  align-content: center;
  align-items: center;
}
@media only screen and (max-width: 600px) {
  .bhwf-grab-deal-section__list-item {
    grid-template-columns: min-content max-content 1fr !important;
  }
}
.bhwf-grab-deal-section__list-item span {
  grid-column: 3/4;
  grid-row: 1/2;
}
.bhwf-grab-deal-section __cta-button {
  height: 4rem;
  grid-column: 1/-1;
  grid-row: 3/4;
}
@media only screen and (max-width: 600px) {
  .bhwf-grab-deal-section __cta-button {
    grid-column: 1/-1;
    grid-row: 5/6;
  }
}
.bhwf-grab-deal-section__make-payment__heading {
  margin-bottom: 2rem;
}
.bhwf-grab-deal-section__subheading-big {
  margin-bottom: 1.4rem;
  margin-top: 2.8rem;
  color: #3c2de9;
  text-align: center;
}
p.bhwf-grab-deal-section__negoterms {
  margin-top: 0rem;
  text-align: left;
}

.bhwf-grab-deal-section__payment-completed {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  justify-items: center;
  align-content: center;
  align-items: center;
}

.show-page-report-modal__cta-btn {
  margin-top: 2.4rem;
  max-width: 100%;
}

.mb-property-tags {
  font-size: 1.4rem;
  color: #444;
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
  line-height: 1.6;
  font-weight: 500;
}

.mb-property-tags span {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.8rem;
  background-color: #f4f3fe; /* light lavender background */
  border-radius: 0.8rem;
}

.mb-property-tags i {
  color: #7c6dfa; /* harmonious brand lavender tone */
  font-size: 1.2rem; /* slightly smaller than text */
  line-height: 1;
  margin-right: 0.4rem;
  font-style: normal;
}

.mb-property-tags__text__btn {
  padding: 0;
}
.mb-property-tags__text__btn:hover, .mb-property-tags__text__btn:active {
  background: none;
}

.mb-property-tags__text__btn-text {
  display: inline-block;
  text-decoration: underline;
  text-decoration-color: #3c2de9;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  color: #3c2de9;
}

.nagd-page__main-section {
  width: 100%;
  max-width: 116rem;
  margin: 0 auto;
  min-height: 100vh;
  margin: 0 auto;
}
.nagd-page__header {
  padding: 3rem 1.6rem;
  margin-top: 5.2rem;
  margin-bottom: 5.2rem;
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.05);
}
@media only screen and (max-width: 1160px) {
  .nagd-page__header {
    margin-right: 1.6rem;
    margin-left: 1.6rem;
  }
}
.nagd-page__heading-h1 {
  font-size: 2.6rem;
  color: #2b2b2b;
  font-weight: 600;
  margin-bottom: 2rem;
  line-height: 1.3;
}
.nagd-page__heading-h2 {
  font-size: 2rem;
  color: #2b2b2b;
  font-weight: 600;
  margin-bottom: 2rem;
  line-height: 1.3;
}
.nagd-page__header__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.nagd-page__header__listItem p {
  font-size: 1.4rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
  position: relative;
  padding-left: 1.6rem;
}
.nagd-page__header__listItem p::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #7c6dfa; /* soft brand accent */
  font-size: 1.4rem;
}
.nagd-page__no-result-box {
  margin-top: 9rem;
  margin-bottom: 9rem;
}

.nagd-page-card {
  background-color: #ffffff;
  border-radius: 1.2rem;
  box-shadow: 0 0.6rem 1.6rem rgba(0, 0, 0, 0.06);
  padding: 2.4rem;
  margin: 2rem auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2rem;
  transition: box-shadow 0.2s ease;
}
.nagd-page-card:hover {
  box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.08);
}
.nagd-page-card__property-tags {
  margin-top: 0;
}
.nagd-page-card__textlink {
  font-size: 1.4rem !important;
}
.nagd-page-card__address-box {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  font-size: 1.5rem;
  color: #333;
  font-weight: 500;
  line-height: 1.5;
  padding: 0.4rem 0.8rem;
  background-color: #f4f3fe; /* light lavender background */
  border-radius: 0.8rem;
}
.nagd-page-card__address-box__icon {
  color: #7c6dfa; /* brand accent */
  font-size: 1.6rem;
  margin-top: 0.3rem;
}
.nagd-page-card__progress {
  width: 100%;
  border-top: 2px solid #f4f3fe;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.nagd-page-card__progress__heading-h2 {
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
}
.nagd-page-card__cta-box {
  text-align: left;
}
.nagd-page-card__cta-link {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: #3c2de9;
  width: 46rem;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  transition: background-color 0.3s ease;
}
@media only screen and (max-width: 600px) {
  .nagd-page-card__cta-link {
    width: calc(66.6667% + 5rem);
  }
}
@media only screen and (max-width: 450px) {
  .nagd-page-card__cta-link {
    width: 100%;
  }
}
.nagd-page-card__cta-link:hover, .nagd-page-card__cta-link:active {
  background-color: #29208a;
  color: #fff;
  text-decoration: none;
}
.nagd-page-card__cta-text {
  font-size: 1.4rem; /* updated from 0.95rem */
  letter-spacing: 0.4px;
  line-height: 1.2;
}
@media only screen and (max-width: 500px) {
  .nagd-page-card__cta-text {
    font-size: 1.2rem;
  }
}

.instrBox {
  width: 100%;
  max-width: 116rem;
  margin: 0 auto;
  background-color: transparent;
}
@media only screen and (max-width: 1160px) {
  .instrBox {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
}
.instrBox__container {
  width: 100%;
  padding: 2.4rem;
  background-color: #fff;
  border-radius: 1.6rem;
  box-shadow: 0 0.6rem 1.6rem rgba(0, 0, 0, 0.06);
}
.instrBox__container-results {
  padding: 4.8rem 2.4rem;
  margin-top: 5.2rem;
}
.instrBox__header {
  margin-bottom: 2.4rem;
  text-align: left;
}
.instrBox__heading--top {
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 600;
  color: #5a5a89;
  letter-spacing: 0.05rem;
  display: block;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}
.instrBox__heading--h1 {
  font-size: 2.4rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}
.instrBox__heading--h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  line-height: 1.6;
}
.instrBox__heading--h4 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 1.6rem;
}
.instrBox__centerItem {
  text-align: center;
}
.instrBox__property-tags {
  margin-top: 0;
}
.instrBox__property-tags__center {
  justify-content: center;
}
.instrBox__ctaBox {
  margin-top: 3.2rem;
}
.instrBox .instrBox p {
  font-size: 1.4rem;
  color: #666;
  margin-bottom: 1.6rem;
}
.instrBox__shareBox {
  margin-top: 4.8rem;
  padding-top: 4.8rem;
  border-top: 1px solid #dadbee;
  text-align: center;
}
.instrBox__shareBox__shareCircle {
  all: unset;
  width: 6rem;
  height: 6rem;
  background-color: #00c48c;
  box-shadow: 0 3px 7px rgba(40, 167, 69, 0.3);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: all 0.25s ease;
  -webkit-tap-highlight-color: transparent;
  margin: 0 auto;
  margin-bottom: 3.2rem;
  border: none;
  outline: none;
}
.instrBox__shareBox__shareCircle:hover {
  background-color: #2d1bbf;
  transform: scale(1.05);
  box-shadow: 0 0.6rem 1.4rem rgba(0, 0, 0, 0.2);
}
.instrBox__shareBox__shareCircle:active {
  transform: scale(0.96);
  background-color: #211884;
  box-shadow: 0 0.2rem 0.6rem rgba(0, 0, 0, 0.2);
}
.instrBox__shareBox__shareCircle * {
  background: transparent;
}

.search-title--new {
  font-size: 3.4rem;
  font-weight: 700;
  color: #3c2de9;
  text-align: center;
  font-family: "Segoe UI", sans-serif;
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
@media only screen and (max-width: 933px) {
  .search-title--new {
    font-size: 2.4rem;
  }
}
@media only screen and (max-width: 768px) {
  .search-title--new {
    font-size: 2.2rem;
    margin-top: 1rem;
    margin-bottom: 1.6rem;
  }
}

.search-title--new::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  margin: 1rem auto 0;
  /* background: #f29c3e; */
  background: rgb(159, 77, 182);
  border-radius: 3px;
  box-shadow: 0 0 8px rgba(159, 77, 182, 0.1);
}

.search-page-mrk__box {
  width: 100%;
  max-width: 116rem;
  margin: 0 auto;
  background-color: transparent;
  padding: 9rem 0rem;
}
@media only screen and (max-width: 1160px) {
  .search-page-mrk__box {
    overflow-x: auto;
  }
}
.search-page-mrk__scroll-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  row-gap: 1.6rem;
  column-gap: 3.2rem;
}
@media only screen and (max-width: 1160px) {
  .search-page-mrk__scroll-wrapper {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 1.6rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding-left: 1rem;
    padding-bottom: 2rem;
  }
  .search-page-mrk__scroll-wrapper::-webkit-scrollbar {
    height: 6px;
  }
  .search-page-mrk__scroll-wrapper::-webkit-scrollbar-thumb {
    background-color: rgba(60, 45, 233, 0.2);
    border-radius: 3px;
    transition: background-color 0.2s ease;
  }
  .search-page-mrk__scroll-wrapper::-webkit-scrollbar-thumb:hover {
    background-color: rgba(60, 45, 233, 0.4);
  }
  .search-page-mrk__scroll-wrapper::-webkit-scrollbar-track {
    background-color: transparent;
    margin-inline: 1rem;
  }
  .search-page-mrk__scroll-wrapper > * {
    scroll-snap-align: start;
    flex-shrink: 0;
  }
}
.search-page-mrk__scroll-spacer {
  display: none;
  width: 2px;
  pointer-events: none;
}
@media only screen and (max-width: 1160px) {
  .search-page-mrk__scroll-spacer {
    display: block;
  }
}

.search-page-mrk__box__heading {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  /* color: #3c2de9; */
  color: rgb(159, 77, 182);
  margin-bottom: 1rem;
  font-family: "Segoe UI", sans-serif;
  letter-spacing: -0.5px;
  padding: 0 1rem;
}

@media only screen and (max-width: 768px) {
  .search-page-mrk__box__heading {
    font-size: 2.4rem;
  }
}
.search-page-mrk__box__subtext {
  font-size: 1.8rem;
  color: #555;
  text-align: center;
  margin-bottom: 3rem;
  font-family: "Segoe UI", sans-serif;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  padding: 0 1rem;
}

.offer-card {
  width: 100%;
  max-width: 37rem;
  min-width: 36rem;
  border-radius: 1.6rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.05);
  position: relative;
  text-align: center;
  font-family: "Segoe UI", sans-serif;
  background: #fff;
  border-radius: 1.6rem;
  padding: 2rem;
  border: 1px solid #e5e4f7;
  box-shadow: 0 1rem 2rem rgba(60, 45, 233, 0.08);
}
@media only screen and (max-width: 500px) {
  .offer-card {
    max-width: 29rem;
    min-width: 29rem;
  }
}

.offer-content {
  flex-grow: 1;
}

.offer-header {
  font-size: 2.4rem;
  font-weight: 700;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.offer-icon {
  color: #7e63f8;
  font-size: 2.4rem;
}

.offer-subtext {
  font-size: 1.6rem;
  color: #555;
  margin-top: 1rem;
}

.offer-subicon {
  margin-left: 0.5rem;
  color: #7e63f8;
}

.offer-share-btn {
  margin-top: 2rem;
  padding: 1rem 2rem;
  background-color: #7e63f8;
  color: white;
  font-size: 1.6rem;
  font-weight: 600;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.offer-share-btn:hover {
  background-color: #5e44c4;
}

.offer-brand {
  position: absolute;
  bottom: 1.6rem;
  right: 2rem;
  font-size: 1.4rem;
  color: #444;
}

.offer-footer {
  font-size: 1.2rem;
  color: #666;
  text-align: center;
  margin-top: 1.2rem;
}

.offer-claim-hint {
  display: block;
  font-size: 1.2rem;
  color: #999;
}

.offer-claim-toggle {
  margin-top: 0.6rem;
  font-size: 1.2rem;
  color: #3c2de9;
  cursor: pointer;
  text-decoration: underline;
}

.offer-claim-info {
  font-size: 1.2rem;
  color: #444;
  margin-top: 0.6rem;
  line-height: 1.5;
  display: none;
}

.offer-claim-info a {
  color: #3c2de9;
  text-decoration: none;
}

.offer-claim-info a:hover {
  text-decoration: underline;
}

.info-section {
  /* #e8e5f8  family background*/
  background-image: linear-gradient(to right, rgb(232, 229, 248) 0%, rgba(232, 229, 248, 0.7) 20%, rgba(232, 229, 248, 0.7) 80%, rgb(232, 229, 248) 100%);
  padding: 9rem 0rem;
  max-width: 100%;
}
.info-section__heading {
  padding: 0 0.8rem;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 2.4rem;
}

.info-scroll-wrapper {
  max-width: 144rem;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  gap: 3.2rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-padding-left: 1rem;
  padding-bottom: 2rem;
}
@media only screen and (max-width: 600px) {
  .info-scroll-wrapper {
    gap: 1.6rem;
  }
}
.info-scroll-wrapper::-webkit-scrollbar {
  height: 6px;
}
.info-scroll-wrapper::-webkit-scrollbar-thumb {
  background-color: rgba(60, 45, 233, 0.2);
  border-radius: 3px;
  transition: background-color 0.2s ease;
}
.info-scroll-wrapper::-webkit-scrollbar-thumb:hover {
  background-color: rgba(60, 45, 233, 0.4);
}
.info-scroll-wrapper::-webkit-scrollbar-track {
  background-color: transparent;
  margin-inline: 1rem;
}
.info-scroll-wrapper > * {
  scroll-snap-align: start;
  flex-shrink: 0;
}
.info-scroll-wrapper__scroll-spacer {
  display: block;
  width: 2px;
  pointer-events: none;
}

.info-card {
  background: #fff;
  border-radius: 1.6rem;
  padding: 2rem;
  border: 1px solid #e0e0f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.2s ease;
  width: 100%;
  max-width: 32rem;
  min-width: 28rem;
  border-radius: 1.6rem;
  padding: 2rem;
  box-shadow: 0 0.4rem 1rem rgba(60, 45, 233, 0.05), 0 0.2rem 0.6rem rgba(140, 120, 255, 0.08);
  position: relative;
  text-align: center;
  font-family: "Segoe UI", sans-serif;
  background: #fff;
  border-radius: 1.6rem;
  padding: 2rem;
  border: 1px solid #e5e4f7;
  box-shadow: 0 1rem 2rem rgba(60, 45, 233, 0.08);
}
@media only screen and (max-width: 500px) {
  .info-card {
    max-width: 29rem;
    min-width: 29rem;
  }
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1.2rem 2rem rgba(0, 0, 0, 0.08);
}

.info-card__icon-box {
  background-color: #e8e5f8;
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 2.2rem;
  color: #7e63f8;
  margin-bottom: 1.6rem;
}

.info-card__title {
  font-size: 1.6rem !important;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
  text-align: center;
}

.info-card__text {
  font-size: 1.4rem;
  color: #666;
  text-align: center;
  margin-bottom: 2rem;
}

.info-card__footer {
  text-align: center;
}

.info-card__footer a {
  font-size: 1.3rem;
  color: #3c2de9;
  text-decoration: none;
}

.info-card__footer a:hover {
  text-decoration: underline;
}

.info-card__footer i {
  margin-right: 0.4rem;
}

.rentee-journey {
  background: transparent;
  padding: 9rem 1rem 9rem 1rem;
  text-align: center;
}
.rentee-journey__container {
  max-width: 640px;
  margin: 0 auto;
}
.rentee-journey__heading {
  font-size: 2rem !important;
  font-weight: 700;
  margin-bottom: 3.2rem;
  color: #333;
}
.rentee-journey__heading__icon {
  font-size: 2rem;
  font-weight: 700;
  margin-right: 1rem;
  color: #7e63f8;
}
.rentee-journey__timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  row-gap: 2rem;
}
.rentee-journey__step {
  background-color: white;
  border: 1px solid #e5e4f7;
  border-radius: 1.2rem;
  padding: 1.6rem 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 0.6rem 1.6rem rgba(60, 45, 233, 0.05);
}
.rentee-journey__day {
  font-size: 1.6rem;
  font-weight: 600;
  color: rgb(159, 77, 182);
  margin-bottom: 0.4rem;
}
.rentee-journey__text {
  font-size: 1.4rem;
  color: #555;
  line-height: 1.5;
}

.multi-select-container label {
  display: flex;
  align-items: center;
  gap: 8px; /* or whatever spacing you like */
  cursor: pointer;
  font-size: 1.6rem; /* match your design */
}

.multi-select-container input[type=checkbox] {
  appearance: checkbox !important; /* restores checkbox look */
  -webkit-appearance: checkbox !important;
  -moz-appearance: checkbox !important;
  opacity: 1 !important;
  position: static !important;
  margin: 0 8px 0 0 !important;
  width: 1.8rem !important;
  height: 1.8rem !important;
}

/* Only for filter radios in search page */
[type=radio]:checked + label,
[type=radio]:not(:checked) + label {
  padding-left: 0rem;
}

.multi-select-menuitem {
  padding-left: 2rem;
}

/* pagination */
.mbPagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2.4rem 0;
  font-size: 1.8rem;
  width: 100%;
}

.mbPagination__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
}

.mbPagination__item--ellipsis {
  pointer-events: none;
}

.mbPagination__ellipsis {
  color: #aaa;
  font-size: 1.7rem;
  padding: 0 0.8rem;
  user-select: none;
}

.mbPagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 3.6rem;
  height: 3.6rem;
  padding: 0 1.2rem;
  font-size: 1.6rem;
  color: #3c2de9;
  background: #fff;
  border: 1px solid #e8e5f8;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.18s;
  cursor: pointer;
  font-weight: 500;
}

.mbPagination__link:hover,
.mbPagination__link:focus {
  background: #e8e5f8;
  color: #29208a;
  border-color: #3c2de9;
  outline: none;
}

.mbPagination__link--active {
  background: #3c2de9;
  color: #fff;
  border-color: #3c2de9;
  cursor: default;
  pointer-events: none;
}

.mbPagination__link--disabled {
  color: #aaa;
  background: #f5f5f5;
  border-color: #eee;
  cursor: not-allowed;
  pointer-events: none;
}

.mbPagination__link--nav {
  font-size: 1.9rem;
  font-weight: 400;
}

.mbPagination__item--active .mbPagination__link {
  background: rgb(159, 77, 182); /* Brand purple */
  color: #fff !important;
  cursor: default;
  border-color: #9f4db6; /* Match the accent color */
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(159, 77, 182, 0.13); /* Soft, elegant purple shadow */
  pointer-events: none;
  transition: background 0.15s, color 0.15s, box-shadow 0.2s;
}

@media (max-width: 600px) {
  .mbPagination__list {
    gap: 0.4rem;
  }
  .mbPagination__link {
    min-width: 3rem;
    height: 3rem;
    font-size: 1.3rem;
    padding: 0 0.6rem;
    border-radius: 6px;
  }
  .mbPagination {
    font-size: 1.3rem;
    margin: 1.2rem 0;
  }
}
/* 1) Hide the native select but keep it in the form flow */
#presetMessages-oneLiner,
#pg-form-presetMessages-oneLiner {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

/* 2) Custom select wrapper */
.selecty {
  position: relative;
  width: 100%;
  font: inherit;
  max-width: 100%;
}

/* 3) Button (closed state) – matches your select height/padding/border */
.selecty__btn {
  width: 100%;
  height: 50px;
  padding: 1.2rem 48px 1.2rem 1.6rem; /* same as your select */
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #fff;
  font-size: 1.4rem;
  font-weight: 400;
  color: #666;
  cursor: pointer;
  transition: all 0.2s ease;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden; /* safety */
}

.selecty__label {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
}

/* Chevron using FontAwesome (like your existing ::after) */
.selecty__btn[aria-expanded=true] .selecty__chev {
  transform: rotate(180deg);
}

/* 4) Panel (dropdown list) */
.selecty__panel {
  position: absolute;
  z-index: 10;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  max-height: 280px;
  overflow: auto;
  padding: 6px;
  display: none;
}

.selecty__panel[aria-hidden=false] {
  display: block;
}

/* 5) Option items */
.selecty__opt {
  padding: 0.9rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  font-size: 1.4rem;
  color: #333;
}

/* Hover/active/selected */
.selecty__opt:hover,
.selecty__opt.selecty__opt--active,
.selecty__opt[aria-selected=true] {
  background: #f5f7ff;
}

/* Disabled hint rows like “Choose from dropdown”, “…Or Type…” */
.selecty__opt[aria-disabled=true] {
  color: #9aa0a6;
  cursor: not-allowed;
  background: transparent;
}

/* Focus ring for button accessibility */
.selecty__btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(60, 45, 233, 0.25);
}

/* ✅ Optional: color accent to match your theme on selection */
.selecty__opt[aria-selected=true] {
  box-shadow: inset 0 0 0 1px rgba(60, 45, 233, 0.01);
}

.type-your-msg-optn {
  color: rgb(159, 77, 182) !important;
}
