.form-check-input@font-face {
    font-family: 'Poppins';
    font-weight: 700;
    src: url('../fonts/poppins/SVN-Poppins SemiBold.ttf');
}
@font-face {
    font-family: 'Poppins';
    font-weight: 400;
    src: url('../fonts/poppins/SVN-Poppins Regular.ttf');
}

:root {
  --default-font: 'Poppins';
  --heading-font: 'Poppins';
  --nav-font: 'Poppins';
}

:root,[data-bs-theme=light] {
    --bs-bg-label-tint-amount: 84%;
    --bs-border-subtle-amount: 70%;
    --bs-base-color: #22303e;
    --bs-base-color-rgb: 34, 48, 62;
    --bs-paper-bg: #fff;
    --bs-paper-bg-rgb: 255, 255, 255;
    --bs-min-contrast-ratio: 1.7;
    --bs-box-shadow: 0 0.1875rem 0.5rem 0 rgba(34, 48, 62, 0.1);
    --bs-box-shadow-xs: 0 0.0625rem 0.3175rem 0 rgba(34, 48, 62, 0.06);
    --bs-box-shadow-sm: 0 0.125rem 0.375rem 0 rgba(34, 48, 62, 0.08);
    --bs-box-shadow-lg: 0 0.25rem 0.75rem 0 rgba(34, 48, 62, 0.14);
    --bs-box-shadow-xl: 0 0.3125rem 1.375rem 0 rgba(34, 48, 62, 0.18);
    --bs-floating-component-shadow: 0 0.1875rem 0.5rem 0 rgba(34, 48, 62, 0.1);
    --bs-custom-link-color: var(--bs-primary);
    --bs-navbar-bg: var(--bs-paper-bg);
    --bs-navbar-box-shadow: 0 0 10px #e4e6e8;
    --bs-navbar-border-width: 1px;
    --bs-navbar-border-color: var(--bs-paper-bg);
    --bs-menu-header-color: var(--bs-heading-color);
    --bs-nav-box-shadow: var(--bs-box-shadow);
    --bs-nav-border-color: var(--bs-paper-bg)
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #3A3A3A; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #151515; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #994C16; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #575757; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --secondary-color: #08372F;
  --light-color: #ececec;
  --light-color-1: #D0D0D0;
  --light-color-2: #F7F7F7; 
  --light-color-3: #E9E9E9;
  --gray-color: #848484;
  --gray-color-1: #686868;
  --red-color: #FF0000;
  --blue-color: #0E8DE1;
  --blue-color-1: #E2FBF7;
  --green-color: #69FFE5;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(255, 255, 255, 0.905);  /* The default color of the main navmenu links */
  --nav-hover-color: #ffc451; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ffc451; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  font-size: 14px;
  font-family: 'Poppins';
  font-weight: 400;
  background-color: var(--background-color);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

p:last-of-type {
  margin-bottom: 0;
}

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

.bg-label-primary {
    background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-primary)) !important;
    color: var(--bs-primary) !important
}

.bg-label-secondary {
    background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-secondary)) !important;
    color: var(--bs-secondary) !important
}

.bg-label-success {
    background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-success)) !important;
    color: var(--bs-success) !important
}

.bg-label-info {
    background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-info)) !important;
    color: var(--bs-info) !important
}

.bg-label-warning {
    background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-warning)) !important;
    color: var(--bs-warning) !important
}

.bg-label-danger {
    background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-danger)) !important;
    color: var(--bs-danger) !important
}

.bg-label-light {
    background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-light)) !important;
    color: RGBA(#000, var(--bs-bg-label-tint-amount)) !important
}

.bg-label-dark {
    background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-dark)) !important;
    color: var(--bs-dark) !important
}

.bg-label-gray {
    background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-gray)) !important;
    color: var(--bs-gray) !important
}

.bg-label-facebook {
    background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-facebook)) !important;
    color: var(--bs-facebook) !important
}

.bg-label-twitter {
    background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-twitter)) !important;
    color: var(--bs-twitter) !important
}

.bg-label-google-plus {
    background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-google-plus)) !important;
    color: var(--bs-google-plus) !important
}

.bg-label-instagram {
    background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-instagram)) !important;
    color: var(--bs-instagram) !important
}

.bg-label-linkedin {
    background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-linkedin)) !important;
    color: var(--bs-linkedin) !important
}

.bg-label-github {
    background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-github)) !important;
    color: var(--bs-github) !important
}

.bg-label-dribbble {
    background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-dribbble)) !important;
    color: var(--bs-dribbble) !important
}

.bg-label-pinterest {
    background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-pinterest)) !important;
    color: var(--bs-pinterest) !important
}

.bg-label-slack {
    background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-slack)) !important;
    color: var(--bs-slack) !important
}

.bg-label-reddit {
    background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-reddit)) !important;
    color: var(--bs-reddit) !important
}

.bg-label-youtube {
    background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-youtube)) !important;
    color: var(--bs-youtube) !important
}

.bg-label-vimeo {
    background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-vimeo)) !important;
    color: var(--bs-vimeo) !important
}

[data-bs-theme=dark] .bg-label-dark {
    color: RGBA(#fff, var(--bs-bg-label-tint-amount)) !important
}

@media (max-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm {
        max-width: 100%;
    }
}


.fancybox__backdrop {
  background: rgb(24 24 27 / 48%) !important;
}

/* Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0.8);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header-not-sticky .fixed-top {
  position: unset;
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

@media(max-width: 420px)
{
  .navbar-brand img {
    max-width: 130px;
  }
}

/* Index Page Header
------------------------------*/
.page .header {
  --background-color: rgba(0, 0, 0, 0);
}

/* Index Page Header on Scroll
------------------------------*/
.page.scrolled .header {
  --background-color: rgba(0, 0, 0, 0.8);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

.navbar .navbar-nav {
  gap: 35px;
}

.navbar-nav .nav-item .nav-link {
  text-transform: uppercase;
  color: var(--surface-color);
  font-weight: 600;
  font-family: var(--nav-font);
}

.navbar-nav .nav-item .nav-link.active,
.navbar-nav .nav-item .nav-link:hover {
  color: var(--accent-color);
}

.navbar .navbar-toggler {
  color: var(--surface-color);
  padding: 0;
}

.navbar .navbar-toggler:focus {
  box-shadow: none;
}

.content-bottom__offcanvas {
  margin: 12px 0 0;
  padding: 16px;
  background: var(--surface-color);
}

.content-bottom__offcanvas h3 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--default-color);
}

.content-bottom__offcanvas ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.content-bottom__offcanvas li {
  font-size: 14px;
  line-height: 20px;
}

.language-booking {
  gap: 28px;
}

.language-menu {
  position: relative;
}

.language-menu a {
  color: var(--surface-color);
  font-weight: 600;

}

.language-menu ul.dropdown {
  color: #fff;
  position: absolute;
  list-style: none;
  right: 0;
  top: 35px;
  width: 120px;
  background: #252525;
  z-index: 99;
  text-align: left;
  padding: 13px 13px 20px;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.language-menu li:not(:last-child) {
  margin-bottom: 8px;
}

.language-menu:hover ul.dropdown {
  opacity: 1;
  visibility: visible;
}

.language-menu ul.dropdown a {
  display: block;
}
.language-menu ul.dropdown img {
  width: 31px;
}

.btn-custom {
  display: inline-block;
  color: var(--surface-color);
  background: var(--secondary-color);
  padding: 17px 20px;
  border: 0;
  border-radius: 10px;
  box-shadow: 0px 20px 35px 0px #DF695126;
  font-size: 17px;
  font-family: var(--default-font);
  text-transform: capitalize;
  width: 100%;
  text-align: center;
  line-height: 1;
}

.btn-custom.btn-sm {
  padding: 10px;
  font-size: 14px;
  border-radius: 5px;
}

.booking a {
  display: inline-block;
  color: var(--surface-color);
  background: var(--secondary-color);
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: 0px 20px 35px 0px #DF695126;
  font-size: 16px;
  font-family: var(--default-font);
  text-transform: capitalize;
  width: 100%;
  text-align: center;
  white-space: nowrap;
}

.btn-custom:hover ,
.booking a:hover {
  color: #fff;
  background: var(--accent-color);
}

@media (max-width: 1200px) {
  .booking a {
    font-size: 14px;
    padding: 10px;
  }
}
@media (max-width: 991px) {

  .navbar .navbar-nav {
    gap: 12px;
    padding: 16px;
    background: var(--surface-color);
  }

  .group-button {
    gap: 16px;
  }

  .navbar .offcanvas {
    border: 0;
    background: var(--light-color);
    max-width: 80%;
  }

  .offcanvas-header {
    padding: 10px 20px;
    background: var(--surface-color);
    width: 100%;
  }

  .offcanvas-header .btn-close:focus {
    box-shadow: none;
  }

  .navbar .navbar-nav .nav-link {
    padding: 0;
    color: var(--default-color);
  }

  .search-project-frm {
    padding: 1px 10px;
    margin: 10px 0;
    width: 100%;
  }

  .navbar .offcanvas-body {
    padding: 0;
  }

  .search-project-frm input[type="text"] {
    border: 0;
    font-size: 14px;
    line-height: 20px;
  }

  .search-project-frm input[type="text"]:focus {
    box-shadow: none;
  }
}

@media (max-width: 767px) {

  .group-button {
    gap: 12px;
  }

  .btn-custom {
    font-size: 16px;
  }
  
}
@media(max-width: 580px)
{
  .booking a {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background: url('../img/footer-bg.jpg') center no-repeat;
  background-size: cover;
  position: relative;
}

.footer {
  padding: 50px 0;
  background-color: color-mix(in srgb, var(--footer-background-color) 90%, white 10%);
}
@media(max-width: 767px)
{
  .footer {
    padding: 20px 0;
  }
}

/*.footer-top */

.footer-about .logo {
  margin-bottom: 10px;
}

.footer-about p:not(:last-child) {
  margin-bottom: 18px;
}

.footer .social-links {
  display: flex;
  gap: 12px;
}

.footer h4 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: var(--accent-color);
  position: relative;
  margin-bottom: 30px;
}

.footer-links {
  margin-bottom: 30px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li:not(:last-child) {
  margin-bottom: 18px;
}

.footer-links ul a {
  color: var(--default-color);
  display: block;
}

.footer-links ul a:hover {
  color: var(--accent-color);
}

.footer-newsletter .newsletter-form {
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--light-color-2);
  transition: 0.3s;
}

.footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: color-mix(in srgb, var(--footer-background-color) 90%, white 15%);
  color: var(--default-color);
}

