:root {
    /* Font */
    --font-Zen: "Zen Maru Gothic", sans-serif;
    --font-Geom: "Geom", sans-serif;
    --font-calligraphic : "Cardo", serif;
    
    /* Colors */
    --yellow :#e9c46a;
    --blue: #284855;
    --blue-light:#e9f3f7;
    --gray-light: #f3f3f3;
    --gray-dark: #696969;
    --white: #FFFFFF;
    --black: #282828;
    --gray: #d1d2d3;
    --plyr-color-main: #C9C8B3;

    /* Box shadow */
    --box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    --radial-gradient: radial-gradient(circle, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0.40) 100%);

    /* widths / paddings / margins*/
    --content-padding: 0 360px;
    --content-spacing: 100px;
    --header-h: 0px;
}
@media (max-width: 1600px) {
    :root {
        --content-padding: 0 120px;
    }
}
@media (max-width: 991px) {
    :root {
        --content-padding: 0 30px;
    }
}
@media (max-width: 767px) {
    :root {
        --content-spacing: 50px;
    }
}
@media (max-width: 575px) {
    :root {
        --content-padding: 0 15px;
    }
}

.primary-color {
    color: var(--yellow) !important;
}

/* General */
.form-control:focus,
.form-select:focus {
  outline: none;
  box-shadow: none;
}
img {
    width: 100%;
    height: auto;
}
ul {
    all: unset;
    display: block; 
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    all: unset;
    display: inline; 
    cursor: pointer; 
    color: inherit; 
    text-decoration: none;
}
body {
    font-family: var(--font-Zen);
    font-size: 18px;
    color: var(--black);
    font-weight: 400;
}

body.no-hero-slider {
    padding-top:120px;
}
@media (max-width: 991px) {
    body.no-hero-slider {
        padding-top:110px;
    }    
}
.whiteBackground {
    background-color: var(--white);
    padding: 30px;
}
.main {
    scroll-margin-top: 200px;
}

.px-content {
    padding: var(--content-padding);
    transition: padding .2s ease;
}
.mt-offset {
      margin-top: var(--content-spacing);  /*100px - 767:50px*/
}
.mt-offset-half {
    margin-top:60px;
}
@media (max-width: 767px) {
    .mt-offset-half {
        margin-top:30px;
    }    
}

/* Typography 
===============================*/
h1, .h1, h2, .h2, h3, .h3, h4 {
    font-family: var(--font-Geom);   
    font-weight: 300;
    color:var(--blue);
    margin-bottom:30px;
    line-height:1;
}
.heroSection h1 {
    font-weight: 400;
}
.heroSection h1,
.page-heading h1 {
    margin-bottom:0px;
}
h1, .h1,
body.homepage h2 {
    font-size:50px;
}
h2, .h2 {
    font-size:40px;
}

h3, .h3 {
    font-size:30px;
}
h4, .h4 {
    font-size:24px;
}

@media (max-width: 991px) {
    h1, .h1,
    body.homepage h2{
        font-size:42px!important;
    }
    h2, .h2 {
        font-size:36px;
    }
    h3, .h3 {
        font-size:32px;
    }
}
@media (max-width: 767px) {
    h1, .h1,
    body.homepage h2{
        font-size:36px!important;
    }
    h2, .h2 {
        font-size:32px;
    }
    h3, .h3 {
        font-size:28px;
    }
}
@media (max-width: 575px) {
    h1, .h1,
    body.homepage h2{
        font-size:34px;
    }
    h2, .h2 {
        font-size:30px;
    }
    h3, .h3 {
        font-size:26px;
    }
}

.heading {
    text-align: center;
    margin-bottom: 30px;
}
.subHeader {
    font-size: 26px;
    font-weight: 300;
}
@media (max-width: 767px) {
  .subHeader {
    font-size: 20px;
  }
}
.heroSection .subHeader {
    font-family: var(--font-calligraphic);
    font-style:italic;
}
.title{
    font-family: var(--font-Geom); 
    font-weight:500;
    color:var(--blue);
}

/*header H1 no slider && hotel page
-------------------------------------*/
.page-heading .heading {
     margin-top: 100px; 
     margin-bottom: 100px; 
}
@media (max-width: 1199px) {
    .page-heading .heading {
        margin-top: 70px; 
        margin-bottom: 70px; 
    }    
}

@media (max-width: 575px) {
    .page-heading .heading {
        margin-top: 50px; 
        margin-bottom: 50px; 
    }    
}


/* Buttons 
=================================*/
button {
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
.primary-button {
    cursor: pointer;
    font-family: var(--font-Geom);   
    background-color: var(--yellow);
    padding: 10px 30px;
    color: var(--white);
    font-weight: 500;
    font-size: 18px;
    transition: background-color .3s ease;
    text-align: center;
}
.primary-button:hover {
    background-color: var(--blue);
}
.primary-button a{
     background: rgba(0,0,0,.005);
     display:block;
}
/*
.secondary-button {
    cursor: pointer;
    background-color: var(--blue);
    padding: 10px 20px;
    color: var(--white) !important;
    border:1px solid var(--blue);
    font-weight: 300;
    transition: background-color .3s ease, color .3s ease;
    width: max-content;
}
.secondary-button:hover {
    background-color: transparent;
    color: var(--blue) !important;
}*/
/*
.toggle-text-btn {
    background: none;
    outline: none;
    border: none;
}
.toggle-text-btn .btn-label:nth-of-type(2) {
    display: none;
}
.expanded .toggle-text-btn .btn-label:nth-of-type(2) {
    display: inline-block;
}
.expanded .toggle-text-btn .btn-label:nth-of-type(1) {
    display: none;
}
*/





#mainNav .desktop .dropdownPane::-webkit-scrollbar {
    width: 5px;               
    height: 5px;              
}
#mainNav .desktop .dropdownPane::-webkit-scrollbar-track {
    background: var(--gray-light);
}
#mainNav .desktop .dropdownPane::-webkit-scrollbar-thumb {
    background: var(--yellow);
    border-radius: 8px;
}


/* Carousels
============================*/

.swiper-pagination-bullet {
    background: var(--gray-dark);
    width: 10px;
    height: 10px;
}
.swiper-pagination-bullet-active {
    background: var(--yellow);
}
.homepage .swiper-slide {
    padding: 20px 0;
    transition: transform .3s ease;  
}
.homepage .swiper-slide:hover {
        transform: translateY(-10px);
}
.swiper-button-next, 
.swiper-button-prev{
    top: unset!important;
    bottom: 10px;
}
.swiper-button-prev {
    left:unset!important;
    right:40px!important;
}

