<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*-----------------------------
        Sydebar Style
-------------------------------*/

/*Contenitore Sidebar*/
.sContenent {
    position: absolute;
    top: 330px;
    bottom: 0;
    left: 6px;
    z-index: 1000;
    display: block;
    padding: 20px;
    height: 100%;
}


.wrapper {
    display: flex;
    align-items: stretch;
    perspective: 1500px;
}
/*Contenent Style*/
#content {
    padding: 20px;
    min-height: 90vh;
}


#sidebar {
    /*Larghezza Sidebar*/
    min-width: 240px;
    max-width: 240px;
    background: #e5e4e2;
    border-radius: 5px 5px 45px 2px;
    color: black;
    opacity: 1;
}

    #sidebar ul {
        list-style-type: none;
    }
        /*Blocchi Sidebar*/
        #sidebar ul li a {
            padding: 10px;
            font-size: 1.1em;
            display: block;
            color: #36c !important;
            cursor: pointer;
        }

        #sidebar ul li.active &gt; a, a[aria-expanded="true"] {
            /*Colore Testo Ad Attivazione Ocean Blue */
            color: #54C571;
        }

        #sidebar ul ul a {
            font-size: 0.9rem !important;
            padding-left: 20px !important;
            /*colore sotto sidebar*/
            background: white;
            color: black !important;
            background-color: #ededed;
            cursor: pointer;
        }


        #sidebar ul li a:hover {
            /*Colore Testo Selezione Nero*/
            color: #ffffff !important;
            text-decoration: none;
            /*colore selezione azzurro*/
            background-color: #ef8903;
        }

    #sidebar a, a:hover {
        color: inherit;
        text-decoration: solid;
        transition: all 0.3s;
    }

    #sidebar ul li a .nav-text {
        position: relative;
        display: contents;
        vertical-align: middle;
        width: 190px;
        color: #2ea8c3 !important;
        font-family: 'Titillium Web', sans-serif;
    }


    #sidebar ul.CTAs {
        padding: 20px;
    }

        #sidebar ul.CTAs a {
            text-align: center;
            font-size: 0.9em !important;
            display: block;
            border-radius: 5px;
            margin-bottom: 5px;
        }

/*----------------------------
         Logo sidebar
-----------------------------*/
#content .logo-header {
    position: relative;
}
/*Stile Logo*/
.circolare {
    width: 120px;
    height: 120px;
    margin-left: 25%;
    margin-top: 10%;
    margin-bottom: 10%;
    background-size: contain;
    background-position: center;
    -moz-border-image: auto;
    background-repeat: no-repeat;
    object-position: bottom center;
    /*Background Per Img Senza Sfondo */
    position: relative;
    margin-bottom: 1px;
}
/*----------------------------
       BOX ICONA SIDEBAR
------------------------------*/
.iSide {
    /*    position: relative;
    margin-right: 10px;
    margin-top: 6px;*/
    cursor: pointer;
}

.list {
    width: 45px;
    height: 27px;
    /*colore sfondo*/
    background: #E5E4E2;
    border-radius: 40px;
    box-sizing: border-box;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,.2);
}

    .list .fa {
        line-height: 28px;
        /*Colore Img Gray Cloud*/
        color: #36c;
    }


@media only screen and (max-width: 991px) {
    .iSide2 {
        margin-left: 16px;
        margin-top: 10px !important;
    }

    .sContenent {
        top: 340px;
        margin-left: 10px;
    }
}
</pre></body></html>