/*Sitewide Styles*/
/* Fonts */
body {
    font-family: Arial, Helvetica, sans-serif;
}
h1 {
    font-size: 1.75em;
    font-weight: 700;
}
h2 {
    font-size: 1.50em;
    font-weight:bold;
}
h3 {
    font-size: 1.25em;
    font-weight: bold;
}
h4 {
    font-size: 1em;
    font-weight: bold;
}
h5 {
    font-size: 0.75em;
}
h6 {
    font-size: 0.625em;
}
/* Helpers */
.inline {
    display: inline;
}

.right {
    float: right;
}

.coming-soon {
    font-weight: bold;
}

.alert-note {
    float: left;
    font-weight: bold;
    text-align: left;
    color: #069ee4;
    margin-bottom: 20px;
}

/* Pop-out Custom Modals */
.pop-outer {
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.pop-inner {
    background-color: #FFF;
    width: 350px;
    padding: 15px;
    margin: 15% auto;
    border-radius: 4px;
    overflow: hidden;
}

    .pop-inner .copy-wrapper {
        margin-left: 105px;
    }

.pop-ok {
    margin-left: 40%;
    margin-top: 0px;
}

.pop-title {
    font-weight: bold;
    font-size: 1.5rem;
    display: inline-block;
    height: 30px;
    line-height: 30px;
    margin-bottom: 0px;
    position: relative;
    bottom: 9px;
    padding-left: 10px;
}

.pop-icon {
    background-repeat: no-repeat;
    background-position: bottom left;
    width: 35px;
    height: 35px;
    background-size: contain;
    display: inline-block;
}

.pop-warning {
    background-image: url("../images/warning.png");
}

.pop-copy {
    background-image: url("../images/bootstrapicons/copy.png");
}

.pop-message {
    padding-left: 20px;
    padding-right: 20px;
}

#pop-course-title {
    font-weight: bold;
}

.tooltip-wrapper {
    display: inline-block;
}

    .tooltip-wrapper .primary-btn[disabled] {
        pointer-events: none;
    }

    .tooltip-wrapper.disabled {
        cursor: not-allowed;
    }

/* Login Page */
.login-page div {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

    .login-page div input {
        width: 60%;
        margin: auto;
    }

    .login-page div a {
        width: 100%;
        margin: auto;
        text-align: center;
    }

/* Banner */
header {
    width: 100%;
    margin: 0px;
    position: absolute;
    z-index: 5;
}

#banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: white;
}

    #banner .logo {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

        #banner .logo img {
            width: auto;
            height: 75px;
            display: block;
            margin-right: 15px;
        }

        #banner .logo #banner-text {
            -ms-flex-item-align: end;
            align-self: flex-end;
        }

            #banner .logo #banner-text h2 {
                text-transform: uppercase;
                font-size: 18px;
                margin-bottom: 5px;
                font-weight: normal;
            }

            #banner .logo #banner-text h1 {
                font-size: 30px;
                margin-top: 5px;
                margin-bottom: 5px;
                font-weight: normal;
                color: #89898f;
            }

    #banner #profile-picture {
        border-radius: 50%;
        width: 100px;
    }

    #banner .account {
        margin-right: 1%;
    }

.dropdown {
    width: 20%;
}

    .dropdown .dropdown-content li:not(:last-child) {
        border-bottom: lightgray solid 1px;
    }

#account-module {
    width: 100%;
    font-weight: bold;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #282894;
}

    #account-module .account-module-username {
        font-family: Arial, Helvetica, sans-serif;
    }

.chevron-down {
    border-style: solid;
    border-width: 0.25em 0.25em 0 0;
    content: '';
    display: inline-block;
    height: 0.45em;
    left: 0.15em;
    position: relative;
    vertical-align: top;
    width: 0.45em;
    top: 0;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    color: #89898f;
    box-sizing: content-box;
}

#background-banner {
    background: lightgrey;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
}

#transparent {
    width: 100%;
    height: 15px;
    background-color: white;
    opacity: .5;
}

#nav-bar {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-transform: uppercase;
    background: #282894;
    font-size: 20px;
    color: white;
    text-align: center;
    line-height: 55px;
}

    #nav-bar > a {
        color: white;
        width: 14.29%;
        height: 55px;
        border-right: #069ee4 solid 2px;
        text-decoration: none;
        font-size: 20px;
        font-family: Arial, Helvetica, sans-serif;
    }

        #nav-bar > a:hover, #nav-bar > div:hover {
            background: -webkit-gradient(linear, left top, left bottom, from(#069ee4), to(linear-gradient(#069ee4, #085b85)));
            background: linear-gradient(#069ee4, linear-gradient(#069ee4, #085b85));
        }

    #nav-bar div.dropdown {
        cursor: default;
        font-family: Arial, Helvetica, sans-serif;
    }

.nav-drop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.drop-nav-button {
    width: 100%;
}

#current-page-banner {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    #current-page-banner h1 {
        color: #282894;
        text-align: left;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-left: 10%;
        margin-top: 50px;
        margin-bottom: 0px;
        padding-bottom: 5px;
        border-bottom: #069ee4 solid 10px;
        position: absolute;
        left: 0px;
        bottom: 0px;
    }

.current-page-description {
    margin-top: 40px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-size: 16pt;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

footer {
    font-family: Arial, Helvetica, sans-serif;
    background-image: url("../images/footerbanner.png");
    color: grey;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 30px;
    padding-bottom: 30px;
    -ms-flex-item-align: end;
    align-self: flex-end;
    width: 100%;
}

#footer-links {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-weight: bold;
    color: white;
}

    #footer-links a {
        margin-right: 10px;
        margin-left: 10px;
        color: white;
        text-decoration: none;
    }

#copyright {
    margin-top: 15px;
    color: white;
}

/* Colors */
.primary {
    color: #282894;
}

