@import url(https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700;800&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400&display=swap);
/* **************************************************
    Main styles inport
************************************************** */
/* **************************************************
    All variables
************************************************** */
/* **************************************************
  Mixins
************************************************** */
/* **************************************************
    Animations
************************************************** */
@keyframes waves {
  0% {
    transform: scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  50% {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  }
  100% {
    transform: scale(0.9, 0.9);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}
/* **************************************************
  Typography
************************************************** */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  background-color: #fff;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Barlow", sans-serif;
  color: #0D2F3F;
}

a, button {
  font-family: "Barlow", sans-serif;
  transition: all 0.3s ease;
}

p {
  font-family: "Roboto", sans-serif;
}

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

.section-top {
  margin-bottom: 30px;
}
.section-top .section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.section-top h2 {
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  color: #0D2F3F;
  position: relative;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .section-top h2 {
    font-size: 22px;
    line-height: 32px;
  }
}
.section-top h2::before {
  content: "";
  background-image: url("./../images/illustration/yellow-border.svg");
  width: 250px;
  max-width: 100%;
  height: 50px;
  background-repeat: no-repeat;
  position: absolute;
  left: calc(100% - 130px);
  bottom: -55px;
}
@media (max-width: 575px) {
  .section-top h2::before {
    left: calc(100% - 120px);
  }
}
.section-top .section-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  width: 670px;
  max-width: 100%;
}
@media (max-width: 575px) {
  .section-top .button-link {
    display: none !important;
  }
}

.body-text-normal {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #333333;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .body-text-normal {
    font-size: 14px;
    line-height: 20px;
  }
}

/* **************************************************
    Common styles import
************************************************** */
/* **************************************************
  Reusable components
************************************************** */
.page-banner-wrapper {
  height: 225px;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.page-banner-wrapper:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  inset: 0;
  z-index: 1;
}
.page-banner-wrapper.single-hotel-search-banner {
  background-image: url("./../images/single-hotel-search/page-banner.png");
  background-repeat: no-repeat;
  background-position: center;
}
.page-banner-wrapper .search-form {
  width: 100%;
  position: relative;
  z-index: 2;
}

.item-heading {
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 5px;
  color: #0D2F3F;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media (max-width: 575px) {
  .item-heading {
    font-size: 20px;
    line-height: 28px;
  }
}
.item-heading:hover {
  color: #0D2F3F;
}

.price-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-info .price {
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  position: relative;
}
@media (max-width: 575px) {
  .price-info .price {
    font-size: 18px;
  }
}
.price-info .price::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("./../images/illustration/yellow-border-sm.svg");
  background-repeat: no-repeat;
  position: absolute;
  bottom: -25px;
  right: 0;
}
.price-info .old-price {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  text-decoration-line: line-through;
  color: #f03d1b;
}

.discount-illustration-bg {
  width: 130px;
  max-width: 100%;
  height: 140px;
  background-image: url("./../images/illustration/discount-bg.svg");
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: flex-end;
  padding: 0px 15px 10px 0px;
}
.discount-illustration-bg h4 {
  font-size: 22px;
  font-weight: 700;
  color: #0D2F3F;
  margin-bottom: 0;
}
.discount-illustration-bg span {
  font-size: 14px;
  color: #0D2F3F;
}

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

.dark-overlay {
  position: relative;
  transition: all 0.4s ease;
}
.dark-overlay:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 999;
  transition: all 0.4s ease;
}

.hide {
  display: none;
}

/* **************************************************
    Footer section
************************************************** */
.footer-wrapper {
  background-color: #255758;
  position: relative;
  overflow: hidden;
}
.footer-wrapper .footer-top {
  padding: 60px 0px;
  position: relative;
  z-index: 20;
}
.footer-wrapper .footer-widget h3 {
  font-weight: 600;
  font-size: 28px;
  color: #FFFFFF;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 50px;
}
@media (max-width: 575px) {
  .footer-wrapper .footer-widget h3 {
    font-size: 22px;
    margin-bottom: 30px;
  }
}
.footer-wrapper .footer-widget h3::before, .footer-wrapper .footer-widget h3::after {
  content: "";
  width: 58px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 30px;
}
.footer-wrapper .footer-widget h3::before {
  width: 58px;
  bottom: 0;
}
.footer-wrapper .footer-widget h3::after {
  width: 36px;
  bottom: -8px;
}
.footer-wrapper .footer-widget p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: #FFFFFF;
}
.footer-wrapper .footer-widget.about .footer-map {
  display: inline-block;
  text-decoration: none;
  color: #FFFFFF;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 18px;
}
.footer-wrapper .footer-widget.about .footer-map .icon {
  margin-right: 5px;
  width: 30px;
}
.footer-wrapper .footer-widget.about .footer-map .icon img {
  width: 30px;
}
.footer-wrapper .footer-widget.menu .footer-links {
  margin: 0;
  padding: 0;
}
.footer-wrapper .footer-widget.menu .footer-links li {
  list-style: none;
}
.footer-wrapper .footer-widget.menu .footer-links a {
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  color: #FFFFFF;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  padding: 7px 0px;
}
.footer-wrapper .footer-widget.contact .contact-phone {
  display: block;
  font-size: 26px;
  color: #FFFFFF;
  font-weight: 500;
  text-decoration: none;
}
@media (max-width: 575px) {
  .footer-wrapper .footer-widget.contact .contact-phone {
    font-size: 20px;
  }
}
.footer-wrapper .footer-widget.contact .contact-phone .icon {
  margin-right: 5px;
}
.footer-wrapper .footer-widget.contact .contact-mail {
  font-size: 16px;
  color: #FFFFFF;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  display: block;
  margin-top: 20px;
  position: relative;
}
.footer-wrapper .footer-widget.contact .contact-mail::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url("./../images/icons/line-draw.svg");
  position: absolute;
  left: 0;
  bottom: -25px;
  background-repeat: no-repeat;
}
.footer-wrapper .footer-widget.contact .social-links {
  margin: 0;
  padding: 0;
  margin-top: 40px;
  display: flex;
  gap: 30px;
}
.footer-wrapper .footer-widget.contact .social-links li {
  list-style: none;
}
.footer-wrapper .footer-widget.contact .social-links a {
  color: #FFFFFF;
  font-size: 20px;
}
.footer-wrapper .footer-widget.contact .social-links a:hover {
  color: #FFC62D;
}
.footer-wrapper .footer-copyrights .copyrights-content {
  padding: 30px 0px;
  border-top: 1px solid #717171;
  display: flex;
  justify-content: center;
}
.footer-wrapper .footer-copyrights .copyrights-content p {
  margin-bottom: 0;
  color: #FFFFFF;
}
.footer-wrapper::before {
  content: "";
  width: 300px;
  max-width: 100%;
  height: 260px;
  background-image: url("./../images/illustration/footer-illustration.svg");
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0.05;
  z-index: 10;
}
.footer-wrapper::after {
  content: "";
  width: 300px;
  max-width: 100%;
  height: 260px;
  background-image: url("./../images/illustration/footer-illustration.svg");
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0.05;
  z-index: 10;
  transform: rotate(-145deg);
}
@media (max-width: 575px) {
  .footer-wrapper::after {
    display: none;
  }
}

/* **************************************************
    Header Wrapper
************************************************** */
.header-wrapper {
  position: sticky;
  top: 0;
  z-index: 999;
}
.header-wrapper .header-topbar {
  background-color: #ff5e3a;
}
@media (max-width: 991px) {
  .header-wrapper .header-topbar {
    display: none;
  }
}
.header-wrapper .topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 50px;
  padding: 5px 0px;
}
.header-wrapper .topbar-content .left-content {
  display: flex;
  align-items: center;
}
.header-wrapper .topbar-content .left-content .contact-items {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
  position: relative;
}
.header-wrapper .topbar-content .left-content .contact-items li {
  list-style: none;
  margin-right: 25px;
}
.header-wrapper .topbar-content .left-content .contact-items a {
  display: flex;
  gap: 8px;
  text-decoration: none;
}
.header-wrapper .topbar-content .left-content .contact-items span {
  display: flex;
  font-weight: 500;
  color: #FFFFFF;
}
.header-wrapper .topbar-content .left-content .contact-items::after {
  content: "";
  width: 1px;
  height: 20px;
  background-color: #FFFFFF;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.header-wrapper .topbar-content .left-content .social-links {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
}
.header-wrapper .topbar-content .left-content .social-links li {
  list-style: none;
  margin-left: 25px;
}
.header-wrapper .topbar-content .left-content .social-links a {
  color: #FFFFFF;
  font-size: 18px;
}
.header-wrapper .topbar-content .left-content .social-links a:hover {
  color: #FFC62D;
}
.header-wrapper .topbar-content .right-content {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header-wrapper .topbar-content .currency-select-wrapper {
  position: relative;
}
.header-wrapper .topbar-content .currency-select-wrapper::after {
  content: "";
  width: 1px;
  height: 20px;
  background-color: #FFFFFF;
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
}
.header-wrapper .topbar-content .currency-select-wrapper .selected-currency-wrapper {
  text-decoration: none;
  cursor: pointer;
}
.header-wrapper .topbar-content .currency-select-wrapper .selected-currency-wrapper span {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}
.header-wrapper .topbar-content .currency-select-wrapper .selected-currency-wrapper svg {
  font-size: 13px;
  margin-left: 2px;
}
.header-wrapper .topbar-content .currency-select-wrapper ul {
  min-width: 100px;
  margin: 0;
  padding: 5px 0px;
  background-color: #FFFFFF;
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.07);
  border-radius: 5px;
  border-bottom: 5px solid #0D2F3F;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  margin-top: 20px;
  transition: all 0.3s ease;
  visibility: hidden;
  opacity: 0;
}
.header-wrapper .topbar-content .currency-select-wrapper ul::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #fff transparent;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.5s ease;
}
.header-wrapper .topbar-content .currency-select-wrapper ul.show {
  margin-top: 10px;
  visibility: visible;
  opacity: 1;
}
.header-wrapper .topbar-content .currency-select-wrapper ul li {
  list-style: none;
}
.header-wrapper .topbar-content .currency-select-wrapper ul a {
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  gap: 5px;
  text-decoration: none;
  padding: 5px 10px;
  color: #0D2F3F;
  transition: all 0.3s ease;
}
.header-wrapper .topbar-content .currency-select-wrapper ul a .currency-name {
  display: inline-block;
  height: 100%;
  width: 100%;
}
.header-wrapper .topbar-content .currency-select-wrapper ul a:hover {
  background-color: rgba(13, 47, 63, 0.05);
}
.header-wrapper .topbar-content .country-select-wrapper {
  position: relative;
}
.header-wrapper .topbar-content .country-select-wrapper .country-select-btn {
  display: flex;
  align-items: center;
  background-color: transparent;
  border: none;
  outline: none;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #FFC62D;
  text-transform: uppercase;
}
.header-wrapper .topbar-content .country-select-wrapper .country-select-btn .icon {
  margin-right: 10px;
}
.header-wrapper .topbar-content .lang-select-wrapper .lang-select-btn {
  background-color: transparent;
  border: 0;
  outline: 0;
  color: #fff;
  padding: 10px 0px;
  position: relative;
}
.header-wrapper .topbar-content .lang-select-wrapper .lang-select-btn .icon img {
  width: 25px;
  margin-right: 2px;
}
.header-wrapper .topbar-content .lang-select-wrapper .lang-select-btn.arrow-down {
  position: relative;
}
.header-wrapper .topbar-content .lang-select-wrapper .lang-select-btn.arrow-down::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #fff transparent;
  position: absolute;
  bottom: 0px;
  right: 30px;
  transition: all 0.5s ease;
}
.header-wrapper .topbar-content .lang-select-wrapper svg {
  font-size: 13px;
  margin-left: 2px;
}
.header-wrapper .topbar-content .lang-select-wrapper .lang-select-box {
  padding: 30px;
  width: 900px;
  max-width: 100%;
  max-height: 350px;
  overflow-y: scroll;
  position: absolute;
  z-index: 200;
  right: 0;
  background-color: #FFFFFF;
  border-radius: 5px;
  visibility: hidden;
  opacity: 0;
  margin-top: 10px;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.07);
}
.header-wrapper .topbar-content .lang-select-wrapper .lang-select-box.show {
  visibility: visible;
  opacity: 1;
  margin-top: 0;
}
.header-wrapper .topbar-content .lang-select-wrapper .lang-select-box .lang-select-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 20px;
}
.header-wrapper .topbar-content .lang-select-wrapper .lang-select-box .lang-select-header h3 {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #0D2F3F;
}
.header-wrapper .topbar-content .lang-select-wrapper .lang-select-box .lang-select-header .lang-select-close-btn {
  background-color: transparent;
  border: 0;
  outline: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 137, 137, 0.2);
}
.header-wrapper .topbar-content .lang-select-wrapper .lang-select-box .flag-icon img {
  width: 35px;
}
.header-wrapper .topbar-content .lang-select-wrapper .lang-select-items {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.header-wrapper .topbar-content .lang-select-wrapper .lang-select-items li {
  list-style: none;
  max-width: 195px;
}
.header-wrapper .topbar-content .lang-select-wrapper .lang-select-items a {
  width: 195px;
  max-width: 100%;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 10px;
  border-radius: 5px;
  line-height: 1;
}
.header-wrapper .topbar-content .lang-select-wrapper .lang-select-items a .lang-select-checked {
  opacity: 0;
  color: #0D2F3F;
}
.header-wrapper .topbar-content .lang-select-wrapper .lang-select-items a.selected {
  background-color: rgba(31, 127, 123, 0.05);
}
.header-wrapper .topbar-content .lang-select-wrapper .lang-select-items a.selected .lang-select-checked {
  opacity: 1;
}
.header-wrapper .topbar-content .lang-select-wrapper .lang-select-items a:hover {
  background-color: rgba(31, 127, 123, 0.05);
}
.header-wrapper .topbar-content .lang-select-wrapper .lang-select-items .item-content {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-wrapper .topbar-content .lang-select-wrapper .lang-select-items .item-text h5 {
  font-weight: 500;
  font-size: 14px;
  color: #0D2F3F;
  margin-bottom: 0;
}
.header-wrapper .topbar-content .lang-select-wrapper .lang-select-items .item-text span {
  font-size: 10px;
  color: #697488;
}
.header-wrapper .topbar-content .lang-select-wrapper ::-webkit-scrollbar {
  width: 3px;
  height: 90%;
  margin-left: -3px;
  padding-top: 5px;
  margin-top: 10px;
}
.header-wrapper .topbar-content .lang-select-wrapper ::-webkit-scrollbar-track {
  background-color: #ebebeb;
  border-radius: 7px;
}
.header-wrapper .topbar-content .lang-select-wrapper ::-webkit-scrollbar-thumb {
  border-radius: 7px;
  background: #999;
}
.header-wrapper .header-navbar {
  min-height: 85px;
  padding: 10px 0px;
  background: #ffffff;
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
}
.header-wrapper .header-navbar .navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-wrapper .header-navbar .logo-wrapper img {
  max-width: 150px;
  margin-right: 15px;
  max-height: 60px;
}
.header-wrapper .header-navbar .navbar-menu {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
}
@media (max-width: 991px) {
  .header-wrapper .header-navbar .navbar-menu {
    display: none;
  }
}
.header-wrapper .header-navbar .navbar-menu li {
  list-style: none;
}
.header-wrapper .header-navbar .navbar-menu a {
  display: inline-block;
  text-decoration: none;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #0D2F3F;
  padding: 10px 0px;
}
.header-wrapper .header-navbar li.has-dropdown {
  position: relative;
  cursor: pointer;
}
.header-wrapper .header-navbar li.has-dropdown:hover > ul {
  visibility: visible;
  opacity: 1;
  margin-top: 0;
}
.header-wrapper .header-navbar li.has-dropdown > ul {
  margin: 10px 0 0 0;
  padding: 0;
  background: #FFFFFF;
  box-shadow: 0 10px 60px rgba(5, 16, 54, 0.05);
  border-bottom: 5px solid #0D2F3F;
  min-width: 215px;
  min-height: 130%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 200;
}
.header-wrapper .header-navbar li.has-dropdown > ul::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #0D2F3F transparent;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.header-wrapper .header-navbar li.has-dropdown > ul li:first-child {
  padding-top: 10px;
}
.header-wrapper .header-navbar li.has-dropdown > ul li:last-child {
  padding-bottom: 15px;
}
.header-wrapper .header-navbar li.has-dropdown > ul a {
  display: block;
  text-decoration: none;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #0D2F3F;
  padding: 10px 20px;
  transition: all 0.3s ease;
}
.header-wrapper .header-navbar li.has-dropdown > ul a:hover {
  background-color: rgba(13, 47, 63, 0.1);
}
.header-wrapper .header-navbar .header-action {
  display: flex;
  gap: 10px;
}
@media (max-width: 991px) {
  .header-wrapper .header-navbar .header-action {
    display: none;
  }
}
.header-wrapper .header-navbar .header-action .btn {
  width: 130px;
  padding: 10px 20px;
  border: none;
  outline: none;
  color: #0D2F3F;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
.header-wrapper .header-navbar .header-action .btn-primary {
  background-color: #0D2F3F;
  color: #FFFFFF;
}
.header-wrapper .header-navbar .header-action .btn-secondary {
  background-color: #FFC62D;
}
.header-wrapper .mobile-menu-open {
  border: none;
  outline: none;
  background-color: transparent;
  font-size: 22px;
}
.header-wrapper .header-right-content {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 991px) {
  .header-wrapper .header-right-content {
    margin-left: auto;
    margin-right: 30px;
  }
}
.header-wrapper .header-cart {
  display: flex;
  align-items: center;
  position: relative;
}
.header-wrapper .header-cart .cart-total-price {
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  color: #0D2F3F;
  margin-right: 10px;
}
.header-wrapper .header-cart .cart-button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(13, 47, 63, 0.1);
  color: #0D2F3F;
  border: none;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-wrapper .header-cart .cart-button .badge {
  font-family: "Barlow", sans-serif;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #FFC62D;
  color: #0D2F3F;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -3px;
  right: -3px;
}
.header-wrapper .header-cart-content {
  width: 420px;
  background-color: #FFFFFF;
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.07);
  border-radius: 4px;
  padding: 25px 20px 25px 20px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 60px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}
@media (max-width: 1550px) {
  .header-wrapper .header-cart-content {
    transform: translateX(-77.5%);
  }
}
@media (max-width: 575px) {
  .header-wrapper .header-cart-content {
    padding: 15px 10px 15px 10px;
    width: 350px;
    left: 10px;
  }
}
.header-wrapper .header-cart-content::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #0d2f3f transparent;
  position: absolute;
  top: -10px;
  right: unset;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1550px) {
  .header-wrapper .header-cart-content::after {
    left: unset;
    right: 75px;
  }
}
@media (max-width: 575px) {
  .header-wrapper .header-cart-content::after {
    right: 48px;
  }
}
.header-wrapper .header-cart-content.show {
  visibility: visible;
  opacity: 1;
  top: 50px;
}
.header-wrapper .header-cart-content .cart-items {
  margin-top: 0;
}
.header-wrapper .header-cart-content .cart-items .cart-item {
  position: relative;
  box-shadow: none;
}
@media (max-width: 575px) {
  .header-wrapper .header-cart-content .cart-items .cart-item {
    gap: 10px;
  }
}
.header-wrapper .header-cart-content .cart-items .cart-item:not(:last-child) {
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  .header-wrapper .header-cart-content .cart-items .cart-item:not(:last-child) {
    margin-bottom: 30px;
  }
}
.header-wrapper .header-cart-content .cart-items .cart-item:after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #eeeeee;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
}
@media (max-width: 575px) {
  .header-wrapper .header-cart-content .cart-items .cart-item:after {
    bottom: -16px;
  }
}
@media (max-width: 575px) {
  .header-wrapper .header-cart-content .cart-items .item-thumb {
    width: 130px;
  }
}
.header-wrapper .header-cart-content .cart-items .item-title {
  margin-bottom: 5px;
}
@media (max-width: 575px) {
  .header-wrapper .header-cart-content .cart-items .item-title {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .header-wrapper .header-cart-content .cart-items .price {
    font-size: 14px;
  }
}
.header-wrapper .header-cart-content .header-cart-actions {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}
.header-wrapper .header-cart-content .header-cart-actions form {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.header-wrapper .header-cart-content .header-cart-actions .btn {
  padding: 0;
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  color: #0D2F3F;
  padding-bottom: 0;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .header-wrapper .header-cart-content .header-cart-actions .btn {
    font-size: 14px;
  }
}
.header-wrapper .header-cart-content .header-cart-actions .btn .icon {
  color: #FFC62D;
  font-size: 12px;
}
.header-wrapper .header-cart-content .header-cart-actions .btn img {
  transform: scale(0.8);
}
.header-wrapper .header-cart-content .check-in-out-date {
  font-size: 12px;
  line-height: 24px;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #333333;
}
.header-wrapper .header-cart-content .cart-amount {
  display: flex;
  justify-content: space-between;
  margin: 40px 0px 15px 0px;
}
.header-wrapper .header-cart-content .cart-amount h4 {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  color: #0D2F3F;
}
.header-wrapper .header-cart-content .cart-actions {
  display: flex;
  justify-content: space-between;
}
.header-wrapper .header-cart-content .cart-actions form {
  width: 100%;
}
.header-wrapper .header-cart-content .cart-actions .btn {
  padding: 10px 30px;
}
.header-wrapper .header-cart-content .empty-cart-msg {
  margin: auto;
  display: none;
}
.header-wrapper .header-cart-content .empty-cart-msg h4 {
  font-size: 18px;
  font-weight: 500;
  color: #999;
  text-align: center;
  margin-bottom: 0;
}
.header-wrapper .header-cart-content.empty-cart {
  padding: 25px;
}
.header-wrapper .header-cart-content.empty-cart .cart-amount {
  display: none;
}
.header-wrapper .header-cart-content.empty-cart .cart-actions {
  display: none;
}
.header-wrapper .header-profile-menu {
  position: relative;
}
@media (max-width: 991px) {
  .header-wrapper .header-profile-menu {
    display: none;
  }
}
.header-wrapper .header-profile-menu .profile-menu-content {
  background-color: #FFFFFF;
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.07);
  border-radius: 4px;
  width: 140px;
  border-bottom: 6px solid #0D2F3F;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 20px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}
.header-wrapper .header-profile-menu .profile-menu-content.show {
  visibility: visible;
  opacity: 1;
  margin-top: 10px;
}
.header-wrapper .header-profile-menu .profile-menu-content::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #0d2f3f transparent;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.header-wrapper .header-profile-menu .profile-menu-content ul {
  margin: 0;
  padding: 0;
}
.header-wrapper .header-profile-menu .profile-menu-content ul li {
  list-style: none;
  padding: 0;
}
.header-wrapper .header-profile-menu .profile-menu-content ul a {
  display: block;
  text-decoration: none;
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 42px;
  color: #0D2F3F;
  padding: 0px 15px;
}
.header-wrapper .header-profile-menu .profile-menu-content ul a.active {
  font-weight: 600;
}
.header-wrapper .header-profile-menu .profile-avatar img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* **************************************************
    Item Sidebar
************************************************** */
.item-details-sidebar {
  margin-top: 60px;
}
.item-details-sidebar .sidebar-content {
  padding: 20px;
  background: #FFFFFF;
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.07);
  border-radius: 12px;
}
.item-details-sidebar .sidebar-content .widget-check-info h5 {
  margin-top: 0;
}
.item-details-sidebar .number-of-persons {
  position: relative;
}
.item-details-sidebar .number-of-persons .icon {
  position: absolute;
  left: 15px;
  top: 71%;
  transform: translateY(-50%);
  width: 25px;
}
.item-details-sidebar .number-of-persons input {
  padding-left: 45px;
}
.item-details-sidebar .number-of-persons label {
  font-weight: 500;
  font-size: 18px;
  color: #000000;
  margin-bottom: 15px;
}
.item-details-sidebar .widget-total-price {
  padding: 20px;
  background-color: #0D2F3F;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
@media (max-width: 575px) {
  .item-details-sidebar .widget-total-price {
    padding: 15px;
  }
}
.item-details-sidebar .widget-total-price .price-wrapper {
  display: flex;
  align-items: center;
  gap: 4px;
}
.item-details-sidebar .widget-total-price .price-wrapper .price, .item-details-sidebar .widget-total-price .price-wrapper .type {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 35px;
  color: #FFFFFF;
}
@media (max-width: 575px) {
  .item-details-sidebar .widget-total-price .price-wrapper .price, .item-details-sidebar .widget-total-price .price-wrapper .type {
    font-size: 24px;
  }
}
.item-details-sidebar .widget-total-price .price-wrapper .type {
  font-size: 16px;
  font-weight: 500;
}
.item-details-sidebar .widget-total-price .discount-badge {
  min-width: 70px;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #0D2F3F;
  background-color: #FFC62D;
  padding: 5px;
  border-radius: 40px;
  display: flex;
  justify-content: center;
}
.item-details-sidebar .widget-check-info .check-item {
  border: 1px solid #D6D8DB;
  padding: 10px;
  border-radius: 5px;
}
.item-details-sidebar .widget-check-info .check-item.total-rooms {
  position: relative;
}
.item-details-sidebar .widget-check-info .split {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.item-details-sidebar .widget-check-info .split .check-item {
  width: 50%;
}
.item-details-sidebar .widget-check-info .label {
  display: block;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #5D6974;
  text-transform: uppercase;
}
.item-details-sidebar .widget-check-info .checkIn-date .date, .item-details-sidebar .widget-check-info .checkIn-date .month, .item-details-sidebar .widget-check-info .checkIn-date .day {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #0D2F3F;
}
.item-details-sidebar .widget-check-info .checkIn-date .month {
  font-size: 14px;
  font-weight: 500;
  color: #5D6974;
}
.item-details-sidebar .widget-check-info .checkIn-date .day {
  font-size: 14px;
  color: #0D2F3F;
}
.item-details-sidebar .widget-check-info .room-details .number, .item-details-sidebar .widget-check-info .room-details .text {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #0D2F3F;
}
.item-details-sidebar .widget-check-info .room-details .number {
  font-size: 20px;
  font-weight: 600;
}
.item-details-sidebar .widget-check-info .icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
}
.item-details-sidebar h5 {
  font-weight: 600;
  font-size: 18px;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 15px;
  margin: 20px 0px 15px 0px;
}
@media (max-width: 575px) {
  .item-details-sidebar h5 {
    font-size: 16px;
    margin: 15px 0px 15px 0px;
  }
}
.item-details-sidebar .widget-promocode .promo-input-box {
  position: relative;
}
.item-details-sidebar .widget-promocode .promo-input-box input {
  width: 100%;
  border: 1px solid #BDBDBD;
  border-radius: 4px;
  padding: 10px;
  height: 50px;
  padding-left: 40px;
  outline: none;
}
.item-details-sidebar .widget-promocode .promo-input-box input:focus {
  border: 1px solid #BDBDBD;
}
.item-details-sidebar .widget-promocode .promo-input-box .icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.item-details-sidebar .widget-promocode .promo-input-box .btn {
  display: flex;
  align-items: center;
  height: 40px;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}
.item-details-sidebar .widget-promocode ::-moz-placeholder {
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  color: #05172B;
}
.item-details-sidebar .widget-promocode ::placeholder {
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  color: #05172B;
}
.item-details-sidebar .widget-price-table .table-content {
  background-color: #F4F5F6;
  padding: 20px;
  border-radius: 8px;
}
@media (max-width: 575px) {
  .item-details-sidebar .widget-price-table .table-content {
    padding: 10px;
  }
}
.item-details-sidebar .widget-price-table .table-content .price-item {
  display: flex;
  justify-content: space-between;
}
.item-details-sidebar .widget-price-table .table-content .price-item:not(:last-child) {
  margin-bottom: 15px;
}
.item-details-sidebar .widget-price-table .table-content span, .item-details-sidebar .widget-price-table .table-content p {
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  color: #0D2F3F;
  margin-bottom: 0;
}
.item-details-sidebar .widget-price-table .total-price {
  display: flex;
  justify-content: space-between;
}
.item-details-sidebar .widget-price-table .total-price h5 {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  color: #000000;
}
.item-details-sidebar .widget-purchase {
  margin-top: 20px;
  text-align: center;
}
@media (max-width: 575px) {
  .item-details-sidebar .widget-purchase {
    margin-top: 10px;
  }
}
.item-details-sidebar .widget-purchase .btn {
  padding: 5px;
  min-height: 55px;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFC62D;
  color: #0D2F3F;
  font-weight: 600;
}
.item-details-sidebar .widget-purchase .btn span {
  margin-top: 0;
  display: inline-block;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #333333;
}
.item-details-sidebar .widget-purchase span {
  display: inline-block;
  margin-top: 10px;
}
.item-details-sidebar .widget-extra {
  margin-top: 20px;
}
.item-details-sidebar .widget-extra .extra-content .extra-content-item {
  display: flex;
  justify-content: space-between;
}
.item-details-sidebar .widget-extra .extra-content .extra-content-item:not(:last-child) {
  margin-bottom: 10px;
}
.item-details-sidebar .widget-extra .extra-content .form-check-label {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  cursor: pointer;
}
.item-details-sidebar .widget-extra .extra-content span {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #000000;
  display: inline-block;
  margin-right: 20px;
}
.item-details-sidebar .widget-extra .accordion-item {
  border: none;
  border-bottom: 1px solid #BDBDBD;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
}
.item-details-sidebar .widget-extra .accordion-item:not(:last-child) {
  margin-bottom: 10px;
}
.item-details-sidebar .widget-extra .accordion-body {
  padding-left: 0;
}
@media (max-width: 575px) {
  .item-details-sidebar .widget-extra .accordion-body {
    padding-top: 0;
  }
}
.item-details-sidebar .widget-extra .accordion-button {
  background-color: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  padding-left: 0;
  padding-right: 0;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  color: #000000;
}
.item-details-sidebar .widget-extra .accordion-button::after {
  background-image: none;
  content: "+";
  font-size: 24px;
  font-weight: 500;
  line-height: 17px;
  color: #0D2F3F;
}
.item-details-sidebar .widget-extra .accordion-button:not(.collapsed)::after {
  content: "-";
  transform: none;
  color: #0D2F3F;
}
.item-details-sidebar .widget-extra .accordion-button:not(.collapsed) {
  box-shadow: none;
}
.item-details-sidebar.customer-info {
  margin-top: 0;
}
.item-details-sidebar.customer-info .featured-item h4 {
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  color: #0D2F3F;
}
.item-details-sidebar.customer-info .featured-item .reviews h5 {
  margin-top: 0;
}
.item-details-sidebar.customer-info .featured-item .item-img {
  margin: 15px 0px 25px 0px;
  height: 190px;
}
.item-details-sidebar.customer-info .featured-item .item-img img {
  height: 100%;
  width: 100%;
  border-radius: 8px;
}

.recommended-items {
  margin-top: 45px;
}
.recommended-items .recommended-item {
  background: #FFFFFF;
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.07);
  border-radius: 4px;
  display: flex;
  gap: 20px;
  text-decoration: none;
}
.recommended-items .recommended-item:not(:last-child) {
  margin-bottom: 20px;
}
.recommended-items .item-desc {
  padding: 15px 10px 15px 0px;
}
.recommended-items .item-thumb {
  min-width: 150px;
  max-width: 150px;
  position: relative;
  overflow: hidden;
}
.recommended-items .item-thumb img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
}
.recommended-items .item-thumb.has-discount::after {
  content: "";
  width: 85px;
  height: 95px;
  background-image: url("./../images/illustration/discount-bg.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  bottom: -5px;
}
.recommended-items .item-thumb .discount {
  position: absolute;
  right: 5px;
  bottom: 0px;
  z-index: 10;
  text-align: center;
}
.recommended-items .item-thumb .discount h4 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #0D2F3F;
}
.recommended-items .item-thumb .discount h4 span {
  font-size: 10px;
  display: block;
  font-weight: 400;
}
.recommended-items .recommended-heading {
  font-weight: 600;
  font-size: 24px;
  color: #000000;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .recommended-items .recommended-heading {
    font-size: 20px;
  }
}
.recommended-items .reviews h5 {
  margin-top: 0;
  font-size: 14px;
}
.recommended-items .reviews .total-reviews {
  font-size: 12px;
}
.recommended-items .item-title {
  text-decoration: none;
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #0D2F3F;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.recommended-items .location {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  color: #333333;
  margin-top: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.recommended-items .location .icon {
  color: #6D9773;
}
.recommended-items .price-info {
  margin-top: 10px;
}
.recommended-items .price-info .price {
  font-size: 18px;
  margin-bottom: 0;
}
.recommended-items .price-info .price::after {
  bottom: -20px;
}
.recommended-items .price-info .old-price {
  font-size: 12px;
  margin-top: 0;
  margin-bottom: 0;
}
.recommended-items.cart-items .item-thumb {
  min-width: 150px;
  max-width: 150px;
}
.recommended-items.cart-items .cart-item {
  gap: 15px;
}
.recommended-items.cart-items .price-info {
  margin-top: 5px;
}
.recommended-items.cart-items .price-info .price {
  font-size: 14px;
}
.recommended-items.cart-items .price-info .price::after {
  bottom: -15px;
}
.recommended-items.cart-items .item-desc {
  padding: 5px 5px 5px 0px;
}

/* **************************************************
    Resort Sidebar
************************************************** */
.resort-list-sidebar .resort-details {
  padding: 15px;
}
.resort-list-sidebar .resort-details .resort-name {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #0D2F3F;
}
.resort-list-sidebar .resort-details .location {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #DDDDDD;
}
.resort-list-sidebar .resort-details .location .icon {
  margin-right: 5px;
}
.resort-list-sidebar .resort-details .location span {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
}
.resort-list-sidebar .resort-details .body-normal-text {
  font-size: 14px;
}
.resort-list-sidebar .resort-details .sidebar-map {
  margin-top: 20px;
}
.resort-list-sidebar .resort-details .sidebar-map iframe {
  border-radius: 8px;
}
@media (max-width: 1199px) {
  .resort-list-sidebar .resort-details .sidebar-map iframe {
    height: 350px;
  }
}
@media (max-width: 575px) {
  .resort-list-sidebar .resort-details .sidebar-map iframe {
    height: 150px;
  }
}
.resort-list-sidebar .sidebar-slider {
  position: relative;
}
.resort-list-sidebar .sidebar-slider .slider-item {
  max-width: 100%;
  height: 195px;
}
@media (max-width: 1199px) {
  .resort-list-sidebar .sidebar-slider .slider-item {
    height: 350px;
  }
}
@media (max-width: 575px) {
  .resort-list-sidebar .sidebar-slider .slider-item {
    height: 150px;
  }
}
.resort-list-sidebar .sidebar-slider .slider-item img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.resort-list-sidebar .sidebar-slider > .owl-dots {
  position: absolute;
  top: unset;
  right: unset;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.resort-list-sidebar .sidebar-slider .owl-stage-outer {
  margin-left: 0;
  padding-left: 0;
}

.sidebar-resort-info {
  background-color: #FFFFFF;
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.07);
  border-radius: 8px;
}
.sidebar-resort-info:not(:first-child) {
  margin-top: 30px;
  padding: 15px;
}
.sidebar-resort-info h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #0D2F3F;
}
.sidebar-resort-info h4 {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #0D2F3F;
}
.sidebar-resort-info .sidebar-policies {
  border-top: 1px solid #DDDDDD;
  margin-top: 10px;
  padding-top: 15px;
}
.sidebar-resort-info ul {
  margin: 0;
  padding: 0 5px 0 20px;
}
.sidebar-resort-info ul li {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 36px;
  color: #0D2F3F;
}
@media (max-width: 575px) {
  .sidebar-resort-info ul li {
    line-height: 26px;
  }
}

