@media (min-width: 992px) {
    #root-default-loading .green-bar {
        border-bottom: 7px solid #84d3ff;
    }
}

#root-default-loading.main-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-x: hidden;
}

#root-default-loading.main-container .qhealth__header__pre-header {
    max-height: 48px;
    height: 48px;
    padding: 0px;
    background-color: #005eb8;
}

#root-default-loading.main-container .qhealth__header__main {
    display: none;
}

@media (min-width: 992px) {
    #root-default-loading.main-container .qhealth__header__main {
        height: 120px;
        display: flex;
        justify-content: left;
        align-items: center;
    }
}

#root-default-loading .qhealth__header__brand {
    padding: 0px;
}

#root-default-loading .header-image {
    color: rgb(2, 42, 80);
    display: block;
    padding-right: 1.5rem;
    margin-right: 1.5rem;
}

#root-default-loading .sub-heading-xs {
    display: flex;
    justify-content: space-between;
    height: 48px;
}

#root-default-loading .mobile-logo {
    padding-top: 10px;
    padding-bottom: 10px;
}

@media (min-width: 992px) {
    #root-default-loading .sub-heading-xs {
        display: none !important;
    }
}
#root-default-loading .disabled-js-body {
    display: flex;
    justify-content: center;
}

#root-default-loading .error-page.qhealth__body {
    flex-direction: column;
    justify-items: center;
    padding: 40px 37.5px;
}

#root-default-loading .qhealth__body .error-page p {
    margin-top: 24px;
    font-size: 24px;
    line-height: 32px;
}

#root-default-loading .phone-icon {
    transform: rotate(-90deg);
    margin-right: 3px;
}

#root-default-loading a.qhealth__btn {
    border-width: 2px;
}

#root-default-loading .contact-us-section {
    display: flex;
    padding-top: 16px;
    min-width: 205px;
}

#root-default-loading .contact-us::after {
    content: "Other contact options";
}

#root-default-loading .contact-us-row::before {
    display: block;
    width: 0px;
}

#root-default-loading .contact-us-row::after {
    display: block;
    width: 0px;
}

@media (min-width: 992px) {
    #root-default-loading .qhealth__footer__cta-content {
        max-width: 225px !important;
    }
}

@media (min-width: 992px) {
    #root-default-loading .gov-trademark {
        margin-bottom: 10px !important;
    }
}

@media (max-width: 991px) {
    #root-default-loading a.qhealth__btn {
        min-width: 168px;
    }

    #root-default-loading .contact-us::after {
        content: "Contact options";
    }

    #root-default-loading .qhealth__footer.qhealth__footer--dark .qhealth__footer__column:last-of-type {
        border-top: 1px solid #63b1ff;
    }

    #root-default-loading .qhealth__footer__social,
    #root-default-loading .qhealth__footer__navigation {
        border-top: 2px solid #418fed;
    }
}

#root-default-loading .social-links {
    display: none;
}

#root-default-loading .copyright {
    order: 1;
}

#root-default-loading .privacy {
    order: 2;
}

#root-default-loading .right-to-info {
    order: 3;
}

#root-default-loading .accessiblity {
    order: 4;
}

#root-default-loading .other-languages {
    order: 5;
}

@media (min-width: 992px) {
    #root-default-loading .qhealth__footer.qhealth__footer--dark .qhealth__footer__navigation {
        border-right: 2px solid #418fed;
    }

    #root-default-loading .contact-us-column {
        min-width: 270px;
    }

    #root-default-loading .links-column {
        min-width: 195px;
    }
}

@media (min-width: 700px) and (max-width: 991px) {
    #root-default-loading .qhealth__footer__navigation ul.qhealth__link-list {
        justify-content: initial;
    }

    #root-default-loading .copyright {
        order: 1;
    }

    #root-default-loading .privacy {
        order: 4;
    }

    #root-default-loading .right-to-info {
        order: 2;
    }

    #root-default-loading .accessiblity {
        order: 5;
    }

    #root-default-loading .other-languages {
        order: 3;
    }
}

@media (max-width: 700px) {
    #root-default-loading .copyright {
        order: 1;
    }

    #root-default-loading .privacy {
        order: 3;
    }

    #root-default-loading .right-to-info {
        order: 5;
    }

    #root-default-loading .accessiblity {
        order: 2;
    }

    #root-default-loading .other-languages {
        order: 4;
    }
}

#root-default-loading .loading-screen {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#root-default-loading .loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: spinner-show 0s forwards;
}
#root-default-loading .qhealth__body h2 {
    margin-top: 24px !important;
}
#root-default-loading .spinner-border {
    width: 4rem;
    height: 4rem;
    vertical-align: text-bottom;
    border: 0.5em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner-border 0.75s linear infinite;
    animation: spinner-border 0.75s linear infinite;
}

@-webkit-keyframes spinner-border {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner-border {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner-show {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

#root-default-loading .qhealth__footer {
    border-top-color: #84d3ff;
}

.error-page.qhealth__body a:focus,
.error-page.qhealth__body a:active {
    outline: 3px solid #002e85;
}

.qhealth__footer.qhealth__footer--dark .qhealth__btn.qhealth__btn--secondary,
.qhealth__footer.qhealth__footer--dark a.qhealth__btn.qhealth__btn--secondary {
    border-color: #84d3ff;
}

.qhealth__footer.qhealth__footer--dark .qhealth__btn.qhealth__btn--secondary:hover,
.qhealth__footer.qhealth__footer--dark a.qhealth__btn.qhealth__btn--secondary:hover {
    border-color: #95e5ff;
}

.qhealth__footer.qhealth__footer--dark a:focus,
.qhealth__footer.qhealth__footer--dark a.qhealth__btn.qhealth__btn--secondary:focus {
    border-color: #95e5ff;
    outline: 3px solid #c6ffff;
}

.qhealth__footer.qhealth__footer--dark a:active,
.qhealth__footer.qhealth__footer--dark
    .qhealth__footer__navigation
    .qhealth__link-list
    a.qhealth__footer__clickable__link:focus {
    border-color: #95e5ff;
    outline: 3px solid #c6ffff;
    outline-offset: 2px;
}

.qhealth__footer.qhealth__footer--dark a.qhealth__btn.qhealth__btn--secondary:focus {
    text-decoration: underline;
}

.qhealth__footer.qhealth__footer--dark .qhealth__btn.qhealth__btn--secondary:active,
.qhealth__footer.qhealth__footer--dark a.qhealth__btn.qhealth__btn--secondary:active {
    background-color: #f5f5f5;
    color: #000053;
    border-color: transparent;
    outline: none;
    text-decoration: none;
    font-weight: 400;
}

.qhealth__footer.qhealth__footer a {
    text-decoration-color: #ffffff;
}

.error-page.qhealth__body .error-page p {
    color: #353535;
}

footer.qhealth__footer.qhealth__footer--dark {
    background-color: #005eb8;
}

.spinner-border.text-success {
    color: #84d3ff;
}