.swiper-button-next svg, 
.swiper-button-prev svg{
    display:none;
  /*  filter: brightness(0) invert(1);
    width: 32px;
    height: 32px;*/
}
.swiper .swiper-button-next,
.swiper .swiper-button-prev{
    background:url(/images/arrowR.svg) no-repeat center center !important;
    width: 32px !important;
    height: 28px !important;
    border-radius: 30px;
    filter: brightness(0) invert(1);
}
.swiper .swiper-button-prev{
    transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
}



/* Page Layout
=========================*/
.pageLayout {
    padding: var(--content-padding);
    position: relative;
}

@media (min-width: 576px) {
    .pageLayout.hotelInnerPage {
        padding: 0;
    }
}

.adsContainer {
    width:250px;
    height:250px;
    background-color: var(--blue);
    color: var(--white);
}
.adsContainer.left {
    position: absolute;
    left:50px;
    top: 10px;
}
.adsContainer.right {
    position: absolute;
    right: 50px;
    top: 10px;
}
@media (max-width: 1600px) {
    .adsContainer.left,
    .adsContainer.right {
        display: none;
    }
}


/* Navigation 
=========================================*/
header {
    font-family: var(--font-Geom);   
    font-weight:300;
    font-size:18px;
}
#mainNav {
    border-bottom: 1px solid rgba(252, 252, 252, 0.4);
    padding-top: 5px;
    padding-bottom: 5px;
    position: fixed;
    width: 100%;
    z-index: 9999;
    transition: all .3s ease;
    top:0;
}
.no-hero-slider #mainNav,
#mainNav.black {
    border-bottom: 1px solid #e2e2e2;
}
#mainNav.scrolled {
    background-color: var(--gray-light);
    border-bottom: none;
   /* box-shadow: var(--box-shadow);*/
}
/*
#mainNav.nav-hidden {
    transform: translateY(-100%);
} */

#mainNav .desktop {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    transition: color .3s ease;
}
#mainNav .mobile {
    display: flex;
    /* justify-content: space-between; */
    position: relative; /*ADDED*/
    align-items: center;
    font-size: 30px;
    color: var(--white);
    transition: color .3s ease;
}
/* ADDED */
#mainNav .mobile button {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
#mainNav .mobile button img{
    width:30px;
}
/* -- */
#mainNav.black .mobile,
#mainNav.scrolled .mobile {
    color: var(--black);
}
#mainNav .logo {
    height: 100px;
    display: flex;
    align-items: center;
    transition: height .3s ease;
}
/* ADDED */
#mainNav .mobile .logo {
    margin: 0 auto;
}
/* --- */
#mainNav.scrolled .logo {
    height: 70px;
    display: flex;
    align-items: center;
}
body:not(.no-hero-slider) #mainNav:not(.scrolled) .logo img,
body:not(.no-hero-slider) #mainNav:not(.scrolled) .mobile button img {
    filter: brightness(0) invert(1);
}
#mainNav .logo img {
    width: 100%;
    height: auto;
    max-width: 200px;
}
.menuItems {
    display: flex;
    gap: 50px;
    color: var(--white);
    width: 40%;
}

.no-hero-slider #mainNav .menuItems,
#mainNav.black .menuItems {
    color: var(--black);
}
#mainNav .desktop .logo {
    width: 20%;
    justify-content: center;
    align-items: center;
}
.menuItems.mobile-active {
    color: var(--black);
}
#mainNav.scrolled .menuItems {
    color: var(--black);
}
.menuItem {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.menuItem::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 1px;
    background-color: var(--yellow);
    bottom: 0;
    transition: width .3s ease;
}
.menuItem:hover::after {
    width: 100%;
}
.menuItem .icon {

}
.hasDropdown {
    position: relative;
}
.dropdownMenu {
    color: var(--black);

    position: absolute;
    pointer-events: none;
    opacity: 0;
    transition: opacity .3s ease;
    min-width: max-content;
    text-align: center;
    padding: 20px;
    top: 100%;
    left: 0; /* CHANGED */
    /* transform: translateX(-50%); REMOVED */ 
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    display: grid;
    row-gap: 10px;
    column-gap: 20px; 
    grid-template-columns: auto auto;
    z-index: 1;
    text-align: left;
}
.hasDropdown:hover .dropdownMenu {
    pointer-events: all;
    opacity: 1;
}
/* @media (max-width: 1600px) {
    .dropdownMenu {
        left: 0;
        transform: translateX(0);
    }
} */

.dropdownMenu .title{
    font-weight:bold;
}
.dropdownMenu a {
    position: relative;
}
.dropdownMenu a::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 0%;
    background-color: var(--yellow);
    transition: width .3s ease;
    bottom: 0;
    left: 0;
}
.dropdownMenu a:hover::after {
    width:100%;
}
/* offcanvas override */
.offcanvas.offcanvas-top {
    height: max-content;
    padding-top: 5px;
    padding-bottom: 5px ;
    /* background-color: var(--gray-dark); */
}
/* offcanvas override */
.offcanvas.offcanvas-top {
    height: max-content;
    padding-top: 5px;
    padding-bottom: 5px ;
    /* background-color: var(--gray-dark); */
}
@media (max-width: 991.98px) {
    /* REPLACED */
    #mainNav .desktop {
        /* display: grid;
        grid-template-rows: auto 1fr;      
        grid-template-columns: 1fr 1fr; */
        height: 80vh;
        overflow: hidden;
        padding: 0 0 25px 0;
        gap: 0;
        align-items: stretch;
      }
  
    /* REPLACED */
    #mainNav .desktop .leftPane {
        width: 100%;
      /* grid-row: 2;
      grid-column: 1; */
      overflow-y: auto;
      padding: 70px 16px 20px 20px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      background: transparent;
      list-style: none;
      /* border-right: 1px solid var(--yellow); */

    }
  
    /* REPLACED */
    #mainNav .desktop .dropdownPane {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
      /* grid-row: 2;
      grid-column: 2; */
      overflow-y: auto;
      padding: 0 16px 20px;
      background: var(--white);
      color: var(--black);
      list-style: none;
      z-index: 2;
    }

    /* ADDED */
    .dropdownPane .go-back {
        position: sticky;
        top: 0;
        background: var(--white);
        padding:26px 0;
        
        z-index: 1;
      }
    #mainNav .desktop .dropdownPane > li {
        margin-bottom: 10px;
    }
    #mainNav .desktop .dropdownPane .title * {
        margin-bottom: 5px;
    }
    #mainNav .desktop .dropdownPane ul {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 20px;
    }
    #mainNav .desktop .dropdownPane a:hover {
        color: var(--yellow);
    }
    #mainNav .desktop .dropdownMenu {
      position: static !important;
      opacity: 1 !important;
      pointer-events: auto !important;
      transform: none !important;
      box-shadow: none !important;
      min-width: 0 !important;
      padding: 0 !important;
      display: none !important;
    }
    #mainNav .desktop .menuItems {
      display: contents;
    }
    #mainNav .desktop .menuItems > li {
      list-style: none;
    }
    .mobile-active > a .menuItem span { color: var(--yellow); }
    .menuItem::after,
    .dropdownMenu a::after {
      display: none !important;
    }
    /* REPLACED */
    .menuItem {
        flex-direction: row;
        justify-content: space-between;
    }
    .menu-close {
        position: absolute;
        top: 20px;
        right: 25px;
        z-index: 3;
      }
    
      .menu-close button {
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: var(--black);
      }
      .menu-close button img{
       width:30px;   
      }
      .submenu-trigger {
        border: none;
        background: none;
        transition: transform .2s ease;
        width: 40px;
      }
      .submenu-trigger:hover {
        transform: translateX(5px);
      }
      .go-back button {
        border: none;
        background: none;
        transition: transform .2s ease;
      }
        .submenu-trigger img,
        .go-back button img {
            width: 16px;
            height: 16px;
        }
        .go-back button:hover {
        transform: translateX(-10px);
      }
      .leftPane a:hover {
        color: var(--yellow);
      }
  }

