
.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: #7d7d7d;
}

.webform-submission-form.webform-submission-callback-form .alert.alert-error { display: none; }

.form-item .form-item--error-message { display: none !important; }
.form-item input.form-control,
.form-item textarea.form-control {
    font: 400 14px var(--font-family);
    margin: 0;
    padding: 19px 26px 20px 26px;
    border: 1px solid #7d7d7d;
    border-radius: 20px;
    background: #fff;
}
.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: 10px;
    font: 400 14px / 1.27538 var(--font-family);
    color: #7d7d7d;
}
.webform-submission-form.webform-submission-callback-form .form-item.form-type-checkbox a {
    font: 400 14px / 1.27538 var(--font-family);
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #000;
}
.webform-submission-form.webform-submission-callback-form .form-item.form-type-checkbox a:hover {
    color: #7d7d7d;
}
.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 #7d7d7d;
    border-radius: 3px;
    width: 13px;
    height: 13px;
    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(-55%, -65%) rotate(45deg);
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
}