select.selectCustom {
    width: 100%;
    height: 36px;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    padding: 0 40px 0 12px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff url("/images/icon/icon_select_arrow-526e332ebd9fc4e2c8c6ba2b39e75e02.svg") no-repeat calc(100% - 12px) center;
}
select.selectCustom:focus {
    border-color: #007afe;
    background: #fff url("/images/icon/icon_select_arrow_focus-d7e0986d017b79fe16e08701bed2fdfa.svg") no-repeat calc(100% - 12px) center;
}
select.selectCustom.min {
    width: 340px;
}
select.selectCustom.auto {
    width: auto;
}
select.selectCustom:disabled {
    background: #f6f6f6 url("/images/icon/icon_select_arrow_dis-0217bcc72c824c7a736b1cbb01c5f9ff.svg") no-repeat calc(100% - 12px) center;
    color: #c9c9c9;
}

.stb-custom-container {
    width: 100%;
    padding: 0;
    margin: 0;
    border: 1px solid #e0e0e0;
    padding: 0;
    font-family: "Spoqa Han Sans", Sans-serif;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.stb-custom-container.min {
    width: 340px;
}
.stb-custom-container.auto {
    width: auto;
}
.stb-custom-container::after {
    content: "";
    width: 10px;
    height: 5px;
    background: url("/images/icon/icon_select_arrow-526e332ebd9fc4e2c8c6ba2b39e75e02.svg") no-repeat center center;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    right: 12px;
    top: 50%;
    margin-top: -2.5px;
    position: absolute;
}
.stb-custom-container .selected {
    color: #c9c9c9;
    width: 100%;
    height: 34px;
    padding: 0 34px 0 12px;
    opacity: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #f6f6f6;
    cursor: not-allowed;
}
.stb-custom-container .selected.on {
    color: #101010;
    cursor: pointer;
    background-color: transparent;
}
.stb-custom-container .stb-custom-select {
    width: calc(100% + 2px);
    border: 1px solid #007afe;
    border-radius: 4px;
    left: -1px;
    top: 34px;
    padding: 6px 0;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 500px;
    background-color: #fff;
    z-index: 20;
    display: none;
}
.stb-custom-container .stb-custom-select li {
    opacity: 1;
    margin-top: 0;
    padding: 9px 12px;
    line-height: 1.2;
    color: #505050;
}
.stb-custom-container .stb-custom-select li:first-of-type {
    opacity: 1;
}
.stb-custom-container .stb-custom-select li:hover {
    background-color: #edf5fc;
    color: #101010;
}
.stb-custom-container .stb-custom-select li + li {
    margin-top: 0;
}
.stb-custom-container .stb-custom-select li.selected {
    background-color: #edf5fc !important;
    color: #101010 !important;
}
.stb-custom-container.on {
    border: 1px solid #007afe;
}
.stb-custom-container.on::after {
    background: url("/images/icon/icon_select_arrow_focus-d7e0986d017b79fe16e08701bed2fdfa.svg") no-repeat center center;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}