.primary-gradient {
    background: -webkit-gradient(linear, left top, left bottom, from(#282894), to(#282894));
    background: linear-gradient(#282894, #282894);
}

.secondary {
    color: #069ee4;
}

.secondary-gradient {
    background: -webkit-gradient(linear, left top, left bottom, from(#069ee4), to(#085b85));
    background: linear-gradient(#069ee4, #085b85);
}

.tertiary {
    color: var(--tertiary-color);
}

/* Links */
a {
    text-decoration: none;
}

/* Drop down functionality */
.dropdown {
    float: left;
    overflow: visible;
}

    .dropdown .dropbtn {
        font-family: inherit;
        margin: 0;
    }

.dropdown-content {
    max-height: 0;
    -webkit-transition: max-height 0.15s ease-out;
    transition: max-height 0.15s ease-out;
    overflow: hidden;
    position: absolute;
    background-color: white;
    min-width: 250px;
    -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    margin: 0px;
    padding: 0px;
    text-align: left;
    background-color: whitesmoke;
}

    .dropdown-content li {
        list-style-type: none;
        border-bottom: var(--tertiary-color) solid 2px;
        padding: 10px 0px 10px 20px;
        height: 20px;
        line-height: 12pt;
        box-sizing: content-box;
    }

    .dropdown-content a {
        color: #069ee4;
        font-weight: bold;
        text-transform: none;
        text-decoration: none;
        font-size: 12pt;
    }

        .dropdown-content a:hover {
            color: black;
        }

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    max-height: 500px;
    -webkit-transition: max-height .25s ease-in;
    transition: max-height .25s ease-in;
}

#nav-bar div.menu-dropdown {
    width: 14.29%;
    border-right: #069ee4 solid 2px;
}

/* Buttons */
.primary-btn, .secondary-btn, .danger-btn {
    padding: 10px 10px 10px 10px;
    border: lightgray solid 1px;
    border-radius: 8px;
    cursor: pointer;
    background-color: #FFF;
    font-size: 14px;
    font-weight: normal;
    line-height: 18px !important;
    margin-bottom:3px;
}

.primary-btn {
    background: -webkit-gradient(linear, left top, left bottom, from(#069ee4), to(#085b85));
    background: linear-gradient(#069ee4, #085b85);
    border-color: linear-gradient(#085b85, #069ee4);
    color: white;
}

    .primary-btn:disabled, .primary-btn:disabled:hover {
        background: none;
        background-color: grey;
        color: lightgray;
        cursor: not-allowed;
    }

.secondary-btn {
    background: -webkit-gradient(linear, left top, left bottom, from(white), to(#89898f));
    background: linear-gradient(white, #89898f);
}

    .primary-btn:hover, .secondary-btn:hover, .danger-btn {
        background: -webkit-gradient(linear, left top, left bottom, from(#3a3838), to(black));
        background: linear-gradient(#3a3838, black);
        color: white;
    }

.danger-btn {
    background: -webkit-gradient(linear, left top, left bottom, from(#069ee4), to(#085b85));
    background: linear-gradient(#D30000, #FF0000);
    color: white;
}
.small-btn {
    width:60px;
}
.medium-btn {
    width: 80px;
}
.large-btn {
    width: 125px;
}
.electionIndex-btn {
    width: 100px;
}
.control-txtbox {
    width:25%;
}
/*tooltips*/
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
    /* If you want dots under the hoverable text */
}

    /* Tooltip text */
    .tooltip .tooltiptext {
        visibility: hidden;
        width: 175px;
        background-color: #282894;
        color: #fff;
        text-align: center;
        padding: 5px 0;
        border-radius: 6px;
        font-size: 12pt;
        /* Position the tooltip text - see examples below! */
        position: absolute;
        z-index: 1;
    }

    /* Show the tooltip text when you mouse over the tooltip container */
    .tooltip:hover .tooltiptext {
        visibility: visible;
    }

/*Added this here and renamed because it looks like Bootstrap also has a tooltip and this was not working correctly because of it.*/
/*tooltips*/
.tooltip2 {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
    /* If you want dots under the hoverable text */
}

    /* Tooltip text */
    .tooltip2 .tooltiptext2 {
        visibility: hidden;
        width: 175px;
        background-color: #282894;
        color: #fff;
        text-align: center;
        padding: 5px 0;
        border-radius: 6px;
        font-size: 12pt;
        /* Position the tooltip text - see examples below! */
        position: absolute;
        z-index: 1;
    }

    /* Show the tooltip text when you mouse over the tooltip container */
    .tooltip2:hover .tooltiptext2 {
        visibility: visible;
    }

/* Forms  */
input {
    border-radius: 6px;
}

select {
    border-radius: 6px;
}

option {
    padding-right: 20px;
}

label {
    color: #282894;
}

/* Checkbox */
.checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Table */
#grid > .grid-header {
    margin-top: 25px;
    margin-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

table {
    font-family: Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 100%;
    border: 1px solid grey;
}

td, th {
    border-right: 1px solid grey;
    text-align: left !important;
    padding: 8px !important;
}

th {
    background-color: #282894;
    color: white;
    font-weight: normal;
}

tr:nth-child(even), table.dataTable tbody tr:nth-child(even) {
    background-color: #dddddd;
}

tr:nth-child(odd) {
    background-color: white;
}

.warning {
    text-align: center;
    font-weight: bold;
    color: red;
}

/* index technicals */
html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    position: relative;
}

.overarching-container {
    min-height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.container.body-content {
    padding-bottom: 50px;
    width: 90%;
    padding-top: 280px;
}

body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0px;
}

header {
    width: 100%;
}

body-content {
    width: 100%;
}

footer {
    width: 100%;
}

#main-content {
    width: 100%;
}

object {
    width: 100%;
    height: 275px;
}

.table-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-top: 10px;
}

.two-list-selector {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.selected {
    background-color: #282894;
    color: white;
}

.unselected {
    background-color: white;
    color: black;
}

.two-list-selector .label-row {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.list-a-div, .list-b-div {
    width: 37%;
}

.list-a, .list-b {
    border: 1px solid grey;
    border-radius: 6px;
    height: 120px;
    overflow-y: scroll;
}

    .list-a h5, .list-b h5 {
        margin: 5px 0 5px 5px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

.two-list-selector .buttons {
    width: 20%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    -ms-flex-line-pack: end;
    align-content: flex-end;
}

button:disabled {
    opacity: .5;
}

.buttons button {
    width: 70%;
    float: bottom;
}

.tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    margin-bottom: 0px;
    padding-left: 0px;
}

    .tabs > li {
        background: #282894;
        padding-right: 25px;
        padding-left: 25px;
        padding-top: 10px;
        padding-bottom: 10px;
        border: solid 1px #000000;
        border-top-right-radius: 4px;
        border-top-left-radius: 4px;
    }

        .tabs > li.active {
            background: -webkit-gradient(linear, left top, left bottom, from(#069ee4), to(#085b85));
            background: linear-gradient(#069ee4, #085b85);
        }

        .tabs > li > a {
            color: white;
        }

    .tabs ~ .body {
        border: solid 1px black;
        padding: 15px 15px 15px 15px;
    }
    .tabs ~ .body .dt-container .dt-paging {
        margin-top: 15px;
    }

    .login-page {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

.password-container {
    width: 800px;
    position: relative;
    background-color: aliceblue;
    text-align: right;
    padding: 15px 600px 15px 0px;
}

    .password-container .password-block {
        margin: 5px auto;
    }

.login-email {
    margin-right: 10px;
}

/* Slider-checkbox (used on report options) */

.switch {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 24px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 20px;
        width: 20px;
        left: 8px;
        bottom: 2px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #069ee4;
}

input:focus + .slider {
    box-shadow: 0 0 1px #069ee4;
}

input:checked + .slider:before {
    -webkit-transform: translateX(46px);
    -ms-transform: translateX(46px);
    transform: translateX(46px);
}

.slider.round {
    border-radius: 24px;
}

    .slider.round:before {
        border-radius: 50%;
    }

.informationalMsgModal {
    background-color: #D4EDDA;
    color: #367044;
    height: 35px;
    margin: 0 -7px 10px;
    padding-top: 10px;
    padding-left: 5px;
}

    .informationalMsgModal a {
        color: #367044;
        text-decoration: underline;
    }

.ErrorMsgModal {
    color: darkred;
    background-color: lightcoral;
    height: 45px;
    border-radius: 0;
}

/*Added here because the form-control style is used all throughout this project but bootstrap was never included so the styles aren't applied.
Only applied to the reports for now, when I applied to the entire project it caused issues with spacing and controls overlapped.
*/
.report-options .form-control,
.import-options .form-control,
#location-form .form-control,
#edit-course-wrapper .form-control,
#course-section-container .form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    background-color: #fff;
    background-image: none;
    border: 1px solid #A9A9A9;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

/* Reports */
#report-wrapper .report-header {
    width: 100%;
}

#report-wrapper #report-banner {
    background-color: #D4EDDA;
    color: #367044;
    width: 100%;
    height: 30px;
    padding-top: 5px;
    position:relative;
    top:-40px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px;
}

    #report-wrapper #report-banner a {
        color: #367044;
        text-decoration: underline;
    }

#report-wrapper .report-divider {
    border: 2px solid #777;
    opacity:unset;
    margin:9px 0;
}

#report-wrapper .report-options {
    display: inline-flex;
    flex-wrap: wrap;
    margin: 0 0 30px 0;
    width: 100%;
}

    #report-wrapper .report-options .control-label {
        color: #000;
        font-size: 1.2rem;
        display: block;
    }

    #report-wrapper .report-options .protected {
        padding: 5px;
        margin-top: 4px;
        font-size: 1.3rem;
    }

    #report-wrapper .report-options .report-option {
        margin: 20px 40px 20px 0;
    }

    #report-wrapper .report-options .report-option .dd {
        width: 350px;
    }

    #report-wrapper .report-options .break {
        flex-basis: 100%;
        height: 0;
    }

    #report-wrapper .report-options .break {
        flex-basis: 100%;
        height: 0;
    }

    #report-wrapper .report-options .break {
        flex-basis: 100%;
        height: 0;
    }

#report-wrapper .report-return {
    float: right;
}

#report-wrapper .report-return-btn {
    right: 100px;
    width: 170px;
}

#report-wrapper .report-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding-bottom: 20px;
}

#report-wrapper .report-header .report-title,
#report-wrapper .report-title {
    font-size: 1.5rem;
    font-weight: bold;
}

#report-wrapper .sub-title {
    font-size: 1.3rem;
    font-weight: bold;
    padding-bottom: 5px;
    padding-top: 15px;
}

#report-wrapper .report-options .action-buttons {
    width: 100%;
    text-align: right;
    clear: both;
}

    #report-wrapper .report-options .action-buttons .btn {
        margin: 5px;
        width: 80px;
    }

