/*============================================================================================*/
/* Your custom styles below */
/*============================================================================================*/
/* personalizzazione calendario */
.ui-datepicker-inline{
    width:100% !important;
    border:none !important;
}
.ui-datepicker-header{
    border:none !important;
    background:#fff !important;
}
.ui-datepicker-title{
    font-size:19px;
}
.add-guest > i,.rm-guest > i{
    border: 1px solid #ccc;
    border-radius: 100%;
    padding: 10px;
}
.add-guest > i.disabled,.rm-guest > i.disabled{
    color:white;
    background-color: #eee;
}

.guest-counter{
    width:50px;
}
.row-pax{
    border-bottom:1px solid #eee;
    padding:10px;
}
.ui-state-default{
  border-radius: 20px;
  height: 39px;
  text-align: center !important;
  vertical-align: middle;
  line-height: 31px !important;
  font-size: 16px;
  width: 39px;
  margin: 3px;
  }
.check_date_container{
    border-radius: 12px;
    padding: 10px;
    margin: 10px;
}
.check_date_container.active{
    box-shadow: 0 1px 25px 0px rgba(0, 0, 0, 0.15);
}
.stars-wrapper i{
    color:#F1C825;
    font-size:18px;
}
/* placeholder ajax request sidebar */
@keyframes placeHolderShimmer{
    0%{
        background-position: -468px 0
    }
    100%{
        background-position: 468px 0
    }
}

