@charset "utf-8";
/* FontAwesome Webfonts */
@import url("font-awesome-all.min.css");
/* Google Fonts (Roboto) */
@import url("google-fonts.css");

/* 
File layout:

    Globals
    Print general
    Common Page Container Classes
    Figures/Images - Figures/Images
    Map Helpers

    Header Component
    Footer Component

    Home Page
    State Agencies Page
    Facility Registration Page
    FAQ Page
    Help Page
    About Page

    Error Page
    Details Facility Info Page
    API-Request-Form page
    What To Expect Page
    Widgets Page

    Accordion Component - About, Shareables, What to expect, Filter
    Tabbed Content

    Common Breakpoint Media Queries
*/

/** Globals **/
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    -webkit-print-color-adjust: exact !important; /* Chrome, Safari 6 – 15.3, Edge */
    color-adjust: exact !important; /* Firefox 48 – 96 */
    print-color-adjust: exact !important; /* Firefox 97+, Safari 15.4+ */
}

/* Typography */
body {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    color: #444;
    hyphens: none;
}
small,
.small {
    font-size: 80%;
    font-weight: 400;
}
/* prettier-ignore */
h1, h2, h3, h4, h5 {
  font-weight: 700;
}
/* prettier-ignore */
h1, h2, h3, h4 {
  font-family: "Roboto Condensed", sans-serif;
  color: #1a6986;
}
h1 {
    font-size: 28px;
}
h2 {
    font-size: 26px;
}
h3 {
    font-size: 24px;
}
h4 {
    font-size: 22px;
}
h5 {
    font-size: 1em;
    margin-bottom: 0.0625em;
}
h6 {
    font-size: 1em;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 0.0625em;
}
h1, h2, h3, h4, h5, h6,
/* prettier-ignore */
.h1, .h2, .h3, .h4, .h5, .h6 {
    margin-bottom: 0.5rem;
    line-height: 1.2;
}
/* prettier-ignore */
h5, .h5 {
  font-size: 1.25rem;
}

a {
    text-decoration: none;
    background-color: transparent;
}
/* prettier-ignore */
a, a:hover, a:focus {
  color: #1f419a;
}
a:hover {
    text-decoration: underline;
}

.disclaimer {
    font-size: 12px;
}
.large {
    font-size: 22px;
}
.small {
    font-size: 16px;
}
.tall {
    margin-bottom: 1em;
}

.cls-1,
.cls-2 {
    fill: none;
    stroke: #fff;
    stroke-linejoin: round;
}
.cls-1 {
    stroke-width: 2.36px;
}
.cls-2 {
    stroke-width: 1.34px;
}

/* Buttons */
.btn {
    background: #28a6d4;
    font-size: 1em;
    font-weight: 700;
    color: #000;
    border: 3px solid #fff;
    border-radius: 24px;
    margin: 0.5em 1em 1em 0;
    padding: 3.5px 20px;
    transition: all 0.75s ease-in-out;
}
.btn:hover,
.btn-primary:hover,
.btn:focus,
.btn-primary:focus {
    background: #28a6d4;
    color: #fff;
    border: 3px solid #000;
}
a.btn {
    text-decoration: none;
}

.btn-secondary {
    /* Dropddowns */
    color: #495057;
    background: #fff;
    padding: 0.5rem;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    font-size: 1rem;
}

/* components */
.accessibleCheckbox {
    /* checkbox */
    margin-top: 1px;
    margin-right: 6px;
    height: 17px;
    width: 17px;
    cursor: pointer;
}

.accessibleRadio {
    /* radio */
    margin-top: 1px;
    margin-right: 6px;
    height: 20px;
    width: 20px;
    cursor: pointer;
}

/** Print general **/
@media print {
    @page {
        margin: 0mm;
        size: 420mm 427mm; /* non-zoomed page print dimensions */
        /* size: 2000px 427mm; */ /* zoomed page print dimensions - see utils/zoom.js */
    }

    /* tabs in various pages to not display underline in print - BD-2639 */
    .nav-item a {
        text-decoration: none;
    }

    /* Help page Image on zoomed - assigining it this width value allows it to print in one page */
    .scaled .helpImageCont {
        width: 1100px !important;
    }
}

/* Print Help page */
@media screen {
    .help-page .float-right figure:nth-child(1) {
        display: none;
    }
    #screenshots figure:nth-child(1) {
        display: none;
    }
}
@media print {
    .help-page .float-right figure:nth-child(1) {
        display: inherit;
    }
    #helpSVG {
        display: none;
    }
    #mobileHelpSVG {
        display: none;
    }
    #es_helpSVG {
        display: none;
    }
    #es_mobileHelpSVG {
        display: none;
    }
}

/** Common Page Container Classes **/
.container {
    max-width: 1230px;
    margin: 0 auto;
}
/* Content Area */
#content {
    margin: 2em 0;
}
#content > div {
    max-width: 1230px;
    margin: 0 auto;
}

@media screen {
    #content .montage {
        width: 100%;
        height: 100%;
        display: none;
    }
}

/** Figures/Images **/
figure {
    margin: 0;
    display: inline-block;
}

img {
    max-width: 100%;
}

#pdf-icon {
    width: 20px;
    height: 20px;
    margin-bottom: 3px;
}

/** Map Helpers **/
button[role="menuitemradio"] {
    visibility: hidden !important;
}
.gm_mapSatelliteCont button[role="menuitemradio"] {
    visibility: unset !important;
}
/** Maintenance Banner**/

.maintenance-banner {
    background-color: #005ea2;
    color: #fff;
    padding: 10px;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}
.maintenance-banner-content {
    display: flex;
    justify-content: center;
}
.maintenance-banner-text {
    padding: 10px 0px;
    font-size: 14px;
    font-weight: 400;
    white-space: normal;
}
.maintenance-banner-title {
    margin-bottom: 5px;
    text-align: justify;
    font-size: 18px;
    font-weight: 400;
}
.maintenance-banner-icon {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    margin-top: 10px;
}
.maintenance-banner-link,
.maintenance-banner-link:hover,
.maintenance-banner-link:focus {
    color: #fff;
}

/* callout in locator facility list and faciltiy details page */
.callout {
    border-left: 4px solid black;
    background-color: #f0f0f0;
    padding: 0.85rem;
    font-size: 1rem;
}

.callout.danger {
    border-color: #d93347;
}

/*** ***/
/** Header Component **/
header {
    text-align: right;
    padding: 0 !important;
}
.logo svg {
    width: 65vw;
    padding: 0.75em 0;
}
.logo .cls-1 {
    fill: #1e384b;
}
.logo .cls-2 {
    fill: #1a6986;
}
.hhs {
    display: none;
}
.hhs .hhs-header-eagle {
    width: 24px;
    height: 27px;
    margin-bottom: 5px;
}
.masthead {
    max-width: 1230px;
    margin: 0 auto;
    padding-bottom: 0.5em;
    flex-wrap: nowrap;
    align-items: center;
}
.masthead .mobile-header-spacer {
    padding: 0 3em 0 1em;
}
.utility {
    display: none;
}
.utility #samhsa-search {
    /* Top Search Button */
    margin-top: 0em;
}

/* mobile-menu-button */
.mobile-menu-button {
    display: none;
}
.samhsa-search-form #samhsa-search-form {
    border-radius: 0.5rem 0 0 0.5rem;
    border-right: none;
}
.samhsa-search-form .top-search-button {
    border-radius: 0 0.5rem 0.5rem 0 !important;
    transition: none !important;
    background: #28a6d4 !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    border: none !important;
    margin: 0px !important;
    color: #000 !important;
    padding: 0.32em 1.2rem !important;
}

