﻿@font-face {
    font-family: "Queulat-Black";
    src: url("../fonts/Queulat-Black-5307110.otf");
}

@font-face {
    font-family: "Queulat-Bold";
    src: url("../fonts/Queulat-Bold-5307114.otf");
}

@font-face {
    font-family: "Queulat-Bold-Italic";
    src: url("../fonts/Queulat-BoldItalic-5307116.otf");
}

@font-face {
    font-family: "Queulat-Light";
    src: url("../fonts/Queulat-Light-5307118.otf");
}

@font-face {
    font-family: "Queulat-Medium";
    src: url("../fonts/Queulat-Medium-5307122.otf");
}

@font-face {
    font-family: "Queulat-Regular";
    src: url("../fonts/Queulat-Regular-5307126.otf");
}

@font-face {
    font-family: "Queulat-Regular-Italic";
    src: url("../fonts/Queulat-RegularItalic-5307129.otf");
}

@font-face {
    font-family: "Avenir-bold";
    src: url("../fonts/URWForm-Bold-5535809.ttf");
}

@font-face {
    font-family: "Avenir-Light-Italic";
    src: url("../fonts/URWForm-LightItalic-5535788.ttf");
}

@font-face {
    font-family: "Avenir-Medium";
    src: url("../fonts/URWForm-Medium-5535799.ttf");
    font-weight: 400;
    font-style: normal;
}

html {
    font-family: 'Avenir-Medium';
}

@supports (font-variation-settings: normal) {
    html {
        font-family: 'Inter var', sans-serif;
    }
}

h1 {
    font-family: Queulat-Black !important;
    font-weight: 700 !important;
    font-size: 44px !important;
    line-height: 53px !important;
    color: #110045 !important;
}

h2 {
    font-family: Queulat-Black !important;
    font-weight: 700 !important;
    font-size: 36px !important;
    line-height: 58px !important;
    color: #110045 !important;
    line-height: 1.2 !important;
}

h3 {
    font-family: Queulat-Bold !important;
    font-weight: 700 !important;
    font-size: 28px !important;
    line-height: 36px !important;
    color: #110045 !important;
}

h4 {
    font-family: Queulat-Bold !important;
    font-weight: 600 !important;
    font-size: 24px !important;
    line-height: 29px !important;
    color: #110045 !important;
}

h5 {
    font-family: Avenir-bold !important;
    font-weight: 600 !important;
    font-size: 20px !important;
    line-height: 24px !important;
    text-transform: uppercase;
}

h6 {
    font-family: Avenir-bold !important;
    font-weight: 600 !important;
    font-size: 28px !important;
    line-height: 30px !important;
    text-transform: uppercase;
}

p {
    color: #110045;
}

p1 {
    font-family: Avenir-Medium !important;
    font-weight: 400 !important;
    font-size: 18px !important;
    line-height: 30px !important;
}

p2 {
    font-family: Avenir-Medium !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: 26px !important;
}

.le_page {
    color: #110045;
}

.le_link {
    cursor: pointer;
    text-decoration: underline;
    color: #462F68;
}

.le_Check {
    color: #790DA2;
    height: 20px;
    width: 20px;
    accent-color: #FF8C00;
}

/*For Course Bundle Tiles */
/*.bundle-container {
    height: 293px !important;
    min-width: 294px;
    border-radius: 20px;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    isolation: isolate;
    height: 235px;
    box-shadow: 1px 1px 15px #1100459c;
}*/



/*.courseNumber {
    color: #17988A;
    font-size: 20px;
}*/

.courseName {
    font-family: Avenir-bold;
    font-style: normal;
    font-weight: 900;
    font-size: 20px;
    line-height: 130%;
    color: #110045;
}
/*.panel-category {
    font-family: Queulat-Regular;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 145%;
    color: #790DA2;
}*/
/* Bundle Tiles End */

input[type='radio']:after {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    top: -2px;
    left: -1px;
    position: relative;
    background-color: #ffffff;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 2px solid #180043;
}

input[type='radio']:hover:after {
    border: 1px solid #F48A34;
}

input[type='radio']:checked:after {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    top: -2px;
    left: -1px;
    position: relative;
    background-color: #ffa500;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 0px solid white;
}

