﻿/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

/* prefixed by https://autoprefixer.github.io (PostCSS: v7.0.26, autoprefixer: v9.7.3) */

/* Sticky footer styles
-------------------------------------------------- */
@font-face {
    font-family: 'Azo Sans';
    font-style: normal;
    font-weight: 100;
    font-display: swap;
    src: local('Azo Sans Thin'), url('/fonts/AzoSansThin.woff') format('woff');
}

@font-face {
    font-family: 'Azo Sans';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: local('Azo Sans Light'), url('/fonts/AzoSansLight.woff') format('woff');
}

@font-face {
    font-family: 'Azo Sans';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: local('Azo Sans Italic'), url('/fonts/AzoSansItalic.woff') format('woff');
}

@font-face {
    font-family: 'Azo Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Azo Sans Regular'), url('/fonts/AzoSansRegular.woff') format('woff');
}

@font-face {
    font-family: 'Azo Sans';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local('Azo Sans Medium'), url('/fonts/AzoSansMedium.woff') format('woff');
}

@font-face {
    font-family: 'Azo Sans';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Azo Sans Bold'), url('/fonts/AzoSansBold.woff') format('woff');
}

@font-face {
    font-family: 'Azo Sans';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: local('Azo Sans Black'), url('/fonts/AzoSansBlack.woff') format('woff');
}
/*Set all font on website to Azo; May want to change this later*/
* {
    font-family: 'Azo Sans',sans-serif;
}
/* Provide sufficient contrast against white background */
a {
    color: #0366d6;
}

a {
    color: inherit; /* blue colors for links too */
    text-decoration: inherit; /* no underline */
}

    a:hover {
        color: inherit; /* blue colors for links too */
        text-decoration: inherit; /* no underline */
    }

    a.navbar-brand {
        white-space: normal;
        text-align: center;
        word-break: break-all;
    }


button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

html {
    position: relative;
    font-size: 14px;
}

html, body {
    min-height: 100%;
    height: 100%
}


input:disabled {
    color: -internal-light-dark-color(rgb(84, 84, 84), rgb(170, 170, 170));
    cursor: default;
    background-color: -internal-light-dark-color(rgb(235, 235, 228), rgb(45, 45, 45));
}

main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: white;
    min-height: 100vh;
    width: 100%;
}

ul.navbar-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#back-btn, #home-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: white;
    color: #999999;
    border-radius: 5px;
    border: 1px solid #003765;
    width: 100px;
    height: 40px;
    margin-top: 10px;
    -webkit-box-shadow: 0px 0px 0px #003765;
    box-shadow: 0px 0px 0px #003765;
}

    #back-btn:hover, #home-btn:hover {
        /*        -webkit-transform: scale(1.02, 1.02);
        -ms-transform: scale(1.02, 1.02);
        transform: scale(1.02, 1.02);*/
        -webkit-transition: .12s;
        -o-transition: .12s;
        transition: .12s;
        -webkit-box-shadow: 0px 3px 3px #003765;
        box-shadow: 0px 3px 3px #003765;
        z-index: 100;
        cursor: pointer;
    }

#backToTop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 50px;
    z-index: 99;
    font-size: 14px;
    font-weight: 900;
    border: none;
    outline: none;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    /*background: url('../images/icons/icon-backtotop.svg');*/
    background-color: #0083BB;
    background-repeat: no-repeat;
    background-position: center;
    padding: 5px;
    height: 64px;
    width: 64px;
    /*margin: 10px;*/
    border: white 2px solid;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;

    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */
}

    #backToTop:hover {
        z-index: 99;
        background-color: white;
        color: #0083BB;
        border: #0083BB 2px solid;
    }

#error-img {
    -webkit-animation: spinInfinite;
    animation: spinInfinite;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(20px)
    }

    100% {
        opacity: 1;
        transform: translateY(0px)
    }
}

