.woo-user-data-content{
    color: #222222;
    font-family: "Montserrat", Sans-serif;
    width: 100%;
}

.woo-user-data-inner{
    display: block;
    width: 100%;
    max-width: 760px;
}

.woo-user-data-title{
    color: #222222;
    font-size: 31px;
    font-weight: 600;
    line-height: 1.2;
    margin: 25px 0 30px;
}

.woo-user-data-notice{
    background-color: #f1f7dd;
    border-radius: 7px;
    color: #5d7832;
    font-size: 17px;
    font-weight: 600;
    margin-top: 25px;
    padding: 14px 20px;
}

.woo-user-data-form{
    background-color: #fffefa;
    border: 1px solid #dfddd5;
    box-sizing: border-box;
    display: block;
    padding: 28px;
    width: 100%;
}

.woo-user-data-row{
    display: flex;
    gap: 24px;
    width: 100%;
}

.woo-user-data-field{
    display: block;
    margin-bottom: 6px;
    width: 100%;
}

.woo-user-data-field.half{
    width: calc(50% - 12px);
}

.woo-user-data-field label{
    color: #5C5C53;
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 8px;
    width: 100%;
}

.woo-user-data-field input,
.woo-user-data-field select{
    background-color: #F8F6F0;
    border: 2px #E0DDD9 solid;
    border-radius: 3px;
    box-shadow: none;
    box-sizing: border-box;
    color: #5C5C53;
    display: block;
    font-size: 14px;
    height: 48px;
    line-height: 1.2;
    outline: none;
    padding: 12px 14px;
    transition: all 0.3s;
    width: 100%;
}

.woo-user-data-field select{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

.woo-user-data-field input:focus,
.woo-user-data-field select:focus{
    border-color: #9b9b8b;
}

.woo-user-data-field input:disabled{
    cursor: not-allowed;
    opacity: 0.7;
}

.woo-user-data-field small{
    color: #77746b;
    display: block;
    font-size: 12px;
    line-height: 1.4;
    margin-top: 7px;
}

.woo-user-data-field input.error,
.woo-user-data-field select.error{
    border: 2px #dd360c solid;
    color: #dd360c;
}

.woo-user-data-field-error{
    color: #dd360c;
    display: block;
    font-size: 11px;
    font-weight: 500;
    height: 22px;
    line-height: 11px;
    max-height: 22px;
    min-height: 22px;
    opacity: 0;
    overflow: hidden;
    padding-top: 4px;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

.woo-user-data-field-error.active{
    opacity: 1;
}

.woo-user-data-checkbox{
    align-items: flex-start;
    color: #5C5C53;
    cursor: pointer;
    display: flex;
    font-size: 14px;
    gap: 10px;
    line-height: 1.5;
    margin: 6px 0 0 0;
    width: 100%;
}

.woo-user-data-checkbox input[type="checkbox"]{
    accent-color: #5C5C53;
    cursor: pointer;
    height: 16px;
    margin: 3px 0 0 0;
    min-width: 16px;
    width: 16px;
}

.woo-user-data-response{
    color: #C21010;
    display: block;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 16px;
    min-height: 18px;
    width: 100%;
}

.woo-user-data-response.error{
    color: #C21010;
}

.woo-user-data-response.success{
    color: #3ba81c;
}

#woo-user-data-submit{
    background-color: #5C5C53;
    border: 2px #5C5C53 solid;
    border-radius: 5px;
    box-sizing: border-box;
    color: #FFFEF9;
    cursor: pointer;
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 18px;
    padding: 12px 15px;
    text-align: center;
    transition: all 0.5s;
    width: 100%;
}

#woo-user-data-submit:hover,
#woo-user-data-submit:focus{
    background-color: #9b9b8b;
    border: 2px #9b9b8b solid;
    color: #FFFEF9;
    outline: none;
}

#woo-user-data-submit[disabled]{
    cursor: not-allowed;
    opacity: 0.7;
}

@media only screen and (max-width:767px){

    .woo-user-data-title{
        font-size: 24px;
        margin: 20px 0 24px;
    }

    .woo-user-data-form{
        padding: 22px 15px;
    }

    .woo-user-data-row{
        flex-direction: column;
        gap: 0;
    }

    .woo-user-data-field.half{
        width: 100%;
    }

    .woo-user-data-field-error{
        height: 22px;
        max-height: 22px;
        min-height: 22px;
        white-space: normal;
    }
}
