@import url('https://fonts.googleapis.com/css2?family=Gilda+Display&family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Arapey&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.cdnfonts.com/css/gt-eesti-display-trial");
/* Boxicons */
/*@font-face {*/
/*  font-family: boxicons;*/
/*  src: url("../fonts/boxicons/boxicons.ttf");*/
/*}*/
@font-face {
  font-family: Calibri;
  src: url("../fonts/Calibri/Calibri.ttf");
}

/* Root Styling */
:root {
  --color-primary: #cd1b4f;
  --color-secondary: #2eb9d9;
  --heading-font: "Gilda Display", serif;
}
html,body {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* General Styling */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none !important;
  list-style-type: none;
  font-family: "Jost", sans-serif;
}
body {
  font-family: "Jost", sans-serif;
}
::selection {
  background-color: var(--color-primary);
  color: #fff;
}
a {
  display: inline-block;
  color: #000;
  transition: all 300ms ease-in-out;
}
ul,
ol,
dl {
  margin-bottom: 0;
}
.imgFluid {
  max-width: 100%;
  height: auto;
}
button {
  cursor: pointer;
  transition: all 300ms ease-in-out;
}
i.bx {
  font-family: boxicons;
  vertical-align: middle;
}
.padd-y {
  padding: 5rem 0;
}
.mar-y {
  margin: 4rem 0;
}
.timeslotsdiv.notshow {
  display: none;
}
.timeslotsdiv.show {
  display: block;
}
/* ThemeBtn */
.themeBtn {
  width: fit-content;
  display: block;
  color: #fff;
  background: var(--color-primary);
  font-size: 0.95rem;
  outline: none;
  border-radius: 0.4rem;
  font-weight: 600;
  text-align: center;
  padding: 0.65rem 1.5rem;
  border: none;
  position: relative;
  z-index: 1;
  text-transform: capitalize;
  transition: all 300ms;
  cursor: pointer;
}
.themeBtn--center {
  margin: 1rem auto;
}
.themeBtn--full {
  width: 100%;
}
.themeBtn--outline {
  color: var(--color-primary);
  border-color: var(--color-primary);
  background: #fff;
}
.themeBtn:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  background: #fff;
}

/* Card Hover */
.card-hover__img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.card-hover__img > img {
  transition: all 500ms ease-in-out;
}
.card-hover:hover .card-hover__img > img {
  transform: scale(1.2);
}
.bubble-card {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.bubble-card::before {
  content: "";
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  border-radius: 100px;
  position: absolute;
  left: -5rem;
  top: -5rem;
  transition: all 300ms ease-in-out;
  z-index: -1;
}
.bubble-card:hover::before {
  transform: scale(50);
}
.bubble-card:hover *:not(.themeBtn) {
  color: #fff;
}

/* Section Heading */
.section-content {
  color: #000;
}

.section-content .heading {
  font-size: 2.65vmax;
  line-height: 1.15;
  font-weight: 500;
  margin-bottom: 0.75rem;
  text-transform: capitalize;
  font-family: var(--heading-font);
  color: #0e1317;
}

.section-content .sub-heading {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  font-family: var(--heading-font);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

.section-content p {
  font-size: 0.99rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0.75rem 0;
  opacity: 0.75;
}

.section-content .details {
  margin: 1rem 0 1rem 1rem;
}
.section-content .details li {
  list-style-type: disc !important;
  margin: 0.25rem 0;
}
.section-content .details li::marker {
  color: var(--color-primary);
}
.section-content ul {
  margin: 1rem 0 1rem 1rem;
}
.section-content ul li {
  list-style-type: disc !important;
  margin: 0.25rem 0;
}
.section-content ul li::marker {
  color: var(--color-primary);
}

.heading-line {
  position: relative;
  display: inline-block;
}
.heading-line::before {
  content: "";
  width: 120px;
  height: 1px;
  position: absolute;
  border-bottom: 2px solid;
  top: 50%;
  transform: translateY(-50%);
}

.heading-line.heading-line--left::before {
  left: 0;
  border-image: linear-gradient(to left, #fff, rgb(58 123 213 / 0%));
  border-image-slice: 1;
}
.heading-line.heading-line--right::before {
  right: 0;
  border-image: linear-gradient(to right, #fff, rgb(58 123 213 / 0%));
  border-image-slice: 1;
}

.heading-line--black.heading-line--left::before {
  left: 0;
  border-image: linear-gradient(to left, #000, rgb(58 123 213 / 0%));
  border-image-slice: 1;
}
.heading-line--black.heading-line--right::before {
  right: 0;
  border-image: linear-gradient(to right, #000, rgb(58 123 213 / 0%));
  border-image-slice: 1;
}

.color-primary {
  color: var(--color-primary) !important;
}
.color-secondary {
  color: var(--color-secondary) !important;
}
.fancy-link {
  display: inline-block;
  padding: 0.15rem 0;
  color: var(--color-primary) !important;
  position: relative;
  isolation: isolate;
  transition: all 300ms;
  margin-inline: 0.25rem;
}
.fancy-link::after {
  content: "";
  width: 100%;
  height: 2px;
  border: 1px dashed var(--color-primary) !important;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  transition: all 300ms;
}
.fancy-link:hover::after {
  border-style: solid !important;
}

/* Banner */
.banner {
  width: 100%;
  height: auto;
  color: #fff;
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: relative;
}
.banner--sub {
  height: auto;
  min-height: 195px;
}
.banner--overlay {
  position: relative;
}
.banner--overlay::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.65;
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.banner__bg {
  width: 100%;
  height: max-content;
  object-fit: cover;
  /* position: absolute; */
  left: 0;
  top: 0;
  z-index: -1;
}
:is(.banner-content__heading, .banner-content__subHeading) {
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 0.5rem;
}
.banner-content__heading {
  font-size: 3rem;
}
.banner-content__heading > span {
  color: var(--color-primary);
}
.banner-content__subHeading {
  font-size: 1.25rem;
}
.banner-content > p {
  font-size: 1rem;
  font-weight: 500;
  margin: 1rem 0;
}

/* Header */
.headerCenterWrapper {
  padding: 1.5rem 0;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}
:is(
    .headerCenter,
    .header-main,
    .header-main__nav,
    .header__search,
    .header__call,
    .header__call > div,
    .header__actions
  ) {
  display: flex;
  align-items: center;
}
.headerCenter .wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
}
.headerCenter .wrapper {
  /* flex-wrap: wrap; */
}
.header__search {
  background: #fff;
  border-radius: 100px;
  overflow: hidden;
  padding-left: 1.5rem;
  flex: 0.75;
  border: 1px solid #808080;
}
.header__search :is(input, button) {
  border: none;
  outline: none;
  background: none;
}
.header__search > input {
  width: 100%;
}
.header__search > input,
.header__search > input::placeholder {
  color: #333333;
  font-size: 0.8rem;
  font-weight: 400;
}
.header__search > button {
  color: #fff;
  font-size: 1.6rem;
  background: var(--color-primary);
  border-radius: 100px;
  height: 47px;
  padding-inline: 1.75rem;
}
.header__call {
  gap: 0.5rem;
}
.header__call > i {
  font-size: 2.25rem;
  color: var(--color-primary);
}
.header__call > div {
  color: #404040;
  font-size: 0.8rem;
  font-weight: 500;
  align-items: flex-start !important;
  flex-direction: column;
}
.header__call > div > a {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.24;
}
.header__actions {
  gap: 2rem;
}
.header a:hover {
  color: var(--color-primary);
}
.header__actions > li > a > i {
  font-size: 2.25rem;
  color: var(--color-primary);
}
.header__actions > li > a .title {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: capitalize;
  color: #404040;
}
.header__actions .cart-toggle {
  position: relative;
}
.header__actions > li > a.cart {
  position: relative;
}
.header__actions > li > a.cart .total {
  width: 20px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--color-secondary);
  font-size: 0.75rem;
  font-weight: 500;
  position: absolute;
  right: -7px;
  top: 0px;
}

.header-main__logo,
.header__actions,
.headerCenter .wrapper {
  width: 35%;
}
.header-main__logo {
  text-align: center;
}
.header-main__logo > img {
  width: 150px;
}
.header-main__nav > li > a {
  color: #000;
  font-size: 1rem;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0 1rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}
.header-main__nav > li > a:where(:hover, .active) {
  color: var(--color-primary) !important;
}
.header-main {
  padding: 1.5rem 0;
}
.header__actions > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 0.25rem;
}

.header-main__nav {
  justify-content: center;
  width: 100%;
}

.header-main__nav > li > a i {
  font-size: 0.65rem;
}

/* Slick Styling*/
.slick-slide {
  margin-right: 0;
}
.bannerSlider .row {
  display: flex !important;
}

/* Custom */
.custom-tabs {
  display: block;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  margin: 1.35rem auto;
  gap: 0.75rem 1rem;
}
.custom-tabs li a {
  color: #000;
  padding: 0.85rem 1rem;
  font-size: 30px;
  font-weight: 600;
  text-transform: capitalize;
  border-radius: 100px;
  /*width: 175px;*/
  text-align: center;
}
.custom-tabs li a:where(:hover, .active) {
  /*background: var(--color-primary);*/
  color: var(--color-primary);
}

/*Filter*/
.filters-content {
  border-radius: 0.5rem;
  padding: 1.75rem;
  margin: 0;
}

.filters .filters-content {
  padding: 0;
}
.filters .custom-tabs li a {
  padding: 0;
}
.filters :is(.fieldsWrapper, .bottomWrapper) {
  display: flex;
}
.fieldsWrapper {
  justify-content: center;
  gap: 1.5rem;
  align-items: flex-end;
}
.bottomWrapper {
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 1rem;
}
.filters-content .input-fields {
  margin-top: 1.5rem;
  width: 100%;
}
.filters-content .input-fields .title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
  text-transform: capitalize;
}
.filters-content .input-fields :is(input, textarea, select),
.fieldsWrapper span.select2.select2-container.select2-container--default {
  width: 100% !important;
  border: 2px solid rgb(0 0 63 / 10%) !important;
  outline: none;
  padding: 0.65rem 1.25rem !important;
  resize: none;
  user-select: none;
  transition: all 300ms ease-in;
  color: #000;
  font-size: 0.99rem;
  font-weight: 500;
  border-radius: 100px;
}
.input-fields.inone b {
  display: block;
}
.select2-container--default .select2-selection--single {
  background: none !important;
  border: none !important;
  height: auto !important;
}
.filters-content .input-fields :is(input, textarea, select):focus {
  background: #fff;
  border-color: var(--color-primary);
}
.filters-content .input-fields :is(input, textarea)::placeholder {
  color: inherit;
  opacity: 0.85;
  font: inherit;
}
.filters-content .input-fields--btn {
  display: flex;
  align-items: flex-end;
}
.filters-content .themeBtn {
  width: 100%;
}
.bottomWrapper .fieldsWrapper {
  flex: 0.5;
}
.bottomWrapper .themeBtn {
  flex: 0.2;
}
.filters .input-fields--radio {
  display: flex;
  align-items: flex-end;
}
.filters .input-fields--radio input {
  display: none;
}
.filters .input-fields--radio label {
  position: relative;
  user-select: none;
  cursor: pointer;
  padding-left: 1.75rem;
  margin-bottom: 0;
}
.mt-100 {
  margin-top: 100px;
}
.filters .input-fields--radio label::before {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
  border: 1px solid #000;
  box-shadow: 1px 1px 4px 0px #6e774a20;
}
.filters .input-fields--radio label::after {
  content: "\ea41";
  width: 1.25rem;
  height: 1.25rem;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-family: "boxicons";
  font-weight: 900;
  background: var(--color-primary);
  transform: scale(0);
  transition: all 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.filters .input-fields--radio input:checked + label::after {
  transform: scale(1);
}

/* offers */

.offers {
  position: relative;
  isolation: isolate;
}
.offers--bg {
  padding: 4rem 0;
  background: url(../images/offer-bg.jpeg) no-repeat center fixed;
  width: 100%;
  background-size: cover;
  position: relative;
  isolation: isolate;
}
.offers--bg::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: #014362;
  opacity: 0.65;
  z-index: -1;
}
.offers-card {
  color: #000;
  background: #fff;
  box-shadow: 0 0 30px 10px #00000020;
  border-radius: 0.75rem;
  overflow: hidden;
  margin: 1rem 0;
  position: relative;
}
.offers-card__img {
  width: 100%;
  height: 140px;
  border-radius: 0.75rem;
  overflow: hidden;
}
.offers-card__img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.offers-card__content {
  padding: 1rem 0 0;
}
.offers-card__content > .title {
  color: #1f2471;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 800;
  margin-bottom: 0.25rem;
  text-transform: capitalize;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--heading-font);
}
.offers-card__content > p {
  color: #505489;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  /*line-height: 1.75;*/
  overflow: hidden;
  margin-bottom: 1rem;
}
.card-effect {
  padding: 1rem;
}
.card-effect::after {
  content: "";
  background: var(--color-secondary);
  width: 100%;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 0.75rem;
  transition: all 500ms ease-in-out;
}
.card-effect:hover::after {
  height: 100%;
}
.card-effect * {
  transition: all 300ms ease-in-out;
}
.card-effect:hover *:not(.themeBtn) {
  color: #fff !important;
}
:is(.card-effect__img, .card-effect__content) {
  position: relative;
  z-index: 2;
}
.offers-card__content .themeBtn {
  font-size: 0.75rem;
  padding: 0.35rem 1.25rem;
}

/* Newsletter */

.newsletter {
  background: #cd1b4f1c;
  padding: 2rem;
}

/* Footer */
.footer {
  color: #ababab;
  background: #0e1317;
  padding-top: 5rem;
}

.footer .title {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 600;
  text-transform: capitalize;
  font-family: var(--heading-font);
  padding-bottom: 15px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}
.title.title--center::after {
  width: 100%;
}
.footer .title--center {
  display: block;
  width: fit-content;
  margin: 5rem auto 0;
}
.footer .title::after {
  content: "";
  width: 50%;
  height: 2px;
  border-image: linear-gradient(
    to right,
    var(--color-primary),
    rgb(58 123 213 / 0%)
  );
  border-bottom: 2px solid;
  border-image-slice: 1;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 300ms ease-in-out;
}
.footer-info__logo {
  width: 200px;
}
.footer-info__logo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer-info > p {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.75;
  margin: 2rem 0 1.25rem;
}
.footer-info__social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}
.footer-info__social > li > a {
  color: #fff;
  font-weight: 500;
  font-size: 1.35rem;
  width: 43px;
  aspect-ratio: 1/1;
  border: 1px solid transparent;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-info__social > li > a i {
  transition: transform 300ms;
}
.footer li > a:hover {
  color: var(--color-primary);
}
.footer-info__social > li > a:hover {
  border-color: var(--color-primary);
  background: #fff;
  color: var(--color-primary);
}
.footer-info__social > li > a:hover i {
  transform: rotateY(360deg);
}
.footer__quickLinks > ul > li > a {
  color: #ababab;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: capitalize;
  margin: 0.35rem 0 0.25rem;
  position: relative;
  padding-left: 1.5rem;
}

.footer__quickLinks > ul > li > a::before {
  content: "";
  width: 7px;
  aspect-ratio: 1/1;
  background: var(--color-primary);
  position: absolute;
  left: 0;
  top: 8px;
  transform: rotate(45deg);
}
.footer__copyright {
  border-top: 1.5px solid #ababab;
  text-align: center;
  padding: 1.25rem 0;
  margin-top: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-inline: auto;
}
.footer__copyright > p {
  margin-bottom: 0;
}

.footer .payment {
  width: 30%;
}

/* Partner */
.partner-list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
  gap: 1.5rem;
}
.partner-list__single {
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  padding: 1rem;
}
.partner-list__single > img {
  width: 130px;
  height: 90px;
  object-fit: contain;
  filter: brightness(100);
}

.goUp {
  width: 70px;
  aspect-ratio: 1/1;
  font-size: 1rem;
  font-weight: 700;
  color: #fff !important;
  align-items: center;
  display: flex;
  background: var(--color-primary);
  text-transform: uppercase;
  justify-content: center;
  flex-direction: column;
  line-height: 1;
  border-radius: 100px;
  position: fixed;
  right: -5rem;
  bottom: 1.25rem;
  z-index: 100;
  animation: float 0.5s infinite alternate;
}
.goUp i {
  font-size: 1.75rem;
}
.goUp.show {
  left: 1.25rem;
}
@keyframes float {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-10px);
  }
}

