/* button */
.btn{
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    padding: 8px;
    border-radius: 12px;
    letter-spacing: 0.01em;
}
.btn-danger{
    border-color: #E43631 !important;
    background: #E43631 !important;
    color: #ffffff !important;
}
.btn-success{
    border-color: #5CB85C !important;
    background: #5CB85C !important;
    color: #ffffff !important;
}
.btn-warning{
    border-color: #F39649 !important;
    background: #F39649 !important;
    color: #ffffff !important;
}
.btn-primary{
    border-color: #A22623 !important;
    background: #A22623 !important;
    color: #ffffff !important;
}
.btn-secondary{
    border-color: #E6E6E6 !important;
    background: #E6E6E6 !important;
    color: #9D9EA2 !important;
}
.btn-outline-danger{
    border-color: #ED4040 !important;
    background: #ffffff !important;
    color: #ED4040 !important;
}
.btn-outline-success{
    border-color: #5CB85C !important;
    background: #ffffff !important;
    color: #5CB85C !important;
}
.btn-outline-warning{
    border-color: #F39649 !important;
    background: #ffffff !important;
    color: #F39649 !important;
}

.btn-tambah{
    padding: 8px 21px;
}
.btn-simpan{
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-simpan img{
    margin-right: 12px;
}
.btn-cancel, .btn-cancel:hover{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FCEBEA;
    border-color: #FCEBEA;
    color: #A22623;
}
.btn-cancel img{
    margin-right: 12px;
}
.btn-delete{
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-delete img{
    margin-right: 12px;
}
.btn-send{
    border-radius: 4px;
    width: 44px;
    height: 44px;
}

@media(max-width: 576px){
    .btn-tambah{
        width: 100%;
    }
}