.footer-newsletter .newsletter-form input[type=email]::placeholder {
  color: var(--default-color);
  opacity: .5;
}

.footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer-newsletter .newsletter-form button {
  border: 0;
  font-size: 16px;
  line-height: 26px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--secondary-color);
  color: var(--surface-color);
  transition: 0.3s;
  border-radius: 10px;
}

.footer-newsletter .newsletter-form input:hover {
/*  background: color-mix(in srgb, var(--accent-color), transparent 20%);*/
}

.footer-newsletter p {
  letter-spacing: -.32px;
  color: var(--light-color-1);
}

.copyright {
  border-top: 2px solid #E5E5EA;
  padding-top: 27px;
  margin-top: 40px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 37px;
  bottom: 90px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--surface-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 80px;
/*  overflow: clip;*/
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 58px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 30px;
  position: relative;
  line-height: 26px;
  color: var(--contrast-color);
}
.section-title p{
/*  width: 80%;*/
}
.main-title,
.section-title h3 {
  margin-bottom: 0;
  font-family: var(--default-font);
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
  text-transform: capitalize;
  color: var(--default-color);
  margin-bottom: 5px;
}
.section-title h5 {
  font-weight: 500;
  font-size: 18px;
  line-height: 18.9px;
  margin-bottom: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 10px;
}