/* Drop-down */
.header {
  position: relative;
  box-shadow: 0 0 10px 1px #00000020;
}
.header-main__nav {
  position: relative;
}
.drop-down {
  width: 100%;
  color: #000;
  background: #fff;
  box-shadow: 0 0 20px 5px #00000020;
  border-radius: 0.25rem;
  overflow: hidden;
  position: absolute;
  top: 185%;
  left: 0;
  gap: 2rem;
  padding: 2rem 2rem;
  backdrop-filter: blur(7px);
  transform: translateY(5px);
  opacity: 0;
  visibility: hidden;
  transition: all 500ms;
  z-index: 111;
}
.header-main__nav > li:hover > .drop-down {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.drop-down .title {
  color: var(--color-primary);
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.5;
}
.drop-down__header {
  padding: 0.75rem 0;
  border-bottom: 1px solid #77777771;
  display: flex;
  align-items: center;
  justify-items: flex-start;
  gap: 5rem;
}
.drop-down-body {
  padding: 3rem 0;
}
.drop-down .sub-links > li > a {
  color: #000;
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #77777761;
  padding: 0.5rem 1rem;
}
.drop-down .sub-links > li > a i {
  color: #777777a8;
  font-size: 0.8rem;
  transition: all 300ms;
}
.drop-down .sub-links > li > a:where(:hover, .active) {
  background: var(--color-primary);
  color: #fff;
}
.drop-down .sub-links > li > a:where(:hover, .active) i {
  color: #fff;
}
.sub-drop-down {
  position: absolute;
  left: 105%;
  transform: translateY(-50%);
  top: 50%;
  width: 275px;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease-in-out;
}
.drop-down .sub-links > li:hover > .sub-drop-down {
  opacity: 1;
  visibility: visible;
}
.sub-links .title {
  padding: 0 1rem;
  margin-bottom: 1rem;
}
.drop-down-card {
  text-align: center;
  margin: 1rem 0;
}
.drop-down-card__img {
  width: 100%;
  height: 150px;
}
.drop-down-card__img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.drop-down-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: capitalize;
  margin-top: 1rem;
}

/*cart*/
.header__actions {
  position: relative;
}
.cart-box {
  color: #000;
  background: #fff;
  border: 1px solid #dbdbdb;
}
.cart-toggle:where(.active, :hover) .cart-box--header {
  opacity: 1;
  visibility: visible;
}
.cart-box--header {
  width: 320px;
  position: absolute;
  left: 0;
  top: 120%;
  z-index: 1000;
  border: none;
  box-shadow: 0 0 15px 5px #00000020;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms;
}
:is(
    .cart-box__footer > .wrapper,
    .products-list__single .details,
    .products-list__single .actions,
    .cart-box__body .sub-total
  ) {
  display: flex;
  align-items: center;
}
.cart-box__body {
}
:is(.products-list__single, .cart-box__footer, .cart-box__body .sub-total) {
  padding-inline: 1.25rem !important;
}
.cart-box__footer {
  padding: 1.5rem 0;
  border-top: 1px solid #dbdbdb;
}
.cart-box__footer > .wrapper {
  justify-content: space-between;
  margin-bottom: 1.5rem;
  width: 100%;
}
.cart-box__footer .total {
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: capitalize;
}
.cart-box__footer .price {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}
.products-list__single .title {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 0.25rem;
}
.products-list__single .date {
  color: #b3b3b3;
  font-size: 0.75rem;
  font-weight: 700;
}
.products-list__single .detailsWrapper {
  margin: 1.5rem 0 0.5rem;
}
.products-list__single .details {
  margin: 0.5rem 0;
  justify-content: space-between;
}
.products-list__single .details .content {
  color: #333333;
  opacity: 0.75;
  font-size: 0.85rem;
  font-weight: 500;
}
.products-list__single .actions {
  justify-content: flex-start;
  gap: 0.25rem;
}
.products-list__single .actions a {
  color: #b3b3b3;
  font-size: 1.75rem;
}
.products-list__single .actions a:hover {
  color: var(--color-primary);
}
.products-list__single .details .quantity {
  flex: 0.25;
}
.products-list__single .details .person {
  flex: 0.5;
  text-align: right;
}
.products-list__single .details .price {
  flex: 1;
  text-align: right;
}
.cart-box__body .sub-total {
  justify-content: space-between;
  margin: 0.5rem 0 1rem;
}
.cart-box__body .sub-total .title {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: capitalize;
}
.cart-box__body .sub-total .price {
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
}
.products-list__single {
  padding: 1.25rem 0 0.5rem;
}

.products-list__single:not(:first-child) {
  border-top: 1px solid #000;
}

.products-list {
  height: 230px;
  overflow-y: auto;
}
.products-list::-webkit-scrollbar {
  width: 7px;
}
.products-list::-webkit-scrollbar-track {
  background: rgba(0, 0, 255, 0.122);
  border-radius: 100px;
}
.products-list::-webkit-scrollbar-thumb {
  border-radius: 100px;
  background: var(--color-primary);
  opacity: 0.25;
}

/*Checkout*/
.checkout-form {
  border: 1px solid #dbdbdb;
  margin-bottom: 1.75rem;
}
:is(.checkout-form__header, .checkout-form__body) {
  padding-inline: 32px !important;
}
.checkout-form__header {
  padding: 27px 0;
  border-bottom: 1px solid #dbdbdb;
}
.checkout-form__body {
  padding: 1rem 0;
}
.checkout-form__header .title {
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: capitalize;
}
.checkout-form .input-fields .title {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 0.75rem;
}
.checkout-form__body.paywith .input-fields :is(select, input, textarea) {
  width: auto;
}
.checkout-form .input-fields :is(select, input, textarea) {
  width: 100%;
  border: 1px solid #dbdbdb;
  outline: none;
  background: none;
  padding: 1rem 1rem;
  line-height: 1;
  color: #000;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
}
.checkout-form .input-fields :is(input, textarea)::placeholder {
  color: inherit;
  font: inherit;
  opacity: 0.85;
}
.checkout-form .input-fields {
  margin: 1rem 0;
}

.checkout-form .code-fields {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 50px;
}

.checkout-form .code-fields button {
  position: absolute;
  right: 0;
  height: 100%;
}

.checkout-form .input-fields textarea {
  border-radius: 1rem !important;
}

.checkout-form .code-fields input {
  height: 100%;
  padding-right: 11rem;
}

.checkout-form .input-fields input#sameasbillig {
  width: auto;
}

input#upload-cover-u {
  background: transparent;
  border: 0px;
  padding: 0 !important;
  margin: 0;
  display: block;
}

/* About Us */
.about__img {
  width: 100%;
  height: 100%;
}
.about__img :is(img, iframe) {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact */
.contact {
  position: relative;
}

.contact-content {
  background-color: var(--color-primary);
  padding: 2rem 3rem;
  color: #fff;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-content__heading {
  position: relative;
  margin: 2rem 0;
  padding: 1rem 0;
  color: #fff;
}

.contact-content__heading::after {
  content: "";
  width: 20%;
  height: 3px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}
.contact-content__details {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  margin: 1rem 0;
}
.contact-content__details .info {
  color: #fff !important;
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 0;
}
.contact-content__details a.info:hover {
  color: var(--color-primary);
}

.contact-content__details i {
  font-size: 1.25rem;
}
.contact-form__heading {
  margin-bottom: 1rem;
}
.contact-form {
  color: #fff;
  padding: 3rem;
  background-color: #fff;
  width: 100%;
  height: 100%;
}
.contact-form__form .input-fields {
  margin: 1rem 0.5rem;
}
.contact-form__form .input-fields .title {
  color: #000;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 1rem;
  text-transform: capitalize;
}

.contact-form__form .input-fields :is(input, textarea) {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: #fff;
  border: 2px solid var(--color-primary);
}

.contact-form__form .input-fields :is(input, textarea):focus {
  outline: none;
  background-color: #f314441a;
}

.contact-form__form .input-fields :is(input, textarea),
.contact-form__form .input-fields :is(input, textarea)::placeholder {
  color: #000;
  font-size: 1rem;
  font-weight: 500;
}

/* Page-title */
.page-title {
  width: 100%;
  height: 100%;
  min-height: 45vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.page-title::after {
  /* content: ''; */
  width: 100%;
  height: 100%;
  position: absolute;
  background: #000;
  opacity: 0.4;
  inset: 0;
  z-index: -1;
}
.page-title__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  height: 100%;
}
.page-title__img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-title__content .heading {
  color: #cd1b4f;
  font-size: 4.5vmax;
  font-weight: 600;
  text-transform: uppercase;
}
.page-title__content .heading span {
  color: #fff;
}

/*Tour*/
.tour-img {
  width: 100%;
  height: 475px;
}
.tour-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tourImgsWrapper .slick-arrow::before {
  color: #fff;
  opacity: 1;
  font-size: 3.25rem;
  font-family: boxicons !important;
  transition: all 300ms ease-in-out;
}
.tourImgsWrapper .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  display: inline-flex;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  justify-content: center;
  background: transparent;
  transition: all 300ms ease-in-out;
  z-index: 111;
}
.tourImgsWrapper .slick-next {
  right: 1rem;
}
.tourImgsWrapper .slick-prev {
  left: 1rem;
}
.tourImgsWrapper .slick-prev::before {
  content: "\ea4d";
}
.tourImgsWrapper .slick-next::before {
  content: "\ea50";
}
.tourImgsWrapper .slick-arrow:hover::before {
  color: var(--color-primary);
}
.contentWrapper:not(:first-child, :last-child) {
  border-bottom: 1px solid #8d8d8d;
}
.contentWrapper {
  padding-bottom: 50px;
  margin-bottom: 60px;
}
.tick-details {
  margin: 1rem 0;
}
.tick-details li {
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.75;
  margin: 0.5rem 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.5rem;
}
.tick-details li i {
  font-size: 1.75rem;
}
.tick-details li i.bx-check {
  color: #00dc81;
}
.tick-details li i {
  color: red;
}

.tour-sidebar {
  background: #fff;
  box-shadow: 0 0 15px 5px #00000020;
  border-radius: 0.5rem;
  position: sticky;
  top: 2rem;
}
:is(.tour-sidebar__header, .tour-sidebar__body) {
  padding-inline: 1.75rem !important;
}
.tour-sidebar__header {
  padding: 1.5rem 0;
  border-bottom: 1px solid #8d8d8d;
}
.tour-sidebar__header .price {
  color: var(--color-primary);
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: right;
}
.tour-sidebar__header .price span {
  display: block;
  text-transform: capitalize;
  font-size: 0.85rem;
  color: #777;
  opacity: 0.6;
}
.tour-sidebar__body.tour-sidebar__bodypackage .input-fields {
  padding: 0;
}
.tour-sidebar__body {
  padding: 1.75rem 0;
}
.btnsWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.btnsWrapper .themeBtn {
  width: 100%;
  padding-inline: 0;
}
.tour-sidebar__body .input-fields .title {
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 0.65rem;
}
.tour-sidebar__body .input-fields input {
  width: 100%;
  border: 1px solid var(--color-primary);
  outline: none;
  background: none;
  padding: 1rem 1rem;
  line-height: 1;
  color: #000;
  border-radius: 0.25rem;
  font-size: 0.85rem;
  font-weight: 500;
}
.tour-sidebar__body .input-fields input::-webkit-calendar-picker-indicator {
  filter: invert(26%) sepia(88%) saturate(4063%) hue-rotate(314deg)
    brightness(92%) contrast(93%);
}
.tour-sidebar__body .input-fields input::placeholder {
  color: inherit;
  font: inherit;
  opacity: 0.85;
}
.tour-sidebar__body .input-fields select {
  width: 100%;
  border: 1px solid var(--color-primary);
  outline: none;
  background: none;
  padding: 1rem 1rem;
  line-height: 1;
  color: #000;
  border-radius: 0.25rem;
  font-size: 0.85rem;
  font-weight: 500;
}
.tour-sidebar__body .input-fields select::-webkit-calendar-picker-indicator {
  filter: invert(26%) sepia(88%) saturate(4063%) hue-rotate(314deg)
    brightness(92%) contrast(93%);
}
.tour-sidebar__body .input-fields select::placeholder {
  color: inherit;
  font: inherit;
  opacity: 0.85;
}
.tour-sidebar__body .input-fields {
  padding: 0.75rem 0;
}

.custom-selectbox {
  padding: 0.75rem 0;
  position: relative;
}
.custom-selectbox > .title {
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 0.65rem;
}
.custom-selectbox__active {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  width: 100%;
  border: 1px solid var(--color-primary);
  outline: none;
  background: none;
  padding: 1rem 1rem;
  line-height: 1;
  color: #000;
  border-radius: 0.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  user-select: none;
}
.custom-selectbox__active .current {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.custom-selectbox__active i {
  color: var(--color-primary);
  font-size: 1.5rem;
  transition: all 300ms;
}
.custom-selectbox.active .custom-selectbox__active i {
  transform: rotate(-180deg);
}
.custom-selectbox__options {
  width: 100%;
  background: #fff;
  box-shadow: 0 0 15px 5px #00000020;
  position: absolute;
  left: 0;
  top: 90%;
  z-index: 111;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms;
}
.custom-selectbox__options.open {
  opacity: 1;
  visibility: visible;
}
.custom-selectbox__options::-webkit-scrollbar {
  width: 5px;
}
.custom-selectbox__options::-webkit-scrollbar-track {
  background: rgba(0, 0, 255, 0.122);
  border-radius: 100px;
}
.custom-selectbox__options::-webkit-scrollbar-thumb {
  border-radius: 100px;
  background: var(--color-primary);
  opacity: 0.25;
}
.product-scroll {
  height: 350px;
}
.custom-selectbox__options .option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1rem;
  transition: all 300ms;
  border-left: 4px solid transparent;
  cursor: pointer;
  border-bottom: 1px solid #8d8d8d82;
}
.custom-selectbox__options .option .title {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: capitalize;
  flex: 1;
}
.custom-selectbox__options .option .price {
  color: #333333;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: right;
  flex: 0.5;
}
.custom-selectbox__options .option .price span {
  display: block;
  text-transform: capitalize;
  font-size: 0.75rem;
  color: #777;
  opacity: 0.6;
}

.custom-selectbox__options .option:where(:hover, .selected) {
  background: #cd1b4f0d;
  border-color: var(--color-primary);
  border-bottom-color: transparent;
}

.custom-selectbox__options
  .option:where(:hover, .selected)
  :is(.title, .price) {
  color: var(--color-primary);
}

.custom-selectbox__options .option .adult {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: capitalize;
  flex: 0.85;
}
.custom-selectbox__options .option .adult span {
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.75;
  display: block;
}
.custom-selectbox__options .option .amount {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  flex: 0.85;
}
.custom-selectbox__options .option .counter {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 0.3rem;
}
.custom-selectbox__options .option .counter .actions {
  flex: 1;
  font-size: 0.85rem;
  text-align: center;
  font-weight: 600;
  border: 1px solid #8d8d8d;
  border-radius: 0.25rem;
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
}
.custom-selectbox__options .option .counter .actions.disabled {
  color: #8d8d8d63;
  border-color: #8d8d8d63;
  cursor: not-allowed;
  pointer-events: none;
}
.custom-selectbox__options .option .counter .actions i {
  font-size: 1.1rem;
}
.custom-selectbox__options .option .clear {
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 600;
  text-transform: capitalize;
}
.custom-selectbox__options .option .guestDone {
  font-size: 0.75rem;
  padding: 0.25rem 1rem;
}
.custom-selectbox__active .totalPrice {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  flex: 0.75;
  text-align: center;
}
.custom-selectbox__active .current {
  flex: 0.75;
}
/*Login / Signup*/
.form-item label {
  width: 100%;
  margin: 0 0 5px;
  font-weight: 600;
}

.form-item:not(.form-item--check) :is(input, select, textarea) {
  width: 100%;
  color: #666666;
  border: 1px solid #ddd !important;
  padding: 0 12px;
  height: 40px;
}

.form-item {
  margin: 13px 0;
}

.registration-form {
  padding: 0 30px;
}

/*Login / Signup*/
/* LOGIN FORM START */
.form-group .checkbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
/* MAIN-FORM CSS START */

.main-form .form-group {
  margin-bottom: 20px;
}

.main-form label {
  font-size: 18px;
  font-weight: 600;
  color: #6e6e6e;
  margin-bottom: 10px;
}

.main-form label span {
  color: #6e6e6e;
  font-size: 14px;
}

.main-form input,
.main-form textarea {
  font-size: 15px;
  font-weight: 400;
  color: #6e6e6e;
  padding: 15px 20px;
  background: rgb(255, 255, 255);
  border: 1px solid #ccc;
  border-radius: 100px;
}

.main-form input::placeholder,
.main-form textarea::placeholder {
  color: #6e6e6e;
}

.main-form input:focus,
.main-form textarea:focus {
  box-shadow: none;
  outline: none;
  border: 1px solid #b2b2b2;
}

.remember-wrapper .checkbox input {
  margin-top: -5px;
  margin-right: 5px;
}

.remember-wrapper label,
.remember-wrapper a {
  font-size: 16px;
  font-weight: 500;
  color: #666666;
}

