.cart-select {
    position: relative;
    display: block;
    width: fit-content;
}

.cart-select__head {
    position: relative;
    width: 470px;
    height: 45px;
    max-width: 100%;
    border: 1px solid #E1E1E1;
    
    font-family: "NotoSans", sans-serif;
    font-size: 16px;
    line-height: 26px;
    padding-left: 15px;
    color: #B3B3B3;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.cart-select__head::after {
    width: 14px;
    height: 9px;
    background: url("../images/arrow-select.svg") no-repeat center;
    position: absolute;
    right: 20px;
    bottom: 50%;
    transform: translateY(50%);
    content: '';
    display: block;
    transition: .2s ease-in;
}

.cart-select__head.open::after {
    transform: translateY(50%) rotate(180deg);
}

.cart-select__list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #E1E1E1;
    margin-top: 5px;
    max-height: 205px;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 100;
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #424348;
    scrollbar-color: dark;
    scrollbar-width: thin;
    overscroll-behavior: contain;
}

.cart-select__list::-webkit-scrollbar {
    width: 7px;
    background-color: #F8F9FA;
    padding: 5px;
}

.cart-select__list::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #D9D9D9;
}

.cart-select__list .cart-select__item:not(:first-child) {
    border-top: 1px solid rgba(224, 229, 231, 0.5);
}

.cart-select__list .cart-select__item {
    position: relative;
    padding: 9px 15px;
    cursor: pointer;
    color: #B3B3B3;
    list-style-type: none;
    font-family: "NotoSans", sans-serif;
    font-size: 16px;
    line-height: 26px;
}

.cart-select__list .cart-select__item:hover {
    background-color: rgba(224, 229, 231, 0.5);
}
