@charset "UTF-8";
#askBox > div {
  display: flex;
  width: 100%;
  justify-content: space-around;
  flex-wrap: wrap;
}
#askBox label {
  display: block;
}
#askBox label:only-child {
  width: 70%;
}
#askBox label:only-child input {
  width: 100%;
  max-width: 100%;
}

.txtarea-bg {
  position: relative;
  background: transparent;
  z-index: 3;
}
.txtarea-bg::before, .txtarea-bg::after {
  display: block;
  position: absolute;
  height: 7.875em;
  min-width: 70%;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  top: 0.125em;
  content: " ";
}
.txtarea-bg::before {
  background-color: white;
  z-index: -1;
}
.txtarea-bg::after {
  background-image: var(--summary-img-partner);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-clip: padding-box;
  z-index: 2;
  opacity: 0.75;
  transition-property: opacity;
  transition-duration: 0.5s;
}
.txtarea-bg:focus-within::after {
  opacity: 0.35;
}
.txtarea-bg textarea {
  text-shadow: -1px -1px rgba(255, 255, 255, 0.35), 1px -1px rgba(255, 255, 255, 0.35), -1px 1px rgba(255, 255, 255, 0.35), 1px 1px rgba(255, 255, 255, 0.35), 0 -1px rgba(255, 255, 255, 0.35), 0 1px rgba(255, 255, 255, 0.35), -1px 0 rgba(255, 255, 255, 0.35), 1px 0 rgba(255, 255, 255, 0.35);
  background: none;
  position: relative;
  z-index: 4;
}

form {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}

fieldset {
  width: 100%;
}

textarea,
input {
  font-family: Concourse, "Concourse 4", Kiwi, "Kiwi Maru", Fangsong, sans-serif;
  font-size: 1em;
}

textarea {
  min-height: 8em;
  min-width: 70%;
  width: 70%;
  max-width: 100%;
}

/* the various input types */
input:not([type]) {
  min-width: 25%;
  max-width: 95%;
}
input[type=number], input[type=date], input[type=file] {
  margin-bottom: 2px;
}
input[type=number] {
  max-width: 4.5em;
}
input[type=number]::-moz-placeholder {
  font-size: 0.75em;
}
input[type=number]::placeholder {
  font-size: 0.75em;
}

/* selectors */
select,
select * {
  color: var(--main-color);
  background: none;
  border: none;
  margin: 0 5px;
}
select:hover, select:active, select:focus,
select *:hover,
select *:active,
select *:focus {
  background-color: rgba(255, 0, 0, 0);
}

.actions {
  background: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
}
.actions h1,
.actions h2,
.actions h3,
.actions h4,
.actions h5,
.actions h6 {
  margin-bottom: 0;
}
.actions label {
  font-family: Heliotrope, "Heliotrope 4", Concourse, "Concourse 4", Fangsong, sans-serif;
  font-style: italic;
  text-shadow: -1px -1px var(--nav-foot-bg), 1px -1px var(--nav-foot-bg), -1px 1px var(--nav-foot-bg), 1px 1px var(--nav-foot-bg), 0 -1px var(--nav-foot-bg), 0 1px var(--nav-foot-bg), -1px 0 var(--nav-foot-bg), 1px 0 var(--nav-foot-bg);
}
.actions input {
  margin: 0;
}
.actions .radio {
  border: none;
  align-self: center;
  margin: 0 auto;
  width: -moz-max-content;
  width: max-content;
  font-size: 1em;
}
.actions .radio label {
  margin-bottom: 0;
  margin-right: 1em;
  font-size: 1.1em;
}
.actions .radio label:last-of-type {
  margin-right: 0;
}
.actions .radio label input {
  margin-right: 0.15em;
}
.actions, .actions ul {
  padding: 0;
  margin: 0;
}
.actions label:has(input[type=checkbox]) {
  font-size: 1.25em;
  align-self: flex-end;
  margin-right: 1em;
  margin-bottom: 0.35em;
}
.actions label:has(input[type=checkbox]) input {
  margin: 0;
}
.actions li {
  display: inline;
  list-style-type: none;
}
.actions button {
  white-space: nowrap;
  min-width: 5em;
  font-size: 0.75em;
}

.sideScroll {
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--nav-foot-bg) var(--aside-color);
  text-wrap: nowrap;
}
.sideScroll::before, .sideScroll::after {
  z-index: 2;
  position: sticky;
  top: 0;
  opacity: 0.75;
  height: 8em;
  text-shadow: -1px -1px var(--nav-foot-bg), 1px -1px var(--nav-foot-bg), -1px 1px var(--nav-foot-bg), 1px 1px var(--nav-foot-bg), 0 -1px var(--nav-foot-bg), 0 1px var(--nav-foot-bg), -1px 0 var(--nav-foot-bg), 1px 0 var(--nav-foot-bg);
  font-weight: bold;
  width: 0;
}
.sideScroll::after {
  margin-right: 10px;
  content: "→";
  right: 5px;
}
.sideScroll::before {
  margin-left: 10px;
  content: "←";
  left: 5px;
}
.sideScroll li {
  width: -moz-max-content;
  width: max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}

