/* pc */
.edk_input {
    background-color: #F5F5F5;
    border-radius: 4px;
    border: 1px solid #EBEBEB;
}

.edk_input.no_bg {
    background-color: transparent;
}

.edk_input:disabled {
    background-color: #E1E1E1;
    color: #9E9E9E;
}

.edk_input.select {
    background: url('/static/common/img/icon_select_down.png') no-repeat right calc(var(--input-padding-x, 16px) - 6px) center /var(--input-icon-size, 20px) auto,
        #F5F5F5;
}

.edk_input_wrap .input_title {
    margin-bottom: 12px;
}

.edk_input_wrap .input_title_area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.edk_input_wrap .input_title_area .input_title {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 16px;
}

.edk_input_wrap .input_title .sub_title {
    color: #5E5E5E;
    font-size: 13px;
    margin-top: 4px;
    font-weight: 400;
}

.input_flex_area.in_btn {
    gap: 0;
}

.input_flex_area.in_btn .edk_input {
    padding-right: 100px;
}

.input_flex_area.in_btn .btn_default {
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 0 4px 6px 0;
}

.edk_input_wrap .input_flex_area {
    gap: 12px 16px;
}

.input_flex_area .btn_default.full {
    width: 100%;
}

/* 회원가입 약관 체크박스 커스텀 */
.edk_WAI.checkbox.terms_checkbox+label {
    padding: 2px 0 2px 30px;
    font-size: 14px;
    color: #5E5E5E;
}

.edk_WAI.checkbox.terms_checkbox+label:before {
    width: 24px;
    height: 24px;
    top: 0;
    background-image: url("/static/common/img/icon_check_terms_default.png");
}

.edk_WAI.checkbox.terms_checkbox:checked+label:before {
    background-image: url("/static/common/img/icon_check_round_b.png");
}

.input_checkbox_wrap .btn_terms {
    width: 24px;
    display: flex;
    aspect-ratio: 1/1;
}

/* 다중셀렉트 공통 */
.multi_select .edk_input.select {
    background: none;
}

.multi_select .SumoSelect {
    width: 100%;
}

.multi_select .SumoSelect>.CaptionCont {
    border-color: #EBEBEB;
    border-radius: 6px;
    padding: 14px 16px;
    text-indent: 0;
    background-color: #F5F5F5;
}

.multi_select .SumoSelect>.optWrapper {
    border-color: #EBEBEB;
    border-radius: 4px;
    padding: 4px 0;
    color: #222;
}

.multi_select .SumoSelect.open>.optWrapper {
    top: 56px;
}

.multi_select .SumoSelect>.CaptionCont>span.placeholder {
    color: #222;
    font-style: initial;
}

.multi_select .SumoSelect>.CaptionCont>label {
    width: 48px;
}

.multi_select .SumoSelect>.optWrapper>.options li.opt {
    border: none;
    padding: 14px 24px;
    position: relative;
}

.multi_select .SumoSelect>.optWrapper.multiple>.options li.opt {
    padding-left: 46px;
}

.multi_select .SumoSelect>.optWrapper.multiple>.options li.opt span {
    display: none;
}

.multi_select .SumoSelect>.optWrapper.multiple>.options li.opt::before {
    content: "";
    width: 24px;
    aspect-ratio: 1/1;
    display: block;
    position: absolute;
    left: 16px;
    top: 13px;
    background: url("/static/common/img/icon_checkbox_default_g.png") left top / cover no-repeat;
}

.multi_select .SumoSelect>.optWrapper.multiple>.options li.opt.selected::before {
    background-image: url("/static/common/img/icon_checkbox_check.png");
}

/* 견적서 부대비용 체크박스 */
.edk_WAI.checkbox.option_checkbox+label {
    padding-left: 22px;
    font-size: 12px;
    color: #222;
}

.edk_WAI.checkbox.option_checkbox+label::before {
    width: 18px;
    height: 18px;
    top: 0;
    background-image: url("/static/common/img/icon_check_terms_default.png");
}

.edk_WAI.checkbox.option_checkbox:checked+label::before {
    background-image: url("/static/common/img/icon_check_round_bk.png");
}

/* 견적서 운행약관 체크박스 */
.edk_WAI.checkbox.driving_terms+label {
    padding-left: 28px;
    font-size: 13px;
    color: #222;
}

.edk_WAI.checkbox.driving_terms+label::before {
    width: 20px;
    height: 20px;
    top: 0;
    background-image: url("/static/common/img/icon_check_terms_default.png");
}

.edk_WAI.checkbox.driving_terms:checked+label::before {
    background-image: url("/static/common/img/icon_check_round_bk.png");
}

/* tablet */
@media screen and (max-width: 1023px) {}

/* mobile */
@media screen and (max-width: 767px) {}