.button{
    display: inline-flex;
    justify-content: center;
    align-items: center;

    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;

    box-shadow: none;
    
    
    padding: 10 15;
    color: white;
    background-color: black;
    box-shadow: 0px 0px 0px rgba(0,0,0,0.0);
    transition: 0.3s;

    margin: 0;
    cursor: pointer;
    transform: scale(1.001);
    gap:10px;
}
.button_item{
    flex-direction: column;
    gap:4px;
    min-width: 60%;
}
.button:hover{
    box-shadow: 0px 3px 10px rgba(0,0,0,0.3);
    transform: scale(1.02);
}
.button_cont{
    display: flex;
    gap: 5px;
}
.button_cont_forceRow{
    flex-direction: row;
}
.button_w100{
    width: 100%;
}
.button_progress{
    pointer-events: none;
    background-color: gray;
}
.button_success{
    pointer-events: none;
    background-color: green;
}
.button_failed{
    pointer-events: none;
    background-color: red;
}
.button_popis{
    font-size: .8rem;
    padding: 4px 20px;
}
@media (max-width:1200px){
    .button_cont{
        flex-direction: column;
    }
    .button_cont_forceRow{
        flex-direction: row;
    }
}