section.cart {
    padding-top: 160px;
    background: #fff;
    color: #000;
}

.text-capitalize{
    text-transform: capitalize;
}
.btn-pay-container {
    max-width: 800px;
    margin: 0 auto 0;
}

.btn-pay-container .btn {
    width: intrinsic;           /* Safari/WebKit uses a non-standard name */
    width: -moz-max-content;    /* Firefox/Gecko */
    width: -webkit-max-content; /* Chrome */
}

section.cart .contents {
    margin-top: 60px;
    height: 100%;
    background: #F9F9F9;
    padding-bottom: 60px;
}

section.cart .contents:before {
    content: '';
    position: absolute;
    margin-top: 0;
    left: 0;
    height: 100px;
    width: 100%;
    background: #fff;
    z-index: 0;
}

.shopping-cart {
    border: 1px solid #CDCDCD;
    background: #fff;
    max-width: 800px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
    padding: 30px 30px 0 30px;
}

.shopping-cart h3 {
    font-size: 1.5em;
}

p.toggler {
    margin: 0px auto 15px;
    text-align: center;
    cursor: pointer;
    transition: all .4s;
}

p.toggler:hover {
    color: #008484;
    transform: rotate(-180deg);
}

.shopping-cart form.coupon {
    width: 300px;
    margin: 15px auto 15px;
    border: 1px solid #AFAFAF;
    padding: 5px 3px;
}

.shopping-cart form.coupon .form-control {
    border: none;
    border-radius: 0;
    font-size: .9em;
    width: 70%;
    color: #270015;
}

.shopping-cart form.coupon .form-control::placeholder {
    font-size: .9em;
    font-weight: 600;
    color: #270015;
}

.shopping-cart form.coupon button {
    background-color: transparent;
    border-left: 1px solid #AFAFAF;
    width: 30%;
    color: #008484;
    font-size: .95em;
    min-width: initial;
}

#shopping_cart {
    transition: all 1s;

}

#shopping_cart .col.p-0 {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

#shopping_cart h2 {
    text-align: left;
    font-weight: 600;
    font-size: 1.15em;
    line-height: 1.5em;
    text-transform: initial;
}

#shopping_cart h2 p {
    font-weight: 500;
    font-size: .9em;
    text-transform: initial;
}

#shopping_cart .product_row .col {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

#shopping_cart .product_row p {
    margin: 7px 15px 7px 0;
    text-transform: uppercase;
}
#shopping_cart .seat {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
#shopping_cart .seat p.zone_details {
    font-weight: 600;
    border-right: 1px solid #000;
    padding-right: 15px;
    margin-right: 15px;
}

#shopping_cart .product_row p:first-of-type {
    font-weight: 600;
    border-right: 1px solid #fff;
    padding-right: 15px;
}

#shopping_cart .total-qtys {
    display: flex;
    justify-content: flex-end;
}

#shopping_cart .subtotal_row {
    margin-top: 15px;

}

#shopping_cart .subtotal_row .col {
    border-top: 1px dotted #EDEDED;
    border-bottom: 1px solid #EDEDED;
    padding: 15px;
}

#shopping_cart .subtotal_row .col:last-of-type {
    display: flex;
    justify-content: flex-end;
}

#shopping_cart .subtotal_row p {
    margin: 0;
}

#shopping_cart .subtotal_details_row {
    margin-top: 15px;
    margin-bottom: 15px;
}

#shopping_cart .subtotal_details_row .col p {
    margin: 0;
}

#shopping_cart .subtotal_details_row .col p:first-of-type {
    font-weight: 600;
}

#shopping_cart .subtotal_details_row .col:last-of-type {
    text-align: right;
}

#shopping_cart .applied_promotion {
    background: #008484;
    color: #fff;
    margin-left: -30px;
    margin-right: -30px;
    margin-bottom: 0px;
}

#shopping_cart .applied_promotion a {
    font-size: .8em;
    margin-left: 7px;
    margin-right: 7px;
}

#shopping_cart .applied_promotion .col {
    display: flex;
    align-items: center;
    min-height: 60px;
    padding: 0 30px;
}

#shopping_cart .applied_promotion .col:last-of-type {
    justify-content: flex-end;
}

#shopping_cart .total_row {
    margin-left: -30px;
    margin-right: -30px;
    border-top: 2px solid #EDEDED;
}

#shopping_cart .total_row .col {
    padding-left: 30px;
    padding-right: 30px;
}

#shopping_cart .total_row .col:last-of-type {
    display: flex;
    justify-content: flex-end;
}

#shopping_cart .total_row .col p {
    line-height: 2em;
    font-size: 1.2em;
    font-weight: 600;
    margin: 7px 0;
    text-transform: capitalize;
}

.slide_in {
    transition: all .4s;
    animation: slide_in 1.5s forwards;
}

@media only screen
and (min-device-width: 320px)
and (max-device-width: 812px)
and (orientation: portrait) {
    #shopping_cart .col.p-0 {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    #shopping_cart .col p {
        font-size: .8em;
    }

    #shopping_cart .total_row .col {
        padding-left: 30px;
        padding-right: 30px;
    }
    #shopping_cart .applied_promotion .col {
        padding: 0 15px;
    }
    .shopping-cart form.coupon {
        width: auto;
    }
}