<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@media all {
    .wrapper-large {
        /* background-color: black; */
        width: 100%;
        height: 100%;
        max-width: 1920px;
    }

    .wrapper-medium {
        width: 100%;
        height: 100%;
        max-width: 1367px;
        /* background-color: var(--secondary); */
    }

    .wrapper-small {
        width: 100%;
        height: 100%;
        max-width: 1080px;
        /* background-color: var(--primary); */
    }

    .navbar {
        position: fixed;
        top: 0px;
        left: 0px;
        display: flex;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
        height: 100px;
        width: 100%;
        padding: 0px 25px;
        background-color: var(--bg-light);
        z-index: 9999;
        /*font-family: 'Libre Baskerville', serif;*/
        font-family: Adamina, Verdana, Arial;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }

    .navbar .logo,
    .navbar .logo &gt; img {
        height: 75px;
        padding-bottom: 10px;
    }

    .navbar &gt; .wrapper-medium {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .navbar .menu {
        display: flex;
        align-items: flex-end;
        height: 100%;
        margin: 0px 20px;
        padding-bottom: 25px;
        box-sizing: border-box;
    }

    .menu &gt; .menu-item {
        color: black;
        font-size: 17px;
        font-weight: 600;
        letter-spacing: 0.3px;
        text-decoration: none;
        margin-right: 30px;
        white-space: nowrap;
        transition: .2s ease opacity;
    }

    .menu &gt; .menu-item:hover {
        opacity: 0.5;
    }

    .menu &gt; .menu-item.current {
        color: var(--primary);
    }

    .navbar .prenota-btn {
        position: relative;
        background-color: var(--primary);
        height: 100%;
        /*padding: 0px 90px 25px 40px;*/
        padding: 0px 30px 25px 30px;
        color: white;
        font-size: 17px;
        letter-spacing: 0.3px;
        font-weight: 600;
        text-decoration: none;
        display: flex;
        align-items: flex-end;
        box-sizing: border-box;
    }

    .navbar .prenota-btn &gt; img {
        position: absolute;
        top: 16px;
        right: 14px;
        height: 54px;
    }

    .navbar .prenota-btn &gt; span {
        position: relative;
    }

    .navbar .prenota-btn &gt; span::after {
        content: "";
        display: block;
        position: absolute;
        bottom: -2px;
        left: 0px;
        height: 2px;
        width: 0px;
        background-color: white;
        transition: .2s ease width;
    }

    .navbar .prenota-btn:hover &gt; span::after {
        width: 100%;
    }

    .menu-mobile {
        display: none;
    }
}


@media only screen and (max-width: 1300px) {
    .navbar {
        height: 90px;
    }

    .navbar .logo,
    .navbar .logo &gt; img {
        height: 62px;
    }

    .navbar .menu &gt; .menu-item {
        font-size: 15px;
        margin-right: 20px;
    }

    .navbar .prenota-btn {
        font-size: 14px;
        padding: 0px 15px 25px 15px;
    }

    .navbar .prenota-btn &gt; img {
        height: 45px;
    }
}


@media only screen and (max-width: 1100px) {
    .navbar .logo,
    .navbar .logo &gt; img {
        height: 60px;
    }

    .navbar {
        height: 80px;
        padding: 0px 15px;
    }

    .navbar .menu {
        margin: 0px 40px;
        padding-bottom: 22px;
    }

    .navbar .menu &gt; .menu-item {
        font-size: 14px;
        margin-right: 16px;
    }

    .navbar .prenota-btn {
        font-size: 13px;
        padding: 0px 15px 22px 15px;
    }

    .navbar .prenota-btn &gt; img {
        height: 40px;
    }
}



@media only screen and (max-width: 1000px) {
    .navbar {
        display: none;
    }

    .menu-mobile {
        position: fixed;
        top: 0px;
        left: 0px;
        display: flex;
        justify-content: center;
        width: 100%;
        height: 80px;
        padding: 0px 20px;
        box-sizing: border-box;
        background-color: var(--bg-light);
        z-index: 9999;
        /*font-family: 'Libre Baskerville', serif;*/
        font-family: Adamina, Verdana, Arial;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }

    .menu-mobile .wrapper-medium {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .menu-mobile .logo,
    .menu-mobile .logo &gt; img {
        display: inline-block;
        height: 68px;
    }

    .menu-mobile button {
        background: none;
        border: 0px;
        height: 35px;
        width: 35px;
        padding: 0px;
        box-sizing: border-box;
        cursor: pointer;
    }

    .menu-mobile button &gt; img {
        height: 100%;
        width: 100%;
        object-fit: contain;
    }

    .menu-mobile .prenota-btn {
        position: absolute;
        top: 80px;
        right: 0px;
        background-color: var(--primary);
        height: 50px;
        /*width: 170px;*/
        padding: 0px 14px;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: white;
        font-weight: 700;
        /*font-family: "Inter", sans-serif;*/
        font-family: Adamina, Verdana, Arial;
        text-decoration: none;
        z-index: 10;
    }

    .menu-mobile .prenota-btn &gt; img {
        height: 30px;
    }

    .menu-mobile .menu {
        height: calc(100% - 80px);
        width: 100%;
        position: fixed;
        top: 80px;
        right: -100%;
        background-color: var(--bg-light);
        z-index: 1;
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
        transition: .3s ease-in-out right;
    }

    .menu-mobile .menu &gt; .spacer {
        width: 100%;
        height: 50px;
        background-color: var(--primary);
        margin-bottom: 20px;
    }

    .menu-mobile .menu &gt; .menu-item {
        width: 100%;
        height: 60px;
        display: flex;
        align-items: center;
        box-sizing: border-box;
        padding: 0px 30px;
        font-size: 20px;
        transition: .2s ease opacity;
    }

    .menu-mobile .menu &gt; .menu-item:hover {
        opacity: 0.5;
    }

    .menu-mobile .menu.open {
        right: 0px;
    }
}</pre></body></html>