.cart_item {
    display: flex;
    align-items: stretch;
    border: 1px solid #ccc;
    border-bottom: 0;
    justify-content: space-between;
    flex-flow: wrap;
}
.cart_items .cart_item:last-child {
    border-bottom: 1px solid #ccc;
}
.cart_item > div {
    border-right: 1px solid #ccc;
    padding: 20px 10px;
    display: flex;
    align-items: center;
    justify-content: start;
}
.cart_item > div:last-child {
    border: none;
}
.cart_item_img {
    max-width: 15%;
    min-width: 15%;
}
.cart_item_title {
    max-width: 50%;
    min-width: 50%;
}
.cart_item_sale {
    max-width: 10%;
    min-width: 10%;
}
.cart_item_qnt {
    max-width: 10%;
    min-width: 10%;
    margin-bottom: 0 !important;
}
.cart_item_total {
    max-width: 15%;
    min-width: 15%;
}
.cart_item_qnt input {
    width: 30px;
    padding: 5px;
    text-align: center;
    margin-right: 10px;
    border: 1px solid #ccc;
}
[data-cart-update] {
	display:none;
}
.coupon_wrap {
    display: flex;
    align-items: center;
    justify-content: start;
}
.coupon_wrap > * {
    margin-right: 10px;
}
.cart_coupon {
    margin: 20px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
}
.button.cart_button {
    border: 2px solid #000;
    background: #fff;
    color: #000;
    font-weight: normal;
    height: 33px;
    padding: 5px 12px;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 20px;
}
.button.cart_button:hover {
    background: #000;
    color: #fff;
}
[name="cart[coupon]"] {
    height: 33px;
    border: 1px solid #ccc;
    padding: 5px 10px;
}
.coupon_wrap {
    margin-bottom: 10PX;
}
.discount {
    color: #008000;
}
.discounts-error {
    color: #ff0000;
}
.cart_total {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    font-weight: bold;
}
.cart_amount {
    color: #0abab5;
    font-size: 16px;
    font-weight: 600;
    margin-top: 0;
    margin-left: 10px;
}
.cart_buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0;
}
.button.button_green {
    background: #ffcf00;
    border: 2px solid #ffcf00;
    color: #000;
    height: 33px;
    padding: 5px 12px;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 20px;
}
.button.button_green:hover {
    background: #d7b006;
border: 2px solid #d7b006;
    color: #fff;
}
.cart_item_qnt svg {
    cursor: pointer;
}
.cart_item.item_titles > div {
    font-weight: bold;
    justify-content: center;
    padding: 5px;
    background: #efefef;
}
.cart_item.cart_present .cart_item_title {
    flex-flow: wrap;
}
.cart_present_item {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 5px;
}
.cart_present_item img {
    max-width: 40px;
    margin-right: 10px;
    max-height: 40px;
}
.cart_present_item.activex {
    background: #ffce00;
}
.present_wrapper {
    max-height: 100px;
    overflow-y: auto;
    max-width: 400px;
}
.cart_present_item a {
    display: block;
    height: 17px;
    min-width: 20px;
    text-align: right;
    margin-left: auto;
}
.cart_item_img {
    justify-content: center !important;
}
.present_head {
    min-width: 100%;
    margin-bottom: 10px;
    font-weight: bold;
}
.cart_item.cart_present .cart_item_img img {
    width: 80px;
    max-width: 100%;
}
.cart_item.cart_present .cart_item_title {
    max-width: 85%;
    min-width: 85%;
}
@media (max-width: 1024px) {
.cart_item_img {
    max-width: 15%;
    min-width: 15%;
}
.cart_item_title {
    max-width: 35%;
    min-width: 35%;
}
.cart_item_sale {
    max-width: 15%;
    min-width: 15%;
}
.cart_item_qnt {
    max-width: 15%;
    min-width: 15%;
    margin-bottom: 0 !important;
}
.cart_item_total {
    max-width: 20%;
    min-width: 20%;
}
}
@media (max-width: 768px) {
.cart_item.item_titles {
    display: none;
}
.coupon_wrap {
    flex-flow: wrap;
}
}
@media (max-width: 481px) {
[data-cart-submit] {
    order: -1;
}
.cart_item_qnt input {
    margin-right: 0;
    margin-bottom: 10px;
}
.cart_item_qnt {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center !important;
    align-items: center;
}
.cart_item_sale {
    display: none !important;
}
.cart_item_qnt {
    max-width: 20%;
    min-width: 20%;
  }
.cart_item_title {
    font-size: 12px;
}
.cart_item > div {
    min-width: auto;
    border-right: none;
}

.coupon_wrap input {
    min-width: 100%;
}
.coupon_wrap label {
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
}
.cart_total {
    justify-content: center;
}
.cart_buttons {
    flex-flow: wrap;
}
.cart_buttons > * {
    min-width: 100%;
    text-align: center;
    margin: 5px 0;
}
}


