.cart-page {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	justify-content: center;
	padding: 2% 0;
}
.title_centered {
	display: -webkit-inline-flex;
	display: -moz-inline-flex;
	display: -ms-inline-flex;
	display: -o-inline-flex;
	display: inline-flex;
}
.title-card {
	font-size: 1.4rem;
}
.order {
	max-width: 1200px;
	width: 100%;
	margin: 60px auto 30px;
	padding: 0 1%;
}
.order.empty {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	justify-content: space-between;
}
.order__row {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	text-align: center;
	padding-bottom: 5px;
	-ms-align-items: center;
	align-items: center;
	margin-bottom: 20px;
	color: #565656;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(107, 117, 123, 0.23);
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
}
.empty-msg {
	display: none;
	padding: 50px 0;
}
.empty-msg h2 {
	color: #000;
	text-transform: uppercase;
	font-size: 1.4rem;
}
.empty-msg h3 {
	font-weight: normal;
	line-height: 1.6;

}
.empty-msg h3 a {
	color: #00796B;
	text-transform: uppercase;
}
.empty-msg h3 a:hover {
	color: #000;
}
.empty-msg h3 span {
	color: #F05228;
}
.order__row_header {
	text-transform: uppercase;
	border-bottom: 1px solid rgba(107, 117, 123, 0.23);
	padding: 10px 0;
	font-size: 1.1rem;
	color: #3d0805;
	font-weight: bold;
}
.order__row_footer {
	border-bottom: none;
	justify-content: flex-end;
}
.order__delivery {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}
.order__row .order__product {
	width: 60%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	position: relative;
	-ms-align-items: center;
	align-items: center;
}

.order__row .order__product img {
	min-width: 100px;
}

.order__row .order__price,
.order__row .order__qun,
.order__row .order__total {
	width: 13.3%;
}

.order__row .order__total-all {
	font-style: italic;
	margin-top: 10px;
}
.order__row .order__delete-btn {
	width: 100%;
	text-align: right;
}
.order__row .order__delete-btn button {
	border: none;
	outline: none;
	cursor: pointer;
	color: #b22222;
	margin-left: 0;
	margin-right: 50px;
	padding: 0;
	margin-top: 5px;
	-ms-align-items: center;
	align-items: center;
	font-size: .9rem;
	letter-spacing: 1px;
}

.order__row .order__delete-btn button:hover {
	color: #F15124;
	background-color: transparent;
}
.order__row .order__product a {
	text-decoration: none;
	color: inherit;
	font-size: 1.2rem;
}
.order__row .order__product .name {
	margin-left: 10px;
	color: #000;
	font-size: 1.2rem;
}
.order__row .order__product button img {
	width: 30px;
}

.order__row .order__qun input {
	width: 60px;
	padding: 5px;
	border: none;
	border-bottom: 1px solid #757575;
	-webkit-box-shadow: none;
	outline: none;
	text-align: center;
}


.cart-deliv-img {
	margin-right: 10px;
}

.order__buttons {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	max-width: 1200px;
	width: 100%;
	justify-content: space-between;
	margin: 60px auto 0;
	padding: 0 1%;
}

.order__buttons .btn {
	display: -webkit-inline-flex;
	display: -moz-inline-flex;
	display: -ms-inline-flex;
	display: -o-inline-flex;
	display: inline-flex;
	-ms-align-items: center;
	align-items: center;
	border: none;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 1rem;
	padding: 0;
	position: relative;
}
.order__buttons .btn span {
	position: relative;
}
.order__buttons .btn span::before {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	opacity: 0;
	-webkit-transform: translateY(5px);
	-ms-transform: translateY(5px);
	-o-transform: translateY(5px);
	transform: translateY(5px);
	height: 2px;
	background-color: #3d0805;
	-webkit-transition: opacity .3s ease, transform .3s ease;
	-o-transition: opacity .3s ease, transform .3s ease;
	transition: opacity .3s ease, transform .3s ease;
}
.order__buttons .btn:hover {
	background-color: transparent;
	color: #3d0805;
}
.order__buttons .btn:hover span::before {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}
.order__buttons .btn img {
	width: 35px;
	margin: 0 10px;
}

.order__buttons .btn-makeOrder {
	display: none;
}
.order__buttons .btn-makeOrder.on {
	display: -webkit-inline-flex;
	display: -moz-inline-flex;
	display: -ms-inline-flex;
	display: -o-inline-flex;
	display: inline-flex;
}

.form-makeorder {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	overflow-y: auto;
	overflow-x: hidden;
	max-width: 600px;
	padding: 0 60px;
	margin: 20px auto 0;
	text-align: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: transform .4s ease;
	-o-transition: transform .4s ease;
	transition: transform .4s ease;
}
.form-makeorder.on {
	position: fixed;
	top: 0;
	right: 0;
	height: 100vh;
	-webkit-transform: translateX(100%);
	-ms-transform: translateX(100%);
	-o-transform: translateX(100%);
	transform: translateX(100%);
	z-index: 9999;
	background-color: #fff;
	-webkit-box-shadow: -2px 0px 10px -3px rgba(0,0,0,.4);
	box-shadow: -2px 0px 10px -3px rgba(0,0,0,.4);
	justify-content: center;
	margin-top: 0;
}

.form-makeorder .close {
	position: absolute;
	right: 10px;
	top: 10px;
	width: 50px;
	height: 50px;
	font-size: 2rem;
	display: block;

}
.form-makeorder.show {
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
}

.form-makeorder .form__head h3 {
	margin-bottom: 20px;
}


@media only screen and (max-height: 650px) {
	.form-makeorder.on{
		height: auto;
		bottom: 0;
		left: 0;
		max-width: 100%;
		overflow-x: hidden;
		overflow-y: auto;
		-webkit-flex-direction: row;
		-moz-flex-direction: row;
		-ms-flex-direction: row;
		-o-flex-direction: row;
		flex-direction: row;
		justify-content: center;
	}
	.form-makeorder input[type="submit"] {
		margin-bottom: 20px;
	}
}

@media only screen and (max-width: 1200px) {
	.order__row .order__delete-btn button {
		margin-right: 30px;
	}
}

@media only screen and (max-width: 992px) {
	.order__row .order__total {
		display: none;
	}
	.order__row .order__price, .order__row .order__qun {
		width: 20%;
	}
}

}
@media only screen and (max-width: 650px) {
	.order__row {
		justify-content: center;
		border-color: lightgrey;
	}
	.order__row_header {
		display: none;
	}
	.order__row .order__product {
		width: 100%;
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
		justify-content: center;
	}
	.order__row .order__price, .order__row .order__qun {
		margin-top: 20px;
		width: 30%;
	}
	.order__row .order__delete-btn {
		text-align: center;
		margin-top: 10px;
	}
	.order__row .order__delete-btn button {
		margin-right: 0;
	}
	.order__row_footer {
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.order__buttons {
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
		justify-content: center;
		-ms-align-items: center;
		align-items: center;
	}
	.order__buttons .btn-makeOrder.on {
		-webkit-order: -1;
		-moz-order: -1;
		-ms-order: -1;
		-o-order: -1;
		order: -1;
		margin-bottom: 20px;
	}
	.order__buttons .btn-makeOrder.on img {
		-webkit-order: -1;
		-moz-order: -1;
		-ms-order: -1;
		-o-order: -1;
		order: -1;
	}
}

@media only screen and (max-width: 480px) {
	.form-makeorder {
		padding: 0 10px;
	}
	.order__row .order__price, .order__row .order__qun {
		width: 50%;
	}
}
