.cart {
    background-color: #fff;
    padding: 30px;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, .03);
    box-shadow: 0 1px 10px rgba(0, 0, 0, .03)
}

.cart__title {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    color: #096b30;
    margin-bottom: 20px
}

.cart__price {
    white-space: nowrap;
    color: #cb2028;
    font-weight: 600
}

.cart__delete {
    font-weight: 600;
    color: #343a40
}

.cart__delete:hover {
    color: #cb2028
}

.cart__frame {
    display: block;
    overflow: hidden;
    position: relative;
    z-index: 1;
    display: block;
    overflow: hidden;
    position: relative;
    z-index: 1;
    width: 80px;
    margin-right: 12px
}

.cart__frame::before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 100%
}

.cart__frame img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    position: absolute;
    z-index: -3;
    top: 0;
    left: 0
}

.cart__frame::after {
    content: "";
    display: block;
    width: 100%;
    height: 70%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(40%, rgba(255, 255, 255, .3)), color-stop(45%, rgba(255, 255, 255, .1)), color-stop(90%, rgba(255, 255, 255, .3)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .3) 40%, rgba(255, 255, 255, .1) 45%, rgba(255, 255, 255, .3) 90%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
    position: absolute;
    bottom: 100%;
    left: 0;
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: skewY(-30deg);
    transform: skewY(-30deg);
    -webkit-transition: bottom 0s;
    transition: bottom 0s
}

.cart__frame:hover::after {
    bottom: -200%;
    -webkit-transition: bottom .65s;
    transition: bottom .65s
}

.cart__name {
    display: inline-block;
    min-width: 120px;
    font-size: 14px;
    color: #343a40
}

.cart__name:hover {
    color: #096b30
}

.cart__table {
    border: 1px solid #e1e1e1;
    border-radius: 4px
}

.cart__table thead th {
    border-top: 0;
    border-bottom: 0;
    background-color: #f5f5f5;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap
}

.cart__table thead th:not(:first-child) {
    text-align: center
}

.cart__table tbody td {
    vertical-align: middle
}

.cart__table tbody td:not(:first-child) {
    text-align: center
}

.cart__table tfoot {
    font-weight: 600;
    text-align: right
}

.cart__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 30px
}

.cart__btn {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 45px;
    padding: 0 40px;
    border-radius: 4px;
    background: -webkit-gradient(linear, left top, left bottom, from(#096b30), to(#4b9328));
   background: linear-gradient(to bottom, #00adff, #7892da);
    color: #fff
}

.cart__btn:hover {
    color: #fff;
    text-decoration: none
}

@media (max-width:767px) {
    .cart {
        padding: 0 0 10px
    }

    .cart__title {
        padding: 12px;
        font-size: 20px;
        margin-bottom: 0
    }

    .cart__table {
        border-radius: 0;
        border-left: 0;
        border-right: 0
    }

    .cart__footer {
        margin-top: 10px;
        padding: 0 10px
    }

    .cart__btn {
        font-size: 14px;
        padding: 0 12px;
        line-height: 35px
    }
}

.order {
    background-color: #fff;
    padding: 30px 30px 0;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, .03);
    box-shadow: 0 1px 10px rgba(0, 0, 0, .03)
}

.order__title {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    color: #096b30;
    margin-bottom: 20px
}

.order__block:not(:last-child) {
    margin-bottom: 20px
}

.order__subtitle {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #e1e1e1;
    border-radius: 4px 4px 0 0;
    padding: 10px;
    text-align: center;
    margin-bottom: 0
}

.order__label {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px
}

.order__body {
    border: 1px solid #e1e1e1;
    border-top: 0;
    padding: 20px 20px 16px
}

.order__body:last-child {
    border-radius: 0 0 4px 4px
}

.order__info--expand {
    display: none;
    padding-top: 20px
}

.order__toggle {
    border-top: 1px solid #e1e1e1;
    padding: 16px 0 0
}

.order__btn {
    display: block;
    width: 100%;
    border-radius: 4px;
    background: -webkit-gradient(linear, left top, left bottom, from(#096b30), to(#4b9328));
   background: linear-gradient(to bottom, #00adff, #7892da);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    border: 0;
    line-height: 35px
}

.order__discount .input-group .form-control {
    border-radius: 4px;
    margin-right: 10px
}

.order__discount .input-group .input-group-text {
    border-radius: 4px;
    background: -webkit-gradient(linear, left top, left bottom, from(#096b30), to(#4b9328));
   background: linear-gradient(to bottom, #00adff, #7892da);
    font-weight: 700;
    color: #fff;
    border: 0
}

.order__price {
    white-space: nowrap;
    font-size: 14px;
    font-weight: 700;
    color: #cb2028
}

.order__extend {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 40px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 4px 20px;
    border: 1px solid #e1e1e1;
    border-top: 0
}

.order__extend:last-child {
    border-radius: 0 0 4px 4px
}

.order__extend--label {
    color: #999
}

.order__extend .custom-select,
.order__extend .form-control {
    height: 30px;
    padding-top: 0;
    padding-bottom: 0
}

@media (max-width:767px) {
    .order {
        padding: 20px 10px 0
    }

    .order__title {
        padding: 12px;
        font-size: 20px;
        margin-bottom: 10px
    }

    .order__body {
        padding: 12px
    }

    .order__extend {
        padding: 4px 12px
    }
}

.order-product {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.order-product:not(:last-child) {
    margin-bottom: 16px
}

.order-product__frame {
    display: block;
    overflow: hidden;
    position: relative;
    z-index: 1;
    display: block;
    overflow: hidden;
    position: relative;
    z-index: 1;
    width: 80px;
    margin-right: 10px
}

.order-product__frame::before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 100%
}

.order-product__frame img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    position: absolute;
    z-index: -3;
    top: 0;
    left: 0
}

.order-product__frame img {
    position: absolute;
    -webkit-transition: .3s;
    transition: .3s
}

.order-product__frame:hover img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2)
}

.order-product__title {
    font-size: 14px;
    margin-right: 10px
}

.order-product__price {
    font-size: 14px;
    font-weight: 700;
    color: #cb2028;
    text-align: right
}

.pd-detail {
    background-color: #fff;
    border-radius: 4px;
    padding: 25px;
    margin-bottom: 30px
}

.pd-detail__title {
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 10px 20px;
    line-height: 30px;
    background-color: #e1e1e1;
    margin-bottom: 20px
}