#shopping_cart_master .calendar {
    font-size: .5em;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(40, 42, 111);
    padding: 0;
    text-shadow: 0 2px 2px rgba(255, 255, 255, .4);
    transform: skew(-12deg);
}

#shopping_cart_master .calendar div {
    padding: 0 7px;
}

#shopping_cart_master .calendar .day,
#shopping_cart_master .calendar .month-year {
    font-weight: 700;
    background: #f2f2f2;
    padding: 7px;
}

#shopping_cart_master .calendar .day-num {
    font-weight: 700;
    font-size: 2em;
    background: #2C325F;
    color: #fff;
    text-shadow: 0 2px 2px rgba(0, 0, 0, .4);
    padding: 15px;
}

#shopping_cart_master .calendar .day-num span {
    font-weight: 300;
    font-size: .4em;
    display: block;
    transform: skew(12deg);
}

#shopping_cart_master .calendar .month-year span {
    font-weight: 300;
}

#shopping_cart_master .match-description {
    text-align: center;
    font-weight: 700;
    font-size: .8em;
    margin: 0;
    padding: 15px 0;
    color: #E8151E;
    text-shadow: 0 2px 2px rgba(255, 255, 255, .4);
}

#shopping_cart_master .match-details {
    display: none !important;
}

.cart {
    padding: 15px 0 0 0;
    border-top: 2px dotted rgba(0, 0, 0, .4);
}

.cart .empty-cart-message {
    font-weight: 700;
    margin: 15px auto;
    color: #2C325F;
}

.cart .empty-cart-message p {
    font-size: .8em;
    margin: 15px auto;
}

.product_row h3 {
    text-align: center;
    font-weight: 700;
    font-size: 1em;
    margin: 15px 0 0 0;
}

.product_row {
    margin: 0;
}
.product_row .col-6 {
    padding-top: 15px;
}
.product_row p.zone {
    text-align: left;
    font-weight: 700;
    font-size: 1.2em;
    margin: 0;
    line-height: 1em;
}

.product_row p.qty,
.product_row p.price {
    font-size: 1.2em;
    margin: 0;

    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product_row p.qty {
    font-size: .9em;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background: #2C325F;
    color: #fff;
    justify-content: center;
    margin-right: 7px;
}

.product_row p.qty .fas {
    transform: rotate(-45deg);
    margin-right: 5px;
    font-size: .6em;
}

.product_row p.price {
    color: #2C325F;
    font-weight: 700;

}

.product_row p.price span {
    margin-left: 3px;
    font-weight: 400;
}

.cart .total {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
}

.cart .total .row {
    margin: 0;
}

.cart .total .col {
    background: #45484d; /* Old browsers */
    background: -moz-linear-gradient(top, #45484d 0%, #000000 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #45484d 0%, #000000 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #45484d 0%, #000000 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#45484d', endColorstr='#000000', GradientType=0); /* IE6-9 */
    padding: 15px;
    color: #B9B075 !important;
    padding: 0;
}

.cart .total .btn {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.4);
}

.cart .total p {
    margin: 0;
    padding-left: 15px;
    color: #fff;
}

.cart .total p:first-of-type {
    font-size: .9em;
    font-weight: 400;
    margin-top: 15px;
}

.cart .total p:last-of-type {
    margin-bottom: 15px;
    font-size: 1.3em;
    font-weight: 700;
}

.cart .total p:last-of-type span {
    margin-bottom: 7px;
    font-size: .6em;
    font-weight: 300;
    display: block;
}

.cart .clear_cart {
    text-align: center;
    padding: 15px;
    margin-top: 15px;
    border-top: 1px dotted rgba(0, 0, 0, .4);
    text-transform: uppercase;
}