/* Skip Navigation - /locator */
.skip-to-content {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    -moz-clip-path: inset(50%);
    -o-clip-path: inset(50%);
    -ms-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}
.skip-to-content:focus {
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgb(0 0 0 / 60%);
    clip: auto !important;
    -webkit-clip-path: none;
    -moz-clip-path: none;
    -o-clip-path: none;
    -ms-clip-path: none;
    clip-path: none;
    color: #2b2d2f;
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 50%;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* Top Navigation */
.topnav {
    font-weight: 500;
}
.topnav a:hover {
    text-decoration: none;
}
.bg-dark {
    background: #1e384b !important;
}

.navbar {
    padding: 0 1rem;
}
.navbar-dark .navbar-nav .nav-link {
    color: #fff;
    width: 100vw;
    padding: 0.5em 15px;
    margin: 0 -15px;
    border: 2px solid #f0f0f0;
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
    background: #fff;
    color: #1e384b;
    border-top: 1px solid #f8f9fa !important;
    border-bottom: 1px solid #f0f0f0 !important;
}
.navbar-dark .navbar-nav .active > .nav-link {
    background: #fff;
    color: #1e384b;
    border-top: 1px solid #f8f9fa !important;
    border-bottom: 1px solid #f0f0f0 !important;
}
.navbar-dark .navbar-nav .nav-item.active .nav-link:hover,
.navbar-dark .navbar-nav .nav-item.active .nav-link:focus {
    background: #fff;
    color: #1e384b;
    border-top: 1px solid #f8f9fa !important;
    border-bottom: 1px solid #f0f0f0 !important;
}

/* Top Nav Hamburger */
.mobile-nav {
    height: 0px;
    visibility: hidden;
    opacity: 0;
    overflow-y: hidden;
    transition: height 0.7s ease;
    overflow-x: hidden;
}
.mobile-nav a:hover {
    text-decoration: none;
}
.mobilenav-items a {
    float: left;
    text-decoration: none;
}
.mobile-nav .home-nav {
    border-top: 1px solid #1e384b;
}
.hamburger-icon {
    padding-top: 15px;
    color: #1d384b;
    text-decoration: none;
}
.hamburger-icon > div {
    font-size: 30px;
}
.hamburger-icon > div svg {
    font-size: 30px;
}
.hamburger-icon span {
    font-size: 16px;
}
.hamburger-icon:hover {
    text-decoration: none;
    cursor: pointer;
}

@media (max-width: 991px) {
    .not-scaled header {
        padding-top: 0px !important;
    }
    .not-scaled .mobile-menu-button {
        display: block;
    }
    .not-scaled .masthead {
        display: flex;
        justify-content: space-between;
        padding-bottom: 1em;
        border-bottom: 1px solid #1e384b;
    }
    .not-scaled .hamburger-icon {
        padding-right: 1em;
        padding-left: 1em;
    }
    .not-scaled .mobile-nav .navbar-nav .nav-link {
        border: 1px solid #f0f0f0;
        margin: 0 -16px;
    }
    .not-scaled .hamburger-icon {
        color: #1d384b;
        display: block;
    }
    .not-scaled .hamburger-icon {
        text-align: center;
    }
    .not-scaled .hamburger-icon:hover,
    .hamburger-icon:focus {
        color: #1d384b;
    }
    .not-scaled .mobile-nav.hamburger-show {
        background: #1e384b !important;
        opacity: 1;
        overflow-y: hidden;
        visibility: visible;
        transition: height 0.7s ease;
        height: auto !important;
    }
    .not-scaled .mobile-nav.hamburger-show a {
        float: none;
        display: block;
        text-align: left;
    }
    .not-scaled .mobile-nav.hamburger-show ul {
        display: block;
    }
}

/** Footer Component **/
/* Pre-Footer */
#twitterLogo {
    width: 41px;
    height: 41px;
    display: inline-block;
    background-color: #333;
    margin-right: 0.4em;
    margin-left: 0.4em;
    margin-top: 0.5em;
    border-radius: 3px;
    vertical-align: top;
}
#pre-footer {
    background: #f6f6f6;
    font-size: 18px;
    line-height: 1.6;
    padding: 1em 0;
}
#pre-footer div {
    max-width: 1230px;
}
#pre-footer ul {
    line-height: 1.2;
    list-style: none;
    /*gap: 0.5em;*/
    padding: 0;
}
#pre-footer ul.row {
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 0;
}
#pre-footer li {
    display: inline;
    border-right: 1px solid #333;
    margin-left: 0.5em;
    margin-bottom: 0.5em;
}
#pre-footer li a {
    margin-right: 0.5em;
}
#pre-footer li:first-child {
    padding-left: 0;
}
#pre-footer li:last-child {
    padding-right: 0;
    border: none;
}
#pre-footer a {
    color: #333;
}
#pre-footer a:hover,
#pre-footer a:focus {
    text-decoration: underline;
}
#pre-footer h5 {
    display: inline;
}
#pre-footer .samhsa-email-form {
    justify-content: flex-end;
    align-items: center;
}
#pre-footer .social-email-row h3 {
    font-family: "Roboto", sans-serif;
    color: #444;
    font-weight: 400;
}
#pre-footer .samhsa-email-form .form-row {
    align-items: baseline;
}
#pre-footer .samhsa-email-form p {
    line-height: 1.2;
}
#pre-footer .samhsa-email-form .btn {
    width: 100%;
    margin-top: 1rem !important;
    border-radius: 0.5rem;
    transition: none;
    background: #28a6d4;
    font-weight: 700;
    font-size: 18px;
    border: none;
    margin: 0px;
    color: #000;
    padding: 0.3em 1rem;
}
#pre-footer .social-email-row {
    align-items: center;
}
#pre-footer .social {
    margin-bottom: 1rem;
    text-align: center;
}
#pre-footer .social i {
    font-size: 48px;
    padding: 6px;
}
#pre-footer hr {
    border-top: 2px solid rgba(0, 0, 0, 0.1);
}
#pre-footer .language-assistance-row h5 {
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}
#pre-footer .language-assistance-row {
    margin-top: 1rem;
    margin-right: 0;
    margin-left: 0;
}
#pre-footer .footer-links {
    margin-right: 0;
    margin-left: 0;
    margin-top: 1rem;
}
#pre-footer .contact-usa-gov {
    margin-right: 0;
    margin-left: 0;
    margin-top: 1.5rem;
}
#pre-footer .contact-usa-gov a {
    text-decoration: underline;
}

/* Footer */
footer {
    background: #1e384b !important;
    color: #fff;
    width: 100%;
    font-size: 16px;
    overflow-x: hidden;
}
footer .row {
    justify-content: space-between;
}

footer div div:first-child {
    padding: 2em 0 2em 0;
}
footer div div:last-child {
    padding: 1em;
}
footer div div:first-child p {
    padding-left: 7px;
    white-space: normal;
    hyphens: none;
}
footer .contact a {
    text-decoration: underline;
}
footer a {
    color: #fff;
}
footer a:hover,
footer a:focus {
    color: #ccc;
}
footer ul {
    list-style: none;
    padding: 0;
}
footer li {
    display: inline;
}
footer .footer-links li {
    border-right: 1px solid #fff;
    padding: 0 0.75em 0 0.5em;
    margin-left: auto;
    line-height: 1.6;
    white-space: nowrap;
}
footer ul li:last-child {
    padding-right: 0;
    border: none;
}
footer .social {
    font-size: 40px;
    padding-top: 0.2em;
    padding-right: 0.5em;
}

footer figure {
    max-width: 80%;
}