@media (max-width: 767px) {

  .section-title p {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 120px 0 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section {
  min-height: 360px;
}

.hero-slider,
.hero > img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
  height: 100%;
}

.hero-slider img {
  object-fit: cover;
  height: 100%;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.content-slider h3 {
  color: var(--surface-color);
  font-size: 24px;
  line-height: 35px;
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 24px;
}

.search-dropdown {
  background: #F3F3F399;
  backdrop-filter: blur(35.521236419677734px);
  border-radius: 5.22px;
  padding: 23px;
}

.form-check-input {
  margin-top: 5px;
}
.form-group select {
  border: none;
  background-color: transparent;
  color: var(--surface-color);
  font-size: 18.81px;
  line-height: 24px;
  border-radius: 0;
  filter: brightness(0) invert(1);
}

.form-group select:focus {
  box-shadow: none;
}

.form-group select option {
  color: var(--default-color);
}

.search-dropdown .dropdown-toggle::after {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translatey(-50%);
  border: 0;
  background: url('../img/arrow-down.png') no-repeat center center;
  background-size: 12px;
  width: 20px;
  height: 20px;
}

.search-dropdown .t-check-in:after,
.search-dropdown .t-check-out:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url('../img/arrow-down.png') no-repeat center center;
  background-size: 12px;
}

.trip-button a {
  background: #FFFFFFD9;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  text-transform: uppercase;
  text-align: center;
  color: var(--accent-color);
  font-weight: 600;
  -webkit-animation: trip-action-ripple 0.6s linear infinite;
  animation: trip-action-ripple 0.6s linear infinite;
}

.customers-use {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 52px;
  /*font-size: 14px;*/
  line-height: 24px;
  font-weight: 500;
}

@-webkit-keyframes trip-action-ripple {
  0% {
    -webkit-box-shadow: 0 4px 10px rgb(255 255 255 / 21%), 0 0 0 0 rgb(255 255 255 / 21%), 0 0 0 5px rgb(255 255 255 / 21%), 0 0 0 10px rgb(255 255 255 / 21%);
    box-shadow: 0 4px 10px rgb(255 255 255 / 21%), 0 0 0 0 rgb(255 255 255 / 21%), 0 0 0 5px rgb(255 255 255 / 21%), 0 0 0 10px rgb(255 255 255 / 21%);
  }

  100% {
    -webkit-box-shadow: 0 4px 10px rgb(255 255 255 / 21%), 0 0 0 5px rgb(255 255 255 / 21%), 0 0 0 10px rgb(255 255 255 / 21%), 0 0 0 20px rgb(255 255 255 / 21%);      
    box-shadow: 0 4px 10px rgb(255 255 255 / 21%), 0 0 0 5px rgb(255 255 255 / 21%), 0 0 0 10px rgb(255 255 255 / 21%), 0 0 0 20px rgb(255 255 255 / 21%);  
  }
}

@keyframes trip-action-ripple {
  0% {
    -webkit-box-shadow: 0 4px 10px rgb(255 255 255 / 21%), 0 0 0 0 rgb(255 255 255 / 21%), 0 0 0 5px rgb(255 255 255 / 21%), 0 0 0 10px rgb(255 255 255 / 21%);
    box-shadow: 0 4px 10px rgb(255 255 255 / 21%), 0 0 0 0 rgb(255 255 255 / 21%), 0 0 0 5px rgb(255 255 255 / 21%), 0 0 0 10px rgb(255 255 255 / 21%);
  }

  100% {
    -webkit-box-shadow: 0 4px 10px rgb(255 255 255 / 21%), 0 0 0 5px rgb(255 255 255 / 21%), 0 0 0 10px rgb(255 255 255 / 21%), 0 0 0 20px rgb(255 255 255 / 21%);      
    box-shadow: 0 4px 10px rgb(255 255 255 / 21%), 0 0 0 5px rgb(255 255 255 / 21%), 0 0 0 10px rgb(255 255 255 / 21%), 0 0 0 20px rgb(255 255 255 / 21%);  
  }
}

@media (min-width: 768px) {

  .col-middle {
    border-left: 3px solid var(--light-color-1);
    border-right: 3px solid var(--light-color-1);
  }
}

@media (max-width: 991px) {

  .customers-use {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media(max-width: 767px)
{
  .hero {
    min-height: unset;
  }
  .content-slider h3 {
    font-size: 18px;
  }

  .search-dropdown {
    padding: 10px;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/

.clients {
  background: var(--light-color-2);
}
.clients .swiper-slide{
  text-align: center;
}

/*--------------------------------------------------------------
# Flash Section
--------------------------------------------------------------*/

.flash {
  background: var(--flashsale-bg);
  background-size: cover;
}

.flash-title {
  margin-bottom: 38px;
}

.flash-title h2 {
  color: var(--surface-color);
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
  letter-spacing: .32px;
  margin-bottom: 12px;
}

.flash-title p {
  /*font-size: 14px;*/
  line-height: 26px;
}

.flash-item {
  background: var(--surface-color);
  border-radius: 10px;
}

.flash-img {
  position: relative;
}

.product-new .flash-img img {
  border-radius: 10px;
}

.flash-img img {
  width: 100%;
}

.flash-group {
  background: rgba(39, 39, 39, 0.85);
  display: flex;
  align-items: center;
  gap: 13px;
  border-radius: 46px;
  bottom: -18px;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 95%;
  overflow: hidden;
  position: absolute;
}

.left-info {
  background: var(--secondary-color);
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--heading-font);
  padding: 8px 20px;
  border-radius: 46px;
}

.right-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-bed {
  background: url('../img/bed.svg') no-repeat top left;
}

.icon-bathroom {
  background: url('../img/bathroom.svg') no-repeat top left;
}

.icon-team {
  background: url('../img/team.svg') no-repeat top left;
}

.right-info .item {
  padding-left: 16px;
  background-size: auto 16px;
  background-position-y: 50%;
}

.right-info span {
  /*font-size: 12px;*/
  line-height: 24px;
}

@media (min-width: 1400px) {
  .right-info {
    width: 50%;
    justify-content: space-between;
  }

  .right-info .item {
    padding-left: 24px;
    background-size: auto 24px;
  }
}

@media (max-width: 767px) {

  .left-info {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .right-info {
    width: 55%;
    justify-content: space-between;
  }

  .right-info .item {
    padding-left: 24px;
    background-size: auto 24px;
  }

  /*.right-info span {
    font-size: 18px;
  }*/
}

.flash-info {
  padding: 29px 14px 14px;
}

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

.price del {
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  color: var(--gray-color);
  letter-spacing: .16px;
}

.price ins {
  color: var(--red-color);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  letter-spacing: .16px;
  text-decoration: none;
}

.box-price {
  display: flex;
}
.box-price span {
  font-size: 12px;
  line-height: 20px;
}
.box-price .unit {
  margin-left: 3px;
}

.review {
  display: inline-block;
  background: var(--secondary-color);
  padding: 12px 9px;
  border-radius: 16px 16px 0 16px;
  font-weight: 500;
}

.flash-info .review {
  display: flex;
  align-items: center;
}
.flash-info .review img {
  margin: -2px 0 0 3px;
}
.flash-info .unit {
  color: #08372F;
  text-transform: capitalize;
}

.book-now a {
  background: var(--accent-color);
  color: var(--surface-color);
  text-transform: uppercase;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: .3px;
  font-weight: 500;
  padding-top: 12px;
  padding-bottom: 12px;
  border-radius: 10px;
}

.book-now a:hover {
  background: var(--secondary-color);
  color: var(--surface-color);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.bottom-product {
  padding-top: 30px;
}

.product-item .flash-group {
  gap: 2px;
  bottom: 10px;
}

.product-item .left-info {
  /*font-size: 12px;*/
  font-weight: 500;
  padding-left: 8px;
  padding-right: 8px;
  background: var(--accent-color);
  color: var(--surface-color);
  white-space: nowrap;
}

.product-item .right-info {
  gap: 0;
}

.product-item .right-info .item {
  padding-left: 10px;
  background-size: auto 13px;
}

@media (max-width: 991px) {

  .product-item .flash-group {
   gap: 8px; 
  }

  .product-item .right-info {
    gap: 8px;
  }
}

@media (max-width: 767px) {

  .product-item .left-info {
    padding-left: 20px;
    padding-right: 20px;
  }

  .product-item .right-info .item {
    padding-left: 24px;
    background-size: auto 24px;
  }

}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.service-item {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-item .content {
  flex: 1;
}

.service-item h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 12px;
}

.service-item p {
  line-height: 26px;
  color: var(--contrast-color);
}

.booking-service {
  padding-top: 28px;
}

.booking-service a {
  line-height: 16.8px;
  font-weight: 600;
  color: var(--secondary-color);
  padding: 15.5px 45.5px;
  border: 1px solid var(--secondary-color);
  border-radius: 10px;
}

.booking-service a:hover {
  background: var(--secondary-color);
  color: var(--surface-color);
}

/*--------------------------------------------------------------
# Discover Section
--------------------------------------------------------------*/

.discover {
  padding-bottom: 150px;
  background: url('../img/discover-bg.png') top center no-repeat;
  background-size: cover;
}

@media (min-width: 768px) {
  .discover {
    padding-top: 260px;
    margin-top: -25px;
  }
}

.discover-info h4 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 0;
}

@media (max-width: 767px) {

  .discover-img {
    width: 80%;
    margin: 0 auto;
  }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/

.section-highlight {
  background: var(--highlight-bg);
  background-size: cover;
  overflow: inherit;
}

.section-highlight .booking a {
  padding: 15px 36px;
  background: var(--accent-color);
}

.section-highlight .booking a:hover {
  background: var(--surface-color);
  color: var(--secondary-color);
}

.highlight-content * {
  color: #fff;
}

.section-title .highlight-content,
.section-title .highlight-content h3 {
  color: #fff;
}

.highlight-list {
  display: flex;
  flex-wrap: wrap;
}

.highlight-item {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 12px;
}

.highlight-item .content {
  position: absolute;
  left: 28px;
  bottom: 26px;
  text-transform: uppercase;
}

.highlight-item img {
  width: 100%;
}

.highlight-item h5 {
  color: var(--surface-color);
  margin-bottom: 0;
  font-size: 18px;
  line-height: 18.9px;
  letter-spacing: 1.6px;
  font-weight: 500;
}

@media (min-width: 992px) {

  .section-highlight {
    padding-bottom: 0;
    margin-bottom: -50px;
  }

  .highlight-item:first-child {
    margin-top: -90px;
    margin-bottom: 24px
  }

  .highlight-item:nth-child(2) {
    margin-top: -120px;
  }

  /*.highlight-item:nth-child(3) {
    margin-bottom: -100px;
  }*/

  .highlight-item:nth-child(4) {
    margin-top: -24px
  }

  .highlight-item:nth-child(2) .content {
    bottom: 76px;
  }

  .highlight-item:nth-child(4) .content {
    bottom: 50px;
  }
}

@media (max-width: 991px) {

  .highlight-list {
    row-gap: 24px;
  }
}

@media (max-width: 767px) {
  
  .highlight-item {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/

.features {
  overflow: inherit;
  padding-top: 80px;
}

@media (min-width: 1200px) {

  .col-20 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

.features-thumb {
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 50%;
  width: 160px;
  height: 160px;
  margin: auto;
}
.features-thumb img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
/*.features-thumb*/

.features-content h4 {
  margin-bottom: 0;
  font-family: var(--default-font);
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
}

/*--------------------------------------------------------------
# News Section
--------------------------------------------------------------*/

.news-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--light-color-3);
}
.news-item .content {
  flex: 1;
}

.news-item img {
  width: 100%;
}

.news-item h3 {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 0;
}

.news-item a:hover h3 {
  color: var(--secondary-color);
}

.news-item p {
  margin: 16px 0 13px;
  /*font-size: 13px;*/
  color: var(--contrast-color);
}

.news-meta {
  font-size: 12px;
  line-height: 18px;
  color: var(--gray-color);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8.15px;
}

.news-date {
  position: relative;
  padding-left: 12px;
}

.news-date::before {
  content: '-';
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
}

.news-item .booking a {
  padding: 12px 22.19px;
  box-shadow: none;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: .3px;
  border: 1px solid transparent;
}

.news-item .booking a:hover {
  background: var(--surface-color);
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.desc {
  margin-bottom: 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.news-slider .desc {
  -webkit-line-clamp: 2;
}

.news-slider .swiper-slide {
  height: auto;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/

.testimonials {
  background: var(--light-color-2);
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .swiper-slide {
  height: auto;
}

.testimonial-img {
  width: 110px;
  height: 110px;
  overflow: hidden;
  border: 6px solid #fff;
  border-radius: 50%;
  margin: auto;
  margin-top: -100px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

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

.init-swiper {
  padding: 62px 30px 0;
}

.init-swiper .swiper-button-next::after,
.init-swiper .swiper-button-prev::after,
.news-slider .swiper-button-next::after,
.news-slider .swiper-button-prev::after {
  display: none;
}

.init-swiper .swiper-button-next,
.init-swiper .swiper-button-prev,
.news-slider .swiper-button-next,
.news-slider .swiper-button-prev {
  background: #737373;
  color: var(--surface-color);
  border-radius: 30px;
  width: 62px;
  height: 62px;
  box-shadow: 0px 20px 35px 0px #73737326;
  font-size: 24px;
}

.init-swiper .swiper-button-next,
.news-slider .swiper-button-next {
  right: 0;
}

.init-swiper .swiper-button-prev,
.news-slider .swiper-button-prev {
  left: 0;
}

.testimonial-item {
  text-align: center;
  background: var(--surface-color);
  border-radius: 17px;
  position: relative;
  padding: 51px 43px 33px;
  height: 100%;
}

/*.testimonial-item img {
  position: absolute;
  top: -75px;
  left: 50%;
  transform: translateX(-50%);
}*/

.testimonial-item .qoute-left {
  background: url('../img/double-quotes.png') center no-repeat;
  background-size: cover;
  width: 82px;
  height: 82px;
  position: absolute;
  left: 55px;
}

.testimonial-item .quote-right {
  background: url('../img/double-quotes.svg') center no-repeat;
  background-size: cover;
  width: 8.92px;
  height: 6.84px;
  position: absolute;
  bottom: 16px;
  right: 30px;
}

.testimonial-item .qoute-content {
  position: relative;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: .8px;
  width: 73%;
  margin: 32px auto 0;
}

.testimonial-item h3 {
  font-size: 12.22px;
  line-height: 24.45px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0;
}

.testimonial-item .qoute-content p {
/*  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;*/
}

.qoute-content p:last-child:after {
  content: "";
  display: inline-block;
  margin-left: 3px;
  width: 10px;
  height: 16px;
  background: url(../img/double-quotes.svg) no-repeat center center;
}

.viewmore {
  font-size: 13px;
  color: #0093ff;
  cursor: pointer;
}

.modal .btn-close {
    background-color: #fff;
    border-radius: .25rem;
    opacity: 1;
    padding: .563rem;
    box-shadow: 0 .0625rem .3175rem 0 rgba(34, 48, 62, .06);
    background-size: .75rem .6875rem;
    transition: all .23s ease .1s;

    position: absolute;
    top: -16px;
    right: -16px;
}
.modal .btn-close:hover {
  top: -12px;
  right: -12px; 
}

#testimonialReviewModal .testimonial-item .qoute-left {
  top: 40px;
  left: 10px;
}

#reviewModal .form-control {
  font-size: 14px;
}
#reviewModal .form-control:focus {
  box-shadow: unset;
}

@media (min-width: 767px) and (max-width: 991px) {

  .testimonial-item .qoute-left {
    left: 15px;
  }
}

@media (max-width: 991px) {

  .testimonial-item .qoute-content {
    width: 90%;
  }
}

@media (max-width: 767px) {

  .init-swiper {
    padding-left: 0;
    padding-right: 0;
  }

  .init-swiper .swiper-button-next, 
  .init-swiper .swiper-button-prev {
    display: none;
  }

  .testimonial-item {
    padding-left: 33px;
    padding-right: 33px;
  }

  .testimonial-item .qoute-left {
    left: 5px;
  }

  .testimonial-item .qoute-content {
    width: 100%;
  }

  .testimonial-item .quote-right {
    right: 16px;
  }

  .modal .btn-close {
    right: -5px;
  }
}

/*room-filter*/
.room-filter {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media(max-width: 767px)
{
  .room-filter {
    flex-wrap: wrap;
  }
}
@media(max-width: 580px)
{
  .room-filter .fliter-sm__listing {
    flex: 0 0 100%;
  }
}
/*room-filter*/

/* ----------------------------------- Other Pages Styles ----------------------------------- */

/*--------------------------------------------------------------
# Account Page Section
--------------------------------------------------------------*/
.account-user a {
  display: block;
  width: 30px;
  height: 30px;
  overflow: hidden;
  border-radius: 50%;
}

.account {
  overflow: inherit;
  margin-top: -145px;
  position: relative;
  z-index: 2;
  background: transparent;
}

.customer-menu {
  background: var(--background-color);
  border: 1px solid #DFDFDF;
  border-radius: 20px;
  margin-bottom: 40px;
  overflow: hidden;
}

.block_info_profile {
  padding: 22px 16px;
  border-bottom: 1px solid #d7d7d7; 
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatar_profile {
  max-width: 60px;
  position: relative;
}
.upload_image {
  position: absolute;
  right: 0;
  bottom: -5px;
  cursor: pointer;
  width: 21px;
}
.cropPreview {
  overflow: hidden;
}

.name_profile h3 {
  font-size: 18px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 2px;
  text-transform: capitalize;
}

.name_profile p {
  font-size: 14px;
  color: var(--gray-color-1);
}

.menu_siderbar_custom_view {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.menu_siderbar_custom_view a {
  display: block;
  font-weight: 500;
  color: var(--default-color);
  padding: 24px 16px;
}

.menu_siderbar_custom_view li.active,
.menu_siderbar_custom_view li:hover {
  color: var(--secondary-color);
  background: #08372F29;
}

.menu_siderbar_custom_view li.active a,
.menu_siderbar_custom_view li:hover a {
  font-weight: 700;
}

.menu_siderbar_custom_view li:not(:last-child) {
  border-bottom: 1px solid #D9D9D9;
}

.customer-dashboard-content {
  background: var(--background-color);
  border: 1px solid #DFDFDF;
  border-radius: 20px;
  padding: 34px 30px;
}

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

.booking-header:not(:last-child) {
  margin-bottom: 27px;
}

.booking-header .booking a {
  padding: 6px 17px; 
}

.booking-header .sort {
  white-space: nowrap;
}

.filter-buttons {
  display: flex;
  gap: 15px;
}

.filter-buttons .btn-filter,
.filter-buttons a {
  display: inline-block;
  padding: 9px 17px;
  border-radius: 4px;
  background: var(--light-color-3);
  font-size: 14px;
  font-weight: 500;
  color: var(--default-color);
  border: 1px solid #E3E3E3;
  cursor: pointer;
}

.filter-buttons .btn-filter:hover,
.btn-check:checked+.btn-filter,
.filter-buttons a.active,
.filter-buttons a:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--surface-color);
}

.filter-buttons .t-date-info-title {
  top: 50%;
  transform: translateY(-50%);
}

.status-select {
  background-color: #E3E3E3;
  font-size: 14px;
}

.status-select:focus {
  box-shadow: none;
  border-color: #E3E3E3;
}

.booking-card:not(:last-child) {
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid #D9D9D9;
}

.booking-card img {
  width: 100%;
}

.booking-card h5 {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
}

.booking-card p {
  font-size: 12px;
  line-height: 22px;
  margin-bottom: 8px;
}

.booking-card p span {
  color: var(--gray-color-1);
}

.booking-card ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  row-gap: 2px;
}

.booking-card li {
  max-width: 50%;
  flex: 0 0 50%;
  font-size: 12px;
  line-height: 22px;
  color: var(--accent-color);
}

.booking-card li span {
  color: var(--default-color);
}

.booking-card .btn {
  font-size: 13px;
  line-height: 24px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 21px;
  white-space: nowrap;
}
.booking-card .btn.active {
  color: #fff;
  background: var(--default-color);
}
.booking-card .btn-outline {
  border: 1px solid var(--default-color);
}

.booking-card .badge {
  font-size: 13px;
  height: 38px;
  line-height: 30px;
  padding-left: 20px;
  padding-right: 20px;
}

.cancel-btn {
  border: 1px solid #7D7D7D;
  color: #7D7D7D;
}

.cancel-btn:hover {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.booking-card .status {
  padding-left: 30px;
  padding-right: 30px;
  color: #fff;
}

.waiting {
  color: var(--accent-color);
  background: #FFEFE4;
}

.successful {
  color: #219F8A;
  background: #219F8A1A;
}

.booking-card .like-review-btn {
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  padding-left: 12px;
  padding-right: 12px;
}

.like-review-btn:hover {
  border-color: var(--accent-color);
  background: var(--accent-color);
  color: var(--surface-color);
}

.book-again-btn,
.book-again-btn:hover {
  background: var(--secondary-color);
  color: var(--surface-color);
}

.canceled,
.canceled:hover {
  color: #E55D5D;
  background: #F6AAAA1A;
}

.group-button-booking {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.book-review {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 991px) {

  .booking-header:nth-child(2) {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

}

@media (max-width: 767px) {

  .booking-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .booking-header:not(:last-child) {
    margin-bottom: 15px;
  }
  

  .filter-buttons {
    display: flex;
    white-space: nowrap;
    flex-wrap: wrap;
    gap: 5px;
  }

  .filter-buttons a {
    /*flex: 0 0 calc(50% - 5px);
    max-width: calc(50% - 5px);*/
    text-align: center;
  }

  .filter-buttons a:last-child {
    max-width: calc(100% - 5px);
    flex: 0 0 calc(100% - 5px);
  }

  .booking-card li {
    max-width: 100%;
    flex: 0 0 100%;
  }

  .customer-dashboard-content {
    padding: 16px;
  }
}
@media(max-width: 580px)
{

  .filter-buttons {
    width: 100%;
  }
  .filter-buttons .filter-button {
    flex: 1;
  }

  .filter-buttons .btn-filter, 
  .filter-buttons a {
    padding: 9px;
    width: 100%;
  }

  .box-filter__listing-inner {
    width: 100%;
  }
}

/*page-content*/
.page-content img{
  width: auto !important;
  height: auto !important;
  max-width: 100%;
}
/*page-content*/

/*--------------------------------------------------------------
# Listings Page Section
--------------------------------------------------------------*/

.listings::after {
  content: '';
  width: 100%;
  height: 33px;
  background: url('../img/line-botom.png') center no-repeat;
  background-size: cover;
  left: 0;
  bottom: 0;
  z-index: 1;
  position: absolute;
}

.filter-listings {
  margin-bottom: 45px;
}

.large-slider .swiper-slide {
  height: auto;
}

.box-filter__listing-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.filter-listings .title {
  font-weight: 700;
  line-height: 24px;
  text-transform: capitalize;
  white-space: nowrap;
}

.box-filter__listing-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 32px;
}

.box-filter__listing-select select {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  font-size: 14px;
}

.box-filter__listing-select select:focus,
.box-sort__listing-select select:focus {
  box-shadow: none;
}

.filter-listings .sort {
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  white-space: nowrap;
}

.box-sort__listing-select select {
  font-size: 14px;
  border-radius: 20px;
}

.listing-item {
  border: 1px solid #08372F59;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
}

.listing-img {
  position: relative;
}
.listing-img:before {
  content: "";
  display: block;
  padding-top: 55%;
}
.listing-img a{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.listing-img a img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.listing-img img,
.suggest-img img {
  width: 100%;
}

.product-list-small .listing-img:before {
  padding-top: 100%;
}

.listing-info {
  padding: 24px 20px;
}

.title-price h3 {
  margin-bottom: 0;
  font-size: 22px;
  line-height: 35px;
  color: var(--secondary-color);
  text-transform: capitalize;
  font-weight: 600;
}

.title-price p {
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  white-space: nowrap;
}

.reviews {
  color: var(--accent-color);
  line-height: 18px;
  white-space: nowrap;
}

.title-price-review,
.review-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}

.review-more {
  gap: 22.63px;
}

.listing-item .reviews {
  display: flex;
  align-items: center;
  gap: 4px;
}
.listing-item .reviews img {
  width: 16px;
  margin-top: -2px;
}

.listing-list ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  row-gap: 8px;
}

.listing-list li {
  max-width: 50%;
  flex: 0 0 50%;

  text-transform: capitalize;
  line-height: 20px;
  color: var(--default-color);
}

.large-slider .listing-list li {
  max-width: 25%;
    flex: 0 0 25%;
}

.large-slider .swiper-button-next, 
.large-slider .swiper-button-prev,
.small-slider .swiper-button-next, 
.small-slider .swiper-button-prev {
  color: var(--secondary-color);
  top: 40%;
}

.large-slider .swiper-pagination {
  bottom: 40%;
}

.large-slider .swiper-pagination .swiper-pagination-bullet,
.listing-large .swiper-pagination .swiper-pagination-bullet {
  height: 5px;
  width: 5px;
  background: var(--surface-color);
  opacity: 1;
  margin: 0 2px;
}

.large-slider .swiper-pagination .swiper-pagination-bullet-active,
.listing-large .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--secondary-color);
  width: 22px;
  border-radius: 10px;
}

@media (max-width: 1200px) {
  .listing-info {
    padding: 10px;
  }
  .review-more {
    gap: 10px;
  }
}
@media (max-width: 767px) {

  .large-slider .swiper-button-next, 
  .large-slider .swiper-button-prev {
    top: 30%;
  }

  /*.large-slider .swiper-pagination {
    bottom: 55%;
  }*/

  .large-slider .listing-img img {
    height: 365.28px;
    object-fit: cover;
  }

  .large-slider .listing-list li {
    max-width: 50%;
    flex: 0 0 50%;
  }

  .title-price h3 {
    font-size: 20px;
    line-height: 1.4;
  }

}
@media(max-width: 480px)
{
  .listing-info {
    padding: 10px;
  }

  .title-price-review, .review-more {
    min-height: unset;
  }

  .title-price-review {
    gap: 20px;
  }
  .title-price-review .review-more{
    flex: 1;
  }
  .review-more .booking {
    flex: 1;
  }
  .review-more .booking a {
    display: block;
    width: 100%;
    padding: 10px;
  }


  .listing-list ul {
    row-gap: unset;
  }
}

.small-slider {
  height: 100%;
}

.listing-info__sm {
  padding: 23px 10px 20px;
}

.button-more__sm {
  gap: 6px;
}

.button-more__sm .booking a {
  white-space: nowrap;
  padding: 12px 14px;
}

.listing-list__sm li {
  max-width: 50%;
  flex: 0 0 50%;
}

.contact-trip {
  background: #F6F1EE;
  padding: 20px;
  border-radius: 60px;
}

.schedule-form .form-control ,
.schedule-form .form-select ,
.email-form input,
.email-form textarea,
.email-form select {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #994C164D;
  font-size: 14px;
  line-height: 26px;
  font-weight: 500;
  background-color: transparent;
}

.schedule-form .form-control:focus ,
.schedule-form .form-select:focus ,
.email-form input:focus,
.email-form textarea:focus,
.email-form select:focus {
  box-shadow: none;
  background-color: transparent;
  border-bottom-color: #994C164D;
}

.box-text-left {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}

.box-image {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin-top: -4px;
}

.box-text {
  flex: 1 1 0px;
/*  padding-left: 12px;*/
  padding: 10px 24px;
}
.schedule-content .box-text {
  padding-left: 10px;
  color: #08372F;

  margin-bottom: 0;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
}

.schedule-content .table  td{
  background: unset;
  font-weight: 500;
}
.schedule-content .table  td span {
  color: #994C16;
}

.contact-trip-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 60px;
  overflow: hidden;
}
.contact-trip-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.box-text h5 {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
}

.box-text h3 {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0;
}

.box-text p {
  font-size: 11px;
  line-height: 18px;
  color: var(--gray-color);
}

.box-text input {
  border: none;
  border-radius: 0;
  padding: 0;
  font-size: 14px;
  line-height: 20px;
}

.box-text input:focus {
  box-shadow: none;
  border-color: transparent;
}

.box-text-question {
  cursor: pointer;
}
.box-text-question:hover {
  color: var(--blue-color);
}

#cancelInfomation h4 {
  font-size: 16px;
}
#cancelInfomation ul {
  list-style: none;
}
#cancelInfomation li {
  position: relative;
}
#cancelInfomation li:not(:last-child) {
  margin-bottom: 5px;
}
#cancelInfomation li i {
  position: absolute;
  left: -20px;
  top: 3px;
}

.email-form select {
  color: var(--accent-color);
  filter: invert(30%) sepia(81%) saturate(725%) hue-rotate(350deg) brightness(92%) contrast(90%);
}

.email-form select option {
  color: var(--default-color);
}

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

.add-booking .btn-custom {

}
.add-button a {
  color: var(--accent-color);
  border: 1px dashed var(--accent-color);
  padding: 7px 22px;
  border-radius: 10px;
}

.add-button a:hover {
  border-color: var(--accent-color);
  background: var(--accent-color);
  color: var(--surface-color);
}

.add-button a:hover img {
  filter: invert(100%) sepia(100%) saturate(38%) hue-rotate(321deg) brightness(110%) contrast(110%);
}

.add-booking .booking a {
  padding: 15px 52px;
  font-size: 16.72px;
  line-height: 17.55px;
}

.suggest-item {
  box-shadow: 0px 1px 27px 0px #0000001A;
  height: 100%;
}

.suggest-info {
  padding: 13px 25px 34px;
}

.suggest-info a {
  display: block;
}

.suggest-info h3 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
}

.suggest-info p {
  font-size: 14px;
  color: var(--contrast-color);
  margin-bottom: 8px;
}

.suggest-info .detail a {
  text-decoration: underline;
  color: var(--blue-color);
}

.faq .accordion-item {
  border-radius: 0;
  border-color: var(--accent-color);
}

.faq .accordion-item:not(:last-child) {
  margin-bottom: 18px;
}

.faq .accordion-item:not(:first-of-type) {
  border-top: 1px solid var(--accent-color);;
}

.faq .accordion-button {
  background: transparent;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  text-align: justify;
}

.faq .accordion-button:not(.collapsed),
.faq .accordion-button:focus,
.policies-description .accordion-button:focus,
.policies-description .accordion-button:not(.collapsed) {
  box-shadow: none;
}

.faq .accordion-body {
  font-size: 14px;
  line-height: 24px;
}

#schedule-form .error {
  position: unset;
}
@media (max-width: 767px) {

  .fliter-sm__listing {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .box-filter__listing-select {
    gap: 16px;
    flex-direction: column;
  }

  .add-booking {
    flex-direction: column;
    gap: 12px;
  }
}

/*--------------------------------------------------------------
# Listing Details Page Section
--------------------------------------------------------------*/
..breadcrumb {
  align-items: center;
}
.breadcrumb-detail {
  margin: 28px 0;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '>';
}

.breadcrumb-item a {
  font-size: 14px;
  line-height: 24px;
  color: var(--default-color);
}

.breadcrumb-item.active {
  color: var(--accent-color);
}

.scroll-mb ul {
  justify-content: space-between;
  flex-wrap: nowrap;
}

.listing-details ul li .nav-link {
  font-weight: 700;
  color: var(--default-color);
  border: none;
  padding-right: 50px;
  padding-left: 50px;
  padding-bottom: 19px;
}

.listing-details ul li .nav-link.active {
  border-color: transparent;
  border-bottom: 2px solid var(--secondary-color);
  color: var(--secondary-color);
}

.left-content h1 {
  font-size: 24px;
  line-height: 35px;
  color: var(--default-color);
  font-weight: 600;
}

.address ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.address p {
  display: inline-block;
  font-size: 12px;
  line-height: 20px;
}

.address p a {
  color: var(--blue-color);
  text-decoration: underline;
}

.address li {
  text-transform: capitalize;
  font-size: 14px;
  display: inline-block;
}

.address li b {
  display: inline-block;
}

.address li:not(:last-child)::after {
  content: '|';
  padding-left: 5px;
}

.right-content {
  gap: 28px;
}

.product-social .social-icon > a i {
  font-size: 26px;
  color: var(--secondary-color);
}
.wishlist.active .bi-heart::before {
  content: "\F415";
}

.detail-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0 24px;
}