#report-wrapper .report-options .clear-btn,
#report-wrapper #csv-btn,
#report-wrapper #refresh-btn {
    padding: 10px 20px 10px 20px;
    border: lightgray solid 1px;
    border-radius: 8px;
    cursor: pointer;
    background-color: #FFF;
}

#report-wrapper .report-header .report-title .report-details {
    font-size: 1.2rem;
    font-weight: normal;
}

#report-wrapper .report-header .report-title .report-date {
    font-size: 1rem;
    font-weight: normal;
}

#report-wrapper .dataTables_scrollHead,
#report-wrapper .dataTables_scrollBody {
    overflow: inherit !important;
    margin: auto;
}

#report-wrapper .dataTables_scrollBody {
    border: none;
}

    #report-wrapper .dataTables_scrollBody .dataTable {
        border-bottom: solid 1px black;
    }

#report-wrapper .dataTable,
#report-wrapper .dataTables_scrollHeadInner {
    margin: auto;
}

#report-wrapper .dataTables_filter {
    padding-bottom: 10px;
}

/* Take Attendance Page */
#note-popup {
    position: absolute;
    z-index: 10001;
    width: 210px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 3px 3px 5px grey;
    width: 99%;
    height: 100%;
    padding-left: 5px;
    margin-top:10px;
}

    #note-popup .cancel-btn {
        float: right;
        margin-right: 5px;
        margin-top: 40px;
    }

    #note-popup .save-btn {
        float: right;
        margin-right: 20px;
        margin-top: 40px;
    }

#w2ui-popup .w2ui-popup-body {
    background-color: white !important;
}

#attendance-page .select-all-options {
    margin-right: 50px;
}

#attendance-page #class-enrollment-grid_filter {
    float: left;
    text-align: right;
}

#attendance-page .dataTables_scrollBody {
    overflow: inherit !important;
}

#attendance-page div.dt-buttons {
    float: right;
}

#attendance-page .active {
    background: linear-gradient(#069EE4, #085B85);
    color: white;
    padding: 2px 8px 2px 8px;
    border: lightgray solid 1px;
    border-radius: 8px;
}

#attendance-page .btn-group {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

    #attendance-page .btn-group > .btn {
        position: relative;
        float: left;
        border-radius: 0;
        padding: 2px 8px 2px 8px;
        background-color: #fff;
        border-color: #ccc;
        border-width: 1px;
    }

        #attendance-page .btn-group > .btn:first-child {
            margin-left: 0;
            border-top-left-radius: 3px;
            border-bottom-left-radius: 3px;
        }

        #attendance-page .btn-group > .btn:last-child {
            margin-right: 0;
            border-top-right-radius: 3px;
            border-bottom-right-radius: 3px;
        }

    #attendance-page .btn-group > .lrg {
        padding: 10px;
    }

        #attendance-page .btn-group > .lrg:hover {
            background: linear-gradient(#3a3838, black);
        }

/* Imports */
#import-wrapper .import-header {
    width: 100%;
    margin: 0 0 30px 0;
}

#import-wrapper .import-divider {
    border: 2px solid #777;
    opacity: unset;
    margin: 9px 0;
}