.inputLabel {
    font-family: Avenir-Medium;
    font-weight: 500;
}

* {
    box-sizing: border-box;
}



.loading-spinner {
    -webkit-animation-play-state: running;
    animation-play-state: running;
    opacity: 1;
    position: relative;
}

@-webkit-keyframes spinner {
    0% {
        transform: translate3d(-50%, -50%, 0) rotate(0deg);
    }

    100% {
        transform: translate3d(-50%, -50%, 0) rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        transform: translate3d(-50%, -50%, 0) rotate(0deg);
    }

    100% {
        transform: translate3d(-50%, -50%, 0) rotate(360deg);
    }
}

.loading-spinner.-paused {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
    opacity: 0.2;
    transition: opacity linear 0.1s;
}

.loading-spinner::before {
    -webkit-animation: 1.5s linear infinite spinner;
    animation: 1.5s linear infinite spinner;
    -webkit-animation-play-state: inherit;
    animation-play-state: inherit;
    border: solid 3px #f2f2f2;
    border-bottom-color: #790DA2;
    border-radius: 50%;
    content: "";
    height: 30px;
    left: 50%;
    opacity: inherit;
    position: absolute;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
    width: 30px;
    will-change: transform;
}




.formalignleft {
    min-width: 250px;
    float: left;
    padding-top: 12px;
}

.formalignright {
    width: 60%;
    float: left;
}

.button-red {
    background-color: #892525;
    color: white;
    border-color: black;
    font-size: 15px;
    border-width: 1px;
    padding: 7px 15px;
    font-weight: bold;
}

.section-container {
    max-width: 1400px !important;
}

.errormessage {
    color: #ffffff;
    padding: 2px 0px 2px 0px;
    font-family: Avenir-Medium;
    font-size: 18px;
}

.errormessageBox {
    color: #ffffff;
    padding: 2px 0px 2px 0px;
    font-family: Avenir-bold;
    font-size: 18px;
    border-color: #FF0000;
    background: #FF0000;
    border-radius: 10px !important;
}

.ordermessage {
    color: darkorange;
    padding: 2px 0px 2px 0px;
    font-family: Avenir-Medium;
    font-size: 18px;
}

.message {
    color: #ffffff;
    padding: 2px 0px 2px 0px;
    font-family: Avenir-Medium;
    font-size: 18px;
}

div.header-container * {
    box-sizing: content-box;
}

@media (max-width: 920px) {
    .headerLabel {
        display: none;
    }
}

.headerPosition {
    position: fixed;
    z-index: 99;
    background-color: #f5f5f5;
    height: 45px;
}

input[type="text"]:disabled {
    background: #dddddd;
}

.input-validation-error {
    border: solid 1px #a94442 !important;
    background-color: #d8a9a9 !important;
}

.menuLink-leigreen {
    color: #005957;
    cursor: pointer;
}


/* System buttons with LEI green */
/*.btn-leiLightGreen {
    background-color: #DBE9E6;
    color: #0A5B58;
    font-weight: 700;
    transition: all 0.25s;
    cursor: pointer;
    outline: none !important;
}

.btn-leigreen:hover {
    color: #ffffff !important;
    box-shadow: 5px 5px 19px 0px #7777776e;
}

.btn-leigreen:visited {
    color: #ffffff;
    box-shadow: 5px 5px 17px 0px #777;
}

.btn-leigreen:focus {
    color: #ffffff !important;
    box-shadow: none;*/ /*5px 5px 17px 0px #777;*/
/*}

.btn-leigreen {
    border-radius: 4px !important;
    background-color: #005957;
    border: none;
    color: #ffffff;
    transition: all 0.25s;
    cursor: pointer;
    outline: none !important;
    font-family: 'Inter' !important;
    font-weight: 600;
    font-size: 18px;
}

    .btn-leigreen:hover {
        color: #ffffff !important;
        box-shadow: 3px 3px 5px 0px #7777779c;
    }

    .btn-leigreen:visited {
        color: #ffffff;
        box-shadow: 5px 5px 17px 0px #777;
    }

    .btn-leigreen:focus {
        color: #ffffff !important;
        box-shadow: none;*/ /*5px 5px 17px 0px #777;*/