.listing-large {
  height: 100%;
}

.listing-large .swiper-pagination {
  left: 25%;
  bottom: 20%;
  width: auto;
}

.item-detail {
  border-radius: 8px;
}

.item-detail img {
  width: 100%;
}

.item-detail .content {
  position: absolute;
  bottom: 0;
  background: #FFFFFFAB;
  text-align: center;
  width: 100%;
  padding: 10px 0;
  border-radius: 0 0 8px 8px;
}

.item-detail h3 {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 20px;
  text-transform: capitalize;
}

.thumb-small {
  overflow: hidden;
  border-radius: 8px;
}

.gallery-img {
  position: relative;
}

.dummy {
  position: relative;
}
.dummy:before {
  content: "";
  display: block;
  padding-top: 80%;
}
.dummy.dummy-100:before {
  padding-top: 100%;
}
.dummy-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.dummy-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.listing-content {
  font-size: 14px;
  margin: 28px 0 40px;
}

.listing-content h2,
.listing-content h3 {
  font-size: 16px;
}

.listing__list ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
}

.listing__list li {
  max-width: 20%;
  flex: 0 0 20%;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  line-height: 20px;
}
.listing__list li img {
  width: 24px;
}

.price-sidebar {
  padding: 26px 22px;
  border: 1px solid var(--light-color-1);
  border-radius: 16px;
}

