/* Minification failed. Returning unminified contents.
(382,42): run-time error CSS1034: Expected closing parenthesis, found ','
(382,42): run-time error CSS1042: Expected function, found ','
(382,45): run-time error CSS1062: Expected semicolon or closing curly-brace, found ')'
(384,15): run-time error CSS1036: Expected expression, found ':'
(407,47): run-time error CSS1046: Expect comma, found '0'
(407,51): run-time error CSS1046: Expect comma, found '/'
(409,39): run-time error CSS1046: Expect comma, found '0'
(409,43): run-time error CSS1046: Expect comma, found '/'
 */
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700");

html body {
    margin: 0;
    padding: 0;
    border: 0;
    background-color: #efefef;
    font-size: 16px;
    font-weight: 300;
    /*font-family: roboto,oxygen-sans,ubuntu,cantarell,"Helvetica Neue",sans-serif;*/
    font-family: 'Source Sans Pro', "Helvetica Neue",sans-serif;
    color: #444444;
}

body * {
    box-sizing: border-box;
}

.restrict-width {
    margin: 0 auto;
    max-width: 1400px;
}

@media (min-width: 1200px) {
    .wrapper .container {
        max-width: 1340px;
    }
}

.skip-link {
    display: none;
}

.clearfix::after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}



/* HEADER */
.header {
    border-top: 5px solid #C9D845;
}

    .header .top-bar {
        background-color: #0B3A1D;
    }

    .header .menu-bar {
        background-color: #1E4D2B;
    }

        .header .menu-bar ul {
            list-style-type: none;
            margin: 0;
            padding: 0;
        }
/* Menu */
#main-nav > li {
    display: inline-block;
    border-right: 1px solid #0B3A1D;
}

    #main-nav > li > a {
        display: inline-block;
        font-size: 16px;
        font-weight: 400;
    }

/*#main-nav li.has-sub-menu > a:first-of-type {
    padding-right: 5px;
}

#main-nav li.has-sub-menu > a:last-of-type {
    padding-left: 5px;
}*/

    #main-nav li.has-sub-menu > a:last-of-type span {
        border: 1px solid rgba(0,0,0,0);
    }

    #main-nav li.has-sub-menu > a:last-of-type:hover span,
    #main-nav li.has-sub-menu > a:last-of-type:focus span {
        border: 1px solid rgba(255, 255, 255, 0.75);
        border-radius: 5px;
        background-color: rgba(0,0,0,.5);
    }

#main-nav a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    padding: 35px;
    font-weight: 500;
}

    #main-nav a:hover {
        color: #C9D845
    }

#main-nav .sub-menu {
    display: none;
    position: absolute;
    background-color: #1E4D2B;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

#main-nav > li:hover > .sub-menu {
    display: block;
}

#main-nav .sub-menu a {
    display: block;
    padding: 15px;
}

    #main-nav .sub-menu a:hover {
        background-color: #0B3A1D;
    }
/* Mobile Menu Icon */
.hamburger-icon {
    cursor: pointer;
    padding: 25px 20px;
    display: none; /* Hide by default */
}

.hamburger-line {
    background-color: #fff;
    display: block;
    height: 2px;
    position: relative;
    width: 24px;
}

    .hamburger-line::before,
    .hamburger-line::after {
        background-color: #fff;
        content: '';
        display: block;
        height: 100%;
        position: absolute;
        transition: all 0.2s ease-out;
        width: 100%;
    }

    .hamburger-line::before {
        top: 5px;
    }

    .hamburger-line::after {
        top: -5px;
    }

.mobile-menu-opened .hamburger-icon .hamburger-line {
    background: transparent;
}

    .mobile-menu-opened .hamburger-icon .hamburger-line::before {
        transform: rotate(-45deg);
        top: 0;
    }

    .mobile-menu-opened .hamburger-icon .hamburger-line::after {
        transform: rotate(45deg);
        top: 0;
    }

/* BODY */
.wrapper {
    padding: 15px;
}