/*}

.btn-leigreen-inactive {
    border-radius: 4px;
    background-color: #005957a3;
    border: none;
    color: #e8e8e8;
    transition: all 0.25s;
    cursor: default;
}*/

.leLink {
    color: #110045;
    text-decoration: underline;
}

    .leLink :focus, .leLink :hover {
        color: #110045 !important;
        text-decoration: underline;
    }

.submitButtonPurple {
    background-color: #110045;
    font-family: Avenir-Medium;
    font-style: normal;
    line-height: 16px;
    text-align: center !important;
    color: #FFFFFF !important;
    margin-top: 5px;
    min-width: 148px;
    border-radius: 10px !important;
    height: 57px;
    border-style: solid !important;
    border-width: 2px !important;
    border-color: #110045 !important;
    transition: 0.3s all;
}

    .submitButtonPurple:hover {
        color: #110045 !important;
        background-color: transparent;
        border-style: solid !important;
        border-width: 2px !important;
        border-color: #110045 !important;
    }

.submitButtonPurple-inactive {
    background-color: #1100457d;
    font-family: Avenir-Medium;
    font-style: normal;
    /*    font-size: 12px;
*/ line-height: 16px;
    text-align: center;
    color: #FFFFFF;
    margin-top: 5px;
    min-width: 148px;
    border-radius: 10px !important;
    height: 57px;
    transition: all 0.25s;
    cursor: default;
    border-style: none;
}

.submitButtonPurpleMedium {
    background-color: #110045;
    font-family: Avenir-Medium;
    font-style: normal;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    color: #FFFFFF;
    min-width: 148px;
    border-radius: 10px !important;
    border-style: solid !important;
    border-width: 2px !important;
    border-color: #110045 !important;
    transition: 0.3s all;
}

    .submitButtonPurpleMedium:focus, .submitButtonPurpleMedium:hover {
        color: #110045 !important;
        background-color: transparent;
        border-style: solid !important;
        border-width: 2px !important;
        border-color: #110045 !important;
    }

    .submitButtonPurpleMedium:visited {
        color: #ffffff;
        box-shadow: 3px 3px 5px 0px #7777779c;
    }

.submitButtonPurpleMedium-inactive {
    background-color: #1100457d;
    font-family: Avenir-Medium;
    font-style: normal;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    color: #FFFFFF;
    min-width: 148px;
    border-radius: 10px !important;
}

.submitButtonPurpleSmall {
    background-color: #110045;
    font-family: Avenir-Medium;
    font-style: normal;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    color: #FFFFFF;
    border-radius: 10px !important;
}

    .submitButtonPurpleSmall:focus, .submitButtonPurpleSmall:hover {
        color: #110045 !important;
        background-color: transparent;
        border-style: solid !important;
        border-width: 2px !important;
        border-color: #110045 !important;
    }

    .submitButtonPurpleSmall:visited {
        color: #ffffff;
        box-shadow: 3px 3px 5px 0px #7777779c;
    }


.submitButtonPurpleSmall-inactive {
    background-color: #A298B4;
    font-family: Avenir-Medium;
    font-style: normal;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    color: #FFFFFF;
    border-radius: 10px !important;
}

.submitButtonOrange {
    background: #FF8C00;
    font-family: Avenir-Medium;
    font-style: normal;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    color: #110045;
    margin-top: 5px;
    min-width: 148px;
    border-radius: 10px !important;
    height: 57px;
}

    .submitButtonOrange:hover {
        color: #110045 !important;
        background-color: transparent;
        border-style: solid !important;
        border-width: 2px !important;
        border-color: #ff8c00 !important;
    }

    .submitButtonOrange:focus, .submitButtonOrange:hover {
        color: #110045 !important;
        box-shadow: none;
    }

    .submitButtonOrange:visited {
        color: #110045;
        box-shadow: none;
    }

    .submitButtonOrange:focus {
        color: #110045 !important;
        box-shadow: none;
    }

.submitButtonOrangeInactive {
    background: #FF8C00;
    opacity: 0.4;
    font-family: Avenir-Medium;
    font-style: normal;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    color: #110045;
    margin-top: 5px;
    min-width: 148px;
    cursor: default;
    border-radius: 10px !important;
    border-style: solid !important;
    border-width: 2px !important;
    border-color: #110045 !important;
    transition: 0.3s all;
    height: 57px;
}

