﻿/*****************************************
* CLASSES DO HEADER
******************************************/
.vs-header {
    top: 0;
    left: auto;
    right: 0;
    position: fixed;
    width: 100%;
    display: flex;
    z-index: 1201;
    flex-shrink: 0;
    flex-direction: column;
    box-sizing: border-box;
    box-shadow: 0px 2px 4px -1px rgb(0 0 0 / 20%), 0px 4px 5px 0px rgb(0 0 0 / 14%), 0px 1px 10px 0px rgb(0 0 0 / 12%);    
}

.vs-header-content {
    min-height: 60px;
    display: flex;
    align-items: center;
    color: #FAC102;
    background-color: #FFFFFF;
    font-size: 1rem;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    padding-left: 13px;
    padding-right: 20px;
}
    .vs-header-content a {
        color: #FAC102;
        text-decoration: none;
        font-size: 1rem;
        font-family: "Roboto", "Helvetica", "Arial", sans-serif;
        vertical-align: bottom;
    }

        .vs-header-content a:hover {
            color: #FAC102;
            text-decoration: none;
            font-size: 1rem;
            font-family: "Roboto", "Helvetica", "Arial", sans-serif;
            vertical-align: bottom;
        }

.vs-header-content-center {
    flex-grow: 1;
}

.vs-header-logo {
    padding-left: 15px;
    height: 45px;
}

/*****************************************
* CLASSES DO CARTÃO DO USUÁRIO DO HEADER
******************************************/
.vs-header-user-btn {
    background-color: #FFFFFF;
    color: #FAC102 !important;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

    .vs-header-user-btn:hover, .vs-header-user-btn:focus {
        background-color: #FFFFFF;
        border-color: #FAC102 !important;
        border: 1px solid #FAC102 !important;
    }

.vs-header-user-btn-dropdown {
    position: relative;
    display: inline-block;
}

.vs-header-user-btn-dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

    .vs-header-user-btn-dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

.vs-header-user-btn-dropdown a:hover {
    background-color: #ddd;
}

.show {
    display: block;
}

.vs-header-user-card-column_one {
    width: 100px;
}

.vs-header-user-card-column_two {
    width: 250px;
}

.vs-header-user-card {
    display: none;
    position: absolute;
    background-color: #FFFFFF;
    height: 150px;
    width: 400px;
    overflow: hidden;
    transition-duration: 2s;
    border-radius: 5px;
    top: 65px;
    /*
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
        */
}

    .vs-header-user-card img {
        border: 8px solid white;
        z-index: 100;
        height: 250px;
        border-radius: 240px;
        margin-top: -200px;
        margin-left: 270px;
        transition-duration: 1.5s;
        right: 0px;
        overflow: hidden;
    }

    .vs-header-user-card:hover img {
        margin-left: 200px;
    }

.vs-header-user-card-text {
    font-family: 'Roboto', sans-serif;
    margin-left: 15px;
    margin-top: 5px;
}

    .vs-header-user-card-text h3 {
        font-weight: 200;
    }

    .vs-header-user-card-text span {
        font-weight: 800;
    }

    .vs-header-user-card-text p {
        margin-bottom: 10px;
    }

    .vs-header-user-card-text i {
        margin-left: 3px;
        color: grey;
    }

.vs-header-user-card-footer {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    background-color: #FAC102;
    color: white;
    font-size: 25px;
    padding-top: 5px;
    padding-left: 20px;
    height: 50px;
    /*width: 250px;*/
    margin-top: 60px;
}
    .vs-header-user-card-footer input {
        color: #FFFFFF !important;
    }

    .vs-header-user-card-footer input:hover, .vs-header-user-card-footer input:focus {
        background-color: #FAC102;
        border-color: #FFFFFF !important;
        border: 1px solid #FFFFFF !important;
    }

.vs-header-user-card-line {
    border: 1px solid gray;
    width: 220px;
    margin-bottom: 15px;
    border-radius: 1px;
}

* {
    list-style: none;
    text-decoration: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

/*****************************************
* CLASSES DO MENU
******************************************/
.collapsed-sidebar {
    width: 50px;
}

    .collapsed-sidebar .vs-sidebar-item {
        display: none;
    }

.expanded-sidebar {
    width: 170px;
}

    .expanded-sidebar .vs-sidebar-item {
        display: inline-block;
    }

.sidebar {
    background: #FFFFFF;
    position: fixed;
    top: 0;
    left: 0;
    /* width: 170px; */
    height: 100%;
    padding: 80px 5px 0 5px;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    font-size: 8px;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    z-index: 1000;
    display: inline-block;
    overflow-x: hidden;
}
    .sidebar ul li {
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .sidebar ul li a {
        display: block;
        padding: 8px 8px;
        color: rgba(0, 0, 0, 0.54);
        position: relative;
        font-size: 1rem;
        font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    }

        .sidebar ul li a:hover,
        .sidebar ul li a.active {
            color: #f5f6fa;
            background: #FAC102;
            text-decoration: none;
            border-radius: 8px;
        }
            .sidebar ul li a:hover:before,
            .sidebar ul li a.active:before {
                display: block;
            }

    .sidebar hr {
        border: none;
        height: 1px;
        margin: 5px 0 5px 0;
        flex-shrink: 0;
        padding: 0 0 0 0 !important;
        background-color: rgba(0, 0, 0, 0.12);
    }

/*****************************************
* CLASSES DO CONTEÚDO PRINCIPAL
******************************************/
.vs-main-content {
    margin-left: 50px;
    padding-top: 80px;
}

/*****************************************
* CLASSES DOS ÍCONES
******************************************/
.vs-icon {
    fill: currentColor;
    width: 1em;
    height: 1em;
    display: inline-block;
    font-size: 1.5rem;
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    flex-shrink: 0;
    -moz-user-select: none;
    justify-content: right;
}

.vs-sidebar-item {
    padding-left: 5px;
    justify-content: left;
}

.vs-table-item td a,
.vs-table-item td a:link,
.vs-table-item td a:active {
    color: black !important;
}

.vs-table-item .vs-table-item-img {
    width: 30px !important;
}


/*****************************************
* CLASSES DOS BOTÕES
******************************************/
.vs-btn {
    color: white !important;
    background-color: #FAC102 !important;
}