/* BUTTON */

.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .300rem .60rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 5px !important;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.btn-primary {
    color: #fff;
    background-color: #1A5BA2 !important;
    margin-right: 15px;
    min-width: 100px !important;
}

.btn-danger{
    color: #fff;
    background-color: #ee1d3f !important;
    margin-right: 15px;
    min-width: 100px !important;
}

.btn-outline-danger{
    color: #ee1d3f;
    background-color: transparent !important;
    border-color: #ee1d3f !important;
    margin-right: 15px;
    min-width: 100px !important;
}

.btn-outline-primary{
    color: #1A5BA2;
    background-color: transparent !important;
    border-color: #1A5BA2 !important;
    margin-right: 15px;
    min-width: 100px !important;
}

.btn-outline-primary:hover{
    color: #fff;
    background-color: #1A5BA2 !important;
    border-color: #1A5BA2 !important;
    margin-right: 15px;
    min-width: 100px !important;
}

.btn-outline-danger:hover{
    color: #fff;
    background-color: #ee1d3f !important;
    border-color: #ee1d3f !important;
    margin-right: 15px;
    min-width: 100px !important;
}

.btn-warning{
    color: #fff;
    background-color: #f07a0b !important;
    border-color: #f07a0b !important;
    margin-right: 15px;
    min-width: 100px !important;
}

.btn-outline-warning{
    color: #f07a0b;
    background-color: transparent !important;
    border-color: #f07a0b !important;
    margin-right: 15px;
    min-width: 100px !important;
}

.btn-outline-warning:hover{
    color: #fff;
    background-color: #f07a0b !important;
    border-color: #f07a0b !important;
    margin-right: 15px;
    min-width: 100px !important;
}

.btn-success{
    color: #fff;
    background-color: #116400 !important;
    margin-right: 15px;
    min-width: 100px !important;
}

.btn-outline-success{
    color: #116400;
    background-color: transparent !important;
    border-color: #116400;
    margin-right: 15px;
    min-width: 100px !important;
}

.btn-outline-success:hover{
    color: #fff;
    background-color: #116400 !important;
    border-color: #116400;
    margin-right: 15px;
    min-width: 100px !important;
}

.flex-button
{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

