.debug-container {
  /*
  position: fixed;
  overflow-y: scroll;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 10px;
  height: 50px;
  background-color: #c7b671;
  color: #222;
  */
}

.dialog-window.hidden {
  margin-top: 1000px;
  opacity: 0;
}

.dialog-window {
  position: relative;
  flex: 1 1 auto;
  max-width: 500px;
  max-height: 500px;
  display: flex;
  flex-direction: column;
  background-color: rgb(236, 233, 198);
  padding: 2em;
  border-radius: 1em;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.4);
  transition: margin-top 0.75s cubic-bezier(0, 0.78, 0.28, 1);
  overflow: hidden;
  max-height: 500px;
}

.dialog-window.scroll {
  overflow-y: scroll;
}

.dialog-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.75s ease-in-out;
  opacity: 1;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.dialog-window::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.dialog-window {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.dialog-window .back-btn {
  text-decoration: none;
  color: #212529;
  font-size: 14pt;
  margin-bottom: 1em;
}

.dialog-window .close-btn {
  text-decoration: none;
  color: #212529;
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  font-size: 24px;
}

.dialog-window hr {
  margin-top: 0.5em;
  margin-left: -2em;
  margin-right: -2em;
}

.dialog-window input {
  flex: 1 0 auto;
  font-size: 16pt;
  margin-bottom: 1em;
  background-color: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.5em;
  padding: 0.75em;
  text-align: center;
}

.dialog-window button {
  border-radius: 0.5em;
  margin-bottom: 1em;
  margin-top: 0;
  font-size: 16pt;
}

.dialog-window button:last-child {
  margin-bottom: 0;
}

.dialog-window p.small {
  font-size: 8pt;
  margin-bottom: 0;
}

.wait-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(236, 233, 198, 0.9);
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.4) inset;
}

.wait-container p {
  flex: 0 1 auto;
  font-size: 16pt;
  padding: 2em;
}

.version-num {
  /* position: fixed;
  bottom: 0;
  right: 0; */
  opacity: 0.75;
  cursor: pointer;
}

@media screen and (min-width: 800px) {
  .debug-container {
    height: 150px;
  }
}
