

:root {
    /* Type */
    --type-primary: #323130;
    --type-secondary: #605E5C;
    --type-disabled: #A19F9D;
    /* Dividers & Borders */
    --body-divider: #EDEBE9;
    --input-border: #8A8886;
    --input-hover-border: #323130;
    /* Theme */
    --theme-primary: #0078D4;
    --theme-lighter-alt: #EFF6FC;
    --theme-lighter: #DEECF9;
    --theme-light: #C7E0F4;
    --theme-tertiary: #2B88D8;
    --theme-dark-alt: #106EBE;
    --theme-dark: #005A9E;
    --theme-darker: #004578;
    --theme-30dtli-light: #D59DFF;
    --theme-30dtli-dark: #3B2E59;
    /*    Errors & Status*/
    --status-error: #A80000;
    --status-success: #107C10;
    /* Overlays */
    --overlay-light: #FFFFFF66;
    --overlay-dark: #00000066;
    /* Greys */
    --white: #ffffff;
    --grey10: #FAF9F8;
    --grey20: #F3F2F1;
    --grey30: #EDEBE9;
    --grey40: #E1DFDD;
    --grey50: #D2D0CE;
    --grey60: #C8C6C4;
    --grey90: #A19F9D;
    --grey110: #8A8886;
    --grey130: #605E5C;
    --grey150: #3B3A39;
    --grey160: #323130;
    --grey190: #201F1E;
    /* Card Box Shadows */
    --depth-4: 0px 0.3px 0.9px rgba(0, 0, 0, 0.1), 0px 1.6px 3.6px rgba(0, 0, 0, 0.13);
    --depth-8: 0px 0.6px 1.8px rgba(0, 0, 0, 0.1), 0px 3.2px 7.2px rgba(0, 0, 0, 0.13);
    --depth-16: 0px 1.2px 3.6px rgba(0, 0, 0, 0.1), 0px 6.4px 14.4px rgba(0, 0, 0, 0.13);
    --depth-64: 0px 4.8px 14.4px rgba(0, 0, 0, 0.18), 0px 25.6px 57.6px rgba(0, 0, 0, 0.22);
    /* Font Stack */
    --segoe-ui: Segoe UI,SegoeUI,"Helvetica Neue",Helvetica,Arial,sans-serif;
}

/* A11y contrast pass = primary over white or theme-dark-alt over grey20  */

/* HTML & Body */

html {
    font-size: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    background: white !important;
    font-family: Segoe UI,SegoeUI,"Helvetica Neue",Helvetica,Arial,sans-serif !important;
    font-weight: 400 !important;
    line-height: 1.25rem !important;
    color: var(--type-primary) !important;
    font-size: 0.875rem !important;
}

.bg-grey {
    background-color: var(--grey20);
}

.bg-grey-light {
    background-color: var(--grey10);
}

.bg-blue {
    background-color: var(--theme-darker);
}

.status-error {
    color: var(--status-error);
}

/* Type */

p {
    font-size: 0.875rem !important;
    margin-bottom: 1rem !important;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 1rem 0 !important;
    font-family: Segoe UI,SegoeUI,"Helvetica Neue",Helvetica,Arial,sans-serif !important;
    font-weight: 600 !important;
}

h1 {
    font-size: 2.625rem !important;
    line-height: 3.25rem !important;
}

h2 {
    font-size: 2rem !important;
    line-height: 2.5rem !important;
}

h3 {
    font-size: 1.75rem !important;
    line-height: 2.25rem !important;
}

h4 {
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
}

h5 {
    font-size: 1.125rem !important;
    line-height: 1.5rem !important;
}

h6 {
    font-size: 1rem !important;
    line-height: 1.375rem !important;
}

.hero-title {
    font-size: 2.625rem;
    line-height: 3.25rem;
}

.greeting-title {
    font-size: 2rem;
    line-height: 2.5rem;
}

.page-title {
    font-size: 1.75rem;
    line-height: 2.25rem;
}

