.myb-cart-icon {
    position: fixed;
    bottom: 20px;
    width: var(--myb-width, 60px);
    height: var(--myb-height, 100px);
    cursor: pointer;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
    z-index: 9999;
}

.myb-position-right {
    right: var(--myb-offset, 20px);
    left: auto;
}

.myb-position-left {
    left: var(--myb-offset, 20px);
    right: auto;
}

.myb-cart-icon .badge {
    position: absolute;
    top: -10px;
    right: -10px;
    min-width: 20px;
    padding: 5px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
}

@media (min-width: 769px) {
    .myb-hide-desktop {
        display: none;
    }
}

@media (max-width: 768px) {
    .myb-cart-icon {
        width: var(--myb-width-mobile, 50px);
        height: var(--myb-height-mobile, 80px);
    }

    .myb-hide-mobile {
        display: none;
    }
}