﻿:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --background: #ffffff;
    --other-background: #f2f2f2;
    --main: #345782; /* dark blue */
    --light-main: #B3CBE3; /* light blue */
    --dark-main: #0A1D33; /* dark blue */
    --attention-highlight: #C21533; /* raspberry */
    --other-row: #f7f7f7;
    scroll-behavior: smooth;
}



.myradio {
    display: inline-flex;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 0 2px rgba(0,0,0,0.25);
    border: 1px solid var(--dark-main);
    height: 32px;
}

.rd input {
    display: none;
}

.rd label {
    padding: 5px 20px 5px 20px;
    font-size: 14px;
    font-weight: bold;
    color: var(--main);
    background: var(--background);
    cursor: pointer;
    transition: background 0.1s;
}

    .rd label:not(:last-of-type) {
        border-right: 1px solid var(--dark-main);
    }

.rd input:checked + label {
    background: var(--light-main);
}

.myradioe {
    display: inline-flex;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 0 2px rgba(0,0,0,0.25);
    border: 1px solid var(--dark-main);
}

.rde input {
    display: none;
}

.rde label {
    padding: 5px 10px 5px 10px;
    font-size: 12px;
    font-weight: bold;
    color: var(--main);
    background: var(--background);
    cursor: pointer;
    transition: background 0.1s;
}

    .rde label:not(:last-of-type) {
        border-right: 1px solid var(--dark-main);
    }

.rde input:checked + label {
    background: var(--light-main);
}

.myradioefix {
    display: inline-flex;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 0 2px rgba(0,0,0,0.25);
    border: 1px solid var(--dark-main);
}

.rdefix input {
    display: none;
}

    .rdefix input:disabled {
        display: none;
    }

.rdefix label {
    width: 75px;
    padding: 5px 10px 5px 10px;
    font-size: 12px;
    font-weight: bold;
    color: var(--main);
    background: var(--background);
    cursor: pointer;
    transition: background 0.1s;
}

    .rdefix label:disabled {
        width: 80px;
        padding: 5px 10px 5px 10px;
        font-size: 12px;
        font-weight: bold;
        color: transparent;
        background: var(--background);
        cursor: pointer;
        transition: background 0.1s;
    }


    .rdefix label:not(:last-of-type) {
        border-right: 1px solid var(--dark-main);
    }

    .rdefix label:disabled:not(:last-of-type) {
        border-right: 1px solid var(--dark-main);
    }

.rdefix input:checked + label {
    background: var(--light-main);
}


.myradioefix2 {
    display: inline-flex;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 0 2px rgba(0,0,0,0.25);
    border: 1px solid var(--dark-main);
}

.rdefix2 input {
    display: none;
}

    .rdefix2 input:disabled {
        display: none;
    }

.rdefix2 label {
    width: 150px;
    height: 150px;
    padding: 5px 10px 5px 10px;
    font-size: 12px;
    font-weight: bold;
    color: var(--main);
    background: var(--background);
    cursor: pointer;
    transition: background 0.1s;
}

    .rdefix2 label:disabled {
        width: 150px;
        height: 150px;
        padding: 5px 10px 5px 10px;
        font-size: 12px;
        font-weight: bold;
        color: transparent;
        background: var(--background);
        cursor: pointer;
        transition: background 0.1s;
    }


    .rdefix2 label:not(:last-of-type) {
        border-right: 1px solid var(--dark-main);
    }

    .rdefix2 label:disabled:not(:last-of-type) {
        border-right: 1px solid var(--dark-main);
    }

.rdefix2 input:checked + label {
    background: var(--light-main);
}




.myradio2 {
    display: block;
    border-radius: 5px;
    box-shadow: 0 0 2px rgba(0,0,0,0.25);
    border: 1px solid var(--dark-main);
    width: 350px;
}

.rd2 input {
    display: none;
}

.rd2 label {
    margin-top: 0px;
    height: 28px;
    width: 348px;
    padding: 5px 10px 0px 10px;
    font-size: 12px;
    font-weight: bold;
    color: var(--main);
    background: var(--background);
    cursor: pointer;
    transition: background 0.1s;
    display: inline-block;
}

    .rd2 label:not(:last-of-type) {
        border-bottom: 1px solid var(--dark-main);
    }

