﻿@font-face {
    font-family: letraIultra;
    src: url(../fonts/Aceh-ExtraBold.ttf)
}

.container-menu-lateral{
    width: auto;
    height: calc(100vh - 125px);
}

.menu-lateral {
    width: auto;
    height: calc(100% - 125px);
 /*   padding: 1rem;*/
    display: flex !important;
    justify-content: center;
    align-items: center;
/*    background-color: #fff;*/
    position: fixed;
    z-index: 99;
    margin-top: -50px;
}

    .menu-lateral ul {
        width: 50px;
        height: auto;
        background-color: #00417f;
        list-style: none;
        padding: 1rem 0;
        margin: 0;
        border-radius: 20px;
        overflow: hidden;
        transition: width 0.4s ease;
    }

.menu-lateral li {
    padding: 20px;
    display: flex;
    align-items: center;
}

.menu-lateral li a {
    color: #fff;
    text-decoration: none;
    display: contents;
    white-space: nowrap;
/*    font-family: letraIultra;*/
}

.menu-lateral li:hover {
    transform: scale(1.1);
}

.menu-lateral ul:hover {
    width: 200px;
    transition: width 0.4s ease;
}

.menu-lateral i {
    width: 20px;
    height: 20px;
    margin-right: 1.7rem;
    color: aliceblue;
}

@media screen and (max-width: 980px) {
    .menu-lateral {
        width: 0px;
        overflow: hidden;
        transition: 0.3s ease;
        padding: 0px;
        align-items: center;
        background-color: #00417f;
        z-index: 99;
    }

    .menu-lateral.show {
        width: 230px !important;
        display: flex !important;
        align-items: center;

        height:100%;
    }


    .menu-lateral ul {
        width: auto;
    }
}