.pane-header {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.header {
    font-size: 1.125rem;
    line-height: 1.5rem;
}

.subject-title {
    font-size: 1rem;
    line-height: 1.375rem;
}

small, .text_small {
    font-size: 0.75rem !important;
    line-height: 1rem !important;
}

.text-caps {
    font-size: 0.75rem !important;
    letter-spacing: .4em !important;
    text-transform: uppercase !important;
}

.sk-privacy {
    font-weight:600;
    font-size: 1.05rem;
}

/* Links */
a {
    color: var(--theme-primary);
    transition: all 200ms ease-in-out;
    text-decoration: underline;
    font-weight: 600;
}

    a:hover {
        color: var(--theme-dark);
    }

    a:visited {
        color: var(--theme-primary);
    }

    a.blue {
        color: var(--theme-dark-alt);
    }


/* Hero */

.hero {
    color: white;
    background-color: var(--theme-primary);
}


/* Cards */

.card {
    background: white !important;
    box-shadow: var(--depth-4) !important;
    border-radius: 2px !important;
    border: 0 !important;
    transition: all 200ms ease-in-out !important;
}

    .card:hover {
        background: white !important;
        box-shadow: var(--depth-16) !important;
        border-radius: 2px !important;
        border: 0 !important;
    }

.card-header {
    padding: 0 !important;
    margin-bottom: 0 !important;
    background-color: transparent !important;
    border-bottom: 0px solid rgba(0, 0, 0, 0) !important;
}

    .card-header:first-child {
        border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0 !important;
    }

.card-body {
    padding: 1.5rem !important;
}

/* Buttons */

.btn {
    padding: 8px 20px;
    border-radius: 2px;
    font-weight: 600;
}

    .btn:hover {
        text-decoration: underline;
    }

    .btn:focus {
        box-shadow: 0 0 0 1px rgb(0 0 0);
    }

.btn-primary {
    color: white;
    background-color: var(--theme-primary);
    border-color: var(--theme-primary);
    padding: 8px 20px;
    position: relative;
    border: 2px solid transparent;
    outline: 1px solid transparent;
    outline-offset: -3px;
    max-width: 100%;
    display: inline-block;
    overflow: hidden;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0;
    line-height: 1.3;
    transition: all 200ms ease-in-out;
    box-shadow: 0 4px 8px 0 transparent;
}

    .btn-primary:after {
        content: url(../Images/chevron-white.svg);
        margin-left: .5rem;
        display: inline-block;
    }

    .btn-primary:hover, .btn-primary:active {
        color: white;
        background-color: var(--theme-primary);
        border-color: var(--theme-primary);
    }

    .btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle {
        color: white;
        background-color: var(--theme-primary);
        border-color: var(--theme-primary);
        box-shadow: 0 0 0 0px rgb(0 0 0);
    }

    .btn-primary:focus, .btn-primary:active:focus {
        color: var(--theme-30dtli-dark);
        background-color: var(--theme-primary);
        border-color: var(--theme-primary);
        box-shadow: 0 0 0 0px rgb(0 0 0);
        outline: 1px solid white;
    }

    .btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show > .btn-primary.dropdown-toggle:focus {
        box-shadow: 0 0 0 0rem rgb(38 143 255 / 50%);
    }


.btn-link {
    border-radius: 0;
    padding: 8px 0px;
    color: var(--theme-dark-alt);
    text-decoration: none;
}

    .btn-link:after {
        content: url(../Images/chevron-blue.svg);
        margin-left: .5rem;
        display: inline-block;
    }

    .btn-link:hover {
        color: var(--theme-dark-alt);
    }

    .btn-link:focus {
        box-shadow: 0 0 0 2px rgb(0 0 0);
        background-color: var(--theme-lighter);
    }

/* Form */

label {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom:.25rem;
}

.danger{
    color: var(--status-error)
}

.required {
    color: var(--type-primary);
}

    .required::after {
        content: '*';
        color: var(--status-error);
        margin-left: .25rem;
        font-size: 1.125rem;
    }

input.req + span::after,
select.req + span::after {
    display: inline-block;
    content: "*";
    color: var(--type-primary);
    font-size: 19px;
    font-weight: bold;
    position: absolute;
    top: 0;
    right: 0;
}

.form-control {
    font-size: 0.875rem;
    color: var(--grey190);
    background-color: #fff;
    border: 1px solid var(--grey110);
    transition: all 200ms ease-in-out;
}

    .form-control:hover {
        color: var(--grey190);
        background-color: #fff;
        border: 1px solid var(--grey160);
        box-shadow: 0 0 0 0rem rgb(0 123 255 / 25%);
    }

    .form-control:focus {
        color: var(--grey190);
        background-color: #fff;
        border: 1px solid var(--theme-primary);
        box-shadow: 0 0 0 1px var(--theme-primary);
    }

    .form-control:invalid {
        color: var(--grey190);
        background-color: #fff;
        border: 2px solid var(--status-error);
        box-shadow: 0 0 0 0rem rgb(0 123 255 / 25%);
    }

.form-check-input {
    margin-top: 0;
}



input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 10%;
    width: 1.25rem;
    height: 1.25rem;
    border: 1px solid var(--grey190);
    transition: all 200ms ease-out;
    margin-right: 1rem;
    background-color: white;
    position: relative;
}


