/* Menu */
#col-menu {
    width: 250px;

    position: fixed;
    left: 0;
    z-index: 999;

    transition: 1s;
}

#col-menu[class*='desativado'] {
    position: fixed;
    left: -300px;
}

#menu {
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

#menu #close-menu {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 101;
}

#menu #close-menu:hover {
    color: #FF0000;
}

#menu .nav-link {
    color: var(--dark);
    font-size: 20px;
    padding-left: 10px;
}

#menu .nav-item {
    background-color: var(--light);
    border-radius: 0 15px 15px 0;
    width: 95%;
}

#menu .nav-item:hover {
    background-color: var(--dark);
}

#menu .nav-item:hover .nav-link {
    color: var(--light);
}

#btn-menu {
    position: fixed;
    top: 5px;
    left: 40px;
    z-index: 100;
}

@media only screen and (max-width: 500px) {
    #col-menu {
        width: 100%;

        position: fixed;
        left: -700px;
        z-index: 99999;

        transition: left 1s;
    }

    #col-menu[class*='desativado'] {
        position: fixed;
        left: 0;
    }
}

/* Conteúdo */
#col-content {
    width: calc(100% - 250px);
    min-height: 100vh;

    background-color: var(--semilight);

    position: absolute;
    left: 250px;

    padding: 70px 10px 10px;

    transition: 1s;
}

#col-content[class*='extendido'] {
    width: 100%;
    left: 0;
    padding: 90px 40px 10px 40px;
}

@media only screen and (max-width: 500px) {
    #col-content {
        width: 100%;
        position: static;
        padding: 100px 10px 10px 10px;
    }

    #col-content[class*='extendido'] {
        width: 100%;
        position: static;
        padding: 100px 10px 10px 10px;
    }
}

#content-card, .content-card {
    background-color: var(--light);
    color: var(--dark);

    border-radius: 15px;
    padding: 15px;
}

#content-card .row-card {
    border-bottom: solid 1px var(--semigrey);

    margin: 0;
    padding: 5px 0;
}

#content-card .row-card:hover {
    background-color: var(--semilight);
}

.row-card h5 {
    margin: 5px 0;
}

/* Dashboards */
#dash-cards {
    display: flex;
    flex-wrap: wrap;
}

.dash-card {
    background-color: var(--light);
    border-radius: 15px;
    width: 19%;
    height: 200px;
    margin: 0 0.625% 20px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.dash-card:nth-child(6n), .dash-card:nth-child(1) {
    margin: 0 0.625% 20px 0;
}

.dash-card:nth-child(5n) {
    margin: 0 0 20px 0.625%;
}

.dash-card:hover {
    background-color: var(--dark);
    cursor: pointer;
}

.dash-card i {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--dark);
}

.dash-card span {
    font-size: 20px;
    text-align: center;
    color: var(--dark);
}

.dash-card:hover i, .dash-card:hover span {
    color: var(--light);
}