/* ========== ORDER ========== */
/* HEADER STEP */
.orderStep {
	width: 96%;
	height: auto;
	float: left;
	margin-left: 2%;
	margin-top: 120px;
}
.orderStep ul {
	width: 100%;
	height: 8px;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 4px;
}
.orderStep ul li {
	width: 25%;
	height: 8px;
	float: left;
	position: relative;
	background: #fff;
}
.orderStep ul li:first-child {
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}
.orderStep ul li:last-child {
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}
.orderStep ul li span {
	width: 40%;
	height: 30px;
	position: absolute;
	top: -11px;
	left: 30%;
	font: 200 14px 'Open Sans', Arial;
	color: #999;
	text-align: center;
	line-height: 30px;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 15px;
}
.orderStep ul li.passed, .orderStep ul li.passed span {
	background: #3c3;
	color: #fff;
	border: none;
}
.orderStep ul li.active, .orderStep ul li.active span {
	font-weight: 500;
	background: #09f;
	color: #fff;
	border: none;
}
/* CART LIST */

div.cartList {
	width: 96%;
	margin-left: 2%;
	margin-top: 3%;
	font: 200 14px'Open Sans', Arial;
	float: left;
}
div.cartList ul {
	width: 100%;
	float: left;
	border-bottom: 1px solid #a7abb4;
	transition: all 0.3s ease-out;
}
div.cartList ul:hover {
	background: rgba(255, 255, 255, 0.75);
}
div.cartList ul li {
	width: 7%;
	float: left;
	padding: 1% 0.5%;
}
div.cartList ul li:first-child {
	width: 23%;
	text-align: center;
}
div.cartList ul li:last-child {
	width: 2%;
}
div.cartList ul.header li {
	background: #fff;
	font: normal 14px'Open Sans', Arial;
	border-top: 1px solid #a7abb4;
}
div.cartList ul li p {
	text-align: left;
}
div.cartList ul li p img {
	height: 40px;
	float: left;
	margin-right: 10px;
}
div.cartList ul li.quantity {
	width: 6%;
}
div.cartList ul li input[type="number"] {
	width: 35px;
	padding: 5px;
	margin-top: 7px;
	border: 1px solid #ccc;
	border-radius: 5px;
}
div.cartList ul li label.disable,
div.cartList ul li.disable {
	color: #bbb;
}
div.cartList ul li span {
	width: 100%;
	float: left;
}
div.cartList ul li.price {
	font-weight: normal;
	color: #f28628;
}
div.cartList ul li.price,
div.cartList ul li.nfc {
	margin-top: 10px;
}
div.cartList ul li submit {
	width: 20px;
	height: 20px;
	margin-top: 10px;
	background: transparent url(images/icons/icon-close2.png) center center no-repeat;
	border: none;
	cursor: pointer;
	transition: all 0.1s ease-out;
}
div.cartList ul li submit:hover {
	background: transparent url(images/icons/icon-del-cart-hover.png) center center no-repeat;
}
div.cartList ul.footer li {
	width: 49%;
	font: normal 14px'Open Sans', Arial;
	line-height: 30px;
	background: #fff;
	height: 30px;
}
div.cartList ul.footer li span {
	width: auto;
	float: none;
	font-weight: bold;
	padding: 0px 5px;
}
div.cartList ul.footer li span.price {
	color: #f28628;
}
div.cartList ul.footer li input[type="submit"] {
	width: auto;
	height: 30px;
	float: right;
	padding: 0px 15px;
	margin-right: 10px;
	color: #fff;
	font: normal 14px'Open Sans', Arial;
	background: #09f;
	border: none;
	border-bottom: 2px solid #0185c6;
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.3s ease-out;
}
div.cartList ul.footer li input[type="submit"]:hover {
	background: #0185c6;
}

/* ADDRESS */

