/******************************************************************************
START Glitch hello-app default styles

The styles in this section do some minimal CSS resets, set default fonts and 
colors, and handle the layout for our footer and "Remix on Glitch" button. If
you're new to CSS they may seem a little complicated, but you can scroll down
to this section's matching END comment to see page-specific styles.
******************************************************************************/

/* 
  The style rules specify elements by type and by attributes such as class and ID
  Each section indicates an element or elements, then lists the style properties to apply
  See if you can cross-reference the rules in this file with the elements in index.html
*/

/* Our default values set as CSS variables */
:root {
  --color-bg: #121212;
  --color-bg-shade: rgba(0, 0, 0, 0.75);
  --color-text-main: #efefef;
  --color-secondary-text: #b3b3b3;
  --color-tertiary-text: #a2a2a2;
  --color-primary: #1eb496;
  --color-main-accent: #6b32aa;
  --color-main-accent-fade: #4a3263;
  --color-panel-bg: #252525;
  --color-panel-outer: #353535;
  --color-dropcloth: rgb(255 255 255 / 6%);
  --color-input-outer: #3b3b3b;
  --color-input-bg: #373737;
  --color-input-bg-secondary: #323131;
  --color-input-outer-secondary: #444444;
  --color-label-bg: #757474;
  --color-label-text: #121212;
  --color-icon-btn-icon: #939393;
  --icn-button-bg-hover: #5c5a5a;
  --icn-button-bg: #474747;
  --color-toggle-track-inactive: #121212;
  --color-toggle-track-active: #efefef;
  --color-toggle-dot-inactive: #efefef;
  --color-toggle-dot-active: #121212;
  --color-text-complete: #efefef;
  --color-panel-bg-secondary: #1e1e1e;
  --color-panel-outer-secondary: #414141;
  --color-hotkey-wrapper: #222222;
  --color-hotkey-label: #2e2d2d;
  --color-hotkey-text: #bdbcbc;
  --color-controls-text: #898989;

  --wrapper-height: 87vh;
  --image-max-width: 300px;
  --image-margin: 3rem;
  --font-family: "HK Grotesk";
  --font-family-header: "HK Grotesk";
}

/* dandelion #e5eaaa */
/* klein blue #002fa7 */

/* dieter:
#d78b3d yellow
#e77457 orange
#a73931 red
#aba767 green
#f7f9ea white
#dadccf cream
*/

/* Basic page style resets */
*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

[hidden] {
  display: none !important;
}

/* Import fonts */
@font-face {
  font-family: HK Grotesk;
  src: url("fonts/HKGroteskPro-Regular.otf")
    format("opentype");
}
@font-face {
  font-family: HK Grotesk;
  font-weight: bold;
  src: url("fonts/HKGroteskPro-Bold.otf")
    format("opentype");
}

/******************************************************************************
END Glitch hello-app default styles
******************************************************************************/

body {
  font-family: HK Grotesk;
  background-color: var(--color-bg);
  overflow: hidden;
}

p.prompt-confirm {
  height: 2rem;
  width: 100%;
  background: red;
  color: #000;
  display: none;
}

.addButton {
  padding: 0.7rem 0.7rem;
  background: var(--icn-button-bg);
  border-radius: 2rem;
  height: 2.4rem;
  width: 5.5rem;
  display: flex;
  align-content: center;
  align-items: center;
  font-weight: 600;
  color: var(--color-tertiary-text);
  opacity: 0;
  transition: all 0.5s ease;
  display: flex;
  column-gap: 5px;
  flex-direction: row;
  justify-content: flex-start;
}

.prompt-holder:hover .addButton {
  opacity: 1;
}

.input-sizer {
  display: inline-grid;
  vertical-align: top;
  align-items: center;
  position: relative;
  border: none;
  padding: 0.25em 0.2em;
  margin: 0px;
  color: var(--color-text-main);
  border-radius: 8px;
  background: none;
  font-size: 2.4rem;
  box-shadow: 0px 0px 0px 0px var(--color-dropcloth);
  -webkit-box-shadow: 0px 0px 0px 0px var(--color-dropcloth);
  -moz-box-shadow: 0px 0px 0px 0px var(--color-dropcloth);
  transition: all 0.5s ease;
}

