/* multiple */
.mult_wrap{
    position: relative;
}
.mult-field{
    width: calc(100% - 100px);
    height: 48px;
    border: 1px solid #E9EAEA;
    border-radius: 10px;
    padding: 0 80px 0 20px;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    background: url(../images/arr_down.svg) no-repeat calc(100% - 20px) center/auto;
}
.mult-field.open{
    background: url(../images/arr_up.svg) no-repeat calc(100% - 20px) center/auto;
    border: 1px solid #165FFF;
}
.mult-field p{
    font-size: 16px;
    font-weight: 500;
    color: #686A6F;
    height: 100%;
    display: inline-flex;
    align-items: center;
}
.jquery-multiple-select{
    position: absolute;
    width: 100%;
    display: none;
    border: 1px solid #E9EAEA;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,5%);
    margin-top: 4px;
    background: #fff;
    z-index: 2;
}
.jquery-multiple-select ul {
    display: flex;
    flex-wrap: wrap;
    padding: 4px;
    overflow: auto;
    max-height: 424px;
}
.jquery-multiple-select ul li {
    font-size: 13px;
    width: calc(20% - 8px);
    height: 96px;
    margin: 4px;
    color: #686A6F;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 18px;
}
.jquery-multiple-select ul li:hover{
    background: #F7F8FA;
}
.jquery-multiple-select ul li img{
    width: 48px;
    height: auto;
    padding-bottom: 4px;
}
.active-multiple-select {
    font-weight: bold !important;
    background:#E8EFFF !important;
    color: #165FFF !important;
}
span.cancel-multiple-select {
    display: none;
}
.result-value-multiple-select{
    font-size: 16px;
    font-weight: 500;
    color: #165FFF;
    height: 100%;
    display: inline-flex;
    align-items: center;
}
.result-value-multiple-select span::after{
    content: ",";
    margin-right: 4px;
}

/* align */
.select2-container{
    position: initial;
    width: auto !important;
    height: auto;
    color: #272A31 !important;
}
.select2-container--default .select2-selection--single{
    padding: 4px 6px;
    border-radius: 6px;
    border: 1px solid #fff;
    position: relative;
}
.select2-container--default .select2-selection--single .select2-selection__rendered{
    line-height: 16px;
    padding-left: 0;
    padding-right: 14px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 50%;
    transform: translateY(-50%);
}
.select2-container--default .select2-selection--single .select2-selection__arrow b{
    border-color: #272A31 transparent transparent transparent;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{
    border-color: transparent transparent #272A31 transparent;
}
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{
    border-radius: 6px;
    border: 1px solid #F0F0F0;
    background: #F0F0F0;
}
.select2-selection:focus{
    outline: none;
}
.select2-search--dropdown{
    display: none;
}
.select2-dropdown{
    width: 168px !important;
    margin-left: -74px;
    border: none;
    margin-top: 4px;
}
.select2-container--default .select2-results>.select2-results__options{
    font-weight: 500;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #E9EAEA;
    padding: 10px;
    text-align: right;
    box-shadow: 0 2px 6px rgba(0,0,0,5%);
}
.select2-results__option{
    padding: 8px 10px;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{
    background: #F7F8FA;
    border-radius: 6px;
    color: #272A31;
}
.select2-container--default .select2-results__option--selected{
    background: none;
}

/* single */
.single-choice_wrap{
    position: relative;
    user-select: none;
}
.single-choice_wrap .single_option{
    font-family: 'Noto Sans KR', 'sans-serif';
    font-size: 14px;
    color: #686A6F;
    border-radius: 10px;
    border: 1px solid #E9EAEA;
    background: #fff;
    position: relative;
    cursor: pointer;
    padding: 0 40px 0 20px;
    height: 48px;
    background: url(../images/arr_down.svg) no-repeat calc(100% - 20px) center/auto;
}
.single-choice_wrap.active .single_option{
    background: url(../images/arr_up.svg) no-repeat calc(100% - 20px) center/auto;
}
.single-choice_wrap .single_option li{
    font-family: 'Noto Sans KR', 'sans-serif';
    font-size: 16px;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 48px;
    color: #165FFF;
}
.single-choice_wrap .single_option li p{
    color: #686A6F;
}
.single-choice_wrap .single_select_ul{
    position: absolute;
    background: #fff;
    border-radius: 10px;
    display: none;
    padding: 6px 10px;
    margin-top: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 5%);
    max-height: 36vh;
    overflow-y: auto;
    border: 1px solid #E9EAEA;
    z-index: 1;
    width: calc(100% - 20px);
}    
.single_select_ul::-webkit-scrollbar{
    width: 6px;
    display: block;
}
.single_select_ul::-webkit-scrollbar-thumb{
    height: 103px;
    border-radius: 10px;
    background: #C5C5C5;
    margin-right: 3px;
}
.single-choice_wrap .single_select_ul li{
    padding: 0 10px;
    cursor: pointer;
    border-radius: 6px;
    height: 74px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.single-choice_wrap .single_select_ul li:hover{
    background: #F7F8FA;
}
.single-choice_wrap .single_select_ul p{
    padding-bottom: 2px;
}
.single-choice_wrap.active .single_select_ul{
    display: block;
}
.single-choice_wrap.active .single_option{
    border: 1px solid #165FFF;
}

/* below 540 */
@media screen and (max-width: 540px){

    .mult-field p,
    .result-value-multiple-select,
    .single-choice_wrap .single_option li,
    .single-choice_wrap .single_option li p{
        font-size: 14px;
    }
    .mult-field{
        width: calc(100% - 48px);
        padding: 0 32px 0 16px;
    }
    .jquery-multiple-select ul{
        padding: 2px;
        max-height: 292px;
    }
    .jquery-multiple-select ul li{
        font-size: 12px;
        font-weight: normal;
        width: calc(20% - 4px);
        height: 68px;
        margin: 2px;
        border-radius: 12px;
    }
    .jquery-multiple-select ul li img{
        width: 28px;
        padding: 0;
    }
    .jquery-multiple-select ul li:hover{
        background: local;
    }
    .select2-dropdown{
        margin-left: -78px;
    }
    .single-choice_wrap .single_option{
        background-position: calc(100% - 16px) center !important;
    }
    .single-choice_wrap .single_option{
        padding: 0 32px 0 16px; 
    }
    .single-choice_wrap .single_select_ul{
        width: calc(100% - 8px);
        padding: 4px;
    }
    .single-choice_wrap .single_select_ul li{
        font-size: 12px;
        height: 62px;
    }
    .single-choice_wrap .single_select_ul li p{
        font-size: 12px;
        font-weight: normal;
        white-space: normal;
        display: inline-block;
        overflow: hidden;
        -webkit-line-clamp: 2;
        max-height: 2.8em;
        margin-bottom: 2px;
    }

}