div.address {
	width: 96%;
	float: left;
	margin-left: 2%;
	margin-top: 3%;
}
div.address ul {
	width: 50%;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.75);
	margin: 0px auto;
	padding: 2%;
	border: 1px solid #ccc;
	border-radius: 5px;
}
div.address ul li {
	width: 100%;
}
div.address p {
	margin-bottom: 10px;
	overflow: hidden;
}
div.address span {
	width: 100%;
	float: left;
	font: normal 14px'Open Sans', Arial;
	margin-bottom: 5px;
}
div.address span.title {
	font: 500 14px'Open Sans', Arial;
}
div.address span.info {
	font: 200 12px'Open Sans', Arial;
}
div.address input[type="text"] {
	width: 46%;
	height: auto;
	font: 200 12px'Open Sans', Arial;
	line-height: 25px;
	padding: 2px 1%;
	margin-right: 2%;
	margin-bottom: 1%;
	background: #fff;
	border: none;
	border: 1px solid #a7abb4;
	border-radius: 5px;
}
div.address input#mainStreet, div.address input#alley, div.address input#number, div.address input#postCode, div.address input#fax {
	margin-right: 0px;
}
div.address label {
	font: normal 14px'Open Sans', Arial;
}
div.address ul li input[type="submit"] {
	width: auto;
	height: 30px;
	float: right;
	padding: 0px 15px;
	margin-right: 5px;
	color: #fff;
	font: normal 14px'Open Sans', Arial;
	background: #09f;
	border: none;
	border-bottom: 2px solid #0185c6;
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.3s ease-out;
}
div.address ul li input[type="submit"]:hover {
	background: #0185c6;
}

/* PAYMENT */

div.payment {
	width: 96%;
	float: left;
	margin-left: 2%;
	margin-top: 3%;
	text-align: center;
}
div.payment h2 {
	width: 50%;
	margin: 0px auto;
	font: 200 24px 'Open Sans', Arial;
	margin-bottom: 20px;
}
div.payment ul {
	width: 96%;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.75);
	padding: 2%;
	border: 1px solid #ccc;
	border-radius: 5px;
}
div.payment ul li {
	width: 50%;
	margin: 0px auto;
}
div.payment p {
	margin-bottom: 10px;
	overflow: hidden;
}
div.payment span {
	width: 100%;
	float: left;
	font: normal 14px'Open Sans', Arial;
	margin-bottom: 5px;
}
div.payment span.title {
	font: 500 14px'Open Sans', Arial;
}
div.payment span.info {
	font: 200 12px'Open Sans', Arial;
}
div.payment span.price {
	font: 200 20px'Open Sans', Arial;
	color: #c00;
}
div.payment span strong {
	font-weight: 500;
	color: #3c3;
}
div.payment ul li input[type="submit"] {
	width: auto;
	height: 30px;
	padding: 0px 15px;
	margin-right: 5px;
	color: #fff;
	font: normal 14px'Open Sans', Arial;
	background: #09f;
	border: none;
	border-bottom: 2px solid #0185c6;
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.3s ease-out;
}
div.payment ul li input[type="submit"]:hover {
	background: #0185c6;
}
div.payment ul li input[type="submit"].save {
	background: #3c3;
	border-bottom: 2px solid #393;
}
div.payment ul li input[type="submit"].save:hover {
	background: #393;
}

/* FINAL */

div.final {
	width: 96%;
	float: left;
	margin-left: 2%;
	margin-top: 3%;
	text-align: center;
}
div.final h2 {
	width: 50%;
	margin: 0px auto;
	font: 200 24px 'Open Sans', Arial;
/*	margin-bottom: 10px;*/
}
div.final ul {
	width: 96%;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.75);
	padding: 2%;
	border: 1px solid #ccc;
	border-radius: 5px;
}
div.final ul li {
	width: 50%;
	margin: 0px auto;
}
div.final p {
	margin-bottom: 10px;
	overflow: hidden;
}
div.final span {
	width: 100%;
	float: left;
	font: normal 14px'Open Sans', Arial;
	margin-bottom: 5px;
}
div.final span.title {
	font: 500 14px'Open Sans', Arial;
}
div.final span.info {
	font: 200 12px'Open Sans', Arial;
}
div.final span.tracking {
	font: 200 20px'Open Sans', Arial;
	color: #c00;
}
div.final ul li input[type="submit"] {
	width: auto;
	height: 30px;
	padding: 0px 15px;
	margin-right: 5px;
	color: #fff;
	font: normal 14px'Open Sans', Arial;
	background: #09f;
	border: none;
	border-bottom: 2px solid #0185c6;
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.3s ease-out;
}
div.final ul li input[type="submit"]:hover {
	background: #0185c6;
}
