/* -------------------------------------------------------

	Description: CSS3 + jQuery Counter
	Version: 1.0
	Author: Anli Zaimi
	Author URI: http://azmind.com

------------------------------------------------------- */


body {
	margin: 0;
	padding: 0;
	text-align: center;
	
	font: normal 40px 'Myriad Pro',Cuprum, Tahoma, sans-serif;
}

/* -- Button --*/
a{
	color: #fff;
	text-decoration: none;
}
.clr{
	clear: both;
}

.a-btn{
    background:#a9db80;
    background:-webkit-gradient(linear,left top,left bottom,color-stop(#a9db80,0),color-stop(#96c56f,1));
    background:-webkit-linear-gradient(top, #a9db80 0%, #96c56f 100%);
    background:-moz-linear-gradient(top, #a9db80 0%, #96c56f 100%);
    background:-o-linear-gradient(top, #a9db80 0%, #96c56f 100%);
    background:linear-gradient(top, #a9db80 0%, #96c56f 100%);
    filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#a9db80', endColorstr='#96c56f',GradientType=0 );
    padding-left:90px;
    padding-right:105px;
    height:90px;
    display:inline-block;
    position:relative;
    border:1px solid #80ab5d;
    -webkit-box-shadow:0px 1px 1px rgba(255,255,255,0.8) inset, 1px 1px 3px rgba(0,0,0,0.2);
    -moz-box-shadow:0px 1px 1px rgba(255,255,255,0.8) inset, 1px 1px 3px rgba(0,0,0,0.2);
    box-shadow:0px 1px 1px rgba(255,255,255,0.8) inset, 1px 1px 3px rgba(0,0,0,0.2);
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
    border-radius:4px;
    float:left;
    clear:both;
    margin:10px 0px;
    overflow:hidden;
    -webkit-transition:box-shadow 0.3s ease-in-out;
    -moz-transition:box-shadow 0.3s ease-in-out;
    -o-transition:box-shadow 0.3s ease-in-out;
    transition:box-shadow 0.3s ease-in-out;
}
.a-btn img{
    position:absolute;
    left:15px;
    top:13px;
    border:none;
    -webkit-transition:all 0.3s ease-in-out;
    -moz-transition:all 0.3s ease-in-out;
    -o-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}
.a-btn .a-btn-slide-text{
	color: #fff;
	text-decoration: none;
    position:absolute;
    font-size:16px;
    top:26px;
    left:16px;
    color:#6d954e;
    opacity:0;
    text-shadow:0px 1px 1px rgba(255,255,255,0.4);
    -webkit-transition:opacity 0.2s ease-in-out;
    -moz-transition:opacity 0.2s ease-in-out;
    -o-transition:opacity 0.2s ease-in-out;
    transition:opacity 0.2s ease-in-out;
}
.a-btn-text{
    padding:26px 0 0 10px;
    display:block;
    font-size:30px;
    text-shadow:0px -1px 1px #80ab5d;
}
.a-btn-text small{
    display:block;
    font-size:11px;
    letter-spacing:1px;
}
.clr{
	clear: both;
}
.a-btn-icon-right{
    position:absolute;
    right:0px;
    top:0px;
    height:100%;
    width:80px;
    border-left:1px solid #80ab5d;
    -webkit-box-shadow:1px 0px 1px rgba(255,255,255,0.4) inset;
    -moz-box-shadow:1px 0px 1px rgba(255,255,255,0.4) inset;
    box-shadow:1px 0px 1px rgba(255,255,255,0.4) inset;
}
.a-btn-icon-right span{
    width:38px;
    height:38px;
    opacity:0.7;
    -webkit-border-radius:20px;
    -moz-border-radius:20px;
    border-radius:20px;
    position:absolute;
    left:50%;
    top:50%;
    margin:-20px 0px 0px -20px;
    border:1px solid rgba(0,0,0,0.5);
    background:#4e5c50 url(images/arrow_down.png) no-repeat center center;
    -webkit-box-shadow:0px 1px 1px rgba(255,255,255,0.3) inset, 0px 1px 2px rgba(255,255,255,0.5);
    -moz-box-shadow:0px 1px 1px rgba(255,255,255,0.3) inset, 0px 1px 2px rgba(255,255,255,0.5);
    box-shadow:0px 1px 1px rgba(255,255,255,0.3) inset, 0px 1px 2px rgba(255,255,255,0.5);
    -webkit-transition:all 0.3s ease-in-out;
    -moz-transition:all 0.3s ease-in-out;
    -o-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}
.a-btn:hover{
    -webkit-box-shadow:0px 1px 1px rgba(255,255,255,0.8) inset, 1px 1px 5px rgba(0,0,0,0.4);
    -moz-box-shadow:0px 1px 1px rgba(255,255,255,0.8) inset, 1px 1px 5px rgba(0,0,0,0.4);
    box-shadow:0px 1px 1px rgba(255,255,255,0.8) inset, 1px 1px 5px rgba(0,0,0,0.4);
}
.a-btn:hover img{
    -webkit-transform:scale(10);
    -moz-transform:scale(10);
    -ms-transform:scale(10);
    -o-transform:scale(10);
    transform:scale(10);
    opacity:0;
}
.a-btn:hover .a-btn-slide-text,
.a-btn:hover .a-btn-icon-right span{
    opacity:1;
}
.a-btn:active{
    position:relative;
    top:1px;
    background:#80ab5d;
    -webkit-box-shadow:1px 1px 2px rgba(0,0,0,0.4) inset;
    -moz-box-shadow:1px 1px 2px rgba(0,0,0,0.4) inset;
    box-shadow:1px 1px 2px rgba(0,0,0,0.4) inset;
    border-color:#a9db80;
}
.a-btn:active .a-btn-icon-right span{
    -webkit-transform:scale(1.4);
    -moz-transform:scale(1.4);
    -ms-transform:scale(1.4);
    -o-transform:scale(1.4);
    transform:scale(1.4);
}



/* -- Button --*/



#video-skin {
width: 752px;
height: 467px;
background: url(images/videoskin.png);
margin: 0 auto 0;
}

#launching_in {
	

	width: 94%;
	color: #d73759;
	text-shadow: 1px 2px 0 #dcefef;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
	box-shadow:
   0 1px 4px rgba(0, 0, 0, .3),
   -28px 0 20px -23px rgba(0, 0, 0, .8),
   23px 0 20px -23px rgba(0, 0, 0, .8),
   0 0 40px rgba(0, 0, 0, .1) inset;
  box-shadow:
   0 1px 4px rgba(0, 0, 0, .3),
   -23px 0 20px -23px rgba(0, 0, 0, .8),
   28px 0 20px -23px rgba(0, 0, 0, .8),
   0 0 40px rgba(0, 0, 0, .1) inset;}


.launch{
font-size: 20px;
font-style: italic;
color: #4e4e4e;
text-shadow: 1px 2px 0 #dcefef;
}

#counter {
    width: 780px;
    height: 140px;
    margin: 40px auto 0 auto;
    font-size: 120%;
    color: #2d2d2d;
    font-weight: normal;
    line-height: 100px;
    overflow: hidden;
	
}

#counter p {
    
	float: left;
    padding: 0;
    margin: 0 17px 0 13px;
    color: #2d2d2d;
    text-shadow: 0 1px 0 #dcefef;
}

#counter div {
    
    float: left;
    position: relative;
    margin: 0 5px 0 0;
    padding: 0;
    background: #FCF09A;
    box-shadow:
   0 1px 4px rgba(0, 0, 0, .3),
   -23px 0 20px -23px rgba(0, 0, 0, .8),
   28px 0 20px -23px rgba(0, 0, 0, .8),
   0 0 40px rgba(0, 0, 0, .1) inset;}
}

  

