body, html {
  margin: 0;
  background: #FFF;
  font-family: 'Source Sans Pro', sans-serif; }

h1, h2 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0;
  color: #111;
  font-size: 32px;
  line-height: 32px; }
  h1 span, h2 span {
    font-size: 15px; }

h2 {
  font-size: 15px;
  margin-bottom: 5px;
  color: #2d2d2d; }

.textarea {
  min-height: 100px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.container {
  background-color: #FFF;
  width: 600px;
  margin: 50px auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  .container .header {
    padding: 40px 0px; }
  .container .header {
    border-bottom: solid 1px #e9e9e9; }

.content .bloc {
  border-bottom: solid 1px #e9e9e9;
  padding: 40px 0px;
  padding-bottom: 50px;
  margin: 0; }
  .content .bloc:last-child {
    border-bottom: 0; }
  .content .bloc input[type="text"], .content .bloc .textarea, .content .bloc select {
    display: block;
    width: 100%;
    padding: 8px 12px;
    font-size: 13px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 1px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    margin-top: 15px;
    font-family: 'Source Sans Pro', sans-serif;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }
    .content .bloc input[type="text"].loading, .content .bloc .textarea.loading, .content .bloc select.loading {
      pointer-events: none;
      opacity: 0.5; }
    .content .bloc input[type="text"].fail, .content .bloc .textarea.fail, .content .bloc select.fail {
      border-bottom: solid 1px #e74c3c;
      margin-bottom: 5px; }
  .content .bloc label {
    font-size: 13px;
    color: #666;
    padding: 3px 0px;
    display: block; }
    .content .bloc label input {
      margin-right: 10px; }
  .content .bloc .retry {
    color: #e74c3c;
    font-size: 13px; }
    .content .bloc .retry a {
      color: #e74c3c; }
  .content .bloc .output {
    background-color: #f6f8fa;
    padding: 20px;
    margin-bottom: 0;
    margin-top: 20px; }
    .content .bloc .output h3 {
      font-size: 11px;
      font-weight: 300;
      margin: 0;
      margin-bottom: 20px;
      margin-top: 30px;
      color: #7a7a7a;
      text-shadow: 0px 0px 2px #FFF;
      text-transform: uppercase; }
      .content .bloc .output h3:first-child {
        margin-top: 0; }
    .content .bloc .output code {
      background-color: #f6f8fa;
      color: #515151;
      padding: 0; }
    .content .bloc .output pre {
      margin: 0; }

.field {
  position: relative; }
  .field .checkmark {
    position: absolute;
    right: -35px;
    top: 0;
    bottom: 0;
    margin: auto; }

.checkmark {
  width: 22px;
  height: 22px; }

.success .checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #7ac142;
  fill: none;
  -webkit-animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards; }

.success .checkmark {
  width: 22px;
  height: 22px;
  display: block;
  stroke-width: 2;
  stroke: #fff;
  stroke-miterlimit: 10;
  border-radius: 50%;
  -webkit-box-shadow: inset 0px 0px 0px #7ac142;
  box-shadow: inset 0px 0px 0px #7ac142;
  -webkit-animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both; }

.success .checkmark__check {
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  -webkit-animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards; }

@-webkit-keyframes stroke {
  100% {
    stroke-dashoffset: 0; } }

@keyframes stroke {
  100% {
    stroke-dashoffset: 0; } }

@-webkit-keyframes scale {
  0%, 100% {
    -webkit-transform: none;
    transform: none; }
  50% {
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1); } }

@keyframes scale {
  0%, 100% {
    -webkit-transform: none;
    transform: none; }
  50% {
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1); } }

@-webkit-keyframes fill {
  100% {
    -webkit-box-shadow: inset 0px 0px 0px 30px #7ac142;
    box-shadow: inset 0px 0px 0px 30px #7ac142; } }

@keyframes fill {
  100% {
    -webkit-box-shadow: inset 0px 0px 0px 30px #7ac142;
    box-shadow: inset 0px 0px 0px 30px #7ac142; } }
