@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/opensans/v27/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4gaVc.ttf) format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/opensans/v27/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1x4gaVc.ttf) format('truetype');
}
html {
  background: #222233;
  color: #AACCFF;
  font: 2em/1.5 "Helvetica Neue Regular", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif default;
  font-weight: 100;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
html body {
  margin: auto;
  width: 100%;
  height: 8.5em;
  text-align: center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
/** %[Object] Radio buttons */
/*------------------------------------*/
@-webkit-keyframes pulse {
  0% {
    width: 0.7em;
    height: 0.7em;
    margin: 0.4em;
  }
  50% {
    width: 1.1em;
    height: 1.1em;
    margin: 0.2em;
  }
  100% {
    width: 0.9em;
    height: 0.9em;
    margin: 0.3em;
  }
}
@-moz-keyframes pulse {
  0% {
    width: 0.7em;
    height: 0.7em;
    margin: 0.4em;
  }
  50% {
    width: 1.1em;
    height: 1.1em;
    margin: 0.2em;
  }
  100% {
    width: 0.9em;
    height: 0.9em;
    margin: 0.3em;
  }
}
@-o-keyframes pulse {
  0% {
    width: 0.7em;
    height: 0.7em;
    margin: 0.4em;
  }
  50% {
    width: 1.1em;
    height: 1.1em;
    margin: 0.2em;
  }
  100% {
    width: 0.9em;
    height: 0.9em;
    margin: 0.3em;
  }
}
@keyframes pulse {
  0% {
    width: 0.7em;
    height: 0.7em;
    margin: 0.4em;
  }
  50% {
    width: 1.1em;
    height: 1.1em;
    margin: 0.2em;
  }
  100% {
    width: 0.9em;
    height: 0.9em;
    margin: 0.3em;
  }
}
.radio {
  color: #798188;
  cursor: pointer;
  margin-left: 0.5em;
  display: inline-block;
}
.radio,
.radio span:before {
  -webkit-transition: 0.25s ease;
  -moz-transition: 0.25s ease;
  -ms-transition: 0.25s ease;
  -o-transition: 0.25s ease;
  transition: 0.25s ease;
}
.radio span {
  width: 1.5em;
  height: 1.5em;
  margin-right: 0.5em;
  border-radius: 3em;
  background: #0081D0;
  vertical-align: top;
  display: inline-block;
}
.radio span:before {
  content: '';
  width: 0.7em;
  height: 0.7em;
  margin: 0.4em;
  border-radius: 3em;
  display: inline-block;
  background-color: rgba(0, 0, 0, 0);
}
.radio:hover span:before {
  background-color: rgba(255, 255, 255, 0.9);
}
/*------------------------------------*/
input[type="radio"]:checked + .radio {
  color: #f8f8f8;
}
input[type="radio"]:checked + .radio span:before {
  background-color: #004190;
  width: 0.9em;
  height: 0.9em;
  margin: 0.3em;
  -webkit-animation: pulse 0.25s;
  -moz-animation: pulse 0.25s;
  -o-animation: pulse 0.25s;
  animation: pulse 0.25s;
}