#counter div::before, #counter div::after {
    content: "";
        position: absolute;
        bottom: -4px;
        left: 1px;
        right: 1px;
        top: 0;
        z-index: -1;
        
        border: 1px solid #222;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px; 
    border-radius: 4px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(29,29,29,0)), to(rgba(255,255,255,.03)));
    background-image: -webkit-linear-gradient(top, rgba(29,29,29,0), rgba(255,255,255,.03));
    background-image: -moz-linear-gradient(top, rgba(29,29,29,0), rgba(255,255,255,.03));
    background-image: -ms-linear-gradient(top, rgba(29,29,29,0), rgba(255,255,255,.03));
    background-image: -o-linear-gradient(top, rgba(29,29,29,0), rgba(255,255,255,.03));
    background-image: linear-gradient(top, rgba(29,29,29,0), rgba(255,255,255,.03));
}

#counter div::after {
        left: 2px;
        right: 2px;
        bottom: -7px;
        z-index: -2;
    -moz-box-shadow: 0 10px 10px -6px rgba(0,0,0,.5);
    -webkit-box-shadow: 0 10px 10px -6px rgba(0,0,0,.5);
    box-shadow: 0 10px 10px -6px rgba(0,0,0,.5);
}

.digit { width: 70px; position: absolute; top:0; left:0; padding:0; }

