.copy {
    font-family: "ProximaNova-Regular", "HelveticaNeue", "Helvetica Neue", "HelveticaNeueRoman", "HelveticaNeue-Roman", "Helvetica Neue Roman", "TeXGyreHerosRegular", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif;
}

.large {
    font-size: 32px;
    font-weight: 500;
}

.medium {
    font-size: 24px;
    font-weight: 500;
}

.regular {
    font-size: 18px;
    font-weight: 500;
}

.lightblue {
    color: #003c72;
}

.lightbluebg {
    background-color: #5cbbff;
}

.darkblue {
    color: #003c72;
}

.darkbluebg {
    background-color: #003c72;
}

.white {
    color: #003c72;
}

.whitebg {
    background-color: #ffffff;
    /*color:#000;
    padding: 20px;*/
}

.gray {
    color: #666;
}

.box {
    padding: 14px;
}

.roundedbox {
    border-radius: 20px;
    padding: 14px;
    color: #ffffff !important;
    padding-left: 45px !important;
}

.main-container {
    background-color: #003c72 !important;
    color: #ffffff !important;
}

.main-container-oe {
    background-color: #ffffff;
    color: #003c72;
}

.secondary-container-oe {
    background-color: #ffffff;
    padding: 14px;
}

input[type=text],
input[type=email],
input[type=password],
input[type=search],
select,
textarea {
    box-shadow: inset 0 0px 7px rgba(0, 0, 0, 0.1) !important;
    -webkit-appearance: none;
    width: 98% !important;
    padding-top: 6px;
    padding-bottom: 6px;
    border-radius: 0.25rem;
    border: 1px solid #ced4da;
}

.contact-form {
    background-color: #fff !important;
}

select {
    background-image: url(https://www.envisionexperience.com/assets/envision2015/images/select-arrow-down.png) !important;
    background-position: right 12px center !important;
    background-repeat: no-repeat !important;
    border-radius: 0.25rem !important;
    height: 34px;
}

.vertical-line {
    border-left: 1.5px solid #FFF;
    height: 70px;
    width: 20px;
    margin-left: 10px;
    margin-right: -20px;
    margin-top: 25px;
}

#enrollment-header {
    background-color: #fff !important;
    color: #000;
    max-width: 1100px;
    padding: 20px;
}

.whitebg {
    background-color: #fff !important;
    color: #000 !important;
    padding: 20px;
}

.contact-form {
    background-color: #fff !important;
}

.btn {
    border-radius: 12px !important;
}

.container {
    /*padding: 0 10px 0 75px;*/
    padding: 70px 10px 40px 10px;
}

.scholar-selector {
    min-height: 100px;
    height: auto !important;
    min-width: 335px;
}

.login-with-credentials-text {
    min-height: 45px;
    font-family: 'ProximaNova-Bold';
    font-size: 20px;
}


@media (max-width: 768px) {
    input[type=text],
    input[type=email],
    input[type=password],
    input[type=search],
    textarea {
        border-radius: 0px !important;
        box-shadow: inset 0 3px 7px rgba(0, 0, 0, 0.1) !important;
        -webkit-appearance: none;
        width: auto;
    }


    .container {
        padding: 10px;
    }
}

@media (max-width: 450px) {
    .container {
        padding: 5px;
    }

    a.btn, button {
        font-size: 12px;
        width: 100% !important;
    }

    .login-with-id-text {
        min-height: 20px !important;
        font-size: 16px !important;
    }

    .login-with-credentials-text {
        min-height: 20px !important;
        font-size: 16px !important;
    }

    .vertical-line {
        display: none !important;
    }

    .available-enrollments-button {
        margin-right: 0px !important;
    }

}

.scholar-radiobutton {
    margin-top: 4px !important;
    margin-right: 3px !important;
}
input[type=checkbox] {
    width: 20px !important;
    height: 20px !important;
    vertical-align: bottom;
}



/* *********************************** */
/* Custom Checkbox Starts */
/* *********************************** */
/* Customize the label (the container) */
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 25px;
    /*margin-bottom: 12px;*/
    cursor: pointer;
    font-size: 1rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding-top: 2px;
    font-weight: 500;
}