.price-sidebar .sale {
  display: inline-block;
  font-size: 13px;
  line-height: 20px;
  color: var(--secondary-color);
  background: var(--blue-color-1);
  padding: 2px 20px;
  border-radius: 12px; 
}

.price-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0 4px;
}

.price-detail ins {
  text-decoration: none;
  font-size: 36px;
  line-height: 40px;
  font-weight: 600;
}

.price-detail del {
  line-height: 40px;
  color: var(--gray-color-1);
}

.price-detail p {
  color: var(--accent-color);
  font-size: 13px;
  line-height: 20px;
}

.sale-note {
  color: var(--blue-color);
  font-size: 13px;
  line-height: 20px;
}

.listing-form .form-group {
  border: 1px solid var(--secondary-color);
  border-radius: 8px;
/*  padding: 5px 12px;*/
}

.listing-form .form-group select {
  color: var(--default-color);
  filter: inherit;
  padding: 0;
}

.price-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 20px;
}

.total h5 {
  font-weight: 700;
  font-size: 13px;
  line-height: 20px;
  margin-bottom: 4px;
}

.total p {
  color: var(--gray-color);
  font-size: 12px;
  line-height: 20px;
}

.price-total-listing ins {
  display: block;
  text-decoration: none;
  color: var(--accent-color);
  font-size: 13px;
  line-height: 20px;
}

.price-total-listing a {
  text-decoration: underline;
  color: var(--blue-color);
  font-size: 12px;
  line-height: 20px;
}

.icon-box {
  margin-bottom: 20px;
}

.price-sidebar .booking a {
  padding-top: 12.5px;
  padding-bottom: 12.5px;
  box-shadow: none;
}

.info-sidebar {
  border: 1px solid var(--light-color-1);
  border-radius: 16px;
  overflow: hidden;
}

.info-sidebar a {
  font-size: 12px;
  color: var(--blue-color);
  text-decoration: underline;
}

.info-sidebar .map iframe {
  max-height: 240px;
}

.address-listing {
  font-size: 14px;
  line-height: 20px;
  padding: 12px 21px;
  border-bottom: 1px solid var(--light-color-3);
}

.info-bottom {
  padding: 16px 20px 29px;
}

.info-bottom h3 {
  font-weight: 700;
  font-size: 13px;
  line-height: 20px;
  margin-bottom: 12px;
}

.location {
  margin-bottom: 12px;
}

.location ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.location li {
  display: flex;
  gap: 8px;
}

.content-location {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  line-height: 20px;
  font-size: 12px;
  width: 92%;
}

.content-location p {
  margin-bottom: 0;
  max-width: 50%;
  flex: 0 0 50%;
}

.content-location p:last-child {
 font-size: 11px; 
}

.price-total-dropdown {
}
.price-total-dropdown .dropdown-menu {
  min-width: 350px;
  font-size: 13px;
  padding: 10px;
}
.price-total-dropdown .dropdown-menu h6 {
  font-size: 14px;
}

@media (max-width: 1400px) {
  .price-sidebar {
    padding-left: 20px;
    padding-right: 20px;
  }
  .price-detail ins {
    font-size: 28px;
  }
}