input[type="checkbox"]:checked {
    border: 1px solid var(--theme-primary);
    background-color: var(--theme-primary);
    outline: 3.5px solid white;
    outline-offset: -4.5px;
}

.form-check-input:checked[type=checkbox] {
    background-image: none;
}

input[type="checkbox"]:hover {
    border: 1px solid var(--grey190);
    background-color: var(--grey190);
    outline: 3.5px solid white;
    outline-offset: -4.5px;
}


form-check-input:focus {
    box-shadow: 0 0 0 0rem rgb(13 110 253 / 0%);
    margin-top: 0;
    filter: brightness(100%);
    outline: 3.5px solid white;
    outline-offset: -4.5px;
}

input[type="checkbox"]:focus::after {
    content: '';
    position: absolute;
    outline: 2px dashed var(--input-border);
    width: 24px;
    height: 24px;
    left: -3.25px;
    top: -2.25px;
}

.input-validation-error {
    color: var(--grey190);
    background-color: #fff;
    border: 2px solid var(--status-error);
    box-shadow: 0 0 0 0rem rgb(0 123 255 / 25%);
}

.field-validation-error {
    padding-top: .5rem;
}

/*Legacy Styles*/


hr {
    border-top: 1px solid #3C3C41; /* SASS overwrite */
    margin-top: 20px;
    margin-bottom: 20px;
}

i {
    font-family: 'Segoe MDL2 Assets';
    font-size: 12px;
}


/*.ms-btn {
    background: #0071C7;
    color: #fff;
    border: 0;
    padding: 6px 20px;
}

.ms-btn::after {
    background-image: none;
    border-color: currentColor;
    border-style: solid;
    border-width: 1px 1px 0 0;
    content: '';
    display: inline-block;
    height: 11px;
    margin-top: 6px;
    width: 11px;
    -ms-transform: rotate(45deg) translate(0,-50%);
    -o-transform: rotate(45deg) translate(0,-50%);
    -webkit-transform: rotate(45deg) translate(0,-50%);
    transform: rotate(45deg) translate(0,-50%);
    position: relative;
    vertical-align: middle;
    right: 4px;
}

.spacer40 {
    margin: 40px 0;
}


.form-check.custom-checkbox {
    padding-left: 0 !important;
    position: relative;
}

    .form-check.custom-checkbox .form-check-label {
        padding-left: 25px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

        .form-check.custom-checkbox .form-check-label input {
            cursor: pointer;
            opacity: 0;
            position: absolute;
            left: 0;
            z-index: 1;
            height: 20px;
            width: 20px;
        }

    .form-check.custom-checkbox .form-check-input {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }

    .form-check.custom-checkbox .form-check-label .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 20px;
        width: 20px;
        background-color: transparent;
        border: 1px solid #323130;
    }

        .form-check.custom-checkbox .form-check-label .checkmark::after {
            position: absolute;
            content: "";
            left: 12px;
            top: 12px;
            height: 0px;
            width: 0px;
            border-radius: 0;
            border: solid #000;
            border-width: 0 3px 3px 0;
            -webkit-transform: rotate(0deg) scale(0);
            -ms-transform: rotate(0deg) scale(0);
            transform: rotate(0deg) scale(0);
            opacity: 1;
        }

    .form-check.custom-checkbox .form-check-label input:checked ~ .checkmark {
        background-color: #0078d4;
        border: none;
        opacity: 1;
    }

        .form-check.custom-checkbox .form-check-label input:checked ~ .checkmark::after {
            -webkit-transform: rotate(45deg) scale(1);
            -ms-transform: rotate(45deg) scale(1);
            transform: rotate(45deg) scale(1);
            opacity: 1;
            left: 7px;
            top: 0px;
            width: 8px;
            height: 15px;
            border: solid #fff;
            border-width: 0 2px 2px 0;
            background-color: transparent;
            border-radius: 0;
        }

.dropdown .form-select{
    padding: 0 0.75rem;
}

label {
    display: inline !important;
    font-size: 1.1em;
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.align-center {
    text-align: center;
}
*/
.grayBG{
    background-color: #f2f2f2;
}

