html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  font-size: 10px;

  margin: 0;
  padding: 0;

  vertical-align: baseline;

  border: 0;
  outline: 0;
  background: transparent;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;

  color: #fff;
  background: #2f3238;
}

h1 {
  font-size: 9em;
}

.h-sub-text {
  font-size: 1.2em;
  line-height: 1.5em;
}

.h-sub-link {
  color: #fff;
}

.h-sub-link:hover {
  color: #ebebeb;
}

.h-sub-text.second {
  margin-bottom: 20px;
}

.hidden {
  display: none;
}

.form-control {
  font-size: 38px;
  font-weight: 500;

  width: 60px;
  height: 60px;

  text-align: center;

  color: #cc6055;
  border: 3px solid #747981;
  background: #2f3238;
}

#update {
  max-width: 94em;
  margin: auto;
}

.wrap {
  max-width: 94em;
  margin: auto;

  text-align: center;
}

.btnHreinsa {
  margin-top: 30px;
}

.suggestion-header {
  font-size: 2.1em;

  margin-bottom: .2em;
}

.suggested-word {
  font-size: 1.7em;
}

.confirm-button {
  margin-top: 20px;
}

.btn-clear {
  margin-top: 1em;
}

.character-input {
  margin-bottom: .2em;
  margin-left: .2em;
}

.btn {
  font-family: Arial;
  font-size: 20px;

  padding: 10px 20px 10px 20px;

  cursor: pointer;
  text-decoration: none;

  color: #ffffff;
  border: 3px solid #2f3238;
  background: #747981;
}

.btn:hover {
  text-decoration: none;

  color: #747981;
  border: 3px solid #747981;
  background: #2f3238;
}

.suggestion-container {
  position: relative;

  overflow: hidden;

  -webkit-transition: all .25s;
  transition: all .25s;

  opacity: 1;
}

.suggestion-container.animated-up {
  max-height: 0;

  opacity: 0;
}

/* Amount letters */

.amount-letters-wrap {
  overflow: hidden;

  margin-bottom: 20px;

  -webkit-transition: all .3s;
  transition: all .3s;

  opacity: 1;
}

.amount-letters-wrap.animated-up {
  max-height: 0;

  opacity: 0;
}

.amount-letters {
  font-size: 30px !important;

  margin-right: 10px;
  margin-left: 10px;
}

.amount-letters-label {
  font-size: 3em;
}

/* Placeholders */
.form-letter::-webkit-input-placeholder {
  text-align: center;

  opacity: 0.3;
}

.form-letter:-moz-placeholder {
  text-align: center;

  opacity: 0.3;
}

.form-letter::-moz-placeholder {
  text-align: center;

  opacity: 0.3;
}

.form-letter:-ms-input-placeholder {
  text-align: center;

  opacity: 0.3;
}

.tw {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

@media (max-width: 500px) {
  h1 {
    font-size: 5em;
  }

  #update {
    margin-top: 15px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .wrap {
    box-sizing: border-box;
    padding: 20px;
  }

  .amount-letters-label {
    font-size: 2em;
  }
}

/* LOADING ANIM */

.loader {
  font-size: 10px;

  position: relative;

  width: 11em;
  height: 11em;
  margin: 50px auto;

  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load3 1.4s infinite linear;
  animation: load3 1.4s infinite linear;
  text-indent: -9999em;

  border-radius: 50%;
  background: #ffffff;
  background: -moz-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
  background: -webkit-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
  background: -o-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
  background: -ms-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
  background: linear-gradient(to right, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
}

.loader:before {
  position: absolute;
  top: 0;
  left: 0;

  width: 50%;
  height: 50%;

  content: '';

  border-radius: 100% 0 0 0;
  background: #ffffff;
}

.loader:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  width: 75%;
  height: 75%;
  margin: auto;

  content: '';

  border-radius: 50%;
  background: #2f3238;
}

@-webkit-keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* clearfix */
.clear:before,
.clear:after {
  display: table;

  content: ' ';
}

.clear:after {
  clear: both;
}
