@font-face {
  font-family: ubuntu;
  src: url(../font/Ubuntu-R.ttf);
}

@font-face {
  font-family: ubuntu-l;
  src: url(../font/Ubuntu-L.ttf);
}

* {
  box-sizing: border-box;
  padding: 0px;
  margin: 0px;
  font-family: ubuntu;
  transition: all 0.1s;
}

.okeaa-button {
  background: transparent;
  border: 2px solid white;
  align-self: center;
  color: white;
  height: 40px;
  min-height: 40px;
  font-size: 15px;
  width: 200px;
  cursor: pointer;
  outline: none;
  background: linear-gradient(to right, white 50%, transparent 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  transition: all 0.2s ease-out;
  margin-bottom: 50px;
}

.okeaa-button:hover:enabled {
  background-position: left bottom;
  color: black;
}

.okeaa-button:active {
  opacity: 0.5;
}

.okeaa-input {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  border: 2px solid white;
}

.okeaa-input-error {
  border: 2px solid #ff5f5f;
}

.okeaa-input-error input {
  color: #ff5f5f !important;
}

.okeaa-input-label,
.okeaa-input-error-message {
  font-size: 10px;
  padding: 5px 4px 0px 7px;
  display: flex;
}

.okeaa-input-label img {
  width: 9px;
  height: 9px;
  margin-left: 5px;
  display: none;
}

.okeaa-input-error-message {
  display: none;
  color: #ff5f5f;
}

.okeaa-input input,
.okeaa-input textarea {
  background: transparent;
  border: none;
  padding: 5px;
  color: white;
  outline: none;
}

.okeaa-input textarea {
  resize: none;
}

/*
@media only screen and (max-width: 600px) {
  body {
    background-color: lightblue;
  }
}
*/

.okeaa-button-email-sending-ok {
  background: limegreen !important;
  border-color: limegreen !important;
}

.okeaa-button-email-sending-error {
  background: #ff5f5f !important;
  border-color: #ff5f5f !important;
}

.okeaa-send-email-loading {
  display: none;
  justify-content: center;
}

.okeaa-send-email-loading p {
  animation-name: letterOpacity;
  animation-duration: 0.5s;
  animation-iteration-count: infinite;
}

.okeaa-send-email-loading p:nth-child(1) { animation-delay: 0s; }
.okeaa-send-email-loading p:nth-child(2) { animation-delay: 0.05s; }
.okeaa-send-email-loading p:nth-child(3) { animation-delay: 0.1s; }
.okeaa-send-email-loading p:nth-child(4) { animation-delay: 0.15s; }
.okeaa-send-email-loading p:nth-child(5) { animation-delay: 0.2s; }
.okeaa-send-email-loading p:nth-child(6) { animation-delay: 0.25s; }
.okeaa-send-email-loading p:nth-child(7) { animation-delay: 0.3s; }
.okeaa-send-email-loading p:nth-child(8) { animation-delay: 0.35s; }
.okeaa-send-email-loading p:nth-child(9) { animation-delay: 0.4s; }
.okeaa-send-email-loading p:nth-child(10) { animation-delay: 0.45s; }
.okeaa-send-email-loading p:nth-child(11) { animation-delay: 0.5s; }
.okeaa-send-email-loading p:nth-child(12) { animation-delay: 0.55s; }
.okeaa-send-email-loading p:nth-child(13) { animation-delay: 0.6s; }

@keyframes letterColor {
  0%, 100% {
    color: white;
  }
  50% {
    color: rgba(253, 162, 30);
  }
}

@keyframes letterOpacity {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes letterJump {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}