.app-banner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 8000;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.67);
    animation: app-banner-fade-in 0.5s ease 0.5s both;
    -webkit-transform: translateZ(0);
}



.app-banner-content {
    margin: 0 auto;
    padding: 1rem;
    position: fixed;
    bottom: 0;
    z-index: 9000;
    line-height: 1.2;
    background: #ededed;
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.33);
    animation: app-banner-slide-in 0.5s ease 1s both;
}

.app-banner-content .grid {
    margin-right: auto;
    margin-left: auto;
    max-width: 320px;
}

.app-banner-content h1 {
    margin: 0.5rem 0 1.5rem;
    padding: 0;
    /*font-size: 84px;*/
    font-size: 1.75rem;
    color: inherit;
    text-align: center;
}

.app-banner-content li {
    min-height: 2.5rem;
    padding-left: 3.75rem;
    background-repeat: no-repeat;
    background-position: 0.5rem 50%;
    background-size: 2.5rem;
}

.app-banner-content .info {
    font-size: 0.9rem;
    padding: 0.75rem 0 0.5rem;
    display: block;
}

.app-banner-content .icon-appointments {
    background-image: url("../images/quicklinks/appointments.png");
}

.app-banner-content .icon-healthRecord {
    background-image: url("../images/quicklinks/health_record.png");
}

.app-banner-content .icon-testResults {
    background-image: url("../images/quicklinks/test_results.png");
}

.app-banner-link {
    padding: 1rem 0;
    display: block;
    font-weight: 700;
    color: #fff;
    text-align: center;
    text-decoration: none;
    text-shadow: none;
    background: #003f72;
    border-radius: 0.25rem;
}

.app-banner-link:hover {
    color: #fff;
}

.app-banner-dismiss {
    padding: 0.5rem 0;
    display: block;
    margin-bottom: 1rem;
    color: #666;
    text-align: center;
}

.app-banner-dismiss:hover {
    color: #666;
}

#footer {
    overflow: hidden;
}

.noScrolling {
    position: fixed !important;
    overflow: hidden !important;
}

@keyframes app-banner-fade-in {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes app-banner-slide-in {
    0% { opacity: 0; bottom: -20%; }
    100% { opacity: 1; bottom: 0; }
}

@media screen and (min-device-width: 480px), screen and (orientation: landscape) {
    .app-banner-content {
        max-width: 480px;
        left: 50%;
        margin-left: -240px;
    }

    .app-banner-content .info {
        font-size: 1rem;
    }
}

@media screen and (max-device-height: 900px)  and (orientation: landscape)  {
    .app-banner-content {
        transform: scale(0.5);
        transform-origin: bottom;
    }
}

@media screen and (max-device-width: 320px) {
    .app-banner-content h1 {
        font-size: 1.5rem;
    }
}
