/* Minification failed. Returning unminified contents.
(76,18): run-time error CSS1039: Token not allowed after unary operator: '-card-border'
(251,46): run-time error CSS1039: Token not allowed after unary operator: '-bs-bg-opacity'
(253,42): run-time error CSS1039: Token not allowed after unary operator: '-bs-bg-opacity'
(256,50): run-time error CSS1039: Token not allowed after unary operator: '-bs-bg-opacity'
 */
@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap');

:root {
    /* use scroll-behavior: auto in conjunction with maintainScrollPositionOnPostBack=true
        for forms that do auto-postbacks
    */
    scroll-behavior: auto;
}

body {
    font-family: "Segoe UI","Noto Sans", "Gill Sans", "Gill Sans MT", Helvetica, Arial, "sans-serif"
}

/* Standardize Sizes of H tag */
h1 {
    font-size: 1.75rem;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.25rem;
}

h4 {
    font-size: 1rem;
}

h5 {
    font-size: 1rem;
}

h6 {
    font-size: 1rem;
}

/* Disable Bootstrap Resizing of Textarea tag */
textarea {
    resize: none !important;
}

/* Disabled Controls */
.disabled {
    background-color: #e9ecef;
    cursor: not-allowed;
}

/* Place red * with a space after control, used for labels */
.required::after {
    color: red;
    content: ' *';
}

/* Login Page ******************************************************************/
.graybg {
    background-color: #D2D2D2;
}

/* Landing Page ****************************************************************/
/*.landing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}*/

.item {
    flex: 0 24%;
    min-height: 200px;
    margin-bottom: 2%; /* (100-32*3)/2 */
    margin-right: .5%;
    margin-left: .5%;
    /*    border: 1px solid #818080;*/
    border: var(--card-border);
    border-radius: 10px;
    background: #fffdfd;
    box-shadow: 0 4px 10px rgba(0,0,0,.03),0 0 2px rgba(0,0,0,.06),0 2px 6px rgba(0,0,0,.12) !important;
}

    .item a {
        color: #000;
    }

        .item a:hover {
            color: #C09820;
            font-size: 1.1em;
            text-decoration: none;
        }

    .item img {
        width: 100%;
    }

    .item h3 {
        text-align: center;
        font-size: 1.2em;
    }

/* If screen is 990px or smaller, fill out landing page items */
@media (max-width: 990px) {
    .item {
        flex: 0 24%;
        min-height: 160px;
        margin-bottom: 2%; /* (100-32*3)/2 */
        border: 1px solid #818080;
    }
}

/* Master Page *****************************************************************/
#environment-banner {
    background-color: red;
    color: white;
    text-align: center;
    font-size: large;
    font-weight: bold;
}

#NavBarHeaderImage {
    max-width: 300px;
}

/* *****************************************************************************/


/* Add Min Width to Select2 DDLs, to ensure they dont cut off values on very narrow DDLs*/
.select2.select2-container.select2-container--bootstrap-5 {
    min-width: 104px;
}

/* Provide a class, .mep-searchable-constrain-width, which can be applied directly
    to an asp:DropDownList or to a parent element to cause a select2 dropdown to
    have 100% width so that it resizes immediately with its parent rather than
    requiring a page refresh. */
select.mep-searchable-constrain-width + .select2-container,
.mep-searchable-constrain-width .select2-container {
    width: 100% !important;
}

/* Add a bit of margin between checkboxes and labels when autogenerated by .NET */
input[type=checkbox] + label {
    margin-left: 1em;
}

/* Add a bit of margin between radiobuttons and labels when autogenerated by .NET */
input[type=radio] + label {
    margin-left: .25em;
    margin-right: 1em;
}

/* If screen is 768px or greater */
@media (min-width: 768px) {
    /* Add to a row to with cols each sized to 12 to create a vertical form */
    .mep-form-vertical {
        max-width: 512px
    }
}

/* If screen is 768px or smaller */
@media (max-width: 768px) {
    .landing-container {
        display: block;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .container h3 {
        margin: 10px auto;
    }

    .container.maxheadpic {
        display: none;
    }

    .widget-name{
        display:inline;
    }

    .item {
        width: 100%;
        flex: none;
        min-height: 30px;
        margin: 1%; /* (100-32*3)/2 */
        border-bottom: 2px solid #fc3;
        border-top: none;
        border-right: none;
        border-left: none;
    }

        .item img {
            width:60px;
            margin:10px;
        }
}

/* Styles for screens smaller than bootstrap's sm breakpoint */
@media (max-width: 575px) {
    /* Used to set the width of an item to 100% on xs only */
    .mep-w-xs-100 {
        width: 100%;
    }

    .mep-mb-xs-2 {
        margin-bottom: .5rem !important;
    }
}

/* Ensure Select2 doesnt break out of enclosing container on sm or smaller screens */
@media (max-width: 767px) {
    .select2.select2-container.select2-container--bootstrap-5 {
        width: 100% !important;
    }
}

/* Class based support for adding column-gap to flex items */
.mep-col-gap-2 {
    column-gap: .5rem;
}

.mep-no-wrap {
    white-space: nowrap;
}

.col-left {
    border-right: solid #0a58ca
}
.col-outside {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}
@media (max-width: 768px) {
    #widget-row {
        display: flex;
        flex-direction: column;
        margin-right: 0px;
    }
    .col-left {
        width: 100%;
        border-right:none;
    }
    .col-right {
        width: 100%;
    }
}
    


.SSO-btn {
    background-color: RGBA(255, 193, 7, var(--bs-bg-opacity, 1)) !important;
    color: black;
    border-color: RGBA(255, 193, 7, var(--bs-bg-opacity, 1)) !important;
}
    .SSO-btn:hover {
        background-color: RGBA(255, 180, 7, var(--bs-bg-opacity, 1)) !important;
        color: black;
    }

.outside-link{
    margin-left:12px;
}
.outside-image {
    width: 47px;
    height: 40px;
    object-fit: cover;
}
    /*
    Bootstrap Breakpoints
    xs <576px 	
    sm ≥576px 	
    md ≥768px 	
    lg ≥992px 	
    xl ≥1200px 	
    xxl ≥1400px
*/

.email-contact {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0;
}

.card-text.email-info {
    font-size: 1.1rem;
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.01em;
}

.email-contact .bi {
    font-size: 1.5em;
    vertical-align: middle;
}