#import-wrapper .import-options {
    display: inline-flex;
    flex-wrap: wrap;
    margin: 0 0 10px 0;
    width: 100%;
}

    #import-wrapper .import-options .control-label {
        color: #000;
        font-size: 1.2rem;
        display: block;
    }

    #import-wrapper .import-options .break {
        flex-basis: 100%;
        height: 0;
    }

#import-wrapper .import-links {
    display: none;
}

#import-wrapper .import-links,
#import-wrapper .import-msg {
    float: left;
    font-weight: bold;
    text-align: left;
    width: 100%;
}

#import-wrapper .import-links {
    margin-bottom: 30px;
    margin-top: -30px;
}

#import-wrapper .import-msg {
    margin-bottom: 5px;
}

#import-wrapper .import-links a {
        color: #069ee4 !important;
        margin-bottom: 5px;
        display: block;
        width: 150px;
        text-decoration: underline;
    }

#import-wrapper #import-file-msg {
    font-size: 12px;
}

#import-wrapper .import-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding-bottom: 20px;
}

#import-wrapper .import-header .import-title,
#import-wrapper .import-title {
    font-size: 1.5rem;
    font-weight: bold;
}

#import-wrapper .sub-title {
    padding-bottom: 10px;
    padding-top: 15px;
}

#import-wrapper #refresh-btn {
    padding: 10px 20px 10px 20px;
    border: lightgray solid 1px;
    border-radius: 8px;
    cursor: pointer;
    background-color: #FFF;
}

#import-wrapper #import-filename {
    padding-top: 10px;
    padding-left: 10px;
}

#import-wrapper .import-msg {
    color: #069ee4;
}

/* Locations */
#expandable-wrapper {
    overflow: hidden;
    width: 800px;
    transition: max-height 300ms;
    max-height: 0; /* hidden by default */
}

    #expandable-wrapper.open {
        min-height: 550px;
        margin-top: 20px;
        margin-bottom: 20px;
        overflow: visible;
    }

    #expandable-wrapper tr:nth-child(odd),
    #expandable-wrapper tr:nth-child(even) {
        background-color: inherit;
    }

#location-form {
    box-sizing: border-box;
    padding: 0.5rem;
    border-radius: 1rem;
    background-color: hsl(0, 0%, 100%);
    border: 4px solid hsl(0, 0%, 90%);
    display: grid;
}

/*    #location-form .form-control {
        flex: 1 1 auto;
        display: block;
        margin-bottom: 10px;
        padding: 4px;
    }*/

    #location-form .form-group {
        display: flex;
        flex-direction: row;
        gap: 24px;
    }

        #location-form .form-group .btn {
            margin-top: 10px;
            height: 36px;
        }

    #location-form .control-label {
        color: #000;
        font-size: 1.2rem;
        display: block;
        margin-bottom: 5px;
    }

#location-wrapper #customFilters {
    display: inline;
}

#location-wrapper .dataTables_scrollBody {
    overflow: inherit !important;
}

#location-wrapper #grid_filter {
    float: left;
    text-align: right;
    margin-bottom: 10px;
    margin-top: 10px;
}

#location-wrapper .warning-msg {
    background-color: aliceblue;
    font-size: 12px;
    width: 500px;
}

/*#location-wrapper input:not([type=button]):not([type=submit]),
#location-wrapper select,
#location-wrapper textarea.w2ui-input {
    height: 25px;
}*/

#location-wrapper .error {
    border: 2px solid red !important;
}

#location-wrapper .hidden {
    visibility: hidden;
    display: none;
}

#location-wrapper .precinct-container {
    position: relative;
    background-color: #FFF;
}

    #location-wrapper .precinct-container .tiny-msg {
        font-size: 12px;
        position: relative;
        top: -5px;
    }

.precinct-container .chosen-container {
    position: relative;
    left: 0;
    top: -5px;
}

    .precinct-container .chosen-container .chosen-drop {
        width: 500px !important;
    }

.chosen-container-multi .chosen-choices {
    width: 500px !important;
    min-height: 35px !important;
}

/*Provide Availability (Student-side only for now)*/
#available-container {
    margin-top: 10px;
    width: 60%;
    margin-left: 15%;
}

#availability-container .shift-date {
    font-size: 18px;
}

@media (max-width: 1250px) {
    #available-container {
        width: 80%;
        margin-left: 5%;
    }

    #availability-container .shift-date {
        font-size: 16px;
    }
}

@media (max-width: 1000px) {
    #available-container {
        width: 100%;
        margin-left: 0%;
    }

    #availability-container .shift-date {
        font-size: 14px;
    }
}

#availability-container .available-header {
    display: block;
    font-size: 18px;
}

#availability-container .available-body {
    margin-bottom: 15px;
}

    #availability-container .available-body .row-blue {
        background-color: #282894;
        color: white;
    }

    #availability-container .available-body .row {
        border: 1px solid black;
        border-radius: 4px;
        margin-top: 5px;
        padding: 5px;
    }

    #availability-container .available-body .col-2 {
        text-align: center;
    }

        #availability-container .available-body .col-2.check {
            position: relative;
            top: 4px;
        }

#available-container .button-holder {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

#availability-container .back-btn {
    float: right;
}

#available-container .shift-container {
    padding-bottom: 5px;
    margin-bottom: 5px;
    font-size: 24px;
    font-weight: bold;
}

#availability-container .time-wrapper {
    display: flex;
    flex-flow: column wrap;
    align-items: center;
}

    #availability-container .time-wrapper .text-box {
        width: 80px;
        font-size: 14px;
    }

        #availability-container .time-wrapper .text-box:required {
            border: 1px solid red;
        }

#availability-container .shift-date {
    vertical-align: middle;
    font-size: 18px;
}

/* Elections */
#election-form {
    box-sizing: border-box;
    padding: 1rem;
    border-radius: 1rem;
    background-color: hsl(0, 0%, 100%);
    border: 4px solid hsl(0, 0%, 90%);
    display: grid;
    padding-top: 0;
}

    #election-form .control-label {
        color: black;
    }

#election-wrapper .error {
    border-color: red;
    border-width: 2px;
}

#election-wrapper #customFilters {
    display: inline;
}

#election-wrapper #election-grid_filter {
    float: left;
    text-align: right;
    margin-bottom: 5px;
}



/*new*/
#election-grid_wrapper .dt-search {
    float: left;
    text-align: right;
    margin-bottom: 5px;
}

#grid_wrapper .dt-search {
    float: left;
    text-align: right;
    margin-bottom: 5px;
}

.dt-container .dt-paging {
    float: right;
    text-align: right;
    padding-top: 0.25em;
}