.profile-side-menu {
  background-color: #FCFCFD;
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.07);
  border: 1px solid #E6E8EC;
  border-radius: 12px;
  position: relative;
  padding: 50px 0px 0px 0px;
  margin: -130px 0 60px 30px;
}
@media (max-width: 991px) {
  .profile-side-menu {
    margin: -130px 30px 60px 30px;
  }
}
@media (max-width: 767px) {
  .profile-side-menu {
    margin: 0;
    border-radius: 0;
  }
}
.profile-side-menu .profile-avatar {
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .profile-side-menu .profile-avatar {
    max-width: 120px;
    margin-top: -115px;
    position: relative;
    margin-bottom: 20px;
  }
}
.profile-side-menu .profile-avatar .avatar-img {
  margin: auto;
}
.profile-side-menu .profile-avatar .avatar-img img {
  display: inline-block;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .profile-side-menu .profile-avatar .avatar-img img {
    max-width: 120px;
  }
}
@media (max-width: 767px) {
  .profile-side-menu .profile-avatar .avatar-img {
    margin: 0 0 0 25px;
  }
}
.profile-side-menu .name {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  color: #0D2F3F;
  padding-left: 25px;
  margin-bottom: 20px;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .profile-side-menu .name {
    margin-top: 20px;
  }
}
.profile-side-menu .update-profile-btn {
  position: relative;
  overflow: hidden;
  display: inline-block;
  cursor: pointer;
  margin: 20px 0px;
}
@media (max-width: 767px) {
  .profile-side-menu .update-profile-btn {
    position: absolute;
    bottom: 0;
    right: -40px;
  }
}
.profile-side-menu .update-profile-btn .btn {
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  color: #0D2F3F;
}
@media (max-width: 767px) {
  .profile-side-menu .update-profile-btn .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #FFFFFF;
    box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.07);
  }
}
.profile-side-menu .update-profile-btn .icon {
  margin-right: 5px;
}
@media (max-width: 767px) {
  .profile-side-menu .update-profile-btn .icon {
    margin-right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.profile-side-menu .update-profile-btn input[type=file] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.profile-side-menu .profile-menu {
  margin: 0;
  padding: 0;
}
.profile-side-menu .profile-menu li {
  list-style: none;
}
.profile-side-menu .profile-menu a {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 17px;
  color: #0D2F3F;
  padding: 25px;
  position: relative;
}
@media (max-width: 575px) {
  .profile-side-menu .profile-menu a {
    padding: 15px;
  }
}
.profile-side-menu .profile-menu a:before {
  content: "";
  width: 4px;
  height: 100%;
  background-color: #0D2F3F;
  border-radius: 5px;
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  transform: scale(0);
  transition: transform 0.3s ease;
}
.profile-side-menu .profile-menu a:hover:before, .profile-side-menu .profile-menu a.active:before {
  transform: scale(1);
}
.profile-side-menu .profile-menu a:hover, .profile-side-menu .profile-menu a.active {
  background-color: rgba(13, 47, 63, 0.03);
}
.profile-side-menu .profile-menu a .icon {
  margin-right: 10px;
  width: 20px;
}

/* **************************************************
  Banner section
************************************************** */
.profile-banner {
  width: 100%;
  height: 360px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 16px;
  position: relative;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .profile-banner {
    border-radius: 0;
    margin-top: 10px;
    height: 180px;
  }
}
.profile-banner .upload-btn-wrapper {
  overflow: hidden;
  display: inline-block;
  position: absolute;
  right: 30px;
  bottom: 30px;
  top: unset;
  cursor: pointer;
}
@media (max-width: 991px) {
  .profile-banner .upload-btn-wrapper {
    right: 30px;
    top: 20px;
    bottom: unset;
  }
}
@media (max-width: 767px) {
  .profile-banner .upload-btn-wrapper {
    right: 20px;
    bottom: 20px;
    top: unset;
  }
}
.profile-banner .upload-btn-wrapper .btn {
  border: 1px solid #FFFFFF;
  color: #0D2F3F;
  background-color: transparent;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 14px;
}
.profile-banner .upload-btn-wrapper input[type=file] {
  font-size: 100px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

/* **************************************************
  Mobile Menu
************************************************** */
.mobile-menu-wrapper {
  width: 340px;
  max-width: 100%;
  padding-top: 10px;
  background-color: #FFFFFF;
  overflow-y: scroll;
  transition: all 0.4s ease;
  position: fixed;
  top: 0;
  bottom: 0;
  left: -100%;
  visibility: hidden;
  opacity: 0;
  z-index: 999;
}
.mobile-menu-wrapper.show {
  left: 0;
  visibility: visible;
  opacity: 1;
}
.mobile-menu-wrapper .mobile-menu-content {
  padding: 20px;
}
.mobile-menu-wrapper .menu-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
.mobile-menu-wrapper .menu-header .menu-logo img {
  max-height: 60px;
  max-width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}
.mobile-menu-wrapper .menu-header .mobile-menu-close {
  border: 0;
  outline: 0;
  background-color: #0D2F3F;
  min-width: 35px;
  height: 35px;
  border-radius: 50%;
  color: #FFFFFF;
}
.mobile-menu-wrapper .mobile-menu-user-info {
  margin-top: 20px;
}
.mobile-menu-wrapper .mobile-menu-user-info .user-profile {
  display: flex;
  align-items: center;
  gap: 15px;
}
.mobile-menu-wrapper .mobile-menu-user-info .user-profile .user-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}
.mobile-menu-wrapper .mobile-menu-user-info .user-profile .user-avatar img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}
.mobile-menu-wrapper .mobile-menu-user-info .user-profile .user-name {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #000000;
  text-decoration: none;
  text-transform: capitalize;
}
.mobile-menu-wrapper .mobile-menu-user-info .user-menu {
  margin: 0;
  padding: 0;
  margin-top: 20px;
}
.mobile-menu-wrapper .mobile-menu-user-info .user-menu li {
  list-style: none;
}
.mobile-menu-wrapper .mobile-menu-user-info .user-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 5px 0px;
}
.mobile-menu-wrapper .mobile-menu-user-info .user-menu a .icon {
  display: flex;
  min-width: 20px;
}
.mobile-menu-wrapper .mobile-menu-user-info .user-menu a .label {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #667085;
}
.mobile-menu-wrapper a {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #667085;
}
.mobile-menu-wrapper .menu-select {
  margin: 0;
  padding: 0;
  margin-top: 20px;
}
.mobile-menu-wrapper .menu-select a.has-arrow {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.mobile-menu-wrapper .menu-select li {
  list-style: none;
}
.mobile-menu-wrapper .menu-select li a {
  text-decoration: none;
  padding: 5px 0px;
}
.mobile-menu-wrapper .menu-select li ul {
  margin: 0;
  padding: 0;
  margin-left: 20px;
  max-height: 100px;
  overflow: auto;
}
.mobile-menu-wrapper .menu-select li ul a {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #667085;
}
.mobile-menu-wrapper .menu-select li ul a.selected {
  font-weight: 800;
  color: #000000;
}
.mobile-menu-wrapper .menu-select .menu-currency-select {
  max-height: 130px;
  overflow-y: auto;
}
.mobile-menu-wrapper .menu-select .menu-currency-select li button {
  text-transform: uppercase;
}
.mobile-menu-wrapper .menu-select .menu-lang-select li, .mobile-menu-wrapper .menu-select .menu-currency-select li {
  padding: 5px 0;
}
.mobile-menu-wrapper .menu-select .menu-lang-select li .icon img, .mobile-menu-wrapper .menu-select .menu-currency-select li .icon img {
  width: 18px;
  margin-right: 5px;
}
.mobile-menu-wrapper .menu-select .menu-lang-select li button, .mobile-menu-wrapper .menu-select .menu-currency-select li button {
  font-family: "Barlow", sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  outline: 0;
  background-color: transparent;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  color: #000000;
}
.mobile-menu-wrapper .mobile-menu-items {
  margin: 10px 0 20px 0;
  padding: 0;
}
.mobile-menu-wrapper .mobile-menu-items ul {
  margin: 0;
  padding: 0;
}
.mobile-menu-wrapper .mobile-menu-items li {
  list-style: none;
  padding: 15px 0;
  border-top: 1px solid #EAECF0;
}
.mobile-menu-wrapper .mobile-menu-items li:last-child {
  border-bottom: 1px solid #EAECF0;
}
.mobile-menu-wrapper .mobile-menu-items li ul {
  margin-left: 20px;
}
.mobile-menu-wrapper .mobile-menu-items li ul li {
  border: none;
}
.mobile-menu-wrapper .mobile-menu-items a {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #667085;
  text-decoration: none;
}
.mobile-menu-wrapper .mobile-menu-items a.has-arrow {
  display: flex;
  justify-content: space-between;
}
.mobile-menu-wrapper .mobile-menu-contact-info {
  background-color: #F9FAFB;
  padding: 20px;
}
.mobile-menu-wrapper .mobile-menu-contact-info .contact-items {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
}
.mobile-menu-wrapper .mobile-menu-contact-info .contact-items li {
  list-style: none;
}
.mobile-menu-wrapper .mobile-menu-contact-info .contact-items a {
  text-decoration: none;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #0D2F3F;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.mobile-menu-wrapper .mobile-menu-contact-info .contact-items a .icon {
  max-width: 50%;
}
.mobile-menu-wrapper .mobile-menu-contact-info .social-links {
  margin: 20px 0 0 0;
  padding: 20px 0 0 0;
  display: flex;
  gap: 20px;
  justify-content: center;
  border-top: 1px solid #EAECF0;
}
.mobile-menu-wrapper .mobile-menu-contact-info .social-links li {
  list-style: none;
}
.mobile-menu-wrapper .mobile-menu-contact-info .social-links a {
  text-decoration: none;
  color: #6D9773;
}

/* **************************************************
  Preloader
************************************************** */
/*** Credit: https://cssloaders.github.io/ ***/
.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 99990;
  display: none;
}

.is-loading .loader-overlay {
  display: flex;
}

.loader {
  width: 96px;
  height: 96px;
  border: 3px dotted #FFFFFF;
  border-style: solid solid dotted dotted;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  animation: rotation 2s linear infinite;
}

.loader::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 3px dotted #FFC62D;
  border-style: solid solid dotted;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  animation: rotationBack 1s linear infinite;
  transform-origin: center center;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotationBack {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
/* **************************************************
  Mobile search filter
************************************************** */
.filter-bar-mobile {
  background-color: #ffffff;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.filter-bar-mobile li {
  width: 50%;
  flex: 1;
}
.filter-bar-mobile button {
  width: 100%;
  height: 60px;
  border: none;
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.08) 0 -2px 10px;
  font-weight: 500;
  color: rgb(51, 51, 51);
  font-size: 16px;
  line-height: 21px;
  text-transform: capitalize;
}
.filter-bar-mobile button span {
  padding-left: 6px;
}
.filter-bar-mobile button img {
  width: 16px;
  max-height: 16px;
}
.filter-bar-mobile button img.rotate-90 {
  transform: rotate(90deg);
}
.filter-bar-mobile button:active, .filter-bar-mobile button:focus, .filter-bar-mobile button:hover {
  outline: 0;
}
.filter-bar-mobile .col:first-child {
  border-right: 1px solid #CCCCCC;
}

.mobile-filter-popup {
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 50px);
  background-color: #ffffff;
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.07);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  top: auto;
  bottom: 0;
  transform: translateY(100%);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  overflow-y: auto;
}
.mobile-filter-popup.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-filter-popup .search-sidebar-filter {
  padding: 50px 20px 0px 20px;
}
.mobile-filter-popup button.mobile-filter-close {
  background: #FFC62D;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 10px;
  top: 15px;
  border: none;
  border-radius: 50%;
}
.mobile-filter-popup .mobile-filter-actions {
  margin-top: 30px;
  background-color: #ffffff;
  padding: 15px 0px;
  display: flex;
  gap: 10px;
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
}
.mobile-filter-popup .mobile-filter-actions .btn {
  flex: 1;
  padding: 8px 5px 12px 5px;
  font-size: 14px;
  border-radius: 4px;
}
.mobile-filter-popup .mobile-filter-actions .btn.reset-btn {
  background-color: rgb(172, 201, 209);
}
.mobile-filter-popup .mobile-filter-actions .btn.apply-btn {
  background-color: #0D2F3F;
  color: #FFFFFF;
}

.dark-overlay:before {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}
@media (min-width: 991px) {
  .dark-overlay:before {
    display: none;
  }
}

/* **************************************************
    Scroll to top button
************************************************** */
.scroll-top-btn {
  display: inline-block;
  background-color: #6D9773;
  color: #FFFFFF;
  width: 45px;
  height: 45px;
  text-align: center;
  border-radius: 50%;
  border: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
@media (max-width: 575px) {
  .scroll-top-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
    right: 15px;
    bottom: 15px;
  }
}
.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
}

