main 
	min-height 100%
	margin: 0 0 -60px 0;
	padding-bottom: 60px;

	
#shopfront
	width: 100%;
	padding: 20px 0 0 0;
	transition-delay: 0.5s;
	transition 0.6s
	min-height 100%
	
	h3 
		text-align center
	h1
		color black
		text-align center

	.terms
		font-size: 0.6em;
		margin: 20px auto 0px;
		display: inline-block;

.two-col
	width 100%;

section{
  position: relative;
}

#shopfront:after{
	content: "";
	clear: both;
	display: block;
}

.shop
	display block
	
.checkout
	box-sizing border-box
	opacity 0
	top: -110%;
	transition-duration: 0.6s;
	background: #fff;
	padding: 10px 30px;
	max-width: 520px;
	box-sizing: border-box;
	z-index -1
	text-align center
	overflow hidden
	border-radius 2px
	left 0
	right 0
	margin: auto;
	box-shadow: 0px 0px 10px 1px rgba(166,166,166,1);
	
	&.visible 
		opacity: 1;
		top: 0;
		z-index: 10;
		bottom: 0;

	.close
		background: none;
		border: none;
		font-size: 1.6em;
		position: absolute;
		right: 0;
		top: 0;
		
	.customer-information
		position relative
		opacity 0
		height 0;
		overflow hidden
		left -100%;
		transition-duration 0.6s

		&.visible
			opacity 1
			height auto
			left 0;
	
	#checkout
		position relative
		opacity 0
		height 0;
		overflow hidden
		right -100%
		transition-duration 0.6s
		
		&.visible
			opacity 1
			height auto
			right 0
		
		.booking_overview
			
			img
				width: 100px;
				display: inline-block;
				float: left;
				margin: 10px 10px 20px 0;

				
			.order_content
				display: inline-block;
				vertical-align: top;
				float left

		
	button.payment_button
		background: rgb(0, 175, 108);
		border: none;
		border-radius: 3px;
		padding: 5px;
		color: white;
		line-height: 1.4em;
		
		&:hover
			background: #17d864;
			
		&:before
			content: "";
			background: url("../images/padlock.png");
			width: 30px;
			height: 17px;
			display: inline-block;
			background-size: contain;
			padding: 2px;
			background-repeat: no-repeat;
			background-position: center;
			box-sizing: border-box;
			margin: 0 0 -2px 0;
			
	button.back, button.next
		background: rgb(0, 175, 108);
		border: none;
		border-radius: 3px;
		padding: 5px;
		color: white;
		
		&:hover
			background: #17d864;
			
	button.back
		background rgb(25, 127, 175)
		
		&:hover
			background rgb(58, 171, 224)

#products
	width: 100%;
	max-width: 1024px;
	margin: 0 auto;
	line-height: 0;
	text-align: center;
	
	.product
		position: relative;
		width 100%;
		margin: 0 auto 50px;
		display: inline-block;
		box-sizing: border-box;
		height: 360px;
		
		&:after
			content ""
			clear both
		
		&.sold_out
			opacity 0.5
		
			.ribbon 
				position: absolute;
				width: 140px;
				height: 40px;
				background: #ee583a;
				top: 70px;
				left: 0;
				z-index: 10;
				color: #fff;
				line-height: 1em;
				padding: 10px 0 0 0;
				margin: 0 auto;
				right: 0;

	.square
		width: 60%;
		background-size: contain;
		position: absolute;
		margin: auto;
		left: 0;
		right: 0;
		background-position: center center;
		background-repeat: no-repeat;
		
		&:after
			content: "";
			width: 100%;
			height: auto;
			margin-top: 100%;
			display: block;



#products .product.selected a{
  color: #63b6db;
  background: transparent;
}

#products .product.selected a:after{
  content: "\f00c";
}

.product-content{
  position: absolute;
  width: 100%;
  text-align: center;
  line-height: 1;
  margin: 60% 0 0 0;
  padding: 10px 0
}

#products .product h3{
	font-weight: 800;
	font-size: 1em;	
  text-transform: uppercase;
  margin: 0 0 10px;
}

#products .product p{
  text-align: center;
  margin: 20px 0 0
}

#products .product p:nth-child(3){
  text-align: center;
}

#products .product p.price{
  text-align: center;
  font-weight: bold;
  font-size: 14px;
}

#products .product a{
    font-size: 0.7em;
    min-width: 100px;
    margin: 15px 0 0 0;
}

#products .product p.price span {
  display: block;
  font-weight: lighter;
  font-size: 0.7em;
}


@media only screen and (min-width:768px)
	#products
		.product
			width: 30%;
			margin: 0;
			
	.payment_form_indicator
		ul
			margin: 0 0 0 -216px
			li
				margin 10px 50px

.customer-information 
	form
		text-align: center;


		input
			display: block;
			margin: 10px auto 0;


		textarea
			display: block;
			margin: 10px auto 0;
			height: 80px;
			max-width: 320px;
			min-height: 80px;


		input[type="radio"]
			display: inline-block;
			margin 0 20px 0 0 
			
		label
			margin 0 10px 0 0

		p
			margin 30px auto 10px
			text-align center
			display inline-block

		.allergy_input, .injury_input
			height: 0px;
			overflow: hidden;
			transition: 0.6s;


			&.open
				height: 200px;

		.additional_extras
			display none
			
			input
				display inline
			
			label
				display inline

form.payment
	width: auto;
	padding: 15px;
	text-align center

	img
		width: 40px;
		margin: 5px;
		
form.payment input {
	margin 0 0 10px
}

form input.name, form input.number {
	width: 100%;
}

form input.cvv {
	width: 50%;
}
form.payment .column {
	float: left;
	width: 50%;
	max-width 200px
}


form.payment .column:nth-of-type(1) {
  padding-right: 5px;
}
form.payment .column:nth-of-type(2) {
  padding-left: 5px;
}
form.payment .column input {
  width: 100%;
}
form.payment label {
  
}

@media only screen and (min-width:768px)

	.two-col
		width: auto;
		display: inline-block;
		margin: 0 10px;
		vertical-align: top;

/*Sale Price*/

/*.price {
  position: relative;
  display: inline-block;
  font-size: 40px;
}
.price__up {
  position: relative;
  top: -14px;
  left: 2px;
  font-size: 20px;
}
.price_sale {
  color: gray;
}
.price_sale:after {
  content: '';
  position: absolute;
  top: 55%;
  left: -15%;
  width: 130%;
  height: 3px;
  opacity: 0.75;
  background: red;
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
}
*/
/********/