#dt-search-0 {
    border: 2px inset #aaa;
    border-radius:1px;
    padding: 0px;
    margin-left: 0.5em;
}
/*end new */


#election-wrapper .required-field {
    color: red !important;
}

#election-wrapper .w2ui-popup .w2ui-popup-body {
    background-color: white;
}

#election-form input,
#election-form input:not([type=button]):not([type=submit]).w2ui-input,
#election-form textarea.w2ui-input {
    border-radius: 1px;
    background-color: #eee;
}

#election-wrapper #loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid grey;
    border-bottom: 16px solid grey;
    background: white;
    width: 120px;
    height: 120px;
    content: "Loading";
    text-align: center;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    display: none;
    z-index: 10;
    position: absolute;
    left: calc(50% - 120px);
}

#election-wrapper .w2ui-popup-body {
    background-color: white !important;
}

#election-wrapper th {
    background-color: #1233ab;
}
/* Precincts */
#precinct-wrapper {
    width: 90%;
    margin: 0 auto;
    margin-top: 60px;
}

/*    #precinct-wrapper #wrapper-header {
        width: 100%;
        display: table;
        clear: both;
    }*/

/*        #precinct-wrapper #wrapper-header .header-item {
            width: 33.33%;
            float: left;
        }*/

#card-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}

    #card-wrapper .precinct-card {
        flex-grow: 0;
        flex-shrink: 0;
        align-self: auto;
        width: 200px;
        height: 120px;
        border: 1px solid #333;
        border-radius: 4px;
        margin: 10px;
        background-color: aliceblue;
    }

        #card-wrapper .precinct-card .icon {
            background-image: url(../images/pencil.png);
            background-repeat: no-repeat;
            width: 20px;
            height: 20px;
            display: block;
        }

        #card-wrapper .precinct-card .edit-btn {
            width: 20px;
            height: 20px;
            float: right;
            padding: 0;
            border: none;
            position: relative;
            top: -42px;
            right: 6px;
            background-color: aliceblue;
            cursor: pointer;
        }

        #card-wrapper .precinct-card .PrecinctValue {
            margin-left: 15px;
            position: relative;
            text-align: center;
            top: -20px;
        }

        #card-wrapper .precinct-card .card-edit {
            position: relative;
            top: -10px;
        }

    #card-wrapper .card-title {
        margin-top: 50px;
        text-align: center;
        font-weight: bold;
    }

        #card-wrapper .card-title .card-precinctid {
            display: none;
        }

#precinct-wrapper #form-wrapper {
    border: none;
    flex: 1;
    height: 250px;
    margin-top: 80px;
}

#precinct-wrapper .edit-btn {
    position: relative;
}

#precinct-wrapper .save-btn {
    position: relative;
    top: -18px;
    margin-left: 15px;
}

#precinct-wrapper .cancel-btn {
    position: relative;
    top: -18px;
    margin-left: 3px;
}

/* Course Library */
#course-library-wrapper {
    width: 100%;
    margin: 0 auto;
}

    #course-library-wrapper #wrapper-header {
        margin-bottom: 35px;
    }

    #course-library-wrapper .no-cards {
        width: 100%;
        margin-top: 20px;
        margin-bottom: 20px;
    }

#card-wrapper .course-card {
    width: 100%;
    height: 300px;
    border: 1px solid #333;
    border-radius: 8px;
    margin: 0 auto;
    background-color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

    #card-wrapper .course-card .course-title {
        color: #027FB7;
        font-size: 16px;
        font-weight: bold;
        display: block;
        text-align: center;
        padding: 0 1em;
    }

    #card-wrapper .course-card .course-dates {
        position: absolute;
        top: 60px;
    }

        #card-wrapper .course-card .course-dates .course-date {
            font-size: 14px;
        }

    #card-wrapper .course-card .course-desc {
        position: absolute;
        top: 120px;
        padding-right: 10px;
    }

    #card-wrapper .course-card .course-associations {
        position: absolute;
        top: 120px;
    }

    #card-wrapper .course-card .course-contents {
        position: absolute;
        bottom: 50px;
        padding-bottom:5px;
    }

    #card-wrapper .course-card .course-contentitem {
        margin-left: 20px;
        display: block;
    }

    #card-wrapper .course-card .course-buttons {
        background-color: #E6F1F7;
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 4px;
        position: absolute;
        bottom: 0px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        height: 50px;
        border-top: rgba(128,128,128, .5) solid 1px;
    }

        #card-wrapper .course-card .course-buttons .button-container {
            display: inline-block;
        }

            #card-wrapper .course-card .course-buttons .button-container .button-title {
                display: block;
                text-align: center;
                font-size: 14px;
                position: relative;
                bottom: 8px;
            }

            #card-wrapper .course-card .course-buttons .button-container .disabled {
                color: grey;
            }

        #card-wrapper .course-card .course-buttons .course-button {
            text-decoration: none;
        }

            #card-wrapper .course-card .course-buttons .course-button .course-icon {
                width: 35px;
                height: 35px;
                filter: invert(100%);
            }

            #card-wrapper .course-card .course-buttons .course-button .course-icon-disabled {
                width: 35px;
                height: 35px;
                filter: invert(40%);
            }

.vertical-divider {
    margin-left: 15px;
    margin-right: 15px;
    border-left: 1px solid black;
}

/* Course Content */
#course-banner {
    color: #2F89C7;
    font-size: 24px;
    font-weight: bold;
    margin-top: 40px;
    display: flex;
    flex: 1;
}

#course-sub-banner {
    margin: 40px 0 15px 10px;
    display: flex;
    flex-wrap: wrap;
    width: 400px;
}

#course #tabstrip {
    list-style-type: none;
    margin-top: 15px;
}

    #course #tabstrip a {
        display: block;
        float: left;
        padding: 10px 15px;
        background: transparent;
        border: none;
        margin-right: 1px;
        color: #333;
        text-decoration: none;
    }

    #course #tabstrip .disabled-nav {
        background-color: #ADADAD;
        padding-top: 10px;
    }

    #course #tabstrip .active {
        background-color: gainsboro;
    }

        #course #tabstrip .active a {
            border-bottom: 2px solid #2F89C7;
        }

#course .tab-content {
    margin-top: 10px;
}

#course .control-label {
    color: black;
    padding-left: 0px;
    margin-bottom: 5px;
}

#course .text-area {
    min-height: 150px;
}

#edit-course-wrapper .form-label {
    display: block;
    color: black;
}

#edit-course-wrapper .textbox-long,
#course-section-container .textbox-long {
    width: 100%;
}

