.modal-content { --bs-modal-bg: var(--grey); }

.webform-submission-form.webform-submission-callback-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.webform-submission-form.webform-submission-callback-form .callback-form-top {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.webform-submission-form.webform-submission-callback-form input::placeholder,
.webform-submission-form.webform-submission-callback-form textarea::placeholder,
.webform-submission-form.webform-submission-callback-form input::-webkit-input-placeholder,
.webform-submission-form.webform-submission-callback-form textarea::-webkit-input-placeholder {
    color: var(--dark-grey);
    text-shadow: 0 0 5px rgba(248, 239, 223, 0.3);
}

.form-item .form-item--error-message { display: none !important; }
.form-item input.form-control {
    font: 600 17px / 1.1 var(--font-family);
    margin: 0;
    padding: 10px 20px;
    border-radius: 40px;
    box-shadow: inset 0 4px 4px -1px rgba(12, 12, 13, 0.05);
    background: var(--white);
}
.form-item input.form-control.error { border: 1px solid #dc3545; }

.webform-submission-form.webform-submission-callback-form .form-item.form-type-checkbox {
    display: flex;
    align-items: center;
    gap: 17px;
    font: 600 17px / 1.17647 var(--font-family);
}
.webform-submission-form.webform-submission-callback-form .form-item.form-type-checkbox input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;

    border: 1.50px solid var(--dark-grey);
    border-radius: 4px;
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
}
.webform-submission-form.webform-submission-callback-form .form-item.form-type-checkbox input[type="checkbox"].error { border-color: #dc3545; }

.webform-submission-form.webform-submission-callback-form .form-item.form-type-checkbox input[type="checkbox"]:hover {
    border-color: var(--hover-color);
}
.webform-submission-form.webform-submission-callback-form .form-item.form-type-checkbox input[type="checkbox"]:checked {
    background-color: var(--hover-color);
    border-color: var(--hover-color);
}
.webform-submission-form.webform-submission-callback-form .form-item.form-type-checkbox input[type="checkbox"]:checked::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-45%, -60%) rotate(45deg);
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
}


@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 992px) {
    .webform-submission-form.webform-submission-callback-form .callback-form-top { gap: 12px; }
}
@media screen and (max-width: 767px) {
}
@media screen and (max-width: 576px) {
}