output {
  display: block;
  font-family: "Cordata", "Courier New", Courier, monospace;
  margin-bottom: 1em;
  word-wrap: break-word;
  word-break: break-all;
}

#recBuilder {
  display: block;
}

.recBuilder {
  background-color: var(--between);
  border: 2px solid var(--nav-foot-bg);
  padding: 0 0.5em;
}
.recBuilder #free textarea {
  min-height: 3.5em;
}
.recBuilder fieldset {
  border: 1px solid var(--main-color);
  margin: 0;
}
.recBuilder fieldset:has(fieldset) {
  padding: 0;
  width: 100%;
}
.recBuilder fieldset:has(fieldset):last-child {
  margin-bottom: 0.5em;
}
.recBuilder fieldset > fieldset {
  border-right: none;
}
.recBuilder fieldset > fieldset:first-of-type {
  border-left: none;
}
.recBuilder fieldset#iterables {
  display: flex;
  flex-wrap: wrap;
}
.recBuilder fieldset.group {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 3fr);
  border: none;
}
.recBuilder fieldset.group > div {
  margin: 0 10px;
}
.recBuilder fieldset.group select {
  margin-top: 0.5em;
  width: 95%;
}
.recBuilder fieldset.group button:not(.help) {
  display: block;
  margin: 2px auto;
}
.recBuilder fieldset.author input {
  margin-bottom: 0;
}
.recBuilder fieldset.author input:nth-of-type(2) {
  max-height: 1.75em;
  width: 100%;
}
.recBuilder fieldset > input.long {
  display: block;
  width: 98.5%;
  max-width: 98.5%;
  margin: 0.5rem auto;
}
.recBuilder textarea {
  display: block;
  min-width: 25%;
  width: 98%;
  margin: 0.5em auto;
}
.recBuilder h5 {
  font-size: 1rem;
}
.recBuilder h5:has(+ select) {
  display: inline;
}
.recBuilder select {
  max-height: 1.5em;
  background-color: var(--nav-foot-hover);
  text-align: center;
  border-radius: 0.33em;
}
.recBuilder select.char {
  max-width: 45%;
}
.recBuilder .rel {
  width: 100%;
}
.recBuilder .rel + .rel, .recBuilder .rel:has(+ .rel) {
  width: 50%;
  max-width: 50%;
}
.recBuilder .rel button {
  padding: 2px 5px;
}
.recBuilder button {
  font-size: 0.85rem;
}
.recBuilder :disabled {
  display: none !important;
}

#existingFics {
  font-size: 1.15em;
  font-family: Heliotrope, "Heliotrope 4", Concourse, "Concourse 4", Fangsong, sans-serif;
  font-style: italic;
  text-align: center;
  padding: 0.25em;
  margin-bottom: 1rem;
  background-color: var(--nav-foot-hover);
}
#existingFics[value=""] {
  font-size: 0.8rem;
}
#existingFics option {
  font-size: 1rem;
}

#clearForm {
  float: right;
}

#sendRec[disabled] {
  display: none !important;
}

.help {
  display: inline;
  width: 1.65em;
  height: 1.65em;
  border-radius: 1000px;
  padding: 0;
  margin: 0;
  margin-left: 0.5em;
  margin-right: 0.5em;
}

@media only screen and (max-width: 750px) {
  textarea {
    min-width: 80%;
  }
  .txtarea-bg::before, .txtarea-bg::after {
    min-width: 80%;
  }
  .recBuilder fieldset > fieldset {
    border-left: none;
  }
  .recBuilder fieldset textarea,
  .recBuilder fieldset input:not([type=checkbox]) {
    min-width: 25%;
  }
  .recBuilder fieldset.group {
    display: block;
  }
  .recBuilder fieldset.group > div {
    padding-bottom: 0.5em;
    border-bottom: 1px solid;
  }
  .recBuilder fieldset.group > div h5 {
    border: none;
  }
  .recBuilder fieldset .rel + .rel, .recBuilder fieldset .rel:has(+ .rel) {
    width: 100%;
    max-width: 100%;
  }
  .recBuilder fieldset label {
    margin: 0 auto;
  }
}
@media only screen and (max-width: 475px) {
  .actions .radio {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .actions .radio label {
    margin-bottom: 0.25em;
  }
}/*# sourceMappingURL=askbox.css.map */