footer .footer-logos {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
footer .footer-logos .samhsa-footer {
    max-width: 210px;
}
footer .footer-logos .hhs-footer {
    max-width: 80px;
    margin-left: 2em;
}

@media (min-width: 768px) {
    /* Pre Footer */
    .not-scaled #pre-footer .social {
        margin-bottom: 0;
        text-align: left;
    }
    /* Footer */
    .not-scaled footer .footer-logos {
        justify-content: flex-end;
    }
}
@media (min-width: 830px) {
    .not-scaled #pre-footer .samhsa-email-form {
        justify-content: flex-end;
    }
    .not-scaled #pre-footer .samhsa-email-form form {
        flex-wrap: nowrap;
    }
    .not-scaled #pre-footer .samhsa-email-input {
        border-radius: 0.5rem 0 0 0.5rem;
        border-right: none;
    }
    .not-scaled #pre-footer .samhsa-email-form .btn {
        width: auto;
        margin-top: 0 !important;
        border-radius: 0 0.5rem 0.5rem 0;
        transition: none;
        background: #28a6d4;
        font-weight: 700;
        font-size: 18px;
        border: none;
        margin: 0px;
        color: #000;
        padding: 0.3em 1rem;
    }
}

/*** ***/
/** Home Page Content **/
.home {
    overflow-x: hidden;
}
.home-locator .form-row {
    align-items: center;
}
.home .home-search-header {
    margin-bottom: 0;
}
.home-locator .form-row .button-div {
    margin-bottom: 8px;
    margin-left: auto;
}
.home-locator .form-row > .col,
.form-row > [class*="col-"] {
    padding-left: 0px;
    padding-right: 0px;
}

.home h5 {
    margin-bottom: 1em;
}

/* Search Section */
.home-locator {
    background: #bad2da;
    padding: 2em 0 0.5em;
}
.home-locator .box {
    background: #fff;
    border-radius: 24px;
    padding: 1em;
    display: inline-block;
    width: 100%;
    margin-bottom: 2em;
}
.home-locator .box.btn {
    margin: 0;
}
.home-locator form-group:first-child form label {
    font-style: italic;
}
.home .home-locator form label {
    display: none;
}
.home-locator .options {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.25em;
}
.home-locator form {
    flex-wrap: wrap;
}
.home-locator .mobile-disclaimer {
    font-size: 14px;
    display: block;
}
.home-locator .desktop-disclaimer {
    display: none;
}
.home-locator .lifeline-text {
    margin: 0;
    word-break: break-word;
}

input.mobileSearch[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    height: 1em;
    width: 1em;
    border-radius: 50em;
    background: url(https://pro.fontawesome.com/releases/v5.10.0/svgs/solid/times.svg) no-repeat 50% 50%;
    color: rgba(0, 144, 237, 0.4);
    background-size: contain;
    opacity: 0;
    pointer-events: none;
}

input.mobileSearch[type="search"]:focus::-webkit-search-cancel-button {
    opacity: 0.3;
    pointer-events: all;
}

/* Tooltip */
#find-a-treatment {
    border: 1px solid #000;
    max-width: 95vw;
    padding: 0px 20px;
    background-color: white;
    opacity: 1;
    color: #444;
}

#find-a-treatment > div > p {
    font-size: 1rem;
    margin-block-end: -1px;
}

/* AutoComplete Component */
.address-predictions-container.show {
    position: absolute;
    display: flex;
    flex-direction: column;
    border: 1px solid #ced4da;
    background-color: #fff;
    border-radius: 0 0 10px 10px;
    z-index: 9999;
    width: 100%;
    font-size: 14px;
}
.address-predictions-container.hide {
    display: none;
}
.address-predictions-container .prediction-item {
    padding-bottom: 7px;
    cursor: pointer;
    padding-top: 7px;
    padding-left: 5px;
    border-bottom: 1px solid #e6e6e6;
    border-top: 1px solid #e6e6e6;
}
.address-predictions-container .prediction-item:hover {
    background-color: #efefefe0;
}
.address-predictions-container .prediction-active {
    background-color: #ebf2fe !important;
}
.address-predictions-container .prediction-active .prediction-marker-icon {
    color: #f32c2c;
}
.address-predictions-container .prediction-marker-icon {
    padding-right: 7px;
}
.address-predictions-container .prediction-marker-icon::before {
    font-size: 14px;
}
.address-predictions-container .prediction-count {
    padding-left: 0.5em;
    opacity: 80%;
}

/* Help Resources Section */
#resources {
    margin-bottom: 2em;
    margin-top: 2em;
}
#resources .row {
    height: auto;
    box-sizing: border-box;
}
#resources .row div:nth-child(1) {
    margin-left: 15px;
    padding-left: 0;
}
#resources .row div:nth-child(2) {
    border-bottom: 1px solid #ced4da;
    border-top: 1px solid #ced4da;
    border-right: none;
    border-left: none;
    margin-bottom: 1em;
    margin-left: 15px;
    padding-left: 0;
}
#resources .row div:nth-child(2) h4 {
    margin-top: 1em;
}
#resources .row div:nth-child(3) {
    margin-left: 15px;
    padding-left: 0;
}
#resources .btn {
    align-self: flex-end;
    width: 100%;
}
.not-scaled .resources-spanish .btn {
    align-self: flex-end;
    width: 100%;
    border-radius: 34px;
    padding: 3.5px 24px;
    margin-top: 2em;
}

.scaled .resources-spanish .btn {
    align-self: flex-end;
    width: 100%;
    border-radius: 51px;
    padding: 3.5px 24px;
    margin-top: 2em;
    height: 105px;
}
#resources button a {
    color: #000;
}

/* What To Expect Section */
#expect {
    background: #bad2da;
    padding: 2em 0;
}
#expect h1,
#expect h2,
#expect h3,
#expect h4,
#expect h5 {
    color: #333;
}
#expect .item {
    margin-bottom: 1em;
    padding: 0 25px;
    width: 100%;
}
#expect .icon {
    font-family: FontAwesome;
    font-size: 96px;
    float: left;
    padding-right: 0.25em;
    width: 30%;
}
#expect .head-medical {
    font-family: FontAwesome;
    font-size: 96px;
    float: left;
    position: absolute;
    padding-right: 0em;
    color: #1a6986;
}

#expect .hand-medical {
    margin-left: 0.5rem;
    padding-right: 10px;
    color: #1a6986;
}
#expect .invoice-dollar {
    margin-left: 1.1rem;
    padding-right: 10px;
    color: #1a6986;
}
#expect .book-medical {
    margin-left: 0.9rem;
    padding-right: 10px;
    color: #1a6986;
}

#expect .brain {
    padding-right: 10px;
    margin-left: 4px;
    color: #1a6986;
}

#expect #mental-health-icon-svg,
#expect #mental-health-icon-img {
    width: 107px;
    height: 101px;
}

#expect .copy {
    margin-left: 30%;
}

/* Providers Section */
#providers {
    padding: 3em 0;
}
#providers .providers-img {
    width: 100%;
    height: 100%;
}
#providers .providers-wrapper {
    display: flex;
    flex-direction: column-reverse;
    padding-left: 0px;
    padding-right: 0px;
}
#providers .providers-img-col {
    padding: 0;
}

/* Video Tutorials Section */
#video-tutorials {
    background: #bad2da;
    padding: 3em 0;
}
#video-tutorials h1,
#video-tutorials h2,
#video-tutorials h3,
#video-tutorials h4,
#video-tutorials h5 {
    color: #333;
}
#video-tutorials .row {
    justify-content: space-between;
}
#video-tutorials a {
    white-space: normal;
}
#video-tutorials ul {
    list-style: none;
}
#video-tutorials li {
    white-space: nowrap;
}
#video-tutorials span {
    white-space: nowrap;
}
#video-tutorials .fa-video {
    color: #1a6986;
    margin-right: 5px;
}

