:root{
    --cor-padrao-logo: #BC9C23;
    --btn-ok: #4dabf7;
    --cor-padrao-letras: #1971c2;
    --cor-fundo-tela: #F3F0DF;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--cor-fundo-tela);
    justify-content: space-between;
}

header{
    display: flex;
    height: 7vh;
    width: 100vw;
    justify-content: space-between;
    position: fixed;
    background-color: white;
    padding: 0px 40px 0px 40px;
    z-index: 2;
    box-shadow: 0 4px 2px -3px gray;
}

.iduser{
    display: flex;
    align-items: center;
    font-size: 18px;
    color: black;
    font-weight: bold;
}

.logo{
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    height: 100%;
    display: flex;
    align-items: center;
}

.logo img{
    height: 40px;
    width: 120px;
}

#menu{
    display: flex;
    height: 100%;
}

.menu-ul ul{
    display: flex;
    align-items: center;
    grid-column-gap: 25px;
    height: 100%;
}

.menu-ul ul li{
    list-style: none;
}

.btn_menu{
    text-decoration: none;
}

.btn_menu svg{
    /*stroke: var(--cor-padrao-logo);*/
    /*fill: var(--cor-padrao-logo);*/
    width: 22px;
    height: 22px;
    transition: height 0.5s ease,
                width 0.5s ease;
}

.btn_menu svg:hover{
    transform: scale(1.3)
}

.container-base{
    display: flex;
}

/*.box-loading{
    width: 100%;
    height: 88vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 1;
}*/

.loading{
    display: none;
    position: fixed;
    width: 4rem;
    height: 4rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: .9rem solid;
    border-color: var(--cor-padrao-logo) var(--cor-letras-logo) var(--cor-letras-logo) var(--cor-letras-logo);
    /*border-color: black white white white;*/
    border-radius: 50%;
    animation: spin 1s infinite;
    z-index: 1;
}

@keyframes spin{
    0%{
        transform: rotate(0deg)
    }
    100%{
        transform: rotate(360deg)
    }
}

.btn_menu #svg_teste{
    fill: var(--cor-padrao-logo);
}

/* RESPONSIVIDADE */
@media screen and (max-width: 600px){
    #usuario,
    .menu-ul{
        display: none;
    }

    header{
        height: 6vh;
    }

    .logo img{
        height: 30px;
        width: 90px;
    }

    #menu{
        align-self: center;
    }

    /* ESTILO DO MENU MOBILE */
    .btn-abrir-menu-mobile{
        color: black;
        display: flex;
        align-self: center;
        right: 20px;
        top: -10px;
    }

    .btn-abrir-menu-mobile svg{
        fill: var(--cor-padrao-logo);
        width: 25px;
        height: 25px;
    }

    .menu-mobile{
        background-color: white;
        top: 0;
        right: 0;
        z-index: 99999;
        height: 100vh;
        width: 0%;
        position: fixed;
        display: flex;
        flex-direction: column;
        grid-gap: 30px;
        overflow: hidden;
        transition: .5s;
    }

    .btn-fechar-menu-mobile{
        width: 100%;
        left: 0;
    }

    .btn-fechar-menu-mobile ~ .overlay-menu-mobile{
        display: block;
    }

    .btn-fechar-menu-mobile svg{
        stroke: var(--cor-padrao-logo);
        width: 15px;
        height: 15px;
    }

    .menu-mobile nav ul{
        text-align: center;
        list-style-type: none;
    }

    .menu-mobile nav ul li a{
        background-color: white;
    }

    .menu-mobile nav ul li a:hover{
        color: black;
    }

    .menu-mobile nav ul li a svg{
        stroke: var(--cor-padrao-logo);
        width: 20px;
        height: 20px;
    }

    .menu-mobile nav ul li:nth-child(3) a svg{
        stroke: var(--cor-padrao-logo);
        fill: none;
        width: 30px;
        height: 30px;
    }

    .overlay-menu-mobile{
        background-color: black;
        width: 100vw;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 88888;
        opacity: 0.5;
        display: none;
    }
}