@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@300&display=swap");
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  max-height: 100vh;
  min-width: 100vw;
}

.custom-loader {
  margin: auto;
  width: 69px;
  height: 12px;
  --c: radial-gradient(farthest-side, #bbc6ce 90%, #0000);
  background: var(--c), var(--c), var(--c), var(--c);
  background-size: 12px 12px;
  background-repeat: no-repeat;
  animation: d10-1 0.375s infinite alternate, d10-2 0.75s infinite alternate;
}

@keyframes d10-1 {
  0%, 10% {
    background-position: 0 0, 0 0, 0 0, 0 0;
  }
  33% {
    background-position: 0 0, 33.3333333333% 0, 33.3333333333% 0, 33.3333333333% 0;
  }
  66% {
    background-position: 0 0, 33.3333333333% 0, 66.6666666667% 0, 66.6666666667% 0;
  }
  90%, 100% {
    background-position: 0 0, 33.3333333333% 0, 66.6666666667% 0, 100% 0;
  }
}
@keyframes d10-2 {
  0%, 49.99% {
    transform: scale(1);
  }
  50%, 100% {
    transform: scale(-1);
  }
}
* {
  font-family: "Raleway", sans-serif;
  box-sizing: border-box;
}

body {
  display: flex;
  padding: 1em;
  flex-direction: row-reverse;
}

main {
  border: 1px solid white;
  border-radius: 5px;
  margin: 1em !important;
  padding: 2em !important;
  width: 70vw;
  display: flex;
  flex-direction: column;
}
main #input_box {
  align-self: flex-end;
  width: 100%;
  margin-bottom: 0;
}
main #input_box button {
  margin-bottom: 0;
}
main #input_box #main_input_date {
  display: none;
}
main #input_box #main_input_color {
  display: none;
}
main #input_box #main_input_tel {
  display: none;
}
main #input_box #main_input_email {
  display: none;
}
main #input_box #main_input_url {
  display: none;
}
main #input_box #main_input_time {
  display: none;
}
main #input_box #main_input_month {
  display: none;
}
main #input_box #main_input_week {
  display: none;
}
main #input_box #main_input_file {
  display: none;
}
main #output_box {
  overflow-y: scroll;
  scroll-behavior: smooth;
  height: 100%;
}
main #output_box .item_input {
  border-radius: 5px;
  max-width: 80%;
  margin-bottom: 0.2em;
  padding: 0.5em;
  overflow-anchor: none;
  margin-left: auto;
  margin-right: 0;
  text-align: right;
}
main #output_box .item_output {
  border-radius: 5px;
  max-width: 80%;
  margin-bottom: 0.2em;
  padding: 0.5em;
  overflow-anchor: none;
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}
main #output_box .item_input + .item_output {
  margin-top: 0.1em;
}
main #output_box .item_output + .item_input {
  margin-top: 0.8em;
}
main #output_box #anchor {
  overflow-anchor: auto;
  height: 1px;
}

aside {
  border: 1px solid white;
  border-radius: 5px;
  margin: 1em !important;
  padding: 2em !important;
  display: flex;
  flex-direction: column;
  min-width: 25vw;
}
aside h1 {
  text-align: center;
}
aside #status_box {
  margin-top: auto;
  margin-bottom: auto;
  align-self: center;
}

@media only screen and (max-width: 600px) {
  body {
    flex-direction: column;
    padding: 0;
  }
  main {
    width: 80vw;
    border: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  aside {
    width: 80vw;
    border: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

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