.edk_input.select {
    background-color: #F8F8F8;
}

.edk_input.textarea {
    min-height: 170px;
    border: 1px solid #9E9E9E;
    padding: 16px;
}

#needcar_container {
    padding: 50px 20px;
}

#needcar_container>section:not(:last-of-type) {
    margin-bottom: 32px;
}

#needcar_container section .edk_input_wrap:not(:last-of-type) {
    margin-bottom: 30px;
}

.section_title {
    font-size: 22px;
    font-weight: 600;
    color: #222;
    padding: 16px 0;
    border-bottom: 2px solid #222;
    margin-bottom: 30px;
}

.select_list {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.select_list li {
    display: flex;
    align-items: center;
    gap: 0 15px;
    border: 1px solid #BBBBBB;
    border-radius: 2px;
    padding: 10px 14px;
}

.select_list li span {
    font-size: 16px;
    font-weight: 400;
    color: #5E5E5E;
}

.select_list li i {
    cursor: pointer;
    font-size: 18px;
    color: #5E5E5E;
}

.information {
    padding: 20px 24px;
    background-color: #F8F8F8;
    border-radius: 6px;
    margin-bottom: 20px;
}

.information>div {
    display: flex;
    align-items: center;
    gap: 0 8px;
    margin-bottom: 16px;
}

.information>div>img {
    width: 18px;
    height: 18px;
}

.information>div>span {
    font-size: 16px;
    font-weight: 700;
    color: #5E5E5E;
}

.information>ul>li {
    list-style: disc outside none;
    display: list-item;
    margin-left: 1em;
    font-size: 14px;
    font-weight: 400;
    color: #5E5E5E;
}

.information>ul>li:not(:last-of-type) {
    margin-bottom: 4px;
}

.terms {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.terms input[type=checkbox] {
    position: absolute;
    overflow: hidden;
    width: 0;
    height: 0;
}

.terms input[type=checkbox]+label {
    display: inline-block;
    position: relative;
    padding-left: 23px;
    cursor: pointer;
}

/* 바꿀 checkbox 체크하기 전 */
.terms input[type=checkbox]+label:before {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    width: 15px;
    height: 15px;

    /* 선택하기 전 checkbox 이미지 */
    background: url('/static/app_www/base/img/checkbox_default.png') top left / cover no-repeat;
}

/* 바꿀 checkbox 체크 후 */
.terms input[type=checkbox]:checked+label:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;

    /* 선택 후 checkbox 이미지 */
    background: url('/static/app_www/base/img/checkbox_checked.png') top left / cover no-repeat;
}

.terms .open_terms {
    font-size: 16px;
    font-weight: 400;
    color: #396BB2;
    cursor: pointer;
    text-decoration: underline;
    text-underline-position: under;
}

#btn_create {
    font-weight: 700;
    font-size: 18px;
    padding: 12px 0;
}

@media screen and (max-width: 767px) {
    .select_list li {
        gap: 0 10px;
        padding: 6px 10px;
    }

    .select_list li i {
        font-size: 16px;
    }

    .select_list li span,
    .edk_input .terms span,
    .terms .open_terms {
        font-size: 14px;
    }
}