#counter div p {
    position: relative; width: 70px; height: 100px;line-height: 100px;
    padding: 0;
    margin: 0;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px; 
    border-radius: 6px;
    border: 0;
    
    /* -- цвет цифр в таймере --*/
	color: #316AC5;
    text-shadow: 1px 1px 0 #222;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(29,29,29,0)), to(rgba(255,255,255,.03)));
    background-image: -webkit-linear-gradient(top, rgba(29,29,29,0), rgba(255,255,255,.03));
    background-image: -moz-linear-gradient(top, rgba(29,29,29,0), rgba(255,255,255,.03));
    background-image: -ms-linear-gradient(top, rgba(29,29,29,0), rgba(255,255,255,.03));
    background-image: -o-linear-gradient(top, rgba(29,29,29,0), rgba(255,255,255,.03));
    background-image: linear-gradient(top, rgba(29,29,29,0), rgba(255,255,255,.03));
}


#text {
	width: 780px;
	margin: 10px auto 30px;
	font-size: 16px;
	font-weight: bold;
	color: #316AC5;
	overflow: hidden;
}

.days, .hours, .minutes, .seconds {
	float: left;
	
}

.days {
	margin: 0 0 0 60px;
}
.hours {
	margin: 0 0 0 160px;
}
.minutes {
	margin: 0 0 0 140px;
}
.seconds {
	margin: 0 0 0 127px;
}


#footer {
	width: 780px;
	margin: 160px auto 30px auto;
	font-size: 16px;
	color: #4e4e4e;
	text-shadow: 1px 2px 0 #dcefef;
}

#footer a { color: #d73759; text-decoration: none; }
#footer a:hover { color: #4e4e4e; text-decoration: none; }

#boxShadow2 {
  width: 95%;
	color: #d73759;
	text-shadow: 1px 2px 0 #dcefef;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
	 box-shadow:
   0 1px 4px rgba(0, 0, 0, .3),
   -23px 0 20px -23px rgba(0, 0, 0, .8),
   23px 0 20px -23px rgba(0, 0, 0, .8),
   0 0 40px rgba(0, 0, 0, .1) inset;
  box-shadow:
   0 1px 4px rgba(0, 0, 0, .3),
   -23px 0 20px -23px rgba(0, 0, 0, .8),
   23px 0 20px -23px rgba(0, 0, 0, .8),
   0 0 40px rgba(0, 0, 0, .1) inset;}
   
   
  #boxShadow {
  width: 95%;
	color: #d73759;
	text-shadow: 1px 2px 0 #dcefef;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
	
  box-shadow: 0 0 40px rgba(0, 0, 0, .1) inset;}


.blok {

width:95%;
margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
background:#fff;
-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
-moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
-webkit-box-shadow: 0 15px 10px -10px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
-moz-box-shadow: 0 15px 10px -10px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
box-shadow: 0 15px 10px -10px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}

.blok:before,
.blok:after {
content:"";
position:absolute;
z-index:-2;
}

.blok p {
font-size:16px;
font-weight:bold;
}


.primer2{position: relative;} 

.primer2:before, .primer2:after{z-index: -1; 
position: absolute; 
content: ""; 
bottom: 17px; 
left: 60px; 
width: 50%; 
top: 80%; 
max-width:220px; 
background: #777; 
-webkit-box-shadow: 0 15px 10px #777; 
-moz-box-shadow: 0 1px 15px #777; 
box-shadow: 0 15px 10px #777; 
-webkit-transform: rotate(-3deg); 
-moz-transform: rotate(-3deg); 
-o-transform: rotate(-3deg); 
transform: rotate(-3deg);} 

.primer2:after{-webkit-transform: rotate(3deg); 
-moz-transform: rotate(3deg); 
-o-transform: rotate(3deg); 
transform: rotate(3deg); 
right: 60px; 
left: auto;} 

.box h3{text-align:center; 
position:relative; 
top:80px;} 

.box{width:70%; 
height:200px; 
background:#FFF; 
margin:40px auto;}

.boxShadow3 {
  width: 80%;
  max-width: 890px;
  margin: 2em auto;
  padding: 1em;
  box-shadow: 0 0 10px 5px rgba(221, 221, 221, 1);
}