@media (max-width: 1200px) {
  .price-sidebar {
    padding-left: 20px;
    padding-right: 20px;
  }
  .price-detail ins {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .price-detail {
    flex-wrap: wrap;
    margin-bottom: 15px;
  }
  .price-detail ,
  .price-detail p {
/*    font-size: 11px;*/
  }
  .price-detail ins {
/*    width: 100%;*/
  }
  .price-detail del {
    line-height: 1;
    order: 1;
  }

  .listing__list li {
    max-width: 33.3333%;
    flex: 0 0 33.3333%;
  }
}

@media (max-width: 767px) {

  .scroll-mb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    white-space: nowrap;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  .listing__list li {
    max-width: 50%;
    flex: 0 0 50%;
  }
}

.check-detail {
  background: url('../img/check-bg.jpg') center no-repeat;
  background-size: cover;
}

.listing-check ul {
  padding-left: 16px;
  margin-bottom: 0;
}

.listing-check li:not(:last-child) {
  margin-bottom: 32px;
}

.check-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 24px;
}

.listing-check h2 {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0;
  font-weight: 700;
  flex: 0 0 130px;
}

.listing-check p {
  font-size: 14px;
  line-height: 24px;
}

.listing-check p,
.sub-content {
  flex: 1;
}

.product-infomation table td{
  padding: 10px;
  vertical-align: top;
}

@media (max-width: 767px) {

  .check-item {
    flex-direction: column;
    row-gap: 8px;
  }

  .listing-check h2,
  .listing-check p,
  .sub-content {
    max-width: 100%;
    flex: 0 0 100%;
  }
}

.evaluate {
  display: flex;
  align-items: center;
  gap: 16px;
}

.evaluate .content p {
  text-transform: capitalize;
  color: var(--secondary-color);
  font-weight: 600;
  line-height: 20px;
}

.evaluate .content a {
  text-decoration: underline;
  color: var(--default-color);
  font-size: 12px;
  line-height: 20px;
}

.review-item {
  padding: 30px 19px;
  border: 1px solid var(--light-color-3);
  border-radius: 12px;
  min-height: 295px;
}

.image-box-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.image-box-content h5 {
  font-weight: 700;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 24px;
  color: var(--accent-color);
}

.image-box-content p {
  font-size: 12px;
  line-height: 20px;
  color: var(--gray-color-1);
}

.review-content {
  white-space: initial;
  font-size: 13px;
  line-height: 24px;
  letter-spacing: .8px;
  color: var(--default-color);
}
.line_clamp_4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.show-read-more .more-text{
        display: none;
}
.show-read-more .read-more,
.show-read-more .read-less{
  color: #d0a15d;
  font-style: italic;
  font-size: 13px;
}
.show-read-more .read-less{
  display: none;
}

.reviews-slider .swiper-pagination {
  position: unset;
  text-align: left;
  margin-top: 28px;
}

.reviews-slider .swiper-pagination-bullet {
  height: 1.953125px;
  width: 20.05870819091797px;
}

.reviews-slider .swiper-pagination-bullet-active {
  background: var(--secondary-color);
}

.review-item .image-box-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ccc;
  overflow: hidden;
}
.review-item .review-star {
  font-size: 12px;
}

.review-text:focus-visible {
  border: 0;
  box-shadow: none;
  outline: unset;
}
.review-text {
  position: relative;
  word-break: normal;
  overflow-wrap: break-word;
  white-space: normal;
}
/*.review-text:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
}*/


.contact {
  background: url('../img/contact-bg.jpg') center no-repeat;
  background-size: cover;
}

.contact-info {
  background: #FFFFFF33;
  border: 1px solid;
  border-image-source: linear-gradient(118.12deg, #FFFFFF 9.77%, rgba(255, 255, 255, 0) 25.83%, rgba(255, 255, 255, 0.88) 54.52%, rgba(255, 255, 255, 0.170612) 77.41%);
  border-radius: 27px;
  padding: 36px;
}

.avatar .thumb {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: auto;
}
.avatar .thumb img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.avatar h3 {
  color: var(--surface-color);
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 6px;
}

.avatar p {
  color: var(--green-color);
  font-size: 14px;
  font-weight: 500;
}

.counter-item {
  border-bottom: 1px solid var(--light-color-1);
  padding-bottom: 16px;
}

.counter-item:not(:last-child) {
  margin-bottom: 16px;
}

.counter-item span {
  font-family: var(--heading-font);
  font-weight: 600;
  color: var(--surface-color);
  font-size: 32px;
  line-height: 40px;
  display: block;
}

.counter-item p {
  color: var(--green-color);
  font-size: 13px;
  line-height: 20px;
}

.contact-right h5 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  color: var(--surface-color);
}

.contact-right p,
.contact-right ul {
  font-size: 15px;
  line-height: 26px;
}

.contact-right ul {
  padding-left: 24px;
}

.contact-right .book-now a {
  font-size: 17px;
  font-weight: 600;
  line-height: 24px;
  padding: 17px 28.26px;
}

@media (max-width: 767px) {

  .counter-list {
    display: flex;
/*    align-items: center;*/
    justify-content: space-between;
    gap: 10px;
  }

  .counter-list .counter-item {
    margin-bottom: 0;
/*    flex: 1 1 auto;*/
    flex: 1;
    padding: 8px;
  }

  .counter-item span {
    font-size: 28px;
    line-height: 1.6;
  }
  .counter-item img {
    margin-top: -5px;
    margin-right: 20px;
  }

  .contact-info {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Policies Page Section
--------------------------------------------------------------*/

.policies-info ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.policies-info li:not(:last-child) {
  margin-bottom: 32px;
}

.policies-info a {
  color: var(--default-color);
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  position: relative;
}

.policies-info a::after {
  content: '';
  display: inline-block;
  width: 88px;
  height: 1px;
  background: transparent;
  margin: 4px 10px;
}

.policies-info li.active a::after {
  background: var(--secondary-color);
}

.policies-info li.active a {
  font-weight: 700;
  font-size: 20px;
  color: var(--secondary-color);
}

.col-download .booking-service a {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.col-download .booking-service a:hover {
  background: var(--accent-color);
  color: var(--surface-color);
}

.policies-description .accordion-item {
  border: none;
  border-radius: 0;
}

.policies-description .accordion-item:not(:last-child) {
  margin-bottom: 32px;
}

.policies-description .accordion-button {
  background: transparent;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  border-bottom: 1px solid #2B2B2B;
  padding: 0 0 8px;
  color: #2B2B2B;
}

.policies-description .accordion-body {
  padding-left: 8px;
  padding-right: 8px;
}

.policies-description h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 26px;
}

.policies-description ul {
  padding-left: 20px;
}

.policies-description li,
.policies-description p {
  font-size: 15px;
  line-height: 26px;
  color: var(--default-color);
}

.policies-description li:not(:last-child) {
  margin-bottom: 12px;
}

.contact-policies {
  background: var(--contact-bg);
  background-size: cover;
}

.info-item h3 {
  font-size: 24px;
  line-height: 35px;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
}

#contact-policies .section-title * ,
#contact-policies .info-item h3 {
  color: #fff;
}

.info-item:not(:last-child) {
  margin-bottom: 30px
}

.contact-form input,
.contact-form textarea {
  color: var(--surface-color);
  border: none;
  border-bottom: 1px solid #FFFFFF4D;
  background-color: transparent;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
}

.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow: none;
  background-color: transparent;
  color:  var(--surface-color);
  border-bottom-color: #FFFFFF4D;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--surface-color);
}

.contact-form .booking-service a {
  border-color: var(--surface-color);
}

.contact-form .booking-service a:hover {
  color: var(--secondary-color);
}

.col-form-contact .btn-custom {
  background: var(--accent-color);
  color: #fff;
}

@media (max-width: 991px) {
  .col-download .booking-service a {
    padding-left: 26.5px;
    padding-right: 26.5px;
    font-size: 14px;
  }
}

@media (min-width: 768px) {

  .col-form-contact {
    border-left: 1px solid #D9D9D9;
  }
}

/*--------------------------------------------------------------
# News Page Section
--------------------------------------------------------------*/

.news-breadcrumb {
  margin-top: 12px;
}

.news-breadcrumb .breadcrumb-item a,
.news-breadcrumb .breadcrumb-item.active,
.news-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: var(--surface-color);
}

.news-slider {
  padding-left: 24px;
  padding-right: 24px;
}

.news-slider .swiper-button-next, 
.news-slider .swiper-button-prev {
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  font-size: 20px;
}

.news-list ul li .nav-link,
.apps ul li .nav-link {
  font-weight: 600;
  color: var(--default-color);
  padding-bottom: 12px;
  border: none;
}

.news-list ul li .nav-link.active,
.apps ul li .nav-link.active {
  border-color: transparent;
  border-bottom: 2px solid var(--secondary-color);
  color: var(--secondary-color);
  font-size: 20px;
}

.apps {
  background: var(--app-bg);
  background-size: cover;
}

.apps ul li .nav-link {
  color: #FFFFFFAB;
}

.apps ul li .nav-link.active {
  color: var(--green-color);
  border-bottom-color: var(--green-color);
  background-color: transparent;
}