.main-content {
    background-color: #fff;
    padding: 30px;
}

@media only screen and (max-width: 550px) {
    .main-content {
        padding: 5px;
    }

    .wrapper {
        padding: 5px;
    }
}

.page-title {
    margin-top: 0;
    padding-top: 0;
}

/* Headers */
.main-content h1,
.main-content h2,
.main-content h3,
.main-content h4,
.main-content h5,
.main-content h6 {
    font-family: 'Source Sans Pro', sans-serif;
}

h1 {
    font-size: 48px;
    font-weight: 300;
}

h2 {
    font-size: 40px;
    font-weight: 400;
}

h3 {
    font-size: 32px;
    font-weight: 300;
    margin: 0px;
    padding-bottom: 0px;
}

h4 {
    font-size: 28px;
    font-weight: 300;
    margin: 10px 0
}

h5 {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 2px;
}

h6 {
    font-size: 16px;
    font-weight: 300;
}

/* Common Elements */
.main-content p {
    font-size: 16px;
    line-height: 2em;
    margin: 0;
    padding: 0;
    border: 0;
    margin-bottom: 1.5em;
}

.main-content a {
    color: #1E4D2B;
}

    .main-content a.btn-danger {
        color: #FFF;
    }

blockquote {
    border: 0;
    border-left: 5px solid rgba(0,0,0,.05);
    padding: 20px;
    font-size: 1.2em;
    font-style: italic;
    margin: 0 0 1.5em;
    position: relative;
}

figure {
    padding: 0;
    border: 0;
    margin: 0;
}

    figure img {
        height: auto;
        max-width: 100%;
        border: none;
        border-radius: 0;
        box-shadow: none;
    }

code {
    hyphens: manual;
    overflow-wrap: break-word;
    border: 1px solid lightgray;
    font: 15px Monaco,Consolas,"Andale Mono","DejaVu Sans Mono",monospace;
}

pre {
    word-wrap: break-word;
    margin: 0;
    border: 0;
    background: rgba(0,0,0,.05);
    margin-bottom: 1.5em;
    padding: 20px;
    overflow: auto;
    max-width: 100%;
}

/* Tables */
table {
    border-collapse: separate;
    border-spacing: 0;
    border-width: 1px 0 0 1px;
    margin: 0 0 1.5em;
}

    table.table td {
        padding: 5px;
        border: solid 1px #e8eef4;
    }

table, td, th {
    border: 1px solid rgba(0,0,0,.1);
    padding: 3px;
}

th {
    font-weight: 700;
    vertical-align: bottom;
    /*background-color: #1e4d2b;
    color: #fff;*/
}

table, table * {
    /*border-width: 0px;*/
    margin: 0px;
}

    table input[type=radio] {
        margin-right: 5px;
    }

    table input[type=checkbox] {
        margin: 0 5px 0 10px;
    }

    table label, table .stressor label {
        display: inline;
    }

    table.dataTable thead > tr > th, table th {
        text-align: center;
    }

    table th label {
        font-weight: bold;
        padding: 5px 0 5px;
    }

    table.plain label {
        font-weight: normal;
    }

.labelHolder {
    padding-bottom: 5px;
}

table tr td * {
    vertical-align: middle;
}

table input[type=image] {
    cursor: pointer !important;
}

table.form tr td label {
    font-weight: bold;
}

/* Forms */
fieldset {
    border: 1px solid #ccc;
}

    fieldset legend {
        background-color: #fff;
        padding: 2px 10px 2px 10px;
        border: 1px solid rgb(200,195,114,.5);
        width: auto;
        color:: #444444;
    }

input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]), textarea, select {
    hyphens: manual;
    overflow-wrap: break-word;
    margin: 0;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5;
    transition: color .1s ease-in-out,background-color .1s ease-in-out;
    border: 1px solid;
    border-radius: 5px;
    padding: 8px 12px;
    max-width: 90%;
    color: #666666;
    background-color: #f9fafb;
    border-color: #cccccc;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: 16px 18px;
    background-position: 98% 50%;
    cursor: auto;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
}

    input:disabled, textarea:disabled, select:disabled, input[type="datetime"]:disabled {
        background-color: #dddddd !important;
    }

