.cart-hide-button {
    border: none;
    background-color: gray;
    font-family: Em;
    width: 80%;
    margin-top: 10px;
}

.cart-payment-button {
    border: none;
    background-color: #297fb8;
    color: white;
    font-family: Em;
    width: 80%
}

.cart-footer {
    padding-bottom: 15px;
}

.t-cart{
    padding-bottom: 15px;
    font-size: 14px;
}

.t-cart #total-amount{
    font-size: 18px;
    font-weight: 600;
    color: #297fb8;
}

.cart-packs-list {
    padding-right: 13px;
    width: 100%;
    overflow-y: auto;
    max-height: 350px;
}

.cart-body {
    padding: 0 15px 15px 15px;
    max-height: 70vh;
    overflow: hidden;
}

.cart-body::before{
    display: block;
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    top: 45px;
    left: 0;
    right: 0;
    background: #ccc;
}

.cart-container {
    z-index: 999;
    width: 350px;
    background-color: white;
    position: fixed;
    display: none;
    right: 3px;
    top: 115px;
    max-height: 80vh;
}

.header-buy-cart{
    padding: 15px 0;
}

.header-buy-cart .b-cart p{
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.remove-from-cart-button {
    padding: 0;
    font-weight: bold;
    color: #ccc;
    float: right;
    background: transparent;
    border: 2px solid #ccc;
    border-radius: 100%;
    width: 25px;
    margin-top: 5px;
    line-height: 20px;
    height: 25px;
    font-size: 24px;
}

.remove-from-cart-button:hover {
    background-color: #ccc;
    color: white;
}

.cart-item-single-item-container {
    padding-bottom: 10px;
    text-align: left;
    padding-left: 10px;
}

.cart-pack-title-container {
    text-align: left;
    vertical-align: top;
}

.cart-image-container {
    width: 100px;
}

.bottom-gray-border {
    border-bottom: solid #ececec 1px;
}


