
.d-none {
    display:none;
}

/************************************************************************
        Main picture section
************************************************************************/

.booking-main{
    min-height: 47rem;
    background: url('https://images.pexels.com/photos/1591373/pexels-photo-1591373.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260') no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}
.booking-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #28489A 0%, #4680F7 100%);
    z-index: 1;
    pointer-events: none;
}
.location_str{
    padding: 16px;
}

.background-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    opacity: 0.3;
    background: rgb(41,72,154);
    background: linear-gradient(0deg, rgba(41,72,154,1) 0%, rgba(14,3,26,0.9640231092436975) 88%);
}

.booking-main_heading {
    min-height: 30rem;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.booking-main_heading h1 {
    font-size: 5rem;
    text-transform: uppercase;
    text-align: center;
}

.booking-main_heading p {
    max-width: 100rem;
    margin:auto;
    color: var(--white-color);
    font-weight: 300;
    font-size: 2rem;
    
    text-align: center;
    
    margin-bottom: 2rem;
}

.booking-main_heading a{
    background:var(--primary-color);
    border-radius: .5rem;
    color:var(--white-color);
    font-size: 2rem;
    padding: .8rem 2rem;
    text-transform: uppercase;
}



/************************************************************************
       Breadcrumbs
************************************************************************/
.breadcrumb ul {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gray-color);
    list-style: none;
    display: flex;
}

.breadcrumb ul li:not(:last-of-type) {
    margin-right: 1rem;
    position: relative;
}


.breadcrumb ul li:not(:last-of-type) i {
    margin: 0 0.5rem;
}



/************************************************************************
       Beach results
************************************************************************/


.hotel-results h4 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.hotel-results article {
    color: var(--gray-color);
    margin-bottom: 4rem;
}

.hotel-results article > div {
    flex-basis: 48%;
}

.hotel-results article > div h2 {
    margin-bottom: 1.5rem;
    
}

.hotel-results article > div p {
    font-size: 1.8rem;
    margin-bottom: .5rem;
}

.hotel-results article > div .more-btn button {
    background: var(--white-color);
    border: 2px solid var(--primary-color);
    border-radius: .5rem;
    color:var(--primary-color);
    font-size: 1.8rem;
    text-transform: uppercase;
    text-align: center;
    padding: 1rem;
}


.hotel-results article > div .img {
    box-shadow: var(--box-shadow);
    border-radius: 1.5rem;
    height: 45rem;
    position: relative;
    cursor: pointer;
    background-position: center center;
    background-size: cover;
}

.hotel-results article > div .img img {
    width: 100%;
}


.more-btn{
    margin-top: 2rem;
}

