

/*		Tablet Layout: 768px.
		Gutters: 24px.
		Outer margins: 28px.
		Inherits styles from: Default Layout.
-----------------------------------------------------------------
cols    1     2      3      4      5      6      7      8
px      68    160    252    344    436    528    620    712    */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	
	 {
		width: 712px;
		padding: 48px 28px 60px;
	}
}



/*		Mobile Layout: 320px.
		Gutters: 24px.
		Outer margins: 34px.
		Inherits styles from: Default Layout.
---------------------------------------------
cols    1     2      3
px      68    160    252    */

@media only screen and (max-width: 767px) {
	
	 {
		width: 252px;
		padding: 48px 34px 60px;
	}
	.logo {
		text-align: center;
	}
	.contact {
	  	text-align: center;
	}
	.contact ul li {
		padding: 5px;
	}
	.form-section > h2 {
  		margin-bottom: 0px;
  		margin-top: 0px;
	}
	.first-form input {
  		font-size: 12px;
	}
	.second-form input {
  		font-size: 12px;
	}
	.check-area {
	    font-size: 16px;
	}
	a.submit-bt {
  		padding: 5px 10px;
	}
	a.submit-bt2 {
  		padding: 5px;
	}
	.reward-content > h2 {
  		margin-top: 0px;
	}



}



/*		Wide Mobile Layout: 480px.
		Gutters: 24px.
		Outer margins: 22px.
		Inherits styles from: Default Layout, Mobile Layout.
------------------------------------------------------------
cols    1     2      3      4      5
px      68    160    252    344    436    */

@media only screen and (min-width: 480px) and (max-width: 767px) {
	
	 {
		width: 436px;
		padding: 36px 22px 48px;
	}
	.contact {
  		float: none;
	}
	.header-title h1 {
  		margin: 0%;
	}

}


/*	Retina media query.
	Overrides styles for devices with a 
	device-pixel-ratio of 2+, such as iPhone 4.
-----------------------------------------------    */

@media 
	only screen and (-webkit-min-device-pixel-ratio: 2),
	only screen and (min-device-pixel-ratio: 2) {
	
	body {
	
	}
	
}