#edit-course-wrapper #test-col {
    margin-top: 50px;
}

/*#edit-course-wrapper .form-control {
    resize: none;
    border-color: rgb(133, 133, 133);
    border-style: inset;
    border-width: 2px;
}*/

#edit-course-wrapper .gy-3 {
    margin-top: 1px;
}

#section-bank-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column !important;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

    #section-bank-container .sortable-list {
        list-style: none;
    }

    #section-bank-container .sortable-card {
        width: 50rem;
        border: 1px solid rgba(0, 0, 0, 0.125);
        border-radius: 0.25rem;
        margin-bottom: 1.5rem;
    }

        #section-bank-container .sortable-card:hover {
            transform: scale(0.98);
            transition: 300ms;
        }

        #section-bank-container .sortable-card.dragging .card-header {
            background: aliceblue;
            opacity: 0.8;
        }

        #section-bank-container .sortable-card .card-header {
            padding: 0.5rem 0.5rem 0.5rem 1rem;
            background-color: rgba(0, 0, 0, 0.03);
            border-bottom: 1px solid rgba(0, 0, 0, 0.125);
            border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0;
            position: relative;
            cursor: move;
        }

            #section-bank-container .sortable-card .card-header .course-icon,
            #section-bank-container .sortable-card .details .course-icon {
                border: 1px solid #333;
                border-radius: 4px;
                text-align: center;
                width: 35px;
                height: 35px;
                filter: invert(100%);
            }

            #section-bank-container .sortable-card .card-header .handle {
                position: absolute;
                right: 10px;
                top: 5px;
                width: 30px;
                height: 30px;
            }

        #section-bank-container .sortable-card .details {
            padding: 10px 15px;
            position: relative;
        }

            #section-bank-container .sortable-card .details .card-text {
                display: inline-block;
            }

            #section-bank-container .sortable-card .details .card-link {
                text-decoration: none;
                color: #0793D4; /* color taken from btn-primary background */
            }

            #section-bank-container .sortable-card .details .course-archive {
                position: absolute;
                right: 10px;
                bottom: 10px;
            }

            #section-bank-container .sortable-card .details .course-edit {
                position: absolute;
                right: 55px;
                bottom: 10px;
            }


.dashboard-bank-item-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row !important;
    flex-wrap:wrap;
    justify-content: space-between;
    clear: both;
}

    .dashboard-bank-item-container .card {
        margin: 10px;
        width: 36rem;
    }

        .dashboard-bank-item-container .card .card-header .card-required {
            color: red;
            font-weight: bold;
        }

    .dashboard-bank-item-container .card-body {
        padding: 1rem 0 0 1rem;
    }

        .dashboard-bank-item-container .card-body .course-icon {
            border: 1px solid #333;
            border-radius: 4px;
            text-align: center;
            width: 35px;
            height: 35px;
            filter: invert(100%);
            position: absolute;
        }

        .dashboard-bank-item-container .card-body .archive-icon,
        .dashboard-bank-item-container .card-body .preview-icon {
            right: 5px;
            bottom: 5px;
        }

        .dashboard-bank-item-container .card-body .archive-icon {
            right: 5px;
            bottom: 5px;
        }        .dashboard-bank-item-container .card-body .edit-icon {
            right: 45px;
            bottom: 5px;
        }

    .dashboard-bank-item-container .card-link {
        position: absolute;
        right: 0px;
        bottom: 0px;
    }

    .dashboard-bank-item-container .row-drop {
        margin-top: 20px;
        margin-bottom: 20px;
    }

#question-container .row-drop .col-drop {
    margin-top: 40px;
    margin-left: 30px;
}

#question-container .question-choice {
    text-align: center;
    margin: 20px 0 10px 0;
}

    #question-container .question-choice .choice-text {
        max-width: 500px;
        width: 65%;
        height: 50px;
        resize: none;
    }

    #question-container .question-choice .choice-checkbox {
        vertical-align: top;
        height: 30px;
        width: 30px;
        margin: 10px;
    }

#question-container .form-control {
    resize: none;
    border-color: rgb(133, 133, 133);
    border-style: inset;
    border-width: 2px;
    height: 75px;
}

.required-field {
    color: red !important;
}

/* Course Details */
#course-details-wrapper {
    width: 100%;
    margin: 0 auto;
    margin-top: 60px;
}

    #course-details-wrapper .wrapper-header {
        justify-content: flex-end;
    }

        #course-details-wrapper .wrapper-header .detail-btn {
            width: 175px;
            padding: 10px;
        }

    #course-details-wrapper .tabstrip {
        list-style-type: none;
        margin-top: 15px;
    }

        #course-details-wrapper .tabstrip a {
            display: block;
            float: left;
            padding: 10px 15px;
            background: transparent;
            border: none;
            margin-right: 1px;
            color: #333;
            text-decoration: none;
        }

        #course-details-wrapper .tabstrip .active {
            background-color: gainsboro;
        }

            #course-details-wrapper .tabstrip .active a {
                border-bottom: 2px solid #2F89C7;
            }

    #course-details-wrapper label {
        color: #000;
        font-weight: bold;
    }

    #course-details-wrapper .course-data {
        display: inline-block;
    }

#auditing .dataTables_wrapper .dataTables_filter {
    float: left;
}

#auditing th {
    background-color: #1233ab;
}

#auditing table.dataTable thead .sorting,
#auditing table.dataTable thead .sorting_desc,
#auditing table.dataTable thead .sorting_asc {
    background-image: none !important;
}

