.wpcf7-form-control:not(.wpcf7-acceptance) {
    border: 1px solid rgba(168, 179, 191, 0.6);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
    padding: 14px 16px;
    height: 48px;
    border-radius: 8px;
}

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

.form-row .col label.d-none {
    display: none;
}

.wpcf7-form-control-wrap,
.wpcf7-form-control {
    display: block;
    float: left;
    width: 100%;
}

.wpcf7-form-control:focus:not(.wpcf7-submit) {
    outline: none;
    box-shadow: 0 0 0 3px #F7BA90;
}

.wpcf7-form-control::placeholder {
    opacity: .6;
}

.wpcf7-form-control:focus::placeholder {
    color: transparent;
}

.wpcf7-submit {
    background-color: var(--orange);
    color: white;
    cursor: pointer;
    position: relative;
}

.wpcf7-submit:hover:not(:disabled),
.wpcf7-submit:focus:not(:disabled) {
    background-color: var(--orange-dark);
}

.wpcf7-spinner {
    position: absolute;
    top: 20px;
    right: 0;
}

.aggree-text {
    font-size: 12px;
    line-height: 1.2;
    font-weight: 400;
    color: rgba(14, 17, 21, 0.4);
    margin-top: 6px;
    text-align: center;
}

.aggree-text a {
    color: rgba(14, 17, 21, 0.4);
    text-decoration: none;
}

.aggree-text a:hover {
    text-decoration: underline;
}

.wpcf7-not-valid-tip {
    color: rgba(168, 179, 191, 0.4);
    font-size: 12px !important;
    position: absolute;
    bottom: -16px;
}

.wpcf7-response-output {
    display: none;
    margin: 0 !important;
}

.wpcf7-acceptance {
    font-size: 14px;
    margin-bottom: 32px;
}

.wpcf7-acceptance .wpcf7-list-item {
    margin: 0;
}

.wpcf7-acceptance .wpcf7-list-item label {
    position: relative;
    padding-inline-start: 38px;
}

.wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 22px;
    height: 22px;
    transform: translateY(-50%);
    border: 2px solid #F07A48;
    border-radius: 4px;
    background: transparent;
    transition: background-color .2s, border-color .2s, box-shadow .2s;
}

.wpcf7-acceptance .wpcf7-list-item input[type="checkbox"]:checked+.wpcf7-list-item-label::before {
    background-color: #F07A48;
    border-color: #F07A48;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='10' viewBox='0 0 12 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.825195 6.3252L3.39186 8.89186L11.0919 0.825195' stroke='white' stroke-width='1.65' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 10px 8px;
}

.wpcf7-acceptance .wpcf7-list-item label [type="checkbox"] {
    display: none;
}