@media (max-width: 575px) {  
      .menu-close {
          right:15px;
      }
}
          
  
/*LANGUAGES
=====================*/  
.langSwitch {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 360px;
    color: var(--white);
    text-transform:uppercase;
    font-size:16px;
}
  .no-hero-slider .langSwitch,
  #mainNav.scrolled .langSwitch {
    color: var(--black);
  }
  @media (max-width: 1600px) {
    .langSwitch {
        right: 120px;
    }
}
@media (max-width: 992px) {
    .langSwitch {
        right: 30px;
    }
}
@media (max-width: 576px) {
    .langSwitch {
        right: 10px;
    }
}
.langSwitch .dropdownMenu {
    padding: 10px;
    display: flex;
    flex-direction: column;
}
 .langSwitch .hasDropdown {
     position:relative;
     padding-right:14px;
 }
 .langSwitch .hasDropdown:after {
    content:"";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 6px;
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    transform: rotate(45deg);
    cursor: pointer;
    transition: transform 0.2s ease;
    position: absolute;
    right: 0px;
    top: 7px;
    filter:brightness(0) invert(1);
 }
.no-hero-slider .langSwitch .hasDropdown:after,
 #mainNav.scrolled .langSwitch .hasDropdown:after {
    filter:brightness(0) invert(0);
  }
  
  
/* Hero Section 
======================================== */
.heroSection {
    position: relative;
    text-align: center;
    height: fit-content;
}
@media (min-width: 768px) {
    body:not(.no-hero-slider) .heroSection {
        height: 70vh;
        position: relative; 
    }
}
.heroSection #bigCarousel {
    position: relative;
    filter: brightness(0.6);
}
.heroSection #bigCarousel::after {
    content: "";
    background: var(--radial-gradient);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.heroSection #bigCarousel .carousel-item:before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0,
    rgba(0, 0, 0, 0.1) 100%
  );
}
@media (min-width: 768px) {
    #bigCarousel img{
        height: 100% !important;
        width: 100%;
      object-fit: cover;
    }
    #bigCarousel.carousel,
	#bigCarousel .carousel-inner,
	#bigCarousel .carousel-item {
	  height: inherit;
	}
}
#bigCarousel .carousel-indicators {
  position: absolute;
  left: 5%;
  bottom: 3%;
  right: unset;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  list-style: none;
}

#bigCarousel .carousel-indicators [data-bs-target] {
    background: var(--black);
  width: 10px;
  height: 10px;
  margin-right: 3px;
  margin-left: 3px;
  vertical-align: middle;
}

#bigCarousel .carousel-indicators .active {
  height: 22px;
}

#bigCarousel .carousel-control-next,
#bigCarousel .carousel-control-prev {
  width: 100px;
  z-index:2;
}

@media screen and (max-width: 575px) {
  #bigCarousel .carousel-control-next,
  #bigCarousel .carousel-control-prev {
    width: 40px;
  }
}
#bigCarousel  .carousel-control-next-icon, 
#bigCarousel  .carousel-control-prev-icon {
    width: 3rem;
    height: 3rem;
}

.heroSection .content-over-hero {
    position: absolute;
    z-index: 9;
    color: white;
    top: 0;
    width: 100%;
    font-weight: 200;
    color: var(--white);
    text-align: center;
    /* background: rgba(0, 0, 0, 0.001); */
    margin-top: 150px;
    bottom: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.heroSection .content-over-hero h1 {
    color: var(--white)!important;
}
@media (max-width: 575px) {
    .heroSection #bigCarousel {
        position: absolute;
        top: 0;
        margin: 0;
    }
    .heroSection .content-over-hero {
        position: relative;
        margin-top: 0;
        padding-top: 150px;
    }
}


/*Search Box
=======================*/
.searchbox {
    /* margin-top: 50px; */
    background-color: #fff;
    padding: 10px 20px;
     border-radius: 50px; 
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}
.searchbox .column:first-child{
    /*width:40%;*/
    width: calc(50% - 37px);
    border-right:solid 1px rgba(0,0,0,0.10);
}
.searchbox .column:nth-child(2){
    width: calc(50% - 37px);
       /* width:calc(30%);
        border-right:solid 1px rgba(0,0,0,0.10);*/
}

.searchbox .column:last-child{
    width:73px;
    align-items: center;
    display: flex;
}

