.small__basket {
    display: none;
    background: var(--white);
    position: fixed;
    top: 55px;
    right: 0;
    width: 400px;
    z-index: 100;
    flex-direction: column;
    padding: 0 1rem 1rem 1rem;
    height: 64vh;
    justify-content: space-between;
}
.small__basket .small__basket--title {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}
.small__basket .small__basket__item {
    display: grid;
    grid-template-columns: 120px 1fr auto auto;
    align-items: center;
    gap: .5rem;
    padding-bottom: 1rem;
}
.small__basket .small__basket__item:not(:first-child) {
    padding-top: 1rem;
}
.small__basket .small__basket__item:not(:last-child) {
    border-bottom: 1px solid #e3e3e3;
}
.small__basket__item .img__container {
    height: 80px;
    width: 120px;
    display: flex;
    justify-content: center;
}
.img__container .item__img {
    width: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: contain;
    background: white;
    object-position: center;
}
.small__basket__item .basket__details {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: .3rem;
}
.basket__details .product__price {
    font-weight: 600;
    font-size: 0.875rem;
}
.basket__details .product__description {
    font-size: 0.813rem;
    line-height: 1.125rem;
}
.small__basket__container--fixed {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.4);
    top: 55px;
    animation: fadeIn .6s;
}
.small__basket__container--fixed--leave {
    animation: fadeOut .6s;
}
.basket__items {
    overflow-y: scroll;
    min-height: 350px;
    scrollbar-width: thin;
    scrollbar-color: #BFBFBF #E0E0E0;
    margin: 1rem 0;
}
.basket__items::-webkit-scrollbar {
    width: 6px;
}
.basket__items::-webkit-scrollbar-track {
    background: #E0E0E0;
}
.basket__items::-webkit-scrollbar-thumb {
    background-color: #BFBFBF;
    border-radius: 0;
}
.small__basket .basket__delivery__details {
    border-top: 1px solid #e0e0e0;
    padding-top: 1rem;
    margin-bottom: .3rem;
}
.basket__delivery__details .basket__details--row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: .4rem 0;
}
.basket__delivery__details .basket__details--element {
    font-size: 0.875rem;
}
.basket__delivery__details .-bold {
    font-weight: 600;
}
.small__basket .custom__select--basket {
    background: #F0F0F0;
    border: none;
    display: flex;
    justify-content: start;
    align-items: center;
    border-radius: 0;
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 2rem;
}
.small__basket .custom__select--basket .current {
    font-weight: 600;
}
.small__basket .nice-select::after {
   display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 0;
    right: 0;
    margin-left: .7rem;
    margin-top: 0;
}