.checkbox-container-no-left-padding {
    padding-left: 0px;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border: 1px solid #2196F3;
    border-radius: 3px;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark {
    background-color: #2196F3;
    border: 1px solid #2196F3;
    border-radius: 3px;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
    left: 6px;
    top: 1px;
    width: 6px;
    height: 14px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* *********************************** */
/* Custom Checkbox Ends */
/* *********************************** */





/* *********************************** */
/* Custom RadioButton Starts */
/* *********************************** */
/* Customize the label (the container) */
.radiobutton-container {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 1rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

}

    /* Hide the browser's default radio button */
    .radiobutton-container input {
        position: absolute;
        opacity: 0;
    }

/* Create a custom radio button */
.radiobutton-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 17px;
    width: 17px;
    background-color: #eee;
    border-radius: 50%;
    border: 1px solid #2196F3;
}

/* On mouse-over, add a grey background color */
.radiobutton-container:hover input ~ .radiobutton-checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radiobutton-container input:checked ~ .radiobutton-checkmark {
    background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radiobutton-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.radiobutton-container input:checked ~ .radiobutton-checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.radiobutton-container .radiobutton-checkmark:after {
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}


/* *********************************** */
/* Custom RadioButton Ends */
/* *********************************** */

.white-label {
    color: #545454 !important;
    font-size: 0.975rem;
    padding: 0px 0 3px !important;
    font-weight: 400 !important;
}

.ProductProertiesIndented {
    padding-left: 35px;
    font-style: italic;
}

#ProductProertiesTable, #ProductProertiesTable tr, #ProductProertiesTable td, #ProductProertiesTable div {
    padding: 0px;
    border: 0px;
}

@media (min-width: 840px) {
    header {
        height: 150px;
    }
        header .logo {
            bottom: 0px;
        }
}

@media (min-width: 1000px) {
    header {
        height: 150px;
    }
        header .logo {
            bottom: 0px;
        }
}

/*.intro-panel.generic {
    min-height: 0px !important;
}*/

.container {
    padding-top: 25px;
}

.eppObject {
    width: 100%;
    height: 300px;
}

/*@media (max-width: 840px) {
    .eppObject {
        width: 100%;
        height: 100%;
        -webkit-overflow-scrolling: touch;
        overflow: auto;
    }
}*/


@media (max-width: 1024px) {
    .eppDivForPDF {
        display: none !important;
    }

    .eppDivForPDF-mobile {
        display: inline !important;
    }
}
@media (min-width: 1025px) {

    .eppDivForPDF {
        display: inline !important;
    }

    .eppDivForPDF-mobile {
        display: none !important;
    }

}



.wrapper {
    display: flex;
    height: 20vh;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.btnOrangeGlow {
    animation: glowing 1300ms infinite;
}

    .btnOrangeGlow:hover {
        background-color: #fff !important;
    }

@-webkit-keyframes glowing {
    0% {
        background-color: #E07426;
        -webkit-box-shadow: 0 0 3px #E07426;
    }

    50% {
        background-color: #e07a26;
        -webkit-box-shadow: 0 0 15px #E07426;
    }

    100% {
        background-color: #E07426;
        -webkit-box-shadow: 0 0 3px #E07426;
    }
}

@keyframes glowing {
    0% {
        background-color: #E07426;
        box-shadow: 0 0 3px #E07426;
    }

    50% {
        background-color: #e07a26;
        box-shadow: 0 0 15px #E07426;
    }

    100% {
        background-color: #E07426;
        box-shadow: 0 0 3px #E07426;
    }
}

.svg-btn {
    display: block;
    width: 230px;
    height: 230px;
    margin-left: 10px;
}

svg {
    fill: blue;
    -webkit-animation: glowing-polygon 1300ms infinite;
    -moz-animation: glowing-polygon 1300ms infinite;
    -o-animation: glowing-polygon 1300ms infinite;
    animation: glowing-polygon 1300ms infinite;
}

@-webkit-keyframes glowing-polygon {
    0% {
        fill: #E07426;
        -webkit-filter: drop-shadow( 0 0 3px #E07426);
    }

    50% {
        fill: #e07a26;
        -webkit-filter: drop-shadow( 0 0 15px #e07a26);
    }

    100% {
        fill: #E07426;
        -webkit-filter: drop-shadow( 0 0 3px #E07426);
    }
}

@keyframes glowingPolygon {
    0% {
        fill: #E07426;
        filter: drop-shadow( 0 0 3px #E07426);
    }

    50% {
        fill: #e07a26;
        filter: drop-shadow( 0 0 15px #e07a26);
    }

    100% {
        fill: #E07426;
        filter: drop-shadow( 0 0 3px #E07426);
    }
}



.btnOrangeGlowFI {
    animation: fadeIn linear 7s;
    -webkit-animation: fadeIn linear 7s;
    -moz-animation: fadeIn linear 7s;
    -o-animation: fadeIn linear 7s;
    -ms-animation: fadeIn linear 7s;
}

@keyframes fadeIn {
    0% {
        opacity: 0.2;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0.2;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0.2;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0.2;
    }

    100% {
        opacity: 1;
    }
}

@-ms-keyframes fadeIn {
    0% {
        opacity: 0.2;
    }

    100% {
        opacity: 1;
    }
}

.clsWaitListSession
{
    padding-left: 25px;
    font-size: small;
}