@media (max-width: 575px) {
    .searchbox {
        padding: 20px 40px;
        border-radius: 30px;
    }
    .searchbox .column {
        padding:0;
        border-right: none !important;
    }
    .searchbox .column:last-child{
        border-bottom: 0px;
    }
    .searchbox .column:first-child{
        width:100%;
        border-bottom: solid 1px rgba(0, 0, 0, 0.10);
    }
    .searchbox .column:nth-child(2){
        width:calc(100%);
        padding-top:10px;
    }
    .searchbox .column:last-child{
        width:100%;
    }

    .searchbox {
        margin-top: 30px;
    }
}
.searchbox .form-label {
    color: var(--black);
    font-weight: 700;
    padding: 3px 4px;
    margin-bottom: 0;
    text-align: left;
    display: block;
}
.searchbox .form-control {
    padding: 3px 4px;
    border-color: transparent;
}
.searchbox .form-control:focus {
  outline: 0;
}
.searchbox .search-btn { 
    border-radius: 50px;
    background: var(--yellow);
    padding: 9px;
}
.searchbox .search-btn img { 
    width: 30px;
    height: 30px;
    filter: brightness(0) saturate(100%) invert(96%) sepia(96%) saturate(0%) hue-rotate(65deg) brightness(105%) contrast(104%);
    transform: rotate(90deg);
}
@media (max-width: 575px) {
    .searchbox .search-btn {
        margin-top: 12px;
        color: var(--white);
        padding: 10px;
        width: 100%;
        border-radius: 20px !important;
    }
     .searchbox .search-btn img {
        width: 27px;
        height: 27px;
    }
}

.autocomplete {
    position: relative;
}
.autocomplete-items {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    list-style: none;
    padding: 0;
    margin: 0;
    display: block; /* ensure itâ€™s not hidden */
}
.autocomplete-items li {
    padding: 0.5rem;
    cursor: pointer;
    color: var(--blue);
}
.autocomplete-items li:hover {
    background-color: #007bff;
    color: white;
}


/* Tabs GENERAL
=================================*/
.tabNavigation {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 30px;
    padding-bottom: 30px;

}
.tabNavigation .nav-link {
    position: relative;
    font-family: var(--font-Geom);
}
.tabNavigation .nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 1px;
    background-color: var(--yellow);
    bottom: 0;
    left: 0;
    transition: width .3s ease;
}
.tabNavigation .nav-link:hover::after,
.tabNavigation .nav-link.active::after {
    width: 100%;
}
.tab-content {
    width: 100%;
}

/* Where Stay Section - INTRO page 
==================================*/
.attractionCards {
    display: grid;
    grid-template-columns: auto auto;
    gap: 20px;
}
@media (max-width: 768px) {
    .attractionCards {
        grid-template-columns: 1fr;
    }
}
.attractionCards a {
    position: relative;
    color: var(--white);
}
.attractionCards a img {
    filter: brightness(0.8);
    z-index: -1;
}
.attractionCard {
    position: absolute;
    top: 20px;
    left: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid transparent;
    transition: border .3s ease;
}
.attractionCards a:hover .attractionCard{
    border: 1px solid var(--yellow);
} 
.attractionCard h3 {
    color:var(--white);
    margin-bottom:0px;
}
.list-container .properties,
.attractionCard .properties {
    display:block;
    text-decoration:underline;
    font-size: 16px;
    line-height:1;
}
.list-container {
    margin-top:20px;
    padding: 30px 40px;
    background-color: var(--blue);
    color:var(--white);
    text-align:left;
    font-size:22px;
}
.list-container h3 {
    color:var(--white);
    text-align:center;
}
.list-container .list-items ul {
    columns: 3;
}
.list-container .list-items ul li{
    padding: 15px;
    transition: background-color .3s ease;
    position:relative;
}
.list-container .list-items ul li:after{
    content: "";
    background: url(/images/arrow-line.svg) no-repeat center center;
    width: 20px;
    height: 14px;
    position: absolute;
    right: 20px;
   /* top: 20px;*/
    top: calc(50% - 7px);
    filter:brightness(0) invert(1);
    opacity:0;
    transform: translateX(-30px);
    transition: opacity .3s ease, transform .3s ease;
}
.list-container .list-items ul li:hover {
    background-color: var(--yellow);
}
.list-container .list-items ul li:hover:after{
    opacity:1;
    transform: translateX(0px);
}

/* Selections Section - By Category
=================================*/
.selectionsSection h3 {
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    line-height: 1.2;
    margin-top: 10px;
    text-transform:uppercase;
}
.selectionsCarousel .info {
    text-align: center;
}
.selectionsCarousel .info .properties {
    font-size: 16px;
    font-weight: 300;
}


/* Footer 
=================================*/
.footer {
    background-color: var(--gray-light);
    padding-top: 30px;
    color: var(--gray-dark);
}
.footer summary {
    padding-left: 28px;
    position:relative;
    list-style: none; 
    font-weight:300;
    font-size:20px;
}
.footer summary::-webkit-details-marker {
    display: none;              /* Chrome / Safari */
}
.footer summary::before {
    content: "";
    position: absolute;
    left: 3px;
     top: 7px;
    width: .7rem;
    height: 0.7rem;
    border-right: 2px solid var(--blue);
    border-bottom: 2px solid var(--blue);
      /*  content: "\276F";*/
    transform: rotate(-45deg); 
    transition: transform 0.3s;
}
.footer details[open] summary::before {
    transform: rotate(45deg); /* arrow pointing down */
}

.footer details .list-group-nav .title{
    margin-top:30px;
}
.list-group-nav ul {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: transparent;
}
@media (min-width: 480px) and (max-width: 575px) {
    .list-group-nav ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}
@media (min-width: 576px) {
   .list-group-nav ul {
        display: flex;
        flex-wrap: wrap; 
   }
    .list-group-nav ul li:not(:last-of-type)::after {
        content: "-";
        margin: 0 10px;
    }
}
.list-group-nav a {
    position: relative;
}
.list-group-nav a::after {
    content: "";
    height: 1px;
    width: 0%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--gray-dark);
    transition: width .3s ease;
}
.list-group-nav a:hover::after {
    width: 100%;
}
.footerLeft .logo {
    width: 240px;
}
.payments ul {
    display: flex;
    justify-content: start;
    gap: 15px;
}
.payments ul img {
    max-height: 20px;
    opacity: .6;
}

.footerRight {
    display: flex;
    flex-direction: column;
}
@media (min-width: 768px) {
    .footerRight {
        align-items: end;
    }
}
.footer-menu {
    font-weight: 300;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    
    .footerRight {
        align-items: end;
    }
    .footer-menu ul {
        display:flex;
    }
    .footer-menu ul li:not(:first-child) {
        margin-left:20px;
    }
}

