html {
    visibility: hidden;
}

body {
    margin: 0px;
    overflow: hidden;
    font-family: Open Sans,sans-serif!important;
}

.overlay {
    webkit-transition: opacity .25s cubic-bezier(0,0,.2,1);
    -o-transition: opacity .25s cubic-bezier(0,0,.2,1);
    transition: opacity .25s cubic-bezier(0,0,.2,1);
    position: absolute;
    z-index: 50;
}
.thumbnail {
    height: 100%;
    width: 100%;
    position: absolute;
    background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.dimmed {
    content: " ";
    z-index: 10;
    display: block;
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.3);
}

p {
    color: black;
    margin: 0px;
    padding: 10px;
    text-align:  center;
    line-height: 1.625;
    font-size: 1rem;
    font-weight: normal;
}

.footnote {
    font-size: 0.75rem;
}

.button-wrapper {
    margin-top: 15px;
    margin-bottom: 15px;
    text-align:center;
}

.button {
    border: none;
    border-radius: 4px;
    background-color: #5e802c;
    text-align: center;
    margin: auto;
    display: inline;
    width: 100%;
    line-height: 26px;
    padding: 10px;
    font-size: 15px;
    letter-spacing: .4px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.disclaimer-container {
    background-color: white;
    margin-top: 40px;
    margin-left: 25px;
    margin-right: 25px;
    position: absolute;
    z-index:50;
}

@media only screen and (max-width: 450px) {

    p {
        margin: 0px;
        padding: 5px;
        line-height: 1.5;
        font-size: 1rem;
    }

    .footnote {
        line-height: 1.5;
        font-size: 0.6875rem;
    }

    .button-wrapper {
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .button {
        padding: 5px 10px;
        font-size: 14px;
        letter-spacing: .4px;
    }


    .disclaimer-container {
        margin-top: 2px;
        margin-left: 2px;
        margin-right: 2px;
        height: 98%;
        overflow-y: auto;
    }
}

