
/***************************************************************************************************************************************************/
/*																																		 CSS RESET */
/***************************************************************************************************************************************************/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
	content: none;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/***************************************************************************************************************************************************/
/*																																	 		SHARED */
/***************************************************************************************************************************************************/

@font-face {
    font-family: 'commodore_64_pixelizedregular';
    src: url('../../fonts/commodorepixelized-webfont.eot');
    src: url('../../fonts/commodorepixelized-webfont.eot?#iefix') format('embedded-opentype'),
         url('../../fonts/commodorepixelized-webfont.woff2') format('woff2'),
         url('../../fonts/commodorepixelized-webfont.woff') format('woff'),
         url('../../fonts/commodorepixelized-webfont.ttf') format('truetype'),
         url('../../fonts/commodorepixelized-webfont.svg#commodore_64_pixelizedregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

::selection {
	background-color: transparent;
}
::-moz-selection {
	background-color: transparent;
}
* {
	-webkit-text-size-adjust: none;
	-moz-text-size-adjust: none;
	-ms-text-size-adjust: none;

	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;

	-webkit-appearance: none;
	-moz-appearance: none;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;

	margin: 0px;	/* FIX IE INITIAL NaN VALUE */
	padding: 0px;	/* FIX IE INITIAL NaN VALUE */
}
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
}
img {
	vertical-align: middle;
	display: block;
}

/* ----------------------------------------------------------> BASE LAYOUT */

body {
	color: #333;
	font-family: 'Lato', sans-serif;
	font-size: 12px;
	line-height: 16px;
	overflow-x: hidden;
}
body.bg {
	background-color: #ddd;
}
#wrapper {
	min-width: 320px;	/* GLOBAL SITE MIN WIDTH */
	max-width: 1920px;	/* GLOBAL SITE MAX WIDTH */
}
#site-overlay {
	background-color: #fff;
	position: fixed;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	z-index: 16000;
}
#site-overlay .spinner {
	width: 160px;
	height: 16px; /* set as body line-height */
	color: #009fe3;
	text-align: center;
	margin: auto;
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
}
html.cssanimations #site-overlay .spinner {
	width: 30px;
	height: 30px;
	font-size: 0px;
	line-height: 0px;
	border: 3px solid #f4d546;
	border-bottom-color: #009fe3;
	border-radius: 100%;
	-webkit-animation: rotate 1s linear 0s infinite;
	animation: rotate 1s linear 0s infinite;
}
@-webkit-keyframes rotate {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes rotate {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

/* ----------------------------------------------------------> RESPONSIVE RULES */

@media screen and (max-width: 480px) {
	
}

/* ----------------------------------------------------------> BASE LINKS */

a {
	text-decoration: none;
	position: relative;
	cursor: pointer;
}
a.txt-link {
	color: #333;
}

/* ----------------------------------------------------------> UTILITIES */

.busy {
	cursor: progress !important;
}
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}
.clearfix:after {
    clear: both;
}
.float-center {
	margin-left: auto !important;
	margin-right: auto !important;
}

/***************************************************************************************************************************************************/
/*																																	   		  PAGE */
/***************************************************************************************************************************************************/

#page {
	background-color: #fff;
	overflow: hidden;
	position: relative;
	z-index: 14000;
}
#page-wrapper {
	padding-left: 30px;
	padding-right: 30px;
}
#page-content {
	padding-top: 30px;
	padding-bottom: 30px;
}
#logo {
	max-width: 100%;
	height: auto;
}
#content-wrapper {
	max-width: 320px;
	text-align: center;
}
#inner-wrapper {
	display: table;
}
#info-wrapper {
	margin-top: 25px;
}
#social-wrapper {
	width: 150px;
	margin-top: 20px !important;
}
#social-wrapper a {
	width: 40px;
	color: #fff;
	background-color: #009fe3;
	font-size: 16px;
	line-height: 40px;
	text-align: center;
	margin: 5px;
	display: inline-block;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}
#social-wrapper a.instagram,
#social-wrapper a.pinterest {
	font-size: 18px;
}

/* ----------------------------------------------------------> RESPONSIVE RULES */

@media screen and (max-width: 480px) {
	
}