/* ===== Modal ===== */

.callback-modal {
    padding: 40px;
    color: var(--color-content-secondary);
}

/* ===== Typography ===== */

.callback-title {
    font-family: "Bebas Neue";
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 8px;
}

.callback-subtitle {
    font-size: 18px;
    color: var(--color-content-secondary);
    margin: 20px 0px 30px 0px;
}

/* ===== Layout ===== */

.callback-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.callback-field {
    flex: 1;
}

.callback-field--full {
    margin-bottom: 28px;
}

/* ===== Inputs ===== */

.callback-input,
.callback-textarea {
    width: 100%;
    border: none;
    background: var(--color-surface-secondary);
    border: 1px solid var(--color-surface-secondary);
    padding: 16px 18px;
    font-size: 15px;
    transition: all .2s ease;
}

.callback-input:focus,
.callback-textarea:focus {
    outline: none;
    background: var(--color-surface-tertiary);
    color: var(--color-content-primary);
    border: 1px solid var(--color-stroke);
}

.callback-textarea {
    min-height: 120px;
    resize: vertical;
}

/* ===== Footer ===== */

.callback-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    flex-wrap: wrap;
}

/* ===== Checkbox ===== */

.callback-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.4;
}

.callback-checkbox input {
    display: none;
}

.callback-checkbox span:first-of-type {
    width: 18px;
    height: 18px;
    border: 2px solid var(--color-support-blue);
    margin-top: 3px;
    position: relative;
    flex-shrink: 0;
}

.callback-checkbox input:checked + span {
    background: var(--color-support-blue);
}

.callback-checkbox input:checked + span::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 5px;
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.callback-checkbox a {
    color: var(--color-support-blue);
    text-decoration: none;
}

.callback-checkbox a:hover {
    text-decoration: underline;
}

/* ===== Submit Button ===== */

.callback-submit {
    background: var(--color-support-blue);
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s ease;
}

.callback-submit:hover {
    background: #1565c0;
}

/* ===== Responsive ===== */

@media (max-width: 640px) {
    .callback-row {
        flex-direction: column;
    }

    .callback-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .callback-submit {
        width: 100%;
    }
}



[class*=uk-modal-close-] {
    top: 10px;
    right: 10px;
    padding: 13px;
}

.uk-close {
    color: var(--color-content-secondary);
    transition: .1s ease-in-out;
    transition-property: color, opacity;
}