#video-tutorials .col-md-5 {
    padding-right: 15px;
}

/* Other Resources Section */
#other-resources {
    padding: 3em 0;
}
#other-resources .row {
    flex-direction: column-reverse;
}
#other-resources img {
    width: 100%;
    height: 100%;
}
#other-resources .resources-info h5 {
    margin-bottom: 0.5em;
}
#other-resources .resources-info .fa-location-dot {
    color: #28a6d4;
}

/* Widgets section */
#widgets {
    background: #bad2da;
    padding: 3em 0;
}
#widgets h1,
#widgets h2,
#widgets h3,
#widgets h4,
#widgets h5 {
    color: #333;
}

@media (max-width: 991px) {
    .not-scaled .home .home-search-header {
        margin-bottom: 0.5em;
    }
    .not-scaled .home-locator .form-row .button-div {
        margin-bottom: 0;
    }

    /* AutoComplete Component */
    .not-scaled .address-predictions-container .prediction-item {
        display: flex;
        flex-direction: column;
    }
    .not-scaled .address-predictions-container .prediction-count {
        padding-left: 0;
    }
}

/** State Agencies Page **/
.state-agencies-container {
    min-height: 50vh;
}
.state-agencies-container p:nth-child(3) {
    margin-bottom: 3rem;
}
.state-agencies .button-label {
    position: absolute;
    top: -10px;
    left: 24px;
    background: white;
    padding: 0px 5px;
    font-size: 16px;
    z-index: 10;
}
.state-agencies .dropdown-item {
    color: #212529;
    background-color: transparent;
    font-weight: 400;
}
.state-agencies .dropdown .btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    background: #ffffff;
    font-weight: 400;
    color: #000;
    border: 1px solid #d1d7dc;
    margin: 0;
    transition: none;
    height: auto;
    width: 100%;
    padding: 0.5rem 2rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.7rem;
}
.state-agencies .dropdown .btn i {
    float: right;
    font-size: 1.5em;
}
.state-agencies #dropdownMenuButton[aria-expanded="true"] {
    border-radius: 0.7rem 0.7rem 0 0;
    box-shadow: none;
}
.state-agencies #dropdownMenuButton:focus i,
.state-agencies #dropdownMenuButton:active i {
    transform: rotate(180deg);
}
.state-agencies .dropdown-menu {
    max-height: 30vh;
    width: 100%;
    margin-top: -1px;
    border-radius: 0 0 0.7em 0.7em;
    overflow-y: scroll;
    top: auto;
}
.state-agencies-container .dropdown-menu.show {
    position: absolute !important;
}
.state-agencies .dropdown-menu a:hover,
.state-agencies .dropdown-menu a:focus {
    background-color: #e9e9e9;
}
.state-agencies .stateAgencyInfo ul {
    list-style: none;
    padding-left: 0;
}
.state-agencies .stateAgencyInfo li {
    margin-bottom: 1rem;
}
.state-agencies .stateAgencyInfo .agency-name {
    font-weight: 700;
}
.state-agencies .mh-agency {
    margin-top: 1em;
}

@media (max-width: 576px) {
    .not-scaled .state-agencies-container .dropdown {
        margin-left: 1.5em;
        margin-right: 1.5em;
    }
}

/** Facility Registration Page **/
.facility-registration .tooltipCont {
    max-width: 400px;
}
.facility-registration .sameMailingAddressCheckCont {
    margin-bottom: 2em !important;
    margin-top: 1.5em !important;
}
.facility-registration .form-check-input {
    margin-top: 3px;
}
.facility-registration .flex-right {
    display: flex;
    flex-direction: row-reverse;
    margin-top: 1em;
}
.facility-registration .disclaimer a {
    color: #003399;
    text-decoration: none;
    background-color: transparent;
}
.facility-registration .disclaimer a:hover {
    cursor: pointer;
    text-decoration: underline;
}
.facility-registration .omb-number {
    font-size: 24px;
}
.facility-registration .form-check {
    margin: 1em 0 0.5em 0;
}
.facility-registration #recaptcha {
    margin: 0 1em 1em 1em;
}
.facility-registration .validationError {
    padding-top: 5px;
    margin-left: 0.25rem;
    margin-right: 0;
}
.facility-registration .alert {
    margin-top: 1rem;
}
.facility-registration #facility-form .info-icon {
    color: #333 !important;
}
#facState1,
#inputState {
    color: #444 !important;
}

#facility-form .form-row > .col,
.form-row > [class*="col-"] {
    padding-left: 5px;
    padding-right: 5px;
}

/* Recaptcha resizing on small screens */
@media (max-width: 340px) {
    .not-scaled .facility-registration #recaptcha {
        transform: translate(50px) scale(0.83);
        transform-origin: 0 0;
        -webkit-transform: translate(50px) scale(0.83);
        -webkit-transform-origin: 0 0;
        -moz-transform: translate(50px) scale(0.83);
        -moz-transform-origin: 0 0;
        -ms-transform: translate(50px) scale(0.83);
        -ms-transform-origin: 0 0;
        -o-transform: translate(50px) scale(0.83);
        -o-transform-origin: 0 0;
        backface-visibility: hidden;
    }
}

/** FAQ Page **/
.q {
    background: #233064;
}
.q,
.a {
    display: table-cell;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    padding: 0.575em 0.73em;
}
.faq .copy {
    display: table-cell;
    vertical-align: middle;
    background: #aaa;
    width: 100%;
    padding: 0.5em 1em;
}
.a {
    background: #fff;
    color: black;
    vertical-align: middle;
}
.question .copy {
    background: #ececec;
}
.answer .a {
    background: #aaa;
}
.answer .copy {
    background: #fff;
}
.question,
.answer {
    display: table;
}
.faq {
    border: 1px solid #aaa;
    margin-bottom: 1em;
}
.faq .copy p:last-child,
.faq .copy ol:last-child,
.faq .copy ul:last-child {
    margin-bottom: 0;
}

/** Help Page **/
.help-page .helpImageCont {
    max-width: 780px;
}

.help-page svg a:hover,
.help-page svg a:focus {
    text-decoration: none;
}
.help-page .st0 {
    fill: #e60000;
}
.help-page .st1 {
    fill: none;
}
.help-page .st2 {
    fill: #ffffff;
    font-weight: 700;
}
.help-page.st3 {
    font-family: "Roboto";
    font-weight: 700;
}
.help-page.st4 {
    font-size: 18px;
}
.embed-container {
    position: relative;
    padding-top: 68.23%;
    height: 0;
    width: 100%;
    margin: 0;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.print .embed-container {
    padding-top: 37.67%;
}
.map .embed-container {
    padding-top: 47.56%;
}
/* Help image */
#helpSVG {
    background: url("/assets/images/help_desktop.png") no-repeat;
    background-size: cover;
    margin-bottom: 1em;
    width: 770px;
}
#mobileHelpSVG {
    background: url("/assets/images/help_mobile.png") no-repeat;
    background-size: cover;
    margin-bottom: 1em;
}
#es_helpSVG {
    background: url("/assets/images/es_help_desktop.png") no-repeat;
    background-size: cover;
    margin-bottom: 1em;
    width: 770px;
}
#es_mobileHelpSVG {
    background: url("/assets/images/es_help_mobile.png") no-repeat;
    background-size: cover;
    margin-bottom: 1em;
}
#screenshots figure img,
#screenshots figure svg {
    border: 1px solid #ccc;
    margin-bottom: 1rem;
}
.caption,
figcaption {
    font-size: 18px;
    font-style: italic;
    text-align: center;
    margin: 0.5em auto;
}
.tab-container {
    visibility: hidden;
    height: 600px;
    opacity: 0;
}
.tab-container-active {
    visibility: visible;
    opacity: 1;
    height: 100%;
    transition: opacity 0.85s ease;
    border-top: 0px;
}
#help-list {
    counter-reset: list;
}
#help-list > li {
    list-style: none;
}
#help-list > li:before {
    content: counter(list, none) "- ";
    counter-increment: list;
}

