/* div buttons */
.buttons-row{
    display: flex;
    justify-content: center;
    column-gap: 10px;
}

/* buttons */
.btn-std{
    background-color: black;
    border: none;
    cursor: pointer;
    color: white;
}

.btn-std:hover{
    background-color:var(--color4);
}

/* buttons sizes */
.btn-s{
    width: 75px;
    height: 25px;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 5px;
}

.btn-m{
    width: 100px;
    height: 25px;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 5px;
}

.btn-xl{
    width: 130px;
    height: 35px;
    font-size: 14px;
}