#disclaimer {
    display: none;
    outline: 0 none;
    overflow: hidden;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1040;
}

.modal-backdrop {
    background-color: #000;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0.5;
    z-index: 1;
}

.modal-dialog {
    width: 90%;
    max-width: 965px;
    margin: 80px auto;
    padding: 80px 60px 120px 60px;
    font-size: 20px;
    background-color: #fff;
    position: relative;
    z-index: 10;
}

.modal-dialog p {
    font-size: 20px;
    color: #333F48;
}

#accept-disclaimer {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 16px;
    background: none;
    color: #aaa;
    border: none;
    cursor: pointer;
    transition: color .3s ease;
}

#accept-disclaimer:hover, #accept-disclaimer:focus {
    color: #333;
    transition: color .3s ease;
}


@media only screen and (max-width: 640px) {
    .modal-dialog {
        width: 100%;
        margin: 0;
        height: 100vh;
    }
    .modal-content {
        padding: 20px;
        padding-bottom: 60px;
    }
}