.rd2 input:checked + label {
    background: var(--light-main);
}

.myradio3 {
    display: block;
    border-radius: 5px;
    box-shadow: 0 0 2px rgba(0,0,0,0.25);
    border: 1px solid var(--dark-main);
    width: 122px;
}


.rd3 input {
    display: none;
}

.rd3 label {
    margin-top: 0px;
    height: 28px;
    width: 120px;
    padding: 5px 10px 0px 10px;
    font-size: 12px;
    font-weight: bold;
    color: var(--main);
    background: var(--background);
    cursor: pointer;
    transition: background 0.1s;
    display: inline-block;
}

    .rd3 label:not(:last-of-type) {
        border-bottom: 1px solid var(--dark-main);
    }

.rd3 input:checked + label {
    background: var(--light-main);
}

.myradio4 {
    display: block;
    border-radius: 5px;
    box-shadow: 0 0 2px rgba(0,0,0,0.25);
    border: 1px solid var(--dark-main);
    width: 200px;
}

.rd4 input {
    display: none;
}

.rd4 label {
    margin-top: 0px;
    height: 28px;
    width: 198px;
    padding: 5px 10px 0px 10px;
    font-size: 12px;
    font-weight: bold;
    color: var(--main);
    background: var(--background);
    cursor: pointer;
    transition: background 0.1s;
    display: inline-block;
}

    .rd4 label:not(:last-of-type) {
        border-bottom: 1px solid var(--dark-main);
    }

.rd4 input:checked + label {
    background: var(--light-main);
}

.myradio5 {
    display: block;
    border-radius: 5px;
    box-shadow: 0 0 2px rgba(0,0,0,0.25);
    border: 1px solid var(--dark-main);
    width: 410px;
}

.rd5 input {
    display: none;
}

.rd5 label {
    margin-top: 0px;
    height: 28px;
    width: 408px;
    padding: 5px 10px 0px 10px;
    font-size: 12px;
    font-weight: bold;
    color: var(--main);
    background: var(--background);
    cursor: pointer;
    transition: background 0.1s;
    display: inline-block;
}

    .rd5 label:not(:last-of-type) {
        border-bottom: 1px solid var(--dark-main);
    }

.rd5 input:checked + label {
    background: var(--light-main);
}




body {
    font-family: Open Sans, sans-serif;
}

.mrg {
    padding-left: 20px;
}

.backs {
    background-color: var(--background);
}

.otherbacks {
    background-color: var(--other-background);
}

.trashbacks {
    background-color: #FAF0F2;
}

.fontmain {
    color: var(--attention-highlight);
    font-size: 170%;
    font-weight: bold;
}

.fontlight {
    color: var(--light-main);
}

.under {
    text-decoration: underline;
    background-color: transparent;
    font-size: 100%;
    color: var(--main);
}

.cntr {
    padding: 10px 5px 10px 5px;
}

.upper {
    background-color: transparent;
    font-size: 100%;
    color: var(--main);
}

#tUserID:focus {
    background-color: var(--background);
}

#tUserPass:focus {
    background-color: var(--background);
}

#DropDownList1:focus {
    background-color: var(--background);
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--main);
    opacity: 1; /* Firefox */
}

.box {
    width: 80%;
    height: 90%;
    margin: 1% auto 1%;
    background-color: white;
    text-align: center;
    color: var(--main);
    border-radius: 1%;
    box-shadow: 10px 48px 80px -32px rgba(0,0,0,0.3);
}

.box1 {
    width: 90%;
    height: 90%;
    margin-top: 2%;
    border-radius: 5px;
    padding-top: 2%;
    box-shadow: 10px 48px 80px -32px rgba(0,0,0,0.3);
    background-color: white;
}


.button {
    background-color: var(--main);
    color: #ffffff;
    border-color: var(--dark-main);
    border-radius: 5px;
    border-width: 1px;
    font-size: 12px;
    font-weight: bold;
    width: 100px;
    height: 36px;
    font-weight: bold;
}

    .button:hover {
        background-color: var(--light-main);
        color: var(--dark-main);
        border-color: var(--dark-main);
        border-width: 1px;
        border-radius: 5px;
        font-size: 12px;
        font-weight: bold;
        width: 100px;
        height: 36px;
    }

    .button:disabled {
        background-color: #e0e0eb;
        color: #b3b3cc;
        border-color: #b3b3cc;
        border-width: 1px;
        border-radius: 5px;
        font-size: 12px;
        font-weight: bold;
        width: 100px;
        height: 36px;
    }

