body {
    height: 100vh;
    background: url('/images/default__bg.gif');
}

body * {
    box-sizing: border-box;
}

.modal {
    top: 50%;
    min-height: 288px;
    border: 1px solid #bf8b4d;
    background-color: #121212;
    text-align: center;
    z-index: 2147483649!important;
    width: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.modal,.modal-overlay {
    position: fixed;
}

.modal-overlay {
    top: 0;
    height: 100%;
    background-color: rgba(0,0,0,.822);
    z-index: 2147483648
}

.modal__inner {
    padding: 40px
}

.modal__title {
    color: #f3e0a6;
    font-family: Lora,serif;
    font-size: 18px;
    font-style: italic;
    line-height: 24px;
    margin-bottom: 30px
}

.modal__text {
    opacity: .6;
    color: #b1a379;
    font-family: Arial,Helvetica Neue,Helvetica,sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    margin-bottom: 40px
}

.modal__text br {
    display: none
}

.modal__button {
    width: 210px;
    border-radius: 25px;
    padding: 10px 0 12px;
    border: 1px solid #d7940a;
    background-color: #121212;
    color: #f3e0a6;
    font-family: Lora,serif;
    font-size: 16px;
    font-style: italic;
    line-height: 22px;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;

}

.modal__button:focus,.modal__button:hover {
    outline: none;
    opacity: .6
}

@media (min-width: 600px) {
    .modal {
        width: 400px;
    }
}