.select {
    display: block;
    margin-top: 12px;
    position: relative;
    width: 100%;
}
.select__head,
.select__list {
    background-color: #fff;
    cursor: pointer;
    padding-left: 10px;
    padding-right: 10px;
    user-select: none;
}
.select__head {
    line-height: 38px;
    padding-right: 38px;
    position: relative;
    z-index: 2;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -moz-box;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.select__head::after {
    width: 23px;
    height: 12px;
    background: #FFF url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3e%3cpath d='M12 15.375L6 9.37501L7.4 7.97501L12 12.575L16.6 7.97501L18 9.37501L12 15.375Z' fill='black'/%3e%3c/svg%3e") no-repeat center / cover;
    position: absolute;
    right: 11px;
    bottom: 50%;
    transform: translateY(50%);
    content: '';
    display: block;
    transition: .2s ease-in;
}
.select__head.open::after {
    transform: translateY(50%) scale(1, -1);
}
.select__list {
    border: 1px solid #C8C8C8;
    border-top: none;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 5px;
    max-height: 186px;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 100;
    margin: 0;
    padding: 0;
    scrollbar-width: thin;
    overscroll-behavior: contain;
    z-index: 1;
    width: 100%;
}
.select__list::-webkit-scrollbar {
    background-color: #F8F9FA;
    padding: 5px;
    width: 5px;
}
.select__list::-webkit-scrollbar-thumb {
    background-color: #D9D9D9;
}
.select__list .select__item:not(:first-child) {
    border-top: 1px solid rgba(224, 229, 231, 0.5);
}
.select__list .select__item {
    position: relative;
    cursor: pointer;
    list-style-type: none;
    margin-bottom: 0;
    padding: 7px 12px;
}
.select__list .select__item.active {
    color: #a5a5a5;
    cursor: default;
    pointer-events: none;
    user-select: none;
}
.select__list .select__item:hover {
    background-color: rgba(224, 229, 231, 0.5);
}

@media (min-width: 721px) {

    .select__head {
        border: 1px solid #C8C8C8;
        border-radius: 50px;
        height: 40px;
        width: 163px;
    }
    .select__head.open {
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
}
@media (max-width: 720px) {

    .select {
        max-width: 100%;
        width: 100%;
    }
    .select__head {
        border: none;
        padding-left: 0;
        padding-right: 20px;
        text-align: right;

        &:after {
            right: -5px;
        }
    }
    .select__head:after {
        right: -5px;
    }
    .select__list {
        border-top: 1px solid #C8C8C8;
    }
}
@media (max-width: 400px) {

    .select {
        position: static;
    }
    .select__list {
        top: 55px;
        width: 100%;
    }
}