.otherbutton {
    background-color: var(--background);
    color: var(--main);
    border-color: var(--main);
    border-width: 1px;
    border-radius: 5px;
    font-size: 12px;
    height: 36px;
    width: 140px;
    font-weight: bold;
}

    .otherbutton:hover {
        background-color: var(--attention-highlight);
        color: var(--dark-main);
        border-color: var(--dark-main);
        border-width: 1px;
        border-radius: 5px;
        font-size: 12px;
        font-weight: bold;
    }

    .otherbutton:disabled {
        background-color: #e0e0eb;
        color: #b3b3cc;
        border-color: #b3b3cc;
    }

.otherbutton2 {
    background-color: var(--attention-highlight);
    color: white;
    border-color: var(--main);
    border-width: 1px;
    border-radius: 5px;
    font-size: 12px;
    height: 36px;
    width: 140px;
    font-weight: bold;
}

    .otherbutton2:hover {
        background-color: white;
        color: var(--attention-highlight);
        border-color: var(--dark-main);
        border-width: 1px;
        border-radius: 5px;
        font-size: 12px;
        font-weight: bold;
    }

    .otherbutton2:disabled {
        background-color: #e0e0eb;
        color: #b3b3cc;
        border-color: #b3b3cc;
    }

.button2 {
    background-color: var(--light-main);
    color: var(--dark-main);
    border-color: var(--dark-main);
    border-width: 1px;
    border-radius: 5px;
    font-size: 12px;
    height: 36px;
    width: 140px;
    font-weight: bold;
}

    .button2:disabled {
        background-color: #e0e0eb;
        color: #b3b3cc;
        border-color: #b3b3cc;
    }

.drop {
    color: var(--dark-main);
    font-size: 14px;
    padding: 0px 5px 0px 5px;
    border-radius: 2px;
    border-color: var(--light-main);
    background-color: transparent;
    font-weight: bold;
    margin-bottom: 0px;
    margin-left: 0px;
    height: 32px;
}

.dropdisabled {
    color: var(--dark-main);
    font-size: 14px;
    padding: 0px 0px;
    border-radius: 0px;
    border-color: transparent;
    background-color: transparent;
    font-weight: normal;
    margin-bottom: 0px;
    margin-left: 0px;
}

.txtbox {
    color: var(--dark-main);
    font-size: 14px;
    padding: 0px 5px 0px 5px;
    border: 1px solid var(--dark-main);
    border-radius: 5px;
    background-color: #FFFFFF;
    font-weight: normal;
    width: 120px;
    margin-bottom: 0px;
    margin-left: 0px;
    height: 32px;
}

.txtlabel {
    color: var(--dark-main);
    font-size: 14px;
}

.txtlabelsmall {
    color: var(--main);
    font-size: 12px;
}

.txtattention {
    color: var(--attention-highlight);
    font-size: 14px;
    font-weight: bold;
}

.txtattentionsmall {
    color: var(--attention-highlight);
    font-size: 12px;
    font-weight: bold;
}

.txtinfo {
    color: var(--main);
    font-weight: bold;
    font-size: 14px;
}

.txtinfo12 {
    color: var(--main);
    font-weight: bold;
    font-size: 12px;
}

.txtinfosmall {
    color: var(--main);
    font-size: 10px;
    font-style: italic;
}

.fancyinfo {
    color: var(--light-main);
    font-weight: bold;
    font-size: 14px;
}

.fancyinfosmall {
    color: var(--light-main);
    font-weight: bold;
    font-size: 12px;
}

.badge {
    background-color: #00cccc;
    color: white;
    padding: 4px 8px;
    text-align: center;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
}

.pagetitle {
    text-align: center;
    font-size: 18px;
    color: var(--light-main);
    font-weight: bold;
}

.centertitle {
    text-align: center;
    font-size: 12px;
    color: var(--main);
    font-weight: bold;
}

.tabletitle {
    font-size: 14px;
    color: var(--main);
    font-weight: bold;
}