.submitButtonOrangeMedium {
    background-color: #FF8C00;
    font-family: Avenir-Medium !important;
    font-style: normal;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    color: #110045;
    margin-top: 5px;
    min-width: 148px;
    border-radius: 10px !important;
    border-style: solid !important;
    border-width: 2px !important;
    border-color: #ff8c00 !important;
    transition: 0.3s all;
}

    .submitButtonOrangeMedium:focus {
        color: #ff8c00 !important;
    }

    .submitButtonOrangeMedium:hover {
        color: #110045 !important;
        background-color: transparent;
        border-style: solid !important;
        border-width: 2px !important;
        border-color: #ff8c00 !important;
    }

    .submitButtonOrangeMedium:visited {
        color: #110045 !important;
        /*        background: #ffffff;
*/ border-style: solid !important;
        border-width: 2px !important;
        border-color: #ff8c00 !important;
    }

    .submitButtonOrangeMedium:focus {
        color: #110045 !important;
        box-shadow: none;
    }

.submitButtonWhiteSmall {
    background-color: #110045;
    font-family: Avenir-Medium;
    font-style: normal;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    color: #FFFFFF;
    border-radius: 10px !important;
}

.requiredInput {
    border-color: #FF0000;
    border-style: solid;
    border-width: 2px;
}

.focusAttention {
    color: #FF0000;
    font-weight: bold;
    font-size: 16px;
}
/* System buttons with LEI red */
.btn-leired {
    border-radius: 10px !important;
    background-color: #892525;
    border: none;
    color: #ffffff;
    transition: all 0.25s;
    cursor: pointer;
    outline: none !important;
}

    .btn-leired:hover {
        color: #ffffff !important;
        box-shadow: 3px 3px 5px 0px #7777779c;
    }

    .btn-leired:visited {
        color: #ffffff;
        box-shadow: 3px 3px 5px 0px #7777779c;
    }

    .btn-leired:focus {
        color: #ffffff !important;
        box-shadow: none;
    }

.btn-leired-inactive {
    border-radius: 4px;
    border-style: solid;
    border-color: #892525;
    border-width: 1px;
    background-color: #8925259e;
    border: none;
    color: #e8e8e8;
    cursor: default;
}

.ddl-leigreen {
    border-radius: 4px;
    background-color: #005957;
    border: none;
    color: #ffffff;
    transition: all 0.25s;
    cursor: pointer;
}

    .ddl-leigreen:focus {
        color: #ffffff !important;
        background-color: #005957 !important;
    }

    .ddl-leigreen:hover {
        color: #005957 !important;
        background-color: #ffffff !important;
    }

.div-leigreen:hover {
    box-shadow: 5px 5px 17px 0px #777;
    border-radius: 4px;
}

.courseLinkLMS {
    font-size: 15px;
    font-weight: 600;
    color: #110045 !important;
    font-family: Avenir-Medium;
    text-decoration: underline;
    transition: box-shadow 0.3s ease;
}

    .courseLinkLMS:hover {
        box-shadow: 0 2px 8px rgba(17, 0, 69, 0.3);
    }

.actionList {
    font-size: 15px;
    font-weight: 600;
    color: #110045 !important;
    font-family: Avenir-Medium;
}

    .actionList:hover {
        background-color: #FFD19D !important;
    }

.list-leigreen {
    font-size: 15px;
    font-weight: 600;
    color: #005957 !important;
}

    .list-leigreen:hover {
        background-color: #DCE8E4 !important;
    }

.lei_GreenLink {
    color: #239D8D;
    font-size: 18px;
    line-height: 21.78px;
    font-weight: 700;
    font-family: 'Inter';
}

.lei_WhatIsThis {
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    cursor: pointer;
}

.lei_MessageLink {
    color: #ffffff;
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    font-family: 'Inter';
    cursor: pointer;
    text-decoration: underline;
}

/* Input forms */
.le_input_row {
    margin: 10px 0 0px !important;
}

.floating-input:focus, .floating-select:focus {
    outline: none;
    border-bottom: 2px solid #110045;
}

.inputForm {
    width: 100%
}

/*Collapsable Sections*/
.wrap-collabsible {
    margin: 0px 15px 4px 15px;
}