.footer-menu  a {
    position: relative;
    color: var(--gray-dark);
}
.footer-menu  a::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 0%;
    background-color: var(--gray-dark);
    bottom: 0;
    left: 0;
    transition: width .3s ease;
}
.footer-menu a:hover::after {
    width: 100%;
}
.footerRight .social ul {
    display: flex;
    gap: 15px;
}
.social img {
    width:26px;
}
.footerRight .social,
.payments ul {
    margin-top:30px;
}

.rights {
    border-top: 1px solid var(--gray);
    display: flex;
    align-items: center;
    margin-top: 50px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 15px;
}


/*PAGE MAIN
============================*/
.section {
    margin-top: var(--content-spacing);
    text-align:center;
}



/* LISTING PAGE - hotels template
====================================*/

@media (min-width: 992px) {
    .listingSection {
        display: flex;
        gap: 40px;
        flex-wrap: wrap;
    }
    .listingSection .left-col {
        width: 25%;
    }
    .listingSection .right-col {
        width: calc(75% - 40px);
    }
}

.listingSection .tab-nav-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.tab-nav-container .tabNavigation {
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-top:0px;
}
.tab-nav-container #sort {
    margin-bottom: 30px;
    outline: none;
    border: none;
    color: var(--black);
    cursor: pointer;
}
@media (max-width: 576px) {
    .listingSection .tab-nav-container {
        flex-direction: column;
    }
    .tab-nav-container #sort {
        width: max-content;
    }
}
.filter-title {
    font-family: var(--font-Geom);
    padding-bottom:20px;
}

/*Accordion Filters & FAQ
=========================*/
#loading { display:none; font-weight:bold; }
.no-results { font-style:italic; padding:20px; 
    opacity: 0;
    transition: opacity 0.4s ease;
}
.no-results.visible {
    opacity: 1;
}
.no-results:after {
    content:"No results found";
}
.el .no-results:after {
    content:"Δεν βρέθηκαν αποτελέσματα";
}
.num-results {
    padding-bottom:20px;
    font-style:italic;
    font-size: 16px;
}
.accordion { /*#filters*/
  color: var(--grey-border);
  border-top: 1px solid var(--gray);
  border-radius: 0px;
  overflow: hidden;
}
.accordion .tab {
  position: relative;
}
.accordion .tab:not(:first-child) {
  border-top: 1px solid var(--gray);
}
  
.accordion .tab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
/*title of accordion
---------------------------*/
.tab__label {
    font-family: var(--font-Geom);
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    color: var(--blue);
    font-weight: 500;
    cursor: pointer;
    text-transform: uppercase;
}
.tab__label::after {
  content: "\276F";
  width:22px;
  text-align: center;
  transform: rotate(90deg);
  transition: all 0.35s;
}
.tab input:checked + .tab__label::after {
  transform: rotate(270deg);
}
.tab:not(:first-child) {
   border-top: 1px solid var(--grey-border);   
}
.tab__content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s;
}
#filters .tab input:checked ~ .tab__content{
  padding: 10px 0 20px;
}
.tab input:checked ~ .tab__content {
  max-height: fit-content;
}
.tab .tab__content input[type="checkbox"]{
    position: relative;
    opacity: 1;
    z-index: 999;
    margin-right: 10px;
    width: 15px;
    height: 15px;
    border: 1px solid var(--yellow);
} 
.tab .tab__content label{
    color: var(--black);
    font-size: 16px;
    margin-bottom: 6px;
    display: flex;
    line-height: 1;
    margin-bottom: 10px;
    position:relative;
}
/* Arrow animation */
.tab input:not(:checked) + .tab__label:hover::after {
  animation: bounce .5s;
}
@keyframes bounce {
  25% {
    transform: rotate(90deg) translate(.25rem);
  }
  75% {
    transform: rotate(90deg) translate(-.25rem);
  }
}

.tab__content input[data-order="4"] { 
    margin-left:25px;
}
.tab__content input[data-order="5"] { 
    margin-left:50px;
}
.toggle-arrow {
 /*   cursor: pointer;
    font-size: 12px;
    margin-left: 7px;
    user-select: none;
    transition: transform 0.2s ease;
    color: var(--gray-dark);
    margin-top: 3px;*/
    
        display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 6px;
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    transform: rotate(-45deg);
    cursor: pointer;
    transition: transform 0.2s ease;
    margin-top: 5px;
    
}

.toggle-arrow.open {
    /*transform: rotate(90deg);*/
      transform: rotate(45deg);
}

.filter-rating:after {
    content: "stars";
    padding-left: 40px;
}
.hCount {
    position:absolute;
    right:10px
}
/*Filters Mobile
==========================*/
.toggleFiltersBtn {
    display: none;
}
@media (max-width: 991px){
    .listingSection {
        margin-top:50px!important;
    } 

    .toggleFiltersBtn{
        display:block;

        position: sticky;
        z-index: 1000;
        padding: 10px;
        cursor: pointer;
        background-color: var(--yellow);
        color: var(--white);
        box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.4);
        left:0;
            top: var(--header-h, 0px);
        width:48px;
        height:48px;
         user-select: none;
        transition: left 0.3s ease; 
        margin-bottom:30px;
    }
    .toggleFiltersBtn img{
        width: 28px;
        filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(65deg) brightness(108%) contrast(101%);
    }
    .closeFiltersBtn::after {
        content: "✖";
        line-height: 0;
        padding: 10px 0;
        display: block;
        text-align: center;
        font-size: 22px;
        font-weight: 100;
        color: var(--black);
        text-align: end;
        position: absolute;
        right: 18px;
    }
    #filtersOffcanvas {
        position: fixed;
        top: var(--header-h, 0px);
        left: 0;
        right: auto;
        bottom: 0;
        width: min(90vw, 360px);
        height: calc(100vh - var(--header-h, 0px));
        background-color: var(--white);
        box-shadow: none;
        transform: translateX(-100%);
        transition: transform .3s ease;
        z-index: 1001;
        overflow: auto;
        padding:20px;
    }
    #filtersOffcanvas.open {
        transform: translateX(0);
        box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.40);
    }
}