@keyframes pulse-once {
    0% {
        -webkit-transform: scale(01.1);
        transform: scale(01.1);
        opacity: 0;
    }

    50% {
        opacity: .75;
    }

    100% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
}

@-webkit-keyframes spinInfinite {
    0% {
        -webkit-transform: translateX(0) rotate(0deg);
        transform: translateX(0) rotate(0deg);
    }

    25% {
        -webkit-transform: translateX(-200px) rotate(-90deg);
        transform: translateX(-200px) rotate(-90deg);
    }

    50% {
        -webkit-transform: translateX(0px) rotate(0);
        transform: translateX(0px) rotate(0);
    }

    75% {
        -webkit-transform: translateX(200px) rotate(90deg);
        transform: translateX(200px) rotate(90deg);
    }

    100% {
        -webkit-transform: translateX(0) rotate(0deg);
        transform: translateX(0) rotate(0deg);
    }
}

@keyframes spinInfinite {
    0% {
        -webkit-transform: translateX(0) rotate(0deg);
        transform: translateX(0) rotate(0deg);
    }

    25% {
        -webkit-transform: translateX(-200px) rotate(-90deg);
        transform: translateX(-200px) rotate(-90deg);
    }

    50% {
        -webkit-transform: translateX(0px) rotate(0);
        transform: translateX(0px) rotate(0);
    }

    75% {
        -webkit-transform: translateX(200px) rotate(90deg);
        transform: translateX(200px) rotate(90deg);
    }

    100% {
        -webkit-transform: translateX(0) rotate(0deg);
        transform: translateX(0) rotate(0deg);
    }
}

@keyframes tile-glow {
    0% {
        -webkit-box-shadow: 0px 0px 3px #2b8fbf;
        box-shadow: 0px 0px 3px #2b8fbf;
        border: 1px solid #2b8fbfaa;
    }

    50% {
        -webkit-box-shadow: 0px 0px 8px #2b8fbf;
        box-shadow: 0px 1px 3px #2b8fbfee;
    }

/*    95% {
        -webkit-box-shadow: 0px 0px 8px #2b8fbf;
        box-shadow: 0px 21px 8px #2b8fbf;
    }*/

    100% {
        -webkit-box-shadow: 0px 0px 3px #2b8fbf;
        box-shadow: 0px 0px 3px #2b8fbf;
        border: 1px solid #2b8fbfaa;
    }
}

#logo-full {
    display: block;
}

#logo-only {
    display: none;
}

#page-template {
    height: 100%;
    width: 100%;
    max-width: 1200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 400;
}

#profile-icon {
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}

    #profile-icon:hover {
        -webkit-transition: .2s;
        -o-transition: .2s;
        transition: .2s;
    }

#profile-icon-text {
    
    z-index:10;
    visibility: hidden;
    position: absolute;
    margin: 5px 5px 0 0px;
    color: white !important;
    background: #444444;
    border-radius: 4px;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    font-weight: 100;
    font-size: 16px;
    
}

#profile-icon:hover ~ #profile-icon-text {
    visibility: visible;
}

#studentAgreement-form {
    padding: 0px;
}


/*back button container / Catalog notify me what available f */
.back-btn-cont, .home-btn-cont {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding-left: 10px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 5px;
    margin-bottom: 20px;
    /*left: 20px;*/
    top: 20px;
}
.home-btn-cont {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center
}

.back-btn-cont-full {
    padding: 20px 0;
    width: 100%;
    max-width: 1000px;
}

.back-icon {
}

.back-text, .home-text {
    color: #003765;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 4px;
}

/*smfix added line-hight: 21px to make the ellSupport page.*/
.beta-testing {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 90%;
    max-width: 1100px;
    border-radius: 0 0 10px 10px;
    background-color: #5A7CCB;
    color: black;
    /* margin: 10px; */
    padding: 10px 7px;
    /* border-radius: 15px; */
    /* font-family: "Source Sans Pro"; */
    font-family: "Segoe UI";
    line-height: 21px;
    text-align: center;
    color: #333;
    margin-bottom: 10px;
}

