/* Foundation by ZURB */
/* foundation.zurb.com */
/* Licensed under MIT Open Source */

.reveal-modal-bg {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1004;
    display: none;
    float: 0;
}

.reveal-modal {
    visibility: hidden;
    display: none;
    position: absolute;
    z-index: 1005;
    width: 100vw;
    top: 0;
    border-radius: 10px;
    float: 0;
}

@media only screen and (max-width: 40em) {
    .reveal-modal {
        min-height: 100vh;
    }
}

.column,
.columns {
    min-width: 0;
}

.reveal-modal> :first-child {
    margin-top: 0;
}

.reveal-modal> :last-child {
    margin-bottom: 0;
}

@media only screen and (min-width: 40.063em) {
    .reveal-modal {
        width: 80%;
        max-width: 100%;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
}

.reveal-modal-bg+.reveal-modal {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #aaa;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

@media only screen and (min-width: 40.063em) {
    .reveal-modal {
        top: 100px;
    }
}

.reveal-close {
    font-size: 40px;
    line-height: 1;
    position: absolute;
    top: 8px;
    right: 11px;
    color: #333;
    font-weight: bold;
    cursor: pointer;
}