#subscription-form-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: block;
    align-items: center;
    justify-content: center;
    z-index: 1002;
    display: flex;
}

#subscription-form {
    background: #f5f1ed;
    max-width: 490px;
    /*height: 290px;*/
    width: 90%;
    position: relative;
    text-align: center;
    margin: 0 auto;
    margin-top: 50px;
}
.subscription-form-top {
    height: 23px;
    position: relative;
    background-color: #CDC4BB;
}
.subscription-form-close {
    position: absolute;
    right: 6px;
    top: 5px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    width: 14px;
    height: 14px;
    font-weight: 600;
    line-height: 14px;
}
.subscription-form-container {
    padding: 55px 41px 15px;
}
.subscription-form-container img {
    max-height: 200px;
}
.subscription-form-text {
    margin-bottom: 40px;
    color: #333;
    font-size: 14px;
}

.subscription-form-actions {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.subscription-form-actions button,
.subscription-form-actions a {
    padding: 10px 18px;
    font-size: 13px;
    border: 1px solid #8B847A;
    cursor: pointer;
    background: #CDC5B8;
    margin: 0 10px;
    display: block;
    line-height: 100%;
    font-weight: 600;
    text-decoration: none;
    min-width: 170px;
}
.subscription-form-actions button:hover,
.subscription-form-actions a:hover {
    background: #fff;
    text-decoration: none;
}
.subscription-form-container .wpcf7-form-control.wpcf7-checkbox {
    border: none !important;
    background-color: transparent !important;
}
.wpcf7-spinner {
    position: absolute;
}
@media (max-width: 849px) {
    .subscription-form-actions {
        flex-direction: column;
        gap: 15px;
    }
}
