.wesf_form_cont {
    position: relative;
}

.wesf_form_cont .wesf_progress {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 100;
    top: 187px;
    transition: all 0.3s ease;
}

.wesf_progress progress {
    height: 5px;
}

.wesf_progress progress::-webkit-progress-bar {
    background-color: #C5C5C5;
    border-radius: 0px;
}

.wesf_progress progress::-webkit-progress-value {
    background-color: var(--main-color, #ea7200);
    border-radius: 0px;
}

.wesf_form_sect {
    position: relative;
    overflow: hidden;
}

.wesf_form_sect::after {
    content: "";
    display: block;
    width: 192px;
    height: 192px;
    position: absolute;
    top: 0;
    right: 0;
    background: url("/static/app_www/base/img/img_circle_in_white.png") right top / cover no-repeat;
    transform: translate(69px, -112px);

}

.wesf_form_head {
    padding: 42px 0 32px;
    height: 187px;
}

.wesf_form_head .form_title {
    margin-bottom: 30px;
    font-size: 16px;
    color: #777;
    font-weight: 500;
    display: flex;
    align-items: baseline;
    gap: 7px;
}

.wesf_form_head .form_title .light_color {
    color: #C4C4C4;
    font-size: 14px;
}

.wesf_form_head .form_title .page_count {
    color: #000;
    font-size: 28px;
    font-weight: 700;
    transform: translateY(2px);
}

.wesf_form_head .form_text p {
    font-weight: 500;
    font-size: 18px;
}

.wesf_form_content {
    padding: 50px 0 25px;
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.wesf_form_content .select_area {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form_select_group .edk_WAI+label {
    display: inline-block;
    width: 100%;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    padding: 24px;
    padding-left: 75px;
    border: 1px solid #f6f6f6;
    background-color: #f6f6f6;
    border-radius: 4px;
}

.form_select_group .edk_WAI+label::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 24px;
    width: 25px;
    height: 25px;
    background: url("/static/app_www/base/img/icon_check_circle_default.png") center / cover no-repeat;
}

.form_select_group .edk_WAI:checked+label {
    border-color: var(--main-color, #ea7200);
    background-color: #FFF5eb;
}

.form_select_group .edk_WAI:checked+label::before {
    background-image: url("/static/app_www/base/img/icon_check_circle_main.png");
}

.form_select_group .edk_WAI+label span {
    word-break: keep-all;
    line-height: 1.3;
}