/** ***************************************
	
	@Author			Avanzare
	@Website		www.avanzare.co
	@Last Update	6:08 PM Thursday, March 13, 2014

	TABLE OF CONTENTS
	---------------------------
	 1. Typography
	 2. Preloader
	 3. Header
	 4. Content
	 5. Footer
	 6. Overlay
	 7. Media Queries


 **  ***************************************/

a, a:hover, a:focus {
	cursor: pointer;
	text-decoration: none;

	-webkit-transition:  300ms;
	   -moz-transition:  300ms;
	    -ms-transition:  300ms;
		 -o-transition:  300ms;
			transition:  300ms;
}
/** 2. PRELOADER
 *****************************************************************/
#prelaoder {
    position: fixed;
	min-height: 100%;
	min-width: 100%;
    background: rgba(15,17,19,1);
    z-index: 1000;
} 

#prelaoder .prelaoder-inner h6 {
    font-size: 20px;
	line-height:20px;
}


.spinner,
.spinner:before {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	border: 9px solid white;
	border-color: transparent white;
	margin: auto;
	border-radius: 50%;

}

.spinner {
	width: 84px;
	height: 84px;
	-webkit-animation: spin 2.2s linear 0s infinite normal;
	   -moz-animation: spin 2.2s linear 0s infinite normal;
	    -ms-animation: spin 2.2s linear 0s infinite normal;
	     -o-animation: spin 2.2s linear 0s infinite normal;
	        animation: spin 2.2s linear 0s infinite normal;
}

.spinner:before {
	content: "";
	display: block;
	width: 54px;
	height: 54px;
	-webkit-animation: spin 1.0s linear 0s infinite reverse;
	   -moz-animation: spin 1.0s linear 0s infinite reverse;
	    -ms-animation: spin 1.0s linear 0s infinite reverse;
	     -o-animation: spin 1.0s linear 0s infinite reverse;
	        animation: spin 1.0s linear 0s infinite reverse;
}

@-webkit-keyframes spin {
	from { -webkit-transform: rotate(0) }
	to { -webkit-transform: rotate(360deg) }
}

@-moz-keyframes spin {
	from { -moz-transform: rotate(0) }
	to { -moz-transform: rotate(360deg) }
}

@-ms-keyframes spin {
	from { -ms-transform: rotate(0) }
	to { -ms-transform: rotate(360deg) }
}
@-o-keyframes spin {
	from { -o-transform: rotate(0) }
	to { -o-transform: rotate(360deg) }
}
@keyframes spin {
	from { transform: rotate(0) }
	to { transform: rotate(360deg) }
}

/** 3. HEADER
 *****************************************************************/ 
#header {
	 z-index: 1000;
	 height: 75px;
	 width: 100%;
	 background: url(../img/bar-bg.png) repeat;
	 border-bottom: 2px solid #01CFCA;
 }
 
/** 4. CONTENT
*****************************************************************/ 
#content{
	text-align: center;
	display:none;
	margin-top: 7%;
}

#content img {
	max-height: 110px;
	margin: 0 auto;
}

#countdown {
	margin: 0 auto;
	text-align: center;
}

.countdown_section {
	display: inline-block;
	margin: 0;
	text-transform: uppercase;
	font-size: 0px;
}

.countdown_amount {
	font-family: 'Open Sans', sans-serif;
	display: inline-block;
	font-size: 100px;
	margin: 20px auto;
	letter-spacing: 0.13em;
	color: #fff;
    text-shadow: rgba(255,255,255,0.5) 0 0 15px;

}

.countdown_section .countdown_amount:before {
	 content: ':';  
}	

.countdown_section:first-child .countdown_amount:before {
	 content: '';  
}

.subscribe-form {
	display: inline-block;
	border: rgba(255, 255, 255, 0.4) 6px solid;
	max-width:500px;
}

.subscribe-form:after {
	padding-bottom:50px;
	padding-right: 100px;
	border-right:2px #fff solid;
	border-bottom:2px #fff solid;
}

.subscribe-form input {
	border: 0;
	border-radius: 0px !important;
	box-shadow: none;
	background: #FFF;
	color: #000;
}

.subscribe-form button {
	border: 0;
	border-radius: 0px !important;
	box-shadow: none;
	background: #333;
	font-weight: 700;
}

.subscribe-form button:hover {
	margin-left: 1px !important;
	background: #fff;
	color: #333;
}

.subscribe-form button:focus,.subscribe-form button:active {
	outline: none;
	border: none;
	background: #333;
}

.subscribe-form .btn-primary[disabled] {
	background: #333;
	border-color: #333;
}
	 
.status-message {
	font-style: italic;
	font-size: 16px;
	color: #FFF;
	height: 26px;
	text-align: center;
}
	
.social-box a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 38px;
    font-size: 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    color: #FFF;
    margin: 6px 1px;
    box-shadow: #FFF 0 0 1px;
	-webkit-transition: 400ms;
	-moz-transition: 400ms;
	-ms-transition: 400ms;
    -o-transition: 400ms;
	transition: 400ms
}

