@charset "UTF-8";
  /* *
 * demo style
 * @authors Marvelous Owl (MarvelousOwl@gmail.com)
 * @date    2014-02-16 21:47:13
 * @version 1.0 */
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html, body {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: #717171;
  background-color: #2e3e4e;
}
.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width:480px) {
.container {
  width: 450px;
}
}
h1 {
  padding: 30px 15px;
  text-align: center;
  font-size: 20px;
  line-height: 50px;
  font-weight: bold;
  color: #adbece;
}
.panel {
  margin-bottom: 20px;
  background-color: #fff;
  color: #717171;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}
.panel .panel-heading {
  color: #333333;
  background-color: #f5f5f5;
  border-color: #e8e8e8;
  border-radius: 2px 2px 0 0;
  padding: 10px 15px;
  border-bottom: 1px solid #e8e8e8;
}
.panel .panel-heading h2 {
  margin: 0;
  padding: 0;
  font-size: 1em;
  text-align: center;
}
.panel-body {
  padding: 30px;
}
.form-group {
  margin-bottom: 15px;
}
.control-label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}
.input {
  display: block;
  width: 100%;
  padding: 10px 12px;
  font-size: 18px;
  color: #555555;
  vertical-align: middle;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #cccccc;
  border-radius: 2px;
  -webkit-transition: border-color ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s;
}
.input:focus {
  border-color: #4cc0c1;
  outline: 0;
}
.checkbox {
  margin: 10px 0;
}
label input[type="checkbox"] {
  vertical-align: -2px;
  margin-right: .2em;
}
.pull-right {
  float: right;
}
.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.428571429;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  background-color: #53b567;
  color: #fff !important;
  border: 1px solid #4bae5f;
  border-radius: 2px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.btn:hover, .btn:focus {
  color: #fff !important;
  background-color: #53b567;
  border-color: #4bae5f;
}
.btn:active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.text-muted {
  border-top: 1px dashed #e8e8e8;
  padding: 10px 0;
  margin: 15px 0 -10px;
}
#footer {
  padding: 1em 0;
  text-align: center;
}
#footer p {
  margin: 0;
}
@-webkit-keyframes fadeInUp {
0% {
  opacity: 0;
  -webkit-transform: translateY(20px);
}
100% {
  opacity: 1;
  -webkit-transform: translateY(0);
}
}
@-moz-keyframes fadeInUp {
0% {
  opacity: 0;
  -moz-transform: translateY(20px);
}
100% {
  opacity: 1;
  -moz-transform: translateY(0);
}
}
@-o-keyframes fadeInUp {
0% {
  opacity: 0;
  -o-transform: translateY(20px);
}
100% {
  opacity: 1;
  -o-transform: translateY(0);
}
}
@keyframes fadeInUp {
0% {
  opacity: 0;
  transform: translateY(20px);
}
100% {
  opacity: 1;
  transform: translateY(0);
}
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  -moz-animation-name: fadeInUp;
  -o-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
.animated {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: .8s;
  -moz-animation-duration: .8s;
  -ms-animation-duration: .8s;
  -o-animation-duration: .8s;
  animation-duration: .8s;
}