.remember-wrapper a:hover {
  color: #000000;
}
.pc-p-6 {
  padding: 6% 0;
}
.col-center {
  margin: 0 auto;
}
.mc-b-2 {
  margin-bottom: 20px !important;
}
.remember-wrapper label,
.remember-wrapper a {
  font-size: 16px;
  font-weight: 500;
  color: #666666;
}
.primary-btn.primary-bg {
  background: #cd1b4f;
  color: #ffff !important;
}
.primary-btn {
  display: inline-block;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 45px;
  text-align: center;
  z-index: 1;
  border-radius: 50px;
  text-transform: capitalize;
  overflow: hidden;
  transition: all 1s ease-in-out;
  border: 2px solid;
  outline: none;
}
.lg-btn {
  width: 100%;
}
.text-uppercase {
  text-transform: uppercase !important;
}
.main-form .form-group {
  margin-bottom: 20px;
}
.mc-t-3 {
  margin-top: 30px !important;
}
.btn-primary {
  color: #fff;
  background-color: #cd1b4f;
  border-color: #cd1b4f;
}
/* MAIN-FORM CSS END */
/* LOGIN FORM END */
/*Login / Signup*/

/*Payment*/
.account-wrapper .card {
  border: 2px solid #cd1b4f !important;
  margin-bottom: 30px;
}
.account-wrapper .card-header {
  padding: 0;
  background: transparent;
}
.btn-warning {
  color: #fff;
  background-color: #cd1b4f;
  border-color: #cd1b4f;
}
.account-wrapper .card-header button {
  display: flex;
  align-items: center;
  padding: 15px 50px;
  font-size: 14px;
  font-weight: 600;
  color: #231f20;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  width: 100%;
  text-align: left;
  background: transparent;
  border-bottom: 1px solid #d4d4d4;
}
.account-wrapper .card-header button i {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 25px;
  color: #cd1b4f;
  transition: all 0.5s ease-in-out;
}
.account-wrapper .card-header button span {
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  border: 2px solid #cd1b4f;
  border-radius: 50%;
}
.account-wrapper .card-header button span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #cd1b4f;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
}
.account-wrapper .card-header button[aria-expanded="true"] span::before {
  visibility: visible;
  opacity: 1;
}
.account-wrapper .card-header button[aria-expanded="true"] i {
  transform: translateY(-50%) rotate(180deg);
}
.manual-address-wrapper {
  display: none;
}
.password-link {
  font-size: 14px;
  font-weight: 500;
  color: #cd1b4f;
  text-transform: uppercase;
  text-decoration: underline;
}
.password-link:hover {
  color: #231f20;
}
.account-wrapper .password-link {
  margin-left: 20px;
}
.StripeElement {
  background-color: white;
  height: 40px;
  padding: 10px 12px;
  border-radius: 4px;
  border: 1px solid transparent;
  box-shadow: 0 1px 3px 0 #e6ebf1;
  -webkit-transition: box-shadow 150ms ease;
  transition: box-shadow 150ms ease;
}
.StripeElement--focus {
  box-shadow: 0 1px 3px 0 #cfd7df;
}
.StripeElement--invalid {
  border-color: #fa755a;
}
.StripeElement--webkit-autofill {
  background-color: #fefde5 !important;
}
.payment-accepts img {
  width: 100px;
}
.panel-info {
  border-color: #408de4;
}
.panel-info {
  border-color: #bce8f1;
}
.panel {
  margin-bottom: 20px;
  background-color: #fff;
  /*border: 1px solid transparent;*/
  border: 1px solid #d9edf7;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}
.panel-info > .panel-heading {
  color: white;
  background-color: #408de4;
  border-color: #408de4;
}
.panel-info > .panel-heading {
  color: #fff;
  background-color: #cd1b4f;
  border-color: #cd1b4f;
}
.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel-body {
  padding: 15px;
}
input[type="checkbox"],
input[type="radio"] {
  margin: 4px 6px 0;
  line-height: normal;
}
.StripeElement {
  background-color: white;
  height: 40px;
  padding: 10px 12px;
  border-radius: 4px;
  border: 1px solid black;
  box-shadow: 0 1px 3px 0 #8a8a8a;
  -webkit-transition: box-shadow 150ms ease;
  transition: box-shadow 150ms ease;
  width: 100%;
  color: #000;
}
.StripeElement--focus {
  box-shadow: 0 1px 3px 0 #cfd7df;
}
.StripeElement--invalid {
  border-color: #fa755a;
}
.StripeElement--webkit-autofill {
  background-color: #fefde5 !important;
}
.payment-accepts img {
  width: 100px;
}
.panel.panel-info {
  width: 600px;
  display: block;
  margin: 0 auto;
}
.btn-warning:hover {
  color: #212529;
  background-color: #cd1b4f;
  border-color: #cd1b4f;
}
.checkout-section .shipping-section {
  margin: 0;
}
td.checkout-product-image img {
  height: 50px;
  width: 100%;
}
/*Payment*/
.offers-card--package .offers-card__img {
  height: 250px;
}
.offers-card--package {
  padding: 1rem;
}
.offers-card__content.section-content.section-content a.title {
  text-align: center;
  font-size: 24px;
}
.offers-card__content.section-content.section-content span {
  color: #cd1b4f;
  font-size: 20px;
  text-align: center;
}
.text-center .themeBtn {
  display: inline-block;
}
.products-list__single .title.heading {
  font-size: 20px;
  text-align: center;
}
.payment_page .section-content .heading {
  line-height: 1.5;
}

/*-------------For Resposive------------------*/
.sideBar {
  position: fixed;
  overflow-y: auto;
  font-family: "Roboto", sans-serif;
  top: 0px;
  background: #1c1c1c;
  padding: 1rem 0;
  transform: translateX(-100%);
  height: 100%;
  z-index: 1111;
  width: 310px;
  box-shadow: rgba(0, 0, 0, 0.125) 0px 0px 20px 5px;
  transition: all 0.5s ease 0s;
}
.sideBar.show {
  transform: translateX(0px);
}
.sideBar__close {
  position: absolute;
  top: 0px;
  font-size: 1.75rem;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  display: flex;
  right: 0px;
  color: rgb(255, 255, 255) !important;
}
.sideBar__logo {
  width: 150px;
  display: block;
  margin: 2rem auto;
}
.sideBar__logo img {
  width: 100%;
  object-fit: cover;
}
:is(.sideBar__nav > li > a:not(.themeBtn)) {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sideBar__nav {
  margin: 1rem 0 0;
}
.sideBar__nav > li > a {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  gap: 0.5rem;
  width: 100%;
  text-transform: capitalize;
  padding: 0.75rem 2rem;
}
.sideBar__nav > li > a i {
  font-size: 1.25rem;
  pointer-events: none;
}

.sideBar__nav li {
  width: 100%;
  border-bottom: 1px solid #cccccc3b;
}

.sidebar-dropdown.sidebar-dropdown--alt {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  position: static;
  width: 100%;
  background: #fff;
  overflow: hidden;
}

.sidebar-dropdown-toggle {
  position: relative;
}

.sidebar-dropdown__list > li > a {
  color: #000;
  width: 100%;
  font-size: 13px;
}

.sidebar-dropdown.sidebar-dropdown--alt
  .sidebar-dropdown__list
  > li:last-child
  a {
  border-bottom: none;
}
.toggle-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: all 300ms ease;
}
.toggle-wrapper.open {
  grid-template-rows: 1fr;
}
.sidebar-sub-links__heading {
  font-size: 1rem;
  font-weight: 600;
  text-transform: capitalize;
  margin-top: 0.15rem;
  color: var(--color-primary);
}

.sidebar-dropdown__list > li {
  padding: 0.5rem 2rem;
  width: 100%;
  border-bottom: 1px solid #00000042;
  transition: all 300ms;
}

.sidebar-sub-links__list {
  margin: 0.35rem 0 0;
}

.sidebar-sub-links__list li a {
  font-size: 0.85rem;
  font-weight: 400;
  padding: 0.2rem 0;
}
.sidebar-dropdown__list li:not(.sidebar-sub-links):hover {
  background: var(--color-primary);
}

.sidebar-dropdown__list li:not(.sidebar-sub-links):hover a {
  color: #fff;
}
.sidebar-btns-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0.5rem;
  gap: 0.5rem;
}

.sidebar-btns-wrapper .themeBtn {
  font-size: 0.75rem;
  padding: 0.5rem 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.sidebar-btns-wrapper .themeBtn i {
  font-size: 1.2rem;
}

.sidebar-btns-wrapper .themeBtn:last-child {
  background: #fff;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.filters-list__single
  :is(.fieldsWrapper .select2.select2-container.select2-container--default, .search-field) {
  height: 40px;
  color: rgb(0, 0, 0);
  display: block;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgb(255, 255, 255);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: left;
  position: relative;
  width: 100%;
  border-radius: 10px;
  padding-inline: 2rem;
  outline: none !important;
  border: 2px solid var(--color-primary) !important;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__placeholder {
  color: rgb(0, 0, 0) !important;
  margin: 0;
  display: flex;
  align-items: center;
  height: 36px;
}
.filters-content .input-fields:nth-child(1) {
  margin-top: 0;
}

.filters-list__single .select2-container--default .select2-selection--single {
  background: none;
  border: none;
  border-radius: 0px;
}

.select2-container--default
  .select2-results__option--highlighted[aria-selected] {
  background: #053d57;
}
/*html,body{*/
/*    overflow-x:hidden;*/
/*}*/

/*tour Detail*/
.tour-banner {
  color: #fff;
  isolation: isolate;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 60vh;
  padding: 2rem;
  display: flex;
  align-items: flex-end;
}
.tour-banner--overlay::before {
  content: "";
  width: 100%;
  height: 40%;
  background: linear-gradient(360deg, black, transparent);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.tour-banner__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: -2;
}

.tour-banner__content .title {
  font-size: 1.75rem;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 0.25rem;
}

.tour-banner__content .subtitle {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.tour-details__seprator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.tour-details__seprator .line {
  display: block;
  height: 3px;
  background: #000;
  opacity: 0.25;
  border-radius: 100%;
  flex: 0.35;
}

.tour-details__seprator .heading {
  font-size: 1.5rem;
  text-transform: uppercase;
  text-align: center;
}

.tour-details__box {
  background: #fff;
  box-shadow: 0 0 10px 1px #00000020;
}
.detail-box-body {
  padding: 1.5rem 0;
}

.tour-bg {
  background: #f5f5f5;
  padding: 5rem 0;
}
.tour-details__box :last-child {
  margin-bottom: 0;
}
.tour-details__box :first-child {
  margin-top: 0;
}
.tour-details {
  margin-bottom: 1.5rem;
}
.detail-box-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;
  padding: 0.85rem;
  border-bottom: 1px solid #ccc;
  font-size: 1rem;
  font-weight: 500;
  text-transform: capitalize;
}

.detail-box-header i {
  font-size: 1.35rem;
  color: var(--color-primary);
}

:is(.detail-box-header, .detail-box-body) {
  padding-inline: 1rem;
}
.card-hover span {
  color: var(--color-primary);
  font-weight: 700;
  text-align: center;
  display: block;
}

/* Quantity Counter */
.quantity-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-right: 0.5rem;
}
.quantity-counter__btn {
  width: 35px;
  aspect-ratio: 1/1;
  background: none;
  outline: none !important;
  font-size: 1.25rem;
  border: 1px solid #ccc;
  border-radius: 0.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.quantity-counter__btn--quantity {
  appearance: none;
  font-size: 0.85rem;
  font-weight: 600;
}
.quantity-counter__btn--quantity[type="number"] {
  -moz-appearance: textfield;
}
.quantity-counter__btn--quantity[type="number"]::-webkit-inner-spin-button,
.quantity-counter__btn--quantity[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.update_cart {
  font-size: 0.85rem;
  padding: 0.35rem 1.5rem;
  text-transform: capitalize;
  letter-spacing: 1px;
  font-weight: 500;
}

.title.pax_type {
  color: #cd1b4f;
}

/*Acccount*/
.myaccount-sidebar li {
  border: 1px solid var(--color-primary);
}

.myaccount-sidebar li a {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.myaccount-sidebar li.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.myaccount-sidebar li.active a {
  color: rgb(255, 255, 255);
}
.line-bottom {
  padding: 6% 0px;
}

.profileimg label {
  width: 100%;
  text-align: center;
}

.profileimg img {
  display: inline-block;
  overflow: hidden;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  object-fit: cover;
  transition: all 0.5s ease 0s;
  cursor: pointer;
}

.profileimg img:hover {
  box-shadow: var(--color-primary) 0px 0px 10px 2px;
}

.bg-text {
  padding-top: 6%;
}

.signup.myfont {
  padding: 0px 0px 6%;
}

.breadcrumb {
  background: 0px 0px;
}

.portlet-body .table {
  border: 1px solid var(--color-primary) !important;
}

.portlet-body .table-bordered td,
.table-bordered th {
  border: 1px solid var(--color-primary);
}

.portlet-body .table thead th {
  border-bottom: 1px solid var(--color-primary);
}

.portlet-body .table-striped tbody tr:nth-of-type(2n + 1) {
  background-color: rgba(109, 110, 113, 0.18);
}

.portlet-body thead tr {
  background: var(--color-primary);
  color: rgb(255, 255, 255);
}

.portlet-body .table td {
  vertical-align: middle;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
}

.table-view-btn {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
}

.table-view-btn:hover {
  color: rgb(0, 0, 0);
}

.order-modal .modal-body img {
  width: 200px;
}

.order-modal .modal-body .my_td img {
  width: 50px;
}

.order-modal .modal-body h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 15px;
}

.order-modal .modal-body ul li {
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  color: var(--color-primary);
}

.order-modal .modal-header {
  position: relative;
}

.order-modal .modal-header h4 {
  font-size: 25px;
  font-weight: 600;
  line-height: 35px;
  text-transform: capitalize;
  color: var(--color-primary) !important;
}

.order-modal .modal-header button.close {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  font-size: 30px;
  color: var(--color-primary);
  opacity: 1;
  padding: 0px !important;
}

.order-modal .modal-header button.close:hover {
  color: var(--color-primary);
}

.profileimg label {
  width: 100%;
  text-align: center;
}

.profileimg img {
  display: inline-block;
  overflow: hidden;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  object-fit: cover;
  transition: all 0.5s ease 0s;
  cursor: pointer;
}

.profileimg img:hover {
  box-shadow: rgb(251, 176, 64) 0px 0px 10px 2px;
}

.profileimg {
  position: relative;
}

.profileimg .upload-btn-wrapper {
  position: absolute;
  top: 30px;
  left: 0px;
  width: 40%;
  opacity: 0;
}

.btn-info {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: rgb(255, 255, 255) !important;
}

select.form-control .blod_and_move {
  font-weight: 700;
  padding: 5px 7px;
}

#example3 span.dropdown-item.disableditem {
  font-weight: 800;
  margin-left: -10px;
}

.filters-list__single:last-child {
}

.three-btns {
  gap: 7px;
}

.three-btns a {
  font-size: 12px;
}

.agents-sidebar__box .dropdown {
  width: 100%;
  margin: 15px 0px;
  min-width: 100% !important;
}

.agents-sidebar__box .dropdown button {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  background: transparent;
  color: rgb(0, 0, 0);
}

.albums-card .albums-card__img:not(:first-child) {
  display: none;
}

.content-page table tbody td a {
  color: #fff;
  font-weight: 800;
  font-size: 18px;
}

.content-page label a {
  color: red;
  font-weight: 700;
}

p.exeternal_form_link a {
  color: red;
  font-weight: 600;
}

.accountSec .inner_box h4 a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.accountSec .inner_box {
  padding: 0px;
  display: table;
}

.accountSec .inner_box h4 {
  margin: 0px;
  height: 100%;
  width: 100%;
}

.accountSec .inner_box .style_div {
  display: table;
  width: 100%;
  height: 100%;
}
.inner_box {
  margin-bottom: 20px;
}

.inner_box h4 a {
  font-size: 14px;
  line-height: 24px;
}

.inner_box {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-primary);
  border-radius: 10px;
  height: 100px;
  width: 100%;
  transition: all 0.5s ease-in-out 0s;
  margin: 80px 0px;
}

.inner_box h4 a {
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  color: var(--color-primary);
  text-transform: uppercase;
}

.inner_box .box {
  line-height: 0;
}

.inner_box .box i {
  font-size: 22px;
  margin-right: 5px;
  color: var(--color-primary);
  transition: all 0.5s ease-in-out 0s;
}

.inner_box:hover {
  background: var(--color-primary);
}

.inner_box:hover h4 a,
.inner_box:hover .box i {
  color: rgb(255, 255, 255);
}

form#saveForm {
  width: 100%;
}
.content-page span.label.label-sm.label-default {
  font-size: 16px;
  font-weight: 700;
  background: #000;
  padding: 5px;
  display: block;
  text-align: center;
  color: #fff;
}
span.label.label-sm.label-danger {
  font-size: 16px;
  font-weight: 700;
  background: red;
  padding: 5px;
  display: block;
  text-align: center;
  color: #fff;
}
.content-page span.label.label-sm.label-success {
  font-size: 16px;
  font-weight: 700;
  background: green;
  padding: 5px;
  display: block;
  text-align: center;
  color: #fff;
}
.content-page span.label.label-sm.label-info {
  font-size: 16px;
  font-weight: 700;
  background: #9e9e9e;
  padding: 5px;
  display: block;
  text-align: center;
  color: #fff;
}
.modal_guest_info table th,
td {
  text-align: left;
}
/*Acccount*/

/* Newsletter */
.section_newsletter {
  padding: 40px 0px;
}

.section_newsletter .themebtn {
  padding: 7px 27px;
  background: var(--color-primary);
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  z-index: 99;
  transition: 500ms all;
}

.section_newsletter .themebtn:hover {
  color: #fff;
  border-color: #be1e1e;
}

.section_newsletter .themebtn::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
  -webkit-animation: shine 0.75s;
  animation: shine 2s linear infinite;
}