[dir=rtl] .owl-carousel,
[dir=rtl] .bx-wrapper {
  direction: ltr;
}
[dir=rtl] .owl-carousel .owl-item {
  direction: rtl;
}
[dir=rtl] .search-form .search-button .icon {
  margin-left: 6px;
}
[dir=rtl] .features-wrapper .feature-item .icon {
  margin-left: 16px;
}
[dir=rtl] .resorts-list .facilites li:last-child {
  margin-right: 15px;
}
[dir=rtl] .user-feedback-wrapper .feedback-card .client-info {
  margin-top: 40px;
}
[dir=rtl] .newsletter-wrapper .form-item .btn {
  border-radius: 8px 0px 0px 8px;
}
[dir=rtl] .newsletter-wrapper .form-item input {
  border-radius: 0px 8px 8px 0px;
}
[dir=rtl] .footer-wrapper .footer-widget h3::before,
[dir=rtl] .footer-wrapper .footer-widget h3::after,
[dir=rtl] .footer-wrapper .footer-widget.contact .contact-mail::after {
  left: unset;
  right: 0;
}
[dir=rtl] .footer-wrapper .footer-widget.contact .contact-mail::after {
  left: unset;
  right: -95px;
}
[dir=rtl] .select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: unset;
  right: 10px;
}
[dir=rtl] .search-form .date-range input {
  right: 5px;
}
[dir=rtl] .btn.button-go-home {
  display: flex !important;
  flex-direction: row-reverse;
  justify-content: flex-end;
  max-width: -moz-max-content;
  max-width: max-content;
}
[dir=rtl] .contact-form-wrapper .contact-form .input-item .icon {
  right: unset;
  left: 20px;
}
[dir=rtl] .item-details-sidebar .widget-check-info .icon {
  right: unset;
  left: 15px;
}
[dir=rtl] .search-items-wrapper .single-search-item .price-details .price-info::after {
  right: unset;
  left: 0;
}
[dir=rtl] .search-items-wrapper .single-search-item .price-details .price-info {
  padding-right: unset;
  margin-right: unset;
  margin-left: 15px;
  padding-left: 15px;
}
[dir=rtl] .search-items-wrapper .single-search-item .facilites li:last-child {
  padding-right: 20px;
  margin-right: 20px;
}
[dir=rtl] .search-items-wrapper .single-search-item .facilites li:first-child::after {
  display: none;
}
[dir=rtl] .item-details-wrapper .item-details .item-desc-tab ul li {
  margin-right: 30px;
}
[dir=rtl] .profile-side-menu .profile-menu a {
  gap: 10px;
}
[dir=rtl] .profile-side-menu .name {
  padding-right: 35px;
}
[dir=rtl] .account-details .info-items .info-item .left-content {
  margin-right: 0;
  gap: 10px;
}
[dir=rtl] .header-wrapper .topbar-content .lang-select-wrapper .lang-select-box {
  right: unset;
  left: 0;
}
[dir=rtl] .select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 20px !important;
}
[dir=rtl] .item-details-wrapper .item-details .item-features .feature-item {
  margin-right: 25px !important;
}
[dir=rtl] .item-details-wrapper .item-details .item-desc .social-links li {
  margin-right: 15px;
}
[dir=rtl] .my-booking-table ul.nav-pills .nav-link,
[dir=rtl] .search-form .form-item .guest-select label,
[dir=rtl] .search-form .form-item .room-select label {
  gap: 10px;
}
[dir=rtl] .search-form .form-item .form-value p {
  justify-content: end;
}
[dir=rtl] .search-form .form-item .select2-container--default .select2-selection--single .select2-selection__rendered {
  text-align: left !important;
  padding-left: 10px !important;
}
[dir=rtl] .search-form .date-range input {
  text-align: left;
  padding-left: 45px;
}
[dir=rtl] .select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 30px !important;
}
[dir=rtl] .search-sidebar-filter .accordion .accordion-button::after {
  right: 0;
}
[dir=rtl] .header-wrapper .topbar-content .left-content .contact-items::after {
  display: none;
}
@media (max-width: 1550px) {
  [dir=rtl] .header-wrapper .header-cart-content {
    transform: translateX(-20%);
  }
  [dir=rtl] .header-wrapper .header-cart-content::after {
    left: 86px;
    right: unset;
  }
}

/* **************************************************
    Components styles import
************************************************** */
/* **************************************************
    Hero section
************************************************** */
.hero-banner {
  padding: 80px 0px 120px 0px;
  max-width: 100%;
  background-image: url("./../images/hero-banner.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #fffdf5;
  position: relative;
  overflow: visible;
}
.hero-banner:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  inset: 0;
  z-index: 1;
}
@media (max-width: 575px) {
  .hero-banner {
    padding: 50px 0px 100px 0px;
  }
}
.hero-banner .hero-content {
  max-width: 900px;
  position: relative;
  z-index: 100;
  margin: 0 auto;
  text-align: center;
}
.hero-banner .hero-heading {
  font-weight: 600;
  font-size: 64px;
  line-height: 80px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
}
@media (max-width: 575px) {
  .hero-banner .hero-heading {
    font-size: 44px;
    line-height: 54px;
  }
}
.hero-banner .hero-heading .hero-heading-illustration {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.hero-banner .hero-heading .hero-heading-illustration::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 15px;
  background-image: url("./../images/multiple-hotel/hero-yellow-border.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center bottom;
  z-index: -1;
}
@media (max-width: 575px) {
  .hero-banner .hero-heading .hero-heading-illustration::after {
    height: 10px;
    bottom: 3px;
  }
}
.hero-banner .hero-heading .hero-flower {
  display: inline-block;
  width: 60px;
  height: 60px;
  margin-left: 10px;
  vertical-align: middle;
  position: relative;
  top: -5px;
}
@media (max-width: 575px) {
  .hero-banner .hero-heading .hero-flower {
    width: 40px;
    height: 40px;
    margin-left: 5px;
  }
}
.hero-banner .hero-heading .hero-flower img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.hero-banner .hero-counters {
  display: inline-flex;
  gap: 50px;
  margin-top: 50px;
  list-style: none;
  padding: 25px 50px;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 575px) {
  .hero-banner .hero-counters {
    gap: 30px;
    margin-top: 30px;
    padding: 20px 30px;
    flex-wrap: wrap;
  }
}
.hero-banner .hero-counters li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  position: relative;
  padding: 0 20px;
}
@media (max-width: 575px) {
  .hero-banner .hero-counters li {
    padding: 0 10px;
  }
}
.hero-banner .hero-counters li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
}
@media (max-width: 575px) {
  .hero-banner .hero-counters li:not(:last-child)::after {
    display: none;
  }
}
.hero-banner .hero-counters li h4 {
  font-size: 64px;
  line-height: 1;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.4);
  letter-spacing: -2px;
}
@media (max-width: 575px) {
  .hero-banner .hero-counters li h4 {
    font-size: 48px;
  }
}
.hero-banner .hero-counters li h4 .countTo {
  display: inline-block;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-banner .hero-counters li h4 .postfix {
  margin-left: 0;
  color: #d4a745;
  -webkit-text-fill-color: #d4a745;
}
.hero-banner .hero-counters li .label {
  font-size: 15px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
}
@media (max-width: 575px) {
  .hero-banner .hero-counters li .label {
    font-size: 14px;
  }
}
.hero-banner .hero-slogan {
  font-size: 34px;
  line-height: 44px;
  color: #fff;
  font-weight: 500;
}
@media (max-width: 575px) {
  .hero-banner .hero-slogan {
    font-size: 24px;
    line-height: 34px;
  }
}

/* **************************************************
    Select2 styles
************************************************** */
.c-select.select2-dropdown {
  max-width: 240px;
  background-color: #FFFFFF;
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.07);
  border: none;
  border-bottom: 5px solid #6D9773;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
  margin-top: 10px;
  padding: 0px 0px 10px 0px;
}
.c-select.select2-dropdown.select2-dropdown--above {
  top: -30px;
}
.c-select.select2-dropdown.select2-dropdown--above::after {
  top: 102%;
  transform: rotate(180deg);
}
.c-select.select2-dropdown::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #6D9773 transparent;
  position: absolute;
  top: -10px;
  left: 25px;
}
.c-select.select2-dropdown .select2-results__option {
  padding: 10px;
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: #000000;
}
.c-select.select2-dropdown .location-icon {
  display: flex;
  gap: 10px;
}
.c-select.select2-dropdown .location-icon img {
  width: 20px;
  margin-top: -2px;
}

.country-code-select {
  max-width: 240px;
  background-color: #FFFFFF;
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.07);
  border: none;
  border-bottom: 5px solid #6D9773;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
  margin-top: 10px;
  padding: 0px 0px 10px 0px;
}
.country-code-select .select2-results__option {
  padding: 10px;
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: #000000;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #333333;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: transparent;
  color: #000000;
}

::-webkit-scrollbar {
  width: 3px;
  height: 90%;
  margin-left: -3px;
  padding-top: 5px;
  margin-top: 10px;
}

::-webkit-scrollbar-track {
  background-color: #ebebeb;
  border-radius: 7px;
}

::-webkit-scrollbar-thumb {
  border-radius: 7px;
  background: #999;
}

/* **************************************************
    Swal2 styles
************************************************** */
.swal2-container.swal-alert .swal2-modal {
  padding: 252px 20px 55px 20px;
  border-radius: 16px;
  min-height: 600px;
  width: 600px;
  grid-template-rows: 1fr 1.5fr auto;
  position: relative;
  overflow: hidden;
  z-index: 95;
}
@media (max-width: 575px) {
  .swal2-container.swal-alert .swal2-modal {
    grid-template-rows: unset;
    min-height: 450px;
    padding: 165px 20px 55px 20px;
  }
}
.swal2-container.swal-alert .swal2-modal:before {
  content: "";
  background-color: #0D2F3F;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 180px;
  z-index: 1;
}
@media (max-width: 575px) {
  .swal2-container.swal-alert .swal2-modal:before {
    height: 120px;
  }
}
.swal2-container.swal-alert .swal2-modal:after {
  content: "";
  background-color: #FFFFFF;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: calc(100% - 180px);
  z-index: 1;
  background-image: url("../images/bg-pattern.png");
}
.swal2-container.swal-alert.swal-success .swal2-modal {
  grid-template-rows: 1fr;
  padding: 230px 20px 0 20px;
  min-height: 510px;
}
.swal2-container.swal-alert.swal-error .swal2-modal {
  grid-template-rows: 1fr 1fr;
  padding: 210px 20px 0 20px;
  min-height: 510px;
}
.swal2-container.swal-alert .swal2-close {
  background-color: #FFC62D;
  height: 42px;
  width: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 95;
}
@media (max-width: 575px) {
  .swal2-container.swal-alert .swal2-close img {
    transform: scale(0.8);
  }
}
@media (max-width: 575px) {
  .swal2-container.swal-alert .swal2-close {
    width: 30px;
    height: 30px;
  }
}
.swal2-container.swal-alert .swal2-icon {
  display: block !important;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 96px;
  width: 150px;
  height: 150px;
  background: #0D2F3F;
  border: 6px solid #FFFFFF;
  z-index: 991;
}
@media (max-width: 575px) {
  .swal2-container.swal-alert .swal2-icon {
    width: 90px;
    height: 90px;
    top: 70px;
  }
}
.swal2-container.swal-alert .swal2-image {
  display: block !important;
  position: absolute;
  left: 0;
  right: 0;
  top: 140px;
  margin: 0 auto;
  z-index: 991;
}
@media (max-width: 575px) {
  .swal2-container.swal-alert .swal2-image {
    transform: scale(0.7);
    top: 80px;
  }
}
.swal2-container.swal-alert .swal2-title {
  color: #0D2F3F;
  font-weight: 600;
  font-size: 36px;
  line-height: 44px;
  padding: 0 0 5px 0;
  display: flex !important;
  word-break: break-word;
  align-self: self-end;
  justify-content: center;
  z-index: 99;
}
@media (max-width: 575px) {
  .swal2-container.swal-alert .swal2-title {
    font-size: 24px;
    line-height: 30px;
    margin-top: 10px;
  }
}
.swal2-container.swal-alert.swal-success .swal2-title {
  align-self: center;
}
.swal2-container.swal-alert .swal2-html-container {
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  color: #333333;
  margin: 20px 0px 0px 0px;
  padding: 0px 30px;
  z-index: 99;
  align-self: self-start;
  white-space: pre-wrap;
}
@media (max-width: 575px) {
  .swal2-container.swal-alert .swal2-html-container {
    margin-top: 10px;
    font-size: 16px;
    line-height: 22px;
  }
}
.swal2-container.swal-alert .swal2-actions {
  width: 100%;
  gap: 20px;
  align-self: end;
  z-index: 99;
  height: 60px;
  margin: 0;
}
@media (max-width: 575px) {
  .swal2-container.swal-alert .swal2-actions {
    height: 70px;
  }
}
.swal2-container.swal-alert .swal2-actions button {
  padding: 10px 30px;
  outline: 0 !important;
  box-shadow: none !important;
}
.swal2-container.swal-alert .swal2-actions .btn-primary {
  background-color: #0D2F3F;
}
.swal2-container.swal-alert .swal2-actions .btn-outline {
  border: 2px solid #0D2F3F;
  font-style: normal;
  font-weight: 500;
  color: #23262F;
}

/* **************************************************
    Reviews
************************************************** */
.reviews {
  display: flex;
  align-items: center;
}
.reviews .review {
  display: flex;
  align-items: center;
  gap: 5px;
}
.reviews .review .star {
  color: #6D9773;
}
.reviews .review h5 {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  color: #0D2F3F;
}
.reviews .total-reviews {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  color: #23262F;
  display: inline-block;
  margin-left: 10px;
}

/* **************************************************
  Search form
************************************************** */
.search-form {
  position: relative;
  z-index: 200;
  margin-top: -140px;
}
@media (max-width: 575px) {
  .search-form {
    margin-top: -100px;
  }
}
.search-form .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.search-form.no-tab {
  margin-top: -80px;
}
.search-form.no-tab .container {
  display: flex;
  justify-content: center;
}
.search-form.no-tab .tab-content {
  border-radius: 12px;
  width: auto;
  max-width: none;
  padding: 25px 25px;
}
.search-form.no-tab .tab-content.centered {
  margin: 0 auto;
}
@media (max-width: 575px) {
  .search-form.no-tab .tab-content {
    width: 100%;
    padding: 20px 15px;
  }
}
.search-form.no-tab .form-content {
  justify-content: center;
  gap: 10px;
}
.search-form.no-tab .form-item {
  flex: 0 0 auto;
  min-width: 200px;
}
@media (max-width: 575px) {
  .search-form.no-tab .form-item {
    width: 100%;
    min-width: 100%;
  }
}
.search-form.no-tab .search-button {
  min-width: 120px;
  flex: 0 0 auto;
}
.search-form .form-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}
@media (max-width: 767px) {
  .search-form .form-content {
    flex-wrap: wrap;
  }
}
.search-form .form-content.bg-white {
  background-color: #FFFFFF;
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.07);
  border-radius: 4px;
  padding: 30px 20px;
}
@media (max-width: 767px) {
  .search-form .form-content.bg-white {
    padding: 30px 10px;
  }
}
.search-form .form-item {
  background: #fff;
  position: relative;
  height: 60px;
  min-width: 180px;
  border-radius: 8px;
  flex: 1 1 auto;
  cursor: pointer;
}
@media (max-width: 767px) {
  .search-form .form-item {
    min-width: 100%;
  }
}
.search-form .form-item.lg {
  width: 40%;
}
@media (max-width: 575px) {
  .search-form .form-item.lg {
    width: 100%;
  }
}
.search-form .form-item.lg .select2-container {
  width: 100% !important;
}
.search-form .form-item.lg .input-label {
  left: 45px;
}
.search-form .form-item.lg .select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 15px;
}
.search-form .form-item.lg .date-range {
  margin-left: 7px;
}
@media (max-width: 575px) {
  .search-form .form-item {
    width: 100%;
  }
}
.search-form .form-item .input-label {
  position: absolute;
  left: 39px;
  top: 8px;
  z-index: 100;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #0D2F3F;
  cursor: pointer;
}
.search-form .form-item .icon {
  width: 20px;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  margin-right: 10px;
}
.search-form .form-item .form-value {
  margin: 35px 0 0 40px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #333333;
  cursor: pointer;
}
.search-form .form-item .form-value span {
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-right: 4px;
}
.search-form .form-item .select2-container {
  width: 100% !important;
}
@media (max-width: 575px) {
  .search-form .form-item .select2-container {
    width: 100% !important;
  }
}
.search-form .form-item .select2-container--default .select2-selection--single {
  height: 100%;
  padding-left: 30px;
  border: none;
  border-radius: 8px;
}
@media (max-width: 575px) {
  .search-form .form-item .select2-container--default .select2-selection--single {
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    height: 100%;
  }
}
.search-form .form-item .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-top: 30px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #333333;
}
.search-form .form-item .select2-container--default .select2-selection--single .select2-selection__arrow {
  margin-top: 18px;
}
.search-form .form-item .select2-container--default .select2-selection--single .select2-selection__arrow b {
  position: relative;
  border: none;
}
.search-form .form-item .select2-container--default .select2-selection--single .select2-selection__arrow b::before {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  width: 100%;
  height: 100%;
  position: absolute;
  right: 10px;
  top: -15px;
  font-size: 12px;
}
.search-form .form-item .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b::before {
  content: "\f077";
}
.search-form .form-item .select2-container--default .select2-search--dropdown .select2-search__field {
  border-color: #aec1db;
}
.search-form .form-item .select2-container--default .select2-search--dropdown .select2-search__field:focus {
  outline: 0;
}
.search-form .form-item .guest-select,
.search-form .form-item .room-select {
  background: #FFFFFF;
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.07);
  border-radius: 12px;
  padding: 30px 20px;
  margin-top: 10px;
  position: relative;
  visibility: hidden;
  opacity: 0;
  width: 330px;
  transition: all 0.3s ease;
  position: absolute;
  top: 60px;
}
@media (max-width: 575px) {
  .search-form .form-item .guest-select,
  .search-form .form-item .room-select {
    padding: 20px;
    max-width: 100%;
  }
}
.search-form .form-item .guest-select.show,
.search-form .form-item .room-select.show {
  visibility: visible;
  opacity: 1;
  z-index: 200;
}
.search-form .form-item .guest-select.show .room-select-box::after,
.search-form .form-item .guest-select.show .guest-select-box::after,
.search-form .form-item .room-select.show .room-select-box::after,
.search-form .form-item .room-select.show .guest-select-box::after {
  transform: rotate(-180deg);
}
.search-form .form-item .guest-select::before,
.search-form .form-item .room-select::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #6D9773 transparent;
  position: absolute;
  top: -10px;
  left: 30px;
}
.search-form .form-item .guest-select label,
.search-form .form-item .room-select label {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-size: 16px;
  display: flex;
  color: #6D9773;
  cursor: pointer;
}
@media (max-width: 575px) {
  .search-form .form-item .guest-select label,
  .search-form .form-item .room-select label {
    flex-wrap: wrap;
    flex-direction: column;
  }
}
.search-form .form-item .guest-select label span,
.search-form .form-item .room-select label span {
  font-weight: 400;
  font-size: 10px;
  color: #333333;
  display: flex;
  align-items: center;
  margin-top: 4px;
  margin-left: 4px;
}
.search-form .form-item .guest-select .select-item,
.search-form .form-item .room-select .select-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 575px) {
  .search-form .form-item .guest-select .select-item,
  .search-form .form-item .room-select .select-item {
    gap: 10px;
  }
}
.search-form .form-item .guest-select .select-item:not(:last-child),
.search-form .form-item .room-select .select-item:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .search-form .form-item .guest-select .select-item:not(:last-child),
  .search-form .form-item .room-select .select-item:not(:last-child) {
    margin-bottom: 15px;
  }
}
.search-form .form-item .guest-select .select-actions,
.search-form .form-item .room-select .select-actions {
  display: flex;
  gap: 10px;
}
.search-form .form-item .guest-select .select-actions button,
.search-form .form-item .room-select .select-actions button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0.5px solid #aec1db;
  background-color: transparent;
  outline: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 575px) {
  .search-form .form-item .guest-select .select-actions button img,
  .search-form .form-item .room-select .select-actions button img {
    transform: scale(0.8);
  }
}
@media (max-width: 575px) {
  .search-form .form-item .guest-select .select-actions button,
  .search-form .form-item .room-select .select-actions button {
    width: 30px;
    height: 30px;
  }
}
.search-form .form-item .guest-select .select-actions input,
.search-form .form-item .room-select .select-actions input {
  width: 40px;
  height: 36px;
  border: 0.5px solid #aec1db;
  background-color: transparent;
  border-radius: 8px;
  text-align: center;
}
@media (max-width: 575px) {
  .search-form .form-item .guest-select .select-actions input,
  .search-form .form-item .room-select .select-actions input {
    height: 30px;
  }
}
.search-form .form-item .room-select-actions {
  display: flex;
  justify-content: space-between;
  border-top: 0.5px solid #aec1db;
  margin-top: 30px;
  padding-top: 30px;
}
@media (max-width: 575px) {
  .search-form .form-item .room-select-actions {
    padding-top: 15px;
    margin-top: 15px;
  }
}
.search-form .form-item .room-select-actions .button-primary {
  color: #0D2F3F;
  color: #FFFFFF;
}
.search-form .form-item .room-select-actions .reset-button {
  background: rgba(63, 86, 78, 0.2);
  color: #6D9773;
}
.search-form .form-item .room-select-box,
.search-form .form-item .guest-select-box {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.search-form .form-item .room-select-box::after,
.search-form .form-item .guest-select-box::after {
  content: "";
  background-image: url("./../images/icons/chevron.svg");
  background-repeat: no-repeat;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 25px;
  right: 10px;
}
.search-form .form-item .room-select-box label,
.search-form .form-item .guest-select-box label {
  cursor: pointer;
}
.search-form .form-item .room-select-box.toggle-icon::after,
.search-form .form-item .guest-select-box.toggle-icon::after {
  transform: rotate(-180deg);
  top: 20px;
}
.search-form .form-item.event-budget .input-group {
  width: 100%;
  height: 100%;
}
.search-form .form-item.event-budget .input-group:active, .search-form .form-item.event-budget .input-group:focus {
  outline: 0;
  border: 0;
}
.search-form .form-item.event-budget input {
  border: none;
  width: 100%;
  padding-left: 40px;
  border-radius: 4px;
}
.search-form .form-item.event-budget input:active, .search-form .form-item.event-budget input:focus {
  outline: 0;
  border: 0;
}
.search-form .form-item.event-budget .input-label {
  top: 16px;
}
.search-form .form-item.event-budget .icon {
  color: #0D2F3F;
  font-size: 18px;
  top: 50%;
}
.search-form .form-item.event-budget ::-moz-placeholder {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #0D2F3F;
}
.search-form .form-item.event-budget ::placeholder {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #0D2F3F;
}
.search-form .date-range {
  position: relative;
}
.search-form .date-range input {
  width: 100%;
  padding-left: 38px;
  background-color: transparent;
  border: none;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #333333;
  position: absolute;
  top: 30px;
  cursor: pointer;
}
.search-form .date-range input:focus {
  outline: 0;
  border: 0;
}
.search-form .search-button {
  background-color: #0D2F3F;
  width: 170px;
  min-height: 60px;
  padding: 10px;
  border-radius: 8px;
  color: #FFFFFF;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 17px;
}
@media (max-width: 767px) {
  .search-form .search-button {
    width: 100%;
    margin-top: 10px;
  }
}
.search-form .search-button .icon {
  margin-right: 6px;
}
.search-form .search-button .icon img {
  max-width: 22px;
}
.search-form .tab-controls {
  max-width: 470px;
  min-width: -moz-max-content;
  min-width: max-content;
  margin: 0 auto;
  border-radius: 12px;
  padding: 20px 30px 0 30px;
}
@media (max-width: 575px) {
  .search-form .tab-controls {
    padding: 10px 15px 0 15px;
  }
}
.search-form .tab-controls button {
  background-color: transparent;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  border-radius: 0;
  padding: 15px 0px;
  border-bottom: 2px solid transparent;
}
@media (max-width: 575px) {
  .search-form .tab-controls button {
    font-size: 16px;
  }
}
.search-form .tab-controls button .icon {
  margin-right: 5px;
}
@media (max-width: 370px) {
  .search-form .tab-controls button .icon {
    margin-right: 2px;
  }
}
@media (max-width: 575px) {
  .search-form .tab-controls button svg {
    transform: scale(0.8);
  }
}
.search-form .tab-controls button svg path {
  fill: #ffffff;
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.7));
}
.search-form .tab-controls button.active {
  background-color: transparent;
  color: #ffffff;
  font-weight: 600;
  border-bottom: 2px solid #ffffff;
}
.search-form .tab-controls button.active svg path {
  fill: #ffffff;
}
.search-form .tab-controls li {
  position: relative;
}
.search-form .tab-controls li:not(:last-child) {
  margin-right: 30px;
  padding-right: 30px;
}
@media (max-width: 575px) {
  .search-form .tab-controls li:not(:last-child) {
    margin-right: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 370px) {
  .search-form .tab-controls li:not(:last-child) {
    margin-right: 10px;
    padding-right: 10px;
  }
}
.search-form .tab-controls li:not(:last-child)::before {
  content: "";
  width: 1px;
  height: 26px;
  background-color: #828282;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.search-form .tab-content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(231, 232, 234, 0.3);
}
@media (max-width: 575px) {
  .search-form .tab-content {
    padding: 15px 15px 20px 15px;
    border-radius: 0px 0px 12px 12px;
  }
}
.search-form.single-hotel-search-form {
  margin-top: -60px;
}
.search-form.single-hotel-search-form .form-content {
  max-width: 1020px;
  background-color: #FFFFFF;
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.07);
  padding: 30px;
  border-radius: 4px;
}
.search-form.events-form .form-content {
  max-width: 1024px;
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.07);
  margin: auto;
}
@media (max-width: 767px) {
  .search-form.events-form .form-content {
    padding: 20px;
  }
}
.search-form.single-search-form .form-item {
  width: 40%;
}
@media (max-width: 575px) {
  .search-form.single-search-form .form-item {
    width: 100%;
  }
}
.search-form.single-flow .tab-controls {
  max-width: 290px;
}
@media screen and (max-width: 575px) {
  .search-form.single-flow .tab-controls {
    max-width: 230px;
    margin: auto;
  }
}
.search-form.single-flow .form-item {
  width: 40%;
}
@media (max-width: 575px) {
  .search-form.single-flow .form-item {
    width: 100%;
  }
}
.search-form.single-home {
  margin-top: -40px;
  position: relative;
  z-index: 200;
}
@media (max-width: 575px) {
  .search-form.single-home {
    margin-top: -30px;
  }
}
.search-form.single-home .tab-content {
  border-radius: 12px;
  width: 100%;
  max-width: 1100px;
}
.search-form.single-home .form-content {
  flex-wrap: nowrap;
}
@media (max-width: 767px) {
  .search-form.single-home .form-content {
    flex-wrap: wrap;
  }
}
.search-form.single-home .form-item {
  flex: 1 1 auto;
  min-width: 180px;
}
@media (max-width: 767px) {
  .search-form.single-home .form-item {
    min-width: 100%;
  }
}
.search-form.single-home .search-button {
  min-width: 140px;
  flex: 0 0 auto;
}