@media (min-width: 768px) and (max-width: 991px) {

  .apps ul li .nav-link {
    font-size: 14px;
  }

  .apps ul li .nav-link.active {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Contact Page Section
--------------------------------------------------------------*/

.form-contact input, 
.form-contact textarea {
  color: var(--default-color);
  border-bottom-color: #994C164D;
}

.form-contact input:focus, 
.form-contact textarea:focus,
.form-contact input::placeholder, 
.form-contact textarea::placeholder {
  color: var(--default-color);
}

.form-contact .booking a:hover {
  color: var(--surface-color);
}

/*date range*/
.t-datepicker-search {
  align-items: center;
  font-size: 14px;
}
.t-check-in, .t-check-out, .t-datepicker {
  float: none;
  display: flex;
  position: relative;
}
.t-check-out, .t-check-in {
  display: flex;
  /*flex-direction: row-reverse;*/
  border-radius: 0;
  border:  0;
  border-right: 1px solid #fff;
}
.t-datepicker-search .t-dates {
  color: #fff;
  filter: brightness(0) invert(1);
  width: 100%;
}
.t-datepicker-search .t-check-in .t-date-info-title, .t-datepicker-search .t-check-out .t-date-info-title {
  position: unset;
  margin-left: 5px;
  display: inline-block;
  font-size: 16px;
  opacity: 1;
  /*color: #fff;
  filter: brightness(0) invert(1);*/
}
/*date range*/

.room-datepicker {
  display: flex;
  justify-content: space-between;
}
.room-datepicker .t-check-in,
.room-datepicker .t-check-out {
  padding: 5px 12px;
  border: 1px solid var(--secondary-color);
  border-radius: 8px;
  width: calc(50% - 7px);
  margin-bottom: 14px;
}
.room-datepicker .t-dates {
  display: flex;
}
.room-datepicker .t-dates span {
/*  margin-left: 3px;*/
}

.t-datepicker-day {
/*  right: -100%;*/
}
.t-check-out .t-datepicker-day {
/*  right: 0;*/
/*  left: unset;*/
}

.search-dropdown .t-datepicker-day{
  font-size: 14px;
}
.search-dropdown .t-check-out,
.search-dropdown .t-check-in {
  font-size: 18.8px;
}

.t-datepicker-days {
  width: 600px;
}

.t-next, .t-prev, .t-table-condensed td, .t-table-condensed th {
  padding: 7px;
}

@media(max-width: 767px)
{
  .t-datepicker-search .t-check-in .t-date-info-title, 
  .t-datepicker-search .t-check-out .t-date-info-title {
    font-size: 16px;
  }

  .t-check-out {
    border-right: 0;
  }

  .t-input {
    width: 100%;
    left: 0;
    top: 50%;
    bottom: unset;
    transform: translateY(-50%);
  }

  .t-datepicker-days {
    width: 380px;
  }
}

/*dropdown-custom*/
.box-dropdown .dropdown-toggle::after {
  display: none;
}
.dropdown-menu.dropdown-custom {
  /*position: absolute;
  top: 100%;
  left: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;*/
  width: 100%;
  min-width: 300px;
  padding: 15px;
  border-radius: 5px;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 6px, rgba(0, 0, 0, 0.07) 0px 0px 0px 1px !important;
  transform: unset !important;
    top: 100% !important;
}
.dropdown-custom.is-open {
  z-index: 999;
  opacity: 1;
  visibility: visible;
}

.box-dropdown-title {
  cursor: pointer;
  display: block;
}
.search-dropdown .box-dropdown-title {
  color: #fff;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 20px);
}
.guest-select .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
/*.guest-select .item:last-child {
  margin-bottom: 0;
}*/
.guest-select .item label {
  font-size: 15px;
  color: #000;
}
.guest-select .item label span {
  display: block;
  font-size: 13px;
  font-weight: normal;
  color: #656a70;
}
.qty-decrease,
.qty-increase {
  border-radius: 100%;
  border: #dedede 1px solid;
  width: 35px;
  height: 35px;
  text-align: center;
  cursor: pointer;
  background: #fff;
  font-size: 15px;
  line-height: 1;
}

.qty-selection {
  display: flex;
  align-items: center;
}
.qty-display {
  min-width: 30px;
  text-align: center;
}

.error-message,
form div.error ,
form label.error {
  bottom: -16px;
  font-size: 11px;
  color: #f00;
}
form div.error ,
form label.error {
  position: absolute;
  left: 0;
}

#reviewModal form div.error,
#reviewModal form label.error {
  position: relative;
  bottom: 0;
}

@media(max-width: 767px)
{
  .search-dropdown .box-dropdown-title {
    font-size: 16px;
    padding: 0px 20px;
  }
}
/*dropdown-custom*/

/*loading*/
#loading_box {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.75);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 100000;
   opacity:0; 
   visibility:hidden; 
}
#loading_box.show {
  opacity: 1;
  visibility: visible;
}

#loading_image {
  display: block;
  position: relative;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 80px;
  height: 80px;
  top: 50%;
  transform: translateY(-50%)
}

#loading_image:before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #f8c546;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
  z-index: 1
}

#loading_image:before {
  border-top-color: #175cd3ab
}

#loading_image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  background: url("/upload/images/Logo/favicon.png") no-repeat center;
  background-size: 55%;
  border-radius: 50%;
  margin: 0;
  background-color: #f8c5468c
}

#loading_image:after {
  background-color: rgba(188,188,188,0.4)
}

@-webkit-keyframes spin {
  0% {
      -webkit-transform: rotate(0deg)
  }

  100% {
      -webkit-transform: rotate(360deg)
  }
}

@keyframes spin {
  0% {
      transform: rotate(0deg)
  }

  100% {
      transform: rotate(360deg)
  }
}
/*loading*/

/*---------------------
  Login
-----------------------*/

