/*  ----------------- HEADER -----------------  */

.containerHeader {
    width: 100%;
    height: 12vh;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1px 4rem;
}

.userArea {
    display: flex;
    align-items: center !important;
    justify-content: center;
    gap: 5vw;
}


.greetingMessage {
    font-size: 3rem;
    font-weight: 300;
    color: #237776;
    margin: 0;
}

.firstName {
    font-weight: 500;

}

.profileArea {
    height: auto;
    position: relative;
    display: flex;
    margin-bottom: 6vh;
}

.gear {
    width: 15px;
    height: 15px;
}

.headerDivisor {
    margin-bottom: 10vh;
}
.configButton {
    position: absolute;
    top: 5vh;
    right: -0.2vw;
    background-color: #237776;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    padding: 4px;
}
/*  ----------------- HEADER -----------------  */



/*  ----------------- BODY -----------------  */

.containerBody {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 1vh 8vw;
}

.gestaoVendas {
    /*border: 1px solid black;*/
    width: 100%;
    height: 100%;
}

.titleContainer {
    gap: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.line {
    border-top: 1px solid #237776 !important;
    width: 40%;
}

.titleText {
    margin: 0;
    font-weight: 600;
    font-size: 20px;
    color: #1d3b3b;
}

.cardsContainer {
    display: flex;
    width: 100%;
    padding: 10vh 0vw;
    align-items: center;
    justify-content: space-between;
}

.card {
    width: 20vw;
    border: 1px solid black;

}