.formkit-field {
    display: flex;
    flex-direction: column;
}

.formkit-field label {
    display: block;
    font-size: 14px;
    line-height: 140%;
    margin-bottom: 7px;
}

.formkit-field input {
    padding: 0 25px;
    border-radius: 25px;
    height: 50px;
    font-size: 15px;
    line-height: 120%;
    color: #383838;
    border: 1px #BABABA solid;

    &:placeholder {
        color: #383838;
        opacity: 1;
    }
}

.cust-formkit-field {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

button {
    border: 0;
    cursor: pointer;
}

.check {
    margin: 30px 0;
}

.check.error .custom-checkbox {
    border: 2px solid #FF0000;
}

.checkbox-wrapper {
    display: flex;
    cursor: pointer;
    font-size: 14px;
    line-height: 140%;
    font-weight: 300;
}

.checkbox-wrapper a {
    color: #fff;
    text-decoration: underline
}

.checkbox-wrapper a:hover {
    text-decoration: none;
}
  
.checkbox-wrapper input[type="checkbox"] {
    display: none;
}
  
.custom-checkbox {
    flex: 0 0 24px;
    max-width: 24px;
    height: 24px;
    border: 0;
    display: inline-block;
    position: relative;
    margin-right: 20px;
    background: #fff;
    border-radius: 3px;
}
  
.checkbox-wrapper input[type="checkbox"]:checked + .custom-checkbox {
    background: #fff url("data:image/svg+xml,%3Csvg width='14' height='10' viewBox='0 0 14 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 1L4.75 9L1 5.36364' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") no-repeat center;
    flex: 0 0 24px;
    max-width: 24px;
    height: 24px;
}

.btn-center {
    text-align: center;
}

.cform p {
    margin: 0;
}

.cform br {
    display: none;
}

.cform label {
    display: block;
    font-size: 14px;
    line-height: 140%;
    margin-bottom: 7px;
}

.cform input[type="text"],
.cform input[type="email"] {
    padding: 0 25px;
    border-radius: 25px;
    height: 50px;
    font-size: 15px;
    line-height: 120%;
    color: #383838;
    border: 1px #BABABA solid;
    width: 100%;

    &:placeholder {
        color: #383838;
        opacity: 1;
    }
}

.cform textarea {
    padding: 16px 25px;
    border-radius: 25px;
    height: 113px;
    font-size: 15px;
    line-height: 120%;
    color: #383838;
    border: 1px #BABABA solid;
    width: 100%;

    &:placeholder {
        color: #383838;
        opacity: 1;
    }
}

.wpcf7-not-valid-tip {
    font-size: 14px;
    line-height: 140%;
    margin-top: 5px;
}

.submit-frm {
    text-align: center;
    margin-top: 30px;
}

.submit-frm input[type="submit"] {
    display: inline-block;
    background-color: var(--black);
    color: var(--white);
    padding: 11px 20px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    border: 0;

    &:hover {
        background-color: var(--white);
        color: var(--black);
    }
}

.wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item label {
    display: flex;
    cursor: pointer;
    font-size: 14px;
    line-height: 140%;
    font-weight: 300;
    align-items: flex-start;
}

.wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item-label {
    position: relative;
    padding-left: 44px;
}

.wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    border: 1px solid #BABABA;
    background: #fff;
    border-radius: 3px;
}

.wpcf7-form-control.wpcf7-acceptance input[type="checkbox"]:checked + .wpcf7-list-item-label::before {
    background: #000 url("data:image/svg+xml,%3Csvg width='14' height='10' viewBox='0 0 14 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 1L4.75 9L1 5.36364' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
    border-color: #000;
}

.wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item-label a {
    color: #000;
    text-decoration: underline;
}

.wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item-label a:hover {
    text-decoration: none;
}

.wpcf7-response-output {
    text-align: center;
    padding: 15px 25px !important;
    border-radius: 25px;
}