.custom-select {
    position: relative;
    display: inline-block;
    min-width: 108px;
    font-size: 14px;
    user-select: none;
    white-space: nowrap;
}

.custom-select__current {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 16px;
    padding-top: 11px;
    border: 0px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    transition: border-color .2s, box-shadow .2s;
}

.custom-select__current:hover {
    box-shadow: 0px 5px 30px rgba(34, 34, 34, 0.1);
}

.custom-select__current:hover {
    border-color: #bbb;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .06);
}

.custom-select.is-open .custom-select__current {
    border-color: #999;
}

.custom-select__arrow {
    width: 12px;
    height: 12px;
    transition: transform .2s;
    position: relative;
    margin-left: 10px;
}

.custom-select__arrow::before {
    display: block;
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid #888;
    border-bottom: 2px solid #888;
    transform: rotate(45deg);
    /* margin-left: 10px; */
}

.custom-select.is-open .custom-select__arrow {
    transform: scaleY(-1);
}

.custom-select__list {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 100%;
    background: #fff;
    border: 0px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
    z-index: 100;
    display: none;
    overflow: hidden;
}

.custom-select.is-open .custom-select__list {
    display: block;
}

.custom-select__item {
    padding: 10px 16px;
    cursor: pointer;
    white-space: nowrap;
    transition: background .15s;
    text-align: left;
}

.custom-select__item:hover {
    background: #f5f5f5;
}

.custom-select__item--active {
    color: #222;
    font-weight: 600;
    background: #f9f9f9;
}

@media (max-width:499px) {
    .sort-line,
    .show-line {
        /* width:253px; */
        max-width: 232px;
    }
    .custom-select {
        min-width: 100%;
    }
}