.main {
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 80%;
  padding: 50px 35px;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 5px;
  border-color: #060151;
}

.result {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 300px;
  padding-top: 30px;
  border: 1px solid transparent;
  border-color: #060151;
  background-size: 15px 15px;
  background-image: linear-gradient(to right, #dcdaf6 1px, transparent 1px), linear-gradient(to bottom, #dcdaf6 1px, transparent 1px);
}

.result p {
  font-weight: bold;
  font-size: 26px;
}

.result #info {
  font-size: 19px;
}

.result #canvas {
  height: 100%;
  max-width: 300px;
  max-height: 220px;
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
}

.fields {
  padding-left: 50px;
  padding-top: 40px;
  text-align: left;
}

.input-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 16px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

input,
label {
  height: 30px;
  padding: 0;
  margin: 0;
  line-height: 30px;
  border: 1px solid transparent;
}

input {
  width: 100%;
  max-width: 184px;
  height: 27px;
  padding: 8px;
  margin-bottom: 2px;
  margin-left: -47px;
  text-indent: 5px;
  border-radius: 5px;
  border-color: #060151;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

input:focus {
  border-color: #06015186;
  outline: 0;
}

label {
  position: relative;
  left: 14px;
  top: -8px;
  z-index: 2;
  float: left;
  height: 10px;
  padding: 0px 3px 0px 3px;
  color: #060151;
  font-size: 14px;
  line-height: 10px;
  background-color: #fff;
}

body,
input {
  font-size: 14px;
  line-height: 20px;
  font-family: sans-serif;
}

body {
  padding-top: 25px;
  background: #f1f1f1;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.button {
  width: 113px;
  height: 35px;
  margin-top: 30px;
  color: #fff;
  font-weight: bold;
  letter-spacing: 1px;
  border: none;
  border-radius: 5px;
  background-color: #060151;
  -webkit-box-shadow: 0 2px 5px grey;
          box-shadow: 0 2px 5px grey;
  cursor: pointer;
}

.button:hover {
  background-color: #0601519f;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}

.button:focus {
  background-color: #030025;
}

#hiddenX,
#hiddenY {
  visibility: hidden;
}
/*# sourceMappingURL=style.css.map */