/* GRID VIEW 
=======================*/
.hotel {
    opacity: 0;               /* start invisible */
    transform: translateY(20px); /* slide up slightly */
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.hotel.visible {
    opacity: 1;
    transform: translateY(0);
}
.contentAsBox,
.hotelCard {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 12px;
    border-bottom: 1px solid var(--gray-light);
    padding-bottom: 24px;
    margin-bottom: 24px;
    height: 100%;
}
.contentAsBox .content,
.hotelCard .content{
    color: var(--gray-dark);
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.contentAsBox .hotelImgSwiper.items-1  .swiper-button-prev,
.contentAsBox .hotelImgSwiper.items-1  .swiper-button-next{
    display:none;
}
.contentAsBox h2 {
    color:var(--blue); /*var(--black);*/
    text-transform:uppercase;
}
.rating {
    color: var(--yellow);
   height:12px;
   display:inline-block;    
   background: url(/images/star.svg) repeat-x left center; 
}
.rating.stars- {
    display:none;
}
.rating.stars-1 {
   width:16px;
}
.rating.stars-2 {
   width:32px;
}
.rating.stars-3 {
   width:48px;
}
.rating.stars-4 {
   width:64px;
}
.rating.stars-5 {
   width:80px;
}
.contentAsBox .location-holder,
.contentAsBox .description,
.contentAsBox .price{
    margin-top:8px;
}
.contentAsBox .location-holder {
    font-size: 16px;
    font-style: italic;
    color: var(--blue);
}
.contentAsBox .price {
    font-weight: 700;
    color: var(--black);  
}
.contentAsBox .price:before,
.contentAsBox .price span{
    color: var(--gray-dark);
    font-size: 16px;
    font-weight: 300;
}
.contentAsBox .price:before {
    content: "From ";
}
.el .contentAsBox .price:before {
    content: "Από ";
}

.contentAsBox .primary-button {
    margin-top: auto;
}

#loadMore {
    color: var(--blue);
    padding: 8px 16px;
    background-color: var(--gray-light);
    transition: background-color .3s ease, color .3s ease;
    font-weight: 600;
}
#loadMore:hover{
    background-color: var(--white);
}






/* HOTEL INNER PAGE 
====================================*/
/* SIDEBAR */
/*
.sidebarWrapper {
    width: 60px;
    transition: width 0.3s ease;
    height: 100%;
    position: absolute;
}
#sidebar {
    position: sticky;
    top: var(--header-h);
    left: 0;
    width: 60px;
    height: calc(100vh - var(--header-h));
    background-color: var(--white);
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    transition: width 0.3s ease;
    overflow-x: hidden;
    z-index: 2;
}
.sidebarWrapper:hover #sidebar {
    width: 220px;
    position: fixed;
}
#sidebar a, #sidebar .sidebarHeader {
    display: flex;
    align-items: center;
    padding: 16px;
    transition: background 0.2s;
}
.sidebarHeader {
    background-color: var(--gray-light);
}
#sidebar a:hover, #sidebar a.active {
    box-shadow: inset 5px 0 0 var(--yellow);
}
#sidebar a:hover i, #sidebar a.active i {
    color: var(--yellow);
}
#sidebar a:hover, #sidebar a.active {
    background-color: var(--gray-light);
}
#sidebar a i, #sidebar .sidebarHeader i {
    min-width: 24px;
    text-align: center;
    margin-right: 16px;
}
#sidebar a span, #sidebar .sidebarHeader span {
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
}
.sidebarWrapper:hover #sidebar a span, .sidebarWrapper:hover #sidebar .sidebarHeader span {
    opacity: 1;
}
@media (max-width: 575px) {
    .sidebarWrapper {
        display: none;
    }
    #arrivalDate,
    #departureDate,
    .selectWrapper {
        flex: 1 1 100%;
    } 
}
*/

/* hotel Sections Space 
=================================*/
.m-scroll-space {
    margin-top: 30px;
}
@media (min-width: 576px) {
    .m-scroll-space {
        margin-top: 70px;
        scroll-margin-top: calc(var(--header-h) + 50px);
    }
}

/*
.hotelContent .header-placeholder{
    text-align: center;
    margin-bottom: 70px;  
}
@media (max-width: 575px) {
    .hotelContent .header-placeholder{
        margin-bottom: 30px;
    }
}*/
@media (min-width: 576px) {
    /*.pageLayout.hotelInnerPage .main{
        padding-left: 60px;
    }
    .hotel-section {
        padding: 0 60px;
    }*/
    .pageLayout.hotelInnerPage .main{
        padding-left: 100px;
        padding-right: 100px;
    }
}
.hotelInnerPage h2{
    text-align:center;
}
/*SECTION GALLERY
-------------------------*/
.section-gallery .swiper-slide {
    width:auto;
}
@media (max-width: 767px){
    .section-gallery .swiper-slide {
        width:100%;
    }
}
.section-gallery .swiper-slide a{
    display:block;
    padding:0 5px;
}

.galleryButton {
    position: absolute;
    right: 30px;
    bottom: 30px;
    background-color: var(--blue);
    color: var(--white);
    padding: 10px 60px 10px 20px;
    transition: background-color .3s ease, color .3s ease;
    z-index:2;
}
.galleryButton:after {
    content: "";
    position: absolute;
    top: auto;
    right: 0;
    width: 40px;
    height: 100%;
    background: url(/images/camera.svg) no-repeat;
    z-index: 3;
    filter: brightness(0) invert(1);
    background-size: 24px;
}
.galleryButton:hover {
    background-color: var(--white);
    color: var(--blue);
}
@media (max-width: 576px) {
    .galleryButton {
        right: 10px;
        bottom: 10px;
        font-size: 16px;
        padding: 5px 40px 5px 15px;
    }
    .galleryButton:after {
        width: 30px;
        background-size: 20px;
    }
}

/* MAP SECTION 
-------------------------*/
.mapSection .bg-container  {
      background-color: var(--gray-light);  
      padding:30px;
}   
@media (max-width: 575px){
    .mapSection .bg-container  {
        padding:20px;
    }
}
#maphotel {
    height: 520px;
    z-index: 1;   
}
/* AMENITIES SECTION 
-------------------------*/
.section-amenities {
    background-color: var(--blue-light); 
    padding:60px;
}
@media (max-width: 767px){
    .section-amenities {
         padding:30px;
    }
}
@media (max-width: 575px){
    .section-amenities {
         padding:20px;
    }
}
.section-amenities .text-container {
    text-align:center;
}
.amenities-row {
    padding-top:60px;
}
.amenities-row .header {
    display:flex;
    color: var(--blue);
    font-weight: 400;
    border-bottom:1px solid var(--yellow);
    padding-bottom:20px;
    margin-bottom:20px;
}
.amenities-row .header .icon {
    margin-right:10px;  
    width:25px;
}
.amenities-row .header div:not(.icon) {
    width:calc(100% - 30px);
}
.amenities-row .header .icon img{
    filter: brightness(0) saturate(100%) invert(22%) sepia(55%) saturate(360%) hue-rotate(151deg) brightness(99%) contrast(94%);
}
.section-amenities ul{
    columns: 4;
}
.section-amenities ul li {
    padding-left: 25px;
    position: relative;
    padding-bottom: 8px;
    line-height: 1.4;
    text-align:left;
}
.section-amenities ul li::after {
    content: "●"; /*•*/
    position: absolute;
    left: 5px;
    top: 15px;
    transform: translateY(-50%);
    color: var(--yellow);
    font-size: 7px;
}
@media (max-width: 1199px){
    .section-amenities ul{
        columns: 3;
    }  
}
@media (max-width: 767px){
    .amenities-row {
        padding-top:40px;
    }
    .section-amenities ul{
        columns: 2;
    }  
}
@media (max-width: 480px){
    .amenities-row {
        padding-top:30px;
    }
    .section-amenities ul{
        columns: 1;
    }  
}

