/* cart page */
.cart_empty {
    padding: 100px 0 50px 0;
    text-align: center;
    background-color: #f3f3f3;
}

.cart_empty img {
    width: 200px;
    height: auto;
}

.cart_empty_notice {
    font-size: 18px;
    padding: 30px 0;
}

.shopping_now a {
    border: 1px solid #707070;
    border-radius: 8px;
    color: #707070;
    font-size: 20px;
    display: inline-block;
    padding: 10px 20px;
}

.cart_content {
    max-width: 750px;
    margin: 0 auto;
    background-color: #fff;
}

.cart_group {
    border-bottom: 1px dashed #ccc;
    padding: 0 8px;
}

.cart_group_title {
    text-align: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.shippingpromos {
	color: #efd7e5;
    font-weight: bold;
    font-size: 16px;
}

.del_id {
    float: right;
}

.del_id:before {
    font-family: "FontAwesome";
    font-size: 20px;
    content: '\f1f8';
    color: #aaa;
    cursor: pointer;
}

.cart_list {
    border-bottom: 1px dashed #ddd;
    display: -webkit-flex;
    display: flex;
    padding: 8px 0;
}

.cart_list:last-child {
    border-bottom: none;
}

.cart_list_pic {
    padding-right: 10px;
}

.cart_list_pic img {
    width: 100px;
    height: auto;
    display: block;
}

.cart_list_infos {
    width: 100%;
    position: relative;
    padding: 0 20px 25px 0;
}

.cart_list_title span {
    font-size: 12px;
    color: #efd7e5;
    border: 1px solid #efd7e5;
    display: inline-block;
    border-radius: 2px;
    margin-right: 5px;
    padding: 0 4px 1px 4px;
    line-height: normal;
}

.cart_list_attribute {
    display: -webkit-flex;
    display: flex;
	flex-wrap: wrap;
    padding: 5px 0;
}

.cart_list_attribute span {
    padding-right: 10px;
    color: #888;
    font-size: 12px;
    font-family: Arial,Helvetica,Verdana;
}

.cart_list_attribute span:last-child {
    padding-right: 0;
}

.cart_list_remove {
    float: right;
}

.cart_list_remove:before {
    font-family: "FontAwesome";
    font-size: 20px;
    content: '\f1f8';
    color: #aaa;
    cursor: pointer;
}

.cart_list_foot {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
}

.cart_list_price {
    font-weight: bolder;
    font-size: 18px;
    color: #333;
}

.cart_list_qty {
    display: -webkit-flex;
    display: flex;
    text-align: center;
}

.cart_list_qty .cart_add_del {
    border: 1px solid #dedede;
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    background-color: #f8f8f8;
    width: 20px;
    display: inline-block;
    cursor: pointer;
}

.cart_display_qty {
    display: inline-block;
    width: 20px;
    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
    line-height: 25px;
    height: 25px;
}

.cart_display_total {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    line-height: 24px;
}

.display_total {
    text-align: right;
}

.cart_display_total span {
    font-size: 18px;
    font-weight: bold;
    color: #dc362e;
    display: inline-block;
}

.promos-title {
	text-align: center;
	color: #f1b52b;
	font-size: 18px;
	font-weight: bold;
}

.cart_button {
    padding: 15px 8px;
}

.cart_button a {
    display: block;
    box-shadow: 3px 3px 5px #e5e5e5;
    font-size: 20px;
    font-weight: bold;
    color: #121212;
    text-align: center;
    border-radius: 3px;
    padding: 10px;
    margin-bottom: 10px;
    letter-spacing: 5px;
}

.cart_button a.cart_checkout {
    background-color: #5433eb;
}

.cart_button a.cart_continue {
    background-color: #efd7e5;
}