/** About Page **/
.about-page hr {
    margin-top: 3rem;
    margin-bottom: 3rem;
    width: 90%;
    border: 0;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
}
.about-page .about-img {
    text-align: center;
}
.about-page .about-img img {
    width: 100%;
}

/*** ***/
/** Error Page **/
#error-page {
    max-width: 1200px;
    display: block;
    margin: auto;
}
#error-page .row {
    margin-left: 0;
    margin-right: 0;
}
#error-page .error-page-header {
    text-align: center;
}
#error-page .error-page-header h1 {
    font-size: 40px;
}
/* Page Not Found Page Warning Icon */
#error-page .warning-img .page-not-found {
    margin-top: 2%;
    font-size: 180px;
    color: #ee8f00f1;
}
/* Internal Error Page Warning Icon */
#error-page .warning-img .circle-warning {
    margin-top: 2%;
    font-size: 180px;
    color: #e59145;
}
#error-page .error-text {
    margin-top: 2em;
    margin-bottom: 1em;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
#error-page .error-text h4 {
    font-family: "Roboto Bold", sans-serif;
    font-weight: normal;
    line-height: 1.2;
    color: #333;
    hyphens: none;
}
#error-page .home-button {
    margin-top: 2em;
}
#error-page .home-button .btn {
    margin: 0 0 1em 0;
}
#error-page a:hover {
    text-decoration: underline;
}

/** Details Facility Info Page **/
/* Override Bootstraps hyphenating word breaks */
#details a,
p,
div,
span,
ul,
li {
    white-space: normal;
    hyphens: none;
}
#details i {
    padding-right: 0.5em;
    color: #003399;
}
#details .fa-solid.fa-check {
    color: #28a6d4;
}
.assistance-text-red {
    font-size: 20px;
    display: flex;
    position: relative;
    padding: 16px;
    background-color: #f6f6f6;
    border-left: 8px solid #dc3545;
    margin-button: 0px;
}

.note {
    font-size: 16px;
    padding-top: 5px;
}

.assistance-text-red p {
    margin: 0px;
}

.padding-button {
    padding-bottom: 16px;
}

.image-container {
    position: relative;
    display: inline-block;
}

.image-container img {
    display: block;
    width: 100%;
    height: 225px;
}


.overlay-text {
    position: absolute;
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%);
    color: #444444;
    background: rgba(0, 0, 0, 0); /* semi-transparent background */
    padding: 10px 20px;
    border-radius: 8px;
    min-width: 100%;
    white-space: nowrap;
    font-style: normal;
}

.font-color-bold {
    color: #1a6986;
}

.assistance-text {
    font-size: 20px;
    display: flex;
    position: relative;
    padding: 20px;
    background-color: #e7f6f9;
    border-left: 8px solid #28a6d4;
}
.assistance-text-title {
    font-weight: bold;
    margin-bottom: 5px;
}
.assistance-text-info-icon {
    width: 45px;
    height: 45px;
    margin-right: 18px;
    margin-left: 10px;
    margin-top: 10px;
}
/* Details Facility Info Header Section */
.details-facility-header {
    margin-top: 1em;
    margin-bottom: 1em;
}
.details-facility-header .facility-name {
    /* flex-basis: 66.66%; */
}
.details-facility-header .details-back {
    /* flex-basis: 33.33%; */
}
.details-facility-info ul {
    list-style: none;
    padding: 0px;
}
.details-facility-info a {
    overflow-wrap: break-word;
    word-wrap: break-word;
}
/* Details Back Link */
.details-back a {
    position: relative;
    top: 50%;
    float: right;
    font-weight: bold;
}
.details-back i {
    font-size: 32px;
    vertical-align: middle;
}
/* Details Locator Map */
.details-locator-map-container #details-map-canvas {
    height: 225px;
    width: 100%;
}
/* Transportation Assistance */
.transportation-assistance,
.transportation-assistance-warning {
    display: flex;
    padding-top: 1px;
    align-items: center;
}
.transportation-assistance p,
.transportation-assistance-warning p {
    margin-bottom: 0;
}
.transportation-assistance i,
.transportation-assistance-warning i {
    padding-right: 10px !important;
    font-size: 21px;
}
/* Details Payment info */
.not-scaled .details-payment-info h2 {
    font-size: 30px;
}
.details-payment-info ul {
    list-style-type: none;
    padding: 0px;
}
.details-payment-info i {
    color: #28a6d4;
}
.details-payment-contact {
    display: flex;
    padding-top: 1.5em;
    align-items: center;
}
.details-payment-contact i {
    padding-right: 10px;
    font-size: 42px;
    color: #003399 !important;
}
.details-payment-contact p {
    margin-bottom: 0;
}
/* Details Services */
.details-services {
    margin-bottom: 3em;
}
.details-services h4 {
    font-size: 1.25rem;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 0.75em;
    font-weight: 700;
    color: #444;
}

/** API-Request-Form page **/
.validationError-container {
    margin-left: 1rem;
    margin-top: 0.25rem;
}
.firstIPCont {
    line-height: 1.2;
}
.additionalIPCont,
.addAdditionalIPCont {
    line-height: 3;
}
#export-service-form .fa-square-plus {
    height: 20px;
    margin-bottom: 4px;
}
#export-service-form .fa-square-minus {
    height: 20px;
    margin-bottom: 4px;
}
#export-service-form .alert {
    margin-top: 1rem;
}

/** What To Expect Page **/
.what-to-expect ol ul {
    list-style-type: disc;
}
.what-to-expect .nav-fill .nav-item {
    border: 2px solid #fff;
    border-bottom: 0px;
}
.what-to-expect .nav-pills .nav-item:first-child {
    border-left: 0px;
}
.what-to-expect .nav-pills .nav-item:last-child {
    border-right: 0px;
}
.what-to-expect .nav-pills .nav-link {
    height: 100%;
    color: #333;
    cursor: pointer;
    border-radius: 0.25rem 0.25rem 0px 0px;
}
.what-to-expect .nav-pills .nav-link .active {
    height: 100%;
    color: #fff;
    cursor: pointer;
    border-radius: 0.25rem 0.25rem 0px 0px;
    box-shadow: 0 0 0 2px #333;
}
.what-to-expect #content .nav {
    margin-bottom: 0;
}
.what-to-expect .accordion-container {
    border: 1px solid #ced4da;
    visibility: hidden;
    height: 600px;
    opacity: 0;
    padding: 1.25rem 1.25rem 0.25rem;
}
.what-to-expect .accordion-container-active .btn-link:hover {
    text-decoration: underline;
}
.what-to-expect .accordion-container-active .btn-link:focus {
    text-decoration: underline;
}
.what-to-expect .accordion-container {
    border: 1px solid #ced4da;
    visibility: hidden;
    height: 600px;
    opacity: 0;
    padding: 1.25rem 1.25rem 0.25rem;
}
.what-to-expect .accordion-container-active div:last-child .accordion {
    margin-bottom: 0;
}

