.shop-cart-mod {
    position: relative;
    display: flex;
    justify-content: flex-end;
    flex-basis: 0px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2;
}

.shop-cart-mod a {
    text-decoration: none;
}

.shop-cart-mod__basket-icon {
    height: 64px;
    width: 64px;
    border-radius: 50%;
    background-color: #E7332A;
    background-image: url(../images/shop/cart.svg);
    background-size: 42px;
    background-position: center;
    background-repeat: no-repeat;
    transition: 0.3s;
}

.shop-cart-mod__basket-icon:hover {
    background-color: #BF1421;
}

.shop-cart-mod__basket-icon-count {
    color: #FFFFFF;
    background-color: #161A1F;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    position: absolute;
    right: 0px;
}

.shop-cart-mod__basket-content {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    width: 320px;
    z-index: 2;
    bottom: 80px;
    right: 0px;
    transition: 0.5s;
}

.shop-cart-mod__basket-content:hover,
.shop-cart-mod__basket-icon:hover+.shop-cart-mod__basket-content {
    visibility: visible;
    opacity: 1;
}

.shop-cart-mod__basket-list {
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #DCDCDC;
    background-color: #FFFFFF;
    overflow: hidden;
    box-shadow: 0px 0px 0px 3000px rgba(0, 0, 0, 0.25);
}

.shop-cart-mod__basket-rows {
    max-height: 300px;
    overflow-y: auto;
    padding: 0 10px;
}

.shop-cart-mod__basket-rows::-webkit-scrollbar {
    width: 8px
}

.shop-cart-mod__basket-rows::-webkit-scrollbar-thumb {
    background-color: #EDEDED
}

.shop-cart-mod__basket-rows::-webkit-scrollbar-thumb {
    background-color: #DCDCDC;
    border-left: 0 solid;
    border-radius: 5px
}

.shop-cart-mod__basket-row {
    padding: 10px 0px;
    border-bottom: 1px dashed #DCDCDC;
    position: relative;
}

.shop-cart-mod__basket-row:last-child {
    border: none;
}

.shop-cart-mod__basket-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 150%;
    margin-bottom: 5px;
    font-size: 12px;
}

.shop-cart-mod__basket-name a {
    color: #161A1F;
}

.shop-cart-mod__basket-image {
    float: left;
    text-align: center;
    line-height: 0%;
    margin-right: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.shop-cart-mod__basket-image img {
    height: 50px;
}

.shop-cart-mod__basket-delete-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0px;
    line-height: 0%;
    background-image: url(../images/shop/delete.svg);
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #BF1421;
    position: absolute;
    top: 5px;
    margin-left: -5px;
    transition: 0.3s;
}

.shop-cart-mod__basket-delete-icon:hover {
    background-color: #E7332A;
}

.shop-cart-mod__basket-quantity {
    display: flex;
}

.shop-cart-mod__basket-quantity-minus,
.shop-cart-mod__basket-quantity-plus {
    width: 18px;
    border-radius: 5px;
    font-size: 0px;
    line-height: 0%;
    cursor: pointer;
    background-color: #25292D;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px;
    transition: 0.3s;
}

.shop-cart-mod__basket-quantity-minus {
    background-image: url(../images/shop/minus.svg);
}

.shop-cart-mod__basket-quantity-plus {
    background-image: url(../images/shop/plus.svg);
}

.shop-cart-mod__basket-quantity-minus:hover,
.shop-cart-mod__basket-quantity-plus:hover {
    background-color: #62676E;
}

.shop-cart-mod__basket-quantity-input {
    font-size: 12px;
    line-height: 125% !important;
    width: 24px !important;
    padding: 3px !important;
    margin: 0px 3px !important;
    text-align: center;
}

.shop-cart-mod__basket-price {
    float: right;
    margin-top: -20px;
}

.shop-cart-mod__basket-price em {
    margin-right: 5px;
    font-style: normal;
}

.shop-cart-mod__basket-total {
    margin-top: 5px;
    border-top: 1px solid #848484;
    padding-top: 10px;
    text-align: center;
}

.shop-cart-mod__basket-incart {
    align-self: center;
}

.shop-cart-mod__in-cart-message {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 5px;
    white-space: nowrap;
    text-decoration: none;
    position: absolute;
    padding: 5px;
    top: -5px;
    right: 0;
    left: 0;
    background: #FFFFFF;
    box-shadow: 0px 0px 10px 10px #FFFFFF;
}

@media (max-width: 575px) {
    .shop-cart-mod__in-cart-message {
        position: static;
        box-shadow: none;
    }
}

.shop-cart-mod__item-list-added {
    color: #34A853;
    background-color: #FFFFFF;
    border-radius: 5px;
    position: absolute;
}

.shop-cart-mod__in-cart-pro {
    text-decoration: none;
}

.shop-cart-mod__item-pro-added {
    color: #34A853;
    background-color: #FFFFFF;
    border-radius: 5px;
    position: absolute;
}

.bonus_add {
    color: #34A853;
    margin-bottom: 10px;
}

.shop-cart-mod__no-display {
    display: none;
}

.bonus_payment {
    background: #FFFFFF;
    margin: 0px;
    padding: 0px 20px 20px;
}

.bonus_block:first-child {
    font-weight: bold;
}