body {
  margin: 0;
  line-height: normal;
  background-color: black;
}
.big-label {
  cursor: pointer;
  position: relative;
}
.text {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  align-items: center;
  justify-content: center;
}
.input {
  border: 0.7px solid #d26e00;
  font-family: "Space Grotesk";
  font-size: 18px;
  background-color: transparent;
  border-radius: 5px;
  box-sizing: border-box;
  width: 280px;
  height: 40px;
  flex-shrink: 0;
  padding: 0 20px;
  color: #d26e00;
}
.input,
.topic-field {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.input-group,
.topic-field {
  align-self: stretch;
}
.input-group,
.keywords-field {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.button,
.generate-button {
  cursor: pointer;
  justify-content: center;
}
.button {
  position: relative;
  font-size: 18px;
  letter-spacing: 0.34px;
  line-height: 19.44px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Space Grotesk";
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  width: 140px;
  height: 40px;
  flex-shrink: 0;
  background-color: #d26e00;
  border-radius: 5px;
  border: 0.7px solid #d26e00;
}
input:disabled,
input[disabled]{
  border: 1px solid #999999;
  background-color: #cccccc;
  color: #666666;
  cursor: not-allowed !important;
}
input#voice-file{
  padding: 8px 8px;
  outline: none;
  white-space: nowrap;
  -webkit-user-select: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 10pt;
}
.generate-button {
  border: 0;
  padding: 0;
  border-radius: 5px;
  overflow: hidden;
  transition: 0.3s;
}
.button:hover:enabled {
  background-color: #f99a0e;
}
.button-group,
.generate-button,
.first-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.button-group {
  align-self: stretch;
  padding: 20px 0;
  justify-content: center;
}
.first-panel {
  border-radius: 10px;
  background-color: #212121;
  padding: 0 10px;
  justify-content: flex-start;
  text-align: left;
  font-size: 18px;
  color: #fff;
  font-family: "Space Grotesk";
}
.result {
  margin: 0;
  position: relative;
  font-weight: 500;
  text-align: justify;
  padding: 0 20px;
}
.results-section,
.panel {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.results-section {
  padding: 20px 10px;
  text-align: center;
  font-size: 18px;
  color: #fff;
  font-family: "Space Grotesk";
}
.panel {
  border-radius: 10px;
  background-color: #212121;
}
.frame,
.main {
  overflow: hidden;
  display: flex;
}
.main {
  flex-direction: column;
  padding: 10px;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.frame {
  position: relative;
  width: 100%;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .button-group {
    width: 100%;
    text-align: left;
  }
}
@media screen and (max-width: 428px) {
  .input-group {
    width: 100%;
  }
  .generate-button {
    width: 100% !important;
  }

  .button {
    width: 100% !important;
  }
}

/* Absolute Center Spinner */
.loading {
  display: none;
  z-index: 999;
  height: 1em;
  width: 1em;
  overflow: visible;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* Transparent Overlay */
.loading:before {
  content: '';
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.3);
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
  /* hide "loading..." text */
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.loading:not(:required):after {
  content: '';
  display: block;
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  -webkit-animation: spinner 2000ms infinite linear;
  -moz-animation: spinner 2000ms infinite linear;
  -ms-animation: spinner 2000ms infinite linear;
  -o-animation: spinner 2000ms infinite linear;
  animation: spinner 2000ms infinite linear;
  border-radius: 0.5em;
  -webkit-box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0, rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) 0 1.5em 0 0, rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) -1.5em 0 0 0, rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0, rgba(255, 255, 255, 0.75) 0 -1.5em 0 0, rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
  box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0, rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) 0 1.5em 0 0, rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) -1.5em 0 0 0, rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0, rgba(255, 255, 255, 0.75) 0 -1.5em 0 0, rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}