.bg-main_login {
/*  '../img/slide_1.jpg'*/
  background: linear-gradient(rgba(190, 171, 151, .75), rgba(190, 171, 151, .85)), var(--login-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.content-login {
  color: #fff;
}

form.frm-account div.error {
  position: unset;
}

.content-login h3 {
  text-transform: uppercase;
  font-size: 40px;
  font-weight: 600;
  line-height: 45px;
  margin-bottom: 16px;
  color: #fff;
}

.content-login p {
  font-size: 14px;
  line-height: 24px;
  display: inline-block;
  width: 60%;
}

.frm-account {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0px 0px 20px 0px #0000001A;
}

.frm-box_title h4 {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 12px;
}

.frm-box_title p,
.frm-box_title a {
  font-size: 14px;
  line-height: 24px;
}

.frm-account .form-label {
  color: #000;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
}

.required {
  color: #f00;
}

.frm-account .form-control ,
.frm-account .form-select {
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 14px;
  line-height: 24px;
}

.frm-account input:focus {
  box-shadow: none;
  border-color: #dee2e6;
}

.password-toggle {
  position: relative;
}

.password-toggle-btn .password-toggle-check {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  opacity: 0;
}

.password-toggle-btn {
  position: absolute;
  top: 10px;
  right: .625rem;
  left: unset;
  margin-bottom: 0;
  padding: .5rem;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  border: 0;
  background: unset;
}

.form-other,
.form-loginIcon,
.login-social-icon {
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-other {
  justify-content: space-between;
  gap: initial;
}

.login-social-icon {
  gap: 6px;
}

.form-loginIcon p {
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  text-transform: uppercase;
  color: var(--black);
}

.btn-login-page button {
  background: #e9b364;
  color: #fff;
  border-radius: 30px;
  padding: 12px 20px;
}

.btn-login-page button:hover {
  background: #e9b364;
  color: #fff;
}

/*date_demo__input*/
.date-input-demo {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
.date-input-demo .box-text-left{
  border: 1px solid var(--secondary-color);
  padding: 0 10px;
  border-radius: 5px;
  min-height: 50px;
  flex: 0 0 48%;
  position: relative;
}
.date-input-demo .box-text{
  padding: 5px;
}
.date-input-demo .box-text p{
  position: absolute;
}
.date-input-demo .box-text.active p {
  position: relative;
}

.date_demo__input {
  position: relative;
}
.date_demo__input > input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.date_demo__input .datepicker {
  right: 0;
}

@media(max-width: 1200px){
  .price-sidebar {
    padding: 10px;
  }
  .box-text {
    padding: 5px;
    /*padding-top: 5px;
    padding-bottom: 5px;*/
  }

  .date-input-demo {
    flex-wrap: wrap;
    gap: 8px;
  }
  .date-input-demo .box-text-left {
    padding-left: 5px;
    padding-right: 5px;
    flex: 0 0 100%;
  }
  .date-input-demo .box-image {
    width: 20px;
  }
  .date-input-demo .box-text input {
    font-size: 13px;
  }

  .date-input-demo .box-text div.error  {
    position: unset;
  }
}

@media(max-width: 991px){
  
  .product_total .box-text {
    padding: 5px 10px;
  }
  .price-total {
    padding: 10px 0;
  }
  .box-text h3 {
    font-size: 13px;
  }
}
/*date_demo__input*/

/*booking schedule*/
.schedule-date {
  position: relative;
}
 .schedule-date .select-date {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
/*booking schedule*/

/*blog_single_details*/
.blog_single_details > h2 {
  font-size: 24px;
  font-weight: 700;
}
.blog_single_details img {
  max-width: 100%;
  height: auto !important;
}
/*blog_single_details*/

/*social*/
.share-box>a {
    display: inline-block;
    padding: 0 10px;
    border: 1px solid #ccc;
    margin-right: 5px;
    border-radius: 3px;
    line-height: 30px;
    font-size: 14px;
    color: #000
}

.share-box-social {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 50%;
    bottom: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #000;
    padding: 3px;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    border-radius: 3px;
    -webkit-transform: translate(-50%,0);
    transform: translate(-50%,0)
}

.quick-alo-phone,.quick-alo-phone.quick-alo-show {
    visibility: visible
}

.social-share {
  position: relative;
}
.share-box-social li {
    margin: 0 1px
}
.share-box-social li a {
    padding: 10px;
    color: #fff;
    font-size: 13px;
    min-width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 1px
}
.share-box-social li a:hover {
    color: #e9b364
}
.share-box-social:before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 6px 0;
    border-color: #0c4556 transparent transparent;
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    z-index: 99;
    margin-left: -3px
}

.social-share:hover .share-box-social {
    opacity: 1;
    visibility: visible;
    margin-bottom: 6px
}

/*social*/


/*============ blog_left_sidebar css ==============*/

.blog_left_sidebar .blog_item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.blog_left_sidebar .blog_item:not(:last-child) {
  margin-bottom: 15px;
}

.blog_item_img {
  flex: 0 0 45%;
  max-width: 45%;
  position: relative;
  overflow: hidden;
}

.blog_item_img::before {
  content: '';
  padding-top: 59%;
  display: block;
}

.blog_item_img a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

.blog_details {
  flex: 0 0 55%;
  max-width: 55%;
  padding-left: 12px;
}

.blog_details a {
  display: block;
}

.blog_details h2 a:hover {
  color: #8393ca;
}

.blog_details a.btn-more {
  display: inline-block;
/*  background: #f0f8ff;*/
  color: #f00;
  font-size: 14px;
  line-height: 24px;
}

.blog_details a.btn-more:hover {
  color: #ffffff;
  background: #d92b2b;
}

.blog_details h2,
.newslist_content h2 {
  font-size: 16px;
  margin-bottom: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog_details p,
.newslist_content p {
  margin-bottom: 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.info-cate {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.category-name,
.published,
.hits {
  color: #909090;
}

.blog-pagination {
  gap: 5px;
  align-items: center;
}

.blog-pagination ul {
  gap: 4px;
}

.blog-pagination .page-item:first-child .page-link {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.blog-pagination .page-item:last-child .page-link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.blog-pagination .page-item a {
  color: #363636;
  background: #f3f3f3;
  border-color: #f3f3f3;
}

.blog-pagination .page-item a:hover {
  color: #ffffff;
  background: #8393ca;
  border-color: #8393ca;
}

.blog-pagination .page-item a:focus {
  box-shadow: none;
}

.single_sidebar_widget {
  border: #ddd 1px solid;
}

.single_sidebar_widget:not(:last-child) {
  margin-bottom: 30px;
}

.single_sidebar_widget h3 {
  font-size: 14px;
  font-weight: 700;
  position: relative;
  border-bottom: #ddd 1px solid;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 0;
  padding: 12px 20px;
}

.list_item_news {
  padding: 15px 20px;
}

.newslist_page:not(:last-child) {
  margin-bottom: 16px;
}

.newslist_page::before,
.newslist_page::after {
  content: '';
  display: table;
}

.newslist_page::after {
  clear: both;
}

.newslist_img {
  width: 30%;
  float: left;
  margin: 0;
  padding: 0 10px 10px 0;
}

.newslist_content {
  font-size: ;
}
.newslist_content h2 {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 23px;
  color: #08C;
  font-family: 'pro-cond', sans-serif;
}

.newslist_content h2 a:hover {
  text-decoration: underline;
  color: #005580;
}

.newslist_content p {
  -webkit-line-clamp: 3;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .blog_left_sidebar .blog_item {
    flex-direction: column;
  }

  .blog_details {
    padding-left: 0;
  }

  .blog_item_img {
    width: 100%;
    margin-bottom: 12px;
  }

  .blog_item_img::before {
    padding-top: 80%;
  }

  .blog_item_img,
  .blog_details {
    max-width: 100%;
    flex: 100%;
  }

  .blog-pagination {
    flex-direction: column-reverse;
    align-items: flex-end;
  }

}

@media (max-width: 767px) {

  .blog-pagination ul {
    flex-wrap: wrap;
  }
}

/*============ Start Blog Single Styles  =============*/

/*preview*/

.rate {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rate-start {
  text-align: right;
  flex: 0 0 35px;
}

.rate-progress-bar {
  background: #71747159;
  display: block;
  height: 10px;
  width: 95px;
  flex: 0 0 95px;
  border-radius: 4px;
  margin: 0 5px;
}

.rate-progress-bar .full {
  background: #00000070 !important;
  width: 50%;
  height: 10px;
  border-radius: 4px;
}

.rate-num {
  color: var(--blue);
}

.review-star .radio-group{
  display: flex;
  flex: 1;
}
.review-star .radio-group div{
  display: flex;
}
.review-star .radio-group label{
  cursor: pointer;
  padding: 0 3px;
  color: #cacaca;
  text-align: center;
  font-weight: normal;
  margin: 0;
  font-size: 18px;
}

/*.review-star .radio-group input:checked+label,*/
.review-star .radio-group label.active,
.review-star .radio-group label:hover{
    color: #f5a623;
}
.review-star .radio-group input{
  position: absolute;
  clip: rect(0,0,0,0);
  pointer-events: none;
}

#review label{
    font-weight: bold;
}
#review input,
#review textarea{
    font-size: 14px;
    padding: 7px;
}


.up_picture_rate label{
    cursor: pointer;
}
.up_picture_rate input{
    opacity: 0;
}

.view_thumbnail {
    display: inline-block;
    position: relative;
    padding: 5px;
    margin: 5px;
    border: 1px solid #eee;
    border-radius: 5px;
}
.view_thumbnail .btn {
    color: #f00;
    background-color: #fff;
    border-color: #f00;
    position: absolute;
    right: -5px;
    top: -5px;
    border-radius: 50%;
    z-index: 99;
    font-size: 12px;
    padding: 3px 5px;
    line-height: 1;
    width: 20px;
    height: 20px;
}


.review-star .voted{
    color: #fd9727;
}

.text-write-vote {
  color: #646E57;
  font-weight: 600;
}

.review-detail{
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #D9D9D9;
}
.r-date{
/*    font-size: 14px;*/
    color: #878787;
}
.r-name {
  font-size: 14px;
}
.r-name b{
/*  font-size: ;*/
}

.icon-replies-count{
    color: #2f80ed;
    font-size: 13px;
    cursor: pointer;
}

.box_reply{
    display: none;
    border: 1px solid #dadada;
    padding: 5px;
    padding-left: 15px;
    border-radius: 3px;
    position: relative;
    margin: 10px 0 5px;
    background: #f1f1f1;
}

.box_reply:after, .box_reply:before {
    bottom: 100%;
    left: 30px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.box_reply:after {
    border-color: rgba(136, 183, 213, 0);
    border-bottom-color: #f1f1f1;
    border-width: 9px;
    margin-left: -9px;
}
.box_reply:before {
    border-color: rgba(194, 225, 245, 0);
    border-bottom-color: #dadada;
    border-width: 10px;
    margin-left: -10px;
}
.list_rate_title{
    display: inline-block;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    font-size: 13px;
    margin-bottom: 10px;
    margin-top: 5px;
}
.reply_item .list_rate_title span{
    color: #4bab02;
    font-size: 14px;
    font-weight: bold;
}

.count-comment{
    position: absolute;
  right: 15px;
  font-size: 13px;
  color: #f15a34;
}
.count-comment span{
    color: #333;
}
.count-comment span.error{
    color: #f15a34;
}

#aniimated-thumbnials img{
    max-height: 65px;
}
/*preview*/

/*toc-menu*/
.toc-menu ol {
  padding-left: 0;
  margin-bottom: 0;
}

.content-toc {
  padding: 10px;
  width: 100%;
  border: 1px solid rgba(51,51,51,0.95);
  border-radius: 10px;
  margin-bottom: 10px;
  transition: .6s ease;
}
.content-toc > h4 {
  font-weight: 700;
  font-size: 18px;

}
.content-toc header {
  font-size: 22px;
  display: flex;
  align-items: center;
  position: relative;
  padding: 10px;
}
.content-toc header h3 {
  margin-bottom: 0;
  font-size: 22px;
  margin-left: 10px;
}
.content-toc .header-minimize  ,
.content-toc .header-close  {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  transition: all 0.3s;
}
.content-toc.toc-minimize .header-minimize {
  transform: rotate(-90deg);
}
.content-toc .aside-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: none;
}
.content-toc ul {
  padding-left: 10px;
  margin-bottom: 0;
}
.content-toc li {
  list-style: none !important;
}
.content-toc li a{
  color: #000;
  font-weight: 700;
  padding: 3px 10px;
  display: block;
}
.content-toc a:hover {
  color: var(--accent-color);
}
.content-toc li li a
{
  font-weight: 500;
}

.content-toc li a:before {
  content: "";
  width: 6px;
  height: 6px;
  background: #000;
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 3px;
}
.content-toc li li a:before {
  width: 4.5px;
  height: 4.5px;
  margin-bottom: 4px;
}
/*toc-menu*/

/*auth btn*/
.auth-button {
    padding: 10px;
    display: flex;
    align-items: center;
    background: var(--accent-color);
}
.auth-button a {
    flex: 1;
    text-align: center;
    display: block;
    padding: 0 10px 3px;
    color: #fff !important;
}
.auth-button a:not(:first-child) {
    border-left: 1px solid #fff;
}

.m-menu-customer a {
    padding: 10px;
}
.m-menu-item {
  display: none;
  background: #fff;
}
.m-menu-item .customer-name {
    color: #fff;
    background: var(--accent-color);
    flex: 1;
}
.m-menu-item .avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 24px;
    height: 24px;
    border: 1px solid #fff;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .m-menu-item {
        display: block;
    }
}
/*auth btn*/
/*intl-tel-input*/
.intl-tel-input,
.iti{
    width: 100%;
}
.intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {
  background: unset !important;
}

.intl-tel-input.allow-dropdown .flag-container, .intl-tel-input.separate-dial-code .flag-container {
  left: 10px;
}
.intl-tel-input.allow-dropdown input, .intl-tel-input.allow-dropdown input[type="text"] {
  padding-left: 60px;
}
/*intl-tel-input*/


/*form-floating*/
.form-floating .iti~label {
  color: rgba(var(--bs-body-color-rgb), .65);
  transform: scale(.85) translateY(-.5rem) translateX(.15rem);
}
.form-floating .iti .form-control {
    padding-top: 1.625rem;
    padding-bottom: .625rem;
}
.form-floating .iti__country-container {
  top: 15px;
}
/*form-floating*/