/* Student-Side Home Page */
#home-page-container {
    display: flex;
    flex-wrap: wrap;
}

    #home-page-container .classes {
        width: 74%;
    }

    #home-page-container .sidebar {
        width: 25%;
        border-top: 1px solid #e0e0e0;
        border-right: 1px solid #e0e0e0;
    }

    #home-page-container .classes h2 {
        padding: 6px 0px 6px 20px !important;
        border-bottom: none !important;
    }

    #home-page-container .news h2 {
        background-color: #e0e0e0;
        padding: 6px 0px 6px 20px !important;
        margin-bottom: 10px !important;
        border-bottom: none !important;
        width: 100%;
        margin-top: 0px;
    }

    #home-page-container .news {
        display: flex;
        flex-wrap: wrap;
    }

    #home-page-container .news-listing {
        display: flex;
        flex-wrap: wrap;
        margin-left: 20px;
        width: 100%;
    }

        #home-page-container .news-listing::after {
            content: "...";
            width: 100%;
            margin-top: -10px;
            font-weight: bold;
            font-size: larger;
        }

        #home-page-container .news-listing h3,
        #home-page-container .news-listing h4 {
            width: 100%;
            border-bottom: none !important;
            margin-top: 1px !important;
            margin-bottom: 1px !important;
            color: rgb(6, 158, 228) !important;
            font-weight: bold !important;
        }

    #home-page-container .news-content {
        display: flex;
        flex-wrap: wrap;
        max-height: 50px;
        overflow: hidden;
    }

        #home-page-container .news-content h1,
        #home-page-container .news-content h2,
        #home-page-container .news-content h3,
        #home-page-container .news-content h4 {
            width: 100%;
            border-bottom: none !important;
            background-color: none !important;
            font-size: 1.2em !important;
        }

    #home-page-container .link:hover {
        cursor: pointer;
    }

    #home-page-container .etabs {
        overflow: hidden;
        box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
        margin-right: 0px;
        border-top: 1px solid #e0e0e0;
    }

    #home-page-container .tab {
        width: 100%;
        color: white;
        overflow: hidden;
        margin-top: 2px;
    }

    #home-page-container .tab-label {
        display: inline-block;
        justify-content: space-between;
        padding: 1em;
        background: #D3D3D3;
        font-weight: bold;
        color: black;
        width: 98%;
    }

        #home-page-container .tab-label:hover {
            background: #282894;
            color: white;
        }

    #home-page-container .hidden {
        display: none;
    }

    #home-page-container .tab-content {
        padding: 1em;
        color: #2c3e50;
        background-color: #F8F8F8;
    }

    #home-page-container input:checked + .tab-label {
        background: #282894;
        color: white;
    }

    #home-page-container #available-container {
        overflow-y: scroll;
        height: 425px;
    }

    #home-page-container .right {
        float: right;
        margin-right: 10px;
    }

    #home-page-container .more-info {
        cursor: pointer;
    }

/* Student/Admin-Side Classes Tab */
#classes-container .teal-header {
    color: rgb(6, 158, 228);
    font-size: 1.2em;
    text-decoration: none;
}

#classes-container .fw-regular {
    font-weight: normal;
}

#classes-container .dataTables_length {
    margin-bottom: 10px;
}

#classes-container .dataTables_scrollBody {
    overflow: initial !important;
}

#classes-container #grid_filter {
    margin-bottom: 10px;
}

#classes-container .election,
.reviewScheduleContainer {
    border: 1px solid #333;
    border-radius: 10px;
    padding: 15px;
    margin: 10px 0px 30px 0px;
    background-color: #E8E8E8;
}

/* Associate Course with Offering */
#associate-course-wrapper {
    width: 90%;
    margin: 0 auto;
}

    #associate-course-wrapper .row {
        margin-bottom: 15px;
    }

    #associate-course-wrapper #wrapper-header {
        width: 100%;
        display: table;
        clear: both;
    }

        #associate-course-wrapper #wrapper-header .header-item {
            width: 100%;
        }

    #associate-course-wrapper #associate-card-wrapper .header-item .msg {
        display: inline-block;
    }

    #associate-course-wrapper #wrapper-header .back-btn {
        position: relative;
        bottom: 130px;
        float: right;
    }

    #associate-course-wrapper #associate-card-wrapper #flex-assign,
    #associate-course-wrapper #associate-card-wrapper #flex-unassign {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    #associate-course-wrapper #associate-card-wrapper .offering-card {
        flex-grow: 0;
        flex-shrink: 0;
        align-self: auto;
        width: 350px;
        height: 150px;
        border: 1px solid #333;
        border-radius: 4px;
        margin: 10px;
        padding: 10px;
        position: relative;
        overflow: hidden;
    }

        #associate-course-wrapper #associate-card-wrapper .offering-card .offer {
            border-bottom-left-radius: 4px;
            border-bottom-right-radius: 4px;
            position: absolute;
            bottom: 0px;
            width: 100%;
            display: flex;
            justify-content: space-evenly;
            height: 48px;
            left: 0px;
            text-align: center;
        }

    #associate-course-wrapper #associate-card-wrapper .disabled-card {
        background-color: lightgrey;
    }

    #associate-course-wrapper #associate-card-wrapper .offering-card .offering-buttons {
        background-color: #E6F1F7;
    }

    #associate-course-wrapper #associate-card-wrapper .offering-card .offering-buttons-disabled {
        background-color: #EEE;
    }

#associate-card-wrapper .offering-card .offering-buttons-disabled .button-title,
#associate-card-wrapper .offering-card .offering-buttons .button-title {
    display: block;
    text-align: center;
    font-size: 14px;
    position: relative;
    bottom: 8px;
}

#associate-card-wrapper .offering-card .offering-buttons .offering-btn {
    text-decoration: none;
}

    #associate-card-wrapper .offering-card .offering-buttons .offering-btn .btn-icon {
        width: 30px;
        height: 30px;
        padding: 4px;
        margin: 2px;
        filter: invert(100%);
    }

#associate-course-wrapper #associate-card-wrapper .card-title {
    text-align: left;
}

#associate-course-wrapper #associate-card-wrapper .primary-btn {
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 35px;
    height: 30px;
    padding: 0px;
}

    #associate-course-wrapper #associate-card-wrapper .primary-btn .course-icon {
        margin-left: 9px;
        font-weight: bold;
    }

#associate-course-wrapper .offering-filter {
    margin: 10px;
}

/* Student Taking Course */
#course-body {
    width: 90%;
    margin: 200px auto;
    border: 1px solid #333;
    margin-top: 75px;
}

    #course-body.dark {
        background-color: lightgrey;
    }

    #course-body.light {
        background-color: white;
    }

#course-result-body {
    width: 90%;
    margin: 100px auto;
    border: 1px solid #333;
    margin-top: 75px;
    padding: 20px;
    height: fit-content;
}

    #course-result-body .passed {
        color: green;
    }

    #course-result-body .failed {
        color: red;
    }

.passed-test {
    background-color: palegreen;
}

.failed-test {
    background-color: pink;
}

#course-body .course-header {
    background-color: rgb(40, 40, 148); /*EWP Blue*/
    color: white;
    padding: 10px;
}

    #course-body .course-header .course-label {
        font-weight: 500;
        font-size: 20px;
    }

    #course-body .course-header .course-value {
        font-size: 20px;
    }

#course-body .course-contents {
    padding: 10px;
}

#course-body .nav-btn {
    font-weight: bold;
    font-size: 20px;
    padding: 5px 15px 5px 15px !important;
}