.section_newsletter .themebtn::after {
  position: absolute;
  content: "";
  width: 0;
  right: 0;
  height: 100%;
  background-color: #be1e1e;
  top: 0;
  transition: 400ms ease;
  z-index: -1;
}

.section_newsletter .themebtn:hover::after {
  width: 100%;
  left: 0;
}

.section_newsletter .themebtn:hover span {
  animation: tada 1s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.section_newsletter .news_main {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.section_newsletter .news_img {
  width: 70px;
  height: 70px;
  overflow: hidden;
}

.section_newsletter .news_img img {
  width: 100%;
  /*height: 100%;*/
  /*object-fit: cover;*/
}

.section_newsletter .news_cont p {
  font-size: 14px;
  margin: 0;
  text-transform: capitalize;
}

.section_newsletter .news_cont h3 {
  font-size: 33px;
  text-transform: capitalize;
  font-weight: 300;
  font-family: var(--f1);
  margin-bottom: 2px;
}

.section_newsletter .news_cont h3 span {
  font-weight: 600;
  font-family: var(--f1);
}

.section_newsletter .newsletter_form form input {
  width: 100%;
  height: 40px;
  padding: 10px;
  border: none;
  box-shadow: 0px 1px 0px 0px #cccccc;
  transition: 500ms all;
  outline: 0;
}

.section_newsletter .newsletter_form form input::placeholder {
  font-size: 14px;
  color: #a4a4a4;
  font-weight: 400;
  text-transform: capitalize;
}

.section_newsletter .form_btn {
  text-align: center;
}

.section_newsletter .newsletter_form form input:focus {
  box-shadow: 0px 1px 0px 0px #ca0000;
}

/* Newsletter */

.about__content span {
  font-family: var(--heading-font) !important;
  font-weight: 400;
  font-size: 16px;
}

.select_bx i {
  color: #000;
  margin-left: -194px;
  font-size: 20px;
}
.select_bx {
  background-color: #fff;
  padding: 8px 209px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 16px;
  /* justify-content: space-between; */
}
.select_bx input {
  border: none;
  color: #000;
  outline: none;
}
.dubai-Tours-card {
  margin: 0.75rem 0;
}

.dubai-Tours-card .title h4 {
  margin-top: 12px;
  color: #333 !important;
}
.Dubai-Tours__img {
  width: 100px;
  height: 100px;
}
.Dubai-Tours__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 156px;
}
.title h4 {
  font-size: 14px;
  font-weight: 500;
  margin-top: 1rem;
  font-family: "GT Eesti Pro Display", Arial, sans-serif !important;
}

.Dubai-Tours.text-center {
  padding: 2rem 4rem;
}

.section-content h3 {
  /* font-size: 30px !important; */
  /* font-weight: 800 !important; */
}
.BestTours-content h4 {
  font-size: 16px;
  font-weight: 700;
  font-family: "GT Eesti Pro Display", Arial, sans-serif !important;
}
.BestTours-content p {
  font-size: 14px;
  font-weight: 400;
  color: #707070;
  line-height: 20px;
  margin-bottom: 5px;
  font-family: "GT Eesti Pro Display", Arial, sans-serif !important;
}
.BestTours-details {
  padding: 4rem;
  background-color: #f1f1f1f1;
  /* font-family: 'GT Eesti Display Trial', sans-serif; */
  /* font-family: 'GT Eesti Text Trial', sans-serif; */
  /* font-family: 'GT Eesti Pro Display', Arial, sans-serif !important; */
}
.BestTours-content {
  background-color: #fff;
  padding: 0.85rem;
  border-radius: 15px;
}
.TopFilterbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  flex-wrap: wrap;
}
.things-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin-left: 12px;
  flex-wrap: wrap;
}
.totalthings h4 {
  font-size: 16px;
  margin-bottom: 0;
  font-weight: 600;
  font-family: "GT Eesti Pro Display", Arial, sans-serif !important;
}
a.totalthings-btn {
  display: flex;
  padding: 0 15px;
  border-radius: 20px;
  height: 30px;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  border: 1px solid #707070;
  background-color: #fff;
  white-space: nowrap;
}

.totalthings-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.BestTours-cards {
  /* padding-top: 1rem; */
}
.card-heading h4 {
  font-size: 15px;
  margin-top: 1rem;
  margin-top: 0;
  font-weight: 600;
  margin-bottom: 2rem;
}
.srb h4 {
  font-size: 14px;
  margin-bottom: 0;
  font-weight: 500;
  font-family: "GT Eesti Pro Display", Arial, sans-serif !important;
}
.hotets-listing__main {
  margin-top: 3rem;
}
.filter-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex-wrap: wrap;
}
.filter-grid select {
  /* padding: 0.5rem; */
  border-radius: 9px;
  font-size: 0.85rem;
  height: 30px;
  width: 100%;
  padding: 0 10px;
  padding-right: 35px;
  outline: none;
  font-family: "GT Eesti Pro Display", Arial, sans-serif !important;
}
.BestTours-card {
  background-color: #fff;
}

.card-content {
  padding: 1rem;
}

.review-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* font-size: 12px; */
}

.reviewtext {
  font-size: 10px;
  font-weight: 500;
  color: #0009;
  font-family: "GT Eesti Pro Display", Arial, sans-serif !important;
}

.origionalprice {
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: "GT Eesti Pro Display", Arial, sans-serif !important;
}

.strikepr.text-strike-price {
  font-size: 11px;
  /* padding-right: 25px; */
  margin-left: 29px;
  text-decoration: line-through !important;
  display: flex;
  align-items: center;
  justify-content: end;
  color: #0009;
  font-family: "GT Eesti Pro Display", Arial, sans-serif !important;
}

.BestTours-card {
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}
.Explore-More {
  padding: 2rem 4rem;
}

.Explore-heading h4 {
  font-size: 21px;
  font-weight: 600;
}

.Explore-More-details ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 11px;
  align-items: center;
  margin-bottom: 12px;
}
li.thingsInDubai {
  font-size: 15px;
  font-weight: 600;
}

.Explore-heading {
  margin-bottom: 1rem;
}
.Explore-More-details ul li a {
  font-size: 11px;
  font-size: 12px;
  padding-right: 15px;
  border-right: 1px solid #ddd;
}
.page-search_form {
  padding: 0.3rem 0.3rem 0.3rem 1rem;
  background-color: #fff;
  border: 1px solid #ccc;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 100px;
}

.page-title__content input {
  outline: none;
  border: none;
  font-size: 15px;
  font-weight: 500;
}

.page-search {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1rem 0;
  width: 60%;
}
form.page-search_form input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 0.85em;
  opacity: 0.9;
  padding-right: 0.5rem;
}
form.page-search_form button {
  font-size: 18px;
  font-weight: 500;
  border: none;
  background: var(--color-primary);
  outline: none;
  color: #fff;
  padding: 5px 1.25rem;
  border-radius: 100px;
}
.filters {
  margin: 3rem 0 0 !important;
}

select.js-example-data-ajax {
  outline: none;
}

span.select2-selection__placeholder {
  outline: none;
}

span#select2-frdc-container {
  outline: none;
}

.fieldsWrapper span.select2-selection.select2-selection--single {
  outline: none;
}

.fieldsWrapper span.select2.select2-container.select2-container--default {
  position: relative;
  padding-left: 3.5rem !important;
}

.fieldsWrapper span.select2.select2-container.select2-container--default::before {
  content: "\ebf7";
  position: absolute;
  background: var(--color-primary);
  border-radius: 100%;
  top: 50%;
  transform: translateY(-50%);
  left: 0.6rem;
  color: #fff;
  font-size: 1.35rem;
  font-family: boxicons !important;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 0.25rem 1.25rem; */
  width: 43px;
  aspect-ratio: 1/1;
}
.BestTours-card__heading H4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 28px;
  font-family: "GT Eesti Pro Display", Arial, sans-serif !important;
  height: 25px;
}

.BestTours-card__content {
  padding: 1rem;
  font-family: "GT Eesti Pro Display", Arial, sans-serif !important;
}

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

.BestTours-card_img {
  width: 100%;
  /*height: 180px;*/
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}

.yellow-star {
  color: #eda128 !important;
}

.fivestar-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-rating i {
  font-size: 12px;
  color: #f36911 !important;
}
.review-star {
  line-height: 18px;
}
.tour-count {
  line-height: 18px;
}

.slick-prev::before,
.slick-next::before {
  color: #000;
  opacity: 1;
  font-size: 1.75rem;
  font-family: boxicons !important;
  transition: all 300ms ease-in-out;
}

.slick-arrow {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  background: none;
  transition: all 300ms ease-in-out;
  z-index: 1;
  opacity: 1 !important;
  /* margin: 0 15px; */
}

.slick-arrow::before {
  color: #000;
  font-size: 1.5rem;
  position: absolute;
  background: #fff;
  border-radius: 100%;
  width: 31px;
  height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1 !important;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
  left: 8px;
  /* top: -5px; */
}

.slick-next {
  right: 0rem;
}

.slick-prev {
  left: -1.25rem;
}

.slick-next::before {
  content: "\ea50";
}

.slick-prev::before {
  content: "\ea4d";
}

.slick-arrow:hover::before {
  color: #777777;
}
/* .recmndiv  */
.recmndiv {
  position: absolute;
  top: 14px;
  left: 25px;
  display: flex;
  background-color: #f36911;
  color: #fff;
  border-radius: 20px;
  column-gap: 10px;
  align-items: center;
  font-size: 12px;
}

.recmndiv i {
  display: flex;
  height: 33px;
  width: 33px;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -5px;
  background-color: #f36911;
  border-radius: 50px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
}

.recmndiv span {
  display: inline-flex;
  align-items: center;
  padding-right: 10px;
  height: 25px;
  padding-left: 30px;
}

.recmndiv i::before {
  content: "";
  display: flex;
  height: 27px;
  width: 27px;
  background-color: #fff;
  border-radius: 30px;
}

.recmndiv i::after {
  content: "";
  display: flex;
  width: 7px;
  height: 15px;
  border: solid #f36911;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  position: absolute;
  margin-top: -2px;
}
.hidden {
  display: none;
}
.more-text {
  font-size: 14px;
  font-weight: 400;
  color: #707070;
  line-height: 20px;
  margin-bottom: 5px;
}

#read-more__button {
  background-color: #fff;
  color: #ff4500;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 13px;
  outline: none;
}
.card-rating {
  display: flex;
  align-items: center;
}

.BestTours-card__content .themeBtn {
  font-size: 0.75rem;
  padding: 0.35rem 1.25rem;
  margin-top: 1rem;
  width: 100%;
}

/* .page-search.visa-search */
.page-search.visa-search {
  width: 100%;
  padding-top: 3rem;
}
/* .visa-cards */
.visa-cards {
  padding: 1rem 0;
  position: relative;
  margin: 4rem 0 3rem;
}
.visa-cards a:hover {
  color: var(--color-primary);
}
.visa-in {
  border-radius: 3px;
  background-color: #f6f6f6;
  box-shadow: 0 0 7px 2px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 7px 2px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 7px 2px rgba(0, 0, 0, 0.3);
  float: left;
  width: 100%;
  margin-bottom: 4rem;
}
.visa-in span.hd {
  display: block;
  text-align: center;
  text-transform: uppercase;
  font-size: 17px;
  margin-top: 85px;
  border-bottom: 1px solid #cfcfcf;
  width: 94%;
  margin-left: 3%;
  font-weight: 700;
  padding-bottom: 10px;
}
.visa-in p {
  text-align: center;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.visa-in p span {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  padding-top: 7px;
}
.mrg-top-visa {
  margin: 0.5rem 0 2.5rem;
  position: relative;
  width: 100%;
  padding: 0 0.75rem;
}
.top-visa__img {
  margin: 0 auto;
  position: absolute;
  top: -25px;
  left: 15%;
  border-radius: 10px;
  width: 70%;
  height: 90px;
  overflow: hidden;
}
.top-visa__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* .visa-details */
.visa-details .detail-box-header {
  border: none !important;
}
.visa-details .tour-details__box {
  box-shadow: none;
}
.visa-details .detail-box-body {
  padding: 0;
}
.stamp-visa h3 {
  font-size: 14px;
  color: #fff;
  text-align: center;
  padding: 5px 10px;
  font-weight: 700;
  margin-bottom: 5px;
  height: 57px;
  background-color: var(--color-primary);
  margin-top: 0;
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

div#visa-pricing {
  margin-top: 20px !important;
}

p.txtcolor-default {
  font-size: 14px !important;
}

.txtcolor-default i {
  font-size: 17px;
  display: inline;
  margin-right: 5px;
}
.stamp-visa {
  border-radius: 10px;
  background-color: #ececec;
  width: 100%;
  padding-bottom: 1rem;
  margin: 1rem 0;
}
.visa-pricing__content {
  height: 205px !important;
}

.visa-pricing__content ul {
  padding: revert;
}

.visa-pricing__content ul li {
  list-style-type: disc;
}

.rate-responsive.themeBtn {
  width: 100%;
}

.visa-heading {
  color: var(--color-primary);
  font-size: 1.75rem;
  font-weight: 500;
}
/* accordian */
.accordian-header,
.accordian-2-header {
  cursor: pointer;
  user-select: none;
}

.accordian-content,
.accordian-2-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: all 300ms ease-in-out;
}

.accordian-content .hidden-wrapper,
.accordian-2-content .hidden-wrapper {
  overflow: hidden;
  margin: 0;
}

.accordian.active .accordian-content,
.accordian-2.active .accordian-2-content {
  grid-template-rows: 1fr;
}

/* Default icon is plus */
.accordian .faq-icon i {
  content: "\eb8b";
  /* Unicode for plus icon */
  font-family: "boxicons" !important;
}

/* Active icon is minus */
.accordian.active .faq-icon i {
  content: "\ebc0";
  /* Unicode for minus icon */
  font-family: "boxicons" !important;
}

/* accordian */

/* .visa-faqs  */
.visa-faqs {
  padding: 1rem 0;
}
.faqs-single__header.accordian-header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 1rem 0;
  justify-content: space-between;
}

.faqs-content__title {
  font-size: 17px;
  font-weight: 500;
}
.faqs-content__title:hover {
  color: #9b1039;
}

.faq-icon i {
  font-size: 20px;
  color: var(--color-primary);
}

.hidden-wrapper.faqs-content__pra {
  font-size: 15px;
  /* padding-bottom: 1.5rem; */
  margin-left: 1rem;
}
.faqs-box {
  border-bottom: 1px dashed #8080807d;
}
.visa-review__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.visaDetail-review.themeBtn {
  padding: 0.6rem 1rem;
  font-size: 0.75rem;
}
.visa-request__heading {
  background-color: #d7d7d7;
  border-bottom: 5px solid #b7b7b7;
  padding: 10px 10px 7px;
  font-family: "Open Sans", sans-serif !important;
  float: left;
  width: 100%;
  font-size: 22px;
  text-align: center;
  font-weight: 600;
  color: var(--color-primary);
}

.visa-request {
  padding: 3rem 0 0;
}

.visa-enquiry__form {
  background-color: #ebebeb;
  padding: 10px;
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
.visa-enquiry {
  /* margin-left: 3rem; */
  position: sticky;
  top: 28px;
  overflow-y: auto;
}
.visa-request .form-control:not(.form-control--area, .file-input) {
  padding: 0 13px !important;
  height: 43px;
  margin-bottom: 8px !important;
  border-radius: 3px;
  background: #fff;
  font-size: 0.85rem;
  border-radius: 0.25rem;
  box-shadow: none !important;
  outline: none;
  border: 1px solid #ccccccb3;
}

a#visa-request__btn {
  width: 100%;
}
textarea#txtMessage {
  resize: none;
  height: 90px;
}
a#visa-request__btn:hover {
  color: var(--color-primary);
}

.visa-contents {
  margin: 3rem 0;
}

button.delete-button {
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 0.35rem;
  font-size: 0.85rem;
  align-self: flex-start;
  width: 30px;
  outline: none;
  aspect-ratio: 1/1;
}

.file-item {
  display: flex;
  justify-content: space-between;
  margin: 0.75rem 0;
  align-items: center;
}

.file-item > span {
  font-size: 0.75rem;
  width: 70%;
  word-wrap: break-word;
}

.file-input.file-input {
  background: #fff;
  width: 100%;
  padding: 0.75rem;
  font-size: 0.85rem;
  cursor: pointer;
}

