input[type="text"], input[type="tel"], input[type="email"] {
    border: 1.5px solid #fff;
    box-shadow: 0px 1px 2px 0px rgba(25, 25, 28, 0.04);
    padding: 16px;
    height: 56px;
    width: 100%;
    border-radius: 6px;
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
}

input[type="checkbox"] {
    appearance: none; /* Hide default checkbox */
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    background-color: transparent; /* Unchecked background color */
    border-radius: 3px;
    cursor: pointer;
    display: inline-block; /* Essential for styling */
    position: relative; /* For positioning the checkmark */
}

input[type="checkbox"]:checked {
    background-color: transparent; /* Checked background color */
    border-color: #fff;
}

/* Styling the checkmark */
input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

label {
    display: flex;
}

.wpcf7-form {
    color: #ffffff;
}

.wpcf7-form .row {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wpcf7-form .row-flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.wpcf7-form .col-12 {
    width: 100%;
}

.wpcf7-form .col-8 {
    width: calc(68% - 4px);
}

.wpcf7-form .col-6 {
    width: calc(50% - 4px);
}

.wpcf7-form .col-4 {
    width: calc(33% - 4px);
}

.wpcf7-form .title {
    color: #ffffff;
    font-size: 18px;
    line-height: 130%;
    font-weight: 500;
    margin-bottom: 12px;
}

.wpcf7-form .wpcf7-form-control .wpcf7-list-item {
    margin: 0;
}

.wpcf7-form .wpcf7-radio .wpcf7-list-item.first {
    margin: 0 10px 0 0;
}

.wpcf7-form .wpcf7-form-control .wpcf7-list-item input[type="radio"] {
    margin: 0 10px 0 0;
}

.wpcf7-form .wpcf7-form-control .wpcf7-list-item input[type="checkbox"] {
    margin: 0 8px 0 0;
}

.wpcf7-form .wpcf7-list-item-label {
    font-size: 14px;
    line-height: 150%;
    font-weight: 500;
}

.wpcf7-form .wpcf7-list-item-label::before, 
.wpcf7-form .wpcf7-list-item-label::after {
    content: none;
}

.wpcf7-form .d-flex-center {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    position: relative;
}

.wpcf7-form .wpcf7-spinner {
    position: absolute;
    right: 0;
}

.wpcf7-form .d-flex-center .wpcf7-submit {
    padding: 10px 24px;
    background-color: #ffffff;
    color: var(--e-global-color-primary);
    border: 1px solid var(--e-global-color-primary);
    opacity: 1;
    cursor: pointer;
    width: 100%;
}

.wpcf7-form .d-flex-center .wpcf7-submit:hover {
    background-color: #ffffff;
    color: var(--e-global-color-primary);
    opacity: .7;
}

.wpcf7-form .wpcf7-submit:active {
    background-color: #ffffff;
    color: var(--e-global-color-primary);
    opacity: .9;
}

.wpcf7 form.wpcf7-form.sent .wpcf7-response-output {
    padding: 16px 16px 16px 52px;
    border-radius: 8px;
    min-height: 56px;
    color: #0D0D0E;
    background-image: url('../img/icon-sucess.svg');
    background-repeat: no-repeat;
    background-position: 12px 16px;
    background-color: rgba(230, 251, 243, 1);
    border: 1px solid var(--alpha-green-8, #08D48B14);
    box-shadow: 0px 1px 2px 0px rgba(25, 25, 28, 0.04);
    margin: 1em auto;
}

.wpcf7 form.wpcf7-form .wpcf7-response-output {
    padding: 16px 16px 16px 16px;
    border-radius: 8px;
    min-height: 56px;
    color: #0D0D0E;
    margin: 1em auto;
    background-color: #ffffff;
    border: 1.5px solid #DFDFE0;
    box-shadow: 0px 1px 2px 0px rgba(25, 25, 28, 0.04);
}

@media(min-width: 1366px) {

}

@media(max-width: 1365px) {

}

@media(max-width: 767px) {
    .wpcf7-form .row-flex {
        flex-direction: column;
        gap: 16px;
    }

    .wpcf7-form .col-8,
    .wpcf7-form .col-6,
    .wpcf7-form .col-4 {
        width: 100%;
    }
}