<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url(Atendimento/styles.css);
@import url(Index/styles.css);
@import url(Index/styles-mobile.css);

@media screen and (max-width: 1024px) {
    .background-page {
        justify-content: center;
    }
    .sidebar-ouvidoria {
        display: none;
    }
    .content-section {
        width: 100%;
    }
    .content-page-background {
        width: 100%;
        height: calc(100% - 60px);
        padding: 0px;
    }
    #logo-mobile {
        width: 35px;
        height: auto;
        margin-right: 16px;
    }
    #logo-sidebar {
        width: 0px;
    }
    .content-header {
        padding: 16px;
    }
}

@media screen and (min-width: 1024px) {
    /*Background*/
    .background-page {
        justify-content: start;
        background-color: rgb(240, 240, 240);
    }

    /*Sidebar*/
    .sidebar-ouvidoria {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 24px;
    }

    .logo-sidebar-box {
        width: 100%;
        height: 70px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: start;
    }

    #logo-sidebar {
        width: 55px;
        height: auto;
    }

    #logo-mobile {
        width: 0px;
    }

    .sidebar-menu-group {
        height: 80%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 24px;
    }

    .sidebar-menu-btn-box {
        height: fit-content;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 6px;
        margin-bottom: 12px;
    }

    .sidebar-menu-btn-box:hover {
        background-color: #FFF;
        cursor: pointer;
    }

    .sidebar-menu-btn-icon {
        width: 18px;
        margin-bottom: 2px;
    }

    .sidebar-menu-btn-label {
        color: black;
        font-size: 16px;
    }

    .profile-image-background {
        width: 45px;
        height: 45px;
        background-color: crimson;
        border-radius: 50%;
        padding: 2px;
        margin-bottom: 6px;
    }

    .profile-name {
        color: black;
        font-weight: 700;
        font-size: 12px;
    }

    .sidebar-profile-group {
        height: 10%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    /*Content*/

    .content-section {
        width: calc(100% - 100px);
    }

    .content-page-background {
        width: 100%;
        height: 100%;
        padding: 16px 24px 16px 0px;
    }
    
    
}</pre></body></html>