#course-body .course-question {
    width: 90%;
    margin: 20px auto;
    border: 1px solid #333;
    background-color: white;
}

    #course-body .course-question .failed {
        background-color: red;
    }

    #course-body .course-question .passed {
        background-color: green;
    }

    #course-body .course-question .answer-result {
        font-size: 30px;
        font-weight: bold;
        display: flex;
        justify-content: center;
        margin-bottom: 10px;
        color: white;
    }

    #course-body .course-question .question-body {
        padding: 20px;
    }

        #course-body .course-question .question-body .question {
            font-weight: 500;
            font-size: 24px;
            margin-left: 90px; /*40 margin + width of icon + icon margin*/
        }

        #course-body .course-question .question-body .question-answers {
            margin-left: 50px;
        }

            #course-body .course-question .question-body .question-answers .mark {
                height: 30px;
                width: 30px;
                display: inline-block;
                position: relative;
                top: 5px;
                margin-right: 10px;
            }

            #course-body .course-question .question-body .question-answers .passed {
                background: url("../images/correctanswer.png");
                background-size: 30px 30px;
            }

            #course-body .course-question .question-body .question-answers .failed {
                background: url("../images/incorrectanswer.png");
                background-size: 30px 30px;
            }

            #course-body .course-question .question-body .question-answers .answers,
            #course-body .course-question .question-body .question-answers .choices {
                margin-left: 50px;
            }

            #course-body .course-question .question-body .question-answers .question-label {
                color: black;
                font-size: 24px;
                font-weight: bold;
                text-decoration: underline;
            }

            #course-body .course-question .question-body .question-answers .form-control {
                border: none;
            }

        #course-body .course-question .question-body .review-btn {
            border: none;
            background-color: white;
            text-decoration: underline;
            color: #085b85;
        }

#course-body .rounded-checkbox {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    vertical-align: middle;
    border: 1px solid #333;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    position: relative;
    bottom: 1px;
}

    #course-body .rounded-checkbox:checked {
        appearance: auto;
        clip-path: circle(50% at 50% 50%);
    }

    #course-body .rounded-checkbox:disabled {
        background-color: lightgray;
    }

#course-body #question-submit {
    margin: 20px;
    margin-left: 60px;
}

#course-body .question-nav {
    text-align: center;
}

#course-body .correct {
    border: 1px solid green !important;
    background-color: #EAFCDD;
    margin: 5px;
}

#course-body .incorrect {
    border: 1px solid darkred !important;
    background-color: mistyrose;
    margin: 5px;
}

#course-body [data-title]:hover:after {
    opacity: 1;
    transition: all 0.1s ease 0.5s;
    visibility: visible;
}

#course-body [data-title]:after {
    content: attr(data-title);
    background-color: aliceblue;
    color: #333;
    font-size: 18px;
    position: absolute;
    padding: 1px 5px 2px 5px;
    bottom: -1.8em;
    left: 0%;
    white-space: nowrap;
    box-shadow: 1px 1px 3px #222;
    opacity: 0;
    border: 1px solid #333;
    z-index: 1000;
    visibility: hidden;
}

#course-body [data-title] {
    position: relative;
}

.overarching-container .course-nav {
    text-align: center;
    position: fixed;
    width: 90%;
    z-index: 100;
    background-color: white;
    padding: 15px;
    border-bottom: 1px solid #333;
}

    .overarching-container .course-nav #section-ddl {
        padding: 8px;
    }

    .overarching-container .course-nav .back-btn {
        float: right;
        margin-right: 5px;
    }

.assetCard {
    width:90%;
    height: 145px;
    font-size: 0.8em;
    text-align: center;
    vertical-align: middle;
    overflow: hidden;
/*    padding: 2px;
*/    border: solid 1px #C7C7C7;
    word-wrap: break-word;
    float: left;
}

    .file-icon img {
        text-align: center;
        width: 25px;
        height: 25px;
    }

    .file .button-container .button-title {
        display: block;
        text-align: center;
        font-size: 11px;
        position: relative;
        bottom: 0px;
    }
    /*.file .file-buttons {
    bottom: 0px;
    width: 50%;
    display: flex;
    justify-content: space-evenly;
}*/
    .file .button-container {
        display: inline-block;
        height: 45px;
    }

/* JQuery-Chosen overrides */
.search-choice-close {
    font-size: 14px;
    top: 2px;
    right: -1px;
}

.chosen-container, .chosen-container-multi {
    width: 100% !important;
}

/* Bootstrap overrides */
.row {
    --bs-gutter-x: 0rem !important;
}

.toast-success {
    background-color: #51A351 !important;
}

.toast-warning {
    background-color: #F89406 !important;
}

.toast-error {
    background-color: #BD362F !important;
}

.modalIcons {
    height: 25px;
    width: 25px;
}
hr{
    width:100%;
}
.cardLayout-3 {
    display: grid !important;
    grid-template-columns: 23.5% 23.5% 23.5% 23.5% !important;
    column-gap: 2% !important;
    row-gap: 35px;
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {

    .cardLayout-3 {
        display: grid !important;
        grid-template-columns: 100% !important;
        row-gap: 35px;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .cardLayout-3 {
        display: grid !important;
        grid-template-columns: 49% 49% !important;
        column-gap: 2% !important;
        row-gap: 35px;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .cardLayout-3 {
        display: grid !important;
        grid-template-columns: 49% 49% !important;
        column-gap: 2% !important;
        row-gap: 35px;
    }
}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .cardLayout-3 {
        display: grid !important;
        grid-template-columns: 32% 32% 32% !important;
        column-gap: 2% !important;
        row-gap: 35px;
    }

}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1300px) {
    .cardLayout-3 {
        display: grid !important;
        grid-template-columns: 23.5% 23.5% 23.5% 23.5% !important;
        column-gap: 2% !important;
        row-gap: 35px;
    }
}
.inner-table {
    border: none;
}

.inner-table tr > *:first-child {
    padding-left: 0;
}

.inner-table tr > *:last-child {
    padding-right: 0;
}

.radioButtonh-label {
    font-size: 1.2rem;
    margin-top: 8px;
    margin-bottom: 8px;
    color: #000;
    display: inline-block;
}
.form-horizontal td,
.form-horizontal th,
.form-horizontal tr,
.form-horizontal tbody,
.form-horizontal table {
    border: none;
    background-color: white;
}
.dateFieldHeight {
    height: 38px;
    border-radius: .25rem;
}
.form-select {
    height: 34px;
    border: 1px solid #A9A9A9;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.5;
    border-radius: .25rem;
}
.width-50 {
    width:50%;
}
.form-check-input.form-check-input-lg {
    width:20px;
    height:20px;
}
.mark, mark {
    background-color: yellow;
}

*, 
    /*input[type="button"] {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: normal;
    line-height: 18px !important;
}*/
    /*# sourceMappingURL=site.css.map */