div#fileList {
  margin: 1rem 0 1.5rem;
}
.visa-enquiry__form .themeBtn {
  width: 100%;
  margin-bottom: 0.55rem;
}

.visa-enquiry__form label {
  font-size: 14px;
  font-weight: 500;
  color: #495057;
}
.btn-whatsapp-btn {
  position: fixed;
  color: #fff;
  background: #28a744;
  padding: 13px 13px;
  border-radius: 104px;
  bottom: 21px;
  left: 10px;
  font-size: 35px;
  line-height: 0;
  z-index: 10000;
}

.custom-dropdown {
  position: relative;
}
.custom-dropdown.open .options-wrapper {
  grid-template-rows: 1fr;
}
.custom-dropdown .options-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  position: absolute;
  width: 100%;
  left: 0;
  z-index: 100;
  top: 100%;
  z-index: 100;
}
.custom-dropdown.open .custom-dropdown__options.scroll {
  height: 156px;
}
.custom-dropdown__options {
  width: 100%;
  background: #fff;
  margin-left: auto;
  overflow-x: hidden;
  box-shadow: 0 0 10px 1px #00000020;
}
.custom-dropdown__options::-webkit-scrollbar {
  width: 7px;
}
.custom-dropdown__options::-webkit-scrollbar-track {
  border-radius: 100px;
  background: #f5f5f5;
}
.custom-dropdown__options::-webkit-scrollbar-thumb {
  border-radius: 100px;
  background: var(--color-primary);
}

.custom-dropdown__options li:not(:last-child) {
  border-bottom: 1px solid #ccc;
}
.custom-dropdown__options li {
  padding: 10px 15px;
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #222;
  text-transform: capitalize;
  transition: all 300ms;
  cursor: pointer;
}
.custom-dropdown__options li:where(:hover, .active) {
  background: var(--color-primary);
  color: #fff !important;
}
.icon-wrapper input {
  cursor: pointer;
}

.icon-wrapper {
  position: relative;
}

.icon-wrapper .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-size: 1.28rem;
}

/* visaSection-bar  */

.visaSection-bar {
  background-color: #4a4a4a;
  /* padding: 10px; */
  text-align: center;
  display: flex;
  justify-content: space-around;
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  z-index: 14;
}
.visaSection-bar .bar-item {
  padding: 14px 12px;
  background-color: #4a4a4a;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  text-transform: capitalize;
  border-right: 1px solid #828282;
}

.visaSection-bar .bar-item:hover {
  background-color: white;
  color: #4a4a4a;
}

.visaSection-bar .active {
  background-color: var(--color-primary);
}

.visaSection-bar .active:hover {
  background-color: white;
  color: var(--color-primary);
}
.visaSection-bar .bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
}
/* visaSection-bar  */
/* visa-review  */
.visa-review {
  padding: 1rem 0;
}

.visa-review__btn {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  border: 1px solid var(--color-primary);
  padding: 5px 10px;
  border-radius: 5px;
  color: var(--color-primary);
  font-weight: 700;
  margin-top: 5px;
  cursor: pointer;
}

.visa-review__btn .addrevbtn {
  color: var(--color-primary);
}

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

.visa-review__btn i {
  font-size: 16px;
  font-weight: 800;
}

.visa-review__form {
  width: 100%;
  padding: 1rem 0 0;
  border-radius: 5px;
}

.visa-review__form .form-group {
  margin-bottom: 15px;
}

.visa-review__form .form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 400;
  font-size: 14px;
}

.visa-review__form .form-group input,
.visa-review__form .form-group textarea,
.visa-review__form .form-group select {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 2px;
  outline: none;
}

.visa-review__form .form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.visa-review__form .form-group select {
  width: 100%;
}

.visa-review__form .form-group .themeBtn {
  width: 100%;
}
.visa-review .review-closeBtn {
  font-size: 24px;
  color: var(--color-primary);
  font-weight: 600;
  cursor: pointer;
  float: right;
}
/* visa-review  */
/* visa-searchBar */
.visa-searchBar {
  display: flex;
  align-items: center;
  border: 2px solid #ccc;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border-radius: 0 40px 40px 0;
}

.visa-searchBar .search-label {
  background-color: #f5f5f5;
  padding: 11px 20px;
  border-right: 2px solid #ccc;
  font-weight: 700;
  color: #6c6a6a;
  font-size: 16px;
}

.visa-searchBar .search-input {
  flex: 1;
  padding: 11px;
  border: none;
  outline: none;
}

.visa-searchBar .search-button {
  background-color: var(--color-primary);
  color: white;
  border: none;
  padding: 11px 30px;
  cursor: pointer;
  font-weight: 600;
  border-radius: 0 40px 40px 0;
  font-size: 16px;
  outline: none;
}

.visa-searchBar.search-button:hover {
  background-color: #e04e4e;
}
/* visa-searchBar */

/* visa-whyUs */
.visa-whyUs {
  padding: 1rem 0 3rem;
}

.visa-whyUs__card {
  margin: 15px 0;
  box-shadow: 0 0 10px 0 rgba(39, 39, 39, 0.1);
  padding: 10px;
  background-color: #fff;
  height: 233px;
}
.visa-whyUs__card:hover {
  box-shadow: 0 0 12px 3px rgba(39, 39, 39, 0.1);
}

.visa-whyUs__card .card-img {
  text-align: center;
}

.visa-whyUs__card .title {
  font-size: 15px;
  font-weight: 600;
  margin: 11px 0;
  text-align: center;
}

.visa-whyUs__card p {
  font-size: 15px;
  text-align: center;
}

.visa-cards.similar-visa .heading {
  margin-bottom: 4rem;
}

.visa-cards.similar-visa {
  margin-bottom: 1rem;
}
.visa-details {
  padding-bottom: 0.85rem;
}

/*new checkout*/
.details-box {
  background: #fff;
  box-shadow: 0 0 15px 5px #0000000a;
  border-radius: 0.5rem;
}

.details-box__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.15rem 1.15rem 0;
}

.details-box__header i {
  font-size: 1.75rem;
  color: var(--color-primary);
}

.details-box__header .heading {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: capitalize;
}

.details-box__body {
  padding: 1rem 0.75rem 0.5rem;
}

.field :is(input, select, textarea) {
  width: 100%;
  padding: 0.75rem 0.85rem;
  background: #f6f5f5;
  border: none;
  outline: none;
  font-size: 0.9rem;
  border-radius: 0.35rem;
}

.field {
  padding: 0.5rem;
}

.iti__selected-flag * {
  font-size: 0.85rem !important;
}

.iti__selected-flag {
  background: #f6f5f5 !important;
}
.details-box:not(:last-child) {
  margin-bottom: 1.45rem;
}

.field .title {
  font-size: 1.05rem;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 0.5rem;
}

.payment-option {
  width: 100%;
  position: relative;
}

.payment-option:not(:last-child) {
  margin-bottom: 1.25rem;
}

.payment-option__box {
  width: 100%;
  padding: 1.15rem 1.35rem;
  border: 2px solid transparent;
  border-radius: 0.65rem;
  height: 100%;
  transition: all 600ms;
  cursor: pointer;
  margin-bottom: 0;
}
.payment-option__input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: none;
  margin: 0 !important;
  cursor: pointer;
}

.payment-option__box .title-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.payment-option__box .title {
  font-size: 1rem;
  font-weight: 600;
}

.payment-option__box .content {
  padding: 0 2.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.65;
}

.payment-option__box .radio {
  width: 22px;
  aspect-ratio: 1/1;
  border: 1px solid var(--color-primary);
  border-radius: 100%;
  position: relative;
  overflow: hidden;
}

.payment-option__box .radio::after {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  position: absolute;
  inset: 0;
  scale: 0;
  border-radius: 100%;
  transition: all 300ms;
}

.payment-option__input:checked + .payment-option__box .radio::after {
  scale: 0.7;
}
.details-box__body.details-box__body--pay {
  padding: 1.5rem 1.25rem;
}
.payment-option__input:checked + .payment-option__box {
  border-color: var(--color-primary);
}

.checkout-details {
  background: #fff;
  box-shadow: 0 0 15px 5px #0000000d;
  border-radius: 0.5rem;
  margin-bottom: 1.25rem;
}

.checkout-details__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  border-bottom: 2px solid #d9d9d970;
  cursor: pointer;
  justify-content: space-between;
}

.checkout-details__header .heading {
  font-size: 17px;
  font-weight: 600;
  text-transform: capitalize;
}

.checkout-details__header i {
  font-size: 1.45rem;
  color: var(--color-primary);
}

.checkout-details__header .up-arrow {
  font-size: 24px;
  color: #000;
}

.checkout-details .checkout-details__optional .sub-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #37393f;
}

.checkout-details .sub-total.refund-heading {
  color: var(--color-primary);
}

.checkout-details .checkout-details__optional .total {
  font-weight: 700;
  color: #000;
  padding: 0;
}

.checkout-details__header.active .bx-chevron-up:before {
  content: "\ea4a"; /* The desired icon code */
}
.optional-wrapper-padding {
  padding: 24px 19px 19px 19px;
}

.optional-wrapper {
  overflow: hidden;
}

.checkout-details__optional.open {
  grid-template-rows: 1fr;
}

.checkout-details.open .checkout-details__optional {
  grid-template-rows: 1fr;
}
.checkout-details__optional {
  display: grid;
  grid-template-rows: 0fr;
  transition: 300ms all;
}
.checkout-details.open .up-arrow {
  transform: rotate(180deg);
}
.checkout-details__wapper {
  /* padding: .65rem 0; */
}
.checkout-details__header .header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.sub-total.total.all-total {
  font-size: 20px;
}
/*new checkout*/

/*breadcrumb*/
ul.bread {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  line-height: 1;
  overflow-x: auto;
  overflow-y: hidden;
}

.bread-item {
  font-size: 0.95rem;
  font-weight: 500;
  width: max-content;
}

.bread-item a i {
  font-size: 1.15rem;
  color: var(--color-primary);
  margin-bottom: 0.2rem;
}

.bread-item a {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 0.45rem;
}

.bread-item > i {
  font-size: 1.1rem;
  opacity: 0.5;
}

.breadcrumb-wrapper {
  padding: 1.35rem 0 1.15rem;
}

.bread-item a:hover {
  color: var(--color-primary);
}
.breadcrumb-wrapper.breadcrumb-wrapper--bg {
  background: #f5f5f5;
}
.breadcrumb-wrapper.breadcrumb-wrapper--bg .bread li.bread-item a {
  color: #000000;
}

.breadcrumb-wrapper.breadcrumb-wrapper--bg .bread li.bread-item {
  color: #5a5555;
}
/*breadcrumb*/

/*visa-review__details*/
.review-details {
  padding: 1rem 0;
}

.review-details__content {
  padding: 1.35rem 0;
}

.review-details__content .name {
  color: #3b444f;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.review-details__content .dateTime {
  color: #9fa9b8;
  font-size: 0.875rem;
  font-weight: 400;
}

.review-details__rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0.65rem 0;
}

.review-details__rating .rating {
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 0.188rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.review-details__rating span {
  font-size: 16px;
  font-weight: 600;
  font-style: italic;
}

.review-details__content .comment {
  color: #77838f;
  line-height: 1.6;
  font-size: 16px;
}

/*cart*/
.cart-section {
  padding: 5rem 0;
}
.cart-coupon {
  display: flex;
  align-items: center;
  padding: 8px 0 11px;
}

.cart-coupon form {
  display: flex;
  width: 100%;
  margin: 10px 0 0;
  background: #fff;
}

.coupon-input {
  flex: 1;
  padding: 8px;
  border: 2px solid #ccc;
  border-right: none;
  border-radius: 2px 0 0 2px;
  font-size: 14px;
  outline: none;
}

.apply-btn {
  padding: 10px 20px;
  background-color: var(--color-primary);
  border: none;
  color: white;
  font-size: 14px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  outline: none;
  font-weight: 500;
}

.coupon-input:focus {
  border-color: #888;
}
.cart-table {
  margin-bottom: 2rem;
  width: 100%;
  overflow-y: auto;
}

.cart-table .table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table .table th,
.table td {
  padding: 19px 0;
  text-align: left;
  vertical-align: middle;
}

.cart-table .table th {
  font-weight: bold;
  padding: 0;
}

.cart-table .activity {
  display: flex;
  align-items: center;
  width: 100%;
}

.cart-table .activity-img {
  width: 100px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 18px;
}
.cart-table .activity-details .activity-smtxt {
  margin-bottom: 2px;
  font-weight: 600;
  font-size: 13px;
}
.cart-table .activity-details .activity-smtxt span {
  font-weight: normal;
}
.cart-table .activity-details small {
  display: block;
  color: #555;
}

.cart-table .price {
  font-size: 16px;
  font-weight: bold;
}

.cart-table .action button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  background: var(--color-primary);
  outline: none;
  width: 27px;
  aspect-ratio: 1/1;
  color: #fff;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.activity-smtxt.mb-1.pink {
  color: #cd1b4f;
}
a.removeproduct.delete-btn {
  color: #fff;
  background: #cd1b4f;
  padding: 2px;
  border-radius: 20px;
}
.cart-table .table thead th,
.table td {
  border: none;
}
.cart-table tfoot td {
  font-weight: bold;
  padding: 10px;
}

.cart-table tfoot td strong {
  font-size: 16px;
}

.action-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.action-icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cart-table tbody > tr {
  border-bottom: 2px solid #ddd;
}
.cart-table tbody > tr {
  border-bottom: 2px solid #dddddd80;
}

/* new login  */
.login-tabs {
  border: none;
  width: 100%;
  flex-wrap: nowrap;
}

.login-tabs .nav-link {
  border: none;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  color: #495057;
}

.logIn {
  padding: 5rem 0;
}

.login-form {
  background: #ffff;
  box-shadow: 0 0 20px 0px #0000000d;
  border-radius: 0.5rem;
}

.login-form .nav-tabs .nav-link.active {
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.login-form__content .heading {
  font-size: 13px;
  font-weight: 600;
  margin: 0.25rem 0 1.75rem;
  line-height: 1.65;
}
.signIn-options {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px 0;
  margin: 20px 0;
}

.signIn-options .signin-btns {
  font-size: 14px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 2px;
  border: 1px solid #bdb9b9;
  border-radius: 7px;
  font-weight: 600;
  color: #000000b8;
}

.signIn-options .signin-btns i {
  font-size: 19px;
}
.signIn-withEmail {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0;
}

.signIn-withEmail span {
  font-size: 14px;
  font-weight: 500;
  width: 85%;
  text-align: center;
  opacity: 0.75;
}
.login-form .inputField :is(input, select) {
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  background: #f6f5f5;
  color: #000;
  border: none;
  border-radius: 7px;
  outline: none;
  padding: 0.85rem 1.5rem;
  padding-right: 3rem;
}

.inputField {
  position: relative;
  margin-bottom: 0.85rem;
}

.login-form .inputField .icon {
  position: absolute;
  right: 21px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  font-size: 1.4rem;
  color: var(--color-primary);
}

.login-form .inputField .showPassword {
  cursor: pointer;
}
.password-remember {
  font-size: 14px;
  font-weight: 500;
  color: #5a5a5a;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: 0.35rem;
  line-height: 1;
  width: fit-content;
}
.remember-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0.75rem 0 1.1rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.login-form__content .forget-password {
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 500;
}
.login-form__content .signUp-now {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1.75rem;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 2px solid #00000014;
}

.dash-line {
  height: 3px;
  width: 100%;
  background: #00000014;
  border-radius: 100%;
}

.password-remember label {
  user-select: none;
  margin-bottom: 0;
  margin-top: 0.17rem;
  cursor: pointer;
}

.login-form .nav-tabs .nav-link {
  width: 100%;
  border-bottom: 3px solid #cccccc73;
  padding: 1.35rem 0;
  font-size: 0.9rem;
  transition: all 300ms;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.login-form__content {
  padding: 1.5rem 2rem;
}

.password-remember input {
  margin: 0 !important;
  scale: 1.2;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.login-form__content .signUp-now .title {
  opacity: 0.7;
  font-weight: 500;
}

.signIn-options .signin-btns img {
  width: 17px;
}
.login-form__content.form-booking .heading {
  text-align: center;
}
.signIn-options .signin-btns:hover {
  background: #cccccc17;
}
/* new login  */
.cart-table .quantity-counter {
  margin: 1rem 0;
}

a.wp-btn.themeBtn {
  background-color: #28a744;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  line-height: 1;
}

a.wp-btn.themeBtn i {
  font-size: 22px;
}

a.wp-btn:hover {
  background: white;
}
a.wp-btn {
  margin-top: 1rem;
}
.row.no-gutters .offers-card {
  margin-inline: 0.65rem;
}

/* Hotels index */
.hotel-search__btns span.select2.select2-container {
    border: none !important;
}

@media (max-width: 768px) {
.hotel-search__btns span.select2.select2-container.select2-container--default {
    position: static;
    transform: none;
}
}

.hotel-search__btns span.select2.select2-container.select2-container--default::before {
    display: none;
}

.hotel-search__btns span.select2.select2-container {
    padding: 0 !important;
}

.hotel-search__btns .select2-container--default .select2-selection--single .select2-selection__placeholder {
    height: auto !important;
}


.hotel-search__btns .select2-container .select2-selection--single .select2-selection__rendered {
    padding: 0;
}
.hotels-banner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  padding: 140px 0 50px;
  color: #313131;
  z-index: 100;
}

.hotels-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    270deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0) 75%
  );
  background-size: cover;
  background-position: center;
}