.beta-test-description {
    font-family: 'Azo Sans', sans-serif;
    max-width: 90%;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color: white;
}

.beta-test-description {
    width: 100%;
    border-radius: 0px;
}

.beta-testing {
    width: 95%;
}

    .beta-testing a {
        color: black;
    }

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    -webkit-box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}


.btn-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-direction: row;
}
    .btn-container button.button-gap {
        gap: 10px;
        margin: 10px 20px;
    }


    .btn-primary {
        color: #fff;
        background-color: #003765;
        border-color: #003765;
        padding: .375rem 0.95rem;
    }

        .btn-primary:hover {
            /*        -webkit-transform: scale(1.01);
        -ms-transform: scale(1.01);
        transform: scale(1.01);*/
            -webkit-transition: .12s;
            -o-transition: .12s;
            transition: .12s;
            -webkit-box-shadow: 0px 6px 4px #aaaaaa;
            box-shadow: 0px 6px 4px #aaaaaa;
            z-index: 100;
            cursor: pointer;
        }

    .centered-xy-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin: auto auto;
    }

    /*Colors for Status*/
    .color-applied, .color-darkblue {
        color: #104777;
    }

    .color-gold {
        color: gold;
    }

    .color-completed {
        color: #4A2D7D;
    }

    .color-enrolled {
        color: #3D4E9C;
    }

    .color-inelligible {
        color: #999999;
    }

    .color-inProgress, .color-inReview {
        color: #FFA035;
    }

    .color-text {
        color: #141414;
    }

    .color-waitlist {
        color: #0083BB;
    }

    .color-white {
        background: white;
    }