.social-box a.fa-twitter:hover {
    background: #41b7d8;
    color: #fff;
}

.social-box a.fa-facebook:hover {
    background: #3b5997;
    color: #fff;
}

.social-box a.fa-google-plus:hover {
    background: #d64937;
    color: #fff;
}

.social-box a.fa-stack-overflow:hover {
    background: #C60;
    color: #fff;
}

.overlay-control {
	margin-top: 25px;
}

.overlay-control p {
	margin: 0 0 0 0;
	font-size: 18px;
	font-family: 'Open Sans', sans-serif;
	text-transform: uppercase;
}

#trigger-overlay {
	text-shadow: rgba(0, 0, 0, 0.6) 0 0 15px;
	color: rgba(255, 255, 255, 0.6);
	display: inline-block;
	cursor: pointer;
	-webkit-transition: 300ms;
	-moz-transition: 300ms;
	-ms-transition:  300ms;
	-o-transition: 300ms;
	transition: 300ms;
}

#trigger-overlay:hover {
	text-shadow: rgba(255, 255, 255, 0.6) 0 0 15px;
}

#content i {
	font-size: 40px;
}

/** 5. FOOTER
*****************************************************************/ 
#footer {
	background: url(../img/bar-bg.png) repeat;
	border-top: 2px solid #01CFCA;
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 75px;
}

/** 6. OVERLAY
*****************************************************************/
#pattern {
	background: rgba(0, 0, 0, 0.1) url('../img/pattern.png') repeat top left;
	position: fixed;
	min-width: 100%;
	min-height: 100%;
	z-index: -1;
}

.overlay {
	position: absolute !important;
	overflow: hidden;
	width: 100%;
	min-height: 100%;
	top: 0;
	left: 0;
	z-index: 10;
	visibility: hidden;
	opacity: 0;
	background: rgba(15, 15, 15, 0.88) url('../img/pattern-overlay.png') repeat;
	-webkit-transition: -webkit-transform 2.4s, opacity 2.0s, visibility 0.4s;
	transition: transform 2.4s, opacity 2.0s, visibility  0.4s;
}

.overlay.open {
	visibility: visible;
	opacity: 1;
	-webkit-transition: -webkit-transform 1.0s, opacity 1.0s;
	transition: transform 1.0s, opacity 1.0s;
}

.overlay-content {
	display: none;
	text-shadow: none;
	color: #fff;
	position: relative;
	margin-top: 6%;
	padding-bottom: 60px;
}

.overlay-content h1:after {
	content: '.';
	color: #0FF;
	padding-left: 3px;
	font-size: 56px;
    position: relative;
}

.overlay-content .overlay-close {
	width: 80px;
	height: 80px;
	overflow: hidden;
	border: none;
	background: url(../img/cross.png) no-repeat center center;
	text-indent: 200%;
	color: transparent;
	outline: none;
}

.overlay-navigation  { 
    display: inline-block;
	position: absolute ;
	bottom: 0;
	margin-bottom: 0px;
	padding-left: 0px;
	display: none;
}

.overlay-navigation li {
	display: inline-block;
	margin: 10px 2px 0 2px;
	background: rgba(102,102,102,0.2);
	-webkit-transform: skew(-30deg, 0);
       -moz-transform: skew(-30deg, 0);
        -ms-transform: skew(-30deg, 0);
         -o-transform: skew(-30deg, 0);
            transform: skew(-30deg, 0);
}

.overlay-navigation li:hover{
	background: rgba(0, 255, 255, 0.6);
}

.overlay-navigation a{
	color: #fff;
	height: 35px;
	padding: 0 32px;
	font-size: 20px;
	line-height: 35px;
	display: inline-block;
	-webkit-transform: skew(30deg, 0);
       -moz-transform: skew(30deg, 0);
        -ms-transform: skew(30deg, 0);
         -o-transform: skew(30deg, 0);
            transform: skew(30deg, 0);
}
/** 7. MEDIA QUERIES
*****************************************************************/
@media only screen and (max-width: 768px) {
	
    .countdown_amount {
        font-size: 70px;
    }
	
}

@media only screen and (max-width: 480px) {
	
	body {
		margin-bottom: 5px;
	}
	
	#header {
		height: 50px;
	}
	
	#footer{
		height: 0px;
	}
	
    .countdown_amount {
        font-size: 50px;
		margin: 15px auto;
    }
	
	#content img {
		padding: 0 5px 0 5px;
	}
	
	 .input-group, .input-group input, .input-group .input-group-btn, .input-group .btn {
        width: 100%;
        display: block;
        margin: 0 !important;
        text-align: center;
        float: none !important;
    }
	
	.overlay-control {
		margin-top: 0px;
    }
	

	
}

@media only screen and (max-width: 400px) {
	
    .countdown_amount {
        font-size: 40px;
		margin:20px auto;
    }
	
}
