header.header{
    padding: 8px 15px;
    border-radius: var(--border-radius-default);
    margin: 0px 0px 20px 0px !important;
}

header.header form{
    width: 45%;
}

.search_header{
    height: 40px;
    border: 1px solid var(--color-red-dark);
}

.search_header img{
    width: 24px;
    margin: 0 8px 0 16px;
}

.search_header input{
    width: 100%;
    background-color: transparent;
    border: 0;
    color: var(--color-white-default);
    font-size: 17px;
}

.search_header input:focus{
    outline: none;
}

.search_header input::placeholder{
    color: var(--color-white-default);
}

.buttons_header{
    width: 50%;
}

.buttons_launch_header{
    margin-right: 40px;
    width: 100%;
}

span.button_launch{
    padding: 8px 15px;
    text-decoration: none;
    color: var(--color-white-default);
    border-radius: 10px;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0 10px;
    cursor: pointer;
}

.box_button_launch{
    background-color: var(--color-white-default);
    margin-left: 8px;
    width: 22px;
    color: black;
    font-size: 18px;
    text-align: center;
}

.color_sale{
    background-color: rgba(40, 199, 111, 1);
}

.color_expense{
    background-color: var(--color-red-default);
}

.user_logout img.user{
    width: 38px;
    height: 38px;
    border-radius: 50%;
    margin-right: 20px;
}

@media screen and (max-width: 1024px){
    header.header form{
        width: 100%;
        margin: 0 15px;
    }
    .buttons_header{
        width: auto;
    }
    .user_logout img.user{
        width: 38px;
        height: 38px;
        border-radius: 50%;
        margin-right: 10px;
    }
}

@media screen and (max-width: 764px){
    .buttons_launch_header{
        margin-right: 0;
    }
}