.hideCheckbox {
    display: none;
}

.toggle:checked + .lbl-toggle-category::before {
    transform: rotate(90deg) translateX(-3px);
}

.toggle:checked + .lbl-toggle-category + .collapsible-content {
    max-height: 275vh;
}

.toggle:checked + .lbl-toggle-category {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    background-color: #FFD19D;
    color: #110045;
}

.toggle:checked + .lbl-toggle {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    background-color: #FFE7CD;
    font-family: 'Queulat-Black' !important;
}

.lbl-toggle-category {
    color: #110045;
    display: block;
    font-weight: bold;
    font-family: Montserrat;
    font-size: 18px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.5s ease-out;
    border-color: #FF8C00;
    border-style: solid;
    border-radius: 20px;
    border-width: 1px;
    font-family: Queulat-Black;
}

    .lbl-toggle-category:hover {
        color: #110045;
        background-color: #FFD19D;
    }

    .lbl-toggle-category::before {
        content: ' ';
        display: inline-block;
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
        border-left: 5px solid currentColor;
        vertical-align: middle;
        margin-right: .7rem;
        transform: translateY(-2px);
        transition: transform .2s ease-out;
    }

.lbl-toggle {
    color: #110045;
    display: block;
    font-weight: bold;
    font-size: 18px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.5s ease-out;
    border-color: #ff8c00;
    border-style: solid none none none;
    text-transform: none;
    font-family: Queulat-Black !important;
    border-radius: 5px;
}

    .lbl-toggle:hover {
        color: #110045;
        background-color: #FFE7CD;
    }

    .lbl-toggle::before {
        content: ' ';
        display: inline-block;
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
        border-left: 5px solid currentColor;
        vertical-align: middle;
        margin-right: .7rem;
        transform: translateY(-2px);
        transition: transform .2s ease-out;
    }

.no-toggle {
    background-color: #FFD19D !important;
    cursor: default;
    border-radius: 10px;
}

    .no-toggle::before {
        display: none;
        transform: rotate(90deg) translateX(-3px);
    }

.no-toggle-purple {
    background-color: #110045 !important;
    color: #ffffff;
    cursor: default;
    border-radius: 10px;
}
    .no-toggle-purple:hover {
        color: #ffffff;
    }

    .no-toggle-purple::before {
        display: none;
        transform: rotate(90deg) translateX(-3px);
    }

.toggle:checked + .lbl-toggle::before {
    transform: rotate(90deg) translateX(-3px);
}
/*.lbl-toggle {
    color: #110045;
    display: block;
    font-weight: bold;
    font-family: 'Montserrat' !important;
    font-size: 18px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.5s ease-out;
    border-color: #ff8c00;
    border-style: solid none none none;
    text-transform: none;
}

    .lbl-toggle:hover {
        color: #110045;
        background-color: #DCE8E4;
    }

    .lbl-toggle::before {
        content: ' ';
        display: inline-block;
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
        border-left: 5px solid currentColor;
        vertical-align: middle;
        margin-right: .7rem;
        transform: translateY(-2px);
        transition: transform .2s ease-out;
    }

.no-toggle {
    background-color: #FFD19D !important;
    cursor: default;
}

    .no-toggle::before {
        display: none;
        transform: rotate(90deg) translateX(-3px);
    }

.toggle:checked + .lbl-toggle::before {
    transform: rotate(90deg) translateX(-3px);
}
*/
.non-collapsible-content {
    transition: max-height .25s ease-in-out;
}

.collapsible-content {
    max-height: 0px;
    overflow: hidden;
    transition: max-height .25s ease-in-out;
}
    /*
.toggle:checked + .lbl-toggle + .collapsible-content {
    max-height: 275vh;
}

.toggle:checked + .lbl-toggle {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    background-color: #FFE7CD;
}
*/
    .collapsible-content .content-inner {
        border-bottom-left-radius: 7px;
        border-bottom-right-radius: 7px;
        padding: .5rem 1rem;
    }

    /* For purple banner to display on accordion header */