/* **************************************************
    Daterange picker
************************************************** */
.daterangepicker {
  margin-top: 15px;
}
.daterangepicker td.active {
  background-color: #FFC62D;
  width: 30px;
  height: 30px;
  border-radius: 50% !important;
}
.daterangepicker td.active:hover {
  background-color: #FFC62D;
}
.daterangepicker .drp-buttons .btn-primary {
  background-color: #0D2F3F;
}
.daterangepicker th.month {
  background-color: #0D2F3F;
  color: #FFFFFF;
}
.daterangepicker .calendar-table .prev span, .daterangepicker .calendar-table .next span {
  border-color: #FFFFFF;
  color: #FFFFFF;
}
.daterangepicker .calendar-table .prev, .daterangepicker .calendar-table .next {
  transition: all 0.3s ease;
}
.daterangepicker .calendar-table .prev:hover, .daterangepicker .calendar-table .next:hover {
  background-color: #FFC62D;
}
.daterangepicker .calendar-table th {
  border-radius: 0;
}
.daterangepicker .table-condensed thead tr:first-child {
  background-color: #0D2F3F;
  margin-bottom: 20px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.daterangepicker .table-condensed thead tr:nth-child(2) th {
  padding-top: 15px;
}
.daterangepicker .calendar-table th, .daterangepicker .daterangepicker .calendar-table td {
  height: 35px;
  border: none;
}
.daterangepicker .calendar-table td, .daterangepicker td.active {
  height: 35px !important;
  width: 35px !important;
}
.daterangepicker.opensright::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #1F7F7B transparent;
  position: absolute;
  top: -10px;
  left: 30px;
}
.daterangepicker.opensright::after {
  display: none;
}
.daterangepicker.opensleft {
  margin-top: 10px;
}
.daterangepicker.opensleft::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #1F7F7B transparent;
  position: absolute;
  top: -10px;
  right: 30px;
}
.daterangepicker.opensleft::after {
  display: none;
}

span.clockpicker-span-hours.text-primary, span.clockpicker-span-minutes.text-primary {
  color: #0D2F3F !important;
}

/* **************************************************
   Facilites
************************************************** */
.facilites {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
.facilites li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 5px;
}
.facilites li:not(:last-child) {
  margin-right: 20px;
}
.facilites li span {
  line-height: 1;
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  color: #0D2F3F;
}
@media (max-width: 575px) {
  .facilites li span {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .facilites li span.icon {
    transform: scale(0.8);
  }
}
.facilites li .icon {
  width: 20px;
}

/* **************************************************
    Resort list
************************************************** */
.resorts-list .resort-item {
  position: relative;
  background: #FFFFFF;
  box-shadow: 0px 0px 17px 0 rgba(0, 0, 0, 0.05);
  max-width: 100%;
}
@media (max-width: 575px) {
  .resorts-list .resort-item:not(:last-child) {
    margin-bottom: 30px;
  }
}
.resorts-list .resort-item .item-thumb {
  width: 100%;
  height: 260px;
  position: relative;
}
@media (max-width: 575px) {
  .resorts-list .resort-item .item-thumb {
    height: 200px;
  }
}
.resorts-list .resort-item .item-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.resorts-list .resort-item .item-thumb .num-of-images {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: flex-end;
  line-height: 1;
  gap: 5px;
}
.resorts-list .resort-item .item-thumb .num-of-images span {
  color: #FFFFFF;
  line-height: 1;
  font-size: 14px;
}
.resorts-list .resort-item .item-thumb .num-of-images .icon {
  width: 20px;
}
.resorts-list .resort-item .item-thumb .discount {
  position: absolute;
  right: 0;
  bottom: 0;
}
.resorts-list .resort-item .item-desc {
  padding: 20px;
}
.resorts-list .resort-item .item-desc .place {
  margin: 5px 0px 15px 0px;
  padding-bottom: 15px;
  display: flex;
  gap: 5px;
  align-items: center;
  overflow: hidden;
  border-bottom: 0.5px solid #DEDEDE;
}
.resorts-list .resort-item .item-desc .place span {
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 15px;
  color: #333333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.resorts-list .resort-item .item-desc .place span.icon {
  min-width: 12px;
  max-width: 15px;
}
.resorts-list .resort-item .short-desc {
  margin-top: 20px;
}
.resorts-list .resort-item .short-desc p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.resorts-list .resort-item .item-action {
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.resorts-list .resort-item .item-action .btn {
  padding: 10px 15px;
  transition: all 0.3s ease;
  font-size: 14px;
}
.resorts-list .owl-prev, .resorts-list .owl-next {
  top: 33%;
}
.resorts-list .owl-stage-outer {
  margin: -10px;
  padding: 10px;
}

/* **************************************************
    Carousel/slider styles
************************************************** */
.owl-nav .owl-prev, .owl-nav .owl-next {
  position: absolute;
  top: 45%;
  width: 40px;
  height: 40px;
  background-color: #6D9773;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.07);
}
.owl-nav .owl-prev {
  left: -20px;
}
@media (max-width: 575px) {
  .owl-nav .owl-prev {
    left: 5px;
  }
}
.owl-nav .owl-next {
  right: -20px;
}
@media (max-width: 575px) {
  .owl-nav .owl-next {
    right: 5px;
  }
}

.owl-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}
.owl-dots .owl-dot {
  width: 8px;
  height: 8px;
  background-color: #FFFFFF;
  display: flex;
  border-radius: 50%;
  transition: all 0.2s ease;
}
.owl-dots .owl-dot.active {
  width: 16px;
  height: 16px;
  background-color: #FFC62D;
}

/* **************************************************
   Card pin
************************************************** */
.pined {
  font-weight: 500;
  font-size: 14px;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  width: 110px;
  max-width: 100%;
  padding: 5px 10px;
  background-color: #6D9773;
  border-bottom-right-radius: 5px;
  top: 0;
  left: -10px;
  position: absolute;
}
@media (max-width: 575px) {
  .pined {
    font-weight: 400;
  }
}
.pined::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 12px 12px 0;
  border-color: transparent #0D2F3F transparent;
  position: absolute;
  left: 0;
  bottom: -12px;
}

.pined-new-outer {
  position: absolute;
  right: -30px;
  top: 6px;
}
.pined-new-outer::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 0 6px;
  border-color: transparent transparent transparent #1F7F7B;
  position: absolute;
  left: 5px;
  top: -11px;
}
.pined-new-outer::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0px 1px 6px;
  border-color: transparent transparent transparent #1F7F7B;
  position: absolute;
  right: 25px;
  top: 53px;
}
.pined-new-outer.red::after, .pined-new-outer.red::before {
  border-color: transparent transparent transparent #CC3F25;
}
.pined-new-outer.red .pined-new {
  background-color: #CC3F25;
}
.pined-new-outer .pined-new {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  text-align: center;
  color: #FFFFFF;
  transform: rotate(39.79deg);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1F7F7B;
  width: 100px;
  padding: 3px 10px;
  transform: rotate(45deg);
  clip-path: polygon(29% 0, 71% 0, 100% 100%, 0% 100%);
}

/* **************************************************
    Comment reply
************************************************** */
.post-reply {
  padding: 70px 0px;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .post-reply {
    padding-top: 30px;
  }
}
.post-reply h2 {
  font-size: 32px;
  color: #0D2F3F;
  font-weight: 500;
}
@media (max-width: 575px) {
  .post-reply h2 {
    font-size: 20px;
  }
}
.post-reply p {
  color: #585858;
  margin-bottom: 0;
}
.post-reply .reply-form {
  margin-top: 50px;
}
@media (max-width: 575px) {
  .post-reply .reply-form {
    margin-top: 30px;
  }
}
.post-reply .reply-form .input-field {
  position: relative;
  width: 100%;
  height: 44px;
  line-height: 44px;
}
.post-reply .reply-form .input-field:not(:first-child) {
  margin-top: 55px;
}
@media (max-width: 575px) {
  .post-reply .reply-form .input-field:not(:first-child) {
    margin-top: 35px;
  }
}
.post-reply .reply-form .input-field label {
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  color: #0D2F3F;
  transition: 0.2s all;
  font-size: 22px;
  font-weight: 400;
  cursor: text;
}
@media (max-width: 767px) {
  .post-reply .reply-form .input-field label {
    top: -10px;
    font-size: 16px;
  }
}
.post-reply .reply-form .input-field input {
  background-color: transparent;
  width: 100%;
  border: 0;
  outline: 0;
  border-bottom: 0.7px solid #A6A6A6;
  color: #000000;
  box-shadow: none;
  transition: all 0.3s ease-in-out;
}
.post-reply .reply-form .input-field input:focus ~ label,
.post-reply .reply-form .input-field input:valid ~ label {
  font-size: 14px;
  top: -28px;
  color: #0D2F3F;
}
.post-reply .reply-form .form-text-box {
  width: 100%;
  min-height: 310px;
  border: 1px solid #A6A6A6;
  border-radius: 12px;
  margin-top: 50px;
  padding: 20px;
  font-size: 22px;
  outline: 0;
}
.post-reply .reply-form .form-text-box:focus {
  border: 1px solid #A6A6A6;
}
@media (max-width: 575px) {
  .post-reply .reply-form .form-text-box {
    margin-top: 40px;
    min-height: 220px;
    padding: 10px;
    font-size: 12px;
  }
}
.post-reply .reply-form ::-moz-placeholder {
  color: #5C5C5C;
  font-size: 22px;
}
.post-reply .reply-form ::placeholder {
  color: #5C5C5C;
  font-size: 22px;
}
@media (max-width: 575px) {
  .post-reply .reply-form ::-moz-placeholder {
    font-size: 12px;
  }
  .post-reply .reply-form ::placeholder {
    font-size: 12px;
  }
}
.post-reply .reply-form .form-check {
  margin-top: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.post-reply .reply-form .form-check .form-check-label {
  font-family: "Barlow", sans-serif;
  color: #585858;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  margin-left: 10px;
  margin-top: 2px;
  cursor: pointer;
}
@media (max-width: 575px) {
  .post-reply .reply-form .form-check .form-check-label {
    font-size: 12px;
    line-height: 20px;
  }
}
.post-reply .reply-form .form-check .form-check-input {
  min-width: 25px;
  min-height: 25px;
  margin-top: 0;
  border-radius: 6px;
  box-shadow: none;
  cursor: pointer;
}
@media (max-width: 575px) {
  .post-reply .reply-form .form-check .form-check-input {
    width: 20px;
    height: 20px;
  }
}
.post-reply .reply-form .form-check .form-check-input:checked {
  background-color: #0D2F3F;
  border-color: #0D2F3F;
  box-shadow: none;
}
.post-reply .reply-form .comment-submit {
  background-color: #FFC62D;
  color: #000;
  font-family: "Barlow", sans-serif;
  font-size: 18px;
  font-weight: 500;
  border-radius: 4px;
  padding: 15px 30px;
  margin-top: 40px;
}
@media (max-width: 575px) {
  .post-reply .reply-form .comment-submit {
    font-size: 14px;
    padding: 10px 20px;
    margin-top: 20px;
  }
}

/* **************************************************
    Event form
************************************************** */
.book-event-form {
  min-height: 100%;
}
.book-event-form .form-head {
  text-align: center;
  margin-bottom: 40px;
}
.book-event-form .form-head span {
  font-weight: 400;
  font-size: 16px;
  color: #12141D;
  opacity: 0.7;
}
.book-event-form form {
  background: #FFFFFF;
  box-shadow: 0px 4px 60px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 40px 30px;
}
@media (max-width: 575px) {
  .book-event-form form {
    padding: 20px 15px;
  }
}
.book-event-form .button.button-primary {
  width: 100%;
  height: 60px;
  background-color: #0D2F3F;
  border-radius: 10px;
  margin-top: 25px;
}
.book-event-form .button.button-primary .icon {
  transform: rotate(0deg);
}

/* **************************************************
    Form styles
************************************************** */
.form-control {
  width: 100%;
  height: 50px;
  padding: 5px 15px;
  border: 1px solid #DDE1E0;
  border-radius: 5px;
  outline: 0;
}
@media (max-width: 575px) {
  .form-control {
    height: 50px;
    font-size: 16px;
  }
}
.form-control:focus {
  outline: 0;
  box-shadow: 0 0 0 1px rgba(13, 110, 253, 0.25);
}

input[type=value] {
  color: red;
}

.input-item:not(:last-child) {
  margin-bottom: 20px;
}
.input-item label {
  display: block;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #12141D;
  margin-bottom: 10px;
}
.input-item label.error {
  font-weight: 500;
  color: red;
  font-size: 14px;
  margin-top: 5px;
}
@media (max-width: 575px) {
  .input-item label {
    font-weight: 500;
  }
}
.input-item.date-picker {
  position: relative;
}
.input-item.date-picker .daterange-picker {
  position: relative;
}
.input-item.date-picker .daterange-picker::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: red;
  right: 0;
  top: 0;
}
.input-item .input-icon {
  position: absolute;
  transform: translateY(50%);
  right: 10px;
  top: 37%;
}
.input-item.c-checkbox .form-check-input[type=checkbox] {
  border-radius: 50%;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.input-item.c-checkbox .form-check-input:checked {
  background-color: transparent;
  border-color: #6D9773;
  border-width: 2px;
}
.input-item.c-checkbox .form-check-input:checked[type=checkbox] {
  background-image: none;
  position: relative;
}
.input-item.c-checkbox .form-check-input:checked[type=checkbox]::after {
  font-family: "Font Awesome 6 Free";
  content: "\f111";
  font-size: 10px;
  font-weight: 800;
  color: #6D9773;
  position: absolute;
  top: 50%;
  left: 53%;
  transform: translate(-50%, -50%);
}
@media (max-width: 575px) {
  .input-item.c-checkbox .form-check-input:checked[type=checkbox]::after {
    left: 50%;
  }
}
.input-item.c-checkbox label {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #0D2F3F;
  line-height: 28px;
  margin-left: 5px;
  cursor: pointer;
}
.input-item.upload-file {
  position: relative;
}
.input-item.upload-file .upload-file-outer {
  height: 60px;
  border: 2px solid #B8B8B8;
  border-style: dashed;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.input-item.upload-file input {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
  opacity: 0;
}
.input-item.upload-file input #file-upload-button {
  display: none;
}
.input-item.upload-file label {
  margin-bottom: 0px;
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  color: #6D9773;
  text-align: center;
}
@media (max-width: 575px) {
  .input-item.upload-file label {
    font-size: 14px;
  }
}
.input-item.upload-file label .icon {
  margin-right: 10px;
}
.input-item.upload-file .remove-upload-file {
  display: none;
  border: none;
  color: #6D9773;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.input-item.upload-file .remove-upload-file.show {
  display: block;
}
.input-item.time-picker {
  position: relative;
}

.c-checkbox .form-check-input:checked {
  background-color: #6D9773;
  border-color: #6D9773;
}
.c-checkbox .form-check-input:focus {
  box-shadow: 0 0 0 1px rgba(13, 110, 253, 0.25);
}

input[type=file]::-webkit-file-upload-button {
  display: none;
}

.stripe-payment-form-wrapper .stripe-payment-form {
  max-width: 770px;
  padding: 30px;
  background: #FFFFFF;
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.07);
  border-radius: 12px;
  margin: auto;
}
@media (max-width: 575px) {
  .stripe-payment-form-wrapper .stripe-payment-form {
    padding: 20px 15px;
  }
}
.stripe-payment-form-wrapper .stripe-payment-form .input-item {
  margin-top: 30px;
  position: relative;
}
@media (max-width: 575px) {
  .stripe-payment-form-wrapper .stripe-payment-form .input-item {
    margin-top: 15px;
  }
}
.stripe-payment-form-wrapper .stripe-payment-form .input-item .input-icon {
  background-color: #FFFFFF;
  right: 25px;
  transform: translateY(-50%);
  top: 66%;
}
.stripe-payment-form-wrapper .stripe-payment-form .input-item:not(:last-child) {
  margin-bottom: 0;
}
.stripe-payment-form-wrapper .stripe-payment-form .stripe-form-heading {
  font-style: normal;
  font-weight: 600;
  font-size: 28px;
  line-height: 38px;
  color: #0D2F3F;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  .stripe-payment-form-wrapper .stripe-payment-form .stripe-form-heading {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .stripe-payment-form-wrapper .stripe-payment-form .stripe-form-heading .icon {
    transform: scale(0.8);
  }
}
.stripe-payment-form-wrapper .stripe-payment-form .btn-primary {
  height: 70px;
  margin-top: 30px;
}
@media (max-width: 575px) {
  .stripe-payment-form-wrapper .stripe-payment-form .btn-primary {
    height: 50px;
  }
}

.required-login-modal .user-form {
  margin-top: 0;
}
.required-login-modal .user-form form {
  box-shadow: none;
  padding: 0px 30px 40px 30px;
  margin: 0;
}
@media (max-width: 575px) {
  .required-login-modal .user-form form {
    padding: 0px 20px 20px 20px;
  }
}
.required-login-modal .btn-close svg {
  display: none;
}