/*
.backgroundColor {
    background-color: var(--blue);
    color: var(--white);
}
.hotelContent .backgroundColor {
    padding: 60px;
    text-align: center;
}
@media (max-width: 768px) {
    .hotelContent .backgroundColor {
        padding: 30px;
    }
}*/




.boking-form-hotel {
    position: absolute;
    bottom: 20px;
    width: 100%;
    z-index:2;
}
.boking-form-hotel .container{
    background-color: rgba(225, 255, 255, 0.8);
    padding: 20px;
}
.boking-form-hotel form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 100%;
}
.boking-form-hotel form > div{
    width:100%;
    flex-wrap: wrap;
}
.boking-form-hotel .column {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 20%;
}
.boking-form-hotel .form-label {
    font-size: 16px;
    color: var(--blue);
    line-height:1;
    margin-bottom:0;
    font-family: var(--font-Geom);
    display:block;
    text-align:left;
}

.boking-form-hotel .form-control {
  text-align: start;
  border: none;
  background: transparent;
  border-radius: 0px;
  cursor: pointer;
  background-color: transparent;
  padding-left:5px;
  box-shadow: none;
  outline:none;
  padding:5px 0;
  color: var(--gray-dark);
  font-weight:200;
  font-size:18px;
  width:80%;
  padding-left:15px;
  border-bottom:1px solid var(--gray-dark);
}
.boking-form-hotel .form-control#checkin,
.boking-form-hotel .form-control#checkout {
    background:url(/images/calendar.svg) no-repeat;
    background-position: right 10px top 15px;
    background-size:15px;
}
@media (max-width: 1199px) {
    .boking-form-hotel .form-label {
        font-size: 14px;
    }
    .boking-form-hotel .form-control {
         padding-left:0px;
         font-size:17px;
    }
}
.boking-form-hotel .select-holder {
    position:relative;
}
.boking-form-hotel .select-holder:after {
    content:"";
    position:absolute;
    right:calc(20% + 15px);
    bottom:15px;
    width: 8px;
    height: 8px;
    margin-left: 6px;
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    transform: rotate(45deg);
    cursor: pointer;
    transition: transform 0.2s ease;
    margin-top: 5px;
}
.boking-form-hotel select {
    border-radius:0;
    width:45px;
}
.boking-form-hotel option {
    font-size: 18px;
}
.boking-form-hotel .primary-button {
    padding: 10px 20px;
}
@media (max-width: 1199px) {
    .boking-form-hotel .primary-button {
        font-size: 16px;
    }
}
@media (max-width: 991px) {
  .boking-form-hotel .column:nth-child(1),
    .boking-form-hotel .column:nth-child(2){
        width: 22%;
    }
    .boking-form-hotel .column:nth-child(3),
    .boking-form-hotel .column:nth-child(4){
        width: 18%;
    }
    .boking-form-hotel .column-btn {
         width: 20%;    
    }
    .boking-form-hotel .form-control {
        width:95%;
    }
    .boking-form-hotel .primary-button {
        font-size: 15px;
        padding: 10px 15px;
    }
}

@media (max-width: 767px) {
    .boking-form-hotel .column:nth-child(1),
    .boking-form-hotel .column:nth-child(2){
        width: 30%;
    }
    .boking-form-hotel .column:nth-child(3),
    .boking-form-hotel .column:nth-child(4){
        width: 20%;
    }
    .boking-form-hotel .column-btn {
        padding-top:15px;
        width: 100%;
    }
}
@media (max-width: 640px) {
    .boking-form-hotel .container{
            padding: 0px;
        background:transparent;
    }
    .boking-form-hotel form .column:not(.column-btn){
        display:none;
    }
    .boking-form-hotel .column-btn {
        padding-top:0px;
    }
}

/* AMENITIES SECTION */
/*
.amenitiesWrapper {
    display: flex;
    gap: 10px;
}
.amenitiesWrapper .mostPopular {
    width: 50%
}
.amenitiesWrapper .mostPopular .title {
    background-color: var(--white);
    color: var(--black);
    margin-bottom: 10px;
    padding: 20px 0;
}
.amenitiesWrapper .featuresList {
    width: 50%;
    position: relative;
}
.amenitiesWrapper .featuresList .toggle-text-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}
.amenitiesWrapper .featuresList .featuresListWrapper {
    background-color: var(--white);
    color: var(--black);
    text-align: start;
    padding: 20px;
    max-height: 397px;
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    overflow: hidden;
    transition: max-height .3s ease;
}
.amenitiesWrapper .featuresList.expanded .featuresListWrapper {
    mask-image: linear-gradient(to bottom, black 100%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 100%, transparent 100%);
    max-height: 2000px;
}
.amenitiesWrapper .featuresList .featuresListWrapper ul {
    columns: 2;
    font-size: 16px;
    font-weight: 300;
}
.amenitiesWrapper .cardsContainer {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.amenitiesWrapper .amenitiesCard {
    flex: 1 0 40%;
    background-color: var(--white);
    color: var(--black);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 50px 0;
}
.amenitiesCard .icon {
    font-size: 30px;
    color: var(--yellow);
}
.amenitiesCard .card-hover {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #30526fd8;
    color: var(--white);
    opacity: 0;
    transition: opacity .3s ease;
}
.amenitiesCard .card-hover ul li {
    padding-left: 25px;
    position: relative;
    width: max-content;
}
.amenitiesCard .card-hover ul li::after {
    content: "β’";
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--yellow);
}
.amenitiesCard:hover .card-hover {
    opacity: 1;
}
.featuresList {
    background-color: var(--white);
    position: relative;
}
.amenitiesWrapper .featuresList .toggle-text-icon {
    transition: transform .3s ease;
}
.amenitiesWrapper .featuresList.expanded .toggle-text-icon {
    transform: rotate(180deg);
}
.amenitiesWrapper .featuresList .list-content ul li {
    padding-left: 25px;
    font-size: 16px;
    font-weight: 300;
    position: relative;
}
.amenitiesWrapper .featuresList .list-content ul li::before {
    content: "β’";
    position: absolute;
    left: 11px;
    bottom: 0px;
    color: var(--yellow);
}
@media (max-width: 1200px) {
    .amenitiesWrapper .mostPopular {
        width: 100%
    }
    .amenitiesWrapper .featuresList {
        width: 100%;
    }
    .amenitiesWrapper {
        flex-wrap: wrap;
    }
}
@media (max-width: 768px) {

    .amenitiesWrapper .amenitiesCard {
        flex: 1 0 100%;
    }
}
@media (max-width: 576px) {
    .amenitiesWrapper .featuresList .featuresListWrapper ul {
        columns: 1;
    }
}

*/