.input-sizer:hover {
  background: var(--color-panel-bg);
}
.input-sizer.stacked {
  padding: 0.5em;
  align-items: stretch;
}
.input-sizer.stacked::after,
.input-sizer.stacked input,
.input-sizer.stacked textarea {
  grid-area: 2/1;
}
.input-sizer::after,
.input-sizer input,
.input-sizer textarea {
  width: auto;
  min-width: 1em;
  grid-area: 1/2;
  font: inherit;
  padding: 1px;
  margin: 0;
  resize: none;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  color: var(--color-text-main);
}
.input-sizer span {
  padding: 0.25em;
}
.input-sizer::after {
  content: attr(data-value) " ";
  visibility: hidden;
  white-space: pre-wrap;
  /* color: var(--color-text-main); */
}
.input-sizer:focus-within {
  border-radius: 14px;
  outline: solid 2px var(--color-input-outer);
  background: var(--color-input-bg);
  box-shadow: 1px 12px 0px -3px var(--color-dropcloth);
  -webkit-box-shadow: 1px 12px 0px -3px var(--color-dropcloth);
  -moz-box-shadow: 1px 12px 0px -3px var(--color-dropcloth);
  transition: all 0.5s ease;
}
.input-sizer:focus-within > span {
  color: blue;
}
.input-sizer:focus-within textarea:focus,
.input-sizer:focus-within input:focus {
  outline: none;
}

.input-sizer > span {
  text-transform: uppercase;
  font-size: 0.8em;
  font-weight: bold;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.15);
}

.container {
  width: 100vw;
  height: 100vh;
  /*     background: #222; */
  display: flex;
  justify-content: center;
  align-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  padding: 2rem;
  /*   padding-top: 1rem; */
  overflow: hidden;
}

.prompts-case {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  max-width: 80%;
  /* background: blue; */
  min-width: 50%;
  /* row-gap: 0px; */
  column-gap: 2px;
}

.prompt-holder {
  width: 100%;
  /* background: blue; */
  display: flex;
  align-content: center;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  row-gap: 15px;
}

button.complete-prompt {
  position: relative;
  /*   bottom: 2rem; */
  /*   right: 2rem; */
  background: var(--color-main-accent-fade);
  border: none;
  outline: none;
  padding: 0.7rem 1.5rem;
  border-radius: 0.5rem;
  color: var(--color-text-complete);
  font-family: HK Grotesk;
  box-shadow: 0px 0px 0px 0px var(--color-dropcloth);
  -webkit-box-shadow: 0px 0px 0px 0px var(--color-dropcloth);
  -moz-box-shadow: 0px 0px 0px 0px var(--color-dropcloth);
  transition: all 0.5s ease;
  font-weight: bold;
  cursor: pointer;
  /*   mix-blend-mode: difference; */
  text-shadow: 0px 2px 2px rgb(0 0 0 / 45%);
}

button.complete-prompt:hover {
  color: var(--color-text-complete);
  background: var(--color-main-accent);
  box-shadow: 1px 8px 0px -3px var(--color-dropcloth);
  -webkit-box-shadow: 1px 8px 0px -3px var(--color-dropcloth);
  -moz-box-shadow: 1px 8px 0px -3px var(--color-dropcloth);
  transition: all 0.5s ease;
}

.addButton.first {
  /*   align-self: flex-start; */
  /*   transform: translate(-8.9rem, 0rem); */
}

.addButton.last {
  /*   align-self: flex-end; */
}