.gold-page-title {
    color: gold;
}
.white-page-title {
    color: white;
}
.gold-page-title, .white-page-title {
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: 400;
    text-transform: uppercase;
}
.white-page-subheading {
    text-align: center;
    font-size: 20px;
    font-weight: 300;
    color: white;
    margin: 20px;
}

    /*left and right parts of the tile*/

    .detail-cont, .icon {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 150px;
        height: 100%;
    }

    .detail-cont {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    /*top part of tile */
    .detail-top {
        font-weight: 200;
    }

    .dot-container{
        width:160px;
        height:50px;
        display:flex;
        justify-content:space-between;
        align-items:center;
    }

    .dot, .dot-selected {
        height: 16px;
        width: 16px;
        background-color: #fff;
        border-radius: 50%;
        border: #2c1b4b 1px solid;
        display: inline-block;
    }

    .dot-selected {
        background-color: #4a2d7d;
    }

    .errorMessageiOS {
        padding: 20px;
        font-weight: 500;
        font-size: 16px;
        color: #b03c3c;
        list-style: none;
    }


.form-container-small, .welcome-container {
    max-width: 700px;
}

.form-container-med{
    max-width: 900px;
}

    .form-select:disabled, .form-input:disabled {
        cursor: default;
        background-color: rgb(235, 235, 228);
    }


    .footer {
        position: static;
        bottom: 0;
        width: 100%;
        white-space: nowrap;
        line-height: 60px; /* Vertically center the text there */
        background: white;
    }

    .goog-te-gadget-simple {
        border-radius: 5px;
        padding: 3px;
    }

    .footer-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        /* flex-direction: column; */
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin: auto auto;
    }

    .half-label-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
    }

        .half-label-container .label-container {
            margin-left: 10px;
        }

            .half-label-container .label-container:first-child {
                margin-left: 0;
            }
    
    .head-line {
        font-size: 18px;
        font-weight: 300;
    }

    /* */
    .header-cont {
        width: 100%;
        padding: 5px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .hero-ylw {
        color: #FFD300;
        font-size: 65px;
        line-height: 65px;
        font-family: 'Azo Sans', sans-serif;
        font-weight: 300;
        margin-top: 140px;
    }
    /* icon on left*/
    .tile-icon {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        border-radius: 5px;
        height: 100%;
        width: 100px;
    }

    .icon-info {
        background-image: url('/images/icons/icon-info.png');
        height: 24px;
        width: 24px;
        background-size: cover;
    }

    .icon-progress {
        height: 100%;
        width: 100px;
        background-image: url('/images/icons/icon-in-progress.png');
    }

    .icon-complete {
        height: 100%;
        width: 100px;
        background-image: url('/images/icons/icon-completed.png');
    }

    /*
    OGFIX TODO SET IMAGE SIZES
    XL 1000px
    L 500px
    M 250px
    S 100px
    XS 50PX


.image-large{
    width:500px;
    height:500px;
    background-size:contain;
}

*/

    @-webkit-keyframes fade-in {
        from {
            opacity: 0;
        }

        to {
            opacity: 1
        }
    }

    @keyframes fade-in {
        from {
            opacity: 0;
        }

        to {
            opacity: 1
        }
    }


.image-portal-remove,
.image-portal-profile,
.image-portal-invitation,
.image-portal-certification,
.image-portal-sms,
.image-badges,
.image-canvas,
.image-course,
.image-edfund,
.image-elt,
.image-explore,
.image-journey,
.image-profile-m-cert,
.image-marketplace,
.image-medical,
.image-mobile-DPC,
.image-mobile-HS,
.image-mobile-MTM,
.image-mobile-PAN,
.image-pathway,
.image-payment,
.image-profile-a,
.image-profile-in,
.image-profile-m,
.image-profile-w,
.image-skills,
.image-sms
{
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 100px;  
    -webkit-animation: fade-in .2s linear;
    animation: fade-in .2s linear;
}

    .image-portal-remove{
        background-image: url('../images/icons/portal/portal-remove.svg')
    }
    .image-portal-profile {
       background-image: url('../images/icons/portal/portal-profile.svg');
    }
    .image-portal-invitation {
        background-image: url('../images/icons/portal/portal-invitation.svg')
    }
    .image-portal-certification {
        background-image: url('../images/icons/portal/portal-certification.svg')
    }
    .canvas-icon {
        background-image: url('../images/icons/portal/portal-canvas.svg');
    }
    .image-portal-sms{
        background-image: url('../images/icons/portal/portal-sms.svg')
    }

    .job-marketplace-icon {
        background-image: url('../images/icons/portal/portal-job-marketplace.svg');
    }

    .journey-icon {
        background-image: url('../images/icons/portal/portal-journey.svg');
    }

    .payment-icon {
        background-image: url('../images/icons/portal/portal-payment.svg');
    }

    .surveys-and-assessments-icon {
        background-image: url('../images/icons/portal/portal-surveys-and-assessments.svg');
    }

    .image-badges {
        background-image: url('/images/icons/badges.svg');
    }

    .image-canvas {
        background-image: url('/images/icons/canvas-by-instructure-logo.svg');
    }

    .image-course {
        background-image: url('/images/icons/course-work.svg');
    }

    .image-edfund {
        background-image: url('/images/icons/education-fund.svg');
    }

    .image-elt {
        background-image: url('/images/icons/english-language-tool.svg');
    }

    .image-email {
        background-image: url('/images/icons/email.svg');
    }

    .image-explore {
        background-image: url('/images/icons/explore.svg');
    }

    .image-journey {
        background-image: url('/images/icons/journey.svg');
    }

    .image-logo-only {
        background-image: url('/images/futuro-logo-only.svg')
    }

    .image-marketplace {
        background-image: url('/images/icons/marketplace.svg');
    }

    .image-medical {
        background-image: url('/images/icons/medical-assistant.svg');
    }

    .image-pathway {
        background-image: url('/images/icons/pathway.svg');
    }

    .image-payment {
        background-image: url('/images/icons/payment.svg');
    }

    .image-profile-a {
        background-image: url('/images/icons/profile-nonbinary.svg');
    }

    .image-profile-in {
        background-image: url('/images/icons/invitation.svg');
    }

    .image-profile-m {
        background-image: url('/images/icons/profile-man.svg');
    }

    .image-profile-w {
        background-image: url('/images/icons/profile-woman.svg');
    }
    .image-profile-m-cert {
        background-image: url('/images/icons/certification.svg');
    }

    .image-sms {
        background-image: url('/images/icons/sms-opt-status.svg')
    }

    .student-agreement {
        background-image: url('/images/icons/medical-assistant.svg');
    }

    .image-profile-i {
        background-image: url('/images/icons/profile-icon.svg');
        background-size: inherit;
        height: 35px;
        width: 36px;
        background-repeat: no-repeat;
        margin: auto 15px;
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s;
        border-radius: 35px;
    }

        .image-profile-i:hover {
            -webkit-box-shadow: 0 0 6px #0083BB;
            box-shadow: 0 0 6px #0083BB;
        }

    .image-skills {
        background-image: url('/images/icons/skills-assesment.svg');
    }

    .image-offset {
        background-position-y: 3px;
    }
    /*  M O B I L E   I M A G E S   */
    .image-mobile-DPC {
        background-image: url('/images/icons/mobile-direct-patient-care.svg');
    }

    .image-mobile-HS {
        background-image: url('/images/icons/mobile-healthcare-support.svg');
    }

    .image-mobile-MTM {
        background-image: url('/images/icons/mobile-medical-testing-monitoring.svg');
    }

    .image-mobile-PAN {
        background-image: url('/images/icons/mobile-pandemic.svg');
    }

    .icon-notStarted {
        height: 100%;
        width: 100px;
        background-image: url('/images/icons/icon-open.png');
    }

    .icon-text-dark {
        width: 100%;
        text-align: center;
        font-size: 18px;
    }

    .portal-announcement{
        background-image: url('/images/icons/portal/portal-announcement.svg')
    }

    .label-container, .divider, .divider-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    }

    .label-container {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        width: 100%;
        /*max-width: 500px;*/
    }

        .label-container > label, .label-container > .divider-container, .label-container > a {
            margin-bottom: 0 !important;
            margin-left: 7px;
        }

    .light-link {
        color: gold !important;
    }

    .dark-link {
        color: #4B6FBC !important;
        text-decoration: underline;
    }