/* INFO SECTION */
/*
.infoSection .title {
    text-align: center;
    margin-bottom: 70px;
}
.infoSection .content {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.infoSection .textSection {
    flex: 1 1 40%;
    padding: 50px;
    background-color: var(--white);
}
@media (max-width: 1200px) {
    .infoSection .content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .infoSection .title {
        margin-bottom: 30px;
    }
}

*/
/* CONTACT SECTION 
.contactSection {
    margin-top: 70px;
    scroll-margin-top: calc(var(--header-h) + 50px);
    margin-left: 60px;
}
.contactSection .title {
    text-align: center;
}
.contactSection .contactForm {
    margin-top: 70px;
}
@media (max-width: 768px) {
    .contactSection {
        margin-left: 30px;
    }
}
@media (max-width: 576px) {
    .contactSection {
        margin-top: 30px;
        margin-left: 0;
    }
    .contactSection .contactForm {
        margin-top: 30px;
    }
}*/

/* SIMILAR HOTELS SECTION */
/*
.similarSection {
    margin-bottom: 70px;
}
@media (min-width: 576px) {
    .similarSection {
        margin-left: 60px;
        margin-right: 60px;
    }
}
.similarSection .similarHotelsTitle * {
    font-size: var(--title-sm);
}
.similarSection .hotel-details {
    background-color: var(--white);
    padding: 10px;
    position: relative;
}
.similarSection .hotel-details .primary-button {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 10px 30px;
}
.similarSection .hotel-details .title {
    font-weight: 300;
}
.similarSection .hotel-details .location {
    font-style: italic;
    color: var(--gray-dark);
    font-weight: 300;
}
.similarSection .hotel-price-cta .price {
    display: flex;
    flex-direction: column;
}
.similarSection .hotel-price-cta .price :first-child {
    font-weight: 300;
}
.similarSection .hotel-price-cta .price :last-child {

}*/


.section-row,
.section-row h2 {
    text-align:left;
}
.section-row .row {
    align-items: center;
}

.textSection ul li,
.section-row ul li{
    padding-left: 25px;
    position: relative;
}
.textSection ul li::before,
.section-row ul li::before{
    content: "•";
    position: absolute;
    left: 5px;
    top: 0px;
    color: var(--yellow);
    line-height: 1.15;
    font-size: 1.5rem;
}

.listing-boxes .box{
    margin-bottom:30px;
    position:relative;
}
.listing-boxes .box .img-holder {
    position:relative;
}
.listing-boxes .box .img-holder:after {
    content: "";
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .2) 80%, rgba(0, 0, 0, .5) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index:2;
}
.listing-boxes .box h2{
    padding-top:5px;
    text-transform:uppercase;
}

.listing-boxes .box .content-over {
    position:absolute;
    top:10px;
    left:25px;
    right:25px;
    z-index:3;
}
.listing-boxes .box .content-over h2{
      color:var(--white);  
}

/* CONTACT PAGE
=================================== */
.contactForm {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 30px;
    background:var(--gray-light);
}
.contactForm .form-control {
    border-radius: 0px;
    font-size: 16px;
    color: var(--gray);
    padding: 10px 25px;
    transition: border .3s ease;
}
.contactForm .form-control:focus {
    border: 1px solid var(--yellow);
    outline: none;
}
.field-validation-valid {
  display: none;
  color: red; 
}
.field-validation-error {
  display: block;
  color: red;
  text-align: left; 
  font-size:14px;    
}
.field-validation-error:empty {
	display: none;
}  
.asterisk span {
  display: inline;
  font-size: 14px;
}
.form-agree label {
	display:inline;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4;
    text-transform:unset;
}
.form-agree .field-validation-error {
	display: inline-block;
}
.form-agree a {
    text-decoration:underline;
    padding-bottom: 0px;
}
.form-agree a:hover {
    text-decoration:none;
}
.form-agree input[type="checkbox"] {
  accent-color: var(--gray-light); /* background when checked */
}
.contactForm .primary-button.submit {
    width: auto;
    margin: auto;
}

#json-msg {
    padding-top:20px;
}
.status-failure,
.status-busy {
    margin:6px 0 0 0;
}
.status-busy img{
   height: 10px;
}






.moreInformation {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 100px auto;
    padding: 16px;
    font-size: 16px;
}
.moreInformation .title {
    margin-bottom: 20px;
}
.moreInformation * {
    font-weight: 300;
}
@media (max-width: 768px) {
    .contactForm {
        margin: 50px auto;
    }
    .moreInformation {
        margin: 50px auto;
    }
}


/*MAP*/

#map { height: 580px; touch-action: manipulation; }
#map h2{
    font-size: 20px;
    margin: 0 0 15px;
}
#map .button {
    margin-top:10px;
    font-size: 14px;
}
#map .leaflet-popup-content {
    margin:15px;
}
#map .leaflet-popup-content .hContent{
    display:flex;
}
#map .leaflet-popup-content .hContent .images{
    width:45%;
    padding-right:20px;
}
#map .leaflet-popup-content .hContent .desc{
        width:55%;
}
#map .leaflet-popup-content a.link{
    display:inline-block;
    font-family: var(--font-Geom);   
    padding: 8px 0;
    color: var(--blue);
    font-size: 14px;
}
/*
#map .leaflet-popup-content picture{
    height:100%;
    display:block;
}
#map .leaflet-popup-content picture img{
    height: 100%;
    object-fit: cover;   
    min-width:200px;
}
*/

