@import "chat.css";
@import "footer.css";
*,
 :after,
 :before {
    -webkit-box-sizing: border-box;
            box-sizing: border-box
}

html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'DINPro';
    font-weight: 400;
    overflow-x: hidden;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.5;
    color: rgba(54,54,54,1);
}
@media screen and (max-width:479px){
    html, body {
        font-size: 1rem;
    }
}
:root {
    /*--eckerd-blue: #00a3c9;*/
    --eckerd-blue: #00A2C7;
    --eckerd-text-dark: #363636;
    --eckerd-text: #4c504a;
}

h1, h2 {
    font-family: 'DINPro';
    font-weight: bold;
    text-transform: uppercase;
}
.announcement_label {
    margin: 0 0 1rem 0;
}
.button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    line-height: 1;
    text-transform: uppercase;
    font-family: 'DINPro';
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 1.25rem;
}
.button span[tabindex="-1"] {
    display: inline-block;
    padding: 0.75rem 1.5rem 0.75rem 1.5rem;
    transition: all .25s ease;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    cursor: pointer;
    text-align: center;
    display: block;
}

.button-blue-outline span[tabindex="-1"] {
    border: 2px solid var(--eckerd-blue);
    color: var(--eckerd-blue);
    background-color: transparent;
}
.button.button-blue-outline:hover span[tabindex="-1"],
.button.button-blue-outline:focus span[tabindex="-1"] {
    background-color: var(--eckerd-blue);
    color: #fff;
}

.button-white-outline span[tabindex="-1"] {
    border: 2px solid #fff;
    color: #fff;
    background-color: transparent;
}
.button.button-white-outline:hover span[tabindex="-1"],
.button.button-white-outline:focus span[tabindex="-1"] {
    color: var(--eckerd-blue);
    background-color: #fff;
}
button#nav_toggle {
    margin: auto 0 auto auto;
    font-family: 'DINPro';
    font-weight: 500;
    display: none;
    font-size: 1rem;
    color: #4d504a !important;
}
button#nav_toggle span[tabindex="-1"] {
    padding: 0.5rem;
    color: #4d504a;
    letter-spacing: 0;
}
#masthead {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.22);
            box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.22);
    padding: 0;
    background: #fff;
    z-index: 101;
}
#masthead .logo {
    width: 100%;
    max-width: 295px;
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
}
#masthead .logo a {
    background-image: url(../assets/logo.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 0;
    padding-bottom: 16.88%;
    display: block;
}
#masthead nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
            margin: 0 0 -20px 0;
}
#masthead nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
                -webkit-box-flex: 0;
                    -ms-flex: 0 0 100%;
                        flex: 0 0 100%;
                -webkit-box-align: center;
                    -ms-flex-align: center;
                        align-items: center;
    margin: 0;
    list-style: none;
    height: 100%;
}
#masthead nav ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
            padding: 0 0 20px 0;
            margin: auto 0 0 0;
}
#masthead nav a {
    color: var(--eckerd-blue);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1rem;
    font-family: 'DINPro';
    font-weight: 700;
    padding: 12px 10px 0 10px;
    -webkit-transition: .2s all ease;
    -o-transition: .2s all ease;
    transition: .2s all ease;
    white-space: nowrap;
}
#masthead nav a:hover, 
#masthead nav a:focus {
    color: var(--eckerd-text-dark);
}
#masthead nav ul li.hasDropdown .sub-menu {
    position: absolute;
    bottom: 0;
    left: 2rem;
    display: block;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    height: auto;
    max-height: 0;
    transform: translate3d(0,0,0);
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    z-index: -1;
}

#masthead nav ul li.hasDropdown:hover .sub-menu,
#masthead nav ul li.hasDropdown .sub-menu:hover {
    margin: 0;
    padding: 1rem 0 1rem 0;
    width: calc(100vw - 4rem);
    background: #fff;
    -webkit-transform: translate(0, 100%);
    -ms-transform: translate(0, 100%);
    transform: translate(0, 100%);
    -webkit-box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
    clip: rect(0, 5000px, 5000px, -5000px);
    visibility: visible;
    opacity: 1;
    max-height: 500px;
    -webkit-transition: visibility .3s ease, opacity .3s ease, max-height .3s ease;
    -o-transition: visibility .3s ease, opacity .3s ease, max-height .3s ease;
    transition: visibility .3s ease, opacity .3s ease, max-height .3s ease;
    -moz-transition: visibility .3s ease, opacity .3s ease, max-height .3s ease;
    -ms-transition: visibility .3s ease, opacity .3s ease, max-height .3s ease;
}
.sub_menu_container {
    width: 100%;
}
.sub-menu img {
    margin-top: 15px;
}
.sub-menu h4 {
    font-size: 24px;
    padding: 15px 0 0 0;
    line-height: 24px;
    color: var(--eckerd-blue);
    margin: 0 0 8px 0;
    font-family: 'DINPro';
    font-weight: bold;
    text-transform: uppercase;
}
#masthead .sub-menu a:not(.button) {
    padding: 5px 0;
    color: var(--eckerd-blue);
    text-align: none;
    font-family: 'DINPro';
    font-weight: 500;
    text-transform: none;
}
#masthead .sub-menu a:not(.button):hover {
    color: var(--eckerd-text-dark);
}