.hotels-banner__content {
  color: #fff;
}

.hotels-banner__content h2 {
  font-size: 4rem;
  font-weight: bold;
  margin: 0;
}

.hotels-banner__content h3 {
  margin: 0;
  font-size: 1.55rem;
  text-transform: capitalize;
}

.hotels {
  margin: 4rem 0;
  position: relative;
  z-index: 9;
}

.hotels-card {
  width: 100%;
  height: 392px;
  position: relative;
  overflow: hidden;
  border-bottom-right-radius: 48px;
  padding: 2.75rem 2rem;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.hotels-card--lg {
  border-bottom-right-radius: 112px;
  height: 550px;
  width: 100%;
  margin: auto;
  width: 97%;
}
.hotels-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotels-card__img {
  height: 100%;
  width: 100%;
  position: absolute;
  inset: 0;
}

.hotels-card__content {
  position: absolute;
  text-align: center;
  z-index: 5;
  width: 100%;
}
.hotels-card__content .title {
  font-size: 2.35rem;
  color: #fff;
  font-weight: 800;
  padding-bottom: 12px;
  text-transform: uppercase;
}

.themeBtn-outline {
  background: transparent;
  font-size: 18px;
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 4px 17px;
  font-weight: 600;
  color: #fff;
}
.themeBtn-outline:hover {
  color: #fff;
}
p.hotels-aboutUs__pra {
  font-size: 19px;
  line-height: 1.25;
}

.hotels-aboutUs {
  margin: 5rem 0;
}
.readMore-btn {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-primary);
  text-decoration: underline !important;
  border: none;
  background: none;
  outline: none !important;
}
.hotels-card__content p {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.top-picks {
  margin: 4rem 0;
  overflow: hidden;
}

/* Main container for holidays section */
.hotels-holidays {
  padding: 3rem 0;
  background-color: #f2f2f2;
}

/* Card styling */
.holidays-card {
  background: #fff;
  display: flex;
  align-items: center;
  gap: 27px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin: 1.15rem 0;
}
.hotels-banner__img {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
  z-index: -1;
}

/* Card image styling */
.holidays-card__img {
  position: relative;
  width: 207px;
  height: 120px;
  overflow: hidden;
  border-radius: 0 0 29px 0;
}

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

/* Overlay text styling */
.holidays-card__img .title {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
  background-color: rgb(0 0 0 / 30%); /* Semi-transparent background */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hotels-card:before {
  content: "";
  width: 100%;
  height: 100%; /* Adjust this value to control the overlay height */
  position: absolute;
  bottom: 0; /* Position it at the bottom */
  left: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgb(0 0 0 / 73%) 100%
  );
  z-index: 1;
}
/* Content styling */
.holidays-card__content {
  line-height: 1.2;
}

.holidays-card__content .stay {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.holidays-card__content .price {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-primary);
}

.holidays-card__content .price span {
  font-size: 28px;
}

/* Arrow icon styling */
.holidays-card .arrow-icon {
  font-size: 39px;
  color: var(--color-primary);
  margin-left: 28px; /* Pushes icon to the right */
}

.hotels-aboutUs .extra-content {
  display: none;
}
.top-picks .hotels-card__img {
  height: 515px;
}
.hotels-card--lg .hotels-card__content .title {
  font-size: 2.75rem;
  padding-bottom: 0.5rem;
}
.hotels-card--lg .hotels-card__content p {
  margin-bottom: 1.5rem;
}
span.forUpgrade {
  position: absolute;
  top: 32px;
  background: #3ec039;
  font-size: 17px;
  color: #fff;
  padding: 5px 15px;
  font-weight: 600;
  left: 5px;
  border-radius: 0 0 22px 0;
  z-index: 1;
}
.hotels-signUp {
  margin: 5rem 1rem;
}
.perk-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.85rem;
  padding: 0;
  flex-wrap: wrap;
}

.perk {
  padding: 3rem 0 0;
}

.perk-content li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 0.85rem;
  line-height: 1.2;
  font-weight: 400;
}

.perk-content li a:hover {
  color: #000;
}

.perk-content li a i {
  font-size: 32px;
  color: var(--color-primary);
}
.hotels-signUp__heading {
  background: var(--color-primary);
  width: 100%;
  height: 100%;
  position: absolute;
  padding: 40px;
}
.hotels-signUp__heading .heading {
  margin: 0 !important;
}
.hotels-signUp__content {
  background-color: #313131;
  color: #fff;
  width: 100%;
  height: 100%;
  padding: 40px;
}

.hotels-signUp__heading .heading {
  color: #fff;
}

.hotels-signUp__content p {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.75rem;
  padding-bottom: 3px;
}

.hotels-signUp__form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex-wrap: wrap;
}

.hotels-signUp__form input {
  width: 100%;
  height: 100%;
  padding: 15px 13px;
  border-radius: 10px;
  border: 1px solid;
  font-size: 19px;
  flex: 1;
}

.privacyNotice {
  font-size: 14px;
  color: #fff;
  margin-top: 13px;
}
.privacyNotice:hover {
  color: var(--color-primary);
  text-decoration: underline !important;
}

.hotels-signUp__form .themeBtn {
  flex: 0.2;
}
.hotel-search {
  padding: 6px 20px 12px;
  color: #fff;
  background: #cd1b4fad;
  margin: 0;
  width: 100%;
  position: relative;
  backdrop-filter: blur(5px);
  z-index: 1;
}
.hotel-search.hotel-search--banner {
  margin-top: 11rem;
}
.hotel-search--static {
  width: 100%;
  position: static;
  transform: none;
}
.hotels-tabs {
  border: none;
}

.hotels-tabs .nav-item .nav-link.active {
  color: #fff;
  background-color: transparent;
  border-bottom: 4px solid #fff;
  padding: 0.3rem 0.6rem;
}
.hotels-tabs .nav-item .nav-link {
  padding: 3px 23px;
  font-size: 17px;
  font-weight: 600;
  color: #535353;
}
.hotel-search__btns {
  padding: 1.75rem 0 0.25rem;
  display: flex;
  align-items: flex-end;
  gap: 11px;
  justify-content: center;
}

.hotel-search__btns .hotel-search__btn {
  width: 100%;
  border-radius: 7px;
  line-height: 1.2;
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 60px;
  flex: 1;
  transition: none;
  border: 2px solid transparent;
  cursor: pointer;
  outline: none !important;
  margin: 0;
  /*position: relative;*/
  /*isolation: isolate;*/
  background: transparent;
  color: #fff;
}
.hotel-search-btn-wrapper {
  width: 100%;
  flex: 1;
  position: relative;
}
.hotel-search__btns .hotel-search__btn > span {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  display: block;
  margin-bottom: 4px;
  text-align: left;
}

.hotel-search__btns .hotel-search__btn .content {
  font-size: 19px;
  font-weight: 600;
  gap: 0.5rem;
  width: 100%;
  text-align: left;
  background: #f2f2f2;
  color: #000;
  padding: 7px 7px;
  border-radius: 0.25rem;
}
.hotel-search__btns .hotel-search__btn .content span {
  font: inherit;
}
.hotel-search__form .themeBtn i {
  font-size: 23px;
  margin-right: 4px;
}

.hotel-search__form .themeBtn {
  padding: 10px 25px 10px 18px;
  font-size: 17px;
}
.hotels-tabs {
  border-bottom: none !important;
}
.hotels-tabs .nav-item .nav-link {
  border: none;
}
.perk-popup__header {
  display: flex;
  align-items: center;
  /* gap: 63px; */
  border-bottom: 1px solid #00000038;
  justify-content: space-between;
  padding: 11px 20px;
}

.perk-popup__header .title {
  font-size: 19px;
  font-weight: 700;
  text-transform: capitalize;
}

.perk-popup__header .close-icon {
  font-size: 29px;
  aspect-ratio: 1/1;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 200ms;
  cursor: pointer;
}
.perk-popup__header .close-icon:hover {
  background-color: #cccccc42;
}
.perk-popup__content {
  padding: 15px 20px 19px;
  overflow-y: auto;
}
.perk-popup__content--full {
  height: 80vh;
}
.perk-popup__content h6 {
  font-size: 1.45rem;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 0.86rem;
}
.perk-popup__content p + h6 {
  margin-top: 1rem;
}
.perk-popup__content ul {
  margin: 1rem;
}
.perk-popup__content :is(p, li) {
  font-size: 17px;
  color: #000000e0;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 0;
}
.perk-popup__content li {
  padding: 0.25rem 0;
  list-style-type: disc !important;
}
.perk-popup-wrapper {
  background: #000000ba;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 150ms ease-in;
  backdrop-filter: blur(5px);
}
.perk-popup-wrapper.open {
  opacity: 1;
  visibility: visible;
}
.perk-popup-wrapper.open .perk-popup {
  scale: 1;
}
.perk-popup {
  margin: 0 26rem;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  scale: 0.85;
  transition: all 150ms ease-in;
}

.slider-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #313131;
  width: fit-content;
  margin: auto;
  padding: 0 0.85rem;
  border-radius: 100px;
  gap: 0.65rem;
  height: 40px;
  line-height: 1;
}

.slider-actions__arrow {
  border: none !important;
  background: transparent;
  color: #fff;
  outline: none !important;
  width: 25px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  position: static;
  transform: none;
}

.slider-actions__arrow i {
  font-size: 1.5rem;
}

.slider-actions__arrow:hover {
  background: #ffffff26;
}

.slider-actions .slick-dots {
  position: static !important;
  transform: none !important;
}
.slider-actions__dots .slick-dots li {
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 100%;
  transition: all 300ms;
  border: none;
  outline: none;
  opacity: 0.6;
  margin-inline: 0.25rem;
}

.slider-actions__dots li.slick-active {
  scale: 1.1;
  opacity: 1;
}

.slider-actions__dots .slick-dots li button {
  padding: 0 !important;
  width: auto !important;
  height: auto !important;
}
.slider-actions__dots .slick-dots li button::before {
  display: none;
}

.slider-actions__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.hotel-search__btns .hotel-search__btn .content input {
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  outline: none;
  width: 100%;
}
.hotel-search__btns .hotel-search__btn .content input.date {
  pointer-events: none;
  width: 103px;
}
.hotel-search__btns .hotel-search__btn .clear {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 100%;
  outline: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.5rem;
  font-size: 1.35rem;
  opacity: 0;
  transition: background 300ms;
}

.hotel-search__btns .hotel-search__btn .clear:hover {
  background: #0000000d;
}
.hotel-search__btns .hotel-search__btn .clear.show {
  opacity: 1;
}

.options-dropdown-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgb(242, 242, 242);
  border-radius: 0.5rem;
  overflow: hidden;
  width: 100%;
  padding: 11px;
  margin-top: 1rem;
  border-radius: 6px;
  overflow-x: hidden;
  box-shadow: rgba(0, 0, 0, 0.05) 0px calc(0.0625rem) calc(0.1875rem),
    rgba(0, 0, 0, 0.05) 0px calc(1.25rem) calc(1.5625rem) calc(-0.3125rem),
    rgba(0, 0, 0, 0.04) 0px calc(0.625rem) calc(0.625rem) calc(-0.3125rem);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  scale: 0.85;
  transition: all 300ms;
}
.options-dropdown-wrapper.open {
  opacity: 1;
  visibility: visible;
  scale: 1;
}
.options-dropdown-wrapper.scroll{
    height: 485px;
    overflow-y: auto;
}
.options-dropdown {
  background: #fff;
  border-radius: 6px;
  color: #000;
}
.options-dropdown--norm {
  height: auto;
}

.options-dropdown:not(:last-child) {
  margin-bottom: 1rem;
}
.options-dropdown-wrapper::-webkit-scrollbar {
  width: 7px;
}
.options-dropdown-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.options-dropdown-wrapper::-webkit-scrollbar-thumb {
  background: #8989899c;
  border-radius: 100px;
}
.paxs-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.paxs-item:not(:last-child) {
  margin-bottom: 1.5rem;
}

.paxs-item .info {
  line-height: 1.25;
}

.paxs-list {
  margin: 1.75rem 0 0;
}

.paxs-item .info .name {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.8;
}

.paxs-item .info span {
  font-size: 0.85rem;
  font-weight: 500;
  color: #6c6f70;
}

.paxs-item .quantity-counter__btn {
  border-radius: 100%;
  width: 37px;
  border: 2px solid var(--color-primary);
  font-size: 1rem;
}

.paxs-item .quantity-counter__btn--quantity {
  border-color: transparent;
  font-size: 1.1rem;
  font-weight: 500;
}

.paxs-item .quantity-counter {
  gap: 0.25rem;
}

.options-dropdown::-webkit-scrollbar-thumb:hover {
  background: #898989;
}

.options-dropdown__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  border-bottom: 1px solid #cccccca3;
  line-height: 1;
}

.options-dropdown .title {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color:#000;
}

.options-dropdown__header span {
  font-size: 0.95rem;
  font-weight: 600;
}

:is(.options-dropdown__header, .options-dropdown__body) {
  padding-inline: 12px;
}
.options-dropdown-list__item {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 15px  11px;
  transition: all 300ms;
}
.options-dropdown-list__item:hover {
  background: #00000008;
}
.options-dropdown-list__item .icon i {
  color: var(--color-primary);
  font-size: 1.2rem;
}

.options-dropdown-list__item .info {
  line-height: 1;
}

.options-dropdown-list__item .info .name {
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.8;
}

.options-dropdown-list__item .info span {
  font-size: 0.84rem;
  font-weight: 500;
  color: #6c6f70;
}

.options-dropdown-list__item:not(:last-child) {
  border-bottom: 1px solid #cccccc2e;
}

.options-dropdown__body {
  padding: 15px;
}

/* Hotels index */
/* Hotels Lisitng */
.hotels-bg {
  background: #f2f2f2;
  color: #313131;
}
.hotets-listing {
  padding: 1rem 1.5rem 5rem;
}
.hotets-listing__sidebar > .title {
  font-size: 2rem;
  font-weight: 700;
  text-transform: capitalize;
  color: #313131;
}
.hotets-listing__sidebar .themeBtn {
  font-size: 1.15rem;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  opacity: 0.85;
  padding-right: 3.5rem;
  margin-top: 1.15rem;
  background: transparent;
}

.filter-blocks {
  margin: 2rem 0;
}
.filter-block {
  background: #fff;
  box-shadow: 0 0 15px 1px #0000000d;
  border-radius: 0.25rem;
  overflow: hidden;
}
.filter-block:not(:last-child) {
  margin-bottom: 1.5rem;
}
.filter-block:not(:last-child) {
  margin-bottom: 1.25rem;
}

.filter-block__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem;
}

.filter-block__header .title {
  font-size: 1.09rem;
  font-weight: 700;
  text-transform: capitalize;
  opacity: 0.95;
}

:is(.filter-block__header, .filter-block__body) {
  padding-inline: 1rem;
}

.filter-block__header .icon i {
  font-size: 1.75rem;
  transition: all 300ms;
  opacity: 0.5;
}

.filter-block__body .body-wrapper {
  padding: 0.75rem 0.5rem 1.1rem;
}
.overflow-hidden {
  overflow: hidden;
}
[custom-accordion-body] {
  display: grid;
  grid-template-rows: 0fr;
  transition: all 300ms;
}
[custom-accordion].open [custom-accordion-body] {
  grid-template-rows: 1fr;
}
[custom-accordion-header] {
  cursor: pointer;
  user-select: none;
}
[custom-accordion].open [custom-accordion-header] .icon i {
  rotate: 180deg;
}
.check-filter {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  user-select: none;
}

.check-filter__input {
  margin: 0 0 0 !important;
  cursor: pointer;
  accent-color: var(--color-primary);
  scale: 1.5;
}

.check-filter__label {
  margin-bottom: 0;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.7;
}

.check-filter:not(:last-child) {
  margin-bottom: 0.95rem;
}
.filter-block__body .more-btn {
  border: none;
  outline: none;
  display: flex;
  width: 100%;
  font-size: 0.96rem;
  opacity: 0.8;
  font-weight: 600;
  height: 40px;
  padding: 0px 16px;
  border-radius: 100px;
  gap: 3px;
  background-color: rgb(241, 241, 241);
  align-items: center;
  justify-content: center;
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: none;
  transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 1.5rem;
}

.filter-block__body .more-btn:hover {
  background: #d8d8d8;
}