/** Widgets Page **/
#widget260 {
    min-width: 260px;
    max-width: 260px;
    min-height: 260px;
    max-height: 260px;
    background: #f0f0f0;
    margin-bottom: 1rem;
    border-radius: 8px;
}
#widget260-custom {
    min-width: 260px;
    max-width: 260px;
    min-height: 260px;
    max-height: 260px;
    background: #f0f0f0;
    margin-bottom: 1rem;
    border-radius: 8px;
}
#widget220 {
    min-width: 220px;
    max-width: 220px;
    min-height: 220px;
    max-height: 220px;
    background: #f0f0f0;
    margin-bottom: 1rem;
    margin-top: auto;
    border-radius: 8px;
}
#widget220-custom {
    min-width: 220px;
    max-width: 220px;
    min-height: 220px;
    max-height: 220px;
    background: #f0f0f0;
    margin-bottom: 1rem;
    margin-top: auto;
    border-radius: 8px;
}
#widget170 {
    min-width: 170px;
    max-width: 170px;
    min-height: 130px;
    max-height: 130px;
    background: #f0f0f0;
    margin-bottom: 1rem;
    margin-top: auto;
    border-radius: 8px;
}
#widget170 .copy {
    padding-bottom: 0px;
    padding-top: 0px;
}
#widget170 .form-group label {
    margin-bottom: 3px;
}
#widget170 .copy .btn {
    margin-top: 2px;
}
.widgets .row.custom-widgets #widget260 {
    margin-bottom: 0;
}
.widgets .row.custom-widgets #widget220 {
    margin-top: 20px;
    margin-bottom: 16px;
}
.widgets .row.custom-widgets #widget170 {
    margin-top: 40px;
    margin-bottom: 44px;
}
.widgets .row.custom-widgets #widget170 .copy {
    padding-bottom: 0px;
    padding-top: 0px;
}
.widgets .row.custom-widgets #widget170 .btn {
    margin-top: 2px;
}
.widgets .row.custom-widgets #widget170 .form-group {
    margin-top: 2px;
}
.widget {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    align-items: center;
}
.widget.custom {
    height: 100%;
}
.widget p {
    margin-top: 0px;
    margin-bottom: 0px;
}
.widget.widget.custom .textbox-container p {
    margin-top: 1em;
}
.widgets .widget-spacer {
    flex-grow: 1;
    display: contents;
}
.widget .heading {
    text-align: center;
    background: #233064;
    color: #fff;
    padding: 0.25em;
    border-radius: 8px 8px 0 0;
}
.widget #widget170 .heading {
    font-size: 16px;
}
.widget #widget260 .form-group {
    margin-top: 3em;
}
.widget .copy {
    font-size: 12px;
    padding: 1em;
}
.widget label {
    font-weight: 700;
}
.widget .form-control {
    font-size: 12px;
}
.widget .form-control:focus {
    font-size: 16px;
}
.widget .btn {
    border-color: #f0f0f0;
    margin: 0;
    margin-top: 1em;
    padding: 0.35rem 2rem;
}
.widget.custom .btn {
    margin-top: 0;
}
.widget .btn:hover,
.widget .btn:focus {
    /*border-color: #000;*/
}
.widget .copy form {
    margin-top: 0.5em;
}
.widget .copy .form-group {
    margin-bottom: 0;
}
.widget.custom .copy .form-group {
    margin-bottom: 4px;
}

.widget .widget-form-control {
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    font-size: 12px;
    display: block;
    padding: 0.375rem 0.75rem;
    font-weight: 400;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.widgets .copy-code,
.copy-code:hover,
.copy-code:focus {
    color: #003399;
    cursor: pointer;
}
.widgets .copy-code:hover,
.copy-code:focus {
    text-decoration: underline;
}
.widgets #copy-confirm {
    font-size: 14px;
    max-width: 175px;
}
.widgets .widget-highlight {
    background-color: #eee8aa;
}
.widgets .code-box {
    height: 40px;
    font-size: 12px;
    border: 1px solid #ccc;
    padding: 0.25em 0.5em;
    overflow-x: scroll;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    margin-bottom: 3em;
}
.widget.custom .code-box {
    margin-top: auto;
}
.widgets .code-box::-webkit-scrollbar {
    /* Chrome */
    width: 0;
    height: 0;
}
.widgets .textbox-container {
    margin-top: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.widgets .widget.custom .textbox-container {
    height: 100%;
}
.widgets .textbox-container p {
    margin-bottom: 0.5em;
}

/** Accordion Component - About, Shareables, What to expect, Filter **/
.accordion {
    border: 1px solid rgba(0, 0, 0, 0.125);
    background-color: #fff;
}
.accordion .btn-link {
    padding: 1.25rem;
    width: 100%;
    text-align: left;
    border: 0;
    font-family: "Roboto Condensed", sans-serif;
    color: #333;
    text-decoration: none;
    background: #fff;
}
.accordion button:focus {
    outline: 1px;
}
.accordion .btn-link:hover {
    text-decoration: underline;
}
.accordion .accordion-body {
    border: 1px solid #ced4da;
    display: none;
    height: 0px;
    position: absolute;
    opacity: 0;
    padding: 1.25rem;
}
.accordion.active .btn-link {
    background: #fff;
    border-bottom: 0px;
}
.accordion-header i {
    float: right;
}
.accordion .active,
.active .accordion-body {
    display: block;
    opacity: 1;
    height: 100%;
    position: relative;
    transition: opacity 0.2s ease-in-out;
    border: none;
}

/** Tabbed Content **/
.nav-fill .nav-item {
    font-family: "Roboto Condensed";
    font-weight: 700;
    border: 2px solid #fff;
}

.nav-fill .nav-item .nav-link {
    background: rgba(80, 111, 181, 0.4);
    color: #333;
}

.nav-pills.nav-fill .nav-item .nav-link.active {
    background: #506fb5;
    color: #fff;
    opacity: 100%;
    box-shadow: 0 0 0 2px #333;
}
.nav-pills.nav-fill .nav-item .nav-link.active:focus {
    box-shadow: 0 0 0 2px #333;
}
.nav-pills {
    margin: 1em auto;
}

/* Navigation Tabs */
.nav-pills .nav-link.active {
    position: relative;
}
.nav-pills .nav-link.active::after {
    border-top: 10px solid #506fb5;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    content: "";
    height: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 100%;
    width: 0;
    z-index: 1000;
}
.col-lg-zoom-12 {
    position: relative;
    width: 100%;
    padding-right: 25.5px;
    padding-left: 25.5px;
}
/* Facility Registration */
@media (max-width: 767px) {
    .not-scaled .facility-registration .nav-pills .nav-link.active::after {
        display: none;
    }
}
/* FAQs */
@media (max-width: 707px) {
    .not-scaled .faqs .nav-pills .nav-link.active::after {
        display: none;
    }
}
/* Help */
@media (max-width: 767px) {
    .not-scaled .help-page .nav-pills .nav-link.active::after {
        display: none;
    }
}
/* What to Expect */
@media (max-width: 767px) {
    .not-scaled .what-to-expect .nav-pills .nav-link.active::after {
        display: none;
    }
}

/*** ***/
/** Common Breakpoint Media Queries **/

/* Very Small Devices */
@media (max-width: 375px) {
    /* Header Component */
    .not-scaled .masthead .mobile-header-spacer {
        display: none;
    }
    .not-scaled .masthead .logo {
        padding-left: 15px;
    }
    .not-scaled .mobile-nav {
        display: flex;
    }
    .not-scaled .topnav {
        display: none;
    }

    /* Home Page */
    .not-scaled #expect .copy {
        margin-left: 40%;
    }
    .not-scaled #expect .icon {
        width: 40%;
    }
    .not-scaled #video-tutorials #first-column li:nth-child(2) {
        display: none;
    }
    .not-scaled #video-tutorials #first-column li:nth-child(3) {
        display: none;
    }
    .not-scaled #video-tutorials #second-column li:nth-child(2) {
        display: none;
    }

    /* Facility Registration */
    .not-scaled #facility-form-services-row.row div:nth-child(2) {
        margin-top: 1em;
    }

    /* Details Facility Info Header Section */
    .not-scaled .details-facility-header {
        flex-direction: column-reverse;
    }
    .not-scaled .details-back a {
        float: left;
        margin-bottom: 1em;
    }
    .not-scaled .details-facility-info p {
        text-align: left !important;
    }
    .not-scaled .transportation-assistance,
    .not-scaled .transportation-assistance-warning {
        padding-bottom: 1em;
    }

    /* API-Request-Form page */
    .not-scaled #facility-form-services-row .row div:nth-child(1) {
        margin-top: 1em;
    }

    /* What to Expect */
    .not-scaled .what-to-expect .nav-item {
        border-left: 0px !important;
    }
    .not-scaled .what-to-expect .nav-pills .nav-link {
        border-radius: 0.25rem;
    }
    .not-scaled .what-to-expect .nav-pills .nav-item:last-child .nav-link {
        border-radius: 0.25rem 0.25rem 0px 0px;
    }
}