textarea {
    width: 90%;
}

*:disabled {
    cursor: default;
}

button, .button, input[type="button"]:not(.ajax__html_editor_extender_button ) {
    margin: 0;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.5;
    border: 0;
    border-radius: 5px;
    cursor: pointer;
    -webkit-appearance: button;
    transition: color .1s ease-in-out,background-color .1s ease-in-out;
    color: #ffffff;
    text-decoration: none;
    background-color: #d9782d;
    padding: 8px 12px;
    display: inline-block;
}

.button-link {
    margin: 0;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.5;
    border: 0;
    border-radius: 5px;
    cursor: pointer;
    -webkit-appearance: button;
    transition: color .1s ease-in-out,background-color .1s ease-in-out;
    color: #ffffff !important;
    text-decoration: none !important;
    background-color: #d9782d;
    padding: 8px 12px;
    display: inline-block;
}

    button.btnSelectParticipant {
        padding: 4px 6px;
    }

    button:hover, .button:hover, [type="button"]:hover {
        background-color: #c26621;
    }

.form-group .btn:hover, input.btn:hover {
    color: #fff;
    text-decoration: underline;
}

a.btn-info {
    background-color: #d9782d;
    color: #fff;
    border: 1px solid #c2661f;
    text-decoration: none !important;
}

    a.btn-info:hover {
        background-color: #d9782d !important;
        color: #fff;
        border: 1px solid #c2661f;
        text-decoration: underline !important;
    }

/* Row and Cols (Using Flex) 
.row {
    display: flex;
    gap: 15px;
}

    .row.gap-10 {
        gap: 10px;
    }

    .row.gap-15 {
        gap: 15px;
    }

    .row.gap-20 {
        gap: 20px;
    }

    .row.gap-25 {
        gap: 25px;
    }

.col-25 {
    flex: 1;
}

.col-75 {
    flex: 3;
}

.col-33 {
    flex-basis: calc(100%/3)
}
    */
/* FOOTER */
.top-footer {
    background-color: #004C23;
}

.top-footer_content {
    color: #fff;
    padding-top: 35px;
    padding-bottom: 25px;
}

.footer {
    background: #0B3A1D;
}

    .footer .row {
        margin-right: auto;
        margin-left: auto;
    }

.csu-footer-links {
    text-align: right;
}

    .csu-footer-links ul li {
        display: inline-block;
        margin-left: 10px;
    }

        .csu-footer-links ul li::before {
            content: "> ";
            color: #EAB830;
        }

    .csu-footer-links a {
        color: #FFFFFFE0;
        text-decoration: none;
    }

        .csu-footer-links a:hover {
            color: #EAB830;
        }


/* RESPONSIVE */
/* Tablet */
@media only screen and (max-width: 1000px) {
    /* Switch to Mobile Menu */
    .hamburger-icon {
        display: block;
    }

    #main-nav {
        display: none;
    }
        /* Change to Display Block */
        #main-nav a {
            display: block;
        }
    /* Mobile Menu */
    .mobile-menu-closed #main-nav {
        display: none;
    }

    .mobile-menu-opened #main-nav {
        display: block;
    }

    #main-nav li,
    #main-nav li a {
        display: block;
    }

        #main-nav li:hover {
            background-color: rgba(0,0,0,.2);
        }

    #main-nav > li > a {
        padding: 20px 20px;
    }

    #main-nav li.has-sub-menu a {
        display: inline-block;
    }

    #main-nav li.has-sub-menu:hover > ul {
        display: none; /* JS will toggle display on arrow click */
    }

    #main-nav .sub-menu {
        display: none; /* Just default: will be overridden when user interacts */
        position: relative;
    }

        #main-nav .sub-menu a {
            text-align: center;
            width: 100%;
        }
    /* Add Padding to Header and Footer */
    .header .top-bar,
    .top-footer,
    .footer {
        padding-left: 10px;
        padding-right: 10px;
    }
    /* Adjust Columns */
    .col-25, .col-75 {
        flex: 1;
    }

    .col-25, .col-75 {
        flex: 1;
    }
}
/* Phone */
@media only screen and (max-width: 600px) {
    /* Adjust Columns */
    .row {
        flex-direction: column;
    }
}


