:root {
    --colorDark: darkgoldenrod; /*#588BAE*/
    --colorLight: palegoldenrod; /*#89CFF0*/
}

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: 60px;
}



.table-responsive, table {
    border-radius: 20px 20px 20px 20px;
    background-color: var(--colorLight);
}

table th {
    border: 1px solid #dee2e6;
    color: white;
    background-color: var(--colorDark) !important;
}

table td {
    border: 1px solid #dee2e6;
    background-color: var(--colorLight);
}

h1, h2, h4, h3, h6, dl, label {
    color: var(--colorDark);
}

.bg-header {
    background-color: var(--colorDark) !important;
    color: white !important;
}

    .bg-header a {
        color: white !important;
    }

.dropdown-menu {
    border: 2px solid var(--colorLight);
    border-radius: 5px 5px 5px 5px;
    text-align: right;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.logoutButton {
    position: absolute;
    left: 10%;
}

@media (max-width: 768px) {

    .logoutButton {
        position: initial;
    }
}

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

.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;
}

.form-group {
    margin: 10px;
}

.control-label {
    margin-bottom: 5px;
}
.dropdown-menu a {
    color: var(--colorDark) !important;
    font-weight:bold;
}
ul li{
    text-align:right !important;
}
@media print {
    .no-print, .no-print * {
        display: none !important;
    }
}
@media screen {
    .onlyPrint {
        display: none;
    }
}