.button-holder {
  width: 0px;
  overflow: visible;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.button-holder:first-of-type {
  margin-right: 0rem;
  transition: all 0.5s ease;
}

.button-holder:last-of-type {
  margin-left: 1rem;
}

.prompt-holder:hover .button-holder:first-of-type {
  margin-right: 1rem;
  width: 5.5rem;
  transition: all 0.5s ease;
}

.sidebar {
  top: 20%;
  width: 30%;
  background: var(--color-panel-bg);
  height: auto;
  position: absolute;
  right: -30%;
  border-radius: 6px;
  border: 1px solid var(--color-panel-outer);
  padding: 1rem;
  transition: all 0.5s ease;
  row-gap: 16px;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 635px) {
  .sidebar {
    width: 45%;
    right: -45%;
  }
}

.sidebar.open {
  right: 2rem;
  transition: all 0.5s ease;
}

.input-case {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  row-gap: 0.7rem;
}

.input-wrapper {
  width: 100%;
  display: flex;
  column-gap: 0.7rem;
}

.input-wrapper input[type="text"] {
  width: 100%;
  height: 2.5rem;
  border-radius: 6px;
  padding: 0.2rem 0.5rem;
  border: 1px solid var(--color-input-outer);
  background: var(--color-input-bg);
  color: var(--color-text-main);
  font-family: HK Grotesk;
}

.sidebar p {
  color: var(--color-text-main);
  font-weight: normal;
  font-size: 1.4rem;
  margin: 0;
}

.input-wrapper button {
  border-radius: 2rem;
  border: 0px;
  outline: none;
  background: #3d3d3d;
  color: var(--color-secondary-text);
  padding: 0rem 0.8rem;
  font-family: HK Grotesk;
}

.controls-display {
  position: absolute;
  bottom: 0rem;
  left: 0rem;
  color: var(--color-controls-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  align-content: center;
  column-gap: 11px;
  flex-wrap: wrap;
  row-gap: 10px;
  max-width: 100%;
  background: var(--color-panel-bg-secondary);
  padding: 2rem;
  border-top: 1px solid var(--color-panel-outer-secondary);
  width: 100%;
  padding-top: 1rem;
  transition: all 0.5s ease;
  transform: translate(0px, 0px);
}

.controls-display.hidden {
  transform: translate(0px, 200rem);
  transition: all 2.5s ease;
}

.hotkey-wrapper {
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  background: var(--color-hotkey-wrapper);
  border-radius: 6px;
  padding: 6px 6px;
  column-gap: 8px;
}
.key-combo {
  display: flex;
  align-content: center;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  column-gap: 3px;
  color: var(--color-hotkey-text);
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
}

span.hotkey {
  display: inline-block;
  padding: 5px;
  background: var(--color-hotkey-label);
  border-radius: 4px;
}

.check-button {
  background: var(--color-input-bg);
  padding: 0.5rem 0.7rem;
  width: auto;
  height: 2.5rem;
  display: flex;
  border-radius: 6px;
  font-weight: bold;
  color: var(--color-secondary-text);
  align-content: center;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid var(--color-input-bg);
}

.check-button.active {
  border: 2px solid var(--color-main-accent);
  background: var(--color-main-accent-fade);
  transition: all 0.3s ease;
}

select {
  background: var(--color-input-bg);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  outline: none;
  border: 1px solid var(--color-input-outer);
  color: var(--color-secondary-text);
  height: 2.5rem;
  border: 1px solid var(--color-input-outer);
  font-family: HK Grotesk;
  transition: all 0.3s ease;
}

option:checked select {
  border: 2px solid var(--color-main-accent) !important;
  background: var(--color-main-accent-fade) !important;
  transition: all 0.3s ease;
}

option:checked {
  border: 2px solid var(--color-main-accent) !important;
  background: var(--color-main-accent-fade) !important;
  transition: all 0.3s ease;
}

.input-wrapper.with-buttons {
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  column-gap: 0px;
}

.extras input[type="text"]:not(:placeholder-shown) {
  border: 2px solid var(--color-main-accent);
  background: var(--color-main-accent-fade);
  transition: all 0.3s ease;
}

.extras input[type="text"]:focus-within {
  background: var(--color-input-bg-secondary);
  border: 1px solid var(--color-input-outer-secondary);
  /*     border-right: none; */
  outline: none;
  transition: all 0.5s ease;
}

.input-wrapper.with-buttons input[type="text"]:not(:placeholder-shown) {
  border: 1px solid var(--color-main-accent);
  border-right: 0px;
  background: var(--color-main-accent-fade);
  transition: all 0.3s ease;
}

.input-wrapper.with-buttons input[type="text"]:focus-within {
  background: var(--color-input-bg-secondary);
  border: 1px solid var(--color-input-outer-secondary);
  border-right: none;
  outline: none;
  transition: all 0.5s ease;
}

.input-wrapper.with-buttons.active {
  border: 1px solid var(--color-main-accent);
  background: var(--color-main-accent-fade);
  transition: all 0.3s ease;
  border-radius: 8px;
}

button.icn-button {
  background: var(--color-input-bg);
  height: 2.5rem;
  border-radius: 0px;
  border-top: 1px solid var(--color-input-outer);
  border-bottom: 1px solid var(--color-input-outer);
  padding: 3px 4px;
  cursor: pointer;
}

button.icn-button:hover .highlight {
  background: var(--icn-button-bg-hover);
  transition: all 0.5s ease;
}

.input-wrapper.with-buttons.active button.icn-button {
  background: var(--color-main-accent-fade);
  height: 2.5rem;
  border-radius: 0px;
  border-top: 1px solid var(--color-main-accent);
  border-bottom: 1px solid var(--color-main-accent);
  padding: 1px 4px;
  cursor: pointer;
}

.input-wrapper.with-buttons.active button.icn-button:last-of-type {
  border-right: 1px solid var(--color-main-accent);
  border-radius: 0px 6px 6px 0px;
}

.addButton svg {
  height: 1.7rem;
}

button.icn-button svg {
  color: var(--color-icon-btn-icon);
  fill: var(--color-icon-btn-icon);
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
}

button.hide-controls svg {
  fill: var(--color-secondary-text);
}

button.icn-button:hover svg {
  fill: var(--color-text-main);
  transition: all 0.5s ease;
}

.input-wrapper.with-buttons input[type="text"] {
  border-radius: 6px 0px 0px 6px;
  border-right: 0px;
}

button.icn-button:last-of-type {
  border-right: 1px solid var(--color-input-outer-secondary);
  border-radius: 0px 6px 6px 0px;
}

span.highlight {
  background: var(--icn-button-bg);
  display: inline-block;
  width: 2rem;
  height: 2rem;
  padding: 6px 6px;
  border-radius: 6px;
  transition: all 0.5s ease;
}

.sidebar span.highlight {
  background: var(--icn-button-bg);
  display: inline-block;
  width: 2rem;
  height: 2rem;
  padding: 6px 6px;
  border-radius: 6px;
  transition: all 0.5s ease;
}

.sidebar span.highlight:hover {
  background: var(--icn-button-bg-hover);
  transition: all 0.5s ease;
}

.sidebar span.highlight svg {
  fill: var(--color-icon-btn-icon);
  transition: all 0.5s ease;
}

.sidebar span.highlight:hover svg {
  fill: var(--color-text-main);
  transition: all 0.5s ease;
}

button.icn-button:first-of-type {
  padding-right: 1px;
}

.extras {
  display: flex;
  flex-direction: row;
  align-content: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  column-gap: 8px;
  row-gap: 16px;
  padding: 1rem;
  background: var(--color-panel-bg);
  border-radius: 6px;
  border: 1px solid var(--color-panel-outer);
  max-width: 1350px;
  position: relative;
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  /*     background: yellow; */
  row-gap: 75px;
}

.info {
  /*     background: red; */
  width: 100%;
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: space-between;
  align-items: center;
}

h2.title {
  color: var(--color-secondary-text);
}

.other-content {
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  column-gap: 15px;
  color: var(--color-secondary-text);
}

.about {
  color: var(--color-secondary-text);
  -webkit-font-smoothing: antialiased;
  transition: all 0.5s ease;
  text-decoration: none;
}

.about:hover {
  color: var(--color-text-main);
  transition: all 0.5s ease;
  text-decoration: underline;
}

.controls-info {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: space-between;
  align-items: center;
}

.hotkey-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  row-gap: 10px;
  column-gap: 11px;
}

button.hide-controls {
  width: 2rem;
  height: 2rem;
  background: var(--color-input-bg);
  border: var(--color-input-outer);
  border-radius: 6px;
  padding: 6px;
}

.extras-wrapper {
  display: flex;
  flex-direction: row;
  align-content: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  column-gap: 8px;
  row-gap: 8px;
  width: 100%;
}

.advanced {
  display: none;
}

.settings {
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 6px;
}

.settings h3 {
  color: var(--color-secondary-text);
  margin: 0;
}

.control-toggle {
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  /*   background: blue; */
  column-gap: 10px;
  color: var(--color-secondary-text);
  font-weight: bold;
}

.toggle {
  background: var(--color-toggle-track-inactive);
  position: relative;
  width: 2.7rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  align-content: center;
  flex-direction: row;
  border-radius: 1.5rem;
  padding: 0.2rem 0.25rem;
  padding-top: 0.15rem;

  transition: all 0.5s ease;
}

.toggle.active {
  background: var(--color-toggle-track-active);
  transition: all 0.5s ease;
}

.toggle::after {
  content: "";
  position: relative;
  width: 1rem;
  height: 1rem;
  background: var(--color-toggle-dot-inactive);
  border-radius: 1rem;
  transform: translateX(0%);
  transition: all 0.5s ease;
}

.toggle.active.toggle::after {
  content: "";
  background: var(--color-toggle-dot-active);
  transform: translateX(115%);
  transition: all 0.5s ease;
}

.toggle label {
  display: none;
}

.toggle [type="checkbox"] {
  display: none;
}

.site-toggle {
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  /*   background: blue; */
  column-gap: 10px;
  color: var(--color-secondary-text);
  font-weight: bold;
}

.analytics-toggle {
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  /*   background: blue; */
  column-gap: 10px;
  color: var(--color-secondary-text);
  font-weight: bold;
}

.sidebar-head {
  display: flex;
  align-content: center;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

/* .input-sizer::before {
    content: 'Get words';
    position: absolute;
    background: green;
    width: 100%;
    height: 2rem;
    top: -70%;
    font-size: 1.2rem;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
    border-radius: 2rem;
    font-weight: bold;
} */

.get-words {
  color: var(--color-bg);
  position: absolute;
  background: var(--color-primary);
  width: 90%;
  min-width: 7.75rem;
  /*   max-width: 7.75rem; */
  height: 2rem;
  top: -75%;
  font-size: 1.2rem;
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  align-items: center;
  border-radius: 2rem;
  font-weight: bold;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  z-index: 3;
  border: 1px solid var(--color-primary);
  margin-left: 5%;
  font-family: HK Grotesk;
  opacity: 0;
  transition: all 0.5s ease;
}

.prompt-holder:hover .get-words {
  opacity: 1;
  transition: all 0.5s ease;
}

.get-words.hidden {
  display: none;
}

.split-words {
  color: var(--color-text-main);
  position: absolute;
  background: var(--color-main-accent);
  width: 90%;
  min-width: 7.75rem;
  /*   max-width: 7.75rem; */
  height: 2rem;
  top: -75%;
  font-size: 1.2rem;
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  align-items: center;
  border-radius: 2rem;
  font-weight: bold;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  z-index: 3;
  border: 1px solid var(--color-main-accent);
  margin-left: 5%;
  font-family: HK Grotesk;
  opacity: 0;
  transition: all 0.5s ease;
}

.prompts-case label:hover .split-words {
  opacity: 1;
  transition: all 0.5s ease;
}

.split-words.hidden {
  display: none;
}

.synonym-holder {
  /*     background: red; */
  width: 100%;
  height: 120px;
  position: absolute;
  display: flex;
  flex-direction: column-reverse;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: 6px;
  transform: translate(0%, -85%);
  overflow-x: hidden;
  overflow-y: scroll;
  z-index: 1;
  padding-top: 5rem;
  background: #1e1e1e;
  padding-left: 4px;
  padding-right: 4px;
  border-radius: 4px;
  border: 1px solid #2c2c2c;
  padding-bottom: 5px;
  opacity: 0;
  transition: all 0.5s ease;
}

.prompt-holder:hover .synonym-holder {
  opacity: 1;
  transition: all 0.5s ease;
}

.synonym-holder.hidden {
  display: none;
}

/* .synonym-holder::after {
  content:' ';
  position:absolute;
  left:0;
  right:17px;
  height:1em;
  top:6.3em;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,0),
    rgba(0,0,0,0.95) 50%
  );
  z-index:1;
}

.synonym-holder::before {
  content:' ';
  position:absolute;
  left:0;
  right:17px;
  height:1em;
  top:6.3em;
  background:linear-gradient(
    to top,
    rgba(0,0,0,0),
    rgba(0,0,0,0.95) 50%
  );
  z-index:1;
} */

p.synonym {
  font-size: 1rem;
  margin: 0rem;
  padding: 6px;
  background: #292929;
  width: 100%;
  border-radius: 6px;
  transition: all 0.5s ease;
}

p.synonym:hover {
  background: #353434;
  transition: all 0.5s ease;
}

.synonym-holder::-webkit-scrollbar {
  display: none;
}

.synonym-shadow {
  content: "";
  width: 100%;
  height: 120px;
  position: absolute;
  background: linear-gradient(to top, rgba(30, 30, 30, 0), rgb(30 30 30) 76%);
  transform: translate(0%, -63%);
  bottom: 0px;
  display: inline-block;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease;
  border-radius: 6px;
  /* background: red; */
}

.prompt-holder:hover .synonym-shadow {
  opacity: 1;
  transition: all 0.3s ease;
}

.synonym-shadow.hidden {
  display: none;
}

.settings .wrapper {
  display: flex;
  flex-direction: row;
  width: auto;
  row-gap: 0px;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  height: auto;
  column-gap: 16px;
}

.settings .wrapper p {
  background: var(--color-label-bg);
  padding: 0.4rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.9rem;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  color: var(--color-label-text);
  font-family: HK Grotesk;
  margin: 0;
}

.logo {
  width: 5rem;
  mix-blend-mode: difference;
  opacity: 0.8;
  margin-left: 0.5rem;
}

.logo img {
  width: 100%;
}

.disabled {
  opacity: 0.4;
  pointer-events: none;
}

.switch-case {
  display: flex;
  flex-direction: row;
  width: auto;
  row-gap: 0px;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  height: auto;
  column-gap: 8px;
}

.distraction-mode {
  opacity: 0.3;
  transition: all 0.5s ease;
}

.theme-controls {
  position: absolute;
  top: 0rem;
  left: 0.5rem;
  transform: translate(0px, -75px);
  /*     background: red; */
  width: 100%;
  display: flex;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  column-gap: 0.7rem;
}

.theme-trigger svg {
  stroke: var(--color-bg);
}

.theme-trigger {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--color-label-bg);
  padding: 0.45rem;
  border-radius: 2rem;
  cursor: pointer;
  transition: all 0.5s ease;
}

.theme-trigger:hover {
  background: var(--color-text-main);
  transition: all 0.5s ease;
}

.theme-chooser {
  display: flex;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  column-gap: 0.7rem;
  opacity: 0;
  transform: translate(0px, 5px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.theme-chooser.open {
  opacity: 1;
  transform: translate(0px, 0px);
  transition: all 0.3s ease;
  pointer-events: all;
}

.theme {
  background: var(--color-label-bg);
  padding: 0.4rem 0.75rem;
  border-radius: 1rem;
  font-size: 1rem;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  color: var(--color-label-text);
  font-family: HK Grotesk;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.theme:hover {
  opacity: 0.9;
  transition: all 0.3s ease;
}

.theme.active {
  opacity: 1;
  background: var(--color-primary);
  color: var(--color-label-text);
  transition: all 0.3s ease;
}

.mobile-disclaimer {
  background: var(--color-bg);
  height: 100vh;
  width: 100vw;
  position: absolute;
  z-index: 3;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  padding: 3rem;
}

p.disclaimer {
  width: 100%;
  color: var(--color-text-main);
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  text-align: center;
  font-size: 1.4rem;
  line-height: 150%;
}

@media only screen and (max-width: 800px) {
  .input-sizer {
    font-size: 2rem;
  }
  .logo {
    width: 4.5rem;
  }
}

@media only screen and (max-width: 645px) {
  .disabled {
    display: none;
  }
  .input-sizer {
    font-size: 1.8rem;
  }
}

@media only screen and (max-width: 600px) {
  .mobile-disclaimer {
    opacity: 1;
  }
}

@media only screen and (max-width: 500px) {
  .mobile-disclaimer {
    opacity: 1;
  }
  p.disclaimer {
    font-size: 1.2rem;
  }
}

.about-wrapper {
  position: absolute;
  width: 100vw;
  height: 100vh;
  background: var(--color-bg-shade);
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow-x: hidden;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-top: 10rem;
  transform: translate(0px, 0px);
  transition: all 0.5s ease;
  opacity: 1;
  pointer-events: all;
  padding-bottom: 6rem;
  flex-direction: column;
  align-content: flex-start;
}

.about-wrapper::-webkit-scrollbar {
  display: none;
}

.about-wrapper.hidden {
  transform: translate(0px, -50px);
  transition: all 0.5s ease;
  opacity: 0;
  pointer-events: none;
}

.modal {
  width: 65%;
  min-width: 40rem;
  max-width: 50rem;
  background: var(--color-panel-bg);
  border: 1px solid var(--color-panel-outer);
  border-radius: 6px;
  /*     padding-bottom: 3rem; */
  position: relative;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: flex-start;
}

.help-content {
    padding: 2rem;
    max-height: 68vh;
    overflow-x: hidden;
    overflow-y: scroll;
    -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}


.help-content::-webkit-scrollbar {
  display: none;
}

.modal p,
h2,
h3,
li,
blockquote {
  color: var(--color-text-main);
  line-height: 1.4rem;
}

.modal p {
  line-height: 1.4rem;
  color: var(--color-secondary-text);
}

.modal h4 {
  font-family: var(--font-family);
  color: var(--color-secondary-text);
  font-weight: normal;
}

.modal h4 a {
  font-weight: bold;
}

.modal li {
  line-height: 1.4rem;
}

.modal ul {
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: 0.5rem;
}

.modal blockquote {
  background: rgba(0, 0, 0, 0.25);
  padding: 0.7rem;
  border-radius: 6px;
  line-height: 1.4rem;
}

.modal blockquote .fade {
  color: var(--color-secondary-text);
}

.modal pre {
  background: rgba(0, 0, 0, 0.3);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.94rem;
  margin: 0rem;
  display: inline-block;
}

.callout {
  width: 100%;
  margin-left: 0rem;
  margin-right: 0rem;
}

.modal h3 {
  line-height: 1.8rem;
}

.modal a {
  color: var(--color-text-main);
  -webkit-font-smoothing: antialiased;
  transition: all 0.5s ease;
  text-decoration: none;
}

.modal a:hover {
  color: var(--color-primary);
  transition: all 0.5s ease;
  text-decoration: underline;
}

.about-controls {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  column-gap: 0.5rem;
}

button.close-modal {
  color: var(--color-text-main);
  width: 2rem;
  height: 2rem;
  background: var(--color-input-bg);
  border: var(--color-input-outer);
  border-radius: 6px;
  padding: 6px;
}

button.remember-choice {
  color: var(--color-text-main);
  font-family: var(--font-family);
  width: auto;
  height: 2rem;
  background: var(--color-input-bg);
  border: var(--color-input-bg);
  border-radius: 6px;
  padding: 1rem 1.2rem;
  display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
}

button.remember-choice.hidden {
  display: none;
}

.cookie-notice {
  position: absolute;
  bottom: 0rem;
  z-index: 2;
  width: 100%;
  background: var(--color-primary);
  padding: 1rem;
  /* padding-left: 5rem; */
  /* padding-right: 5rem; */
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  align-items: center;
  transform: translate(0px, 0px);
  transition: all 0.5s ease;
  opacity: 1;
  pointer-events: all;
}

.cookie-notice.hidden {
  transform: translate(0px, 50px);
  transition: all 0.5s ease;
  opacity: 0;
  pointer-events: none;
}

.cookie-notice .wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  flex-direction: row;
  row-gap: 0px;
  column-gap: 8px;
  width: auto;
}

.cookie-notice .wrapper.stretch {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  flex-direction: row;
  width: 100%;
  max-width: 1280px;
  padding-left: 2rem;
  padding-right: 2rem;
}

.cookie-notice button {
  color: var(--color-text-complete);
  font-family: var(--font-family);
  width: auto;
  height: 2rem;
  background: var(--color-main-accent-fade);
  border: var(--color-input-bg);
  border-radius: 6px;
  padding: 1rem 1.2rem;
  transition: all 0.5s ease;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  text-shadow: 0px 2px 2px rgb(0 0 0 / 45%);
  font-weight: bold;
}

.cookie-notice button:hover {
  color: var(--color-text-complete);
  background: var(--color-main-accent);
  width: auto;
  height: 2rem;
  border: var(--color-input-bg);
  border-radius: 6px;
  padding: 1rem 1.2rem;
  transition: all 0.5s ease;
}

.cookie-notice button.secondary {
  font-weight: normal;
  color: var(--color-text-input-bg);
  font-family: var(--font-family);
  width: auto;
  height: 2rem;
  background: var(--color-primary);
  border: var(--color-input-bg);
  border-radius: 6px;
  padding: 1rem 1.2rem;
  opacity: 0.8;
  transition: all 0.5s ease;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  text-shadow: 0px 0px 0px rgb(0 0 0 / 45%);
}

.cookie-notice button.secondary:hover {
  color: var(--color-text-main);
  font-family: var(--font-family);
  width: auto;
  height: 2rem;
  background: var(--color-input-bg);
  border: var(--color-input-bg);
  border-radius: 6px;
  padding: 1rem 1.2rem;
  opacity: 1;
  transition: all 0.5s ease;
}

.cookie-manager {
  position: absolute;
  width: 100vw;
  height: 100vh;
  background: var(--color-bg-shade);
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow-x: hidden;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-top: 10rem;
  transform: translate(0px, 0px);
  transition: all 0.5s ease;
  opacity: 1;
  pointer-events: all;
  padding-bottom: 6rem;
  flex-direction: column;
  align-content: flex-start;
}

.cookie-manager::-webkit-scrollbar {
  display: none;
}

.cookie-manager.hidden {
  transform: translate(0px, -50px);
  transition: all 0.5s ease;
  opacity: 0;
  pointer-events: none;
}

button.finish {
  color: var(--color-text-complete);
  font-family: var(--font-family);
  width: auto;
  height: 2rem;
  background: var(--color-main-accent-fade);
  border: var(--color-input-bg);
  border-radius: 6px;
  padding: 1rem 1.2rem;
  transition: all 0.5s ease;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  text-shadow: 0px 2px 2px rgb(0 0 0 / 45%);
  font-weight: bold;
  /* align-self: flex-end; */
}

button.finish:hover {
  color: var(--color-text-complete);
  background: var(--color-main-accent);
  width: auto;
  height: 2rem;
  border: var(--color-input-bg);
  border-radius: 6px;
  padding: 1rem 1.2rem;
  transition: all 0.5s ease;
}

.cookie-controls {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 2rem;
    row-gap: 12px;
}

.cookie-controls h3 {
    margin: 0px;
}

.cookie-controls p {
    margin-top: 0px;
}

.cookie-controls .finish {
    margin-top: 8px;
}

.info-button {
    width: 2rem;
    height: 2rem;
    padding: 0.2rem;
    position: absolute;
    bottom: 6px;
    right: 6px;
      stroke: var(--color-text-main);
    background: var(--color-panel-bg);
    border-radius: 6px;
  transition: all 0.5s ease;
}

.info-button:hover {
    width: 2rem;
    height: 2rem;
    padding: 0.2rem;
    position: absolute;
    bottom: 6px;
    right: 6px;
      stroke: var(--color-text-main);
    background: var(--color-input-bg);
    border-radius: 6px;
  transition: all 0.5s ease;
}

.info-button svg {
  stroke: var(--color-text-main);
}