.blueBG, #regBannerError, #regBannerthx {
    margin-bottom: -50px;
}
    
    #regbannertext a{
/*        color: #fff;
        font-size: 11px;
        text-align: right;
        text-decoration: underline !important;*/
    }

    #epbTryNow {
        color: #ffffff !important;
    }


.text-error, #captchaErrorMessage, .field-validation-error {
    color: var(--status-error);
}

/*.country-error,
.email-error{
    color: #000;
}*/

.form-control + .text-error, select + .text-error, .country-error, #phoneErrorMessage {
    position: relative;
    top: -15px;
}

.g-recaptcha {
    margin-top: 20px;
}

.proDevTeamUrl {
    text-decoration: underline !important;
}


    /* -----------Home Page -----------*/
    #homeBanner {
    background-image: url("./Images/hero-img2.png");
    height: 200px;
    margin-bottom: 50px;
}

#homeBannerText {
    color: #ffffff;
    font-size: 30px;
    text-align: center;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}


ol {
    padding-left: 1.5em;
    padding-inline-start: 13px !important;
}

ol li {
    padding-left: 1.5em;
}

.h2Microsoft::before {
    content: url('../Images/microsoft_logo.svg');
    display: block;
    margin-bottom: 4px;
    margin-top: -8px;
}

.midPageTitle {
    margin-top: 1em;
}

/* ----------- Registration Form Page -----------*/

.regFormContainer {
    background-color: #0078d4;
}

#regFormBannerText {
    color: #ffffff;
    font-size: 30px;
    line-height: 20px;
}

.first {
    padding-bottom: 5px;
}

#regFormBannerText a {
    color: #fff !important;
}

#regFormBannerImg {
    /* background: url('../Images/registration-hero.svg')no-repeat; */
    height: 140px;
}

#proDevRegForm {
    margin-top: 0;
    padding: 32px 40px;
    border: 1px solid #000000;
}

.sm-margin-top {
    margin-top: 15px;
}
.sm-margin-right {
    margin-right: 15px;
}
.sm-margin-bottom {
    margin-bottom: 15px;
}
.sm-margin-left {
    margin-left: 15px;
}

#PhoneNumber {
    font-size: 0.75rem; /* Fix for EN-CA length of field. */
}

#kioskPrivacy {
    margin-top: 1.5em;
}

.kiosk-body {
    margin: 20px auto;
    border: 0px solid #000000;
    max-width: 780px;
    min-height: 400px;
    display:flex;
    flex-direction:column;
    justify-content: center;
    outline:0;
}

/* ----Social Buttons ----*/
#gitHubSignInFromPopover {
    background: #000000;
    color: #ffffff !important;
    text-decoration: none !important;
    border: 0;
    padding: 8px 33px 8px 18px;
}

    #gitHubSignInFromPopover::before {
        content: "";
        background-image: url(../Images/github.png);
        display: inline-block;
        height: 18px;
        width: 18px;
        margin-right: 10px;
        vertical-align: middle;
        margin-top: -4px;
    }

