:root {
    --highlightblue: #4B9DEA;
    --btngroupbg: #989898;
}

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;
}

.mainbutton {
    width: 100%;
}

/* added */
.selected-sort-field {
    color: rgb(66,139,202);
}

.needs-coverage {
    background-color: yellow !important;
}

.table-striped > tbody > tr:nth-of-type(even) > td.needs-coverage {
    background-color: yellow !important;
    --bs-table-accent-bg: yellow !important;
}

.table-striped > tbody > tr:nth-of-type(odd) > td.needs-coverage {
    background-color: yellow !important;
    --bs-table-accent-bg: yellow !important;
}

.comment {
    padding-top: 3px;
    margin-right: 5px;
}

.not-verified {
    background-color: #cc3333;
    color: white;   
}

.icon-to-left {
    border-width: 0px;
    display: block;
}

/* dot spinner */
.hollow-dots-spinner, .hollow-dots-spinner * {
    box-sizing: border-box;
}

.hollow-dots-spinner {
    height: 15px;
    width: calc(30px * 3);
}

    .hollow-dots-spinner .dot {
        width: 15px;
        height: 15px;
        margin: 0 calc(15px / 2);
        border: calc(15px / 5) solid var(--highlightblue);
        border-radius: 50%;
        float: left;
        transform: scale(0);
        animation: hollow-dots-spinner-animation 1000ms ease infinite 0ms;
    }

        .hollow-dots-spinner .dot:nth-child(1) {
            animation-delay: calc(300ms * 1);
        }

        .hollow-dots-spinner .dot:nth-child(2) {
            animation-delay: calc(300ms * 2);
        }

        .hollow-dots-spinner .dot:nth-child(3) {
            animation-delay: calc(300ms * 3);
        }

@keyframes hollow-dots-spinner-animation {
    50% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}
/* end dot spinner*/

.icon-color {
    color: #0d6efd;
}

table.sortable th {
    font-weight: bold;
    position: relative;
}

    table.sortable th button {
        border: none;
        display: inline;
        width: 100%;
        /*
        position: absolute;
        right: 0;
        left: 0;
        top: 0;
        bottom: 0;
            */
        text-align: left;
        outline: none;
        cursor: pointer;
        background: transparent;
        font-weight: bold;
    }
        /*
table.sortable th button {
    position: absolute;
    padding: 4px;
    margin: 1px;
    font-size: 100%;
    font-weight: bold;
    background: transparent;
    border: none;
    display: inline;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    text-align: left;
    outline: none;
    cursor: pointer;
}
    */
        table .sortable th button span {
            position: absolute;
            right: 5px;
        }

    table.sortable th[aria-sort="desc"] span::after {
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        content: "\f0d7";
        color: currentcolor;
        font-size: 100%;
        top: 0;
    }

    table.sortable th[aria-sort="asc"] span::after {
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        content: "\f0d8";
        color: currentcolor;
        font-size: 100%;
        top: 0;
    }

    table.sortable th:not([aria-sort]) button:focus span::after {
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        content: "\f0d7";
        color: currentcolor;
        font-size: 100%;
        top: 0;
    }

   /* .routes-page, .routes-page .form-control {
        font-size: 12px !important;
    }*/

    .routes-page a {
        text-decoration: none;
    }
ul#menu.nav.nav-pills > li > a:hover span, #dataEditMenu li a:hover span {
    color: #8ab9fd;
}
/*body .navbar-inverse .navbar-nav > .active > a, body .navbar-inverse .navbar-nav > .active > a:hover {
    background: #004b8d;
}*/

.errorMsg {
    color: red;
}

.center {
    text-align: center;
}

#dataEditMenu li {
    margin-left: 10px;
}

@media print {
    h4 {
        font-size: 1rem;
    }

    body, button, input, optgroup, select, textarea, .not-verified {
        font-size: .8rem;
        color: #212529;
    }

    .container-fluid {
        padding-right: 0px;
        padding-left: 0px;
    }

    .hideMeInPrint {
        display: none;
    }

    td.toolBarButtons, th.toolBarButtons {
        display: none;
    }

    p.toolBarButtons {
        display: none;
    }
        
    .toolBarButtons > * {
        display: none;
    }

    .col-print-6 {
        width: 50%;
        float: left;
    }

    .col-print-5 {
        width: 42%;
        float: left;
    }

    .col-print-3 {
        width: 25%;
        float: left;
    }

    .table>:not(caption)>*>* {
        padding: 0.5rem 0.5rem;
        background-color: white;
        border-bottom-width: 1px;
        box-shadow: inset 0 0 0 9999px white;
    }
}

.table-striped > tbody > tr:nth-of-type(odd) {
    --bs-table-accent-bg: rgb(229,235,242);
}

.table-striped > tbody > tr:nth-of-type(even) {
    --bs-table-accent-bg: rgb(178,194,217);
}

/*** outline button
.btn-check:active + .btn-outline-primary, .btn-check:checked + .btn-outline-primary, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show, .btn-outline-primary:active {
    color: #fff;
    background-color: var(--btngroupbg);
    border-color: var(--btngroupbg);
}

.btn-outline-primary {
    color: var(--btngroupbg);
    border-color: var(--btngroupbg);
}

    .btn-outline-primary:hover {
        color: #fff;
        background-color: var(--btngroupbg);
        border-color: var(--btngroupbg);
    }

    .btn-check:active + .btn-outline-primary:focus, .btn-check:checked + .btn-outline-primary:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus, .btn-outline-primary:active:focus {
        box-shadow: 0 0 0 0.25rem rgba(60,60,60,.5);
    }

    btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus {
        box-shadow: 0 0 0 0.25rem rgba(60,60,60,.5);
    }
    */