.tabletitle2 {
    font-size: 14px;
    color: #404040;
    font-weight: bold;
}

.headerrow {
    width: 665px;
    height: 28px;
    text-align: center;
    font-size: 14px;
    color: #404040;
    border: 1px solid var(--main);
}

.chk input {
    width: 15px;
    height: 15px;
    color: var(--main);
}



.chk2 input {
    width: 13px;
    height: 13px;
    color: var(--main);
}

input[type='checkbox'] {
    accent-color: var(--light-main);
}



.bulletlinks {
    color: #404040;
    padding-left: 25px;
    line-height: 30px;
}

a:link {
    color: #404040;
    text-decoration-line: underline;
    font-size: 12px;
}

a:hover {
    color: var(--main);
    text-decoration: underline;
    font-size: 12px;
}

.headerrow {
    text-align: center;
    font-size: 14px;
    color: var(--main);
    border: 1px solid var(--main);
}

.bord {
    border-style: solid;
    border-width: 1px;
    border-color: var(--main);
    border-collapse: collapse;
}

.follbox {
    color: #404040;
    font-size: 12px;
    border: 1px solid #707070;
    border-radius: 1px;
    background-color: #FFFFFF;
    font-weight: normal;
    width: 50px;
}

.grid-container {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-gap: 20px;
}









/* toggle switch */
.switch {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 26px;
}

    .switch input {
        opacity: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--background);
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 29px;
        width: 31px;
        left: -1px;
        bottom: -3px;
        background-color: var(--main);
        -webkit-transition: .4s;
        transition: .4s;
        text-align: center;
    }

input:checked + .slider {
    background-color: var(--light-main);
}

input:focus + .slider {
    box-shadow: 0 0 1px #ccc;
}

input:checked + .slider:before {
    -webkit-transform: translateX(46px);
    -ms-transform: translateX(46px);
    transform: translateX(37px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 3px;
    border: 1px solid var(--dark-main);
    text-align: center;
    color: var(--dark-main);
    font-weight: bold;
    padding-top: 7px;
    text-align: center;
    font-size: 12px;
}

    .slider.round:before {
        border-radius: 3px; /*15%*/
        border: 1px solid var(--dark-main);
    }


/* toggle queries & lockers */

.toggle {
    --width: 28px;
    --height: 20px;
    position: relative;
    display: inline-block;
    width: var(--width);
    height: var(--height);
    cursor: pointer;
    margin-left: 10px;
}

    .toggle input {
        display: none;
    }

    .toggle .labels {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        font-size: 16px;
        font-family: sans-serif;
        transition: all 0.4s ease-in-out;
        overflow: hidden;
    }

        .toggle .labels::after {
            content: attr(data-off);
            position: absolute;
            display: flex;
            justify-content: center;
            align-items: center;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            color: var(--main);
            opacity: 0.9;
            background-color: transparent;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
            transition: all 0.2s ease-in-out;
        }

        .toggle .labels::before {
            content: attr(data-on);
            position: absolute;
            display: flex;
            justify-content: center;
            align-items: center;
            top: 0;
            left: calc(var(--width) * -1);
            height: 100%;
            width: 100%;
            color: var(--main);
            opacity: 0.9;
            background-color: transparent;
            text-align: center;
            text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.1);
            transition: all 0.2s ease-in-out;
        }

    .toggle input:checked ~ .labels::after {
        transform: translateX(var(--width));
    }

    .toggle input:checked ~ .labels::before {
        transform: translateX(var(--width));
    }





/* scroll */
.stt {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    width: 3rem;
    height: 3rem;
    border-radius: 20%;
    border: 2px solid var(--main);
    background: var(--main) url("./files/toparrow_white.png") center no-repeat;
    box-shadow: 0 0.25rem 0.5rem 0 gray;
    opacity: 0.7;
}

@media screen and (max-width:300px) {
    #container {
        width: 280px;
        height: auto;
        background-size: 100%;
    }

    #passes {
        float: none;
        width: auto;
        margin: 0;
    }

    #content {
        float: none;
        width: auto;
        margin: 0;
    }
}




.grid-container1 {
    display: grid;
    grid-template-columns: min-content min-content min-content;
    grid-gap: 20px;
}

.item1 {
    float: left;
    padding: 15px;
}