.filter-block__body .more-btn i {
  font-size: 1.35rem;
}
.more-filters {
  margin-top: 0.85rem;
}
[data-show-more-list] {
  display: none;
}
[data-show-more].open [data-show-more-list] {
  display: block;
}
[data-show-more].open [data-show-more-btn] i {
  rotate: 180deg;
}
.price-ranges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0 0 1rem;
}

.price-ranges__input {
  background: #f2f2f2;
  border: 2px solid transparent;
  border-radius: 0.5rem;
  padding: 0.75rem 0.75rem 0.5rem;
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}

.price-ranges__input label {
  margin: 0;
  font-size: 0.85rem;
  user-select: none;
  font-weight: 500;
}

.price-ranges__input input {
  background: none;
  border: none;
  outline: none;
  width: 100%;
  font-size: 1.15rem;
  font-weight: 600;
}
.price-ranges__input:focus-within {
  border-color: var(--color-primary);
}

.filter_dropdown--hotel h4 {
  font-weight: 500;
  font-size: 0.95rem;
}

.filter_dropdown--hotel select {
  border-radius: 100px;
  background: #fff;
  border: 1px solid #ccc;
  height: 38px;
}
.event-card {
  background: #fff;
  box-shadow: 0 0 15px 1px #0000000d;
  border-radius: 0.25rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.event-card__img {
  width: 100%;
  height: 300px;
}
.event-card__img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-card__content .title {
  color: #313131;
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1.25;
  margin-bottom: 0.25rem;
}

.event-card__content > .details {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0;
  line-height: 1;
}

.event-card.event-card--details .event-card__img {
  height: 160px;
}
.event-card.event-card--details .event-card__content {
  padding: 1rem 1rem 0.9rem !important;
}
.event-card--details .event-card__content .title {
  font-size: 1.6rem;
}
.event-card__content .title.title--sm {
  font-size: 1.15rem;
}
.event-card__content .details .content {
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.85;
}

.event-card__content > .details--border .content {
  font-size: 1rem;
  font-weight: 600;
}
.event-card--details .event-card__content .rating {
  gap: 0.85rem;
}
.event-card.event-card--details .details {
  padding: 0.25rem 0;
  gap: 0.5rem;
}
.event-card.event-card--details .event-card__content > .details--border {
  justify-content: space-between;
  border-top: 1px solid #e0e0e0;
  padding-top: 1rem;
  margin-top: 1.25rem;
}
.event-card.event-card--details .details .icon i {
  font-size: 1rem;
}
.event-card__content p {
  font-size: 0.95rem;
  font-weight: 500;
}
.event-card__content .details a.content {
  color: var(--color-primary);
  text-decoration: underline !important;
}
.event-card__content .details .icon i {
  color: var(--color-primary);
  font-size: 1.15rem;
}
.event-card__content .rating {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 0.65rem 0 0.65rem;
}
.event-card__content .rating .info {
  opacity: 0.85;
}

.event-card__content .rating i {
  font-size: 0.8rem;
}

.event-card__content .rating-average {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.event-card__content .rating-average-blob {
  width: 28px;
  aspect-ratio: 1/1;
  background: rgb(105, 190, 40);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 0.75rem;
  border-top-right-radius: 0;
}

.event-card--details .rating-average-blob {
  width: 25px;
  font-size: 0.7rem;
}
.event-card__content {
  padding: 1.15rem 1rem;
}

.event-card__content .subtitle {
  font-size: 0.85rem;
  opacity: 0.85;
}

.event-card__content--price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  line-height: 1;
  gap: 0.25rem;
  height: 100%;
}
.event-card__content--price::before {
  content: "";
  width: 1px;
  height: 80%;
  background: #f2f2f2;
  position: absolute;
  left: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
}
.event-card__content .price {
  color: var(--color-primary);
  font-size: 1.85rem;
  font-weight: 700;
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  text-transform: uppercase;
}

.event-card__content .price span {
  font-weight: 600;
  font-size: 1.05rem;
  opacity: 0.75;
  margin-bottom: 5px;
  display: block;
}
.event-card__content--price .themeBtn {
  text-transform: capitalize;
  padding: 0.8rem 2.5rem;
  font-size: 1rem;
}
.themeBtn--outline:hover {
  background: #cd1b4f14 !important;
}
.event-card-slider-wrapper {
  position: relative;
}
.event-slider-actions {
  color: #fff;
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 0.5rem;
  left: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0.35rem 0.5rem;
  gap: 0.3rem;
}
.event-slider-actions__arrow {
  color: #fff;
  border: none;
  background: none;
  outline: none !important;
  position: static;
  transform: none;
}
.event-slider-actions__arrow i {
  font-size: 1.75rem;
}

.event-slider-actions__progress {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
}
/* Hotels Lisitng */

/* hotel-detail */
.hotel-detail {
  padding: 1rem 0.85rem 5rem;
}

.hotel-map {
  width: 100%;
  height: 300px;
}
.hotel-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}

.hotel-detail__reviews {
  background: #fff;
  padding: 17px 21px;
  margin: 20px 0;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 17px;
}
.hotel-detail__reviews .rating {
  justify-content: center;
  line-height: 1;
  width: 48px;
  height: 48px;
  border-radius: 50% 0 50% 50%;
  font-size: 20px;
  padding: 0 0 4px 0;
  background-color: #69be28;
  color: #ffffff;
  display: flex;
  align-items: center;
  font-weight: 600;
}

.hotel-detail__reviews .client-name {
  font-size: 17px;
  font-weight: 600;
}

.hotel-detail__reviews .checkin-time {
  font-size: 15px;
  color: #313131;
}

.hotel-detail__reviews .details {
  line-height: 1.2;
}

.hotel-detail__reviews .review-content {
  font-size: 19px;
  color: #313131e6;
  line-height: 1.2;
}
.details-tabs {
  background: #fff;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid #ccc;
}
.details-tabs .nav-link {
  color: #00000078;
  font-size: 18px;
  font-weight: 600;
  background: #fff;
  border: none;
  padding: 11px 99px;
  outline: none;
  border-bottom: 3px solid transparent;
}

.details-tabs .nav-link.active {
  color: var(--color-primary);
  outline: none;
  border-color: var(--color-primary);
}
.hotel-detail__tabs .tab-content {
  margin-top: 23px;
}
.hotel-detail__title {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 17px 0;
  color: #313131;
}
.hotel-detail-box {
  background: #fff;
  padding: 16px 23px 25px;
  color: #313131;
}

.hotel-detail-box .heading {
  font-size: 30px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 0.85rem;
}

.hotel-detail-box .subHeading {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 0.15rem;
}

.hotel-detail-box p {
  font-size: 17px;
  margin-bottom: 1rem;
}
.attributes-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 2.5rem 0;
  margin-top: 1.5rem;
}
.attributes-item i {
  font-size: 1.75rem;
}

.attributes-item .title {
  font-size: 1.05rem;
  font-weight: 500;
  text-transform: capitalize;
}

.attributes-item {
  font-variant: JIS83;
  display: flex;
  align-items: center;
  flex-direction: column;
  line-height: 1;
  gap: 0.75rem;
  width: 20%;
}
.continue-bar {
  background: #fff;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.5rem 2rem;
  position: sticky;
  bottom: 0;
  z-index: 10;
}
.continue-bar .themeBtn {
  padding: 0.55rem 10rem;
  text-transform: capitalize;
  font-size: 1.25rem;
}

.continue-bar .content span {
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.95;
}
.continue-bar .content .price {
  color: var(--color-primary);
  font-size: 1.7rem;
  font-weight: 700;
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  text-transform: uppercase;
}

.continue-bar .content .price span {
  font-weight: 600;
  font-size: 1rem;
  opacity: 0.75;
  margin-bottom: 5px;
  display: block;
}
.rooms-btns {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}
.rooms-btns .themeBtn {
  font-size: 1.1rem;
  text-transform: capitalize;
  color: var(--color-primary);
  background: #fff;
  border: 2px solid #ccc;
}
.rooms-btns .themeBtn.active {
  color: #fff;
  border-color: var(--color-primary);
  background: var(--color-primary);
}
.rooms-box {
  background: #fff;
  padding: 1.35rem;
  margin: 1.5rem 0;
}
.rooms-option {
  width: 100%;
  position: relative;
}

.rooms-option:last-child .rooms-option__box {
  border-radius: 0 0 1.1em 1.1rem;
}

.rooms-option__box {
  width: 100%;
  padding: 19px 17px;
  border: 2px solid rgb(214, 214, 214);
  border-top: 2px solid transparent;
  height: 100%;
  transition: all 600ms;
  cursor: pointer;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rooms-option__input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: none;
  margin: 0 !important;
  cursor: pointer;
}

.rooms-option__box .title {
  font-size: 1.25rem;
  font-weight: 600;
}

