.cart-dropdown {
    width: 300px;
    padding: 20px
}

.cart-dropdown .cart {
    max-height: 300px;
    overflow: auto
}

.cart-dropdown .cart::-webkit-scrollbar {
    width: 5px
}

.cart-dropdown .cart::-webkit-scrollbar-track {
    background-color: #e6e6e6
}

.cart-dropdown .cart::-webkit-scrollbar-thumb {
    background-color: #b3b3b3;
    border-radius: 8px
}

.cart-dropdown .cart::-webkit-scrollbar-thumb:hover {
    background: #686868
}

.cart-dropdown__entry {
    display: table;
    width: 100%;
    position: relative;
    margin-bottom: 12px;
    padding: 0 26px 10px 0;
    border-bottom: 1px dashed #ddd
}

.cart-dropdown__thumb {
    display: table-cell;
    vertical-align: top;
    width: 62px;
    padding-right: 12px
}

.cart-dropdown__thumb a {
    display: block;
    border-radius: 5px;
    overflow: hidden
}

.cart-dropdown__thumb img {
    width: 100%;
    max-width: 100%;
    height: auto;
    vertical-align: middle
}

.cart-dropdown__content {
    display: table-cell;
    vertical-align: top
}

.cart-dropdown__title {
    display: block;
    font-size: 12px;
    line-height: 14px;
    color: #333;
    text-decoration: none
}
    
.cart-dropdown__meta {
    padding-top: 4px;
    color: #999;
    font-size: 13px
}

.cart-dropdown__delete {
    position: absolute;
    top: -1px;
    right: 0;
    font-size: 20px
}

.cart-dropdown__delete a {
    display: flex;
    color: #999
}

.cart-dropdown__delete a:hover {
    color: red !important
}

.cart-dropdown__total {
    margin-bottom: 10px;
    font-size: 14px
}

.cart-dropdown__total .c_summ {
    font-weight: 700
}

.aside-cart {
    position: fixed;
    z-index: 99;
    top: 150px;
    right: 0;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .1);
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px
}

 
.aside-cart .dropdown__content {
    top: 0;
    right: 100%
}

.aside-cart__item:first-child .aside-cart__link {
    border-top-left-radius: 8px;
    border-bottom: 1px solid #e2e2e2
}

.border-radius-normal .aside-cart__item:first-child .aside-cart__link {
    border-top-left-radius: 4px
}

.aside-cart__item:last-child .aside-cart__link {
    border-bottom-left-radius: 8px
}

.border-radius-normal .aside-cart__item:last-child .aside-cart__link {
    border-bottom-left-radius: 4px
}

.aside-cart__link {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 65px;
    height: 65px;
    text-decoration: none;
    color: #999;
    background-color: #fff
}

.aside-cart__count {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 13px;
    right: 13px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #e2e2e2;
    font-size: 13px;
    color: #fff
}
 
.aside-cart--stylish-color-dark {
    background-color: #333;
}

.aside-cart--stylish-color-dark .aside-cart__link {
    color: #fff;
    background-color: #333;
}

.aside-cart--stylish-color-dark .aside-cart__count {
    background-color: #555;
    color: #fff;
    border-color: #555;
}

.aside-cart--stylish-color-dark svg path {
    fill: #fff;
}
 
.aside-cart--bg-primary {
    background-color: var(--main-color);
}

.aside-cart--bg-primary .aside-cart__link {
    color: #fff;
    background-color: var(--main-color);
}

.aside-cart--bg-primary .aside-cart__count {
    background-color: #fff;
    color: var(--main-color);
    border-color: #fff;
}

.aside-cart--bg-primary svg path {
    fill: #fff;
}
 
.aside-cart--bg-light {
    background-color: #fff;
}

.aside-cart--bg-light .aside-cart__link {
    color: #333;
    background-color: #fff;
}

.aside-cart--bg-light .aside-cart__count {
    background-color: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
}

.aside-cart--bg-light svg path {
    fill: #333;
}
 