/* INFOS DA CONTA */
.info-conta {
    height: 60px;
    width: 20%;
    padding: 5px 1%;

    background-color: #d0804e;
    border-radius: 40px;
}

.info-conta .flex{
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-conta, .img-conta img{
    height: 50px;
    width: 50px;
    border-radius: 100%;

    display: flex;
    justify-content: center;
}

.img-conta .img-cliente{
    border: solid 3px #9b603c;
}

.info-conta .txt-conta{
    width: 150px;
    padding-left: 4%;
    line-height: 1.05em;
    display: block;
    justify-content: center;
}

.down-option{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.txt-conta a{
    font-family: Espiritu;
    font-weight: 10;
    text-decoration: none;

    font-size: 10px;
    color: #331b0c;
}

.txt-conta a.href:hover{
    cursor: pointer;
    transition: .2s;
    color: #000;
}

.txt-conta a.sair{
    font-family: Poppins-Bold;
    font-weight: 10;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;

    font-size: 10px;
    padding: 0.2px 8%;
    border-radius: 7px;
    margin-top: 5px;
    background: linear-gradient(135deg, #d04e4e, #8d3535);
    border: solid 0.2px #8d3535;
    color: #3b1616;
}

.txt-conta a.sair:hover{
    transition: all 0.2s ease;
    color: #fff;
    
    box-shadow: 0px 1px 6px #521c1c;
    background-color: #8d3535;
}

.txt-conta hr{
    width: 100%;
    height: 1px;
    border: 0px;
    border-top: 2px solid #1d1b1a;
}
/* FIM ESTILO INFOS DA CONTA */

@media screen and (max-width: 960px) {
    .info-conta {
        height: 50px;
        width: 40%;
        padding: 5px 2%;
    }

    .img-conta, .img-conta img{
        height: 30px;
        width: 30px;
    
        display: flex;
        justify-content: center;
    }

    .img-conta .img-cliente{
        border: solid 1.5px #9b603c;
    }

    .info-conta .txt-conta{
        width: 100%;
    }

    .txt-conta a{
        font-size: 9px;
    }

    .txt-conta a.href{
        font-size: 7px;
    }

    .txt-conta a.sair{
        font-size: 8px;
        height: 100%;
        width: 32px;
        padding: 0% 2%;
        margin-top: 3px;
        margin-right: 3px;
    }

    .txt-conta hr{
        width: 100%;
    }
}