html,
body {
  padding: 0;
  margin: 0;
  font-family: 'Bukra', sans-serif;
  color: var(--text-secondary);
  background-color: var(--text-inverse);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}
/* Footer */
footer {
  max-width: 640px;
  position: absolute;
  top: 0;
  height: 250px;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  background: var(--text-inverse);
  margin: auto;
}

footer > div {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-items: center;
}

footer button {
  width: 100%;
  background: var(--green);
  color: var(--text-inverse);
  outline: none;
  border: none;
  border-radius: 40px;
  padding: 1rem;
  cursor: pointer;
  opacity: 100;
  transition: opacity 0.5s;
  animation: fadeIn 1s linear;
}

footer button:hover {
  opacity: 0.8;
}

footer .progress {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

footer .progress .loader {
  position: relative;
  height: 4px;
  width: 60%;
  border-radius: 2px;
  background-color: #eaedf1;
}

footer .progress .loader > span {
  position: absolute;
  background-color: var(--green);
  width: 0px;
  height: 4px;
  border-radius: 2px;
  animation: progres 4s infinite linear;
}

@keyframes progres {
  0% {
    width: 0%;
  }

  25% {
    width: 50%;
  }

  50% {
    width: 75%;
  }

  75% {
    width: 85%;
  }

  100% {
    width: 100%;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  25% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}
footer a {
  width: 100%;
  background-color: var(--primary);
  color: #fff;
  outline: none;
  border: none;
  border-radius: 40px;
  padding: 1rem;
  cursor: pointer;
  opacity: 100;
  transition: opacity 0.5s;
  text-align: center;
  text-decoration: none;
}

footer button:hover {
  opacity: 0.8;
}
footer .progress {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

footer .progress .loader {
  position: relative;
  height: 4px;
  width: 60%;
  border-radius: 2px;
  background-color: #eaedf1;
}

footer .progress .loader > span {
  position: absolute;
  background-color: var(--green);
  width: 0px;
  height: 4px;
  border-radius: 2px;
  animation: progres 4s infinite linear;
}

@keyframes progres {
  0% {
    width: 0%;
  }

  25% {
    width: 50%;
  }

  50% {
    width: 75%;
  }

  75% {
    width: 85%;
  }

  100% {
    width: 100%;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  25% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}
.instr {
  text-align: center;
  position: fixed;
  bottom: 40px;
  font-size: 12px;
  margin: auto;
  left: 0;
  right: 0;
  color: #4c4c4c;
  padding: 0px 20px;
}
.result-container {
  box-sizing: border-box;
  border-radius: 8px;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center;
  margin-top: 75px !important;
  display: flex;
  margin: auto;
  margin-bottom: 44px !important;
  text-align: center;
  background-position: center 5px;
  background-size: 17px;
  color: #fff;
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}
.failedRetry {
  padding: 13px;
  border-radius: 4px;
  border: none;
  background-color: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: block;
  max-width: 250px;
  margin: 10px auto auto auto;
}
#newmyProgress {
  position: relative;
  height: 8px;
  width: 60%;
  border-radius: 2px;
  background-color: #eaedf1;
  display: block;
}

#newmyBar {
  background-color: var(--primary);
  width: 0%;
  height: 8px;
  border-radius: 10px;
}