/* Small Devices */
@media (min-width: 376px) and (max-width: 767px) {
    /* Globals */
    .not-scaled .container .img {
        display: block;
        max-width: 85%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 50px;
    }

    /* Header Component */
    .not-scaled .topnav {
        display: none;
    }
    .not-scaled .mobile-nav {
        display: flex;
    }

    /* Home Page */
    .not-scaled #expect .icon {
        width: 20% !important;
        padding-right: 1.3em;
    }
    .not-scaled #expect .copy {
        margin-left: 15%;
        padding-left: 5em;
    }
    .not-scaled #video-tutorials #first-column li:nth-child(2) {
        display: none;
    }
    .not-scaled #video-tutorials #first-column li:nth-child(3) {
        display: none;
    }
    .not-scaled #video-tutorials #second-column li:nth-child(2) {
        display: none;
    }

    /* Facility Registration Page */
    .not-scaled #facility-form-services-row.row div:nth-child(2) {
        margin-top: 1em;
    }
    .not-scaled #facility-form-services-row.row div:nth-child(2) {
        margin-top: 1em;
    }

    /* Details Facility Info Page */
    .not-scaled .details-facility-header {
        flex-direction: column-reverse;
    }
    .not-scaled .details-back a {
        float: left;
        margin-bottom: 1em;
    }
    .not-scaled .details-payment-info h2 {
        font-size: 26px;
    }
    .not-scaled .details-facility-info p {
        text-align: left !important;
    }
    /* Details Servies Section */
    .not-scaled .details-services .services-col1 {
        margin-bottom: 0;
    }
    .not-scaled .transportation-assistance,
    .not-scaled .transportation-assistance-warning {
        padding-bottom: 1em;
    }

    /* What To Expect Page */
    .not-scaled .what-to-expect .nav-item {
        border-left: 0px !important;
        border-bottom: 2px solid #fff !important;
    }
    .not-scaled .what-to-expect .nav-pills .nav-link {
        border-radius: 0.25rem;
    }
    .not-scaled .what-to-expect .nav-pills .nav-item:last-child .nav-link {
        border-radius: 0.25rem 0.25rem 0px 0px;
    }
}

/* Medium Devices */
@media (min-width: 768px) and (max-width: 991px) {
    /* Header Component */
    .not-scaled .topnav {
        display: none;
    }
    .not-scaled .mobile-nav {
        display: flex;
    }
    .not-scaled .logo svg {
        width: 500px;
    }

    /* Home Page */
    .not-scaled #expect .icon {
        width: 20%;
    }
    .not-scaled #expect .copy {
        margin-left: 10%;
        padding-left: 6rem;
    }
    .not-scaled #video-tutorials #first-column li:nth-child(2) {
        display: none;
    }
    .not-scaled #video-tutorials #first-column li:nth-child(3) {
        display: none;
    }
    .not-scaled #video-tutorials #second-column li:nth-child(2) {
        display: none;
    }

    /* Details Facility Info Page */
    .not-scaled #details h1 {
        font-size: 38px;
    }
    .not-scaled .details-back a {
        float: right;
        margin-bottom: 1em;
        margin-right: -2px;
    }
    .not-scaled .details-payment-info h2 {
        font-size: 26px;
    }
    .not-scaled .details-facility-info p {
        text-align: left !important;
    }
    .not-scaled .details-payment-contact p {
        padding-top: 0;
    }
    .not-scaled .transportation-assistance,
    .not-scaled .transportation-assistance-warning {
        padding-bottom: 1em;
    }
}

