.close {
	display:inline-block;
	width:25px;
	height:100%;
	background:url(../cart/close.svg) center center no-repeat;
	cursor:pointer
}
.itemWrapper {
	align-items:center;
	flex-grow:5;
}
.item input {
	max-width:30px;
	-moz-appearance:textfield;
}
.itemName {
	width:30%;
	overflow:auto;
	font-size:0.9rem
}
.priceTotal {
	color:#454545;
	font-weight:bold
}
.priceTotal.price {
	font-size:1.5rem;
}
.totalWrapper {
	padding:10px 0;	
}
.item {
	display:flex;
	justify-content:space-between;
	align-items:center;		
	margin-top:10px;	
	background-color:whitesmoke;
	border-bottom:1px solid silver;
	overflow:hidden;
	opacity:1;
	max-height:100px;
	transition:all 0.3s linear;
}
.item .price {
	font-size:1.1rem;
	width:80px;	
}
.item img {
	height:30px;
	cursor:pointer;
	transition:all 1s ease;
}
.item img:hover {
	transform-origin:0 50%;
	transform:scale(3);
}
.hideItem {
	max-height:0;
}
.sendOrder > div {
	display:flex;	
	border-bottom:1px solid whitesmoke;
}

.sendOrder .button {	
	width:300px;
	margin:10px;
	box-sizing:border-box;
}
.sendOrder .button:first-of-type {
	margin-left:0;
}
.item > * {
	padding:5px;
}
.clientInfo {	
	width:300px;
	padding:10px;
	margin-left:10px;	
	border-left:1px solid whitesmoke;
}
.clientInfo table {
	width:100%;
}
.clientInfo td {
	padding-bottom:10px;
}
.note:first-of-type {
	margin-top:10px;
}
.clientInfo small {
	display:inline-block;	
	color:#454545;	
}
.clientInfo input, #deliveryAbroad {
	width:100%;
	box-sizing:border-box;
}
.buttonWrapper {
	display:flex;
	align-items:center;
}
.buttonWrapper span {	
	padding:10px;	
}
#liqpayButton {
	padding-left:40px;
}
#liqpayButton:before {
	content:"";		
	position: absolute;
	top: 0px;
	left: 15px;
	bottom: 0px;
	display: inline-block;
	width: 30px;
	height:30px;
	margin: auto;
}
.instructions {
	color:#454545;
	font-size:0.8rem;
	margin-top:30px;
}
@media screen and (max-width: 1025px) {
.sendOrder > div, .item {
	display:table;
	width:100%;	
}
.item {
	position: relative;
	padding: 5px 0;
}
.close {
	float:right;
	margin-top:10px;
	padding:5px;
}
.item > * {
	display:inline-block;
	vertical-align:middle;
}
.buttonWrapper {
	border:0 !important;	
}
.buttonWrapper a {
	display:none;
}
.clientInfo {
	margin:0;
	padding:5px 0;
	border-left:0;
}
}
@media screen and (max-width: 360px) {
.item img:first-of-type {
	display:none;
}
.buttonWrapper button, .buttonWrapper div {
	display:table;
	margin: 10px auto !important;
}
}