.toggle-banner {
    position: absolute;
    top: 0;
    left: 0;
    background: #110045;
    color: white;
    padding: 0px 10px;
    font-size: 12px;
    font-weight: bold;
    border-top-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
.row.lbl-toggle {
    position: relative; /* Ensures absolute positioning works inside */
    padding-top: 17px; /* Adds space to prevent content overlap */
}

/*Toggle Buttons*/
.radio-toolbar {
    margin: 10px 10px 10px 0px;
}

    .radio-toolbar input[type="radio"] {
        opacity: 0;
        position: fixed;
        width: 0;
    }

    .radio-toolbar label {
        display: inline-block;
        background-color: #ddd;
        padding: 10px 20px;
        font-family: sans-serif, Arial;
        font-size: 16px;
        border-radius: 4px;
    }

        .radio-toolbar label:hover {
            background-color: #DCE8E4;
            cursor: pointer;
        }

    .radio-toolbar input[type="radio"]:checked + label {
        background-color: #005958;
        color: #ffffff;
        box-shadow: 5px 5px 17px 0px #777;
    }

.programLink {
    text-decoration: underline;
    color: #110045;
    font-weight: bold;
}

    .programLink:hover {
        color: #333;
        text-decoration: underline;
        color: #110045;
        font-weight: bold;
    }


.le-account-menu {
    right: 0px !important;
    width: 230px !important;
    padding: 15px 15px 15px 0px !important;
    z-index: 999;
}

.le-login-menu {
    right: 0px !important;
    width: 300px !important;
    padding: 25px 15px !important;
}

/*.le-menu-link {
    color: #005958;
    display: inline-block;
    position: relative;
    height: 32px;
    line-height: 32px;
    border-radius: 4px;
    font-size: .9em;
    text-transform: none;
    text-decoration: none;
    text-align: left;
    padding: .2em 0em .1em .25em;
    font-weight: 300;
    width: 165px;
    margin-left: 10px;
}*/
/*.le-menu-link {
    padding-left:10px !important;
}*/

.toggle_menu_text {
    color: #110045;
    text-transform: capitalize;
    font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif;
    /*    font-size: 20px;
*/ padding-top: 12px;
}

.toggle_menu_link {
    color: #110045 !important;
    text-transform: capitalize;
    font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif;
    font-size: 15px;
    padding-top: 12px;
    text-decoration: underline;
    font-weight: normal;
}

    .toggle_menu_link:hover {
        color: #110045 !important;
        background-color: #dce8e4 !important;
    }

.ddl_text {
    color: #110045 !important;
    text-transform: capitalize;
    font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif;
    font-size: 12px;
}

    .ddl_text:hover {
        color: #110045 !important;
        text-transform: capitalize;
        font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif;
        font-size: 12px;
        text-decoration: unset;
    }

.ddl_transparent {
    background-color: #f0f8ff00;
    font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif;
    font-weight: bold;
    padding: 0px;
    border: 0px;
    outline: none !important;
}

    .ddl_transparent:hover {
        color: #110045 !important;
    }

    .ddl_transparent:focus {
        color: #110045 !important;
        box-shadow: 0 0 0 0.1em #00595785;
    }

.upQuestion {
    margin-left: 4px !important;
}

.errorMessagesBox {
    background: #FF0000;
    border-width: 2px;
    border-radius: 10px;
    box-shadow: 0px 3px 8px 0px #9e9e9e82;
    padding: 5px;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.systemMessagesBox {
    background: #1ABC9C;
    border-width: 2px;
    border-radius: 10px;
    box-shadow: 0px 3px 8px 0px #9e9e9e82;
    padding: 5px;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.warningMessagesBox {
    background: #FF8C00;
    border-width: 2px;
    border-radius: 10px;
    box-shadow: 0px 3px 8px 0px #9e9e9e82;
    padding: 5px;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    color: #180043;
}

/* Package admin assign page*/

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* semi-transparent */
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    pointer-events: all; /* block clicks */
}

#overlayContent {
    text-align: center;
    color: #333;
    background-color: white;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}
#overlayInProgress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* semi-transparent */
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    pointer-events: all; /* block clicks */
}
#overlayContentInProgress {
    text-align: center;
    color: #333;
    background-color: white;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}
.spinner {
    margin: 0 auto 15px;
    width: 40px;
    height: 40px;
    border: 5px solid #ccc;
    border-top: 5px solid #110045;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}