.media-upload {
  height: 280px;
  border: 2px dashed rgba(13, 47, 63, 0.25);
  margin-top: 16px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.media-upload.max-width-370 {
  max-width: 370px;
}
@media only screen and (max-width: 1500px) {
  .media-upload {
    height: 200px;
    font-size: 16px;
  }
}
.media-upload.lg-box {
  height: 270px;
  margin-top: 20px;
}
@media (max-width: 1199px) {
  .media-upload.lg-box {
    margin-top: 0;
  }
}
.media-upload.sm-box {
  height: 200px;
}
.media-upload.full-height {
  height: calc(100% - 60px);
}
.media-upload .placeholder-text {
  z-index: 92;
  padding: 10px;
}
.media-upload .placeholder-text img {
  margin-bottom: 25px;
}
.media-upload .placeholder-text p {
  font-size: 16px;
  line-height: 19px;
  color: rgba(13, 47, 63, 0.4);
  max-width: 200px;
}
.media-upload .placeholder-text p span {
  color: #0D2F3F;
  font-weight: 600;
}
.media-upload .placeholder-text input {
  position: absolute;
  visibility: hidden;
}
.media-upload .check-box {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 90;
  border: none;
  background: transparent;
  padding: 0;
  display: none;
}
.media-upload .check-box .form-check-input {
  height: 20px;
  width: 20px;
  cursor: pointer;
}
.media-upload .check-box .form-check-input:checked {
  background-color: #0D2F3F;
  border-color: #0D2F3F;
}
.media-upload .file-remove-btn, .media-upload .stock-file-remove-btn {
  display: none;
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 92;
  background: #FFFFFF;
  border: none;
  border-radius: 6px;
  padding: 0;
  height: 22px;
  width: 22px;
  align-items: center;
  justify-content: center;
}
.media-upload .file-remove-btn img, .media-upload .stock-file-remove-btn img {
  height: 14px;
}
.media-upload.img-preview {
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: none;
  max-width: 250px;
}
.media-upload.img-preview .placeholder-text {
  display: none;
}
.media-upload.img-preview .file-remove-btn,
.media-upload.img-preview .stock-file-remove-btn {
  display: flex;
}
.media-upload.img-preview .check-box {
  display: block;
}
.media-upload.profile-photo-upload {
  max-width: 200px;
}

.media-upload-label {
  font-size: 16px;
  font-family: "Inter", sans-serif;
  color: #565672;
  font-weight: 600;
  text-transform: capitalize;
}

span.error-msg {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-size: 14px;
  margin-top: 5px;
  display: flex;
  justify-content: start;
}

/* **************************************************
   All Buttons
************************************************** */
.btn {
  display: inline-block;
  font-family: "Barlow", sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  outline: none;
  background-color: transparent;
}
@media (max-width: 575px) {
  .btn {
    font-size: 16px;
  }
}
.btn:hover, .btn:active {
  border: none;
}
.btn.btn-link {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  color: #255758;
  display: flex;
  align-items: center;
  gap: 5px;
}
@media (max-width: 575px) {
  .btn.btn-link {
    font-size: 16px;
  }
}
.btn.btn-primary {
  gap: 5px;
  padding: 10px 30px;
  background-color: #6D9773;
  color: #FFFFFF;
  border-radius: 4px;
}
@media (max-width: 575px) {
  .btn.btn-primary {
    padding: 10px 15px;
  }
}
.btn.btn-primary:active {
  background-color: #6D9773;
  border: none;
  outline: 0;
}
.btn.btn-primary .icon {
  display: inline-block;
  transform: rotate(-45deg);
}
.btn.btn-primary .icon.white {
  color: #FFFFFF;
}
.btn.button-go-home {
  padding: 5px 15px;
  border: 1px solid #E8EAED;
  border-radius: 8px;
  color: #333333;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 14px;
}

/* **************************************************
    Newsletter
************************************************** */
.newsletter-wrapper {
  padding: 70px 0px;
  background-image: linear-gradient(90deg, #1f7f7b 11.42%, rgba(217, 217, 217, 0) 100%), url("./../images/multiple-hotel/newsletter-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.newsletter-wrapper h3 {
  color: #FFFFFF;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  margin-bottom: 20px;
}
.newsletter-wrapper h3 span {
  position: relative;
  font-weight: 700;
}
.newsletter-wrapper h3 span::before {
  content: "";
  background-image: url(./../images/illustration/white-border.svg);
  width: 250px;
  max-width: 100%;
  height: 50px;
  background-repeat: no-repeat;
  position: absolute;
  left: calc(100% - 140px);
  bottom: -45px;
}
.newsletter-wrapper .form-item {
  display: flex;
}
.newsletter-wrapper .form-item input {
  width: 100%;
  background-color: #FFFFFF;
  border: none;
  border-radius: 8px 0px 0px 8px;
  padding: 15px 20px;
}
.newsletter-wrapper .form-item input:focus, .newsletter-wrapper .form-item input:active, .newsletter-wrapper .form-item input:visited {
  border: none;
  outline: none;
  box-shadow: none;
}
.newsletter-wrapper .form-item .btn {
  color: #FFFFFF;
  padding: 15px 20px;
  border-radius: 0px 8px 8px 0px;
  background: #ff5e3a;
  display: flex;
  align-items: center;
  gap: 5px;
}
.newsletter-wrapper .form-item .btn .icon {
  width: 20px;
}

.body-text {
  color: #FFFFFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  max-width: 440px;
}

.video-play-wrapper {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video-play-wrapper .play-main {
  position: relative;
  display: inline-block;
}
.video-play-wrapper .video {
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 100%;
  background: transparent;
  color: #0D2F3F;
  display: inline-block;
  background: #FFFFFF;
  z-index: 999;
  border: none;
  outline: 0;
}
.video-play-wrapper .fa-play:before {
  content: "\f04b";
}
.video-play-wrapper .waves {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(13, 47, 63, 0.4);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  border-radius: 100%;
  right: -50px;
  bottom: -50px;
  z-index: -1;
  animation: waves 3s ease-in-out infinite;
}
.video-play-wrapper .wave-1 {
  animation-delay: 0s;
}
.video-play-wrapper .wave-2 {
  animation-delay: 1s;
}
.video-play-wrapper .wave-3 {
  animation-delay: 2s;
}
.video-play-wrapper.style-2 .video {
  background: #FFC62D;
  color: #FFFFFF;
}
.video-play-wrapper.style-2 .waves {
  background: rgba(255, 255, 255, 0.3);
}

/* **************************************************
    Item Details
************************************************** */
.item-details-wrapper {
  padding: 50px 0px;
}
.item-details-wrapper .item-details h3 {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 28px;
  color: #0D2F3F;
}
@media (max-width: 575px) {
  .item-details-wrapper .item-details h3 {
    font-size: 20px;
  }
}
.item-details-wrapper .item-details .item-gallery {
  margin-top: 30px;
}
.item-details-wrapper .item-details .item-gallery .placeholder-image {
  border: 1px solid #ddd;
}
.item-details-wrapper .item-details .item-gallery .item-img-wrapper {
  height: 200px;
  cursor: pointer;
  border-radius: 12px;
}
.item-details-wrapper .item-details .item-gallery .item-img-wrapper img {
  height: 200px;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
@media (max-width: 767px) {
  .item-details-wrapper .item-details .item-gallery .item-img-wrapper img {
    height: 100px;
    border-radius: 8px;
  }
}
.item-details-wrapper .item-details .gallery-thumb {
  position: relative;
  height: 400px;
  border-radius: 12px;
  border-top-right-radius: 0px;
}
@media (max-width: 575px) {
  .item-details-wrapper .item-details .gallery-thumb {
    height: 200px;
    border-radius: 8px;
  }
}
.item-details-wrapper .item-details .gallery-thumb img {
  height: 100%;
  width: 100%;
  border-radius: 12px;
  border-top-right-radius: 0px;
}
.item-details-wrapper .item-details .gallery-thumb .available-room {
  padding: 20px 10px;
  width: 150px;
  height: 200px;
  background-image: url("./../images/illustration/available-illustration.svg");
  background-repeat: no-repeat;
  position: absolute;
  right: 20px;
  top: 0;
  background-size: contain;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 575px) {
  .item-details-wrapper .item-details .gallery-thumb .available-room {
    top: 0px;
    right: 15px;
    width: 70px;
    height: 100px;
  }
}
.item-details-wrapper .item-details .gallery-thumb .available-room h3 {
  font-size: 50px;
  font-weight: 700;
  color: #0D2F3F;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .item-details-wrapper .item-details .gallery-thumb .available-room h3 {
    font-size: 16px;
    margin-bottom: 5px;
    margin-top: -10px;
  }
}
.item-details-wrapper .item-details .gallery-thumb .available-room span {
  max-width: 77px;
  display: inline-block;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #0D2F3F;
  text-align: center;
}
@media (max-width: 575px) {
  .item-details-wrapper .item-details .gallery-thumb .available-room span {
    font-size: 12px;
    line-height: 16px;
    max-width: 40px;
  }
}
.item-details-wrapper .item-details .item-carousel-wrapper {
  margin-top: 25px;
}
@media (max-width: 575px) {
  .item-details-wrapper .item-details .item-carousel-wrapper {
    margin-top: 15px;
  }
}
.item-details-wrapper .item-details .item-carousel-wrapper .item-img img {
  width: 100%;
}
.item-details-wrapper .item-details .item-carousel-wrapper .owl-next, .item-details-wrapper .item-details .item-carousel-wrapper .owl-prev {
  top: 40%;
}
.item-details-wrapper .item-details .item-desc .desc-head {
  display: flex;
  justify-content: space-between;
  margin: 30px 0 20px 0px;
}
@media (max-width: 767px) {
  .item-details-wrapper .item-details .item-desc .desc-head {
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0px 15px 0px;
  }
}
.item-details-wrapper .item-details .item-desc .desc-head h2 {
  max-width: 420px;
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 36px;
  color: #0D2F3F;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 575px) {
  .item-details-wrapper .item-details .item-desc .desc-head h2 {
    font-size: 22px;
    line-height: 28px;
  }
}
.item-details-wrapper .item-details .item-desc .social-links {
  margin: 0;
  padding: 0;
  display: flex;
}
.item-details-wrapper .item-details .item-desc .social-links ul {
  display: flex;
  margin: 0;
  padding: 0;
}
.item-details-wrapper .item-details .item-desc .social-links li {
  list-style: none;
}
.item-details-wrapper .item-details .item-desc .social-links li:not(:last-child) {
  margin-right: 15px;
}
.item-details-wrapper .item-details .item-desc .social-links a {
  text-decoration: none;
  color: #6D9773;
  font-size: 30px;
}
@media (max-width: 575px) {
  .item-details-wrapper .item-details .item-desc .social-links a {
    font-size: 24px;
  }
}
.item-details-wrapper .item-details .item-desc .social-links a:hover {
  color: #FFC62D;
}
.item-details-wrapper .item-details .item-desc .location {
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #5D6974;
}
@media (max-width: 575px) {
  .item-details-wrapper .item-details .item-desc .location {
    font-size: 14px;
  }
}
.item-details-wrapper .item-details .item-desc .location .icon {
  display: inline-block;
  margin-right: 3px;
}
.item-details-wrapper .item-details .item-desc-tab ul {
  margin: 20px 0px 20px 0px;
}
@media (max-width: 575px) {
  .item-details-wrapper .item-details .item-desc-tab ul {
    margin-top: 20px;
  }
}
.item-details-wrapper .item-details .item-desc-tab ul li:not(:last-child) {
  margin-right: 30px;
}
@media (max-width: 575px) {
  .item-details-wrapper .item-details .item-desc-tab ul li:not(:last-child) {
    margin-right: 15px;
  }
}
.item-details-wrapper .item-details .item-desc-tab ul .nav-link {
  margin: 0;
  padding: 20px 0px;
  border: none;
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  color: #0D2F3F;
  position: relative;
}
@media (max-width: 575px) {
  .item-details-wrapper .item-details .item-desc-tab ul .nav-link {
    font-size: 16px;
    font-weight: 500;
    padding: 15px 0px;
  }
}
.item-details-wrapper .item-details .item-desc-tab ul .nav-link::after {
  content: "";
  width: 0;
  height: 4px;
  background-color: #0D2F3F;
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 20px;
  transition: all 0.2s ease;
}
.item-details-wrapper .item-details .item-desc-tab ul .nav-link.active::after {
  width: 100%;
}
.item-details-wrapper .item-details .item-desc-tab ul.list-unstyled {
  margin-bottom: 0;
}
.item-details-wrapper .item-details .item-desc-tab ul.list-unstyled li:not(:last-child) {
  margin-bottom: 10px;
}
.item-details-wrapper .item-details .item-desc-tab .tab-pane {
  padding-bottom: 20px;
  border-bottom: 1px solid #DDDDDD;
}
.item-details-wrapper .item-details .item-desc-tab .tab-pane p {
  margin-bottom: 0;
}
.item-details-wrapper .item-details .item-features {
  margin-top: 40px;
}
@media (max-width: 575px) {
  .item-details-wrapper .item-details .item-features {
    margin-top: 30px;
  }
}
.item-details-wrapper .item-details .item-features .feature-content {
  display: flex;
  margin-top: 20px;
}
@media (max-width: 575px) {
  .item-details-wrapper .item-details .item-features .feature-content {
    flex-wrap: wrap;
    text-align: right;
    -moz-column-gap: 20px;
         column-gap: 20px;
    row-gap: 30px;
  }
}
.item-details-wrapper .item-details .item-features .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.item-details-wrapper .item-details .item-features .feature-item:not(:last-child) {
  margin-right: 25px;
}
@media (max-width: 575px) {
  .item-details-wrapper .item-details .item-features .feature-item:not(:last-child) {
    margin-right: 0;
  }
}
.item-details-wrapper .item-details .item-features .feature-item .text {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #0D2F3F;
}
@media (max-width: 575px) {
  .item-details-wrapper .item-details .item-features .feature-item .text {
    font-size: 16px;
  }
}
.item-details-wrapper .item-details .item-features .feature-item .icon {
  width: 30px;
}
.item-details-wrapper .item-details .item-amenities {
  margin-top: 30px;
  padding: 40px 0px 0px 0px;
  border-top: 1px solid #DDDDDD;
}
@media (max-width: 575px) {
  .item-details-wrapper .item-details .item-amenities {
    padding-top: 30px;
  }
}
.item-details-wrapper .item-details .item-amenities h3 {
  margin-bottom: 20px;
}
.item-details-wrapper .item-details .item-amenities .amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.item-details-wrapper .item-details .item-amenities .amenities .single-amenities {
  background-color: #F4F5F6;
  border: 1px solid rgba(2, 56, 87, 0.5019607843);
  border-radius: 16px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.item-details-wrapper .item-details .item-amenities .amenities .single-amenities img {
  filter: brightness(0.5);
}
@media (max-width: 575px) {
  .item-details-wrapper .item-details .item-amenities .amenities .single-amenities {
    width: 100%;
    justify-content: center;
  }
}
.item-details-wrapper .item-details .item-amenities .amenities .text {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #0D2F3F;
}
.item-details-wrapper .item-details .map-direction h4 {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #0D2F3F;
  border-bottom: 1px solid #DDDDDD;
  padding: 20px 0px;
  position: relative;
}
.item-details-wrapper .item-details .map-direction h4::after {
  content: "";
  width: 120px;
  height: 4px;
  background-color: #0D2F3F;
  border-radius: 20px;
  position: absolute;
  left: 0;
  bottom: -2px;
}
.item-details-wrapper .item-details .map-direction .map-direction-tab {
  margin: 30px 0px;
}
.item-details-wrapper .item-details .map-direction .map-direction-tab ul {
  width: 100%;
  margin: 0;
  padding: 0;
  border-bottom: 0;
  background: #FFFFFF;
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.07);
  display: flex;
  justify-content: center;
}
.item-details-wrapper .item-details .map-direction .map-direction-tab ul li {
  display: flex;
  justify-content: center;
  flex-grow: 1;
}
.item-details-wrapper .item-details .map-direction .map-direction-tab ul li:not(:last-child) {
  border-right: 1px solid #EDEDED;
}
.item-details-wrapper .item-details .map-direction .map-direction-tab ul button {
  width: 100%;
  height: 80px;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: #FFFFFF;
  border: none;
  border-radius: 0;
}
.item-details-wrapper .item-details .map-direction .map-direction-tab ul button .label {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #0D2F3F;
}
.item-details-wrapper .item-details .map-direction .map-direction-tab ul button.active {
  background-color: #6D9773;
}
.item-details-wrapper .item-details .map-direction .map-direction-tab ul button.active .label {
  color: #FFFFFF;
}
.item-details-wrapper .item-details .map-direction .map-direction-tab .tab-content-img img {
  width: 100%;
  border-radius: 8px 8px 0px 0px;
}
.item-details-wrapper .event-schedule {
  padding: 25px 0px;
  border-top: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
}
.item-details-wrapper .event-schedule h3 {
  font-weight: 600;
  font-size: 28px;
  line-height: 30px;
  color: #0D2F3F;
  margin-bottom: 25px;
}
.item-details-wrapper .event-schedule ul {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 40px;
  align-items: center;
}
@media (max-width: 575px) {
  .item-details-wrapper .event-schedule ul {
    flex-direction: column;
    align-items: flex-start;
  }
}
.item-details-wrapper .event-schedule ul li {
  display: flex;
  gap: 15px;
  align-items: center;
}
.item-details-wrapper .event-schedule ul li span {
  display: block;
}
.item-details-wrapper .event-schedule ul li .labe, .item-details-wrapper .event-schedule ul li h5 {
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: #0D2F3F;
}
.item-details-wrapper .event-schedule ul li h5 {
  margin-bottom: 0;
  color: #6D9773;
}

.post-comments {
  margin-top: 40px;
}
.post-comments .post-comments-content {
  padding-top: 50px;
}
@media (max-width: 575px) {
  .post-comments .post-comments-content {
    padding-top: 30px;
    margin-top: 30px;
  }
}
.post-comments h3 {
  font-size: 24px;
  line-height: 24px;
  color: #0D2F3F;
  font-weight: 500;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .post-comments h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.post-comments .single-comment:not(:last-child) {
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  .post-comments .single-comment:not(:last-child) {
    margin-bottom: 15px;
  }
}
.post-comments .single-comment .avatar img {
  min-width: 60px;
  min-height: 60px;
  border-radius: 50%;
}
@media (max-width: 575px) {
  .post-comments .single-comment .avatar img {
    width: 40px;
    height: 40px;
  }
}
.post-comments .comment-info .name {
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  color: #0D2F3F;
  margin-bottom: 5px;
}
@media (max-width: 575px) {
  .post-comments .comment-info .name {
    font-size: 16px;
    line-height: 26px;
  }
}
.post-comments .comment-info .comment-text {
  color: #585858;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .post-comments .comment-info .comment-text {
    line-height: 20px;
  }
}
.post-comments .comment-info .meta {
  font-size: 14px;
  font-weight: 500;
  color: #0D2F3F;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .post-comments .comment-info .meta {
    font-size: 12px;
  }
}
.post-comments .comment-info .meta .date {
  color: #000;
}

/* **************************************************
    Search items
************************************************** */
.search-items-wrapper .single-search-item {
  background-color: #FFFFFF;
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.07);
  display: flex;
  gap: 10px;
  position: relative;
}
.search-items-wrapper .single-search-item:not(:last-child) {
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .search-items-wrapper .single-search-item {
    flex-direction: column;
  }
}
.search-items-wrapper .single-search-item .single-search-desc {
  position: relative;
  width: 100%;
}
.search-items-wrapper .single-search-item .item-title {
  display: block;
  font-weight: 600;
  font-size: 28px;
  line-height: 34px;
  color: #0D2F3F;
  text-decoration: none;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 575px) {
  .search-items-wrapper .single-search-item .item-title {
    font-size: 20px;
    line-height: 24px;
  }
}
.search-items-wrapper .single-search-item .reviews-n-location {
  display: flex;
  align-items: center;
  gap: 10px;
}
.search-items-wrapper .single-search-item .reviews-n-location .location {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
}
.search-items-wrapper .single-search-item .reviews-n-location .location .icon {
  color: #6D9773;
}
.search-items-wrapper .single-search-item p.body-normal-text {
  max-width: 500px;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: #333333;
  margin: 10px 0px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-items-wrapper .single-search-item .facilites {
  max-width: 460px;
  margin-top: 20px;
  border-bottom: 0.5px solid #DEDEDE;
  padding-bottom: 20px;
}
.search-items-wrapper .single-search-item .facilites li {
  display: flex;
  align-items: center;
  position: relative;
}
.search-items-wrapper .single-search-item .facilites li:not(:last-child) {
  margin-right: 20px;
  padding-right: 20px;
}
@media (max-width: 575px) {
  .search-items-wrapper .single-search-item .facilites li:not(:last-child) {
    margin-right: 10px;
    padding-right: 10px;
  }
}
.search-items-wrapper .single-search-item .facilites li:not(:last-child)::after {
  content: "";
  width: 0.5px;
  height: 20px;
  background-color: #707070;
  opacity: 0.5;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.search-items-wrapper .single-search-item .facilites .icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 0.5px solid #929292;
  display: flex;
  justify-content: center;
  align-items: center;
}
.search-items-wrapper .single-search-item .facilites .icon img {
  width: 60%;
}
@media (max-width: 575px) {
  .search-items-wrapper .single-search-item .facilites .icon {
    width: 30px;
    height: 30px;
  }
}
.search-items-wrapper .single-search-item .price-details {
  margin-top: 20px;
  display: flex;
  align-items: center;
}
.search-items-wrapper .single-search-item .price-details .price-info {
  position: relative;
  margin-right: 15px;
  padding-right: 15px;
}
@media (max-width: 575px) {
  .search-items-wrapper .single-search-item .price-details .price-info {
    margin-right: 10px;
    padding-right: 10px;
  }
}
.search-items-wrapper .single-search-item .price-details .price-info::after {
  content: "";
  width: 0.5px;
  height: 20px;
  background-color: #707070;
  opacity: 0.5;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.search-items-wrapper .single-search-item .price-details p {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: #0D2F3F;
}
@media (max-width: 575px) {
  .search-items-wrapper .single-search-item .price-details p {
    font-size: 12px;
  }
}
.search-items-wrapper .single-search-item .search-item-action {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 25px;
}
@media (max-width: 575px) {
  .search-items-wrapper .single-search-item .search-item-action {
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 15px;
  }
}
.search-items-wrapper .single-search-item .search-item-action .btn.cancelation {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  color: #0D2F3F;
  margin-bottom: 0;
  text-decoration: underline !important;
  padding: 0;
}
.search-items-wrapper .single-search-item .bookmark-button {
  position: absolute;
  top: 10px;
  right: 15px;
}
@media (max-width: 575px) {
  .search-items-wrapper .single-search-item .bookmark-button {
    top: 0;
    right: 10px;
  }
}
.search-items-wrapper .single-search-item.event-item .date span {
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
}
.search-items-wrapper .single-search-item.event-item .date .icon {
  display: inline-block;
  transform: translateY(-2px);
}
.search-items-wrapper .single-search-item.event-item .slider-item.event-slider-item {
  min-height: 290px;
}
@media (max-width: 575px) {
  .search-items-wrapper .single-search-item.event-item .slider-item.event-slider-item {
    min-height: 200px;
  }
}
.search-items-wrapper .single-search-item.event-item .item-title {
  font-size: 20px;
  margin: 10px 0px 0px 0px;
}
.search-items-wrapper .single-search-item.event-item .time-n-reviews {
  margin: 10px 0px;
  display: flex;
  gap: 30px;
  align-items: center;
}
.search-items-wrapper .single-search-item.event-item .time-n-reviews .time .icon {
  display: inline-block;
  transform: translateY(-2px);
}
.search-items-wrapper .single-search-item.event-item .time-n-reviews .time span {
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
}
.search-items-wrapper .single-search-item.event-item .location .icon {
  display: inline-block;
  transform: translateY(-2px);
}
.search-items-wrapper .single-search-item.event-item .item-desc-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.search-items-wrapper .single-search-item.event-item .location {
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
}
.search-items-wrapper .single-search-item.event-item .old-price {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 15px;
  text-decoration-line: line-through;
  color: #F03D1B;
}
.search-items-wrapper .single-search-item.event-item .btn.btn-primary {
  padding: 10px 15px;
}
.search-items-wrapper .single-search-item.event-item .price-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.search-items-wrapper .single-search-item.event-item .price-info::after {
  display: none;
}
.search-items-wrapper .single-search-item.event-item .price-info span {
  color: #0D2F3F;
  font-size: 12px;
}
.search-items-wrapper .search-items {
  height: 100%;
}
.search-items-wrapper #eventList {
  height: 100%;
}
.search-items-wrapper .search-item-slider-wrapper {
  position: relative;
  width: 470px;
  max-width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  .search-items-wrapper .search-item-slider-wrapper {
    width: 100%;
  }
}
.search-items-wrapper .search-item-slider-wrapper .search-item-slider {
  width: 470px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .search-items-wrapper .search-item-slider-wrapper .search-item-slider {
    width: 100%;
  }
}
.search-items-wrapper .search-item-slider-wrapper .search-item-slider .slider-item {
  width: 100%;
  min-height: 385px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (max-width: 575px) {
  .search-items-wrapper .search-item-slider-wrapper .search-item-slider .slider-item {
    min-height: 200px;
  }
}
.search-items-wrapper .search-item-slider-wrapper .search-item-slider .owl-dots {
  position: absolute;
  left: 50%;
  bottom: 35px;
  transform: translateX(-50%);
}
@media (max-width: 575px) {
  .search-items-wrapper .search-item-slider-wrapper .search-item-slider .owl-dots {
    left: unset;
    bottom: unset;
    right: 20px !important;
    top: 20px !important;
    transform: none;
  }
}
.search-items-wrapper .search-item-slider-wrapper .discount {
  width: 180px;
  height: 190px;
  position: absolute;
  right: -4px;
  bottom: 0px;
  z-index: 10;
  text-align: center;
  background-image: url("./../images/illustration/discount-bg.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 575px) {
  .search-items-wrapper .search-item-slider-wrapper .discount {
    width: 130px;
    height: 140px;
  }
}
.search-items-wrapper .search-item-slider-wrapper .discount h4 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 34px;
  color: #0D2F3F;
  position: absolute;
  right: 20px;
  bottom: 10px;
}
@media (max-width: 575px) {
  .search-items-wrapper .search-item-slider-wrapper .discount h4 {
    font-size: 18px;
    right: 10px;
  }
}
.search-items-wrapper .search-item-slider-wrapper .discount h4 span {
  font-size: 16px;
  display: block;
  font-weight: 400;
}
@media (max-width: 575px) {
  .search-items-wrapper .search-item-slider-wrapper .discount h4 span {
    font-size: 14px;
  }
}
.search-items-wrapper .search-item-slider-wrapper .pined {
  z-index: 10;
}
.search-items-wrapper .search-item-slider-wrapper .total-photos {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 10;
}
.search-items-wrapper .search-item-slider-wrapper .total-photos .icon {
  width: 20px;
}
.search-items-wrapper .search-item-slider-wrapper .total-photos img {
  -o-object-fit: contain;
     object-fit: contain;
}
.search-items-wrapper .search-item-slider-wrapper .total-photos .label {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
}
.search-items-wrapper .single-search-desc {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .search-items-wrapper .single-search-desc {
    padding-top: 10px;
  }
}
.search-items-wrapper .owl-stage-outer {
  margin-left: -10px;
  padding-left: 10px;
}
.search-items-wrapper.resort-list-items .search-item-slider-wrapper {
  height: 100%;
  width: 370px;
}
@media (max-width: 991px) {
  .search-items-wrapper.resort-list-items .search-item-slider-wrapper {
    width: 100%;
  }
}
.search-items-wrapper.resort-list-items .search-item-slider {
  height: 100%;
  width: 370px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .search-items-wrapper.resort-list-items .search-item-slider {
    width: 100%;
  }
}
.search-items-wrapper.resort-list-items .search-item-slider .slider-item {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.search-items-wrapper.resort-list-items .search-item-action {
  margin-top: 20px;
}
.search-items-wrapper.resort-list-items .search-item-slider .owl-dots {
  left: unset;
  bottom: unset;
  right: 20px !important;
  top: 20px !important;
  transform: none;
}
.search-items-wrapper.resort-list-items .search-item-action .cancelation-buttons {
  display: flex;
}
.search-items-wrapper.resort-list-items .search-item-action .cancelation-buttons .btn.cancelation {
  text-decoration: none !important;
}
.search-items-wrapper.resort-list-items .search-item-action .cancelation-buttons .btn.cancelation:first-child {
  margin-right: 10px;
}
.search-items-wrapper.resort-list-items .search-item-action .cancelation-buttons .btn.cancelation:hover {
  text-decoration: underline !important;
}
.search-items-wrapper.resort-list-items .search-item-action .btn-primary:hover {
  background-color: #0D2F3F;
}

.items-empty-state {
  height: 100%;
}
.items-empty-state.inner {
  display: none;
}
.items-empty-state.show {
  display: flex;
  justify-content: center;
  align-items: center;
}
.items-empty-state .empty-state-content {
  text-align: center;
}
.items-empty-state h3 {
  font-size: 24px;
  font-weight: 600;
  color: #0D2F3F;
  margin-bottom: 10px;
}
.items-empty-state p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #333;
  margin-top: 15px;
}
.items-empty-state img {
  max-width: 250px;
}

/* **************************************************
   Search top filter
************************************************** */
.search-top-filter {
  margin-top: 40px;
}
.search-top-filter .filter-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #DDDDDD;
  padding-bottom: 20px;
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .search-top-filter .filter-content {
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;
  }
}
.search-top-filter .filter-content .left-content {
  max-width: 40%;
}
@media (max-width: 1199px) {
  .search-top-filter .filter-content .left-content {
    max-width: 100%;
  }
}
.search-top-filter .filter-content .right-content {
  max-width: 60%;
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .search-top-filter .filter-content .right-content {
    max-width: 100%;
  }
}
.search-top-filter h3 {
  font-size: 24px;
  font-weight: 600;
  color: #0D2F3F;
}
.search-top-filter .filter-items {
  display: flex;
  gap: 10px;
}
@media (max-width: 767px) {
  .search-top-filter .filter-items {
    flex-wrap: wrap;
  }
}
.search-top-filter .btn-filter {
  background-color: #FFC62D;
  padding: 8px 10px;
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  color: #0D2F3F;
  border-radius: 4px;
}
.search-top-filter .btn-filter span {
  margin-left: 5px;
}
.search-top-filter .select2-container .select2-selection--single {
  min-width: 90px;
  height: 40px;
  border: 1px solid #DDDDDD;
}
.search-top-filter .select2-container--default .select2-selection--single .select2-selection__rendered {
  font-family: "Barlow", sans-serif;
  line-height: 38px;
  font-size: 15px;
  font-weight: 500;
  color: #0D2F3F;
}
.search-top-filter .c-select .select2-container--default .select2-selection--single .select2-selection__placeholder {
  font-family: "Barlow", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #0D2F3F;
}
.search-top-filter .select2-container--default .select2-selection--single .select2-selection__arrow b {
  transform: translateY(7px);
}
.search-top-filter .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #0D2F3F transparent transparent transparent;
}
.search-top-filter .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #0D2F3F transparent;
}
.search-top-filter .filter-price-select-wrapper .select2-container {
  width: 120px !important;
}
.search-top-filter .select2-container {
  width: 120px !important;
}

.search-sidebar-filter {
  background-color: #FFFFFF;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.07);
}
.search-sidebar-filter .filter-item:not(:last-child) {
  margin-bottom: 10px;
}
.search-sidebar-filter .filter-heading {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
  color: #0D2F3F;
}
.search-sidebar-filter .filter-checkbox-items {
  margin: 0;
  padding: 0;
}
.search-sidebar-filter .filter-checkbox-items li {
  list-style: none;
  display: flex;
  justify-content: space-between;
}
.search-sidebar-filter .filter-checkbox-items li:not(:last-child) {
  margin-bottom: 10px;
}
.search-sidebar-filter .filter-checkbox-items li .form-check-label, .search-sidebar-filter .filter-checkbox-items li span {
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: #0D2F3F;
  cursor: pointer;
}
.search-sidebar-filter .filter-checkbox-items li.checked .form-check-label, .search-sidebar-filter .filter-checkbox-items li.checked span {
  color: #6D9773;
}
.search-sidebar-filter .accordion-body {
  padding: 0;
}
.search-sidebar-filter .range-value-reset-btn {
  background-color: transparent;
  border: none;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: #828282;
}
.search-sidebar-filter .accordion .accordion-button {
  padding-left: 0 !important;
  border-bottom: 0.5px solid #D5D5D5;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.search-sidebar-filter .accordion .accordion-button::after {
  width: 15px !important;
  height: 15px !important;
  background-size: contain;
  background-position: center center;
  position: absolute;
  right: 5px;
}
.search-sidebar-filter .accordion .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
}
.search-sidebar-filter .accordion .accordion-button:focus {
  box-shadow: none;
}
.search-sidebar-filter .accordion .show-for-mobile:not(.collapsed)::after {
  transform: rotate(0deg);
}

