.callback-form {
    margin-bottom: 30px;
    padding: 28px;
    background: #f7f7f7;
    border-left: 4px solid #db2d2e;
}

.callback-form__title {
    margin: 0 0 8px;
    color: #353535;
    font-size: 25px;
    font-weight: 700;
}

.callback-form__description {
    margin: 0 0 20px;
    color: #727171;
    font-size: 15px;
}

.callback-form__input {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    background: #fff;
    color: #353535;
    font-size: 15px;
}

.callback-form__submit {
    width: 100%;
    height: 52px;
    border: 0;
    background: #db2d2e;
    color: #fff;
    font-family: Lato, sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
}

.callback-form__submit:disabled {
    opacity: 0.65;
    cursor: wait;
}

.callback-form__botcheck {
    display: none !important;
}

.callback-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(3px);

    opacity: 1;
    transition: opacity 0.25s ease;
}

.callback-popup-overlay--hide {
    opacity: 0;
}

.callback-popup {
    width: 100%;
    max-width: 420px;

    padding: 38px 30px 30px;

    background: #ffffff;
    border-radius: 12px;

    text-align: center;

    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.18);

    animation: callbackPopupShow 0.3s ease;
}

.callback-popup__icon {
    width: 65px;
    height: 65px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 32px;
    font-weight: 700;
}

.callback-popup__icon.success {
    background: #e8f7ed;
    color: #28a745;
}

.callback-popup__icon.error {
    background: #fdeaea;
    color: #db2d2e;
}

.callback-popup__message {
    margin-bottom: 25px;

    color: #353535;

    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
}

.callback-popup__button {
    min-width: 130px;

    padding: 12px 28px;

    border: none;
    border-radius: 4px;

    background: #db2d2e;
    color: #ffffff;

    font-family: Lato, sans-serif;
    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.callback-popup__button:hover {
    background: #bd2021;
    transform: translateY(-1px);
}

@keyframes callbackPopupShow {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