#linkedInSignInFromPopover {
    background: #0071C7;
    color: #ffffff !important;
    text-decoration: none !important;
    border: 0;
    padding: 8px 25px 8px 18px;
}

    #linkedInSignInFromPopover::before {
        content: "";
        background-image: url(../Images/linkedIn.png);
        display: inline-block;
        height: 18px;
        width: 18px;
        margin-right: 10px;
        vertical-align: middle;
        margin-top: -8px;
    }

#microsoftSignInFromPopover {
    background: #0071C7;
    color: #ffffff !important;
    text-decoration: none !important;
    border: 0;
    padding: 8px 18px;
}

    #microsoftSignInFromPopover::before {
        content: "";
        background-image: url(../Images/ms-logo.png);
        display: inline-block;
        height: 18px;
        width: 18px;
        margin-right: 10px;
        vertical-align: middle;
        margin-top: -4px;
    }

    #gitHubSignInFromPopover::after, #linkedInSignInFromPopover::after, #microsoftSignInFromPopover::after {
        background-image: none;
        border-color: currentColor;
        border-style: solid;
        border-width: 1px 1px 0 0;
        content: '';
        display: inline-block;
        height: 13px;
        margin-top: 5px;
        width: 13px;
        -ms-transform: rotate(45deg) translate(0,-50%);
        -o-transform: rotate(45deg) translate(0,-50%);
        -webkit-transform: rotate(45deg) translate(0,-50%);
        transform: rotate(45deg) translate(0,-50%);
        vertical-align: middle;
    }


#gitHubSignInFromPopover, #linkedInSignInFromPopover, #microsoftSignInFromPopover {
    margin-bottom: 20px !important;
    display: inline-block;
    font-weight: 100;
}


/*---- form controls ----*/
/*.form-control, .form-select {
    border-radius: 0 !important;
    margin-bottom: 20px;
    border: 2px solid #aaa;
    height: calc(2rem + 2px);
}*/

/*.form-select {
    border-radius: 0 !important;
}*/

#ratings1 label, #ratings2 label {
    margin-right: 15px;
}

#errorButton {
    display: inline-block;
    background: #fff;
    color: #3C3C41;
    border: 1px solid #3C3C41;
    border-radius: 0;
    padding: 5px 20px 7px;
    margin: 20px 20px 0 0;
    width: 120px;
}
    #errorButton::before {
        background-image: none;
        border-color: currentColor;
        border-style: solid;
        border-width: 0 0 1px 1px;
        content: '';
        display: inline-block;
        height: 10px;
        width: 10px;
        -ms-transform: rotate(45deg) translate(0,-50%);
        -o-transform: rotate(45deg) translate(0,-50%);
        -webkit-transform: rotate(45deg) translate(0,-50%);
        transform: rotate(45deg) translate(0,-50%);
        position: relative;
        vertical-align: middle;
        top: 2px;
        left: -8px;
    }

#tryagainButton {
    display: block;
    background: #0071C7;
    color: #fff;
    border: 1px solid #0071C7;
    border-radius: 0;
    padding: 5px 20px 7px;
    margin: 0;
    width: 120px;
}

/*    #tryagainButton::before {
        background-image: none;
        border-color: currentColor;
        border-style: solid;
        border-width: 0 0 1px 1px;
        content: '';
        display: inline-block;
        height: 10px;
        width: 10px;
        -ms-transform: rotate(45deg) translate(0,-50%);
        -o-transform: rotate(45deg) translate(0,-50%);
        -webkit-transform: rotate(45deg) translate(0,-50%);
        transform: rotate(45deg) translate(0,-50%);
        position: relative;
        vertical-align: middle;
        top: 2px;
        left: -8px;
    }*/

/* ----------- Submission Form Page -----------*/

#subFormContainer {
    background-color: #0078d4;
}

