@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css?family=Ubuntu');
@import url('https://fonts.googleapis.com/css?family=Raleway');

body {
	font-size: 16px;
	font-family: 'Raleway', sans-serif;
	margin: 0;
	padding: 0;
	color: #000;
}
#header {
	width: 100%;
}

#logotype {
	float: left;
	padding: 14px 16px; 
}

#container {
	width: 100%;
	max-width: 1300px;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
}

#content {
	margin: 14px 12px;
}

#shop {
	text-align: center;
	font-size: 30px;
	color: #FC3;
	margin-top: 15px;
}

#thankyou {
	text-align: center;
	font-size: 24px;
	color: #FC3;
	margin: 50px auto;
}

#thankyou_text {
	text-align: center;
}


/* navigation */

ul#navlist {
margin: 0;
white-space: nowrap;
float: right;
padding: 14px 16px;
}

#navlist li {
display: inline-block;
list-style-type: none;
}

#navlist a { 
padding: 0px 6px;  
}

#navlist a:link, #navlist a:visited {
color: #000;
text-decoration: none;
}

#navlist a:hover {
color: #FC3;
text-decoration: none;
}

#navlist li#active a {
	color: #FC3;
}

/* MEDIA QUERIES*/
@media only screen and (max-width : 940px),
only screen and (max-device-width : 940px){
	ul#navlist {float: right; padding: 14px 16px;}
}
 
@media only screen and (max-width : 720px),
only screen and (max-device-width : 720px){
	ul#navlist {float: right; padding: 14px 16px;}
}
 
@media only screen and (max-width : 530px),
only screen and (max-device-width : 530px){
	ul#navlist {float: left; padding: 14px 12px;}
}
 
@media only screen and (max-width : 320px),
only screen and (max-device-width : 320px){
	ul#navlist {float: left; padding: 14px 12px;}
}


/* end navigation */


#copyright {
	text-align: center;
	font-size: 12px;
	width: 100%;
	background-color: #EEE;
	padding-bottom: 20px;
	border-top: thin
}


/* footer blocks */

.footer-container {
	width: 100%;
	margin: 40px auto 0px;
	overflow: hidden;
	background-color: #EEE;
	padding-bottom: 20px;
}

.footerItem h3 {
	font-weight: normal; 
	font-size: 21px;
	color: #000;
}

.footerItem img {
	/*max-width: 100%;*/
	margin-bottom: 10px;
}

.footerItem {
	font-size: 16px;
	color: #000;
	float: left;		
	width: 29.33333%;
	margin:  1% 2% 24px 2%;
		
} 

/* MEDIA QUERIES*/
@media only screen and (max-width : 940px),
only screen and (max-device-width : 940px){
	.footerItem {width: 29.33333%;}
}
 
@media only screen and (max-width : 720px),
only screen and (max-device-width : 720px){
	.footerItem {width: 46%;}
}
 
@media only screen and (max-width : 530px),
only screen and (max-device-width : 530px){
	.footerItem {width: 96%;}
}
 
@media only screen and (max-width : 320px),
only screen and (max-device-width : 320px){
	.footerItem {width: 96%;}
	/*.footerItem img {width: 96%;}*/
	.footerItem h3 {font-size: 14px;}
	.footerItem p, {font-size: 12px;}
}


/* end footer blocks */


/* contact */

#contact-container {
	width: 100%;
	margin: 40px auto 0px;
	overflow: hidden;
	padding-bottom: 20px;
}

#contact-form {
	float: left;
	width: 60%;
	padding: 0px 10px 30px;
}

#contact-info {
	float: left;
	width: 33%;
	border-left: thin dotted #000000;
	padding: 0px 10px 30px;
}

/* MEDIA QUERIES*/
@media only screen and (max-width : 940px),
only screen and (max-device-width : 940px){
	#contact-form {width: 60%;}
	#contact-info {width: 33%;} 

}
 
@media only screen and (max-width : 720px),
only screen and (max-device-width : 720px){
	#contact-form {width: 60%;}
	#contact-info {width: 33%;} 
}
 
@media only screen and (max-width : 530px),
only screen and (max-device-width : 530px){
	#contact-form {width: 96%; float: none;}
	#contact-info {width: 96%; float: none; border: none;} 
}
 
@media only screen and (max-width : 320px),
only screen and (max-device-width : 320px){
	#contact-form {width: 96%; float: none;}
	#contact-info {width: 96%; float: none; border: none;} 
}


/* end contact */






/* ~~ Element/tag selectors ~~ */
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 0px;
	padding-left: 0px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #999;
	text-decoration: none;
}
a:visited {
	color: #999;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	color: #CCC;
}


/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the overflow:hidden on the .container is removed */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
