a {
    color: rgba(113, 173, 255, 1);
}

a:hover {
    color: rgba(149, 188, 241, 1);
}


.btn.btn-primary {
    border-color: rgb(24, 73, 197, 0.5);
    background: rgb(89, 129, 183,0.65);
    color: #fff;
    font-weight: bold;
}

.btn.btn-primary:hover {
    border-color: rgb(24, 73, 197, 0.75);
    background: rgb(89, 129, 183,0.95);
    color: #fff;
}

.btn.btn-primary:not([disabled]):not(.disabled):active, .btn.btn-primary:not([disabled]):not(.disabled).active {
    border-color: rgb(24, 73, 197, 0.5);
    background: rgb(89, 129, 183,0.75);
    color: #fff;
    box-shadow: 0px 0px 0px 2px rgba(45, 104, 255, 0.2);
}

.btn.btn-primary:focus, .btn.btn-primary.focus {
    border-color: rgb(24, 73, 197, 0.65);
    background: rgb(89, 129, 183,0.85);
    color: #fff;
    box-shadow: none;
}


.btn.btn-outline-primary {
    border-color: rgb(89, 129, 183,0.85);
    color: rgb(89, 129, 183, 1);
}

.btn.btn-outline-primary:hover, .btn.btn-outline-primary.active, .btn.btn-outline-primary:active, .btn.btn-outline-primary:active:focus {
    border-color: rgb(24, 73, 197, 0.65);
    background: rgb(89, 129, 183,0.85);
    color: #FFF;
}

.btn.btn-outline-primary:focus {
    border-color: rgb(24, 73, 197, 0.65);
    background: rgb(89, 129, 183,0.85);
    color: #FFF;
}

.btn.btn-outline-primary.disabled {
    border-color: rgb(24, 73, 197, 0.65);
    background-color: rgb(24, 73, 197, 0.1);
}

.btn.btn-outline-primary.disabled:hover {
    border-color: rgb(24, 73, 197, 0.65);
    background-color: rgb(24, 73, 197, 0.1);
    color: rgb(89, 129, 183,0.85);
}




.btn.btn-success {
    border-color: rgb(65, 110, 27, 0.5);
    background: rgba(72, 148, 7, 0.65);
    color: #fff;
    font-weight: bold;
}

.btn.btn-success:hover {
    border-color: rgb(65, 110, 27, 0.75);
    background: rgba(72, 148, 7, 0.95);
    color: #fff;
}

.btn.btn-success:not([disabled]):not(.disabled):active, .btn.btn-success:not([disabled]):not(.disabled).active {
    border-color: rgb(65, 110, 27, 0.5);
    background: rgba(72, 148, 7, 0.75);
    color: #fff;
    box-shadow: 0px 0px 0px 2px rgba(65, 110, 27, 0.2);
}

.btn.btn-success:focus, .btn.btn-success.focus {
    border-color: rgb(65, 110, 27, 0.65);
    background: rgba(72, 148, 7, 0.85);
    color: #fff;
    box-shadow: none;
}

.btn.btn-outline-delete {
    border-color: #ff1e1e;
    color: #ff2d2d;
}