 /* =================== 下拉式select設定 #285ee4 =================== */
 .custom-select {
    position: relative;
    font-family: Arial;
}

.custom-select input {
    display: none;
    width: 100%;
    z-index: 2;
    position: absolute;
    width: 100% !important;
    border-radius: 0;
    outline: none;
    border: 0 !important;
}

.custom-select.open_filter input {
    display: block;
    width: calc(100% - 4px) !important;
    top: 2px;
    left: 2px;
}

.custom-select select {
    display: none;
}

.select-selected {
    background-color: #fff;
    border-radius: 8px;
    color: #b4b4b4;
}

.select-selected.select-arrow-active {
    border-radius: 0;
    color: #3d3d3d;
}

.select_changed .select-selected {
    color: #3d3d3d;
}

.select-selected:after {
    position: absolute;
    content: "";
    top: 12px;
    right: 10px;
    background-image: url("../../images/components/btn_type/slk_down_b.svg");
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-position: center;
}

.select-selected.select-arrow-active:after {
    border-color: transparent transparent #fff transparent;
    top: 12px;
    transform: rotate(180deg);
    transition: 0.3s;
}

.select-items {
    max-height: 288px;
    overflow-y: auto;
}

.select-items div,
.select-selected {
    font-size: 20px;
    text-align: center;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, .1) transparent;
    cursor: pointer;
    z-index: 100;
}

.select-selected.select-arrow-active,
.select-selected.select-arrow-active~.select-items>div {
    border-color: transparent transparent var(--main-primary-color) transparent;
}

.select-items {
    position: absolute;
    background-color: #fff;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 100;
}

.select-hide {
    display: none;
}

.select-items div:hover,
.same-as-selected {
    background-color: rgba(0, 0, 0, .1);
}

.select-selected.select-arrow-active {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-top: 2px solid var(--main-primary-color);
    border-left: 2px solid var(--main-primary-color);
    border-right: 2px solid var(--main-primary-color);
}

.select-items {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    border-left: 2px solid var(--main-primary-color);
    border-right: 2px solid var(--main-primary-color);
    border-bottom: 2px solid var(--main-primary-color);
}

.select-items div:last-child {
    border-bottom: 0;
}