.rooms-option__box .radio {
  width: 22px;
  aspect-ratio: 1/1;
  border: 2px solid rgb(214, 214, 214);
  border-radius: 100%;
  position: relative;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.rooms-option__box .radio::after {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  position: absolute;
  inset: 0;
  scale: 0;
  border-radius: 100%;
  transition: all 300ms;
}

.rooms-option__input:checked + .rooms-option__box .radio::after {
  scale: 0.65;
}

.rooms-option:first-child .rooms-option__box {
  border-radius: 1.1em 1.1rem 0 0;
  border: 2px solid rgb(214, 214, 214);
}

.rooms-option__input:checked + .rooms-option__box {
  border: 2px solid var(--color-primary);
}
.rooms-option__input:checked + .rooms-option__box .radio {
  border-color: var(--color-primary);
}
.rooms-option__box .first-half {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.rooms-option__box p {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
}

.rooms-option__box .second-half {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
  line-height: 1;
}

.rooms-option__box .second-half .price-big {
  font-size: 1.27rem;
  font-weight: 600;
}

.rooms-option__box .second-half .price-small {
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.7;
}
.rooms-card__img {
  width: 100%;
  height: 230px;
}

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

.rooms-card__content {
  padding: 1.25rem 0;
}

.rooms-card__content .title {
  font-size: 1.7rem;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 0.25rem;
}

.rooms-card__content p {
  font-size: 1.01rem;
  margin-bottom: 0.75rem;
}
.hotels-lg-img-item {
  width: 100%;
  border-radius: 1.1rem;
  height: 480px;
  overflow: hidden;
  background-color: #000;
}
.full-screen-enabled .hotels-lg-img-item {
  width: 80%;
  margin: auto;
  display: block;
  height: 100%;
  padding: 0 6rem;
}
.hotels-lg-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotels-sm-img-list {
  margin: 0.8rem 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hotels-sm-img-item {
  height:90px;
  border-radius: 0.5rem;
  cursor: pointer;
  overflow: hidden;
  border: 3px solid transparent;
  margin-inline: 2px;
}
.hotels-sm-img-item.slick-current.slick-active {
  border-color: #000;
}

.hotels-sm-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hotels-lg-img-wrapper {
  position: relative;
}

.hotels-lg-img-wrapper .event-slider-actions {
  background: #fff;
  color: #000;
  position: static;
  padding-inline: 0;
  gap: 0;
}

.hotels-lg-img-wrapper .event-slider-actions i {
  color: #000;
}
.hotel-detail__tabs {
  margin-top: 1.25rem;
}
.hotels-lg-img-wrapper .action-btns {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  width: 100%;
  gap: 1rem;
}

.hotels-lg-img-wrapper .action-btns .full-screen {
  padding: 0.35rem 0.65rem;
  background: #fff;
  color: #000;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-weight: 500;
  border: none;
  outline: none !important;
}

.hotels-lg-img-wrapper :is(.event-slider-actions, .full-screen) {
  height: 40px;
  border-radius: 0.5rem;
}

.hotels-lg-img-wrapper .action-btns .full-screen i {
  font-size: 1.15rem;
}
.hotel-search__form .themeBtn {
    background: #fff;
    color: var(--color-primary);
    border: none;
    padding: 0.5rem 1rem;
    outline: none !important;
}

body .daterangepicker td.active, body  .daterangepicker td.active:hover {
    background-color: var(--color-primary);
    color: #fff !important;
}

.select2-result-repository__title a {
    color: #000 !important;!i;!;
    display: block;
    width: 100%;
    padding: 6px 13px;
    border-bottom: 1px solid #ccc;
}

li.select2-results__option {
    padding: 0;
}

.select2-result-repository__title a:hover {
    background: rgb(242, 242, 242);
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    outline: none !important;
}

/* hotel-detail */

/* extras */
.event-box {
  background: #fff;
  padding: 1.15rem;
  margin-bottom: 1.5rem;
  border-radius: 0.15rem;
}
.event-box__title {
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
  line-height: 1;
}
.event-box__title--lg {
  font-size: 1.9rem;
}
.event-box .subTitle {
  font-size: 1rem;
  font-weight: 600;
}
.event-box .details {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem;
}
.event-box .details .content {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.85;
}
.event-box .details--border {
  justify-content: space-between;
  border-top: 1px solid #e0e0e0;
  padding-top: 1rem;
  margin-top: 1.25rem;
}
.event-box p {
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.85;
}
.custom-alert {
  width: fit-content;
  display: flex;
  border: 1px solid rgb(100, 157, 207);
  border-radius: 10px;
  gap: 0.5rem;
  padding: 13px 17px;
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1.35;
  background-color: rgb(242, 249, 255);
  color: rgb(0, 0, 0);
  margin: 1.15rem 0;
}
.custom-alert .icon i {
  font-size: 1.25rem;
  color: rgb(29, 112, 184);
  position: relative;
  top: -2px;
}
.flight-fields-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.flight-fields .title {
  font-size: 0.95rem;
  opacity: 0.85;
  font-weight: 500;
  margin-bottom: 0.25rem;
  display: block;
}
.flight-fields :is(input, select) {
  border: 1px solid #acacaca1;
  border-radius: 0.45rem;
  padding: 0.65rem 0.5rem;
  background: #fff;
  font-size: 1rem;
  font-weight: 600;
}
.flight-fields :is(input, select):focus {
  outline-color: var(--color-primary);
}
.transfers-item {
  position: relative;
  margin: 0.85rem 1.1rem 0.4rem 0;
}
.transfers-item__box {
  cursor: pointer;
  margin-bottom: 0;
}
:is(.transfer-header, .transfer-body) {
  padding-inline: 1rem;
}
.transfer-header {
  color: #ffffff;
  align-items: center;
  padding: 0.65rem 0.85rem;
  gap: 0.6rem;
  background: var(--color-primary);
  display: none;
}
.transfer-header i {
  font-size: 1.5rem;
  margin-top: 1px;
  transition: all 300ms;
}
.transfer-header .title::after {
  font-size: 1.2rem;
  font-weight: 600;
}
.transfer-body {
  padding: 1rem;
  transition: all 300ms;
  border: 2px solid #e0e0e0;
}
.transfer-body .content {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.25;
  padding-bottom: 45px;
}
.transfer-body .bottom-price {
  border-top: 1px solid #e0e0e0;
  padding-top: 1.1rem;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 0;
  flex-wrap: wrap;
}
.transfer-body .bottom-price .price-details {
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.transfer-body .bottom-price .price-details span {
  font-size: 0.9rem;
  opacity: 0.75;
}
.transfer-body .bottom-price .price-details .price {
  color: var(--color-primary);
  font-size: 1.25rem;
  font-weight: 800;
}
.transfer-body .bottom-price .selected-btn::after {
  content: attr(select-text);
  background: var(--color-primary);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 100px;
  padding: 0.5rem 1.25rem;
  transition: all 300ms;
}
.transfer-body .bottom-price .selected-btn:hover::after {
  background: #b20436;
}
.transfers-item__radio {
  display: none;
}
.transfers-item__radio:checked + .transfers-item__box .transfer-body {
  border-color: var(--color-primary);
}
.transfers-item__radio:checked + .transfers-item__box .transfer-body .content {
  padding-bottom: 0;
}
.transfers-item__radio:checked + .transfers-item__box .transfer-header {
  display: flex;
}
.transfers-item__radio:checked
  + .transfers-item__box
  .transfer-body
  .bottom-price
  .selected-btn::after {
  content: attr(selected-text);
}
.popup-link {
  color: var(--color-primary) !important;
  text-decoration: underline !important;
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.85;
}
.event-fields {
  margin: 0.65rem 0;
}
.event-fields .title {
  font-size: 0.95rem;
  opacity: 0.85;
  font-weight: 500;
  margin-bottom: 0.25rem;
  display: block;
}
.event-fields :is(input:not([type="checkbox"]), select,textarea) {
  border: 1px solid #acacaca1;
  border-radius: 0.5rem;
  padding: 0.8rem 1rem;
  background: #fff;
  font-size: 1.2rem;
  font-weight: 600;
}
.event-fields :is(input:not([type="checkbox"])  ,textarea) {
  width: 100%;
}
.event-fields select {
  padding-inline: 0.5rem !important;
}
.event-fields input[type="checkbox"] {
  margin: 10px 0 0;
  accent-color: var(--color-primary);
  scale: 2.25;
  position: static;
}
.event-fields :is(input, select):focus {
  outline-color: var(--color-primary);
}
.event-fields.form-check {
  display: flex;
  gap: 1.35rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.event-fields.form-check label {
  user-select: none;
  cursor: pointer;
}
.discount-form .themeBtn {
  padding: 0.65rem 1.5rem;
}
.event-box .themeBtn{  
  font-size: 1.1rem;
}
.event-box .themeBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* extras */
.step33{
  display: none;
}
.hotels-sm-img-list-slider .slick-list.draggable {
    width: 100% !important;
}

.hotels-sm-img-list-slider .slick-track {
    width: 100% !important;
    display: flex;
    justify-content: center;
}
.insurance-doc {
    font-size: 16px;
}

.insurance-doc table {
    margin: 0.85rem 0;
}

.insurance-doc table td {
    font-size: inherit !important;
}

.insurance-doc a {
    color: var(--color-primary) !important;
    font-weight: 700;
    text-transform: capitalize;
    text-decoration: underline !important;
}

.insurance-doc table td img {
    filter: invert(15%) sepia(80%) saturate(3348%) hue-rotate(329deg) brightness(105%) contrast(95%);
}

.insurance-doc table td:has(img) {
    width: 2.4%;
}

.insurance-doc table tbody tr:last-child td {padding-top: 0.3rem !important;font-size: 1rem !important;font-weight: 700;}

.insurance-doc table tbody tr:nth-child(3):has(img) td {
    padding-top: 0.15rem 
}

.insurance-doc  plancontent > img {
    display: block;
    margin: 0.75rem 0;
    height: 50px;
}

.insurance-doc  p:first-child:has(strong) {padding-top: 0.85rem;}


button.hotel-search__btn.date-range-picker .daterangepicker {
    top: 8.35rem !important;
    left: 44% !important;
    transform: translateX(-50%) scale(1.01);
    color: #000;
    width: 657px;
    padding: 0.7rem;
}
/*search sidebar*/
.search-sidebar{
    isolation:isolate;
    display: none;
    position: fixed;
    inset: 0;
    width: 100vw;
    min-height: 100dvh;
    height: 100%;
    overflow-y: auto;
    transition: all 200ms;
    background-color: #fff;
    z-index: 100000000000000000;
    transform: translateX(100%);
    }
.search-sidebar.show{
    transform: translateX(0);
}
.search-sidebar::-webkit-scrollbar {
width: 5px;
}
.search-sidebar::-webkit-scrollbar-track {
background: rgba(0, 0, 255, 0.122);
border-radius: 100px;
}
.search-sidebar::-webkit-scrollbar-thumb {
border-radius: 100px;
background: var(--color-primary);
opacity: 0.25;
}
.search-sidebar__header{
    background-color: var(--color-primary);
    padding: 0.85rem 0.75rem;
}
.search-sidebar__header .back-btn{
    width: 35px;
    aspect-ratio: 1/1;
    color: #fff;
    font-size: 1.7rem;
    border-radius: 100%;
    transition: all 300ms;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0.5rem;
    left: 0.65rem;
    cursor: pointer;
}
.search-sidebar__header .main-title{font-size: 1rem;font-weight: 600;text-transform: capitalize;text-align: center;color: #fff;letter-spacing: 1px;}
.destination-field{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    background: #fff;
    padding: 0 0.75rem;
    border-radius: 0.3rem;
    line-height: 0;
    padding-right: 0;
    border-radius: 100px;
    position: relative;
    padding-left: 2.1rem;
}
.destination-field i {
    position: absolute;
    top: 50%;
    left: 5.25%;
    transform: translate(-50%, -50%);
    width: 31px;
    aspect-ratio: 1/1;
    background: var(--color-primary);
    color: #fff;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.select2-dropdown{z-index: 1000000000000000000;}
.select2-container{z-index: 1000000000000000000;}
.destination-field :is(input,select){
    width: 100%;
    border: none;
    background: none;
    outline: none;
    font-size: 0.95rem;
    font-weight: 500;
    color: #000;
    letter-spacing: 0.5px;
    height: 40px;
    caret-color: var(--color-primary);
    padding-left: 0.45rem;
}
.destination-field input::placeholder{
opacity: 0.75;
}

.header-content{padding: 1.5rem 0 0;}

.rooms-wrapper {
    padding: 1.15rem 1.3rem;
}
.search-sidebar__body {
    min-height: 63vh;
    padding: 1rem 0;
    overflow-y: auto;
}

.search-sidebar__footer {
    min-height: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.search-sidebar__footer .themeBtn {
    font-size: 1rem;
    border-radius: 0;
}
.search-sidebar__footer .themeBtn:hover{
    background: var(--color-primary);
    color:#fff;
}
.search-sidebar .form-control {
        box-shadow: none !important;
    border-color: #7e7e7e !important;
}
.search-sidebar__header .back-btn:hover {
    background: #ffffff47;

}

.for-mob{
    display: none;
}
@media only screen and (max-width:767px) {
    .hotel-search-btn-wrapper .options-dropdown-wrapper {
        display: none;
    }
     .search-sidebar{
        display: block;
    }
     .for-mob{
        display: block;
    }
     .for-desktop{
        display: none;
    }
    
}
.daterangepicker .drp-buttons .btn.btn-primary {
    background: var(--color-primary);
    border-color: var(--color-primary);
}
.search-sidebar .daterangepicker {width: 100% !important;margin: 0 auto;padding: 0.75rem;position: static;}

.search-sidebar .daterangepicker .drp-calendar {
    max-width: 100% !important;
    padding: 0;
    margin: 1rem 0;
    border: 1px solid #98959585;
}

.search-sidebar .daterangepicker .calendar-table td {
    /* height: 34px; */
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 100%;
}

.search-sidebar .daterangepicker .calendar-table th {
    font-size: 0.85rem;
}

.search-sidebar .daterangepicker .drp-calendar thead > tr {height: 38px;}

.search-sidebar .daterangepicker select {
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid #98959585;
    background: transparent;
}
/*search sidebar*/

body .skeleton {
    height: 25px !important;
    width: 85%;
    padding: 0;
    border-radius: 0.35rem;
    animation: skeleton-loading 1s linear infinite alternate;
  }
  @keyframes skeleton-loading {
    0% {
      background-color: hsl(200, 20%, 80%);
    }
    100% {
      background-color: hsl(200, 20%, 95%);
    }
  }

.no-hover:hover {
    background: #fff !important;
}

.no-hover {
    cursor: inherit;
}
.daterangepicker {
    background: #f2f2f2;
    border-radius: 1rem;
    border: 1px solid #D6D6D6;
}

.drp-calendar {
    padding: 0 !important;
}
.daterangepicker .calendar-table th, .daterangepicker .calendar-table td {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px !important;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: system-ui;
    color: #313131 !important;
}

.daterangepicker td.off, .daterangepicker td.off.in-range, .daterangepicker td.off.start-date, .daterangepicker td.off.end-date {
    color: #6c6f7082 !important;
}
.daterangepicker .drp-calendar {
    max-width: 100%;
}

.daterangepicker .drp-calendar.right .calendar-table {
    padding-left: 0.75rem !important;
}

.daterangepicker .calendar-table .next span, .daterangepicker .calendar-table .prev span {
    border-color: var(--color-primary);
}
.daterangepicker .calendar-table th {color: #6c6f7082 !important;}
.daterangepicker .calendar-table th.month {
    color: #313131 !important;
    font-weight: 700;
    font-size: 1rem;
    position: relative;
}

.daterangepicker .calendar-table th.month::after {content: '';width: 63%;height: 83%;position: absolute;left: 50%;top: 50%;transform: translate(-50%, -50%);border: 1.5px solid var(--color-primary);border-radius: 100px;}



.daterangepicker .calendar-table {
    padding: 0.5rem 0 !important;
}
.daterangepicker td.in-range {
    color: var(--color-primary) !important;
    background: #cd1b4f12;
}

.daterangepicker td.available:hover, .daterangepicker th.available:hover {
    background: #cd1b4f12;
}
.search-sidebar .daterangepicker select {
    width: fit-content;
    padding: 0.25rem 2rem 0.25rem 0.6rem;
    border: 1px solid var(--color-primary);
    border-radius: 100px;
}

/*new landing page for b2b*/
/* Banner */
.banner-wrapper {
  min-height: 80vh;
  height: 100%;
  overflow: hidden;
}

.new-banner {
  width: 100%;
  height: 100%;
  min-height: 80vh;
  color: #fff;
  display: flex !important;
  justify-content: center;
  position: relative;
  padding-top: 5.5rem;
}

.banner--rounded {
  overflow: hidden;
  position: relative;
}

.banner--rounded::before {
  content: '';
  width: 120%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 120%;
  transform: translate(-50%, -50%);
  border-radius: 100% 100% 0 0;
  background: #fff;
  z-index: 1;
}

.banner__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: -1;
}

.banner--overlay::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.35;
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.banner-content__heading {
  font-size: 4.5vmax;
  font-weight: 600;
  font-family: var(--heading-font);
  text-transform: capitalize;
}

.banner-content .themeBtn {
  font-size: 1.05rem;
  padding: 0.65rem 1.5rem;
}

/* Banner */
/* About */
.about-wrapper {
  padding: 5.5rem 0 10.5rem;
}

.about-content .sub-heading {
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.75rem;
}

.about-content .heading {
  font-size: 1.9rem;
  line-height: 1;
}

.about-content p {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.7;
}

.about-images {
  position: relative;
  padding: 1.5rem 0 0 6rem;
}

.about-images .first-image {
  width: 370px;
  height: 410px;
  object-fit: cover;
  border-radius: 0.75rem;
}

.about-images .second-image {
  position: absolute;
  right: 1.5rem;
  bottom: -5rem;
  width: 270px;
  height: 290px;
  object-fit: cover;
  border: 7px solid #fff;
  border-radius: 0.85rem;
  z-index: 1;
}

.about-wrapper {
  background: #F5f5f5;
}

/* About */

/* Perks */
.slick-slide{
  padding-inline: 0.75rem;
}
.perks-wrapper {
  padding-bottom: 5.25rem;
}

.perks-card {
  margin: 1rem 0;
  background: #fff;
  box-shadow: 0 0 15px 1px #00000020;
  padding: 2.25rem 1.1rem;
  text-align: center;
  border-radius: 0.65rem;
  overflow: hidden;
  color: #0e1317;
}

.perks-card__icon {
  width: 68px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  background: #cd1b4f14;
  border-radius: 100%;
}

.perks-card__icon i {
  color: var(--color-primary);
  font-size: 1.85rem;
}

.perks-card__content .title {
  font-size: 1.4rem;
  font-family: var(--heading-font);
  margin: 0.75rem 0 0.75rem;
  color: #0e1317;
}

.perks-card__content p {
  font-size: 0.9rem;
  opacity: 0.85;
  margin: 0;
}

/* Perks */

/* video section */
.video-wrapper {
  width: 100%;
  height: 100%;
  min-height: 80vh;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}

.video-overlay::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

@keyframes pulse-glow {
  0% {
    transform: scale(1);
    box-shadow:
      0 0 0 0 rgba(205, 27, 79, 0.8),
      0 0 0 0 rgba(255, 255, 255, 0.3);
  }

  50% {
    transform: scale(1.08);
    box-shadow:
      0 0 20px 10px rgba(255, 255, 255, 0.4),
      0 0 40px 20px rgba(205, 27, 79, 0.6);
  }

  100% {
    transform: scale(1);
    box-shadow:
      0 0 0 0 rgba(205, 27, 79, 0.8),
      0 0 0 0 rgba(255, 255, 255, 0.3);
  }
}


.video-play-btn {
  width: 90px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #fff;
  animation: pulse-glow 2.5s infinite ease-in-out;
  margin-bottom: 5.5rem;
}

.video-play-btn img {
  width: 30px;
  filter: invert(1);
}

body.fancybox-active.compensate-for-scrollbar {
  margin: 0;
  padding: 0;
  overflow: inherit;
}

.text-slider {
  position: absolute;
  bottom: 0.75rem;
  left: 0;
  width: 100%;
  overflow: hidden;
  color: #fff;
  font-size: 5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
}

.slider-track {
  display: inline-flex;
  animation: scroll-marquee 20s linear infinite;
  gap: 4rem;
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.text-slide,
.seprator {
  flex: 0 0 auto;
}

/* video section */
/* contact */
.contact-img {
  width: 100%;
  height: 100%;
}

.contact-img>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}

.new-contact-content {
  padding: 4rem 4rem;
}

.new-contact-content .heading {
    font-size: 1.8rem;
    line-height: 1.5;
}

.input-fields :is(input,select) {
  width: 100%;
  background: none;
  outline: none;
  border: none;
  border-bottom: 1px solid #ccc;
  font-size: 0.9rem;
  padding: 0.5rem 0;
  transition: all 300ms;
}

.input-fields {
  margin: 0.75rem 0;
}

.input-fields input:hover {
  border-color: #000;
}

/* contact */

/* cta */
.cta {
  display: flex;
  align-items: end;
  flex-direction: column;
  gap: .75rem;
  position: fixed;
  top: 55%;
  right: 0;
  transform: translate(80%, -50%);
  z-index: 99;
}

.cta-single__icon--form.show {
  transform: translateX(-134%);
}

:is(.cta-single__icon, .cta-single__icon > span) {
  display: flex;
  align-items: center;
  transition: .4s;
}

.cta-single__icon {
  width: 280px;
  color: #ffff;
  background: var(--color-primary);
  background-size: 200%;
  font-size: 1rem;
  font-weight: 600;
  justify-content: flex-start;
  gap: .75rem;
  box-shadow: 0 0 10px 5px #00000020;
  border-radius: 100px 0 0 100px;
  background-color: #fff;
}

.cta-single__icon>span {
  width: 60px;
  height: 50px;
  font-size: 1.4rem;
  justify-content: center;
  position: relative;
  color: var(--color-primary);
  border-right: 1px solid #ded9d9;
}

.cta-single,
.cta-single__icon {
  position: relative;
}

.cta-formWrapper.show {
  transform: translate(-122%, -50%);
}

.cta-formWrapper {
  background: #fff;
  width: 375px;
  padding: 2rem 1.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-20%, -50%);
  transition: .3s ease-in-out;
}

.contact-form__fields {
  margin: .5rem .45rem;
}

.contact-form__fields input {
  color: #181818d1 ;
  font-size: 0.9rem;
  font-weight: 400;
  width: 100%;
  background: #fff;
  outline: 0;
  border: 1px solid #00000026 ;
  border-radius: .25rem;
  padding: .65rem 1rem;
  margin: 0;
  resize: none;
}

.cta-formWrapper .heading {
  font-size: 2rem;
}

/* cta */
@media only screen and (max-width: 768px) {
  .slick-slide {
    margin-right: 0;
  }


  .banner--rounded::before {
    display: none;
  }

  .about-images {
    padding: 0 0 1.5rem;
  }

  .about-images .first-image {
    width: 100%;
    height: 100%;
  }

  .about-images .second-image {
    display: none;
  }

  .banner-wrapper,
  .new-banner {
    min-height: 40vh;
  }

  .new-banner {
    align-items: center;
    padding: 0;
  }

  .perks-wrapper {
    padding: 4rem 0;
  }

  .about-content .heading {
    line-height: 1.25;
  }

  .section-content .heading {
    font-size: 3vmax !important;
    line-height: 1.4;
    margin-bottom: 0.25rem;
  }

  .about-wrapper {
    padding: 4rem 0;
  }

  .text-slider {
    font-size: 2.5rem;
  }

  .new-contact-content {
    padding: 2rem;
  }

  .arrow-image {
    width: 30px;
  }

  .contact-img {
    display: none;
  }

  .video-play-btn {
    margin-bottom: 2rem;
  }

  .cta-formWrapper {
    background: #fff;
    width: 300px;
    padding: 1.5rem;
  }

  .cta-single__icon--form.show {
    transform: translateX(-102%);
  }

  .section-content .sub-heading {
    font-size: 1rem;
  }
  .cta-formWrapper .heading{
    font-size: 1.45rem;
  }
  
  .video-wrapper {
    min-height: 60vh;
  }
  .new-contact-content .heading {
    font-size: 1.05rem !important;
    line-height: 1.4;
}

.new-contact-content .sub-heading {
    font-size: 0.99rem !important;
    gap: 0.5rem;
}

.new-contact-content .sub-heading img {
    width: 30px;
}
  .about-content p {
    margin-top: 1rem;
}
.about-content .heading {
    font-size: 1.1rem !important;
}
}
/*new landing page for b2b*/
.options-dropdown__body .form-control {box-shadow: none !important;}

.child-age {width: 47%;margin: 0.25rem 0;}

.child-ages {
    margin: 1.25rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0 0.75rem;
}
.room-section .title {
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
}
.child-age label {
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.15rem;
}
.room-section:not(:last-child) {
    padding-bottom: 1.45rem;
    margin-bottom: 1.4rem;
    border-bottom: 1px solid #ccc;
}
.child-ages .title {
    font-size: 0.8rem;
    color: #6c6f70;
    font-weight: 500;
    margin-bottom: 0;
}