/* **************************************************
    Pagination styles
************************************************** */
.pagination-wrapper {
  margin-top: 20px;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
}
.pagination-wrapper ul {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  max-width: -moz-max-content;
  max-width: max-content;
  background-color: transparent;
  border-radius: 8px;
  position: relative;
}
@media (max-width: 575px) {
  .pagination-wrapper ul {
    max-width: 100%;
  }
}
.pagination-wrapper ul li, .pagination-wrapper ul .page-item {
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: #F0F0F0;
}
.pagination-wrapper ul li:nth-last-child(2), .pagination-wrapper ul .page-item:nth-last-child(2) {
  border-radius: 0 8px 8px 0;
}
.pagination-wrapper ul li:nth-child(2), .pagination-wrapper ul .page-item:nth-child(2) {
  border-radius: 8px 0 0 8px;
}
.pagination-wrapper ul li:first-child, .pagination-wrapper ul .page-item:first-child {
  background-color: transparent;
  margin-right: 8px;
}
.pagination-wrapper ul li:first-child .page-link, .pagination-wrapper ul .page-item:first-child .page-link {
  border-radius: 50%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f006";
  line-height: 1;
}
.pagination-wrapper ul li:last-child, .pagination-wrapper ul .page-item:last-child {
  background-color: transparent;
  margin-left: 8px;
}
.pagination-wrapper ul li:last-child .page-link, .pagination-wrapper ul .page-item:last-child .page-link {
  border-radius: 50%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f007";
  line-height: 1;
}
.pagination-wrapper ul li.active .page-link, .pagination-wrapper ul .page-item.active .page-link {
  background-color: #0D2F3F;
  color: #FFFFFF;
}
.pagination-wrapper ul a, .pagination-wrapper ul .page-link {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F0F0F0;
  border: none;
  color: #000000;
  font-size: 15px;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
}
@media (max-width: 575px) {
  .pagination-wrapper ul a, .pagination-wrapper ul .page-link {
    width: 35px;
    height: 35px;
    border-radius: 4px;
  }
}
.pagination-wrapper ul a:focus, .pagination-wrapper ul .page-link:focus {
  box-shadow: none;
}
.pagination-wrapper ul a:hover, .pagination-wrapper ul .page-link:hover {
  background-color: #0D2F3F;
  transition: all 0.3s ease-in-out;
  color: #FFFFFF;
}

/* **************************************************
  Range slider
************************************************** */
.range-body .range-section .range-text {
  border-radius: 6px;
  width: 80px;
  height: 41px;
  text-align: center;
}
.range-body .range-section .range-text:first-child {
  text-align: left;
}
.range-body .range-section .range-text:last-child {
  text-align: right;
}
.range-body .range-section .range-text p span {
  margin-right: 8px;
}
.range-body .range-section .range-text p {
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  color: #0D2F3F;
}
.range-body .main-range {
  padding: 15px 0 20px 0;
}
.range-body .main-range input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  outline: none;
  position: absolute;
  margin: auto;
  top: -3px;
  bottom: 0;
  background-color: transparent;
  pointer-events: none;
}
.range-body .main-range .slider-track {
  width: 100%;
  height: 6px;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  border-radius: 5px;
}
.range-body .main-range input[type=range]::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  height: 5px;
}
.range-body .main-range input[type=range]::-moz-range-track {
  -moz-appearance: none;
  height: 5px;
}
.range-body .main-range input[type=range]::-ms-track {
  appearance: none;
  height: 5px;
}
.range-body .main-range input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 1.1em;
  width: 1.1em;
  background-color: #6D9773;
  cursor: pointer;
  margin-top: -5px;
  pointer-events: auto;
  border-radius: 50%;
}
.range-body .main-range input[type=range]::-moz-range-thumb {
  -webkit-appearance: none;
  height: 1.1em;
  width: 1.1em;
  cursor: pointer;
  border-radius: 50%;
  background-color: #6D9773;
  pointer-events: auto;
  border: none;
}
.range-body .main-range input[type=range]::-ms-thumb {
  appearance: none;
  height: 1.1em;
  width: 1.1em;
  cursor: pointer;
  border-radius: 50%;
  background-color: #6D9773;
  pointer-events: auto;
}
.range-body .main-range input[type=range]:active::-webkit-slider-thumb {
  background-color: white;
  border: 1px solid #6D9773;
}

/* **************************************************
  Breadcrumb
************************************************** */
.c-breadcrumb {
  display: flex;
  margin: 0;
  padding: 0;
}
.c-breadcrumb li {
  list-style: none;
}
.c-breadcrumb li:not(:last-child) {
  margin-right: 15px;
}
.c-breadcrumb a {
  text-decoration: none;
}

/* **************************************************
    Not found page styles
************************************************** */
.notfound-wrapper .notfound-desc img {
  max-width: 350px;
  width: 100%;
}
@media (max-width: 575px) {
  .notfound-wrapper .notfound-desc img {
    max-width: 250px;
  }
}
.notfound-wrapper .notfound-desc h1 {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 38px;
  color: #0D2F3F;
  margin-top: 30px;
}
@media (max-width: 575px) {
  .notfound-wrapper .notfound-desc h1 {
    font-size: 24px;
    line-height: 30px;
    margin-top: 15px;
  }
}
.notfound-wrapper .notfound-desc p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #333;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .notfound-wrapper .notfound-desc p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 20px;
  }
}
.notfound-wrapper .notfound-desc a.go-home {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  width: 200px;
  height: 60px;
  text-decoration: none;
  border: 1px solid #BDBDBD;
  border-radius: 30px;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  font-family: "Barlow", sans-serif;
  color: #0D2F3F;
}
@media (max-width: 575px) {
  .notfound-wrapper .notfound-desc a.go-home {
    width: 150px;
    height: 50px;
    font-size: 16px;
  }
}
.notfound-wrapper.under-maintainance p {
  max-width: 550px;
  margin: 15px auto 30px auto;
}
.notfound-wrapper.under-maintainance .social-media ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.notfound-wrapper.under-maintainance .social-media li {
  list-style: none;
}
.notfound-wrapper.under-maintainance .social-media a {
  color: #6D9773;
  font-size: 30px;
}
.notfound-wrapper.under-maintainance .social-media a:hover {
  color: #FFC62D;
}

/* **************************************************
    Map 
************************************************** */
.map-wrapper {
  max-width: 100%;
  border-radius: 12px;
  margin-top: 30px;
}
.map-wrapper iframe {
  width: 100%;
  height: 450px;
  border-radius: 12px;
}
@media (max-width: 575px) {
  .map-wrapper iframe {
    height: 300px;
  }
}

/* **************************************************
    Faq section
************************************************** */
.faq-wrapper .accordion .accordion-button {
  background-color: #FFFFFF;
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  text-transform: capitalize;
  color: #0D2F3F;
}
@media (max-width: 575px) {
  .faq-wrapper .accordion .accordion-button {
    font-size: 16px;
  }
}
.faq-wrapper .accordion .accordion-button:not(.collapsed) {
  background-color: #0D2F3F;
  color: #FFFFFF;
}
.faq-wrapper .accordion .accordion-body {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: #333333;
}
.faq-wrapper .accordion .accordion-button:focus {
  box-shadow: none;
}
.faq-wrapper .accordion .accordion-button::after {
  background-image: none;
  font-family: "Font Awesome 5 Free";
  font-size: 16px;
  font-weight: 600;
  content: "\f078";
}

/* **************************************************
   About section
************************************************** */
.about-section {
  padding: 60px 0px;
}
.about-section h1 {
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .about-section h1 {
    font-size: 28px;
    line-height: 38px;
  }
}
.about-section p {
  font-size: 16px;
  line-height: 26px;
  color: #333;
}

/* **************************************************
    All page styles import
************************************************** */
/* **************************************************
    Blog styles
************************************************** */
.latest-blog-wrapper .single-blog {
  background: #FFFFFF;
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.07);
  border-radius: 12px;
}
.latest-blog-wrapper .single-blog .blog-title {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #0D2F3F;
  text-decoration: none;
  display: block;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 575px) {
  .latest-blog-wrapper .single-blog .blog-title {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 15px;
  }
}
.latest-blog-wrapper .single-blog .blog-thumb {
  width: 100%;
  height: 200px;
  display: inline-block;
}
.latest-blog-wrapper .single-blog .blog-thumb img {
  height: 100%;
  width: 100%;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.latest-blog-wrapper .single-blog .blog-desc {
  padding: 20px;
}
.latest-blog-wrapper .single-blog .blog-meta {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #0D2F3F;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.latest-blog-wrapper .single-blog .blog-meta .icon {
  width: 20px;
}
.latest-blog-wrapper .single-blog .blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
@media (max-width: 575px) {
  .latest-blog-wrapper .single-blog .blog-footer {
    margin-top: 15px;
    flex-wrap: wrap;
    gap: 15px;
  }
}
.latest-blog-wrapper .single-blog .blog-footer .btn.btn-primary {
  background-color: transparent;
  color: #6D9773;
  padding: 0;
}
.latest-blog-wrapper .single-blog .blog-author {
  display: flex;
  align-items: center;
  gap: 5px;
}
.latest-blog-wrapper .single-blog .blog-author .author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  margin-right: 10px;
}
.latest-blog-wrapper .single-blog .blog-author .author-avatar img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}
.latest-blog-wrapper .single-blog .blog-author .author-info h5 {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #0D2F3F;
  text-decoration: none;
  display: block;
  line-height: 1;
  margin-bottom: 5px;
}
.latest-blog-wrapper .single-blog .blog-author .author-info span {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #0D2F3F;
}
.latest-blog-wrapper .single-blog .post-desc {
  min-height: 90px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 29px;
  color: #0D2F3F;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 575px) {
  .latest-blog-wrapper .single-blog .post-desc {
    font-size: 14px;
    line-height: 24px;
  }
}

/* **************************************************
    Offer articles
************************************************** */
.special-offer-articles .single-article {
  border: 1px solid #eaeaea;
  border-radius: 8px;
  display: inline-block;
  text-decoration: none;
}
.special-offer-articles .single-article .article-thumb {
  width: 100%;
  height: 180px;
}
.special-offer-articles .single-article .article-thumb img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.special-offer-articles .single-article .article-content {
  padding: 25px 20px;
}
@media (max-width: 575px) {
  .special-offer-articles .single-article .article-content {
    padding: 20px 15px;
  }
}
.special-offer-articles .single-article .article-content .article-title {
  display: inline-block;
  text-decoration: none;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 28px;
  color: #0D2F3F;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 15px;
}
.special-offer-articles .single-article .article-content p {
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.special-offer-articles .single-article .article-content .article-button {
  font-weight: 600;
  font-size: 20px;
  color: #0D2F3F;
  transition: color 0.3s ease;
}
@media (max-width: 575px) {
  .special-offer-articles .single-article .article-content .article-button {
    font-size: 16px;
  }
}
.special-offer-articles .single-article .article-content .article-button:hover {
  color: #6D9773;
}
.special-offer-articles .single-article .article-content .article-button .icon {
  display: inline-block;
  transform: rotate(-45deg);
}

/* **************************************************
   User feedback
************************************************** */
.user-feedback-wrapper .feedback-card {
  max-width: 100%;
  background: #FFFFFF;
  box-shadow: 0px 0px 17px 0 rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 70px 30px 30px 30px;
  position: relative;
}
@media (max-width: 575px) {
  .user-feedback-wrapper .feedback-card {
    padding: 70px 20px 20px 20px;
  }
}
@media (max-width: 575px) {
  .user-feedback-wrapper .feedback-card:not(:last-child) {
    margin-bottom: 20px;
  }
}
.user-feedback-wrapper .feedback-card p {
  font-weight: 400;
  font-size: 17px;
  line-height: 26px;
  color: #646464;
  margin-bottom: 10px;
}
.user-feedback-wrapper .feedback-card .stars {
  display: flex;
  gap: 5px;
  margin: 0;
  padding: 0;
}
.user-feedback-wrapper .feedback-card .stars li {
  color: #cfd5d9;
  list-style: none;
  font-size: 14px;
}
.user-feedback-wrapper .feedback-card .stars li.rated {
  color: #6D9773;
}
.user-feedback-wrapper .feedback-card .client-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}
.user-feedback-wrapper .feedback-card .client-info .client-avatar {
  min-width: 50px;
  min-height: 50px;
  border-radius: 50%;
}
.user-feedback-wrapper .feedback-card .client-info .client-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.user-feedback-wrapper .feedback-card .client-info .client-details h5 {
  font-size: 18px;
  color: #12141D;
  margin-bottom: 0;
}
.user-feedback-wrapper .feedback-card .client-info .client-details span {
  font-size: 14px;
  color: #12141D;
  opacity: 0.7;
}
.user-feedback-wrapper .feedback-card::before, .user-feedback-wrapper .feedback-card::after {
  content: "";
  width: 35px;
  height: 25px;
  background-image: url("./../images/icons/quote-icon.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  opacity: 0.1;
}
.user-feedback-wrapper .feedback-card::before {
  top: 30px;
  left: 30px;
  transform: rotate(180deg);
}
@media (max-width: 575px) {
  .user-feedback-wrapper .feedback-card::before {
    top: 20px;
    left: 20px;
  }
}
.user-feedback-wrapper .feedback-card::after {
  bottom: 32%;
  right: 30px;
}
.user-feedback-wrapper .owl-stage-outer {
  margin: -20px;
  padding: 20px;
}

/* **************************************************
    Event tab
************************************************** */
.book-event-wrapper .event-tab-control {
  border-bottom: 1px solid #D9D9D9;
}
.book-event-wrapper .event-tab-control li button {
  background-color: transparent;
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  color: #0D2F3F;
  border-radius: 0;
}
@media (max-width: 575px) {
  .book-event-wrapper .event-tab-control li button {
    font-size: 16px;
  }
}
.book-event-wrapper .event-tab-control li button.active {
  background-color: transparent;
  color: #0D2F3F;
  position: relative;
  transition: all 0.3s ease;
}
.book-event-wrapper .event-tab-control li button.active::after {
  content: "";
  width: 100%;
  height: 4px;
  background-color: #6D9773;
  border-radius: 5px;
  position: absolute;
  bottom: -2px;
  left: 0;
}
.book-event-wrapper .event-card {
  background: #FFFFFF;
  box-shadow: 0px 0px 17px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  max-width: 100%;
}
@media (max-width: 575px) {
  .book-event-wrapper .event-card {
    flex-direction: column;
  }
}
.book-event-wrapper .event-card .event-thumb {
  width: 50%;
  max-width: 100%;
  height: 330px;
  position: relative;
}
@media (max-width: 575px) {
  .book-event-wrapper .event-card .event-thumb {
    height: 200px;
    width: 100%;
  }
}
.book-event-wrapper .event-card .event-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.book-event-wrapper .event-card .event-desc {
  width: 50%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .book-event-wrapper .event-card .event-desc {
    width: 100%;
  }
}
.book-event-wrapper .event-card .event-desc-top {
  padding: 20px 30px;
}
@media (max-width: 575px) {
  .book-event-wrapper .event-card .event-desc-top {
    padding: 20px;
  }
}
.book-event-wrapper .event-card .event-desc-top .event-date, .book-event-wrapper .event-card .event-desc-top .event-time {
  display: flex;
  align-items: center;
  gap: 5px;
}
.book-event-wrapper .event-card .event-desc-top .event-date .icon, .book-event-wrapper .event-card .event-desc-top .event-time .icon {
  margin-top: -4px;
}
.book-event-wrapper .event-card .event-desc-top .event-date span, .book-event-wrapper .event-card .event-desc-top .event-time span {
  font-weight: 400;
  font-size: 14px;
  color: #333333;
}
.book-event-wrapper .event-card .event-desc-top .event-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: #6D9773;
  margin-top: 10px;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.book-event-wrapper .event-card .event-item-bottom {
  padding: 30px;
  background-color: #FFFFFF;
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
}
@media (max-width: 575px) {
  .book-event-wrapper .event-card .event-item-bottom {
    padding: 20px;
    background-color: #0D2F3F;
  }
}
.book-event-wrapper .event-card .event-item-bottom .price {
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  color: #0D2F3F;
  margin-bottom: 5px;
}
@media (max-width: 575px) {
  .book-event-wrapper .event-card .event-item-bottom .price {
    color: #FFFFFF;
  }
}
.book-event-wrapper .event-card .event-item-bottom .btn-primary {
  font-size: 20px;
  color: #0D2F3F;
  background-color: transparent;
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
  padding: 0;
}
@media (max-width: 575px) {
  .book-event-wrapper .event-card .event-item-bottom .btn-primary {
    color: #FFC62D;
    font-size: 18px;
  }
}
.book-event-wrapper .event-card:hover .btn-primary {
  color: #FFC62D;
}
.book-event-wrapper .event-card:hover .event-item-bottom {
  background-color: #0D2F3F;
}
.book-event-wrapper .event-card:hover .price {
  color: #FFFFFF;
}
.book-event-wrapper .request-event-content .left-content-thumb {
  height: 370px;
}
@media (max-width: 575px) {
  .book-event-wrapper .request-event-content .left-content-thumb {
    height: 200px;
  }
}
.book-event-wrapper .request-event-content .left-content-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.book-event-wrapper .request-event-content h3 {
  font-weight: 600;
  font-size: 32px;
  color: #12141D;
  margin-top: 20px;
}
@media (max-width: 575px) {
  .book-event-wrapper .request-event-content h3 {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (max-width: 575px) {
  .book-event-wrapper .request-event-content .event-date-field {
    margin-top: 20px;
  }
}
.book-event-wrapper .owl-stage-outer {
  margin: -20px;
  padding: 20px;
}
@media (max-width: 575px) {
  .book-event-wrapper .owl-stage-outer {
    margin: -10px;
    padding: 10px;
  }
}

/* **************************************************
    Popular destination
************************************************** */
.popular-destination {
  background-color: #FFFDF5;
}
.popular-destination .destination-item {
  text-decoration: none;
  display: inline-block;
  border-radius: 8px;
  height: 195px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.popular-destination .destination-item::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, rgba(17, 36, 55, 0.6) 1%, rgba(17, 36, 55, 0.7) 60%, rgba(17, 36, 0, 0.25) 100%);
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 5;
  visibility: visible;
  opacity: 1;
  transition: all 0.3s ease;
}
.popular-destination .destination-item .item-bg {
  width: 100%;
  height: 195px;
}
.popular-destination .destination-item .item-bg img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}
.popular-destination .destination-item .item-desc {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: end;
  padding: 25px;
  position: relative;
  z-index: 10;
}
.popular-destination .destination-item .item-desc .feature {
  display: inline-block;
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
  transform: scale(1);
  visibility: visible;
  opacity: 1;
  transition: all 0.3s ease;
  text-decoration: none;
}
.popular-destination .destination-item .item-desc .place {
  width: -moz-max-content;
  width: max-content;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #FFFFFF;
  margin-bottom: 0;
  margin-top: 10px;
  text-decoration: none;
  position: relative;
}
.popular-destination .destination-item .item-desc .place::after {
  content: "";
  width: 10%;
  height: 1px;
  background-color: #FFFFFF;
  position: absolute;
  left: 0;
  bottom: -5px;
  opacity: 0;
  transition: width 0.3s ease;
}
.popular-destination .destination-item:hover .place::after {
  width: 100%;
  opacity: 1;
}

/* **************************************************
    Features
************************************************** */
.features-wrapper .feature-item {
  padding: 24px;
  display: flex;
  align-content: center;
  background-color: #FFFFFF;
  border-radius: 5px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
@media (max-width: 991px) {
  .features-wrapper .feature-item {
    flex-wrap: wrap;
    gap: 10px;
  }
}
@media (max-width: 575px) {
  .features-wrapper .feature-item {
    flex-wrap: nowrap;
    gap: 0;
  }
}
.features-wrapper .feature-item .icon {
  margin-right: 16px;
  display: flex;
  align-items: center;
  min-width: 60px;
  height: 60px;
  background: rgba(109, 151, 115, 0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.features-wrapper .feature-item .details {
  max-width: 265px;
}
.features-wrapper .feature-item .details h5 {
  font-weight: 600;
  font-size: 20px;
  color: #0D2F3F;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 575px) {
  .features-wrapper .feature-item .details h5 {
    font-size: 18px;
  }
}
.features-wrapper .feature-item .details p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 575px) {
  .features-wrapper .col-md-4:last-child .feature-item .icon {
    margin-right: 15px;
  }
}

/* **************************************************
    Special offers
************************************************** */
.special-offer-carousel-wrapper .offer-item {
  display: inline-block;
  width: 100%;
  height: 220px;
  position: relative;
  border-radius: 8px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.special-offer-carousel-wrapper .offer-item::before {
  content: "";
  max-width: 100%;
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(360deg, rgba(17, 36, 55, 0.5) 1.39%, rgba(17, 36, 55, 0.782698) 69.73%, rgba(17, 36, 55, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
@media (max-width: 575px) {
  .special-offer-carousel-wrapper .offer-item:not(:last-child) {
    margin-bottom: 30px;
  }
}
.special-offer-carousel-wrapper .offer-item .item-desc {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 20px 20px 30px;
}
.special-offer-carousel-wrapper .offer-item .item-desc .cupon-wrapper {
  width: 100px;
  max-width: 100%;
  padding: 5px 10px;
  font-family: "Roboto";
  font-weight: 400;
  font-size: 12px;
  color: #000000;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  background-image: url("./../images/multiple-hotel/cupon-bg.svg");
  background-repeat: no-repeat;
  background-position: center center;
}
.special-offer-carousel-wrapper .offer-item .item-desc .cupon-wrapper .cupon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.special-offer-carousel-wrapper .offer-item .item-desc h5 {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #FFFFFF;
  margin-top: 15px;
}
.special-offer-carousel-wrapper .offer-item .item-desc p {
  font-weight: 300;
  font-size: 14px;
  color: #FFFFFF;
  margin-bottom: 0;
}
.special-offer-carousel-wrapper .offer-item .item-desc .payment-info {
  width: 200px;
  max-width: 100%;
  background-color: #FFFFFF;
  padding: 8px 16px;
  border-radius: 2px;
  margin-top: 20px;
  clip-path: polygon(100% 0%, 87% 46%, 100% 100%, 0 100%, 0 0);
  display: flex;
  align-items: center;
}
.special-offer-carousel-wrapper .offer-item .item-desc .payment-info .bank-logo {
  position: relative;
  border-right: 1px solid #000000;
  margin-right: 10px;
  padding-right: 10px;
}
.special-offer-carousel-wrapper .offer-item .item-desc .payment-info .card-type {
  font-weight: 500;
  font-size: 12px;
  color: #0D2F3F;
}
.special-offer-carousel-wrapper .owl-next, .special-offer-carousel-wrapper .owl-prev {
  top: 40%;
}

/* **************************************************
    Customer info
************************************************** */
.customer-info-wrapper .customer-info-forms .input-item label {
  font-weight: 500;
  font-size: 16px;
  color: #0D2F3F;
}
.customer-info-wrapper .customer-info-forms .input-item .form-control, .customer-info-wrapper .customer-info-forms .input-item input {
  background-color: #FBFBFB;
}
.customer-info-wrapper .customer-info-forms input {
  background-color: #FBFBFB;
}
.customer-info-wrapper .form-box {
  padding: 40px 25px;
  border-radius: 12px;
  background-color: #FFFFFF;
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.07);
}
@media (max-width: 575px) {
  .customer-info-wrapper .form-box {
    padding: 20px;
  }
}
.customer-info-wrapper .form-box:not(:last-child) {
  margin-bottom: 24px;
}
.customer-info-wrapper .form-box h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 23px;
  color: #0D2F3F;
  border-bottom: 1px solid #DDDDDD;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .customer-info-wrapper .form-box h3 {
    font-size: 20px;
  }
}
.customer-info-wrapper .form-box .country-select-wrapper .select2-container {
  width: 100% !important;
}
.customer-info-wrapper .form-box .country-select-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 40px;
  color: #5D6974;
}
.customer-info-wrapper .form-box .country-select-wrapper .select2-container--default .select2-selection--single {
  height: 50px;
  border: 1px solid #DDE1E0;
  padding: 5px;
  background: #FBFBFB;
}
.customer-info-wrapper .form-box .country-select-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 50%;
  transform: translateY(-35%);
}
.customer-info-wrapper .form-box .country-select-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow b {
  position: relative;
  border: none;
}
.customer-info-wrapper .form-box .country-select-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow b::before {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  width: 100%;
  height: 100%;
  position: absolute;
  right: 10px;
  top: -15px;
  font-size: 12px;
}
.customer-info-wrapper .form-box .country-select-wrapper .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b::before {
  content: "\f077";
}
.customer-info-wrapper .form-box .country-select-wrapper .select2-container--default .select2-search--dropdown .select2-search__field {
  border-color: #AEC1DB;
}
.customer-info-wrapper .form-box .country-select-wrapper .select2-container--default .select2-search--dropdown .select2-search__field:focus {
  outline: 0;
}
.customer-info-wrapper .form-box .country-select-wrapper .c-select.select2-dropdown.select2-dropdown--above::after {
  top: 101%;
}
.customer-info-wrapper .form-box .country-select-wrapper .c-select.select2-dropdown.select2-dropdown--above {
  top: -22px;
}
.customer-info-wrapper .form-box .payment-method-field {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.customer-info-wrapper .form-box .payment-method-field .payment-method {
  display: flex;
  align-items: center;
}
.customer-info-wrapper .form-box .payment-method-field .payment-method .icon {
  max-width: 25px;
  margin-right: 10px;
}
.customer-info-wrapper .form-box .payment-method-field .method-name {
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  color: #0D2F3F;
}
.customer-info-wrapper .form-box .country-code-select-wrapper .c-select.select2-dropdown::after {
  display: none;
}
.customer-info-wrapper .form-box .country-code-select-wrapper .select2-container--default .select2-selection--single {
  padding-left: 0;
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  color: #0D2F3F;
  background: #FBFBFB;
}
.customer-info-wrapper .form-box .country-code-select-wrapper .select2-container--default .select2-selection--single {
  border: none;
}
.customer-info-wrapper .form-box .country-code-select-wrapper .select2-container {
  width: 100% !important;
}
.customer-info-wrapper .form-box .country-code-select-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow b {
  position: relative;
  border: none;
  left: 95% !important;
}
.customer-info-wrapper .form-box .country-code-select-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow b::before {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  width: 100%;
  height: 100%;
  position: absolute;
  right: 10px;
  top: -10px;
  font-size: 12px;
}
.customer-info-wrapper .form-box .country-code-select-wrapper .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b::before {
  content: "\f077";
}
.customer-info-wrapper .form-box .phone-number {
  display: flex;
  align-items: center;
  padding-left: 6px;
}
.customer-info-wrapper .form-box .phone-number .phone-input {
  width: 80%;
}
.customer-info-wrapper .form-box .phone-number .phone-input input {
  width: 100%;
  border: none;
  border-left: 1px solid #DBDBDB;
  padding-left: 15px;
}
.customer-info-wrapper .form-box .phone-number .phone-input input:focus {
  outline: 0;
}
.customer-info-wrapper .form-box .phone-number .country-code-select {
  width: 20%;
}
.customer-info-wrapper .btn {
  padding: 5px;
  min-height: 55px;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFC62D;
  color: #0D2F3F;
  font-weight: 600;
}
.customer-info-wrapper .btn span {
  margin-top: 0;
  display: inline-block;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #333333;
}
.customer-info-wrapper .btn.cancel-btn {
  background-color: #6D9773;
  color: #FFFFFF;
}
.customer-info-wrapper label.form-control {
  cursor: pointer;
}
.customer-info-wrapper .custom-radio {
  margin-top: -7px;
}
.customer-info-wrapper [type=radio]:checked,
.customer-info-wrapper [type=radio]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.customer-info-wrapper [type=radio]:checked + label,
.customer-info-wrapper [type=radio]:not(:checked) + label {
  position: relative;
  padding-left: 15px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #666;
}
.customer-info-wrapper [type=radio]:checked + label:before,
.customer-info-wrapper [type=radio]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #BDBDBD;
  border-radius: 100%;
  background: #fff;
}
.customer-info-wrapper [type=radio]:checked + label:after,
.customer-info-wrapper [type=radio]:not(:checked) + label:after {
  content: "";
  width: 10px;
  height: 10px;
  background: #FFC62D;
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 100%;
  transition: all 0.2s ease;
}
.customer-info-wrapper [type=radio]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
.customer-info-wrapper [type=radio]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
.customer-info-wrapper .btn-primary {
  padding: 20px;
  border-radius: 8px;
}
@media (max-width: 575px) {
  .customer-info-wrapper .btn-primary {
    padding: 10px;
  }
}
.customer-info-wrapper .btn-primary .icon {
  margin-left: 5px;
}

/* **************************************************
  My booking
************************************************** */
.my-booking-table {
  padding-top: 40px;
}
.my-booking-table ul.nav-pills {
  border-bottom: 1px solid #D9D9D9;
}
@media (max-width: 575px) {
  .my-booking-table ul.nav-pills {
    margin-bottom: 0 !important;
  }
}
.my-booking-table ul.nav-pills li:not(:last-child) {
  margin-right: 30px;
}
.my-booking-table ul.nav-pills .nav-link {
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  padding-bottom: 15px;
  color: #0D2F3F;
  background-color: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 575px) {
  .my-booking-table ul.nav-pills .nav-link {
    font-size: 16px;
    font-weight: 500;
  }
}
.my-booking-table ul.nav-pills .nav-link .icon {
  margin-right: 5px;
  width: 25px;
}
.my-booking-table ul.nav-pills .nav-link:after {
  content: "";
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background-color: #6D9773;
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  transform: scale(0);
  transition: transform 0.3s ease;
}
.my-booking-table ul.nav-pills .nav-link.active:after {
  transform: scale(1);
}
.my-booking-table .booking-table-content {
  overflow-x: scroll;
}
.my-booking-table .table-wrapper {
  border: 1px solid #E2E2E2;
  border-bottom: 0;
  border-radius: 5px;
  margin-top: 30px;
  overflow-x: auto;
}
.my-booking-table .table-wrapper table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 5px;
  max-width: 1200px;
  overflow-x: scroll;
}
.my-booking-table .table-wrapper tr:nth-child(odd) {
  background: rgba(0, 0, 0, 0.02);
}
.my-booking-table .table-wrapper th {
  background-color: #0D2F3F;
  color: #FFFFFF;
  padding: 15px 20px;
}
@media (max-width: 575px) {
  .my-booking-table .table-wrapper th {
    font-size: 14px;
    font-weight: 500;
  }
}
.my-booking-table .table-wrapper .th-pnr-number,
.my-booking-table .table-wrapper .th-order-date {
  min-width: 135px;
}
.my-booking-table .table-wrapper .th-payment-status,
.my-booking-table .table-wrapper .th-booking-status {
  min-width: 155px;
}
.my-booking-table .table-wrapper th.th-resort {
  min-width: 200px;
}
.my-booking-table .table-wrapper td {
  padding: 15px 20px;
  border-bottom: 1px solid #E2E2E2;
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  color: #333333;
}
.my-booking-table .table-wrapper td .resort-name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 575px) {
  .my-booking-table .table-wrapper td {
    font-size: 16px;
    font-weight: 400;
  }
}
.my-booking-table .table-wrapper td:first-child {
  color: #6D9773;
}
.my-booking-table .table-wrapper .invoice-print-btn {
  background-color: #FFC62D;
  padding: 5px 15px;
  border-radius: 3px;
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  color: #0D2F3F;
  display: flex;
  gap: 3px;
}
.my-booking-table .table-wrapper .invoice-print-btn .icon {
  display: inline-block;
  margin-right: 3px;
  width: 12px;
}

