.b-cart {
    position: fixed;
    top: 186px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    z-index: 11;
}
.b-cart:hover {
    opacity: 0.8;
}
.b-cart svg {
    fill: var(--bs-primary-text);
    stroke: var(--bs-primary-text);
    width: 38px;
    height: 38px;
}
.b-items {
    margin-bottom: 50px;
    padding: 0;
    float: right;
}
.b-items .b-items__item {
    display: inline-block;
    border: 1px solid #eee;
    width: 200px;
    position: relative;
    border-radius: 4px;
    margin: 0 0 21px 12px;
}
.b-items .b-items__item .b-items__item__img {
    border-radius: 4px 4px 0 0;
}
.b-items .b-items__item a {
    display: block;
    text-decoration: none;
    text-align: center;
}
.b-items .b-items__item a:hover {
    opacity: 0.8;
}
.b-items .b-items__item__title {
    display: block;
    font-size: 1.125rem;
    margin-top: 9px;
    font-family: "Helvetica Neue";
    color: #95A5A6;
}
.b-items .b-items__item__add-to-cart {
    font-family: "Helvetica Neue";
    display: block;
    color: #fff;
    padding: 12px 0;
    border-radius: 0 0 4px 4px;
}
.b-flying-img {
    position: absolute;
    width: 200px;
    height: 200px;
    top: 0;
    left: 100%;
    z-index: 5;
    animation: fly 0.8s 1;
    -webkit-animation: fly 0.8s 1;
    -webkit-backface-visibility: hidden;
}
@keyframes fly {
    0% {
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-webkit-keyframes fly {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}
.b-cart__count {
    content: attr(data-totalitems);
    font-size: 0.75rem;
    font-weight: 600;
    position: absolute;
    top: -12px;
    right: -12px;
    background: #358000;
    line-height: 24px;
    padding: 0 5px;
    height: 24px;
    min-width: 24px;
    color: #EEEEEE;
    text-align: center;
    border-radius: 24px;
}
.fa-shopping-cart {
    color: white;
}