.animated-background {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: placeHolderShimmer;
    animation-timing-function: linear;
    background: #f6f7f8;
    background: linear-gradient(to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
    background-size: 800px 104px;
    height: 96px;
    position: relative;
}

.background-masker {
    background: #fff;
    position: absolute;
}
.background-masker.header-top,
.background-masker.header-bottom,
.background-masker.subheader-bottom {
    top: 0;
    left: 40px;
    right: 0;
    height: 10px;
}

.background-masker.header-left,
.background-masker.subheader-left,
.background-masker.header-right,
.background-masker.subheader-right {
    top: 10px;
    left: 40px;
    height: 8px;
    width: 10px;
}

.background-masker.header-bottom {
    top: 18px;
    height: 6px;
}

.background-masker.subheader-left,
.background-masker.subheader-right {
    top: 24px;
    height: 6px;
}

.background-masker.header-right,
.background-masker.subheader-right {
    width: auto;
    left: 300px;
    right: 0;
}

.background-masker.subheader-right {
    left: 230px;
}

.background-masker.subheader-bottom {
    top: 30px;
    height: 10px;
}

.background-masker.content-top,
.background-masker.content-second-line,
.background-masker.content-third-line,
.background-masker.content-second-end,
.background-masker.content-third-end,
.background-masker.content-first-end {
    top: 40px;
    left: 0;
    right: 0;
    height: 6px;
}

.background-masker.content-top {
    height:20px;
}

.background-masker.content-first-end,
.background-masker.content-second-end,
.background-masker.content-third-end{
    width: auto;
    left: 380px;
    right: 0;
    top: 60px;
    height: 8px;
}

.background-masker.content-second-line  {
    top: 68px;
}

.background-masker.content-second-end {
    left: 420px;
    top: 74px;
}

.background-masker.content-third-line {
    top: 82px;
}

.background-masker.content-third-end {
    left: 300px;
    top: 88px;
}
/* fine placeholder ajax request sidebar */
td.nowrap{
    width: 1%;
    white-space: nowrap;
}
/* allargo il template */
@media (min-width: 1440px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1440px !important;
    }
}
.accordion-button:not(.collapsed){
    background-color:#fff;
}
.accordion-button.collapsed{
    background-color:#fafbfd;
}
/*input[type='text'],input[type='email'],input[type='date']{
    border:1px solid #ccc !important;
    padding:5px !important;
    border-radius:6px !important;
    height:50px !important;
}*/
.add_top_10{
  margin-top:10px !important;
}
.add_top_86{
    margin-top:86px !important;
}
.add_top_110{
    margin-top:110px !important;
}
.add_top_42{
    margin-top:42px !important;
}
.add_bottom_50{
    margin-bottom:50px !important;
}
.add_top_183{
    margin-top:183px !important;
}
/* stepper */
.stepper-wrapper {
    padding:10px 50px;
}
ol.stepper {
    font-family: "Poppins", Arial, sans-serif;
   /* --default-b: lightgrey;*/
   --default-b: #eee;
    /*--default-c: black;*/
    --default-c:#d2d2d2;
    /*--active-b: purple;*/
    --active-b:#F0C927;
    --active-c: white;
    --circle: 2.5em; /* size of circle */
    --b: 3px; /* line thickness */
    display: flex;
    list-style: none;
    justify-content: space-between;
    background: 
      linear-gradient(var(--default-b) 0 0) no-repeat
      50% calc((var(--circle) - var(--b))/2)/100% var(--b);
    counter-reset: step;
    /*margin: 20px;*/
    padding: 0;
    font-size: 19px;
    /*font-weight: bold;*/
    counter-reset: step;
    overflow: hidden;
  }
  ol.stepper li {
    display: grid;
    place-items: center;
    gap: 5px;
    /*font-family: sans-serif;*/
    position: relative;
  }
  ol.stepper li::before {
    content: counter(step) " ";
    counter-increment: step;
    display: grid;
    place-content: center;
    aspect-ratio: 1;
    height: var(--circle);
    border: 5px solid #fff;
    box-sizing: border-box;
    background: var(--active-b);
    color: var(--active-c);
    border-radius: 50%;
    /*font-family: monospace;*/
    z-index: 1;
  }
  ol.stepper li.active ~ li::before{
    background: var(--default-b);
    color: var(--default-c);
  }
  ol.stepper li.active::after {
    content: "";
    position: absolute;
    height: var(--b);
    right: 100%;
    top: calc((var(--circle) - var(--b))/2);
    width: 100vw;
    background: var(--active-b);
  }
  
  
  @media (max-width: 600px) {
    ol.stepper {
     display: grid;
     gap: 20px;
    background: 
      linear-gradient(var(--default-b) 0 0) no-repeat
      calc((var(--circle) - var(--b))/2) 50%/ var(--b) 100%;
    }
    ol.stepper li {
      display: flex;
    }
    ol.stepper li.active::after {
      content: "";
      position: absolute;
      width: var(--b);
      bottom: 100%;
      left: calc((var(--circle) - var(--b))/2);
      top: auto;
      right: auto;
      height: 100vw;
      background: var(--active-b);
    }
  }
  .overlay-image {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
  }
  
  .wrapper-image:hover img {
    opacity: 0.3;
  }
  
  .wrapper-image:hover .overlay-image {
    opacity: 1;
  }
  
  .overlay-image > .text {
    background-color:transparent;
    color: white;
    font-size: 20px;
    padding: 16px 32px;
  }
  .my-holidays a.tab_link{
    color:#ccc;
  }
  .my-holidays a.tab_link:hover{
    text-decoration:underline;
  }
  .my-holidays a.tab_link.active, .my-holidays a.tab_link.active:hover{
    color:#111 !important;
    text-decoration:underline;
  }
  .margin_top_40{
    margin-top:40px !important;
  }
  .add_top_81{
    margin-top:81px !important;
  }
 
  html{
    scroll-behavior: smooth;
  }
  #accordionSolutions > .wrapper-product{
    border-radius:8px;
  }
  .product-collapse-button{
    border-radius:8px 8px 0 0;
  }
  
  .active.price{
    color:#ed5434;
  }
  .price > .main{
    font-size:20px;
  }
  a.btn_1.product_solution.active{
    background-color:#ed5434;
  }
  a.btn_1.product_solution{
    background-color:#e2e2e2;
  }
  .offer.badge{
    background-color:darkseagreen !important;
    margin-right:5px;
    font-size:12px;
  }
  .single-solution-price{
    font-size:16px;
  }
  .modal-backdrop.show{
    z-index:10000;
  }
  .modal{
    z-index:10001;
  }
  .room_desc > .wrapper-gall > .carousel.slide > .gallery > .main-image{
    max-height:230px; 
    overflow:hidden;
  }
  .box_style_3{
    padding:5px;
  }
  @media (min-width: 1200px) {
    .h4, h4 {
        font-size: 1.1rem;
    }
  }
  .parallax-section.catalogue-section{
    cursor:pointer;
  }
  .carousel_offer .item{
    margin: 5px;
  }
  .carousel_offer .item img{
    display: block;
    width: 100%;
    height: auto;
    border-radius:10px;
  }
  .overlay-hidden{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: #000;
    border-radius:10px;
}
.overlay-hidden:hover {
  opacity: 0.9;
}
.overlay-hidden > .content {
  height: 100%;
  padding: 10px;
  color:#FFF;
}
.overlay-hidden > .content > p{
  text-align:left;
}
.overlay-hidden > .content > h3{
  color:#FFF;
  margin-top:15px;
  font-weight:bold;
}
.overlay-hidden > .content > .button-link{
  position: absolute;
  bottom: 0;
}
.overlay-hidden > .content > .button-link > button{
  margin-bottom: 5px;
  margin-right: 21px;
  border-color:#FFF;
  color:#FFF;
}
@media (max-width: 767px) {
  .parallax-window#booking {
      min-height:59vh !important;
  }
  .add_top_81 {
    margin-top: 51px !important;
  }
  .item-img{
    border-radius:10px !important;
  }
  #check_avail > .risultati-ricerca{
    padding-left:10px;
    padding-right:10px;
  }
  .room_list_desc{
    margin-top:10px;
  }
  .accordion-button:not(.collapsed)::after, 
  .accordion-button.collapsed::after{
    background-image: var(--bs-accordion-btn-active-icon);
    transform: var(--bs-accordion-btn-icon-transform);
    position: absolute;
    right: 39px;
    padding: 11px;
  }
  .i-miei-bonus{
    margin-top:15px;
    margin-bottom:0px;
  }
  /*.parallax-window#booking::before {
    content: "";
    position: absolute;
    inset: 0; /* top: 0; 
    background-color: rgba(0, 0, 0, 0.2); 
    z-index: -1;
  }*/
  
}
.btn-outline-primary{
  border-color:#5AA6D5;
  color:#5AA6D5;
}
.btn-outline-primary a{
  color:#5AA6D5;
}
.overlay-camera{
  position: absolute;
    background-color: #000;
    z-index: 100000;
    right: 10px;
    bottom: 10px;
    color: #FFF;
    padding: 10px;
    border-radius: 10px;
}
.big.fa-magnifying-glass{
  font-size:30px;
}
.content-wrapper {
  max-height: 130px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.5s ease;
}

.content-wrapper.expanded {
  max-height: 1000px; /* O 'none' per altezza illimitata */
}

.fade-out {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), white);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.content-wrapper.expanded .fade-out {
  opacity: 0;
}
button.toggle-desc{
  border: none;
  text-decoration: underline;
  background: transparent;
  padding-bottom: 28px;
  padding-left: 0;
}
.prd-description{
  margin-top:10px;
  margin-left:0px;
}
#toTop{
  bottom:60px !important;
  
}

  


