/* reset css */
@import url(./color-fonts.css);

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

html,
body {
  margin: 0;
  color: #1a1a1a;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

/* global css */
.custom-scrollbar::-webkit-scrollbar {
  background-color: #d9d9d9;
  border-radius: 5px;
  width: 5px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: rgba(171, 171, 171, 0.6);
  border-radius: 5px;
}

.gutter10 {
  margin-left: -5px;
  margin-right: -5px;
}

.gutter10>[class^="col-"] {
  padding-left: 5px;
  padding-right: 5px;
}

.gutter14 {
  margin-left: -7px;
  margin-right: -7px;
}

.gutter14>[class^="col-"] {
  padding-left: 7px;
  padding-right: 7px;
}

.sec-mrgnTop-60 {
  margin-top: 3.75rem;
}

/* checkbox for login */
.modfy-check {
  clear: both;
  font-size: 14px;
  margin-bottom: 1rem;
}

.modfy-check input[type="checkbox"] {
  height: 0;
  width: 0;
}

.modfy-check label {
  margin-bottom: 0;
}

.modfy-check input[type="checkbox"]+label {
  color: initial;
  float: left;
  position: relative;
  -webkit-transition: color 250ms cubic-bezier(0.4, 0, 0.23, 1);
  transition: color 250ms cubic-bezier(0.4, 0, 0.23, 1);
}

.modfy-check input[type="checkbox"]+label span {
  background: transparent;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  height: 20px;
  margin-right: 6px;
  position: relative;
  width: 20px;
  vertical-align: middle;
}

.modfy-check input[type="checkbox"]+label:hover,
.modfy-check input[type="checkbox"]:focus+label {
  color: var(--black-mini);
}

var .modfy-check input[type="checkbox"]+label:hover>span,
.modfy-check input[type="checkbox"]:focus+label>span {
  background: rgba(255, 255, 255, 0.1);
}

.modfy-check input[type="checkbox"]:checked+label span {
  -webkit-animation: shrink-bounce 200ms cubic-bezier(0.4, 0, 0.23, 1);
  animation: shrink-bounce 200ms cubic-bezier(0.4, 0, 0.23, 1);
  border: 1px solid var(--blue-mini);
  background: #ffffff;
}

.modfy-check input[type="checkbox"]:checked+label span:before {
  -webkit-animation: checkbox-check 125ms 250ms cubic-bezier(0.4, 0, 0.23, 1) forwards;
  animation: checkbox-check 125ms 250ms cubic-bezier(0.4, 0, 0.23, 1) forwards;
  border-right: 2px solid transparent;
  border-bottom: 2px solid transparent;
  position: absolute;
  content: "";
  font-size: 1.375rem;
  left: 0.24rem;
  top: 0.615rem;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
}

@-webkit-keyframes shrink-bounce {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  33% {
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes shrink-bounce {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  33% {
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes checkbox-check {
  0% {
    border-color: var(--blue-mini);
    height: 0;
    -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
    transform: translate3d(0, 0, 0) rotate(45deg);
    width: 0;
  }

  33% {
    height: 0;
    -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
    transform: translate3d(0, 0, 0) rotate(45deg);
    width: 0.2em;
  }

  100% {
    border-color: var(--blue-mini);
    height: 0.5em;
    -webkit-transform: translate3d(0, -0.5em, 0) rotate(45deg);
    transform: translate3d(0, -0.5em, 0) rotate(45deg);
    width: 0.2em;
  }
}

@keyframes checkbox-check {
  0% {
    border-color: var(--blue-mini);
    height: 0;
    -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
    transform: translate3d(0, 0, 0) rotate(45deg);
    width: 0;
  }

  33% {
    height: 0;
    -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
    transform: translate3d(0, 0, 0) rotate(45deg);
    width: 0.2em;
  }

  100% {
    border-color: var(--blue-mini);
    height: 0.5em;
    -webkit-transform: translate3d(0, -0.5em, 0) rotate(45deg);
    transform: translate3d(0, -0.5em, 0) rotate(45deg);
    width: 0.2em;
  }
}

@media (max-width: 767px) {
  .modfy-check {
    margin-bottom: 0.5rem;
  }
}

.btn {
  font-weight: 600;
}

/* checkbox for amanities list in filter */
/* global css */
/* ==============================
    Site Header
============================== */
.site-header {
  position: absolute;
  top: 1rem;
  left: 3.75rem;
  right: 3.75rem;
  z-index: 2;
  height: 3.75rem;
  display: flex;
  align-items: center;
}

.site-header.srp-header {
  background-color: var(--white);
  box-shadow: 0px 2px 8px rgb(0 0 0 / 15%);
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  padding: 0 3.75rem;
  font-weight: 500;
}

.site-logo {
  float: left;
  position: relative;
}

.btn-city-change,
.btn-cart,
.btn-user {
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 25px;
  color: #fff;
  float: left;
  font-size: var(--fnt-14);
  margin: 0 0 0 40px;
  padding: 10px 20px;
  height: 44px;
  position: relative;
}

.btn-cart,
.btn-user {
  margin-left: 0;
}

.btn-user {
  background-color: #ffffff;
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}

.btn-user>span {
  max-width: 100px;
}

.site-header .btn-cart {
  background-color: rgb(255 255 255 / 20%);
}

.site-header.srp-header .btn-user {
  border: 1px solid #e3e3e3;
}

.site-header.srp-header .btn-cart {
  color: var(--bg-black-mini);
  font-size: var(--fnt-14);
  background-color: #f3f3f3;
  font-weight: 500;
}

.btn-cart>.add-cart-value {
  background-color: #f6586f;
  display: inline-flex;
  height: 14px;
  width: 16px;
  border-radius: 6px;
  position: absolute;
  top: 2px;
  left: 28px;
  padding: 1px 4px;
  font-size: var(--fnt-10);
  text-align: center;
  justify-content: center;
  align-content: center;
}

.btn-cart>.add-cart-value>span {
  color: #fff;
}

.btn-city-change::before {
  background-color: rgba(255, 255, 255, 0.2);
  content: "";
  display: block;
  height: 25px;
  left: -21px;
  position: absolute;
  top: 9px;
  width: 2px;
}

.header-links a {
  color: var(--white);
  text-decoration: none;
  font-size: var(--fnt-14);
}

/* .site-header.srp-header .header-links a {
  color: var(--bg-black-mini);
} */
.user-menu>.main_menu,
.Cart>.add-cart {
  padding: 1.75rem;
  overflow: hidden;
  border: none;
  border-radius: 0;
  will-change: transform;
  box-shadow: 0 0px 20px 2px rgb(0 0 0 / 15%);
}

.user-menu>.main_menu,
.Cart>.add-cart {
  border-bottom-right-radius: 16px;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
}

.user-menu>.main_menu {
  width: 250px;
  padding: 0;
}

.Cart>.add-cart {
  width: 575px;
}

.dropdown-menu.main_menu.show,
.Cart>.add-cart.show {
  transform: translate3d(0px, 45px, 0px) !important;
  top: 5px !important;
  left: auto !important;
  right: 0 !important;
}

.mm-register-btns {
  background-color: #f2f2f2;
  padding: 16px;
  margin: 0;
}

.mm-register-btns li {
  display: inline-block;
  margin-right: 8px;
}

.mm-register-btns li:last-child {
  margin-right: 0;
}

.mm-register-btns .btn {
  background-color: #f6586f;
  border: 1px solid #f6586f;
  font-weight: 600;
  border-radius: 6px;
  color: #ffffff;
  font-size: 0.875rem;
  width: 100px;
  padding: 12px 16px 8px;
  text-transform: uppercase;
}

.mm-register-btns .btn-mm-signIn {
  background-color: #38c7b4;
  border: 1px solid #38c7b4;
  color: #fff;
}

.user-menu .main_menu>a {
  color: initial;
  border-bottom: 1px solid #ededed;
  padding: 12px 16px;
  width: 100%;
  display: flex;
}

.user-menu .main_menu>a:last-child {
  border-bottom: none;
}

.user-menu .main_menu>a.how-it-work {
  background-color: #e9ebff;
  color: #626eff;
  padding-bottom: 16px;
}

/* add cart menu design */
.cart-block {
  display: flex;
  position: relative;
  border-bottom: 1px solid #999999;
  margin-bottom: 16px;
  padding-bottom: 16px;
}

.cart-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.cart-img {
  position: relative;
  width: 140px;
  height: 90px;
  overflow: hidden;
  border-radius: 6px;
}

.cart-img>.btn-cart-detail {
  position: absolute;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 11px;
  padding: 4px;
  width: 60%;
  text-align: center;
  border-radius: 16px;
}

.mini-head>img {
  height: 15px;
}

p.item-name {
  font-size: 0.875rem;
  text-align: justify;
  font-weight: 600;
  margin-bottom: 0.55rem;
}

.mini-head>span {
  font-size: var(--fnt-12);
  color: #999999;
  text-transform: uppercase;
  padding-left: 5px;
}

.check-in {
  font-size: var(--fnt-13);
  color: initial;
  font-weight: 600;
  padding-left: 24px;
}

.cart-price {
  background-color: #626eff;
  padding: 5px 6px;
  text-align: center;
  font-weight: 600;
  color: #ffffff;
  border-radius: 6px;
}

.howitModal,
.add_passenger,
.filterSection {
  opacity: 0;
  top: 0;
  right: -3rem;
  width: 0;
  height: 100vh;
  position: fixed;
  overflow: auto;
  background: #ffffff;
  z-index: 9;
  will-change: transform;
  -webkit-transform: translateX(0) translate3d(0, 0, 0);
  transform: translateX(0) translate3d(0, 0, 0);
  -webkit-transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  box-shadow: 1px 1px 10px 4px rgb(0 0 0 / 15%);
}

.howitModal.open,
.add_passenger.open,
.filterSection.open {
  padding: 2.5rem;
  opacity: 1;
  width: 30%;
  right: 0;
  top: 0;
}

.section-one,
.section-two {
  padding-bottom: 5rem;
  position: relative;
}

.design-path,
.design-path2 {
  position: absolute;
}

.design-path {
  bottom: -20px;
  left: 65px;
}

.design-path2 {
  right: 90px;
  bottom: -5px;
}

.design-path>img,
.design-path2>img {
  height: 100px;
}

.section-title {
  position: relative;
  padding-bottom: 1rem;
  overflow: hidden;
}

.section-title-hdng {
  font-size: var(--fnt-24);
  font-weight: 700;
  letter-spacing: normal;
}

.howitModal .btn-close,
.add_passenger .btn-close {
  width: auto;
  border: none;
  background: transparent;
}

.hiw-explore,
.hiw-buy,
.hiw-enjoy {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hiw-explore {
  color: #327c63;
}

.hiw-buy {
  color: #ff6d24;
}

.hiw-enjoy {
  color: #626eff;
}

.hiw-explore>.img-block,
.hiw-buy>.img-block,
.hiw-enjoy>.img-block {
  position: relative;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 260px;
  height: 100%;
  box-shadow: 0 0 16px rgb(51 51 51 / 10%);
}

.hiw-explore .explore-text,
.hiw-buy .explore-text,
.hiw-enjoy .explore-text {
  padding-left: 1.5rem;
  font-size: 18px;
}

.explore-text>h5 {
  font-size: var(--fnt-18);
  font-weight: 600;
}

.explore-text p {
  margin: 0;
  font-size: var(--fnt-14);
}

/* sign in modal */
.signInModal {
  background: #ffffff;
  position: relative;
  padding: 3rem 0 4rem 0;
  height: 100vh;
}

.signInModal h1 {
  font-weight: 700;
  font-size: 2.813rem;
}

.signInModal p.sub-head {
  font-size: 1rem;
  color: #394656;
  opacity: 0.5;
  margin-bottom: 1.85rem;
}

.login-email,
.login-otp {
  position: relative;
}

.login-email.none {
  display: none;
}

.login-otp,
.recovary_pass {
  display: none;
}

.login-otp.active {
  display: block;
}

.recovary_pass.active {
  display: block;
}

.signInModal p.loginto {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 2rem;
}

.signInModal .form-group {
  margin-bottom: 2rem;
}

.form-control.form-mini {
  border: none;
  background: #ffffff;
  border-radius: 0;
  border-bottom: 1px solid #e6e6e6;
  height: 50px;
  position: relative;
  padding-left: 50px;
}

.form-control.form-mini~.login-icon,
.form-control.form-mini~.login-icon-right {
  position: absolute;
  top: 12px;
  left: 15px;
}

.form-control.form-mini~.login-icon-right {
  left: auto;
  right: 15px;
}

.login-icon,
.login-icon-right {
  height: 22px;
}

.login-icon {
  position: absolute;
}

select.country-code {
  width: 30%;
}

.forget-text {
  font-size: 0.875rem;
}

.login-button {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.login-button>.border-2 {
  border-width: 2px;
}

.login-button>.btn {
  height: 60px;
  width: 200px;
  font-weight: 600;
}

.login-with-google>a {
  height: 60px;
  text-align: center;
  width: 100%;
}

.login-with-google>a>img {
  margin-right: 0.75rem;
  filter: invert(1);
  height: 24px;
}

.btn-google,
.btn-facebook {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-google {
  color: #fff;
  background-color: #ea4335;
  border-color: #ea4335;
}

.btn-google:hover {
  background-color: #e62210;
  border-color: #e62210;
  color: #fff;
}

.btn-facebook {
  color: #fff;
  background-color: #3b5998;
  border-color: #3b5998;
}

.btn-facebook:hover {
  background-color: #314a81;
  border-color: #314a81;
  color: #fff;
}

.login-button>button:first-child {
  margin-right: 2rem;
}

.success-sec {
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.success-img>img {
  height: 200px;
  margin: 0 auto;
  display: flex;
}

.btn-primary {
  font-size: var(--fnt-14);
  font-weight: normal;
  color: #fff;
  background-color: #626eff;
  border-color: #626eff;
}

.btn-primary:hover {
  color: #fff;
  background-color: #4a57eb;
  border-color: #4a57eb;
}

.btn-outline-primary {
  color: #626eff;
  border-color: #626eff;
}

.btn-outline-primary:hover {
  background-color: #626eff;
  border-color: #626eff;
}

.user-register .btn-register {
  color: #fff;
  background-color: #626eff;
  border-color: #626eff;
}

.user-register .btn-register:hover {
  background-color: #4756ff;
  border-color: #4756ff;
}

ul.pass-char {
  font-size: 0.813rem;
  list-style-type: circle;
  padding-left: 15px;
  color: #c3c3c3;
  margin-bottom: 3.75rem;
}

ul.pass-char>li {
  margin-bottom: 0.5rem;
}

.login-footer {
  width: 100%;
  font-size: 0.875rem;
  background-color: var(--dark-blue);
  color: #747e87;
  padding: 10px 0;
  position: fixed;
  bottom: 0;
  left: 0;
}

.copyright-login {
  font-size: 0.75rem;
  margin-left: 1rem;
}

.login-address {
  margin: 0;
  font-size: 0.875rem;
  text-align: right;
}

.enter-otp {
  border: 1px solid #e6e6e6;
  border-radius: 6px;
}

.enter-otp>input.form-control.form-mini {
  border-right: 1px solid #d6d9dc;
  text-align: center;
}

.enter-otp:last-child {
  border-right: none;
}

@media (max-width: 768px) {
  .signInModal {
    /* background: red; */
    padding: 2rem 0 4rem;
    height: auto;
  }

  .signInModal h1 {
    font-size: var(--fnt-30);
  }

  .signInModal p.loginto {
    font-size: var(--fnt-22);
    margin-bottom: 1rem;
  }

  .signInModal p.sub-head {
    margin-bottom: 0.5rem;
  }

  .signInModal .form-group {
    margin-bottom: 1rem;
  }

  .login-button>.btn {
    height: auto;
  }

  .login-button>button:first-child {
    margin-right: 1rem;
  }

  select.country-code {
    width: 40%;
  }

  .login-footer {
    padding: 5px 0;
  }

  .login-footer .row {
    flex-direction: column;
  }

  .login-footer .col-12 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .site-logo {
    margin: 0px auto 0.5rem;
  }

  .login-address {
    text-align: center;
    font-size: 0.75rem;
  }

  .copyright-login {
    margin: 0.5rem 0;
  }

  .success-img>img {
    height: 150px;
    margin: 2rem auto;
  }
}

@media (max-width: 992px) {
  .site-header {
    position: relative;
    left: 0;
    right: auto;
    background: #f6f6f6;
    top: 0;
    display: flex;
  }

  .site-header.srp-header {
    padding: 0;
  }

  .site-header-right {
    float: left;
  }

  .logo-city-change {
    float: none;
    margin-left: 0;
  }

  .site-logo {
    top: 0;
    float: none;
  }

  .site-logo img {
    display: block;
  }

  .call-mob {
    background-color: #5263e9;
    border-radius: 30px;
    width: 34px;
    height: 34px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-links {
    float: right;
  }
}

/* quick links */

.list-title-hdng {
  font-size: var(--fnt-14);
  font-weight: 600;
  margin: 0;
  color: var(--white);
}

.quick-links {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: baseline;
  margin-bottom: 1rem;
}

.quick-links>a {
  margin: 0 1rem 0.25rem 0;
  font-size: var(--fnt-13);
  color: #9a9a9a;
  text-decoration: none;
}

.quick-links>a:hover {
  color: var(--teal-mini);
}

/* footer section */
footer .quick-links {
  flex-direction: column;
}

.footer-top {
  background-color: #07111a;
}

.stay-in-touch p {
  color: #f5f5f5;
  font-size: 28px;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
}

.stay-in-touch span {
  color: #ababab;
  font-size: 13px;
}

.subscribe-form+p {
  clear: both;
  color: #999;
  font-size: 11px;
}

.subscribe-form+p a {
  color: #38c7b4;
}

.subscribe-form+p a:hover,
.subscribe-form+p a:focus {
  color: #33b6a5;
}

.form-control::placeholder {
  font-size: var(--fnt-14);
  color: color: #dedede;
  font-weight: 500;
}

.footer-section {
  background-color: #0a1f32;
}

.footer {
  padding: 3.75rem 3.75rem 0;
  font-size: 0.875rem;
  color: #ffffff;
}

.quick-links>li {
  margin: 0.75rem 0;
}

.quick-links>li>a {
  color: #ffffff;
  text-decoration: none;
}

.quick-links>li>a:hover,
.quick-links>li>a:focus {
  color: var(--teal-mini);
}

.we-accept-wrap {
  margin-top: 1rem;
}

.we-accept-col {
  display: flex;
  align-items: center;
}

.we-accept-col p {
  margin: 0;
  margin-right: 1rem;
}

.we-accept-col>.pay-opt>img {
  height: 24px;
  margin-right: 0.5rem;
}

.footer-bottom {
  background-color: #07111a;
  padding: 1rem 3.75rem;
  margin-top: 2rem;
}

.footer-bottom .site-logo img {
  width: 150px;
}

.footer-social-wrap {
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-align {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright-text {
  color: #ababab;
  font-size: 12px;
  text-align: center;
}

.footer-social-list {
  display: flex;
  justify-content: right;
  margin-bottom: 0;
}

.footer-social-list li {
  margin-right: 0.875rem;
}

.footer-social-list li:last-child {
  margin-right: 0;
}

.footer-social-list>li>a>svg {
  fill: #ffffff;
  transition: all 0.3s;
}

.footer-social-list>li>a.facebook:hover>svg {
  fill: #3b5998;
}

.footer-social-list>li>a.instag:hover>svg {
  fill: #d62976;
}

.footer-social-list>li>a.twitter:hover>svg {
  fill: #00acee;
}

.footer-social-list>li>a.youtube:hover>svg {
  fill: #FF0000;
}

.footer-social-list>li>a.pinterest:hover>svg {
  fill: #E60023;
}

.footer-social-list>li>a.linkedin:hover>svg {
  fill: #0A66C2;
}

@media (max-width: 767px) {
  .footer-bottom {
    margin-top: 0;
    padding-bottom: 4rem;
  }
}

/* ==============================
    Site Main Page Hero Section
============================== */

.hero-head {
  position: relative;
}

.main-carousel-caption {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  z-index: 1;
  width: 80%;
}

.main-carousel-caption h1,
.details-carousel>h1 {
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  line-height: 50px;
  margin-bottom: 12px;
}

.main-carousel-caption span,
.details-carousel>span {
  font-size: 16px;
}

#mainCarousel>.owl-dots {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
}

#mainCarousel>.owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 10px 7px;
}

#mainCarousel>.owl-dots .owl-dot.active span,
#mainCarousel>.owl-dots .owl-dot:hover span {
  background: var(--red-mini) !important;
}

#mainCarousel>.owl-nav {
  position: absolute;
  right: 1rem;
  bottom: 10%;
  display: flex;
  flex-direction: column;
}

#mainCarousel>.owl-nav>button {
  margin: 6px 0 !important;
}

#mainCarousel>.owl-nav [class*="owl-"]:hover {
  background: transparent;
}

.main-carousel.numerical-owl-dots .owl-dots {
  bottom: 45px;
  right: 20px;
}

.custom-owl-nav .owl-nav [class*="owl-"],
.custom-owl-nav [class*="carousel-nav-item"] {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.custom-owl-nav .owl-nav {
  margin-top: 0;
}

.custom-owl-nav.owl-carousel .owl-nav [class*="owl-"] {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 25px;
  color: #fff;
  height: 40px;
  margin: 0;
  width: 60px;
}

.custom-owl-nav .owl-prev {
  left: 6%;
}

.custom-owl-nav .owl-next {
  right: 6%;
}

.custom-owl-nav [class*="carousel-nav-item"] {
  background-color: #4ec1b2;
  border-radius: 25px;
  height: 3px;
  right: 13px;
  width: 25px;
}

.custom-owl-nav .owl-prev.disabled [class*="carousel-nav-item"],
.custom-owl-nav .owl-next.disabled [class*="carousel-nav-item"] {
  background-color: #aaaaaa;
}

.custom-owl-nav [class*="carousel-nav-item"]::after {
  background-color: #f6586f;
  border-radius: 50%;
  content: "";
  display: block;
  height: 6px;
  left: -9px;
  position: absolute;
  top: -2px;
  width: 6px;
}

.custom-owl-nav .owl-prev.disabled [class*="carousel-nav-item"]::after,
.custom-owl-nav .owl-next.disabled [class*="carousel-nav-item"]::after {
  background-color: #aaaaaa;
}

.custom-owl-nav .carousel-nav-item-right {
  left: 13px;
  right: auto;
}

.custom-owl-nav .carousel-nav-item-right::after {
  left: auto;
  right: -9px;
}

/* main search control start */
.search-block,
.cal-block {
  position: absolute;
  bottom: 8%;
  background-color: var(--white);
  border-radius: 1.25rem;
  width: 80%;
  /* overflow: hidden; */
  z-index: 1;
  margin: 0 auto;
  left: 50%;
  transform: translate(-50%);
  box-shadow: 0 0px 20px 2px rgb(0 0 0 / 15%);
}

.search-inner {
  display: block;
}

.search-inner.hide {
  display: none;
}

/* .main-search-input {
  width: 60%;
  float: left;
}

.main-search-input > img {
  position: absolute;
  top: 1.25rem;
  left: 1.5rem;
  filter: brightness(0.2);
  height: 26px;
}

.main-search-input > .search-control {
  background-color: var(--white);
  height: 70px;
  border-radius: 0;
  border-top-left-radius: 1.25rem;
  border: none;
  border-bottom: 1px solid #e6e6e6;
  padding: 1rem 4rem;
} */

.search-control:focus,
.global-s-control:focus {
  box-shadow: none;
}

.search-control::-webkit-input-placeholder {
  font-size: 18px;
  font-weight: bold;
}

.global-s-control::-webkit-input-placeholder {
  color: #777777;
}

.global-search {
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e6e6e6;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

/* label.search-label {
  margin: 0;
  padding: 22px 1.5rem;
  height: 70px;
  font-weight: 700;
  width: 60%;
  border-bottom: 1px solid #e6e6e6;
} */

.global-search>label {
  width: 60%;
  height: 70px;
  font-weight: 700;
  margin: 0;
  font-size: var(--fnt-18);
  padding: 0 2rem;
  position: relative;
  display: flex;
  align-items: center;
}

.global-search>label>.location-icon {
  filter: invert(1);
  margin-right: 1rem;
}

.search-icon {
  position: absolute;
  right: -2rem;
}

.global-search>.btn-back {
  border: none;
  background: none;
  margin-left: 0.75rem;
}

.global-search>.global-s-control {
  background-color: transparent;
  height: 70px;
  width: 40%;
  border-radius: 0;
  border-top-right-radius: 1.25rem;
  border: none;
  border-left: 1px solid #e6e6e6;
  padding: 1rem 3rem;
}

.city-outer,
.cal-design {
  /* height: 215px; */
  padding: 1.5rem 1.5rem 2rem;
}

.Select_City {
  overflow: hidden;
  will-change: transform;
  max-height: 110px;
  -webkit-transition: max-height 0.3s;
  -moz-transition: max-height 0.3s;
  transition: max-height 0.3s cubic-bezier(0, 1.05, 0, 1);
}

.Select_City.expand {
  max-height: 100%;
  -webkit-transition: max-height 0.3s;
  -moz-transition: max-height 0.3s;
  transition: max-height 0.3s cubic-bezier(0, 1.05, 0, 1);
}

.Select_City .city-badges {
  width: auto;
  color: var(--bg-black-mini);
  border: 1px solid #e6e6e6;
  background-color: var(--white);
  text-decoration: none;
  margin: 0 16px 13px 0;
  padding: 12px 23px;
  font-size: 14px;
  border-radius: 6px;
}

.Select_City .city-badges:hover,
.Select_City .city-badges.active {
  background-color: #f6586f;
  color: #ffffff;
  text-decoration: none;
}

.Select_City>.city-list {
  display: inline-flex;
  justify-content: flex-start;
  align-items: start;
  flex-wrap: wrap;
}

.btn-more-city,
.btn-search {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -22px;
  color: var(--white);
  background-color: #775ae8;
  text-decoration: none;
  padding: 12px 24px;
  font-size: 14px;
  border-radius: 50px;
  transition: ease 0.3s;
  box-shadow: 0 0px 10px 2px rgb(0 0 0 / 30%);
}

.btn-more-city:hover,
.btn-more-city:focus,
.btn-search:hover,
.btn-search:focus {
  color: var(--white);
  box-shadow: none;
}

.btn-search>img {
  height: 18px;
}

/* calendar design */
.cal_outer {
  display: none;
  opacity: 0;
}

.cal_outer.show {
  display: block;
  opacity: 1;
}

/* .btn-more-city::before {
  content: "\002B";
  left: 0;
  top: 0;
  color: red;
  font-size: 18px;
} */

.cal_header {
  font-size: var(--fnt-18);
  font-weight: 600;
  margin: 10px auto;
}

.cal-design {
  position: relative;
  padding: 1rem 1.5rem 2rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.month-layout {
  width: 50%;
  max-width: 530px;
  text-align: center;
}

.cal_month-cntrl {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  cursor: pointer;
  z-index: 2;
  border: 1px solid #e6e6e6;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  transition: all 0.3s;
}

.cal_month-cntrl>svg {
  fill: #6c6c6c;
}

.cal_month-cntrl.prev {
  left: 1.5rem;
}

.cal_month-cntrl.next {
  right: 1.5rem;
}

.cal_month-cntrl.active:hover {
  border: 1px solid var(--bg-blue-mini);
  background: var(--bg-blue-mini);
}

.cal_month-cntrl.active:hover>svg {
  fill: var(--white);
}

.for_months {
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.for_months.week,
.for_months.days {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.for_months.week>li,
.for_months.days>li {
  width: 4.9vw;
  height: auto;
  background-color: #ffffff;
  padding: 10px 6px;
  font-size: var(--fnt-15);
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  float: left;
  text-align: center;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}

.for_months.week>li {
  font-size: 12px;
  font-weight: 500;
  color: #999999;
  text-transform: uppercase;
}

.cal_date {
  text-align: center;
  margin: 0;
  letter-spacing: 2px;
}

.for_months.days>li.avail>.cal_date {
  color: var(--bg-black-mini);
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}

.for_months.days>li.avail:hover>.cal_date,
.for_months.days>li.active>.cal_date {
  color: var(--bg-blue-mini);
  border-bottom: 3px solid var(--bg-blue-mini);
}

.for_months.days>li.disabled,
.for_months.days>li:hover.disabled {
  color: rgb(26 26 26 / 30%);
  border: none;
}

.selected-field {
  display: inline-flex;
  border-left: 1px solid #e6e6e6;
  height: 100%;
  align-items: center;
  padding: 1rem 2rem;
}

.selected-field>span {
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: var(--fnt-14);
  margin-right: 1rem;
}

.selected-field>span:last-child {
  margin: 0;
}

/* main search control end */

/* custome dots */
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--yellow) !important;
}

.owl-theme .owl-dots .owl-dot span {
  background: #909090 !important;
}

.numerical-owl-dots.owl-carousel .owl-dots {
  background-color: rgba(0, 0, 0, 0.9);
  border-radius: 5px;
  color: #fff;
  counter-reset: slides-num;
  padding: 5px 7px;
  position: absolute;
  bottom: 70px;
}

.numerical-owl-dots.owl-carousel .owl-dots:after {
  content: " / " counter(slides-num);
  display: inline-block;
  font-size: 14px;
  padding-left: 12px;
  vertical-align: middle;
}

.numerical-owl-dots.owl-carousel .owl-dot {
  counter-increment: slides-num;
  display: inline-block;
}

.numerical-owl-dots.owl-carousel .owl-dot span {
  display: none;
}

.numerical-owl-dots.owl-carousel .owl-dot.active:before {
  content: counter(slides-num);
  display: inline-block;
  font-size: 14px;
  left: 9px;
  position: absolute;
  top: 6px;
  vertical-align: middle;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--teal-mini);
}

.owl-theme .owl-nav {
  margin: 0 !important;
}

@media (max-width: 768px) {
  #mainCarousel {
    display: none;
  }

  /* #mainCarousel .owl-item img,
  .main-carousel-item::after,
  #mainCarousel .owl-dots,
  #mainCarousel .owl-nav {
    display: none;
  }

  #mainCarousel .owl-item img {
    display: none;
  }
  
  .main-carousel-caption,
  .details-carousel {
    margin: 0;
    position: static;
    width: auto;
  }
  .main-carousel-caption {
    top: auto;
    left: auto;
    transform: none;
  }
  .main-carousel-caption h1,
  .details-carousel > h1 {
    font-size: var(--fnt-24);
    line-height: 30px;
  }
  .main-carousel-caption span,
  .details-carousel > span {
    font-size: 14px;
  } */
}

/* footer section */
@media (max-width: 992px) {
  .mobile_footer {
    background-color: #f6f6f6;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    padding: 4px 20px;
    box-shadow: 1px 1px 10px 4px rgb(0 0 0 / 15%);
    z-index: 99;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .mobile_footer button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
  }

  .mobile_footer button,
  .mobile_footer span {
    font-size: 12px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 600;
    border: none;
    background: transparent;
  }

  .mobile_footer button img {
    max-height: 18px;
  }

  .mobile_menu {
    /* display: block; */
    height: 100%;
    opacity: 0;
    overflow-y: auto;
    padding: 2rem 1rem;
    z-index: 9;
    position: fixed;
    top: 0;
    -webkit-transform: translateX(-105%) translate3d(0, 0, 0);
    transform: translateX(-105%) translate3d(0, 0, 0);
    -webkit-transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    visibility: hidden;
    width: 308px;
    will-change: transform;
    background-color: #ffffff;
    box-shadow: 1px 1px 10px 4px rgb(0 0 0 / 15%);
  }

  .mobile_menu.open {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(0) translate3d(0, 0, 0);
    transform: translateX(0) translate3d(0, 0, 0);
  }

  .mobile_menu>ul>li {
    border-bottom: 1px solid #f1f1f1;
    display: block;
    font-size: 15px;
    padding: 12px 20px;
  }

  .mobile_menu>ul>li>a {
    color: #1a1a1a;
    text-decoration: none;
  }

  /* .mobile_menu.overlay {
    background-color: rgba(0, 0, 0, 0.3);
    position: fixed;
    width: 100%;
  } */
}

/* user profile section */
.profile-sec {
  position: relative;
}

.profile-sec::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  content: "";
}

.up-block {
  background-color: #fff;
  box-shadow: 0 0 16px rgb(0 0 0 / 10%);
  border-radius: 1rem;
  margin-top: -65px;
  position: relative;
  padding: 25px 0 20px 40px;
}

.up-img {
  display: block;
  background-color: #fff;
  border-radius: 0.75rem;
  width: 150px;
  height: 150px;
  overflow: hidden;
  padding: 10px;
  margin-top: -70px;
  position: relative;
  border: 1px solid #eee;
  margin-bottom: 0.5rem;
}

.camera-outer {
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 5px 0 0 0;
  height: 34px;
  width: 34px;
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 9;
  line-height: 34px;
  text-align: center;
}

.camera-outer>svg {
  fill: var(--white);
}

.camera-outer>input.img-upload {
  width: 34px;
  height: 34px;
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0;
}

.uph-hi-title {
  font-weight: 600;
  font-size: 23px;
  position: relative;
}

.uph-hi-title::before {
  content: "";
  width: 180px;
  height: 3px;
  background-color: #5263e9;
  position: absolute;
  bottom: -17px;
}

.contact-dtls svg {
  fill: var(--gray);
}

#profileImage {
  width: 150px;
  height: 150px;
  background: #5263e9;
  font-size: 35px;
  color: #fff;
  text-align: center;
  line-height: 150px;
}

.uph-add-col {
  background-color: var(--white);
  border: 1px solid #e6e6e6;
  border-radius: 20px;
  position: relative;
  padding: 50px 20px 20px;
}

.uph-add-col-icon {
  background-color: var(--white);
  border: 1px solid #e6e6e6;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.uph-add-col-icon>img {
  height: 50px;
}

.uph-add-col>p {
  color: #626eff;
  font-size: var(--fnt-18);
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.5rem;
}

.uph-add-col>small {
  color: #3c3c3c;
  font-size: 14px;
  line-height: 23px;
}

.custom-fnt-size {
  font-size: var(--fnt-14);
}

.prof-tab {
  border-bottom: 1px solid var(--bg-e6);
  padding-bottom: 2px;
}

.prof-tab .nav-link {
  border-radius: 0;
  border: none;
  background-color: var(--gray);
  color: var(--white);
  padding: 0.75rem 2rem;
  transition: ease-in 0.3s;
}

.prof-tab .nav-link.active,
.prof-tab .nav-link:hover {
  background-color: var(--red-mini);
}

.prof-tab>.nav-item {
  margin-right: 0.5rem;
}

.card-profile {
  background-color: var(--white);
  border-radius: 1rem;
  padding: 1.2rem;
  box-shadow: 0 0 16px rgb(0 0 0 / 10%);
  margin-top: -135px;
  position: relative;
}

.htl-icon-sec {
  margin-right: 0.65rem;
}

.htl-icon-sec>img {
  width: 36px;
  max-width: 36px;
}

.booking-details {
  max-width: 100%;
}

.booking-details>p {
  margin-bottom: 0.5rem;
}

.booking-details>p:last-child {
  margin-bottom: 0;
}

.btn-edit {
  background-color: var(--blue);
  font-size: var(--fnt-14);
  padding: 0.2rem 0.5rem;
  color: var(--white);
  fill: var(--white);
  transition: all 0.3s;
}

.btn-edit:hover {
  color: var(--white);
  fill: var(--white);
}

.custom-fnt-size .btn-edit {
  font-size: var(--fnt-13);
}

.filter-btn {
  background-color: var(--gray);
  border: none;
  color: var(--white);
  padding: 0.25rem 0.75rem;
  margin-right: 0.5rem;
  transition: all 0.3s;
}

.filter-btn:last-child {
  margin-right: 0;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--blue);
}

.card-top-head {
  border-bottom: 1px solid var(--clr-e6);
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
}

.divider>.form-group {
  border-bottom: 1px solid var(--clr-e6);
  padding-bottom: 0.5rem;
  margin-bottom: 0.75rem;
}

.divider>.form-group:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.divider label {
  width: 40%;
  text-transform: uppercase;
}

.pos-edit {
  position: absolute;
  right: 16px;
}

@media (max-width: 767px) {
  .card-profile {
    margin-top: -50px;
  }

  .up-img {
    margin-top: -45px;
  }

  .uph-add-col {
    margin-bottom: 60px;
  }

  .uph-add-col:last-child {
    margin-bottom: 0;
  }

  .contact-dtls p:last-child {
    margin: 0;
  }

  .prof-tab .nav-link {
    padding: 0.65rem 1.5rem;
  }
}

/* main content sectoin */
.section-padding {
  padding: 3.75rem;
  position: relative;
}

.info-minibreak {
  padding: 1rem;
  background-color: var(--bg-f9);
  /* border: 1px solid #e6e6e6; */
  border-radius: 8px;
  box-shadow: 0 0 20px rgb(51 51 51 / 12%);
  overflow: hidden;
}

.info-minibreak .info-img {
  background: #fdf1cb;
  border-radius: 50%;
  padding: 1rem;
  width: 84px;
  height: 84px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.info-minibreak .info-img>img {
  max-height: 60px;
}

.section-title-desc {
  clear: left;
  color: #a5a4a4;
  display: block;
}

.btn-see-all {
  background-color: #f1f2ff;
  padding: 1rem 2rem;
  border-radius: 30px;
  color: var(--bg-blue-mini);
}

.btn-see-all svg {
  fill: var(--blue-mini);
  font-weight: bold;
  margin-left: 0.125rem;
}

.city-name {
  font-family: "Great Vibes", cursive;
}

.city-carousel-item,
.daycation {
  border-radius: 16px;
  position: relative;
  display: flex;
  overflow: hidden;
}

.city-carousel-item::before,
.daycation>.pkg-block>.img-block::before,
.details-carousel-item::before {
  background: transparent linear-gradient(180deg, #00000000 0%, #00000058 45%, #000000e6 100%) 0% 0% no-repeat padding-box;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 75%;
}

.details-carousel-item::before {
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

.city-carousel-caption {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
}

.city-carousel-caption>h3 {
  font-family: "Great Vibes", cursive;
  font-size: 3.125rem;
  text-align: center;
  color: var(--white);
}

.city-carousel-caption>.city-head:before {
  content: "";
  background-color: var(--bg-teal-mini);
  border-radius: 3px;
  bottom: 75px;
  height: 3px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 60px;
  position: absolute;
  width: 90%;
}

.custom-nav>.owl-nav>.owl-next,
.custom-nav>.owl-nav>.owl-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--bg-black-mini) !important;
  fill: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
}

#daystayCarousel.custom-nav>.owl-nav>.owl-next,
#daystayCarousel.custom-nav>.owl-nav>.owl-prev,
#FreshpikCarousel.custom-nav>.owl-nav>.owl-next,
#FreshpikCarousel.custom-nav>.owl-nav>.owl-prev {
  top: 30%;
  transform: translateY(-70%);
}

.custom-nav>.owl-nav>.owl-prev {
  left: 0;
}

.custom-nav>.owl-nav>.owl-next {
  right: 0;
}

.owl-theme .owl-nav [class*="owl-"] {
  margin: 0 !important;
}

.city-tags {
  background-color: var(--red-mini);
  color: var(--white);
  padding: 0.125rem 0.75rem 0.125rem 0;
  position: absolute;
  top: 1rem;
  right: 0;
  font-weight: 600;
  font-size: var(--fnt-14);
}

.city-tags:before {
  content: "";
  border-top: 25px solid var(--red-mini);
  border-left: 25px solid transparent;
  position: absolute;
  top: 0;
  left: -25px;
}

.city-tags:after {
  content: "";
  border-bottom: 25px solid var(--red-mini);
  border-left: 25px solid transparent;
  position: absolute;
  top: 0;
  left: -25px;
}

.partner-nav img {
  filter: opacity(0.5);
}

.owl-carousel .owl-item img {
  width: auto;
}

@media (min-width: 992px) {
  .section-title {
    position: relative;
    padding: 0 0 0 25px;
    overflow: hidden;
  }

  .section-title::after {
    background-color: #38c7b4;
    border-radius: 3px;
    bottom: 0;
    content: "";
    height: 5px;
    left: 0;
    max-width: 120px;
    min-width: 60px;
    position: absolute;
    width: 50%;
  }

  .section-title.section-bdr-left::after {
    height: 100%;
    min-width: 5px;
    max-width: 5px;
    width: 5px;
  }

  .section-title.section-bdr-bottom::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: 2rem 0;
  }

  .info-minibreak {
    margin-bottom: 1.5rem;
  }

  .section-title-hdng {
    font-size: var(--fnt-18);
  }

  .section-title-desc {
    font-size: var(--fnt-14);
  }

  .city-carousel-caption>h3 {
    font-size: 2.55rem;
  }

  .btn-see-all {
    padding: 0.125rem 0.25rem;
    width: 80px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fnt-13);
  }
}

/* daycation section */
a.daycation,
a.daypasses,
a.FreshPicks,
a.srp_listing {
  text-decoration: none;
  color: initial;
}

.pkg-block {
  background-color: #ffffff;
  border: 1px solid #e6e6e6;
  border-top: none;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  /* box-shadow: 0 4px 12px rgb(0 0 0 / 10%); */
}

.FreshPicks>.pkg-block,
.srp_listing>.pkg-block {
  border: none;
}

.pkg-block>.img-block {
  overflow: hidden;
  max-height: 200px;
  position: relative;
  display: flex;
  align-content: center;
  align-items: center;
}

.pkg-block>.img-block>.offer-tag,
.pkg-block>.img-block>.exclusive-pkg {
  position: absolute;
  text-transform: uppercase;
  font-weight: 600;
}

.pkg-block>.img-block>.offer-tag {
  bottom: 1rem;
  right: 1rem;
  color: var(--yellow);
}

.pkg-block>.img-block>.exclusive-pkg {
  background-color: #822178;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  top: 1rem;
  left: 1rem;
  color: var(--white);
  font-size: var(--fnt-12);
}

.FreshPicks>.pkg-block>.img-block {
  border-radius: 1rem;
  max-height: 220px;
}

.pkg-block>.heading-block {
  padding: 1rem 1rem 0.5rem;
  /* line-height: var(--lh); */
}

.pkg-block>.heading-block>h4 {
  color: #1a1a1a;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.pkg-block>.content-block {
  padding: 0 1rem 0.125rem;
  overflow-y: auto;
  height: 11rem;
  border-bottom: 1px solid lightgray;
}

/* truncate overflow */
@media (min-width: 992px) {
  :root {
    --lh: 1.57rem;
  }

  .pkg-block>.heading-block {
    max-width: 100%;
    line-height: var(--lh);
  }

  .truncate-overflow {
    --max-lines: 2;
    position: relative;
    /* max-height: calc(var(--lh) * var(--max-lines)); */
    overflow: hidden;
    height: 3.25rem;
    padding-right: 0.5rem;
    /* space for ellipsis */
  }

  .truncate-overflow::before {
    position: absolute;
    content: ". . .";
    bottom: 0;
    right: 0;
  }

  .truncate-overflow::after {
    content: "";
    position: absolute;
    right: 0;
    width: 1.5rem;
    height: 4.75rem;
    background: white;
  }
}

.pkg-block>.starting {
  padding: 0 1rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pkg-block>.starting>.price {
  margin: 0;
  display: flex;
  align-items: start;
  font-size: 12px;
  flex-direction: column;
}

.pkg-block>.starting>.price>p>span,
.pkg-block>.starting>.price>span {
  font-size: 20px;
  color: #ec1c51;
  font-weight: 600;
}

.starting>.star-rate,
.amanit-sec>.star-rate,
.star-rate {
  background: var(--red-mini);
  border-radius: 6px;
  padding: 0.125rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  fill: var(--white);
  margin: 0;
  max-width: 44px;
}

.srp_listing>.pkg-block>.starting {
  padding: 0 1rem;
}

#daypassCarousel .daypass-block {
  overflow: hidden;
  max-height: 300px;
  border-radius: 1rem;
  position: relative;
  display: flex;
  align-content: center;
  align-items: center;
}

.daypass-block::after {
  background: transparent linear-gradient(180deg, #00000000 0%, #00000058 45%, #000000e6 100%) 0% 0% no-repeat padding-box;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 75%;
}

#daypassCarousel .daypass-block>.inside-block-content {
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  width: 92%;
  z-index: 1;
  color: var(--white);
}

.inside-block-content>h4 {
  color: var(--white);
  font-weight: 600;
}

.inside-block-content>.price {
  margin: 0;
  font-size: 12px;
}

.inside-block-content>.price>span {
  color: var(--yellow);
  font-size: 20px;
  font-weight: 600;
}

@media (max-width: 767px) {
  #daypassCarousel .daypass-block>.inside-block-content {
    left: 0.875rem;
    width: 90%;
  }

  .inside-block-content>h4 {
    font-size: 1rem;
  }

  .inside-block-content>.price {
    display: flex;
    align-items: center;
  }

  .inside-block-content>.price>span {
    margin-left: 1rem;
  }
}

/* daycation section */

.covid-block {
  background-color: var(--white);
  border: 1px solid #e6e6e6;
  border-radius: 1rem;
  padding: 1.5rem 1rem;
  margin-bottom: 1.5rem;
}

.covid-block>.head {
  background-color: var(--yellow);
  border-top-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  padding: 0.5rem 1.5rem;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.covid-block>p {
  font-size: 0.875rem;
  margin-bottom: 0;
  color: #3c3c3c;
}

/* Our Fresh Picks */
.amanit-sec {
  padding: 0 1rem 0.75rem;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ofp-tags {
  color: #4d4d4d;
  font-size: 12px;
  margin: 0;
}

.ofp-tags>li {
  float: left;
  margin-right: 0.5px;
  padding-left: 11px;
  position: relative;
}

.ofp-tags>li:first-child {
  padding-left: 0;
}

.ofp-tags>li:last-child {
  margin-right: 0;
}

.ofp-tags>li::before {
  background-color: #4d4d4d;
  border-radius: 50%;
  content: "";
  display: inline-flex;
  height: 5px;
  width: 5px;
  margin-right: 10px;
}

.ofp-tags>li:first-child::before {
  display: none;
}

.ofp-tags>.amanity-btn {
  background-color: transparent;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  font-size: 10px;
  margin-left: 1rem;
  padding: 2px 6px;
}

.more-amanity {
  position: absolute;
  right: 1rem;
  bottom: 2.5rem;
  background-color: var(--bg-black-mini);
  color: var(--white);
  padding: 0.5rem;
  width: 260px;
  height: auto;
  display: none;
  border-radius: 6px;
}

.more-amanity>ul {
  display: flex;
  flex-wrap: wrap;
}

.more-amanity>ul>li {
  list-style-type: disc;
  list-style-position: inside;
  margin-right: 1rem;
  width: 40%;
}

.ofp-tags>.amanity-btn:hover~.more-amanity {
  display: block;
}

/* enquiry section */
.enquiry-bg {
  position: relative;
  background-image: url(../img/customised-tour.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 350px;
  overflow: hidden;
  text-align: center;
}

.enquiry-bg::before {
  background: transparent linear-gradient(180deg, #00000000 0%, #00000058 45%, #000000e6 100%) 0% 0% no-repeat padding-box;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 75%;
}

.enquiry-bg>.enq-content,
.enquiry-bg>.enq-from {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.enquiry-bg>.enq-content>h4 {
  font-weight: 600;
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.enquiry-bg>.enq-content>h4::after {
  content: "";
  background-color: #38c7b4;
  border-radius: 3px;
  bottom: 0;
  height: 5px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 120px;
  min-width: 60px;
  position: absolute;
  width: 50%;
}

.enquiry-bg>.enq-from {
  top: 70%;
}

.enq-from .form-control.form-enq {
  font-size: 0.875rem;
  height: 50px;
  position: relative;
}

.enq-from>.input-group>.form-control {
  height: 50px;
}

.enq-from>.input-group>.form-control:first-child,
.enq-from>.input-group>.input-group-append>.btn {
  border-radius: 2rem;
}

.input-group:not(.has-validation)>.form-control:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.enq-from>.input-group>.input-group-append>.btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* why book with us */

.section-wb,
.section-op {
  margin-top: 75px;
}

.why-book {
  background: #16615a url("../img/why-book-bg.jpg") center center no-repeat;
}

.wb-col {
  color: #fafafa;
  text-align: center;
}

.wb-col>img {
  margin: 0 auto;
  width: 3.5rem !important;
}

.wb-hdng {
  font-size: 18px;
  font-weight: 600;
  margin: 28px 0 6px;
}

.wb-col span {
  font-size: 12px;
}

/* search result */
.site-breadcrumb {
  background-color: transparent;
  color: rgba(77, 77, 77, 0.7);
  font-size: 12px;
  margin-bottom: 0;
  padding: 15px 0;
}

.site-breadcrumb a {
  color: rgba(77, 77, 77, 0.7);
}

.site-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  content: "/";
  height: 11px;
  margin: 0 12px;
  padding: 0;
  position: relative;
  top: 1px;
  width: 7px;
}

.site-breadcrumb .breadcrumb-item+.breadcrumb-item.active {
  color: #626eff;
}

/* .site-breadcrumb .breadcrumb-item + .breadcrumb-item.active::before {
  background-position: -29px -97px;
}*/

.mdfy-search-hotel-location {
  border-radius: 8px;
  border: 0;
  height: 85px;
  width: 100%;
}

.srp-daycation .section-title::after {
  left: 162px;
  max-width: 135px;
}

.mdfy-search {
  background-color: #4f4fe8;
  padding: 2rem;
  border-radius: 20px;
  position: relative;
  margin-bottom: 2rem;
}

.mdfy-search-form {
  overflow: hidden;
}

.mdfy-search-input {
  position: relative;
  margin-bottom: 1rem;
}

.mdfy-search-input label {
  color: #f6f7ff;
  font-size: var(--fnt-14);
}

.mdfy-search-input>.mdfy-control {
  background-color: #626eff;
  border-radius: 6px;
  border: none;
  box-shadow: none;
  color: #ffffff;
  cursor: default;
  font-size: var(--fnt-14);
  padding: 0.875rem 3.5rem;
  height: 3.125rem;
}

.form-control.mdfy-control::placeholder {
  color: #ffffff;
}

.mdfy-search-input>img {
  position: absolute;
  bottom: 14px;
  left: 10px;
}

.mdfy-search-input>img.arrow-down {
  filter: invert(1);
  right: 20px;
  left: auto;
}

.mdfy-search-input .select-mdfy-city {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #4d4d4d 50%), linear-gradient(135deg, #4d4d4d 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(1em + 6px), calc(100% - 15px) calc(1em + 6px), 100% 0;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px, 2.5em 54px;
}

.mdfy-search-input>.btn-mdfy {
  background-color: var(--white);
  color: var(--bg-blue-mini);
  height: 50px;
  border-radius: 6px;
}

.recommd-head {
  font-size: var(--fnt-22);
  font-weight: 600;
}

.recommd-head>.showing-prop {
  font-size: var(--fnt-16);
  color: #7d7d7d;
  font-weight: normal;
}

.input-sblh-group {
  position: relative;
}

.input-sblh-group label {
  background-color: var(--white);
  height: 50px;
  left: 0;
  margin-bottom: 0;
  position: absolute;
  top: 0;
  width: 49px;
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.input-sblh-group input[type="checkbox"] {
  display: none;
}

.input-sblh,
.input-sblh:focus {
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  color: #ababab;
  font-size: 14px;
  opacity: 0;
  padding: 13px 10px 13px 65px;
  position: absolute;
  top: 0;
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease;
  visibility: hidden;
  height: 50px;
  width: 60%;
  z-index: 0;
}

.input-sblh::placeholder {
  color: #ababab;
}

.input-sblh-group input[type="checkbox"]:checked+.input-sblh {
  opacity: 1;
  visibility: visible;
  width: 60%;
}

.srp-cat-filter {
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  float: left;
  font-size: var(--fnt-14);
  overflow: hidden;
}

.srp-cat-filter li {
  border-right: 1px solid #e6e6e6;
  cursor: pointer;
  float: left;
  height: 48px;
  padding: 13px 18px;
  text-align: center;
  min-width: 50px;
  font-weight: 500;
}

.srp-cat-filter li:hover,
.srp-cat-filter li.active {
  background-color: #e9ebff;
  color: var(--bg-blue-mini);
}

.srp-cat-filter li:last-child {
  border-right: none;
}

.sortby_control {
  position: relative;
  display: inline-flex;
  flex-direction: row;
  justify-content: space-between;
}

.sortby {
  position: absolute;
  left: 0.75rem;
  top: 0.875rem;
  font-weight: 500;
  font-size: var(--fnt-14);
}

.sortby~img {
  position: absolute;
  top: 1.125rem;
  right: 1.5rem;
  max-width: 1rem;
}

.sort-select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  padding: 6px 24px 4px 80px;
  border-radius: 6px;
  font-size: var(--fnt-14);
  height: 50px;
  font-weight: 500;
  color: var(--bg-blue-mini);
}

.sort-select>option {
  padding: 6px 16px;
}

.btn-filter {
  background-color: var(--bg-blue-mini);
  color: var(--white);
  height: 50px;
  border: none;
  padding: 10px 30px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Select Filter modal design */
.filterSection.open {
  width: 100%;
}

.filterSection .btn-info {
  background-color: #38c7b4;
  border: none;
  color: #fff;
}

.filterSection .btn-info:hover,
.filterSection .btn-info:focus {
  background-color: #28a090;
  border: none;
}

.filterSection .btn-danger {
  background-color: var(--red-mini);
  border: none;
  color: #fff;
}

.filterSection .btn-danger:hover,
.filterSection .btn-danger:focus {
  background-color: #e95a72;
}

.reset-btn {
  border: none;
  background-color: transparent;
  color: var(--red-mini);
  font-size: var(--fnt-14);
}

/* Range Slider start */
.range-slider {
  text-align: center;
  position: relative;
}

.range-slider .rangeValues {
  display: block;
}

input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  position: absolute;
  left: 0;
}

input[type="range"]::-webkit-slider-runnable-track {
  height: 5px;
  background: #ddd;
  border-radius: 3px;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: var(--bg-blue-mini);
  margin-top: -10px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

input[type="range"]::-moz-range-thumb {
  -webkit-appearance: none;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: var(--bg-blue-mini);
  margin-top: -10px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

input[type="range"]:focus {
  outline: none;
}

input[type="range"]:focus::-webkit-slider-runnable-track {
  background: #ccc;
}

input[type="range"]::-moz-range-track {
  height: 5px;
  background: #ddd;
  border: none;
  border-radius: 3px;
}

input[type="range"]:-moz-focusring {
  outline: none;
  outline-offset: -1px;
}

input[type="range"]::-ms-track {
  height: 5px;
  background: transparent;
  border-color: transparent;
  border-width: 6px 0;
  color: transparent;
  z-index: -4;
}

input[type="range"]::-ms-fill-lower {
  background: #777;
  border-radius: 10px;
}

input[type="range"]::-ms-fill-upper {
  background: #ddd;
  border-radius: 10px;
}

input[type="range"]::-ms-thumb {
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #21c1ff;
}

input[type="range"]:focus::-ms-fill-lower {
  background: #888;
}

input[type="range"]:focus::-ms-fill-upper {
  background: #ccc;
}

/* Range Slider start */

.filter-types {
  height: 220px;
  overflow-x: auto;
}

@media (max-width: 767px) {
  .mdfy-search {
    padding: 1.25rem;
  }

  .mdfy-search-input {
    margin-bottom: 1.5rem;
  }

  .recommd-head {
    font-size: var(--fnt-18);
  }

  .input-sblh-group label {
    height: 48px;
    width: 36px;
  }

  .srp-cat-filter {
    font-size: var(--fnt-12);
    overflow-x: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .srp-cat-filter li {
    min-width: auto;
    display: inline-flex;
    align-items: center;
  }

  .sortby_control {
    margin-bottom: 1rem;
  }

  .btn-filter {
    padding: 10px 20px;
  }

  .sort-select {
    padding: 6px 35px 4px 70px;
    font-size: var(--fnt-13);
    line-height: 38px;
  }

  .sortby~img {
    right: 0.875rem;
  }

  .filterSection.open {
    padding: 1rem;
  }

  .filter-types {
    max-height: 230px;
    margin-bottom: 1.5rem;
    min-height: auto;
    height: auto;
  }
}

/* details page */
#detailCarousel>.owl-dots {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.details-carousel {
  color: var(--white);
  position: absolute;
  bottom: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  z-index: 1;
  display: block;
}

.details-carousel-item {
  border-radius: 1rem;
}

.details_price-block {
  background-color: var(--white);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  padding: 1rem;
  border-radius: 1rem;
  margin-top: -55px;
  box-shadow: 0 0 15px rgb(0 0 0 / 10%);
  z-index: 1;
}

/* Package tabs */
.pkg-tabs>.nav-tabs>.nav-item>.nav-link {
  border-radius: 0;
  border: 1px solid #ededed;
  background-color: #ffffff;
  /* color: #626EFF; */
}

.pkg-tabs>.nav-tabs>.nav-item:first-child>.nav-link {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.pkg-tabs>.nav-tabs>.nav-item:last-child>.nav-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.pkg-tabs>.nav-tabs>.nav-item>.nav-link.active {
  background-color: #F0F1FF;
  color: #626EFF;
}

.location {
  margin-right: 0.875rem;
}

.location>img {
  filter: invert(1);
  max-width: 24px;
}

.hotel-name>h4 {
  font-weight: 600;
}

.hotel-address {
  font-size: var(--fnt-14);
  color: #a5a4a4;
  margin: 0;
}

.price-sec {
  background-color: var(--bg-black-mini);
  color: var(--white);
  font-size: var(--fnt-22);
  text-align: right;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 0.5rem;
  line-height: 25px;
}

.price-sec>span {
  font-size: var(--fnt-12);
}

.price-sec>del {
  font-size: var(--fnt-16);
  margin-right: 1rem;
}

.more {
  text-align: justify;
}

.morecontent span {
  display: none;
}

.morelink {
  display: block;
}

a.morelink {
  color: var(--black-mini);
  margin-top: 0.5rem;
}

.selected_pkg-outer {
  background-color: var(--white);
  position: relative;
  margin-bottom: 2rem;
}

.selected_pkg-outer>.bdr_Outer {
  border: 1px solid #e6e6e6;
  border-radius: 1rem;
  overflow: hidden;
}

.selected_pkg-outer .selected-pkg {
  background-color: #f3f3f3;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  padding: 0.85rem 1rem;
}

.pkg-badge {
  background-color: var(--purple-mini);
  color: var(--white);
  font-size: var(--fnt-13);
  font-weight: 500;
  padding: 0.25rem 1rem;
  border-radius: 1rem;
  position: absolute;
  left: 1.5rem;
  top: -1rem;
}

.selected-pkg h6 {
  font-weight: 600;
}

.selected-pkg .price {
  font-size: var(--fnt-20);
  font-weight: 700;
  line-height: 22px;
}

.selected-pkg .price>span {
  font-size: var(--fnt-12);
  color: #6c6c6c;
  font-weight: normal;
}

.selected-pkg .select-btn {
  display: inline-flex;
  align-items: center;
}

.selected-pkg .select-btn>img {
  filter: invert(1);
  margin-right: 0.5rem;
}

.pkg-inclusion,
.htl-property {
  padding: 0;
  position: relative;
}

.pkg-inclusion>li,
.htl-property>li {
  position: relative;
  list-style-type: none;
  margin: 0.5rem 0;
  padding: 0 0 0 30px;
  font-size: var(--fnt-14);
  display: list-item;
  align-items: center;
}

.pkg-inclusion>li::before,
.htl-property>li::before {
  content: url("../img/icons/tick-mark.svg");
  height: 16px;
  width: 16px;
  position: absolute;
  top: 0;
  left: 0;
}

.bottom-block {
  border-top: 1px solid #e6e6e6;
  padding: 1rem 1.5rem;
}

.pkg-control>.form-control {
  height: 44px;
  background-color: #f7f7f7;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  padding-left: 4rem;
}

.pkg-control>img {
  position: absolute;
  left: 30px;
  top: 12px;
}

.pkg-control>img.arrow_R {
  left: auto;
  right: 30px;
  filter: contrast(0.5);
}

.pkg-control:after {
  background-color: #e6e6e6;
  content: "";
  left: 65px;
  top: 0;
  position: absolute;
  height: 100%;
  min-width: 1px;
  width: 1px;
}

/* add passenger modal */
.add_passenger.open {
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  height: 100vh;
}

.overlay-modal {
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-transform: translateX(0) translate3d(0, 0, 0);
  transform: translateX(0) translate3d(0, 0, 0);
  -webkit-transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.add_passenger .pax-head {
  background-color: #f3f3f3;
  padding: 1rem 2rem;
  height: 80px;
}

.select-pax h6 {
  font-weight: 700;
  margin: 0;
}

.btn-remove,
.btn-add-room {
  padding: 0.25rem 0.75rem;
  font-size: var(--fnt-14);
  font-weight: 500;
  border-radius: 6px;
}

.btn-remove {
  background-color: #ffeff1;
  color: var(--red-mini);
  margin-right: 0.5rem;
}

.btn-add-room {
  background-color: var(--bg-blue-mini);
  color: var(--white);
}

.addRooms {
  position: relative;
  padding: 0 1.5rem;
}

.select-pax {
  padding: 2rem 0;
}

.add_passenger .pax-details>.row {
  border-bottom: 1px solid #e6e6e6;
  padding: 2rem 0;
}

.add_passenger .pax-details>.row:last-child {
  border-bottom: none;
}

.pax-details label {
  margin: 0;
  font-weight: 500;
}

.pax-selection {
  position: relative;
}

.pax-selection>.form-control {
  padding: 0.375rem 3rem;
  text-align: center;
  height: 50px;
  border-color: #6c6c6c;
}

.pax-selection>.form-control.child-age {
  padding: 0.375rem 1rem;
}

.pax-selection>span {
  position: absolute;
  background-color: #f5f5f5;
  width: 48px;
  height: 48px;
  left: 1px;
  top: 1px;
  font-size: var(--fnt-32);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.pax-selection>span.left {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.pax-selection>span.right {
  right: 1px;
  left: auto;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.proceed-pay {
  position: sticky;
  bottom: 0;
  right: 0;
  background: var(--bg-blue-mini);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proceed-pay>.btn-proceed {
  font-size: var(--fnt-20);
  height: 80px;
  color: var(--white);
  border-radius: 0;
}

.right-block {
  position: sticky;
  top: 0;
}

.price-breakup {
  position: absolute;
  top: -1rem;
  right: 1.5rem;
}

.price-breakup>.btn-breakup {
  background-color: #edeeff;
  border-radius: 4px;
  font-size: var(--fnt-13);
  color: var(--bg-blue-mini);
  z-index: 999;
}

.price_summary {
  background: #ffffff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.12);
  border-radius: 1.5rem;
  padding: 0 1.5rem;
  padding-bottom: 1.5rem;
}

.price_summary>h4 {
  padding: 1.5rem 0 1rem;
  border-bottom: 1px solid #e6e6e6;
  font-weight: 700;
  font-size: var(--fnt-18);
}

.price-block {
  font-size: var(--fnt-14);
  position: relative;
}

.price-block>.price-breakup-item {
  padding: 1rem 0;
  border-bottom: 1px solid #e6e6e6;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.price-block>.price-breakup-item:last-child {
  border: 0;
}

.price-block>.price-breakup-item>p {
  margin: 0;
}

.price-block>.price-breakup-item>p:first-child {
  font-weight: 600;
  width: 60%;
}

.price-block>.price-breakup-item>p:last-child {
  font-weight: 700;
  text-align: right;
  font-size: var(--fnt-15);
}

.price_summary>.proceed-pay {
  position: relative;
  border-radius: 6px;
  margin-top: 1rem;
}

.price_summary>.proceed-pay>.btn-proceed {
  font-size: var(--fnt-18);
  height: 50px;
  width: 100%;
}

/* breakup slideup */
.breakup-slideup {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0;
  height: 0;
  transition: ease 0.3s;
}

.breakup-slideup.open {
  height: auto;
  opacity: 1;
  bottom: 98px;
  right: 0;
}

.breakup-slideup .price-block {
  font-size: var(--fnt-12);
}

.breakup-slideup .price_summary {
  padding: 0.75rem;
  border-radius: 0.75rem;
}

.breakup-slideup .price-block>.price-breakup-item {
  padding: 0.5rem 0;
}

.review-card {
  background-color: var(--white);
  border: 1px solid var(--clr-e6);
  border-radius: 0.65rem;
  padding: 1rem;
  position: relative;
  margin-top: 1.5rem;
  font-size: var(--fnt-14);
  font-weight: 600;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

.review-card .stars-rating>svg,
.stars-rating>svg {
  fill: var(--bg-teal-mini);
}

/* Amenities / property highlights */
.amanities-card {
  background-color: var(--white);
  padding: 2rem 1rem;
  border-radius: 1rem;
}

.amenities-outer {
  position: relative;
  height: 50px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  -webkit-transition: height 0.3s ease;
  transition: height 0.33s ease;
}

.amenities-outer.open {
  height: auto;
  -webkit-transition: height 0.3s ease;
  transition: height 0.33s ease;
}

.plus-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--bg-e6);
  background-color: transparent;
  border-radius: 6px;
  position: absolute;
  top: 0;
  right: 0;
}

ul.amenities,
ul.house-rule {
  padding: 0;
  margin: 0;
  font-size: var(--fnt-15);
  max-width: 90%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

ul.amenities>li,
ul.house-rule>li {
  list-style-type: none;
  margin-right: 2.85rem;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
}

ul.amenities>li>.icon-outer {
  background-color: var(--bg-e6);
  padding: 0.5rem;
  margin-right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 3rem;
}

ul.house-rule {
  max-width: 100%;
}

ul.house-rule>li {
  margin-right: 3rem;
  margin-bottom: 0.5rem;
}

ul.house-rule>li>img {
  margin-right: 1rem;
}

.title-divider {
  /* border-color: #e6e6e6; */
  margin: 18px 0;
}

.reviews-point-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.reviews-point-list li {
  margin: 0.75rem 0;
  width: 45%;
  display: inline-flex;
  justify-content: space-between;
}

.review-progress {
  display: flex;
  align-items: center;
}

.review-progress-bar {
  position: relative;
}

.review-progress-base {
  background-color: #d7d7d7;
  border-radius: 25px;
  height: 3px;
  position: relative;
  width: 300px;
}

.review-progress-user {
  background-color: #38c7b4;
  border-radius: 25px;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.review-progress span {
  font-weight: 600;
  margin-left: 1rem;
  text-align: right;
  width: 40px;
}

.user-name,
.update-date {
  margin: 0;
}

.user-name {
  font-weight: 600;
}

.update-date {
  color: #a5a4a4;
}

/* detail page responsive css */
@media (min-width: 992px) {

  .add_passenger.open~.overlay-modal,
  .howitModal.open~.overlay-modal {
    background-color: rgb(0 0 0 / 60%);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
  }
}

@media (max-width: 767px) {
  .details_price-block {
    position: relative;
    margin: 0;
    width: 90%;
    padding: 0.75rem;
  }

  .details-carousel {
    display: none;
  }

  #detailCarousel>.owl-dots {
    position: relative;
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .details-carousel-item::before {
    display: none;
  }

  .hotel-name>h4 {
    font-size: var(--fnt-18);
    margin: 0;
  }

  .hotel-address {
    font-size: var(--fnt-13);
  }

  .price_summary {
    padding: 0 0.875rem 0.875rem;
  }

  .price-sec {
    font-size: var(--fnt-20);
    line-height: normal;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .price-sec>span {
    font-size: var(--fnt-12);
    margin-right: 1rem;
  }

  .price-sec>del {
    font-size: var(--fnt-14);
  }

  .more {
    font-size: var(--fnt-14);
  }

  .selected_pkg-outer .selected-pkg,
  .card-body,
  .bottom-block {
    padding: 0.75rem;
  }

  .selected-pkg h6 {
    font-size: var(--fnt-14);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .selected-pkg .price {
    font-size: var(--fnt-20);
    line-height: 18px;
  }

  .selected-pkg .price>span {
    font-size: var(--fnt-10);
  }

  .selected-pkg .select-btn,
  .selected-pkg .btn-outline-dark {
    font-size: var(--fnt-12);
    margin-top: 0.5rem;
  }

  .selected-pkg .select-btn>img {
    display: none;
  }

  .pkg-badge {
    top: -0.75rem;
    font-size: var(--fnt-11);
  }

  .pkg-inclusion>li {
    margin: 0.25rem 0;
    font-size: var(--fnt-13);
    align-items: start;
  }

  .pkg-control>.form-control {
    margin-bottom: 1rem;
  }

  .pkg-control:after {
    height: 75%;
  }

  .howitModal.open,
  .add_passenger.open {
    width: 100%;
  }

  .add_passenger .pax-head {
    height: 65px;
  }

  .add_passenger .pax-head {
    padding: 1rem;
  }

  .pax-selection>.form-control.child-age {
    padding: 0.375rem 0.75rem;
  }

  .add_passenger .pax-details>.row {
    padding: 1rem 0;
  }

  .proceed-pay>.btn-proceed {
    font-size: var(--fnt-16);
    height: 65px;
  }

  .amenities-outer {
    height: auto;
    margin: 0;
  }

  .amanities-card {
    padding: 1rem;
  }

  ul.amenities {
    font-size: 13px;
    max-width: 100%;
  }

  ul.amenities>li>.icon-outer {
    padding: 0.35rem;
    margin-right: 0.875rem;
    width: 30px;
    height: 30px;
    display: flex;
  }

  ul.amenities>li,
  ul.house-rule>li {
    margin-right: 1.5rem;
    margin-bottom: 0.5rem;
  }

  /* review rating */
  .reviews-point-list {
    display: flow-root;
    font-size: var(--fnt-14);
  }

  .reviews-point-list li {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
  }

  .review-progress-base {
    width: 160px;
  }

  .review-progress span {
    width: 30px;
  }
}