#masthead .sub-menu a.button {
    display: block;
    width: 100%;
    padding: 0;
    margin-top: 1rem;
    font-family: 'DINPro';
    font-weight: bold;
}
#masthead .sub-menu a.button span[tabindex="-1"] {
    padding: 0.75rem 0.75rem 0.5rem 0.75rem;
}
#masthead .column.branding,
#masthead .column.navigation {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
#mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    max-height: 100%;
    width: 100%;
    z-index: 9;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    -webkit-transition: visibility .0s .5s ease, opacity .0s .5s ease, -webkit-transform .5s 0s ease;
    transition: visibility .0s .5s ease, opacity .0s .5s ease, -webkit-transform .5s 0s ease;
    -o-transition: visibility .0s .5s ease, opacity .0s .5s ease, transform .5s 0s ease;
    transition: visibility .0s .5s ease, opacity .0s .5s ease, transform .5s 0s ease;
    transition: visibility .0s .5s ease, opacity .0s .5s ease, transform .5s 0s ease, -webkit-transform .5s 0s ease;
}
.mobile-menu-view {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
#mobile-menu .container {
    padding: 90px 20px 0 20px;
    background-color: #fff;
}
.menuIsVisible #mobile-menu {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    -webkit-transition: visibility 0s 0s ease, opacity 0s 0s ease, -webkit-transform .5s 0s ease;
    transition: visibility 0s 0s ease, opacity 0s 0s ease, -webkit-transform .5s 0s ease;
    -o-transition: visibility 0s 0s ease, opacity 0s 0s ease, transform .5s 0s ease;
    transition: visibility 0s 0s ease, opacity 0s 0s ease, transform .5s 0s ease;
    transition: visibility 0s 0s ease, opacity 0s 0s ease, transform .5s 0s ease, -webkit-transform .5s 0s ease;
}
#mobile-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
#mobile-menu ul li>a {
    display: block;
    position: relative;
    padding: 15px 0;
}
/*
#mobile-menu ul li {
    border-bottom: 1px solid rgba(77, 80, 74, 0.2);
}
#mobile-menu ul li ul.sub-menu li:last-child{
    border-bottom: none;
}
*/
#mobile-menu ul li a {
    font-size: 19px;
    text-transform: uppercase;
    line-height: 25.2px;
    padding: 15px 15px 10px 15px;
    color: #4d504a;
    font-family: 'DINPro';
    font-weight: bold;
    transition: all .25s ease;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(77, 80, 74, 0.2);
}
#mobile-menu ul li.menu-item-has-children li a {
    font-family: 'DINPro';
    font-weight: 500;
    margin-left: 20px;
    font-size: 14px;
}
#mobile-menu ul li a:hover {
    text-decoration: none;
    color: var(--eckerd-blue);
}
.fa:before {
    font-family: 'icons' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; 
}
.fa-angle-down:before {
    content: "\f078";
    content: "\f107";
    font-size: 1.25rem;
    line-height: 1.5;
}

.child-menu-trigger {
    position: relative;
    padding-right: 3rem;
}
.sf-sub-indicator {
    position: absolute;
    top: 0;
    right: 0;
    width: 3rem;
    text-align: center;
    height: 100%;
    display: block;
    border-bottom: 1px solid rgba(77, 80, 74, 0.2);
    cursor: pointer;
}
.sf-sub-indicator .fa-angle-down {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%,-50%,0);
    -webkit-transform: translate3d(-50%,-50%,0);
    -moz-transform: translate3d(-50%,-50%,0);
    -ms-transform: translate3d(-50%,-50%,0);
    -o-transform: translate3d(-50%,-50%,0);
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.menu-item-has-children.open .sf-sub-indicator .fa-angle-down {
    -webkit-transform: translate3d(-50%,-50%,0) rotate(180deg);
            transform: translate3d(-50%,-50%,0) rotate(180deg);
}
#mobile-menu .sf-sub-indicator .fa-angle-down {
    color: var(--eckerd-text-dark);
}
#mobile-menu .sf-sub-indicator:hover .fa-angle-down {
    color: var(--eckerd-blue);
}
@media screen and (max-width:1119px){
    #masthead nav {
        display: none;
    }
    button#nav_toggle {
        display: block;
    }
}

