.cart__inner {
	margin-top: 95px;
	display: flex;
	justify-content: space-between;
	column-gap: 50px;
    
}

.empty-cart {
	position: absolute;
	top: 50%;
	left: 27%;

	font-family: 'lumen__regular', sans-serif;
	font-feature-settings: "case" on;
	text-transform: uppercase;
	text-align: center;
	vertical-align: middle;
}
.empty-cart a {
	cursor: pointer;
	text-decoration: underline;
	margin-top: 10px;
	font-size: 14px;
	color: #ffb700;
	
}
.cart__left {
	position: relative;
	display: flex;
	flex-direction: column;
	row-gap: 50px;
	flex: 70%;

	border-radius: 15px;
	padding: 50px 30px;
	padding-bottom: 80px;
	background-color: #f9f9f9;

}
.cart__img {
	width: 100px;
	height:100%;
	background: #fff;
	border-radius: 8px;

}
.cart__names {
	background-color: #fff;
}

table {
	width: 100%;
}

td {
	background-color: transparent;
	padding: 15px;
	vertical-align: middle;
	text-align: left;
	font-family: 'lumen__regular';
	 font-feature-settings: "case" on;
	 text-transform: uppercase;
}
td:first-child {
	text-align: left;
	border-bottom-left-radius: 8px;
	border-top-left-radius: 8px;
}
td:last-child {
	border-bottom-right-radius: 8px;
	border-top-right-radius: 8px;
}
.cart__product-name{
	display:flex;
	align-items: center;
	column-gap: 10px;
}
.remove__icon {
	height: 30px;
	width: 30px;
	border-radius: 5px;
	background-color: #fff;
	padding: 9px;
	opacity: 0.8;
	vertical-align: middle;

}
.remove__icon:hover {
	opacity: 1;

}
.remove {
	cursor: pointer;
	color: red;
	text-align: center;

}
.cart__buttons {
	background-color: #fff;
	border-radius: 5px;
	position: absolute;
	right: 50px;

}
.cart__buttons-update {
	position: relative;
	border: solid 2px transparent;
	font-family: 'lumen__regular', sans-serif;
	font-feature-settings: "case" on;
	background: url(../img/icons/update.png) no-repeat 12px 10.5px;
	background-size: 20px;
	border-radius: 5px;
	padding-left: 35px;
	 width: 145px;
  	height: 45px;
  	opacity: 0.5;
  	cursor: pointer;
  	transition: 0.5s;
}

.cart__buttons:hover .cart__buttons-update {
	opacity: 1;

}
.cart__buttons-order {
	position: relative;
	border: solid 2px transparent;
	font-family: 'lumen__regular', sans-serif;
	font-feature-settings: "case" on;
	background: url(../img/icons/order.jpg) no-repeat 18px 10.5px;
	background-size: 20px;
	border-radius: 5px;
	padding-left: 45px;
	padding-right: 20px;
	width: auto;
  	height: 45px;
  	opacity: 0.5;
  	cursor: pointer;
  	transition: 0.5s;


}
.cart__buttons:hover .cart__buttons-order {
	opacity: 1;

}
/*
tr {
	display: flex;
	align-items: center;
	flex-direction: row;	
	justify-content: space-between;
}

td {
	text-align: center;
	width: 150px;
	background: orange;
}
td:first-child {
	width: 250px;
	text-align: left;
}
*/
.contacts {
	margin-top: 70px;
}

.contacts__form input {
	width: 100%;
	background-color: #fff;
	margin-top: 10px;
	padding: 15px;
	font-size: 15px;
	font-family: 'lumen__regular', sans-serif;
	font-feature-settings: "case" on;
	border-radius: 8px;

}
.contacts__form textarea {
	width: 100%;
	background-color: #fff;
	margin-top: 10px;
	padding: 15px;
	font-size: 15px;
	font-family: 'lumen__regular', sans-serif;
	font-feature-settings: "case" on;
	border-radius: 8px;
}
.cart__right {
	position: relative;
	display: flex;
	flex-direction: column;
	row-gap: 50px;
	flex: 30%;

	border-radius: 15px;
	padding: 50px;
	background-color: #f9f9f9;
}
.cart__order {
	font-family: 'lumen__regular',sans-serif;
	font-feature-settings: "case" on;
	text-transform: uppercase;
	display: flex;
	flex-direction: column;
	row-gap: 20px;

	
}
h3 {
	font-family: 'lumen__regular',sans-serif;
	font-feature-settings: "case" on;
	text-transform: uppercase;
	background-color: #fff;
	border-radius: 8px;
	padding: 15px;
}
.cart__order-list {
	display: flex;
	flex-direction: column;
	row-gap: 20px;
	padding: 15px;
}
.cart__order-list h4 {
	display: flex;
	padding-bottom: 5px;
	column-gap: 20px;
	justify-content: space-between;
	border-bottom: solid 1px rgba(0, 0, 0, 0.2);

	
}


.order__btn {
	margin-bottom: 20px;
}





/* plus minus  */
/* +-counter */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button
{
	 opacity: 1;
  -webkit-appearance: visible;
  
}

input[type=number]
{
  -moz-appearance: textfield;
}

.quantity input {
  line-height: 30px;
  width: 50px;
 
  border: 1px solid #eee;
}


/*Prevent text selection*/
span{
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
.counter input::-webkit-outer-spin-button,
.counter input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.counter input:disabled{
    background-color:white;
}


/*checkmark*/
/* product color  */


input[type="checkbox"][id^="myCheckbox"] {
  display: none;
}

.product__order label {
  display: flex;
  column-gap: 10px;
  border: 1px solid #fff;
  padding: 15px;
  position: relative;
  margin: 10px;
  cursor: pointer;

  background-color: #F6F6F6;
  border-color: #ccc;
  border-radius: 8px;
}

.product__order label:before {
  background-color: white;
  color: white;
  content: " ";
  display: block;
  border-radius: 50%;
 
  position: absolute;
  top: -10px;
  left: -8px;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 26px;
  transition-duration: 0.4s;
  transform: scale(0);
}
.product__order-text {
	display: flex;
	flex-direction: column;
	font-size: 12px;
	
}
label img {
  height: 28px;
  width: 40px;
  transition-duration: 0.2s;
  transform-origin: 50% 50%;
}

:checked + label {
  background-color: #F6F6F6;
  border-color: #ffb700;
  border-radius: 8px;
}

:checked + label:before {
  content: "✓";
  background-color: #ffb700;
  transform: scale(1);
  border-color: transparent;
}

:checked + label img {
 /* transform: scale(0.9);*/
  /* box-shadow: 0 0 5px #333; */

}