/* **************************************************
    Change password
************************************************** */
.change-password {
  margin-top: 40px;
}
@media (max-width: 575px) {
  .change-password {
    margin-top: 20px;
  }
}
.change-password .change-pass-content {
  max-width: 870px;
  background-color: #FFFFFF;
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.04);
  border-radius: 4px;
  text-align: center;
  padding: 30px;
}
@media (max-width: 575px) {
  .change-password .change-pass-content {
    padding: 30px 15px;
    max-width: 100%;
  }
}
.change-password .change-pass-content p {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 21px;
  color: #0D2F3F;
  margin: 30px 0px;
}
@media (max-width: 575px) {
  .change-password .change-pass-content p {
    margin: 15px 0px;
  }
}
.change-password form .input-item {
  position: relative;
}
.change-password form .input-item input {
  background-color: #FBFBFB;
}
@media (max-width: 575px) {
  .change-password form .input-item input {
    height: 50px;
  }
}
.change-password form .input-item .lock-icon {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.change-password form .input-item .password-toggler {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}
.change-password form .input-item .password-toggler img {
  width: 25px;
}
.change-password form .btn-primary {
  height: 70px;
  background-color: #0D2F3F;
  border-right: 8px;
  margin-top: 20px;
}
@media (max-width: 575px) {
  .change-password form .btn-primary {
    margin-top: 10px;
    height: 50px;
  }
}

/* **************************************************
  Bookmarks
************************************************** */
.bookmark-items {
  padding-top: 50px;
  height: 100%;
}
.bookmark-items .bookmark-empty-state {
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
}
.bookmark-items .bookmark-empty-state h4 {
  text-align: center;
  font-size: 24px;
  color: #999;
}
.bookmark-items .bookmark-empty-state.show {
  display: flex;
}
.bookmark-items .bookmark-item {
  position: relative;
}
@media (max-width: 991px) {
  .bookmark-items .bookmark-item {
    flex-direction: column;
  }
}
.bookmark-items .bookmark-item .facilites {
  border-bottom: 0;
  border-top: 0.5px solid #DEDEDE;
  padding-top: 10px;
  margin-top: 20px;
}
.bookmark-items .bookmark-item .facilites li:not(:last-child) {
  padding-right: 0;
  margin-right: 10px;
}
.bookmark-items .bookmark-item .facilites li:after {
  display: none;
}
.bookmark-items .bookmark-item .facilites .icon {
  border: none;
}
.bookmark-items .bookmark-item .price-info {
  margin-top: 0;
}
.bookmark-items .bookmark-item .price-info h5, .bookmark-items .bookmark-item .price-info h3 {
  margin-bottom: 0;
}
.bookmark-items .bookmark-item .location {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.bookmark-items .item-title {
  font-size: 14px;
}
.bookmark-items .item-thumb {
  width: 285px;
  position: relative;
}
@media (max-width: 991px) {
  .bookmark-items .item-thumb {
    width: 100%;
  }
}
.bookmark-items .item-thumb img {
  width: 100%;
  height: 100%;
}
.bookmark-items .item-thumb .total-photos {
  display: flex;
  align-items: center;
  gap: 5px;
  position: absolute;
  left: 10px;
  bottom: 10px;
}
.bookmark-items .item-thumb .total-photos .label {
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
}
.bookmark-items .item-thumb .discount {
  width: 140px;
  height: 147px;
  position: absolute;
  right: -4px;
  bottom: -1px;
  z-index: 10;
  text-align: center;
  background-image: url("./../images/illustration/discount-bg.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.bookmark-items .item-thumb .discount h4 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #0D2F3F;
  position: absolute;
  right: 10px;
  bottom: 0px;
}
.bookmark-items .item-thumb .discount h4 span {
  font-size: 16px;
  display: block;
  font-weight: 400;
}
.bookmark-items .single-search-desc {
  max-width: 40%;
}
@media (max-width: 991px) {
  .bookmark-items .single-search-desc {
    max-width: 100%;
  }
}
.bookmark-items .item-actions {
  max-width: 20%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 20px 20px 20px auto;
}
@media (max-width: 991px) {
  .bookmark-items .item-actions {
    max-width: 100%;
    flex-direction: row;
    margin: 20px;
  }
}
.bookmark-items .item-actions .btn {
  display: flex;
  gap: 5px;
}
.bookmark-items .item-actions .remove-btn.remove-btn {
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  color: #0D2F3F;
}

/* **************************************************
    My accounts
************************************************** */
.account-details {
  padding-top: 50px;
}
.account-details .details-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .account-details .details-top {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 15px;
  }
}
.account-details .details-top h3 {
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  color: #0D2F3F;
  margin-bottom: 0;
}
.account-details .details-top .btn {
  background-color: #FFC62D;
  padding: 10px 15px;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  color: #23262F;
}
.account-details p {
  max-width: 870px;
}
.account-details .info-items {
  margin: 0;
  padding: 0;
}
.account-details .info-items:not(:last-child) {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #DADADA;
}
.account-details .info-items .info-item {
  display: flex;
}
.account-details .info-items .info-item:not(:last-child) {
  margin-bottom: 20px;
}
.account-details .info-items .info-item .left-content {
  width: 180px;
  margin-right: 100px;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .account-details .info-items .info-item .left-content {
    margin-right: 50px;
  }
}
.account-details .info-items .info-item .icon {
  min-width: 20px;
}
.account-details .info-items .info-item .icon img {
  width: 20px;
}
.account-details .info-items .info-item .icon.address-icon img {
  transform: scale(1.1);
  opacity: 0.8;
}
.account-details .info-items .label {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
}
.account-details .info-items .icon {
  margin-right: 10px;
}
.account-details .info-items .right-content p {
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  color: #0D2F3F;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .account-details .info-items .right-content p {
    font-size: 16px;
  }
}

.edit-account-form {
  padding-top: 50px;
  padding-bottom: 0;
}
.edit-account-form .gender-field {
  display: flex;
  align-items: center;
}
.edit-account-form .gender-field .gender-label {
  margin-top: 3px;
}
.edit-account-form .gender-field .gender-name {
  margin-left: 10px;
}
.edit-account-form .input-item {
  margin-bottom: 20px;
}
.edit-account-form .input-item .form-control {
  background-color: #FBFBFB;
  border-radius: 8px;
}
@media (max-width: 575px) {
  .edit-account-form .input-item .form-control {
    height: 50px;
  }
}
.edit-account-form .date-picker {
  position: relative;
}
.edit-account-form .date-picker .icon {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(15%);
}
@media (max-width: 575px) {
  .edit-account-form .date-picker .icon {
    transform: scale(0.7);
  }
}
.edit-account-form .address-field .form-control {
  min-height: 200px;
  padding: 20px 15px;
  background-color: #FBFBFB;
  border-radius: 8px;
}
@media (max-width: 575px) {
  .edit-account-form .address-field .form-control {
    min-height: 150px;
  }
}
.edit-account-form .address-field .btn {
  display: flex;
  justify-content: end;
  color: #FFFFFF;
  gap: 10px;
  margin-left: auto;
}
.edit-account-form .address-field .btn .label {
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  text-align: right;
  color: #0D2F3F;
}
.edit-account-form .address-field .btn .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background-color: #0D2F3F;
  border-radius: 50%;
}
.edit-account-form .languages {
  display: flex;
  gap: 15px;
  align-items: center;
}
.edit-account-form .languages span {
  padding: 8px 18px;
  background-color: #0D2F3F;
  border-radius: 4px;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
}
.edit-account-form .custom-radio {
  margin-top: -7px;
}
.edit-account-form [type=radio]:checked,
.edit-account-form [type=radio]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.edit-account-form [type=radio]:checked + label,
.edit-account-form [type=radio]:not(:checked) + label {
  position: relative;
  padding-left: 15px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #666;
}
.edit-account-form [type=radio]:checked + label:before,
.edit-account-form [type=radio]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #BDBDBD;
  border-radius: 100%;
  background: #fff;
}
.edit-account-form [type=radio]:checked + label:after,
.edit-account-form [type=radio]:not(:checked) + label:after {
  content: "";
  width: 10px;
  height: 10px;
  background: #FFC62D;
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 100%;
  transition: all 0.2s ease;
}
.edit-account-form [type=radio]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
.edit-account-form [type=radio]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
.edit-account-form .btn-primary {
  width: 100%;
  padding: 20px;
  border-radius: 8px;
}
@media (max-width: 575px) {
  .edit-account-form .btn-primary {
    padding: 10px;
  }
}
.edit-account-form .btn-primary .icon {
  margin-left: 5px;
}
.edit-account-form .input-item.upload-file .upload-file-outer {
  height: 50px;
  padding: 0px 15px;
  line-height: 1;
}
.edit-account-form .input-item.upload-file label {
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.edit-account-form .country-select-wrapper .select2-container {
  width: 100% !important;
}
.edit-account-form .country-select-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 40px;
  color: #5D6974;
}
.edit-account-form .country-select-wrapper .select2-container--default .select2-selection--single {
  height: 50px;
  border: 1px solid #DDE1E0;
  padding: 5px;
  background: #FBFBFB;
}
.edit-account-form .country-select-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 50%;
  transform: translateY(-35%);
}
.edit-account-form .country-select-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow b {
  position: relative;
  border: none;
}
.edit-account-form .country-select-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow b::before {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  width: 100%;
  height: 100%;
  position: absolute;
  right: 10px;
  top: -15px;
  font-size: 12px;
}
.edit-account-form .country-select-wrapper .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b::before {
  content: "\f077";
}
.edit-account-form .country-select-wrapper .select2-container--default .select2-search--dropdown .select2-search__field {
  border-color: #AEC1DB;
}
.edit-account-form .country-select-wrapper .select2-container--default .select2-search--dropdown .select2-search__field:focus {
  outline: 0;
}
.edit-account-form .country-select-wrapper .c-select.select2-dropdown.select2-dropdown--above::after {
  top: 101%;
}
.edit-account-form .country-select-wrapper .c-select.select2-dropdown.select2-dropdown--above {
  top: -22px;
}
.edit-account-form .media-upload.lg-box {
  width: 200px;
  height: 150px;
}
.edit-account-form .media-upload.lg-box .placeholder-text img {
  margin-bottom: 15px;
}

/* **************************************************
    Room and suits
************************************************** */
.room-n-suits {
  background-color: rgba(211, 118, 67, 0.1);
}
.room-n-suits .suit-item {
  padding: 30px;
  border-radius: 8px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
@media (max-width: 575px) {
  .room-n-suits .suit-item {
    padding: 20px;
  }
}
.room-n-suits .suit-item::after {
  content: "";
  width: 100%;
  height: 180px;
  background: linear-gradient(360deg, rgba(17, 36, 55, 0.8) 34.1%, rgba(17, 36, 55, 0.6) 69.73%, rgba(17, 36, 55, 0) 100%);
  border-radius: 4px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.room-n-suits .suit-item .item-bottom {
  min-height: 320px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  position: relative;
  z-index: 10;
}
@media (max-width: 575px) {
  .room-n-suits .suit-item .item-bottom {
    min-height: 220px;
  }
}
.room-n-suits .suit-item .item-bottom .bottom-content {
  width: 100%;
}
.room-n-suits .suit-item .item-bottom .facilities {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 400px) {
  .room-n-suits .suit-item .item-bottom .facilities {
    flex-direction: column;
  }
}
.room-n-suits .suit-item .item-bottom .facilities ul {
  margin: 10px 0 0 0;
  padding: 0;
  display: flex;
  gap: 20px;
}
.room-n-suits .suit-item .item-bottom .facilities ul li {
  list-style: none;
}
@media (max-width: 575px) {
  .room-n-suits .suit-item .item-bottom .facilities ul li {
    transform: scale(0.8);
  }
}
.room-n-suits .suit-item .item-bottom .facilities .btn-see-more {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  color: #FFFFFF;
  transition: transform 0.3s ease;
}
@media (max-width: 575px) {
  .room-n-suits .suit-item .item-bottom .facilities .btn-see-more {
    font-size: 16px;
    padding-left: 0;
  }
}
.room-n-suits .suit-item .item-bottom .facilities .btn-see-more:hover {
  transform: translateX(10px);
}
.room-n-suits .suit-item .item-bottom .facilities .btn-see-more .icon {
  display: inline-block;
  line-height: 1;
  transform: translateY(2px);
}
.room-n-suits .suit-item .item-bottom .room-type {
  width: 100%;
  display: inline-block;
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  text-decoration: none;
  color: #FFFFFF;
  border-bottom: 0.4px solid #FFFFFF;
  margin-bottom: 15px;
  padding-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.room-n-suits .suit-item.large .room-price {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFFFFF;
  padding: 8px 15px;
  border-radius: 4px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #0D2F3F;
  position: absolute;
  left: 40px;
  top: 30px;
  z-index: 20;
}
@media (max-width: 575px) {
  .room-n-suits .suit-item.large .room-price {
    left: 20px;
    top: 20px;
  }
}
.room-n-suits .suit-item .btn-book-now {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  width: 70px;
  height: 70px;
  background-color: #FFC62D;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 40px;
  top: 30px;
  z-index: 20;
}
@media (max-width: 575px) {
  .room-n-suits .suit-item .btn-book-now {
    right: 20px;
    top: 20px;
  }
}
.room-n-suits .suit-item .btn-book-now span {
  font-size: 12px;
}
.room-n-suits .suit-item .price {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
  margin-bottom: 10px;
}

/* **************************************************
   Near destinaiton
************************************************** */
.near-destination {
  background-color: rgba(211, 118, 67, 0.1);
}
.near-destination .single-item {
  min-height: 330px;
  width: 100%;
  border-radius: 8px;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
}
.near-destination .single-item::after {
  content: "";
  width: 100%;
  height: 190px;
  background: linear-gradient(360deg, #112437 34.1%, rgba(17, 36, 55, 0.782698) 69.73%, rgba(17, 36, 55, 0) 100%);
  border-radius: 8px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.near-destination .single-item .item-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.near-destination .single-item .item-top .event {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  background-color: #0D2F3F;
  padding: 8px 20px;
  border-radius: 3px;
  color: #FFFFFF;
}
.near-destination .single-item .item-top .distance {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #FFC62D;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 500;
  color: #0D2F3F;
}
.near-destination .single-item .item-bottom {
  position: relative;
  z-index: 10;
}
.near-destination .single-item h4 {
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  color: #FFFFFF;
  border-bottom: 0.3px solid #FFFFFF;
  margin-bottom: 15px;
  padding-bottom: 10px;
}
.near-destination .single-item h5 {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
  margin-bottom: 20px;
}
.near-destination .single-item .facilities {
  display: flex;
  justify-content: space-between;
}
.near-destination .single-item .facilities ul {
  margin: 0;
  padding: 0;
}
.near-destination .single-item .facilities ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  color: #FFFFFF;
}
.near-destination .single-item .facilities ul li:not(:last-child) {
  margin-bottom: 15px;
}
.near-destination .single-item .facilities ul li .icon {
  width: 20px;
}
.near-destination .single-item .facilities .btn {
  transition: transform 0.3s ease;
}
.near-destination .single-item .facilities .btn .icon {
  font-size: 25px;
  color: #FFC62D;
}
.near-destination .single-item .facilities .btn:hover {
  transform: translateX(10px);
}

/* **************************************************
   Room types
************************************************** */
.room-types .price-n-place {
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 0.5px solid #DEDEDE;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.room-types .price-n-place h3, .room-types .price-n-place h5 {
  margin-bottom: 0;
}
.room-types .price-n-place .place {
  border-bottom: 0;
}

/* **************************************************
    Amenities - Gestalt Principles Applied
************************************************** */
.hotel-amenities {
  background-color: #FFFDF5;
}
.hotel-amenities .amenities-items .row {
  row-gap: 35px !important;
}
@media (max-width: 767px) {
  .hotel-amenities .amenities-items .row {
    row-gap: 25px !important;
  }
}
.hotel-amenities .single-item {
  padding: 0;
  transition: all 0.3s ease;
  height: 100%;
}
.hotel-amenities .single-item .item-head {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
}
.hotel-amenities .single-item h4 {
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  color: #0D2F3F;
  margin-bottom: 0;
  line-height: 1.3;
}
.hotel-amenities .single-item p {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 0;
  margin-left: 52px;
}
.hotel-amenities .icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hotel-amenities .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* **************************************************
    Special offers
************************************************** */
.special-offer {
  background-color: #FFFDF5;
}
.special-offer .offer-items .row {
  display: flex;
  flex-wrap: wrap;
}
.special-offer .offer-items .row > [class*="col-"] {
  display: flex;
}
.special-offer .single-offer {
  min-height: 395px;
  height: 100%;
  width: 100%;
  padding: 30px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 8px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 575px) {
  .special-offer .single-offer {
    min-height: 200px;
    padding: 20px;
  }
}
.special-offer .single-offer::after {
  content: "";
  width: 100%;
  height: 300px;
  background: linear-gradient(360deg, #112437 34.1%, rgba(17, 36, 55, 0.782698) 69.73%, rgba(17, 36, 55, 0) 100%);
  border-radius: 8px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.special-offer .single-offer .offer-content {
  position: relative;
  z-index: 10;
}
.special-offer .single-offer h3 {
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  color: #FFFFFF;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 575px) {
  .special-offer .single-offer h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.special-offer .single-offer p {
  max-width: 330px;
  font-size: 14px;
  color: #FFFFFF;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.special-offer .single-offer .percent-icon {
  display: inline-block;
  margin-bottom: 20px;
  max-width: 50px;
}
@media (max-width: 575px) {
  .special-offer .single-offer .percent-icon {
    transform: scale(0.8);
  }
}
.special-offer .single-offer .btn {
  background-color: #6D9773;
  margin-top: 40px;
}
@media (max-width: 575px) {
  .special-offer .single-offer .btn {
    margin-top: 20px;
  }
}

/* **************************************************
    Sign up
************************************************** */
.user-form-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .user-form-wrapper {
    display: block;
  }
}
.user-form-wrapper.has-bg {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}
.user-form-wrapper.has-bg:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #0D2F3F;
  opacity: 0.5;
  position: absolute;
  inset: 0;
}
.user-form-wrapper.has-bg.sign-up, .user-form-wrapper.has-bg.sign-in {
  background-image: url("./../images/signIn-bg.webp");
}
.user-form-wrapper.has-bg.sign-up .user-form, .user-form-wrapper.has-bg.sign-in .user-form {
  margin-top: 0;
}
.user-form-wrapper.has-bg.sign-up form, .user-form-wrapper.has-bg.sign-in form {
  padding: 40px;
  margin-left: auto;
}
@media (max-width: 991px) {
  .user-form-wrapper.has-bg.sign-up form, .user-form-wrapper.has-bg.sign-in form {
    margin: auto;
  }
}
@media (max-width: 575px) {
  .user-form-wrapper.has-bg.sign-up form, .user-form-wrapper.has-bg.sign-in form {
    padding: 20px;
  }
}
.user-form-wrapper.otp-input .user-form {
  margin-top: 0;
}
.user-form-wrapper.otp-input form {
  padding: 40px;
  margin-left: auto;
}
@media (max-width: 991px) {
  .user-form-wrapper.otp-input form {
    margin: auto;
  }
}
@media (max-width: 575px) {
  .user-form-wrapper.otp-input form {
    padding: 20px;
  }
}
.user-form-wrapper.otp-input form h3 {
  margin-top: 0;
}
@media (max-width: 575px) {
  .user-form-wrapper.otp-input form {
    padding: 20px;
  }
}
.user-form-wrapper.otp-input h5 {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  color: #0D2F3F;
  margin-top: 30px;
}
.user-form-wrapper.otp-input .otp-input {
  display: flex;
  justify-content: space-between;
  margin: 30px 0px;
}
.user-form-wrapper.otp-input .otp-input input {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  border: 1px solid rgba(118, 118, 118, 0.4);
  background-color: #FFFFFF;
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  text-align: center;
  color: #0D2F3F;
}
@media (max-width: 575px) {
  .user-form-wrapper.otp-input .otp-input input {
    width: 50px;
    height: 50px;
  }
}
.user-form-wrapper.otp-input .otp-input input:focus {
  outline: 0;
}
.user-form-wrapper.otp-input .otp-input input.error {
  border-color: red;
}
.user-form-wrapper.otp-input .otp-input input.success {
  border-color: green;
}
.user-form-wrapper.otp-input .resend-otp {
  margin: 30px 0px 40px 0px;
}
.user-form-wrapper.otp-input .resend-otp span,
.user-form-wrapper.otp-input .resend-otp button {
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  color: #0D2F3F;
}
.user-form-wrapper.otp-input .resend-otp button {
  padding: 0;
  font-weight: 600;
}

.user-form {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .user-form {
    margin-top: 120px;
  }
}
.user-form .forgot-password-text {
  display: inline-block;
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  color: #0D2F3F;
  text-decoration: none;
  margin-bottom: 15px;
}
.user-form form {
  width: 100%;
  max-width: 500px;
  background: #FFFFFF;
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  padding: 35px 30px 30px 30px;
  position: relative;
}
@media (max-width: 991px) {
  .user-form form {
    max-width: 90%;
    margin: 0px 20px;
  }
}
@media (max-width: 575px) {
  .user-form form {
    max-width: 95%;
    padding: 30px 20px 25px 20px;
    margin: 0px 15px;
  }
}
.user-form form .brand-logo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: #FFC62D;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -70px;
}
@media (max-width: 575px) {
  .user-form form .brand-logo {
    width: 100px;
    height: 100px;
    top: -50px;
    padding: 20px;
  }
}
.user-form form h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  color: #000000;
  margin-top: 20px;
}
@media (max-width: 575px) {
  .user-form form h3 {
    margin-top: 10px;
    font-size: 24px;
  }
}
.user-form form .create-account {
  margin-bottom: 30px;
}
.user-form form .create-account span,
.user-form form .create-account a {
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-size: 14px;
  color: #0D2F3F;
}
.user-form form .create-account span {
  font-weight: 400;
}
.user-form form .create-account a {
  text-decoration: none;
  font-weight: 600;
}
.user-form form .input-item input {
  font-family: "Barlow", sans-serif;
  color: #0D2F3F;
  padding: 15px 20px;
  width: 100%;
  background-color: rgba(21, 52, 95, 0.05);
  color: #0D2F3F;
  border: none;
  border-bottom: 1px solid #DCDCDC;
  border-radius: 0;
}
.user-form form .input-item input:focus {
  outline: 0;
}
.user-form form .btn-primary {
  padding: 15px 20px;
  width: 100%;
  background-color: #FFC62D;
  color: #0D2F3F;
}
.user-form form .divider {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #E5E7EB;
  margin: 40px 0px;
}
.user-form form .divider span {
  width: 30px;
  height: 30px;
  font-family: "Barlow", sans-serif;
  color: #0D2F3F;
  font-size: 18px;
  display: inline-block;
  background-color: #FFFFFF;
  margin-bottom: -16px;
  display: flex;
  justify-content: center;
}
.user-form form .btn.sign-in-with-btn {
  width: 100%;
  padding: 15px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #FFFFFF;
}
.user-form form .btn.sign-in-with-btn:not(:last-child) {
  margin-bottom: 15px;
}
.user-form form .btn.sign-in-with-btn.with-google {
  background-color: white;
  color: #0D2F3F;
  border: 1px solid #D1D5DB;
}
.user-form form .btn.sign-in-with-btn.with-fb {
  background-color: #4267B2;
}
.user-form form .btn.sign-in-with-btn.with-apple {
  background-color: #0D2F3F;
}
@media (max-width: 575px) {
  .user-form.otp-form {
    margin-top: 0;
  }
}
.user-form.sign-in-form {
  margin-top: 0;
}
.user-form.sign-in-form h3 {
  margin-top: 0;
}
.user-form label {
  text-transform: capitalize;
}
.user-form label.required {
  position: relative;
  max-width: -moz-max-content;
  max-width: max-content;
}
.user-form label.required::after {
  content: "*";
  position: absolute;
  right: -8px;
  top: 0px;
}
.user-form .select2-container {
  width: 100% !important;
}
.user-form .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 50px;
  padding-left: 20px;
}
.user-form .select2-container .select2-selection--single {
  height: 50px;
  background-color: rgba(21, 52, 95, 0.05);
  color: #0D2F3F;
  border: none;
  border-bottom: 1px solid #DCDCDC;
  border-radius: 0;
}
.user-form .select2-container--default .select2-selection--single .select2-selection__arrow b {
  margin-top: 10px;
}
.user-form .select2-container--default .select2-search--dropdown .select2-search__field {
  padding: 5px;
}
.user-form .c-select.select2-dropdown {
  max-width: 100%;
}

.sign-up-slider-wrapper {
  max-width: 50%;
}
@media (max-width: 991px) {
  .sign-up-slider-wrapper {
    max-width: 100%;
  }
}
.sign-up-slider-wrapper .slider-item {
  min-height: 845px;
  padding: 50px 30px 50px 30px;
  max-width: 100%;
  background-color: #0D2F3F;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .sign-up-slider-wrapper .slider-item {
    min-height: auto;
  }
}
.sign-up-slider-wrapper .item-texts {
  text-align: center;
  padding: 30px 10px;
}
.sign-up-slider-wrapper .item-texts h4 {
  color: #FFFFFF;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 125%;
  letter-spacing: 0.2px;
}
.sign-up-slider-wrapper .item-texts p {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  color: #F8FAFC;
  opacity: 0.7;
}
.sign-up-slider-wrapper .owl-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 50px;
}