#subFormBannerText {
    color: #ffffff;
    font-size: 30px;
    line-height: 20px;
}

.first {
    padding-bottom: 5px;
}

#subFormBannerText p {
    font-size: 14px !important;
}

#subFormBannerText a {
    color: #fff !important;
}

#subFormBannerImg {
    background: url('./Images/submission-hero.svg')no-repeat;
    height: 140px;
}

#subDevRegForm {
    margin-top: 50px;
}

#subDevRegBtn {
    background: #0071C7 !important;
    color: #fff !important;
    border-radius: 0 !important;
}

    #subDevRegBtn::after {
        background-image: none;
        border-color: currentColor;
        border-style: solid;
        border-width: 1px 1px 0 0;
        content: '';
        display: inline-block;
        height: 13px;
        margin-top: 7px;
        width: 13px;
        -ms-transform: rotate(45deg) translate(0,-50%);
        -o-transform: rotate(45deg) translate(0,-50%);
        -webkit-transform: rotate(45deg) translate(0,-50%);
        transform: rotate(45deg) translate(0,-50%);
        position: relative;
        vertical-align: middle;
        right: 4px;
    }

/*.form-check {
    margin-bottom: 1rem;
}

.form-check-input {
    margin-top: 0.5em;
}

.form-check-input[type=checkbox] {
    border-radius: 0em;
}*/



    /* ----------- Confirmation Page -----------*/

    #qrCodeContainer {
    background: #0071C7 !important;
    padding: 20px 0;
}


/*---- QR Image ----*/

#qrImg {
    height: 200px;
    width: 200px;
    display: block;
    margin: 0 auto;
}


/* ----------- Error Pages -----------*/

#pdPortal {
    background: #0071C7;
    color: #fff;
}

/* ----------- Resource Page -----------*/

/*#thxBtn1, #thxBtn2 {
    background: #0071C7;
    border: 1px solid #0071C7;
    color: #fff !important;
    border: 0;
    padding: 5px 15px 7px;
    margin-top: 20px;
    display: inline-block;
}*/

/*#thxBtn1::after, #thxBtn2::after, #addBtn1::after, #addBtn2::after {
    content: '\203A\203A';
    display: inline-block;
}*/

/*#thxBtn1 {
    margin-bottom: 0 !important;
}

#thxBtn2 {
    margin-bottom: 0 !important;
}*/

#resources {
    padding: 40px 0;
}

/*#proDevRegBtn, .proDevSkipBtn, #btnCloseAlmostThere, #btnCloseThankYou, #btnCloseError, #errorButton, #tryagainButton, #subDevRegBtn, #thxBtn1, #thxBtn2 {
    font-size: 1.1em;
}*/

.resource-email {
    display: inline;
    max-height: 35px;
}

.resource-first {
    display: inline;
}

/* start with blank */
.skip-registered {
    display: none;
}
.registered {
    display: none;
}

/* ----------- Thank You / Almost There Page -----------*/

.opt-out {
    display: none;
}
.opt-in {
    display: none;
}

/* ----------- Almost There Page -----------*/
.stretch {
    padding-top: 40px;
}


/* ----------- Modal -----------*/


.modal {
    display: block;
    position: fixed;
    z-index: 1000;
    padding: 100px 20px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    backdrop-filter:blur(4px);
}

.modal-content {
    background-color: #fff;
    color: #3C3C41;
/*    font-size: 0.8rem;*/
/*    line-height: 1.9em;*/
    margin: auto;
    border-radius: 0;
    max-width: 780px;
    min-height: 400px;
    border: 0px solid var(--type-primary);
}

#modalThankYou .modal-content .container {
    width: 75%;
}

.modal-content .container {
    padding: 0;
    margin: auto;
}
    .modal-content .container h4 {
        font-size: 27px;
        font-weight: 100;
        margin-bottom: 12px;
    }

.modal-thank-you {
    display: none;
}

.modal-almost-there {
    display: none;
}

.modal-error {
    display: none;
}

