.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    position: relative;
}

.modal-loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: inherit;
}

.modal-loader-body {
    text-align: center;
}

/* Текст под спиннером */
.modal-loader-text {
    margin-top: 15px;
    font-size: 15px;
    color: #1a0033;
    font-weight: 500;
}

.modal-content-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
    gap: 20px;
}

.modal-content-header-title {
    font-family: 'Days One', uppercase, sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #35003D;
    line-height: 100%;
}

.modal-close-btn {
    background: url(/images/form/close-ad7c20f0177c0b29afa0fdd508838ce3.svg);
    width: 12px;
    height: 12px;
    border: 0;
    cursor: pointer;
}

.modal-close-btn:hover {
    opacity: 0.8;
}