.forgot-password-modal .modal-header {
  padding-left: 30px;
}
.forgot-password-modal .modal-header h5 {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
  color: #0D2F3F;
}
@media (max-width: 575px) {
  .forgot-password-modal .modal-header h5 {
    font-size: 20px;
  }
}
.forgot-password-modal .normal-body-text {
  font-size: 14px;
}
.forgot-password-modal .modal-body {
  padding: 15px 30px 30px 30px;
}
@media (max-width: 575px) {
  .forgot-password-modal .modal-body {
    padding: 15px 20px 20px 20px;
  }
}
.forgot-password-modal .modal-body .form-control {
  font-family: "Barlow", sans-serif;
  color: #0D2F3F;
  padding: 15px 20px;
  width: 100%;
  background-color: rgba(21, 52, 95, 0.05);
  color: #0D2F3F;
  border: none;
  border-bottom: 1px solid #DCDCDC;
  border-radius: 0;
}
.forgot-password-modal .btn-primary {
  padding: 15px 20px;
  width: 100%;
  background-color: #0D2F3F;
}

.user-form {
  margin-top: 0;
}
.user-form.reset-password form {
  padding: 20px 30px;
}
.user-form.reset-password h3 {
  margin-top: 0px;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .user-form.reset-password h3 {
    margin-bottom: 15px;
  }
}

/* **************************************************
    Blog Deatils
************************************************** */
.blog-details {
  padding-top: 20px;
}
@media (max-width: 767px) {
  .blog-details {
    margin-top: -160px;
  }
}
.blog-details .project-thumb img {
  max-width: 1170px;
  height: 420px;
  width: 100%;
  border-radius: 12px;
}
@media (max-width: 991px) {
  .blog-details .project-thumb img {
    height: 350px;
  }
}
@media (max-width: 767px) {
  .blog-details .project-thumb img {
    height: 260px;
  }
}
.blog-details.without-sidebar .post-thumb {
  height: 100%;
}
.blog-details.without-sidebar .post-thumb img {
  min-height: 420px;
  width: 100%;
}
@media (max-width: 767px) {
  .blog-details.without-sidebar .post-thumb img {
    min-height: auto;
  }
}
@media (max-width: 575px) {
  .blog-details.without-sidebar .post-thumb img {
    min-height: 200px;
  }
}
.blog-details .border-bottom {
  border-bottom: 0.7px solid #A6A6A6;
  padding-bottom: 30px;
}
.blog-details .single-post .post-thumb {
  width: 100%;
  max-height: 450px;
}
.blog-details .single-post .post-thumb img {
  max-width: 100%;
  width: 100%;
  height: auto;
  max-height: 450px;
  border-radius: 12px;
}
@media (max-width: 575px) {
  .blog-details .single-post .post-thumb img {
    height: 250px;
  }
}
.blog-details .single-post .post-meta {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .blog-details .single-post .post-meta {
    margin-top: 20px;
  }
}
.blog-details .single-post .post-meta .author img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
}
@media (max-width: 575px) {
  .blog-details .single-post .post-meta .author img {
    width: 50px;
    height: 50px;
  }
}
.blog-details .single-post .post-meta .author h5 {
  font-size: 16px;
  font-weight: 500;
  color: #0D2F3F;
  margin-bottom: 5px;
}
@media (max-width: 575px) {
  .blog-details .single-post .post-meta .author h5 {
    font-size: 14px;
    margin-bottom: 0;
  }
}
.blog-details .single-post .post-meta .author span {
  font-size: 16px;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  color: #747171;
}
@media (max-width: 575px) {
  .blog-details .single-post .post-meta .author span {
    font-size: 12px;
  }
}
.blog-details .single-post .post-meta .share-options ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 340px) {
  .blog-details .single-post .post-meta .share-options {
    gap: 10px !important;
  }
}
.blog-details .single-post .post-meta .share-options li {
  list-style: none;
}
.blog-details .single-post .post-meta .share-options li.copy-link {
  font-size: 14px;
  font-weight: 400;
  font-family: "Barlow", sans-serif;
  border: 0.7px solid #0D2F3F;
  padding: 10px 25px;
  border-radius: 8px;
}
.blog-details .single-post .post-meta .share-options li.copy-link span {
  color: #000000;
}
@media (max-width: 575px) {
  .blog-details .single-post .post-meta .share-options li.copy-link {
    padding: 7px 15px;
    font-size: 12px;
    border-radius: 4px;
  }
}
.blog-details .single-post .post-meta .share-options li.copy-link:hover {
  cursor: alias;
}
.blog-details .single-post .post-meta .share-options a {
  text-decoration: none;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #6D9773;
  border-radius: 8px;
  color: #FFFFFF;
  transition: all 0.3s ease-in-out;
}
.blog-details .single-post .post-meta .share-options a i {
  color: #FFFFFF;
}
.blog-details .single-post .post-meta .share-options a:hover {
  background-color: #FFC62D;
}
.blog-details .single-post .post-meta .share-options a:hover i {
  color: #0D2F3F;
}
@media (max-width: 575px) {
  .blog-details .single-post .post-meta .share-options a {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}
.blog-details .single-post .post-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 42px;
  color: #0D2F3F;
  margin-bottom: 15px;
  margin-top: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 575px) {
  .blog-details .single-post .post-title {
    font-size: 24px;
    line-height: 34px;
    margin-top: 20px;
    margin-bottom: 10px;
  }
}
.blog-details .single-post .post-desc {
  color: #333333;
  line-height: 30px;
}
@media (max-width: 575px) {
  .blog-details .single-post .post-desc {
    line-height: 24px;
  }
}
.blog-details .single-post .post-quote {
  font-size: 16px;
  font-family: "Barlow", sans-serif;
  font-style: italic;
  color: #0D2F3F;
  line-height: 26px;
  margin: 50px 0px;
  padding-left: 20px;
  position: relative;
  font-weight: 600;
  max-width: 85%;
}
@media (max-width: 575px) {
  .blog-details .single-post .post-quote {
    font-size: 12px;
    line-height: 24px;
    max-width: 90%;
  }
}
.blog-details .single-post .post-quote::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 120%;
  background-color: #6D9773;
  border-radius: 30px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.blog-details .single-post .post-img-grid {
  margin-top: 30px;
}
@media (max-width: 575px) {
  .blog-details .single-post .post-img-grid {
    margin-top: 0;
  }
}
.blog-details .single-post .post-img-grid img {
  width: 100%;
  border-radius: 12px;
}
.blog-details .single-post .post-subtitle {
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  color: #0D2F3F;
  margin-top: 30px;
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .blog-details .single-post .post-subtitle {
    font-size: 18px;
    line-height: 28px;
    margin-top: 20px;
    margin-bottom: 10px;
  }
}

.post-comments {
  margin-top: 0;
}
@media (max-width: 575px) {
  .post-comments .post-comments-content {
    padding-top: 30px;
    margin-top: 30px;
  }
}
.post-comments h3 {
  font-size: 24px;
  line-height: 24px;
  color: #0D2F3F;
  font-weight: 500;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .post-comments h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.post-comments .single-comment:not(:last-child) {
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  .post-comments .single-comment:not(:last-child) {
    margin-bottom: 15px;
  }
}
.post-comments .single-comment .avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
@media (max-width: 575px) {
  .post-comments .single-comment .avatar img {
    width: 40px;
    height: 40px;
  }
}
.post-comments .comment-info {
  width: 100%;
}
.post-comments .comment-info .name {
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  color: #0D2F3F;
  margin-bottom: 5px;
}
@media (max-width: 575px) {
  .post-comments .comment-info .name {
    font-size: 16px;
  }
}
.post-comments .comment-info .comment-text {
  color: #333333;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
}
@media (max-width: 575px) {
  .post-comments .comment-info .comment-text {
    line-height: 20px;
  }
}
.post-comments .comment-info .meta {
  font-size: 14px;
  font-weight: 500;
  color: #0D2F3F;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .post-comments .comment-info .meta {
    font-size: 12px;
  }
}
.post-comments .comment-info .meta .date {
  color: #000;
}

.post-reply {
  padding: 50px 0px 0px 0px;
}
@media (max-width: 767px) {
  .post-reply {
    padding-top: 30px;
  }
}
.post-reply h2 {
  font-size: 32px;
  color: #0D2F3F;
  font-weight: 500;
}
@media (max-width: 575px) {
  .post-reply h2 {
    font-size: 20px;
  }
}
.post-reply p {
  font-family: "Barlow", sans-serif;
  color: #333333;
  margin-bottom: 0;
}
.post-reply .reply-form {
  margin-top: 20px;
}
@media (max-width: 575px) {
  .post-reply .reply-form {
    margin-top: 10px;
  }
}
.post-reply .reply-form .input-field {
  position: relative;
  width: 100%;
  height: 44px;
  line-height: 44px;
}
.post-reply .reply-form .input-field:not(:first-child) {
  margin-top: 55px;
}
@media (max-width: 575px) {
  .post-reply .reply-form .input-field:not(:first-child) {
    margin-top: 35px;
  }
}
.post-reply .reply-form .input-field label {
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  color: #0D2F3F;
  transition: 0.2s all;
  font-size: 22px;
  font-weight: 400;
  cursor: text;
}
@media (max-width: 767px) {
  .post-reply .reply-form .input-field label {
    top: -10px;
    font-size: 16px;
  }
}
.post-reply .reply-form .input-field input {
  background-color: transparent;
  color: #000000;
  width: 100%;
  border: 0;
  outline: 0;
  border-bottom: 0.7px solid #A6A6A6;
  box-shadow: none;
  transition: all 0.3s ease-in-out;
}
.post-reply .reply-form .input-field input:focus,
.post-reply .reply-form .input-field input:valid {
  border-color: #0D2F3F;
}
.post-reply .reply-form .input-field input:focus ~ label,
.post-reply .reply-form .input-field input:valid ~ label {
  font-size: 14px;
  top: -28px;
  color: #0D2F3F;
}
.post-reply .reply-form .form-text-box {
  width: 100%;
  min-height: 310px;
  border: 1px solid #A6A6A6;
  color: #333333;
  border-radius: 12px;
  margin-top: 20px;
  padding: 20px;
  font-size: 22px;
}
@media (max-width: 575px) {
  .post-reply .reply-form .form-text-box {
    margin-top: 10px;
    min-height: 180px;
    padding: 10px;
    font-size: 16px;
  }
}
.post-reply .reply-form .form-text-box:focus {
  border-color: #0D2F3F;
  outline: #0D2F3F;
}
.post-reply .reply-form ::-moz-placeholder {
  color: #5C5C5C;
  font-size: 22px;
}
.post-reply .reply-form ::placeholder {
  color: #5C5C5C;
  font-size: 22px;
}
@media (max-width: 575px) {
  .post-reply .reply-form ::-moz-placeholder {
    font-size: 12px;
  }
  .post-reply .reply-form ::placeholder {
    font-size: 12px;
  }
}
.post-reply .reply-form .form-check {
  margin-top: 20px;
  display: flex;
  align-items: center;
}
.post-reply .reply-form .form-check .form-check-label {
  font-family: "Barlow", sans-serif;
  color: #333333;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  margin-left: 10px;
  margin-top: 2px;
}
@media (max-width: 575px) {
  .post-reply .reply-form .form-check .form-check-label {
    font-size: 12px;
    line-height: 20px;
  }
}
.post-reply .reply-form .form-check .form-check-input {
  min-width: 28px;
  min-height: 26px;
  margin-top: 0;
  border-radius: 6px;
}
@media (max-width: 575px) {
  .post-reply .reply-form .form-check .form-check-input {
    width: 20px;
    height: 20px;
  }
}
.post-reply .reply-form .form-check .form-check-input:checked {
  background-color: #0D2F3F;
  border-color: #0D2F3F;
}
.post-reply .reply-form .comment-submit {
  background-color: #0D2F3F;
  color: #FFFFFF;
  font-family: "Barlow", sans-serif;
  font-size: 18px;
  font-weight: 500;
  border-radius: 8px;
  padding: 15px 30px;
  margin-top: 30px;
  border: none;
  outline: 0;
}
@media (max-width: 575px) {
  .post-reply .reply-form .comment-submit {
    font-size: 14px;
    padding: 15px 25px;
    margin-top: 10px;
  }
}
.post-reply .required-login-modal .modal-header {
  border-bottom: none;
}
.post-reply .required-login-modal .modal-header .btn-close {
  border-radius: 50%;
  background-color: #0D2F3F;
  color: #FFFFFF;
  background-image: none;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}
.post-reply .required-login-modal .user-form {
  margin-top: 0;
}
.post-reply .required-login-modal .user-form form {
  margin: 0;
  max-width: 100%;
  padding: 0px 20px 20px 20px;
  box-shadow: none;
}
.post-reply .required-login-modal .user-form form h3 {
  margin-top: 0;
}

/* **************************************************
    Blog Sidebar
************************************************** */
.blog-sidebar .widget-search {
  position: relative;
}
.blog-sidebar .widget-search input {
  padding: 10px 15px;
  border: 1px solid #BDBDBD;
  width: 100%;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #828282;
}
.blog-sidebar .widget-search input::-moz-placeholder {
  color: #828282;
  font-size: 16px;
  font-family: "Barlow", sans-serif;
}
.blog-sidebar .widget-search input::placeholder {
  color: #828282;
  font-size: 16px;
  font-family: "Barlow", sans-serif;
}
.blog-sidebar .widget-search input:focus, .blog-sidebar .widget-search input:active {
  outline-color: #0D2F3F;
  outline-width: 1px;
}
.blog-sidebar .widget-search .search-button {
  border: none;
  outline: 0;
  background-color: #0D2F3F;
  color: #FFFFFF;
  width: 45px;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.blog-sidebar .sidebar-heading {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #6D9773;
  text-transform: uppercase;
  margin-top: 30px;
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .blog-sidebar .sidebar-heading {
    margin-top: 20px;
  }
}
.blog-sidebar .widget-categories .category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
}
.blog-sidebar .widget-categories .category-item:not(:last-child) {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #BDBDBD;
}
.blog-sidebar .widget-categories .category-item span {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #0D2F3F;
}
.blog-sidebar .widget-recent-post .post-item:not(:last-child) {
  margin-bottom: 20px;
}
.blog-sidebar .widget-recent-post .post-title {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  font-style: italic;
  color: #0D2F3F;
  display: block;
  text-decoration: none;
  margin-bottom: 5px;
}
.blog-sidebar .widget-recent-post .meta {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #0D2F3F;
}
.blog-sidebar .widget-archives .archives-item {
  text-decoration: none;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #4F4F4F;
  display: block;
}
.blog-sidebar .widget-archives .archives-item:not(:last-child) {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #BDBDBD;
}
.blog-sidebar .widget-newsletter .newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #EBEBEB;
  border-radius: 4px;
  padding: 5px 5px;
}
.blog-sidebar .widget-newsletter .newsletter-form input {
  width: 100%;
  padding: 0px 6px;
  border: none;
  background-color: transparent;
}
.blog-sidebar .widget-newsletter .newsletter-form input:focus {
  border: none;
  outline: none;
}
.blog-sidebar .widget-newsletter .newsletter-form input::-moz-placeholder {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-size: 14px;
}
.blog-sidebar .widget-newsletter .newsletter-form input::placeholder {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-size: 14px;
}
.blog-sidebar .widget-newsletter .newsletter-form button {
  border: 0;
  outline: 0;
  padding: 8px 20px;
  border-radius: 4px;
  background-color: #0D2F3F;
  color: #FFFFFF;
  font-weight: 400;
  font-size: 14px;
  font-family: "Barlow", sans-serif;
}
.blog-sidebar .widget-tags .tags {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.blog-sidebar .widget-tags .tags a {
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  border: 1px solid #BDBDBD;
  padding: 3px 10px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}
.blog-sidebar .widget-tags .tags a:hover {
  background-color: #FFC62D;
  color: #0D2F3F;
}

/* **************************************************
    Contact
************************************************** */
.contact-cards .single-card {
  padding: 30px;
  background-color: #fff;
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.07);
  border-radius: 12px;
  text-align: center;
}
.contact-cards .single-card h5 {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  color: #0D2F3F;
  margin: 10px 0px;
}
.contact-cards .single-card p, .contact-cards .single-card a {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  margin-bottom: 0;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.contact-cards .single-card a {
  text-decoration: none;
}

.contact-form-wrapper .section-head {
  margin-bottom: 30px;
}
.contact-form-wrapper .section-head h3 {
  font-weight: 600;
  color: #0D2F3F;
  margin-bottom: 10px;
}
.contact-form-wrapper .section-head .body-text {
  color: #666;
  font-size: 15px;
}
.contact-form-wrapper .contact-form {
  position: relative;
}
.contact-form-wrapper .contact-form .input-item {
  position: relative;
}
.contact-form-wrapper .contact-form .input-item input,
.contact-form-wrapper .contact-form .input-item textarea {
  width: 100%;
  padding: 15px 50px 15px 20px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  font-size: 15px;
  background-color: #fff;
  transition: all 0.3s ease;
}
.contact-form-wrapper .contact-form .input-item input:focus,
.contact-form-wrapper .contact-form .input-item textarea:focus {
  outline: none;
  border-color: #0D2F3F;
  box-shadow: 0 0 0 3px rgba(13, 47, 63, 0.1);
}
.contact-form-wrapper .contact-form .input-item input::-moz-placeholder, .contact-form-wrapper .contact-form .input-item textarea::-moz-placeholder {
  color: #999;
}
.contact-form-wrapper .contact-form .input-item input::placeholder,
.contact-form-wrapper .contact-form .input-item textarea::placeholder {
  color: #999;
}
.contact-form-wrapper .contact-form .input-item .icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  opacity: 0.5;
  pointer-events: none;
}
.contact-form-wrapper .contact-form .input-item .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.contact-form-wrapper .contact-form .input-item.message .icon {
  display: none;
}
.contact-form-wrapper .contact-form .input-item.message textarea {
  min-height: 150px;
  padding: 15px 20px;
  resize: vertical;
}
.contact-form-wrapper form {
  width: 100%;
  padding: 30px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.07);
}
@media (max-width: 575px) {
  .contact-form-wrapper form {
    padding: 15px;
  }
}
.contact-form-wrapper form .btn-primary {
  height: 55px;
  border-radius: 8px;
  width: 100%;
  background-color: #0D2F3F;
  border: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.contact-form-wrapper form .btn-primary:hover {
  background-color: rgb(6.0210526316, 21.7684210526, 29.1789473684);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(13, 47, 63, 0.3);
}
.contact-form-wrapper .contact-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.07);
  height: 100%;
  min-height: 450px;
}
.contact-form-wrapper .contact-map iframe {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: none;
}
@media (max-width: 575px) {
  .contact-form-wrapper .contact-map iframe {
    min-height: 300px;
  }
}

/* **************************************************
    Payment success
************************************************** */
.payment-success-wrapper h3 {
  text-align: center;
  font-weight: 600;
  margin: 20px 0px 40px 0px;
}
@media (max-width: 575px) {
  .payment-success-wrapper h3 {
    margin: 10px 0px 30px 0px;
  }
}
.payment-success-wrapper .success-icon {
  text-align: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: auto;
  margin-bottom: 10px;
}
.payment-success-wrapper form {
  max-width: 480px;
  background: #fff;
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 30px;
  margin: 0 auto;
}
.payment-success-wrapper form p {
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 17px;
  color: #0D2F3F;
}

/*# sourceMappingURL=app.css.map*/