.main-w-background {
    /*    background: linear-gradient( 0deg, rgba(22,72,96,0.8) 0%, rgba(41,141,188,1) 100%), url(/images/background-line-texture.jpg);
    ;
    background-position: bottom left;
    background-repeat: no-repeat;*/

    width: 100%;
    background-image: url('/images/blue-logo-piece-left-top.svg'), url('/images/blue-gradient.svg'); /* Pic A is on top */
    background-position: left, top left; /* A in center top, B in top-left */
    background-repeat: no-repeat, no-repeat;
    background-size: cover;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    /*align-items:first baseline;*/
}
.main-w-background-secondary {
    background: linear-gradient(180deg, #2080b0ee, #001C33cc), url(/images/background-dark-blue-closeup-tall.svg) !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: top !important;
}
    /*.main-w-background-dark {
    background: url(../images/background-dark-blue-purp-closeup.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}*/

    .main-jumbotron-w-background {
        background-color: #003765;
        background-image: url('images/background-transparent-portal.png'), -o-linear-gradient(left, #001C33, #003765);
        background-image: url('images/background-transparent-portal.png'), -webkit-gradient(linear, left top, right top, from(#001C33), to(#003765));
        background-image: url('images/background-transparent-portal.png'), linear-gradient(90deg, #001C33, #003765);
        background-repeat: no-repeat;
        background-position: center;
    }

    .nav-link {
        text-align: center;
        font-size: 18px;
        font-weight: 500;
        color: #0070aa !important;
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s;
    }

        .nav-link:hover {
            color: #003765 !important;
        }

    .navigation-link {
        text-align: left;
        font-weight: bold;
        font-size: 14px;
        line-height: 20px;
        font-family: open-sans, Verdana, Geneva, Tahoma, sans-serif;
        letter-spacing: 0;
        color: #29A1D6 !important;
        opacity: 1;
        text-transform: uppercase;
    }

    .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
        color: #fff;
        background-color: #1b6ec2;
        border-color: #1861ac;
    }

    .oops-desc {
        text-align: center;
        font-size: 24px;
        font-weight: 300;
    }

    .overflow-hidden {
        overflow: hidden;
    }

    .p-bold-md {
        text-align: center;
        font-weight: bold;
        font-size: 16px;
        line-height: 20px;
        font-family: 'Azo Sans', sans-serif;
        letter-spacing: 0;
        color: #5D5D5D;
        height: 55px;
        margin: unset;
    }

    .p-md {
        font-size: 16px;
        line-height: 20px;
        font-family: 'Azo Sans', sans-serif;
        letter-spacing: 0;
        color: #5D5D5D;
        height: 150px;
        margin: unset;
    }

    /* Name of Each Page, My Education Plan, Payments & Services, My Journey.....*/
    .page-title {
        width: 100%;
        text-align: center;
        padding: 0px;
        font-size: 32px;
    }

    .page-subheading {
        font-size: 20px;
        font-weight: 300;
    }
    /*
    .page-subheading {
        color: #141414;
        font-size: 18px;
        font-weight: 300;
        margin: 10px;
    }

    .page-subheading:first-of-type {
        text-align: center;
        font-size: 22px;
        font-weight: 400;
    }

*/

    .portal-empty-state {
        width: 100%;
        min-height: 500px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: space-around;
        -ms-flex-pack: space-around;
        justify-content: space-around;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
    }

        .portal-empty-state > div {
            margin: 20px 0;
        }

    .profile-icon {
        height: 250px;
        width: 175px;
    }

    .profile-icon-cont {
        -webkit-box-pack: space-around;
        -ms-flex-pack: space-around;
        justify-content: space-around;
    }

    .program-change-item {
        color: #767676;
    }

    .program-title {
/*        color: #104777;
*/        margin-top: 20px;
        font-size: 28px;
    }

    .program-title-cont {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: baseline;
        -ms-flex-align: baseline;
        align-items: baseline;
        width: 100%;
    }

    .salary-container {
        margin: 20px;
        height: 150px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
        flex-flow: column wrap;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

        .salary-container .btn {
            background-color: gold;
            color: #333;
        }

    .sidebar-title {
        color: white;
        font-size: 28px;
        line-height: 28px;
    }
    
    .submit.btn:hover, .submit:hover{
        color:#dddddd;
    }

.submit, .submit-inverted {
    max-width: 300px;
    min-width: 200px;
    min-height: auto;
    width: 250px;
    background: #4a2d7d;
    color: white;
    font-size: 18px;
    border: #4a2d7d 2px solid;
    border-radius: 5px;
    border-style: none;
    cursor: pointer;
    padding: 10px;
    margin: 10px auto 20px;
    text-align: center;
}

    .submit:hover {
        background: #2a0d5d;
        color: white;
    }

    .submit-inverted {
        border: #4a2d7d 2px solid;
        background: white;
        color: #4a2d7d;
    }
        .submit-inverted:hover {
            background: #4a2d7d;
            color: white;
        }
    .submit-inverted-no-margin {
        margin:0px;
    }

    .submit-secondary {
        background: darkgrey;
        color: white;
    }

    .submit-secondary:hover {
        background: grey;
    }

    .submit-btn-subtext {
        font-weight: 300;
        font-size: 18px;
    }

    /* Headers like My Education Plan, My Programs, My Courses, */
    .tile-titles {
    }
    
    .tile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        background: white;
        margin: 5px 0;
        padding: 5px;
        border-radius: 5px;
        border: 2px solid #AAAAAA;
        -webkit-box-shadow: -1px 2px 3px #aaaaaa;
        box-shadow: -1px 2px 3px #aaaaaa;
        max-height: 400px;
        min-height: 100px;
    }

    /*.tile-header, .tile-subheader, .detail-bottom, .detail-top, .page-title, .program-title {
            font-family: 'Azo Sans',sans-serif;
        }*/
    .tile-btn {
        background: gold;
        border-radius: 5px;
        padding: 10px 10px 5px 10px;
        min-width: 150px;
        text-align: center;
        text-transform: uppercase;
        color: #104777;
        font-weight: 500;
        -webkit-transition: .2s;
        -o-transition: .2s;
        transition: .2s;
    }

        .tile-btn:hover, .preview-apply-btn:hover, .preview-alert-btn:hover {
            -webkit-transition: .3s;
            -o-transition: .3s;
            transition: .3s;
            color: gold;
            Background: #104777;
        }



    .tile-btn-cont {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: auto;
    }

    .tile-desc, .tile-btn-cont {
        padding: 10px;
    }

    .tile-glow {
/*        -webkit-animation: tile-glow;
        animation: tile-glow;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        -webkit-animation-duration: 5s;
        animation-duration: 10s;
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
        transition: .2s;*/
        border: 2px solid rgba(144, 238, 144, .75);
    }

    .tile-header {
        font-size: 24px;
        font-weight: 500;
        line-height: normal;
    }

    .tile-subheader {
        font-size: 16px;
        font-weight: normal;
        line-height: normal;
        color: #333333;
    }

    .title-bold-dark-lg {
        font-size: 30px;
        line-height: 35px;
        font-family: 'Azo Sans', sans-serif;
        font-weight: 700;
        letter-spacing: 0;
        color: #003765;
        opacity: 1;
        margin-bottom: 18px;
        margin-top: 20px;
    }

    .title-bold-dark-md, .title-bold-light-md {
        font-size: 20px;
        line-height: 20px;
        margin: 10px 0;
        font-family: 'Azo Sans', sans-serif;
        font-weight: 700;
        letter-spacing: 0;
        color: #003765;
    }

    .title-bold-light-md {
        color: white;
    }

    .title-dark-lg {
        font-size: 25px;
        line-height: 30px;
        font-family: 'Azo Sans', sans-serif;
        font-weight: 400;
        letter-spacing: 0;
        color: #003765;
        opacity: 1;
        /*margin-bottom: 25px;*/
        text-transform: uppercase;
    }

    .font-bold {
        font-weight: 700;
    }
    .font-medium {
        font-weight: 500;
    }

    .font-light {
        font-weight: 400;
    }

    .title-light-md {
        font-size: 20px;
        line-height: 20px;
        margin-bottom: 15px;
        font-family: 'Azo Sans', sans-serif;
        font-weight: 400;
        letter-spacing: 0;
        color: #1499D3;
        text-transform: uppercase;
        opacity: 1;
    }

    .welcome-container {
        background:none !important;
        padding: 2em 20px 0.5em;
        animation: fade-in .75s ease-in;
    }
        .welcome-container + .form-container {
            animation-delay: 1s;
            animation: fade-in 1s ease-in;
        }
    .welcome-banner{
        display:flex;
        align-items: center;
        flex-direction:column;
    }

    .welcome-header, .welcome-header-g{
        font-size: 36px; 
        color: white; 
        font-weight: 300; 
        text-align: left; 
        text-transform: uppercase; 
        line-height: 1.1;
    }
    .welcome-header-g {
        color: Gold;
        
        font-weight: 500;
    }
    .welcome-subheader {
        font-size: 22px;
        max-width: 800px;
        font-weight: 300;
        margin: 15px 0;
        line-height: 1.3;
        color:white;
    }

    @media (min-width: 767px) {
        #google_translate_element {
            position: absolute;
            top: 100px;
            z-index: 10000;
            right: 15px;
            background: white;
            padding: 5px;
            border-radius: 4px;
            animation: fade-in .5s ease-in;
        }

        html {
            font-size: 16px;
        }
    }

    @media (max-width:767px) {
/*        main{
            padding: 10PX;
        }*/
        ul {
            padding-inline-start: 20px;
        }

        #backToTop {
            bottom: 20px;
            right: 20px;
            height: 50px;
            width: 50px;
            z-index: 10;
        }
        /*
    #logo-full {
        display: none;
    }

    #logo-only {
        display: block;
    }*/

        #page-template{
        }

        #profile-icon:hover ~ #profile-icon-text {
            visibility: hidden;
        }

        #studentAgreement-form {
            padding: 10px;
            min-width: 325px;
        }

        #tile-cont {
            padding: 20px;
            margin: 0;
            border-radius: 0;
        }

        .back-text {
            font-size: 13px;
        }

        .back-btn-cont-full {
/*            padding: 5px 0px 0 5px;
*/            width: 100%;
        }

        .beta-test-description {
            max-width: 90%;
            font-size: 12px;
            color: white;
            line-height: 1.3;
            text-align: center;
        }

        .beta-testing {
            width: 100%;
            border-radius: 0px;
            margin: 0px;
        }

        .btn-container {
            flex-direction: column;
            justify-content: center;
        }
        
        .main-w-background {
            min-height: 100vh;
        }

        .mobile-hide {
            display: none;
        }

        .oops-desc {
            font-size: 18px;
        }

        .page-subheading {
            width: 100%;
            /*        max-width: 767px;*/
            padding: 5px;
            font-size: 18px;
        }

        .page-title {
            font-size: 23px;
            margin: 20px 0;
        }

        .portal-empty-state {
            overflow-y: hidden;
            min-height: 100%;
            width: 90%;
            -webkit-box-pack: start;
            -ms-flex-pack: start;
            justify-content: flex-start;
        }

        .submit, .submit-inverted{
            width:100%;
            max-width:100%;
            margin: 10px 0 40px;
        }

        .welcome-container {
            padding: 3em 2em 1em;
        }

        .welcome-banner {
            font-size: 24px;
        }

        .welcome-header, .welcome-header-g {
            font-size: 32px;
        }

        .welcome-header-g {
            font-size: 28px;
        }

        .welcome-subheader {
            font-size: 18px;
        }
    }

    @media (max-width:550px) {
        #logo-full {
            display: block;
        }

        #logo-only {
            display: none;
        }
    }

.red-text{
    color:#FF0000;
}

.rounded-2 {
    border-radius:8px;
}

.help-topics {
    gap:24px;
    margin-top:24px;
}

p{
    padding:0;
    margin:0;
}

.help-card {
    width: 340px;
    height:385px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media(min-width:800px) {
    .help-card {
        width: 380px;
        height:400px;
    }
}

@media(min-width:1200px) {
    .help-card {
        width: 400px;
        height: 440px;
    }
        .help-topics {
        gap: 32px;
        margin-top: 24px;
    }


    .help-container {
        width: 1000px;
    }
}

@media(min-width:1600px) {
    .help-container {
        width: 1400px;
    }
}

.lg-help-card li, .sm-help-card li {
    padding-bottom: 4px;
}

.md-icons {
    width: 58px;
    height: 58px;
}

.help-topics-text {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
    color: #104777;
}

.note-email {
    margin-top: -12px;
    padding-left: 20px;
}

.topics-text {
    color:#104777
}

.text-purple-upper {
    text-transform: uppercase;
    color: rebeccapurple;
}