.wishlist-button, .share-button {
    position: absolute;
    color: var(--white-color);
    font-size: 2rem;
    cursor: pointer;
    background: rgba(0,0,0,.2);
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.wishlist-button {
    right: 1.6rem;
    top: 1rem;
}
.share-button {
    right: 5.6rem;
    top: 1rem;
}




@media (min-width: 992px) {
    .hotel-results article:nth-child(odd) > div:nth-of-type(1){
        order:2;
    }

    
    .hotel-results article {
        display:flex;
        justify-content: space-between;
    }
}



@media (min-width: 1200px){
    .hotel-results article {
        margin-bottom: 8rem;
    }    
}


.hotel-results {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.hotel-results aside {
    flex-basis: 20%;
}
.hotel-results main {
    flex-basis: 80%;
    /*
    display:grid;
    --gap: 3rem;
    --num-cols: 3;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(var(--num-cols), 1fr);
    gap: var(--gap);
    */
}




/*
.slick-prev:before, .slick-next:before {
    color:white;
    opacity:1;
    font-size: 3.5rem;
}

.slick-prev {
    left:1.5rem;
    z-index: 55;
}
.slick-next{
    right:3rem;
}
*/


.slick-prev:before {
    font-size: 2.4rem;
    font-family: "Font Awesome 5 Free";
    content: "\f104";
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    font-weight: 900;
    background: rgb(109 109 109 / 60%);
    border-radius: 50%;
    width: 2.4rem;
    height: 2.4rem;
    padding: 5px;
    padding-left:2px;
}

.slick-next:before {
    font-size: 2.4rem;
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    font-weight: 900;
    background: rgb(109 109 109 / 60%);
    border-radius: 50%;
    width: 2.4rem;
    height: 2.4rem;
    padding: 5px;
}

.slick-next {
    right: 2.5rem;
} 
.slick-prev {
    z-index: 60;
    left: 1rem;
}




/************************************************************************
.hotel-results main h4 {
    font-size: 1.4rem;
}

.hotel-results article {
    color: var(--gray-color);
    margin-bottom: 4rem;
    border:1px solid var(--border-color);
    box-shadow: var(--box-shadow);
    border-radius: 2rem;
    overflow: hidden;
}

.hotel-results article > div:nth-of-type(2) {
    padding: 1.5rem;
}

.hotel-results article > div h2 {
    margin-top: 1.5rem;
    font-size: 1.8rem;
    
}

.hotel-results article > div p {
    font-size: 1.8rem;
    margin-bottom: .5rem;
}

.hotel-results article > div .more-btn button {
    background: var(--white-color);
    border: 1px solid var(--primary-color);
    border-radius: .5rem;
    color:var(--primary-color);
    font-size: 1.6rem;
    text-transform: uppercase;
    text-align: center;
    padding: .5rem 1rem;
}


.hotel-results article > div .img {
    box-shadow: var(--box-shadow);
    height: 25rem;
    position: relative;

    background-position: center center;
    background-size: cover;
}

.hotel-results article > div .img img {
    width: 100%;
}

.hotel-results .star-rates {
    margin: .5rem 0 1.5rem 0;
    color: var(--star-color);
}

.facilities {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.facilities .icon-fac-tooltip {
    position: relative;
    margin: .5rem .5rem .5rem 0;
}
.facilities .icon-fac-tooltip > div {
    position: absolute;
    left: 0;
    bottom: 3rem;
    width: 25rem;
    visibility: hidden;
    opacity: 0;
    font-size: 1.2rem;
    background: white;
    border: 1px solid var(--border-color);
    padding: 1rem;
    z-index: 55;
    box-shadow: var(--box-shadow);
}

.facilities .icon-fac-tooltip:hover > div {
    visibility: visible;
    opacity: 1;
}



.more-btn{
    margin-top: 2rem;
}

.wishlist-button, .share-button {
    position: absolute;
    color: var(--white-color);
    font-size: 2rem;
    cursor: pointer;
    background: rgba(0,0,0,.2);
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.wishlist-button {
    right: 1.6rem;
    top: 1rem;
}
.share-button {
    right: 5.6rem;
    top: 1rem;
}



/*
@media (min-width: 992px) {
    .hotel-results article:nth-child(odd) > div:nth-of-type(1){
        order:2;
    }

    
    .beach-results article {
        display:flex;
        justify-content: space-between;
    }
}

@media (min-width: 1200px){
    .beach-results article {
        margin-bottom: 8rem;
    }    
}
*/


/* SIDEBAR MOBILE */
.mobile-expand-filters-c {
    display: none;
    width: 100%;
}

.mobile-expand-filters, .closeBtnFilter {
    padding: 1.5rem;
    background: var(--primary-color);
    color: white;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    margin-bottom: 2rem;
    display: none;
}

.mobile-expand-filters i:first-child {
    visibility: hidden;
}

.mobile-expand {
    display: none;
}

.toggle-mobile-expand {
    display: flex;
}


@media (max-width: 1200px) {

    .section-padding {
        padding: 2rem;
    }

    .mobile-expand-filters, .closeBtnFilter {
        display: block;
    }

    /* SIDEBAR */
    .hotel-results aside {
        display: block;
        position: fixed;
        width: 100%;
        height: -webkit-fill-available;
        overflow-y: scroll;
        top: 0;
        left: 0;
        z-index: 11111;
        padding: 15px;
        background: white;
        transform: translateX(-100%);
        transition: all .3s ease-in-out;
    }
    .hotel-results aside.active {
        transform: translateX(0);
    }
    .hotel-results aside > div {
        max-width: 100%;
        margin: auto;
        margin-bottom: 2rem;
    }
    .hotel-results {
        display:block;
    }
    .hotel-results main {
        --num-cols:1;
    }

}

@media screen and (max-width: 991px) {
    .po-interest-article article > div:last-child {
        margin-top: 1.5rem;
    }
}


.tags{
    text-align: center;
    color: var(--primary-color);
}

.go-back-link {
    margin: 4rem 4rem 0rem 4rem !important;
}

@media (max-width: 767px) {
    .booking-main_heading h1 {
        font-size: 3rem !important;
        text-transform: uppercase;
        text-align: center;
    }

    
.booking-main_heading {
    min-height: 20rem;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

}