
/*REMOVE REVIEW SCORE*/
.sb-portal-hotel-card__reputation, .sb-portal-hotel-card__reputation-value-small {
    display: none;
}

/*REMOVE ALL FILTERS*/
/*.sb-portal-filters {
    display: none;
}*/

/*REMOVE FILTERS BY STARS*/
/*.sb-portal-filters__item.sb-portal-filters__item--stars {
    display: none;
}*/

/*REMOVE FILTERS BY CATEGORY*/
/*.sb-portal-filters__item.sb-portal-filters__item--categories {
    display: none;
}*/

/*REMOVE FILTERS BY PRICE*/
/*.sb-portal-filters__item.sb-portal-filters__item--slider {
    display: none;
}*/

/*REMOVE MAP*/
/*.portal-hotels-map {
    display: none !important;
}*/

/*WHITE BG GALLERY*/
/*.sb-hotelinfo-container .swiper-container, .swiper-slide {
    background-color: #fff;
}*/

/*REMOVE STARS*/
/*.sb-portal-hotel-card__header-stars, .sb-results-hotel-selected__stars {
    display: none;
}*/

html, body {
    width: 100%;
    padding: 0;
    margin: 0;
    font-size: 16px;
}

* {
    box-sizing: border-box;
}

header {
    position: relative;
    width: 100%;
    height: 80px;
    padding: 10px 20px;
    background-color: #1D3557;
    color: #fff;
}

    header .contenitore, footer .contenitore {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        height: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    header .logo, header .logo img {
        height: 35px;
        width: auto;
    }


    header nav {
        position: fixed;
        top: 80px;
        right: 0;
        padding: 20px 20px;
        background-color: #fff;
        height: calc(100vh - 80px);
        width: 75vw;
        border-left: .5px solid #ccc;
        transform: translateX(100%);
        transition: all .5s cubic-bezier(0.25, 0.8, 0.25, 1);
        overflow-y: auto;
        z-index: 1;
    }

        header nav.aperta {
            transform: translateX(0%);
        }

        header nav ul {
            display: flex;
            flex-direction: column;
            gap: 20px;
            list-style-type: none;
            margin: 0;
            padding: 0;
        }

            header nav ul li {
                position: relative;
            }

        header nav a, header nav p {
            color: #333;
            text-decoration: none;
        }

    header .contatti {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 15px;
        list-style-type: none;
        margin: 0 20px 0 auto;
        padding: 0;
    }

        header .contatti a {
            color: #fff;
            text-decoration: none;
        }

    header .hamburger {
        width: 20px;
        height: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
    }

        header .hamburger span {
            display: block;
            width: 100%;
            height: 2px;
            background-color: #fff;
        }

    header nav .submenu {
        padding-left: 20px;
        /*   position: absolute;
    top: 110%;
    left: 0px;
    padding: 15px 5px;
    flex-direction: column;
    background-color: #1D3557; */
    }


.selector {
    position: absolute;
    right: 8px;
    bottom: 0;
}

@media(min-width:992px) {

    header nav {
        position: relative;
        top: unset;
        left: unset;
        padding: 0;
        background-color: transparent;
        height: auto;
        width: auto;
        border: none;
        transform: none;
        overflow-y: unset;
    }

        header nav ul {
            flex-direction: row;
            align-items: center;
        }

        header nav a, header nav p {
            color: #fff;
        }

    header .hamburger {
        display: none;
    }

    header .contatti {
        margin: 0;
    }

    header nav li .submenu {
        display: none;
        padding: 15px 10px;
    }

    header nav li:hover .submenu {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0px;
        flex-direction: column;
        background-color: #1D3557;
        min-width: 300px;
        align-items: baseline;
        z-index: 1000;
    }
}


footer {
    background-color: #1D3557;
    padding: 20px 20px;
    color: #fff;
}

    footer .contenitore {
        flex-direction: column;
        gap: 40px;
        align-items: baseline;
        flex-wrap: wrap;
    }

    footer .social ul {
        display: flex;
        flex-direction: row;
        gap: 15px;
        list-style-type: none;
        margin: 0;
        padding: 0;
    }

    footer .social a, footer .hotels a, footer .contatti a {
        text-decoration: none;
        color: #fff;
    }


    footer .hotels ul, footer .contatti ul {
        display: flex;
        flex-direction: column;
        gap: 15px;
        list-style-type: none;
        margin: 0;
        padding: 0;
    }

@media (min-width:769px) {
    footer .contenitore {
        flex-direction: row;
    }
}


@media (min-width: 560px) {
    .selector {
        position: relative;
    }
}

footer a.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #fff;
    color: #1D3557;
    font-weight: 500;
}

footer p {
    margin-block-start: 1em;
    margin-block-end: 1em;
}



.sb-language-selector-list a, .sb-currency-row a {
    color: #5a5b5c !important;
}

header a:hover {
    color: white;
    opacity: 0.75;
    text-decoration: none;
}