/* ----------------------------------
        NAV BUTTON
---------------------------------- */
#nav_wrapper {
    z-index: 80;
    padding-top: 1em;
    padding-left: 1em;
}

#nav_icon_wrapper {
    cursor: pointer;
    width: 2.8125em;
    height: 2.8125em;
    position: relative;
    border: solid 0.125em #000;
    background-color: #fff;
    box-sizing: border-box;
    transition: 0.15s background;
}

#nav_icon_wrapper svg {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

#nav_icon_wrapper:hover {
    background-color: #cacaca;
}


@media only screen and (max-width: 1024px) {
    #nav_wrapper {
        padding-bottom: 0.5em;
    }
    #nav_icon_wrapper {
        width: 2.5em;
        height: 2.5em;
    }
}


/* ----------------------------------
      LEGAL / DISCLAIMER STYLES
---------------------------------- */

#legal_wrapper {
    padding-bottom: 3em;
    word-break: break-word;
}

#legal_wrapper p, #legal_wrapper li {
    --max-font-size: 13;
    --min-font-size: 13;
    margin-block: 0.5em;
    color: #939393;
}

#legal_wrapper ul {
    margin-block: .625em;
}

/* Used for Partner Showcase */
#preclaimer {
    width: 100%;
    border-bottom: 1px solid #dedede;
}

#preclaimer p {
    --max-font-size: 13;
    --min-font-size: 13;
    line-height: 168%;
    word-break: break-word;
    font-style: italic;
    text-align: center;
    color: #939393;
    margin-top: .5em;
    margin-bottom: 1.25em;
}



/* ----------------------------------
        VIDEO STYLES
---------------------------------- */

.video_wrapper {
    position: relative;
    margin: 2.8em 0 3em 0;
    box-shadow: 0 2px 15px 3px rgba(0, 0, 0, 0.2);
}

.video_wrapper video {
    width: 100%;
    height: auto;
}

.video_wrapper .video_ios_click {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.video_desktop, .video_mobile {margin-top: 10px; margin-bottom: 10px;}
.video_mobile {display: none;}

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

    .video_wrapper {
        margin: 1.8em 0 2em 0;
    }
}


