html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 220px;
    background-color: #efefef;
}

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

a {
    color: #0077cc;
}

.btn-primary {
    color: #fff;
    background-color: #253256;
    border-color: #1861ac;
}

    .btn-primary:hover,
    .btn-primary:focus,
    .btn-primary:active {
        background-color: #344267;
    }

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

.footer {
    background-color: #253256;
    color: #fff;
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 30px;
}

    .footer a,
    .footer a:visited,
    .footer a:focus,
    .footer a:active {
        color: #ffffff;
    }

.field-validation-error {
    color: #e04562;
    background-color: #f9e4e8;
    font-weight: 500;
    font-size: 12px;
    display: block;
    padding: 2px 10px;
    margin-top: 4px;
}

input[type="checkbox"] {
    transform: scale(1.5);
    margin: 5px;
    cursor: pointer;
}

.select-wrapper select {
    width: 100%;
}

@media (min-width: 992px) {
    .select-wrapper select {
        width: auto;
        min-width: 120px;
    }
}

.whitespace-preline {
    white-space: pre-line;
}

.page-header {
    display: flex;
    margin-bottom: 0;
    align-items: center;
    flex-wrap: wrap;
}
.page-header .page-header-left {
    margin-bottom: 15px;
}
.page-header .page-header-right {
    margin-bottom: 15px;
    margin-left: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}

.dropdown-item-danger:not(.disabled):hover {
    background-color: #dc3545;
    color: #fff;
}

.dropdown-item-warning:not(.disabled):hover {
    background-color: #ffc107;
    color: #000;
}

.dropdown-item-success:not(.disabled):hover {
    background-color: #198754;
    color: #fff;
}