.outlined-button {
    font-size: 16px;
    font-weight: bold;
    color: white;
    padding: 5px 10px;
    border: 2px solid #e36f1e;
    transition: ease .3s;
}
.outlined-button.tx-black {
    color: black;
}
.outlined-button.tx-black.active {
    color: white;
    background: #e36f1e;
}
.outlined-button:hover {
    color: white;
    background: #e36f1e;
}


.flashy-button {
    padding: 10px 20px;
    background: #e36f1e;
    box-shadow: inset 0 0 0 orange;
    color: white;    
    font-size: 22px;
    font-weight: 800;
    transition: ease 1s;
}
.flashy-button:hover {
    color: black;
    box-shadow: inset 1000px 0 0 orange;
}