/**-------------------------------------
CSS File To overide Orderable style
-------------------------------------**/

/*Cards layout*/
#top .orderable-products-list__item .orderable-product{
	background-color:white;
	box-shadow:none;
}
#top .orderable-products-list__item{
	
}
#top .orderable-products-list__item .orderable-product ul{
	display:none;
}
@media screen and (max-width: 480px){
	#top .orderable-products-list__item .orderable-product{
		border-radius: 6px;
		padding:10px;
		box-sizing:content-box;
	}
}
/*Resize product cart*/
@media screen and (min-width: 768px){
	.orderable-products-list--grid .orderable-products-list__item{
		width:33.33%;
	}
}
@media screen and (min-width: 1120px){
	.orderable-products-list--grid .orderable-products-list__item{
		width:20%;
	}
}
/*HIGLIGHT BURGER MODIFICATION*/
#top .highlight-burger .orderable-products-list__item .orderable-product ul{
	display:block;
	margin:0;
}
#top .highlight-burger .orderable-products-list__item .orderable-product ul li{
	padding:0;
}
@media screen and (min-width: 480px){
	.highlight-burger .orderable-products-list .orderable-product__hero{
		width:400px;
	}
}

/*OTHER BURGER LIST MODIFICATION*/
.other-burger .orderable-product__actions{
	flex-flow:column;
	justify-content:center;
	align-items:center;
}
.other-burger .orderable-product__actions-price,
.other-burger .orderable-product__actions-button{
	margin: 0;
}
.other-burger .orderable-products-list .orderable-product__title{
	text-align:center;
}
@media screen and (max-width: 768px){
	.other-burger .orderable-products-list .orderable-product__title{
	text-align:left;
	}
	.other-burger .orderable-product__actions{
		justify-content:right;
		align-items:end;
	}
}
@media screen and (max-width: 480px){
	.other-burger .orderable-products-list__item{
		padding: 0 0 12px;
		margin: 0;
		border: none;
	}
}
/*hide input additional in drawer*/
#top input[type="checkbox"].orderable-product-option__hidden-field{
	display:none;
}
