.webform-submission-form.webform-submission-callback-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.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: #828282;
}

.webform-submission-form.webform-submission-callback-form .alert.alert-error { display: none; }

.webform-submission-form.webform-submission-callback-form .form-item.js-form-type-processed-text { font: 500 15px var(--font-family); max-width: 570px; }

.form-item .form-item--error-message { display: none !important; }
.form-item input.form-control {
    font: 400 13px var(--font-family);
    margin: 0;
    padding: 11px 0 11px 0px;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);;
    background: transparent;
}
.form-item input.form-control.error { border-color:#dc3545; }

.webform-submission-form.webform-submission-callback-form .form-item.form-type-checkbox {
    display: flex;
    align-items: center;
    gap: 14px;
    font: 400 13px var(--font-family);
    color: #000;
}

.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: 1px solid #828282;
    border-radius: 0px;
    width: 26px;
    height: 26px;
    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: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
}