@import url("https://fonts.googleapis.com/css2?family=Fira+Code:wght@500&display=swap");
html {
  height: 100%;
}

body#code {
  margin: 0;
  font-size: 16px;
  padding: 0 !important;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #bf212e;
  background: linear-gradient(225deg, #bf212e 0%, #ea4f29 100%);
}
body#code header {
  padding: 0.5rem 0;
  background-color: white;
  box-shadow: 0px 6px 8px 0px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
body#code header [class^=col-] {
  text-align: center;
}
body#code header [class^=col-] img {
  height: 75px;
}
body#code header [class^=col-] h1 {
  color: white;
  margin: 0;
  font-size: 3rem;
}
body#code header.loading {
  height: 50px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 99;
  animation: loader;
  animation-fill-mode: forwards;
  animation-duration: 1s;
}
body#code header.loading .wrapper {
  transition: opacity 0.1s ease-in;
  display: block;
  opacity: 1;
}
body#code header .wrapper {
  display: none;
  opacity: 0;
  width: 200px;
  height: 60px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
body#code header .wrapper span {
  color: #ea4f29;
  font-weight: bold;
  font-size: 2rem;
  position: absolute;
  left: 50%;
  top: 110%;
  transform: translateX(-50%);
}
body#code header .wrapper .circle {
  width: 20px;
  height: 20px;
  position: absolute;
  border-radius: 50%;
  background-color: #ea4f29;
  left: 15%;
  transform-origin: 50%;
  animation: circle 0.5s alternate infinite ease;
}
body#code header .wrapper .circle:nth-child(2) {
  left: 45%;
  animation-delay: 0.2s;
}
body#code header .wrapper .circle:nth-child(3) {
  left: auto;
  right: 15%;
  animation-delay: 0.3s;
}
body#code main {
  max-width: 400px;
  margin: 0 auto;
  padding: 100px 20px 0;
  height: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
  min-height: 300px;
  overflow-x: hidden;
  color: white;
}
body#code main p {
  font-size: 1.8rem;
}
body#code main .numberWrap {
  margin: 2rem 0;
  position: relative;
  height: 60px;
}
body#code main .numberWrap input {
  position: absolute;
  border: none;
  width: 100%;
  height: 100%;
  letter-spacing: 39px;
  opacity: 0;
  left: 0;
  top: 0;
  z-index: -1;
}
body#code main .numberWrap input:focus {
  outline: none;
}
body#code main .numberWrap .visual {
  width: 100%;
  height: 100%;
  display: flex;
}
body#code main .numberWrap .visual .digit {
  width: 100%;
  position: relative;
  cursor: text;
}
body#code main .numberWrap .visual .digit:before {
  background-color: white;
  content: "";
  border: 3px solid #ccc;
  position: absolute;
  left: 3px;
  top: 3px;
  right: 3px;
  bottom: 3px;
  border-radius: 7px;
  transition: border-color 0.2s ease-out;
}
body#code main .numberWrap .visual .digit.active:before {
  border-color: #ea4f29;
  box-shadow: 0px 3px 13px 0px rgba(255, 255, 255, 0.25);
}
body#code main .numberWrap .visual .digit.cursor span:after {
  content: "";
  border-right: solid 1px #ea4f29;
  height: 2rem;
  animation: flicker 1s infinite;
}
body#code main .numberWrap .visual .digit span {
  left: 50%;
  top: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: none;
  font-family: "Fira Code", monospace;
  font-variant: lining-nums;
  color: #ea4f29;
}
body#code main .button {
  padding: 1rem 2rem;
  background-color: #fff;
  color: #bf212e;
  font-weight: bold;
  cursor: pointer;
  display: inline-block;
  border-radius: 100px;
  border: none;
  box-shadow: 0px 6px 8px 0px rgba(0, 0, 0, 0.15);
  transition: 0.2s ease-out;
}
body#code main .button:hover {
  color: #fff;
  background: #bf212e;
  background: linear-gradient(225deg, #bf212e 0%, #ea4f29 100%);
}
body#code main .clear {
  cursor: pointer;
  width: 100%;
  font-weight: bold;
  color: #fff;
  padding: 10px;
}

.errorObject {
  display: none;
  background-color: #fff;
  width: 100%;
  box-shadow: 0px -1px 8px 0px rgba(0, 0, 0, 0.15);
  text-align: center;
  padding: 10px;
  z-index: 99;
}
.errorObject p {
  margin-top: 10px;
  color: #ea4f29;
}
.errorObject .clear {
  color: #ea4f29;
  margin-top: 10px;
  cursor: pointer;
  font-weight: bold;
}

@keyframes loader {
  0% {
    height: 40px;
  }
  100% {
    height: 100%;
  }
}
@keyframes flicker {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes circle {
  0% {
    top: 60px;
    height: 5px;
    border-radius: 50px 50px 25px 25px;
    transform: scaleX(1.7);
  }
  40% {
    height: 20px;
    border-radius: 50%;
    transform: scaleX(1);
  }
  100% {
    top: 0%;
  }
}

/*# sourceMappingURL=start.css.map */