/* FONTS */
@font-face {
    font-family: "VitesseMedium";
    src: url("../fonts/Vitesse-Medium.eot");
    src: local("☺"), url("../fonts/Vitesse-Medium.woff") format("woff"), url("../fonts/Vitesse-Medium.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "VitesseBook";
    src: url("../fonts/Vitesse-Book.eot");
    src: local("☺"), url("../fonts/Vitesse-Book.woff") format("woff"), url("../fonts/Vitesse-Book.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "VitesseLight";
    src: url("../fonts/Vitesse-Light.eot");
    src: local("☺"), url("../fonts/Vitesse-Light.woff") format("woff"), url("../fonts/Vitesse-Light.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}




/* Overrides */
h1 {
    margin-top: 10px;
}

.participant {
    background-color: rgba(200,195,114,.25);
    margin-bottom: 0;
    padding: 1rem;
}

    .participant .nav-pills .nav-link.active {
        background-color: rgba(200,195,114,.85);
    }

.placements {
    background-color: rgba(18,164,182,.15);
    margin: 20px 0 0;
    padding: 1rem;
}
.service {
    background-color: #d5e2d8;
    margin: 20px 0 0;
    padding: 1rem;
}
.emails {
    background-color: #f2f1fe;
    margin: 20px 0 0;
    padding: 1rem;
}

.emails table {
    width:100%;
}

table.dataTable.nowrap th, table.dataTable.nowrap td {
    vertical-align:middle
}

.texts {
    background-color: rgba(229,106,84,.15);
    margin: 20px 0 0;
    padding: 1rem;
}

button#prev {
    margin-top: 30px;
}

.noborder {
    width: 95%;
    border: 0px solid rgba(0,0,0,.1);
}

.main-content a {
    text-decoration: underline;
}

@media only screen and (min-width: 1200px) {
    .footer .container {
        width: 1280px;
    }
}

@media only screen and (min-width: 1380px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1400px;
    }
}

input[type=submit], table input[type=submit] {
    text-decoration: none;
    color: #FFFFFF;
    background-color: #d9782d;
    padding: 10px 15px;
    cursor: pointer;
    margin-top: 5px;
}

.csu-footer-links {
    margin-top: 12px;
}

.ajax__html_editor_extender_texteditor {
    background-color: #f9fafb;
}

/* Boostrap overrides */
.nav-pills .nav-link {
    color: #333;
}

/* Admin icons */

label {
    display: inline-block;
}

.adminmenu {
    display: flex;
    justify-content: space-evenly;
}

    .adminmenu i {
        font-size: 3rem;
        padding: 16px;
        border-radius: 10%;
        margin: 1rem 0.5rem;
        filter: drop-shadow(1px 1px 3px rgba(0,0,0,.15));
        transition: all .25s ease;
        transform-style: preserve-3d;
        background-color: #c9d84542;
        min-width: 120px;
        min-height: 120px;
        border: 1px solid white;
        vertical-align: middle;
        padding: 1rem;
        min-width: 165px;
    }

        .adminmenu i span {
            font-family: Inter, sans-serif;
            font-size: 16px;
            padding-top: 10px;
            font-weight: normal;
            display: block;
        }

    .adminmenu a {
        text-align: center;
        cursor: pointer;
    }

        .adminmenu a:hover {
            color: #1E4D2B
        }

    .adminmenu:hover i {
        opacity: 0.5;
    }

        .adminmenu:hover i:hover {
            opacity: 1;
        }