.close {
    text-align: right;
    margin-left: auto;
    margin-right: 0;
    color: #0071C7;
    font-size: 38px;
    font-weight: bold;
    display: block;
    position: absolute;
    top: 2px;
    right: 12px;
    float: unset;
    opacity: 1;
}
    .close:hover {
        color: #0071C7;
    }

.modalHR {
    width: 100%;
    border-top: 5px solid #0071C7;
}

.modal-content, .kiosk-body {
    border: 0px solid #000000;
}

/*---------------- Spinner ---------------*/

.spinner-success {
    --border-width: 2px;
    margin: 0 auto;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    /* 0.5px's are needed to avoid hard-stopping */
    --mask: radial-gradient( farthest-side, transparent calc(100% - var(--border-width) - 0.5px), #000 calc(100% - var(--border-width) + 0.5px) );
    -webkit-mask: var(--mask);
    mask: var(--mask);
    /* we're using two half linear-gradient which is masked by the radial-gradient */
    background: linear-gradient(to top, rgba(12,110,253, 1), rgba(12,110,253, 0.5)) 100% 0/50% 100% no-repeat, linear-gradient(rgba(12,110,253, 0.5) 50%, transparent 95%) 0 0/50% 100% no-repeat;
    animation: spin 1s linear infinite;
}

.spinner-danger {
    --border-width: 2px;
    margin: 0 auto;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    /* 0.5px's are needed to avoid hard-stopping */
    --mask: radial-gradient( farthest-side, transparent calc(100% - var(--border-width) - 0.5px), #000 calc(100% - var(--border-width) + 0.5px) );
    -webkit-mask: var(--mask);
    mask: var(--mask);
    /* we're using two half linear-gradient which is masked by the radial-gradient */
    background: linear-gradient(to top, rgba(220,53,69, 1), rgba(220,53,69, 0.5)) 100% 0/50% 100% no-repeat, linear-gradient(rgba(220,53,69, 0.5) 50%, transparent 95%) 0 0/50% 100% no-repeat;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*---------------- Mobile ---------------*/


/*Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 576px) {
    #regFormBannerImg, #subFormBannerImg {
    display: none !important;
    }
    @supports (-webkit-touch-callout: none) {
        /* CSS specific to iOS devices */
        ol {
            padding-inline-start: 20px !important;
        }
    }

    @supports not (-webkit-touch-callout: none) {
        /* CSS for other than iOS devices */
        ol {
            padding-left: 1em !important;
        }
    }
}



@media (max-width: 767px) {
    
    #regbannertext{
        margin-bottom: 20px;
    }

    .modal {
        padding: 0;
    }

    .modal-content, .kiosk-body {
        border: 0px solid #000000;
    }
}

    /*Medium devices (tablets, less than 992px)*/
    @media (max-width: 992px) {
        .modal-error .modal-content {
            width: unset;
        }

        .modal-content .container {
            width: 90%;
        }

        .modal-content {
            font-size: 0.7rem;
        }

            .modal-content .container h4 {
                font-size: 20px;
                font-weight: 400;
                margin-bottom: 12px;
            }
    }

    @media (max-width: 1080px) {
        .container-fluid .col{
            padding: auto 3%;
            position: relative;
        }
    }

    /*Large devices (desktops, less than 1200px)*/
    @media (max-width: 1200px) {
    }

/*UHF*/

.c-uhfh > div:first-child .c-logo {
    padding: 16px 6px 16px 0 !important;
}

.c-uhf-nav-link {
    color: #262626 !important;
}

.c-uhfh.c-sgl-stck .c-search button {
    padding-top: 13px !important;
}

.c-uhfh > div:first-child .c-search input[type="search"] {
    background: rgba(255,255,255,0.2) !important;
    border-color: #000 !important;
    height: 36px !important;
}

/*Small devices (landscape phones, less than 768px)*/
@media (max-width: 859px) {

    .c-uhfh.c-sgl-stck .c-uhfh-actions .c-search button#search {
        margin-top: -8px;
    }
}

.modal-content, .kiosk-body, .kiosk-page {
    border: 0px solid #000000;
    outline:0;
}