﻿.cart-status-bar {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0px 10px 16px;
    position: fixed;
    bottom: -1px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.5);
    display: none
}
.cart-status-bar.show {
    display: flex;
}

.left-content {
    flex-grow: 1;
    text-align: left;
}

.right-content {
    flex-shrink: 0;
    margin-left: 10px;
}
