:root {
  --padding: 5px;
  --p-clr: #1D3557;
  --clr-red: #E63946;
  --clr-beige: #F1FAEE;
  --radius: 8px;
}
.flex {
  display: flex;
}
.flex-h {
  display: flex;
  flex-direction: row;
}
.flex-v {
  display: flex;
  flex-direction: column;
}
.justify-center {
  justify-content: center;
}
.justify-end {
  justify-content: flex-end;
}
.align-center {
  align-items: center;
}
.flex-h-center {
  display: flex;
  justify-content: center;
}
.flex-h-end {
  display: flex;
  justify-content: flex-end;
}
.flex-v-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.bold {
  font-weight: bold;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
:root {
  font-size: 16px;
}
body {
  position: relative;
  margin: 0;
  outline: none;
  font-family: sans-serif;
}
a,
a:visited,
a:active {
  color: inherit;
  text-decoration: none;
}
.btn {
  color: white;
  background: var(--p-clr);
  padding: 10px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
}
input {
  padding: var(--padding);
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  height: 100vh;
}
.container {
  position: relative;
  z-index: 1;
  padding: var(--padding);
}
.container .form .field {
  padding: var(--padding);
}
.container .form .field span {
  font-weight: bold;
  padding: var(--padding);
}
.container .form .field.sep input {
  font-weight: bold;
  background: var(--clr-beige);
  width: 50px;
  font-size: 1.2em;
  text-align: center;
  border: none;
}
.container .form .field.file label {
  display: flex;
  flex-direction: column;
}
.container .form .submit {
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
}
.container.result .log {
  padding: 20px;
  margin-top: 33px;
}
.container.result .log .log-item {
  margin: 15px 0;
}
.container.result .log .log-item td {
  padding: 5px;
}
.container.result .log .log-item td .label {
  font-size: 0.8em;
  padding: 5px;
  margin-right: 8px;
}
.loading-state {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.7);
}
.loading-state .active {
  display: flex;
}
.loading-state .illustration {
  display: flex;
  flex-direction: column;
}
@keyframes dash {
  to {
    stroke-dashoffset: 136;
  }
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
.loading-state .illustration svg {
  transform-origin: 50% 65%;
}
.loading-state .illustration svg polygon {
  stroke-dasharray: 17;
  animation: dash 2.5s cubic-bezier(0.35, 0.04, 0.63, 0.95) infinite;
}
.loading-state .canceller {
  margin-top: 30px;
}
/*# sourceMappingURL=request.css.map */