@media (max-width: 991px) {
    body.not-scaled {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    body.not-scaled .caption, figcaption {
        font-size: 24px;
    }
}

@media (max-width: 720px) {
    body.not-scaled .caption, figcaption {
        font-size: 20px;
    }
    .image-container img {
        display: block;
        width: 100%;
        height: 150px;
    }
}

@media (max-width: 400px) {
    body.not-scaled .caption, figcaption {
        font-size: 16px;
    }
    .image-container img {
        display: block;
        width: 100%;
        height: 135px;
    }
}


/* Large Devices */
@media (min-width: 992px) {
    /* Globals */
    body.not-scaled {
        font-size: 20px;
    }

    /*  Help - tooltip numbers centered*/
    body.not-scaled .help-page .st2,
    body.not-scaled .help-page .st3,
    body.not-scaled .help-page .st4 {
        font-size: 18px;
    }

    .not-scaled h1 {
        font-size: 42px;
    }
    .not-scaled h2 {
        font-size: 36px;
    }
    .not-scaled h3 {
        font-size: 30px;
    }
    .not-scaled h4 {
        font-size: 24px;
    }

    /** Header Component **/
    .not-scaled .hhs {
        display: flex;
        background: #f6f6f6;
        padding: 6px 24px;
        align-items: center;
    }
    .not-scaled .hhs img {
        margin-right: 24px;
    }
    .not-scaled .hhs p {
        font-size: 14px;
        margin-bottom: 0;
    }
    .not-scaled .hhs a {
        color: #444;
    }
    .not-scaled .masthead {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 15px;
        border-bottom: 0px solid !important;
    }
    .not-scaled .logo svg {
        width: 500px;
    }
    .not-scaled .masthead .mobile-header-spacer {
        display: none;
    }
    .not-scaled .masthead .help-line-text {
        margin-left: 7.5px;
        font-size: 15px;
    }
    .not-scaled .utility {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        flex-wrap: nowrap;
    }
    .not-scaled .utility p {
        font-size: 18px;
        margin-bottom: 4px;
    }
    .not-scaled .utility p i {
        margin-right: 5px;
    }
    .not-scaled .utility nav {
        margin-left: 1em;
    }
    .not-scaled .utility form {
        margin-left: 1.4em;
        margin-right: 0.0625em;
    }
    .not-scaled .utility ul {
        margin: 0;
        padding: 0;
        list-style: none;
        padding-top: 0.4rem;
    }
    .not-scaled .utility li {
        display: inline;
        border-right: 1px solid #003399;
        padding: 0 0.5em 0 0.5em;
        font-size: 18px;
    }
    .not-scaled .utility li:last-child {
        padding-right: 0;
        border: none;
    }
    .not-scaled .utility svg {
        width: 180px;
    }
    /* Mobile Nav */
    .not-scaled .mobile-nav {
        display: none;
    }
    .not-scaled .mobile-samhsa-search {
        display: none;
    }
    .not-scaled .hamburger-icon,
    .not-scaled .mobile-search {
        display: none;
    }
    .not-scaled .masthead-spacer {
        display: none;
    }
    /* Top Navigation */
    .not-scaled .topnav {
        border-left: none;
        border-right: none;
    }
    .not-scaled .topnav .container {
        max-width: 1200px;
    }
    .not-scaled .navbar-brand {
        display: none;
    }
    .not-scaled .navbar-nav {
        border: none;
        padding-left: 15px;
    }
    .not-scaled .navbar-dark .navbar-nav .nav-link {
        width: auto;
        border: 1px solid transparent !important;
    }

    /** Footer Component **/
    .not-scaled #pre-footer .social-email-row h3 {
        font-size: 28px;
    }

    /** Home Page **/
    .not-scaled div.home {
        overflow-x: hidden;
    }
    .not-scaled #content .montage {
        width: 100%;
        height: 100%;
        display: block;
    }
    .not-scaled #expect .item {
        width: 50%;
        float: left;
    }
    .not-scaled #expect .icon {
        width: 25%;
    }
    .not-scaled #expect .copy {
        margin-left: 27%;
    }
    /* Locator Section */
    .not-scaled .home-locator .box .row {
        display: flex;
        align-items: center;
    }
    .not-scaled .home-locator div.vert-rule {
        border-left: 1px solid #ccc !important;
    }
    .not-scaled .home-locator .options {
        width: 75%;
    }
    .not-scaled .home-locator form .form-row {
        flex-wrap: nowrap;
    }
    .not-scaled .home-locator .mobile-disclaimer {
        display: none;
    }
    .not-scaled .home-locator .desktop-disclaimer {
        font-size: 16px;
        display: block;
    }
    /* Help Resources */

    .not-scaled .resources-spanish .btn {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 72px;
    }
    .not-scaled .resources-spanish .row div:nth-child(2) p {
        margin-top: 2em;
    }
    .not-scaled #resources .row div:nth-child(1) {
        padding-left: 15px;
        margin-left: 0;
    }
    .not-scaled #resources .row div:nth-child(2) {
        border-bottom: none;
        border-top: none;
        border-right: 1px solid #ced4da;
        border-left: 1px solid #ced4da;
        margin-bottom: 0px;
        padding-left: 15px;
        margin-left: 0;
    }
    .not-scaled #resources .row div:nth-child(2) h4 {
        margin-top: 0;
    }
    .not-scaled #resources .row div:nth-child(3) {
        padding-left: 15px;
        margin-left: 0;
    }
    .not-scaled #resources .row p {
        height: 30%;
    }
    /* Providers */
    .not-scaled #providers .providers-wrapper {
        display: block;
    }
    /* Other Resources */
    .not-scaled #other-resources .row {
        flex-direction: row;
    }

    /** Facility Registration Page **/
    .not-scaled .facility-registration .form-check {
        margin-top: 0.35em;
    }
    .not-scaled .facility-registration #more-facility-info {
        border: 1px solid #000;
        background-color: white;
        opacity: 1;
        color: #444;
    }

    /** About Page **/
    .not-scaled .about-page .about-img img {
        width: 100%;
    }

    /** Error Page **/
    .not-scaled #error-page .error-page-header {
        text-align: center;
    }
    .not-scaled #error-page .warning-img .page-not-found {
        text-align: center;
        display: block;
        padding-left: 0.3em;
        margin-top: 2%;
        font-size: 250px;
        color: #ee8f00f1;
    }
    .not-scaled #error-page .error-text {
        text-align: center;
        margin-top: 2em;
        margin-bottom: 1em;
    }
    .not-scaled #error-page .error-text h3 {
        font-family: "Roboto Bold", sans-serif;
        font-size: 30px;
        font-weight: 700;
        line-height: 1.2;
        color: #333;
        hyphens: none;
    }
    .not-scaled #error-page .home-button button {
        display: block;
        margin: 0;
    }
}

/* Extra Large Devices */
@media (min-width: 1230px) {
    /* Footer Component  */
    .not-scaled #pre-footer {
        font-size: 18px;
    }
}

/* Extra Large Devices */
@media (max-width: 1186px) {
    .not-scaled .resources-spanish .row div:nth-child(2) p {
        margin-top: 0em;
    }
}

.spanish-english-link {
    color: #1f419a !important;
    font-weight: 500;
    font-size: 14px;
}

@media (min-width: 992px) {
    /* Top Navigation */
    .topnav .nav-item {
        font-size: 1.625vw;
    }
}
@media (min-width: 1045px) {
    /* Top Navigation */
    .navbar-dark .navbar-nav .nav-link {
        padding: 0.5em 12px;
    }
}
@media (min-width: 1200px) {
    /* Top Navigation */
    .topnav .nav-item {
        font-size: 20px;
    }
}

/* Locator page map Legend */
.legend .row div:nth-child(1) p:nth-child(1) .circle {
    background: #ff81ff;
}
.legend .row div:nth-child(1) p:nth-child(2) .circle {
    background: #ffff00;
}
.legend .row div:nth-child(1) p:nth-child(3) .circle {
    background: #49e749;
}
.legend .row div:nth-child(2) p:nth-child(1) .circle {
    background: #9999ff;
}
.legend .row div:nth-child(2) p:nth-child(2) .circle {
    background: #ff8c10;
}
.legendSpace {
    margin-bottom: 0px !important;
}
.blue-link {
    color: #1f419a !important;
}
.no-underline {
    text-decoration: none !important;
}
.home #resources .btn {
    line-height: 1.2;
}
.header-space {
    margin-top: 5px;
}

.hhs_m {
    background: #f6f6f6;
    padding: 6px 24px 0.1px !important;
}
.hhs_mb {
    margin-bottom: 8px;
}

.center-align {
    vertical-align: center;
    text-align: center;
}

#en .en {
    display: block;
}

#es .es {
    display: none;
}

.first-line {
    display: block;
}

.second-line {
    display: block;
    margin-left: 0px;
}

@media (max-width: 575px) {
    .small_window_tooltip {
        width: 100% !important;
        left: 0px !important;
    }
}

.custom-dropdown-icon {
    font-size: 1.5em;
    color: #000;
    padding-right: 24px;
}
.header-tab {
    padding-top: 18px !important;
    padding-bottom: 10px !important;
    border-radius: 12px 12px 0 0;
    border-top: 2px solid rgba(0, 0, 0, 0.125) !important;
}
.details-web {
    border: 2px solid rgba(0, 0, 0, 0.125);
    background-color: #fff;
    padding: 36px;
    border-top: none;
}
.header-li {
    border-bottom: 2px solid rgba(0, 0, 0, 0.125) !important;
}
.filler-li {
    flex-grow: 1;
}
.details-margin {
     margin: 0px auto;
 }
.details-web details-margin.active {
    background-color: #fff;
}

.nav .details-web.active,
.nav .show > .nav-link {
    color: #1a6986;
    background-color: #fff;
    border-bottom: 0px;
}

.nav .details-web,
.nav .show > .nav-link {
    color: #1a6986;
    background-color: #f0f0f0;
}

.remove-list {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}

.accordion-font-color {
    color: #1a6986;
    text-decoration-color: currentColor;
}

.accordion .active,
.active .accordion-header .details-border {
    border-bottom: 1px solid rgba(0, 0, 0, 0.125) !important;
    background-color: #fff !important;
}

.accordion .accordion-header .details-border {
    background-color: #f0f0f0;
}
ul.address-ul {
    margin: 0 !important;
}

.pd-right {
    padding-right: 0px !important;
}

.pd-left {
    padding-left: 0px !important;
}

.pd-top-12 {
    padding-top: 12px !important;
}

@media (min-width: 992px) {
    .fontSize27 {
        font-size: 27px;
    }
}

@media (max-width: 991px) {
    .fontSize27 {
        font-size: 20px;
    }
}