/* COLORS TO REPLACE */
/*
Default focus outline       .btn.focus          rgba(0, 123, 255, 0.25)

#1 Primary button
Primary button              .btn-primary:       #efdd35
Primary button border                           #efdd35
Primary button hover                            #222222
Primary button box-shadow                       rgba(239, 221, 53, 0.5)
Primary button active                           #222222

#2 Secondary button
Secondary button            .btn-secondary:     #222222
Secondary button border                         #222222
Secondary button hover                          #142963
Secondary button box-shadow                     rgba(0, 0, 0, 0.5)
Secondary button active                         #142963

#4 Success button
Success button              .btn-success:       #28a745
Success button border                           #28a745
Success button hover                            #218838
Success button box-shadow                       rgba(40, 167, 69, 0.5)
Success button active                           #218838

#5 Danger button
Danger button               .btn-danger:        #dc3545
Danger button border                            #dc3545
Danger button hover                             #c82333
Danger button box-shadow                        rgba(220, 53, 69, 0.5)
Danger button active                            #bd2130
*/

/* Default button styling */
.btn {
    /* Display and box model */
    display: inline-block;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* Typography */
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    /* Border and border radius */
    border: 1px solid transparent;
    /* Transitions */
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn:hover, .btn:focus {
    text-decoration: none;
}

.btn:focus, .btn.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25);
}

.btn-lg, .btn-group-lg > .btn {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0;
}

.btn-sm, .btn-group-sm > .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-block + .btn-block {
    margin-top: 0.5rem;
}

.bootstrap-select .btn-light {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057 !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da !important;
    border-radius: 0 !important;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.bootstrap-select .btn-light:focus {
    color: #495057 !important;
    background-color: #fff !important;
    border-color: #ced4da !important;
    outline: 0 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.5) !important;
}

.bootstrap-select .dropdown-toggle .filter-option:focus {
    color: #495057 !important;
    background-color: #fff !important;
    border-color: #ced4da !important;
    outline: 0 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.5) !important;
}

/* Pagination */
.page-link {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #222222;
    background-color: #ffffff;
    border: 1px solid #222222;
}

.page-link:hover {
    color: #ffffff;
    background: #222222;
    border: 1px solid #222222;
}

.page-link:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.5);
}

.page-item.disabled .page-link {
    color: #222222;
    pointer-events: none;
    cursor: auto;
    background-color: #ffffff;
    border-color: #dee2e6;
}

.page-item.active .page-link {
    background-color: #222222;
    border-color: #222222;
}

.page-item.active .page-link:hover,
.page-item.active .page-link:focus,
.page-item.active .page-link:active {
    background-color: #222222;
    border-color: #222222;
}

.page-item:last-child .page-link,
.page-item:first-child .page-link {
    border-radius: 0;
}