/* New basket item adding */
.newBasketItem {
	text-align: center;
}

.newBasketItem .itemName {
	margin: 18px auto;
	width: 300px;
}

.newBasketItem .proceedOrder {
	margin-right: 10px;
}

/* Basket */
.basket {
	width: 700px; overflow: hidden;
	font-size: 13px;
}

.basket .price i {
	font-size:75%; 
	font-style: normal;
	color: #777;
}

.basket  .items {
	overflow: hidden;
}

.basket .summary {
	float: right;
	width: 300px;
	margin-right: 50px;
	font-size: 14px;
	padding-top: 10px;
}

.basket .totalSumm {
	margin-top: 10px;
}

.basket  .fields {
	float: left;
	width: 350px;
	padding-top: 10px;
}

.basket  select {
	width: 280px;
}

.basket .prettyForm .input label {
	float: none;
}

.basket .inputContainer {
	width: 300px;
	margin-left: 0;
	min-height: 28px;
}

.basket input[type=text], .basket textarea {
	width: 284px;
}

/* Basket item */
.basketFirm {
	overflow: hidden;
	padding: 15px 0;
	border-bottom: 1px solid #eee;
}

.firmItems {
	float: left;
	width: 350px;
}

.firmDetails {
	float: left;
	width: 300px;
	margin-right: 50px;
}

.basketItem {
	overflow: hidden;
	user-select: none;
	-moz-user-select: none;
	margin-bottom: 15px;
}

.basketItem .itemPhoto {
	width: 80px;
	padding: 0 15px 0 0;
	float: left;
}

.basketItem .itemTitle {
	padding-right: 30px;
}

.basketItem .itemPhoto img {
	max-width: 80px;
	display: block;
}

.basketItem .input input {
	text-align: rigth;
	width: 30px !important;
	padding: 2px 4px;
}

.basketItem .priceBlock {
	margin: 5px 0 0 0;
}

.basketItem sub, .basketItem sup, .basketItem del {
	display: inline-block;
	width: 24px; height: 24px;
	cursor: pointer;
	text-decoration: none;
	vertical-align: bottom;
	background-image: url('/img/new/basket_buttons.png');
	background-repeat: no-repeat;
	margin-left: 4px;
	opacity: 0.6;
}

	.basketItem sub {
		background-position: -24px -24px;
	}
		.basketItem sub:hover {
			background-position: -24px 0px;
		}
		
	.basketItem sup {
		background-position: 0px -24px;
	}
		.basketItem sup:hover {
			background-position: 0px 0px;
		}
	
	.basketItem del {
		background-position: -48px -24px;
		float: right;
	}
		.basketItem del:hover {
			background-position: -48px 0px;
		}
		

.basketFirmSumm label {
	display: inline-block;
	width: 95px;
}

/* Basket firm details */
.firmDetails textarea {
    background: url("/img/input_grad_gray.gif") repeat-x scroll 0 0 rgba(0, 0, 0, 0);
    border: 1px solid #d5d5d5;
    border-radius: 5px;
    font-size: 14px;
    padding: 4px 5px;
    resize: none;
}

.firmDetails .basketFirmTitle {
	font-weight: bold;
}

/* Basket reminder */
.basketReminder {
	display: block;
	cursor: pointer;
	position: fixed;
	right: -61px;
	top: 50%;
	margin-top: -41px;
	height: 80px;
	width: 60px;
	border-radius: 10px 0 0 10px;
	border: 1px solid #449e08; border-right: none;
	background: #fafafa url(/img/new/shopping_cart.png) no-repeat 9px 20px;
	
	transition-property: right; transition-duration: 0.3s;
}
	.basketReminderOpen {
		right: 0;
	}

	.basketReminder span {
		display: block;
		text-align: center;
		margin-top: 16px;
		color: #555;
	}
	
.basketCTA {display: inline-block;}

/* Mobile */
@media all and (max-width: 600px) {	
	.basketReminder {display: none;}
	
	.basketBackLink {display: block; margin-top: 10px;}
	
	.basket {
		width: auto;
	}
	
	.firmDetails {
		float: none;
		width: auto;
		margin-right: 0;
		margin-bottom: 20px;
	}
	
	.firmItems {
		float: none;
		width: auto;
	}
	
	.basket .items {
		margin-top: -10px;
	}
	
	.basket .summary {
		float: none;
		width: auto;
		margin-right: 0;
	}
	
	.basket .fields {
		float: none;
		width: auto;
	}
	
	.basket .inputContainer {
		width: auto;
		margin-left: 0;
	}

	.basket input[type=text], .basket textarea {
		width: 240px;
	}
	
	.newBasketItem .itemName {
		width: auto;
	}
}