/* PRE & DEP */
@import url('form.css');

/* COMMON */
.cart-wrapper {
	position: relative;
	padding: 20px 0;
}
.cart-box {
	position: relative;
	margin-top: 5px;
}
.cart-table-wrapper {
	width: 100%;
	overflow-y: auto;
}
.cart-table {
   	width: 100%;
  	max-width: 100%;
	border-spacing: 0;
  	border-collapse: collapse;
	border: none;
   	background: #FFF;
}
.cart-table th {
	background: #EEE;
	font-weight: 600;
}
.cart-table th,
.cart-table td {
	border: 1px solid #CCC;
	padding: 10px;
}
.cart-table tr:hover {
	background: #FAFAFA;
}
.cart-table .item-product {
	min-width: 150px;
}
.cart-table .item-product a {
	text-decoration: none;
	color: #0077AC;
}
.cart-table .item-product a:hover {
	text-decoration: underline;
}
.cart-table .item-product img {
	display: none;
	float: left;
	margin-right: 10px;
	width: 25px;
	height: 25px;
	object-fit: cover;
}
.cart-table .item-total input[type="number"] {
	width: 33px;
	border: 1px solid #DDD;
	padding: 5px;
}
.cart-table .item-action button {
	display: block;
	width: 25px;
	height: 25px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	text-align: center;
	border: 1px solid #D00;
	background: transparent;
	outline: 0;
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    color: #D00;
    cursor: pointer;
	transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
}
.cart-table .item-action button:hover {
	background: #D00;
	color: #FFF;
}
.cart-table .total-price {
	font-size: 16px;
}
.shipping-box {
	position: relative;
	margin-top: 30px;
}
.button-action button {
	display: block;
	width: 100%;
	margin-top: 10px;
	padding: 5px 10px;
	text-align: center;
	border: 1px solid #CCC;
	background: #F0F0F0;
	outline: 0;
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    color: #333;
    cursor: pointer;
	transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
	letter-spacing: 0px;
}

.button-action button:hover {
	border: 1px solid #0077AC;
	color: #0077AC;
	letter-spacing: 0.5px;
}

.button-action button.primary {
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 600;
	background: #FF9F37;
	border: 1px solid #FF9F37;
	color: #FFF;
}
.button-action button.primary:hover {
	border: 1px solid #0077AC;
	background: #0077AC;
}
.button-action button:disabled {
	background: #CCC;
	border: 1px solid #CCC;
	color: #FFF;
}
.button-action button:disabled:hover {
	background: #CCC;
	border: 1px solid #CCC;
	color: #FFF;
	letter-spacing: 0px;
}
/* Smartphones */
@media (min-width: 300px) {
   .oth-al {
		 display: none;
	 }
}
/* Landscape phones */
@media (min-width: 450px) {
	.oth-al {
		display: block;
	}
}
/* Tablets */
@media (min-width: 600px) {
	.oth-al {
		display: block;
	}
}
/* Bigger tablets */
@media (min-width: 750px) {
	.oth-al {
		display: block;
	}
	.cart-table .item-product img {
		display: block;
	}
}
/* Desktop screen or landscape tablet */
@media (min-width: 900px) {
	.oth-al {
		display: block;
	}
	.cart-box {
		width: 100%;
		min-height: 550px;
		padding-right: 270px;
		box-sizing: border-box;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
	}
	.shipping-box {
		position: absolute;
		top: 0;
		right: 0;
		margin: 0;
		width: 250px;
	}
	.shipping-box .box-title h2 {
    	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
		font-size: 14px;
		font-weight: 600;
	}
}
/* Bigger desktop */
@media (min-width: 1100px) {
	.oth-al {
		display: block;
	}
	.cart-box {
		padding-right: 320px;
	}
	.shipping-box {
		width: 300px;
	}
}
/* Widescreens */
@media (min-width: 1500px) {
	.oth-al {
		display: block;
	}
}
