.modal {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);

    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    visibility: visible;
    z-index: 40;
    vertical-align: middle;
    overflow: scroll;
}

.modal-inner {
    position: absolute;
    top: 25%;
    /* height: 10em; */
    margin-top: -5em
}

.modal h2 {
    font-family: 'Futura';
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Futura';
    font-size: 1.150em;
    /* line-height: 1; */
    letter-spacing: -0.010em;
    right: -6px;
    padding: 0;
    margin: 0 auto 25px auto;
    text-transform: uppercase;
}

.modal h2 span {
    color: #ffca07;
    font-family: 'Futura Bold';
    font-size: 2em;
    /* line-height: 1; */
    letter-spacing: -0.010em;
    right: -6px;
    margin: auto 0;
    padding: 0;
    text-transform: uppercase;
}

.modal p {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Futura';
    font-size: 1em;
    line-height: 1.5;
    letter-spacing: -0.010em;
    text-align: justify;
    width: 47%;
    margin: auto;
}

.modal h6 {
    font-family: 'Futura';
    color: #dc1d00;
    font-size: 1em;
    line-height: 1.5;
    letter-spacing: -0.010em;
    text-align: center;
    margin-top: 25px;
    text-transform: uppercase;
}

.close {
    background: #618ecc;
    font-family: 'Futura Bold';
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 1em;
    letter-spacing: 0.05em;
    margin-top: 25px;
    margin-bottom: 50px;
    padding: 13px 35px;
    /* font-weight: 100; */
    cursor: pointer;
    text-transform: uppercase;
}


.warningtext p {
    text-align: center;
}

.modal a {
    text-decoration: underline;
    color: rgba(255, 255, 255, 0.7);


}

a:hover {
    color: #ffca07;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-moz-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-o-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-ms-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }