@import url(https://fonts.googleapis.com/css?family=Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic);
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Poppins";
}

body {
  font-size: 16px;
}

.container {
  width: 1200px;
  margin: 0 auto;
  padding-top: 50px;
}

.container .header {
  text-align: center;
  width: 100%;
  padding: 50px;
}

.container .header h1 {
  color: #444;
  font-size: 28px;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  line-height: 33px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  position: relative;
}

.container .header h1::after {
  bottom: 0;
  left: 50%;
  height: 1px;
  width: 70px;
  content: " ";
  margin-left: -35px;
  margin-top: 10px;
  position: absolute;
  background: #3498db;
}

.container .header p {
  font-size: 16px;
  font-weight: 200;
  color: #999;
  line-height: 1.7;
}

.container .input-field {
  padding: 10px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container .input-field .input {
  width: 40%;
  font-size: 28px;
  padding: 10px 15px;
  outline: none;
  border: 1px solid #cecece;
  border-radius: 5px;
  transition: 0.2s;
  font-family: "Open Sans", sans-serif;
}

.container .input-field .input:focus {
  border-color: #b6b5b5;
}

.container .input-field .input::placeholder {
  opacity: 0.4;
}

.container .input-field .btn {
  display: block;
  height: 60px;
  margin-left: -4px;
  background-color: #3498db;
  border: 0;
  font-size: 18px;
  padding: 10px 20px;
  color: #fff;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  outline: none;
  cursor: pointer;
  transition: 0.2s;
}

.container .input-field .btn:hover {
  background-color: #2d8ac8;
}

.container .output {
  margin-top: 50px;
}

.container .output .output-info {
  background-color: #fbfbfb;
  padding: 20px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container .output .output-info h2 {
  font-size: 24px;
  color: #585f69;
  font-weight: 400;
}

.container .output .output-info h2 span {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 28px;
  color: #2ecc71;
}

.container .output .output-info i {
  font-size: 50px;
  margin-right: 10px;
  color: #2ecc71;
}

.container .output .output-data {
  width: 60%;
  margin: 0 auto;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: start;
}

.container .output .output-data .output-data-item {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  align-items: center;
}

.container .output .output-data .output-data-item i {
  margin-right: 10px;
  font-size: 22px;
  color: #2ecc71;
  margin-left: 50px;
}

.container .output .output-data .output-data-item p {
  font-size: 18px;
}

.loading {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 100;
}

.loading.active {
  display: block;
}

.loading::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.loading h1 {
  position: absolute;
  font-family: "Open Sans";
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  left: 50%;
  top: 58%;
  transform: translate(-50%, -50%);
  margin-left: 10px;
}

.loading .body {
  position: absolute;
  top: 50%;
  margin-left: -50px;
  left: 50%;
  animation: speeder 0.4s linear infinite;
}

.loading .body > span {
  height: 5px;
  width: 35px;
  background: #000;
  position: absolute;
  top: -19px;
  left: 60px;
  border-radius: 2px 10px 1px 0;
}

.loading .base span {
  position: absolute;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-right: 100px solid #000;
  border-bottom: 6px solid transparent;
}

.loading .base span:before {
  content: "";
  height: 22px;
  width: 22px;
  border-radius: 50%;
  background: #000;
  position: absolute;
  right: -110px;
  top: -16px;
}

.loading .base span:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 0 solid transparent;
  border-right: 55px solid #000;
  border-bottom: 16px solid transparent;
  top: -16px;
  right: -98px;
}

.loading .face {
  position: absolute;
  height: 12px;
  width: 20px;
  background: #000;
  border-radius: 20px 20px 0 0;
  transform: rotate(-40deg);
  right: -125px;
  top: -15px;
}

.loading .face:after {
  content: "";
  height: 12px;
  width: 12px;
  background: #000;
  right: 4px;
  top: 7px;
  position: absolute;
  transform: rotate(40deg);
  transform-origin: 50% 50%;
  border-radius: 0 0 0 2px;
}

.loading .body > span > span:nth-child(1),
.loading .body > span > span:nth-child(2),
.loading .body > span > span:nth-child(3),
.loading .body > span > span:nth-child(4) {
  width: 30px;
  height: 1px;
  background: #000;
  position: absolute;
  animation: fazer1 0.2s linear infinite;
}

.loading .body > span > span:nth-child(2) {
  top: 3px;
  animation: fazer2 0.4s linear infinite;
}

.loading .body > span > span:nth-child(3) {
  top: 1px;
  animation: fazer3 0.4s linear infinite;
  animation-delay: -1s;
}

.loading .body > span > span:nth-child(4) {
  top: 4px;
  animation: fazer4 1s linear infinite;
  animation-delay: -1s;
}

@keyframes fazer1 {
  0% {
    left: 0;
  }
  100% {
    left: -80px;
    opacity: 0;
  }
}

@keyframes fazer2 {
  0% {
    left: 0;
  }
  100% {
    left: -100px;
    opacity: 0;
  }
}

@keyframes fazer3 {
  0% {
    left: 0;
  }
  100% {
    left: -50px;
    opacity: 0;
  }
}

@keyframes fazer4 {
  0% {
    left: 0;
  }
  100% {
    left: -150px;
    opacity: 0;
  }
}

@keyframes speeder {
  0% {
    transform: translate(2px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -3px) rotate(-1deg);
  }
  20% {
    transform: translate(-2px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 3px) rotate(-1deg);
  }
  60% {
    transform: translate(-1px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-2px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(2px, 1px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}

.loading .longfazers {
  position: absolute;
  width: 100%;
  height: 100%;
}

.loading .longfazers span {
  position: absolute;
  height: 2px;
  width: 20%;
  background: #000;
}

.loading .longfazers span:nth-child(1) {
  top: 20%;
  animation: lf 0.6s linear infinite;
  animation-delay: -5s;
}

.loading .longfazers span:nth-child(2) {
  top: 40%;
  animation: lf2 0.8s linear infinite;
  animation-delay: -1s;
}

.loading .longfazers span:nth-child(3) {
  top: 60%;
  animation: lf3 0.6s linear infinite;
}

.loading .longfazers span:nth-child(4) {
  top: 80%;
  animation: lf4 0.5s linear infinite;
  animation-delay: -3s;
}

@keyframes lf {
  0% {
    left: 200%;
  }
  100% {
    left: -200%;
    opacity: 0;
  }
}

@keyframes lf2 {
  0% {
    left: 200%;
  }
  100% {
    left: -200%;
    opacity: 0;
  }
}

@keyframes lf3 {
  0% {
    left: 200%;
  }
  100% {
    left: -100%;
    opacity: 0;
  }
}

@keyframes lf4 {
  0% {
    left: 200%;
  }
  100% {
    left: -100%;
    opacity: 0;
  }
}
