/***********************************************************************************************************************
========================================================================================================================


    Metronome - Coming Soon Page

    v 1.0, 13 May 2013

    by Alex Shnayder


========================================================================================================================

    Template stylesheet

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





/*
        Page
==================================================================================================*/

html {
  display: table;
  width: 100%;
  height: 100%;
  font: 300 20px/1.4 'Open Sans', Helvetica, Arial, sans-serif;
  color: #fff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
  background: #181818 url("../img/bg1.jpg") no-repeat;
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

body {
  display: table-cell;
  margin: 0;
  vertical-align: middle;
  text-align: center;
}




/*
        Layout
==================================================================================================*/

.container {
  display: inline-block;
  max-width: 630px;
  padding: 20px;
}

.section {
  margin: 0 0 60px;
}





/*
        Header
==================================================================================================*/

.header {
  font-size: 64px;
  line-height: 1;
  font-weight: 300;
}





/*      Submit button
----------------------------------------------------------*/

.subscription-submit {
  width: 120px;
  height: 50px;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: top;
  font-size: 20px;
  font-family: inherit;
  font-weight: inherit;
  color: #fff;
  text-shadow: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  transition: 0.12s;
}



/*
        Social links
==================================================================================================*/

[class^="icon-"], [class*=" icon-"] {
  width: auto;
  height: auto;
  margin: 0;
  vertical-align: bottom;
  line-height: 1;
  background: transparent;
}

.social-links {
  font-size: 0;
}

.social-links > a {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: 0 0 10px 10px;
  font-size: 24px;
  line-height: 42px;
  color: #fff;
  text-decoration: none;
  text-shadow: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.social-links > a:first-child {
  margin-left: 0;
}

.social-links > a.red {
  background: #d44032;
}

.social-links > a.red:hover,
.social-links > a.red:focus {
  color: #d44032;
}

.social-links > a.blue {
  background: #32a7d3;
}

.social-links > a.blue:hover,
.social-links > a.blue:focus {
  color: #32a7d3;
}

.social-links > a.green {
  background: #00b159;
}

.social-links > a.green:hover,
.social-links > a.green:focus {
  color: #00b159;
}

.social-links > a.yellow {
  background: #e8a800;
}

.social-links > a.yellow:hover,
.social-links > a.yellow:focus {
  color: #e8a800;
}

.social-links > a:hover,
.social-links > a:focus {
  background: #fff;
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}





/*
        Responsiveness
==================================================================================================*/

@media (max-width: 767px) {
  html,
  .subscription-email,
  .subscription-submit {
    font-size: 18px;
  }

  .header,
  .countdown-number {
    font-size: 48px;
  }

  .countdown-label {
    margin-bottom: 5px;
    font-size: 20px;
  }

  .section {
    margin-bottom: 40px;
  }

  .subscription-email {
    width: 340px;
    height: 40px;
    padding: 0 5px;
  }

  .subscription-email:focus {
    padding: 0 8px 0 2px;
  }

  .subscription-submit {
    width: 100px;
    height: 40px;
  }

  .subscription-tooltip {
    padding: 4px 8px;
    white-space: normal;
  }

  .countdown-item {
    margin: 0 0 30px 30px;
  }

  .countdown-number {
    width: 100px;
    height: 100px;
    line-height: 100px;
  }
}
@media (max-width: 480px) {
  .subscription-email,
  .subscription-submit {
    width: 100%;
  }

  .subscription-email {
    margin-bottom: 10px;
  }

  .subscription-email:focus {
    border-right-width: 3px;
  }

  .countdown-item {
    width: 50%;
    margin-left: 0;
  }
}

/*
        buttons
==================================================================================================*/

.btn {
  cursor: pointer;
  display: inline-block;
  background-color: #e6e6e6;
  background-repeat: no-repeat;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(0.25, #ffffff), to(#e6e6e6));
  background-image: -webkit-linear-gradient(#ffffff, #ffffff 0.25, #e6e6e6);
  background-image: -moz-linear-gradient(#ffffff, #ffffff 0.25, #e6e6e6);
  background-image: -ms-linear-gradient(#ffffff, #ffffff 0.25, #e6e6e6);
  background-image: -o-linear-gradient(#ffffff, #ffffff 0.25, #e6e6e6);
  background-image: linear-gradient(#ffffff, #ffffff 0.25, #e6e6e6);
  padding: 5px 14px 6px;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  color: #333;
  font-size: 13px;
  line-height: normal;
  border: 1px solid #ccc;
  border-bottom-color: #bbb;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -webkit-transition: 0.1s linear all;
  -moz-transition: 0.1s linear all;
  transition: 0.1s linear all;
}
.btn:hover {
  background-position: 0 -15px;
  color: #333;
  text-decoration: none;
}
.btn.primary {
  color: #fff;
  background-color: #0064cd;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
  background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
  background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
  background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
  background-image: -o-linear-gradient(top, #049cdb, #0064cd);
  background-image: linear-gradient(top, #049cdb, #0064cd);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border-color: #0064cd #0064cd #003f81;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  text-decoration: none;
}
.btn.disabled {
  cursor: default;
  background-image: none;
  filter: alpha(opacity=65);
  -khtml-opacity: 0.65;
  -moz-opacity: 0.65;
  opacity: 0.65;
}
.btn:disabled {
  cursor: default;
  background-image: none;
  filter: alpha(opacity=65);
  -khtml-opacity: 0.65;
  -moz-opacity: 0.65;
  opacity: 0.65;
}
.btn:active {
  -webkit-box-shadow: inset 0 3px 7px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 3px 7px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 3px 7px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.btn.large {
  font-size: 16px;
  line-height: normal;
  padding: 9px 14px 9px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.btn.small {
  padding: 7px 9px 7px;
  font-size: 11px;
}
button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.alert-message {
  background-color: #eedc94;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1), to(#eedc94));
  background-image: -moz-linear-gradient(top, #fceec1, #eedc94);
  background-image: -ms-linear-gradient(top, #fceec1, #eedc94);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fceec1), color-stop(100%, #eedc94));
  background-image: -webkit-linear-gradient(top, #fceec1, #eedc94);
  background-image: -o-linear-gradient(top, #fceec1, #eedc94);
  background-image: linear-gradient(top, #fceec1, #eedc94);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border-color: #eedc94 #eedc94 #e4c652;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  margin-bottom: 18px;
  padding: 7px 14px;
  color: #404040;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  border-width: 1px;
  border-style: solid;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.alert-message h5 {
  line-height: 18px;
}
.alert-message p {
  margin-bottom: 0;
}
.alert-message div {
  margin-top: 5px;
  margin-bottom: 2px;
  line-height: 28px;
}
.alert-message .btn {
  -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
  -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
}

