html, body, #app {
  height: 100%;
}

#app {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  gap: 2rem;
}

#app > * {
  width: 450px;
  max-width: 100%;
}

header #logo {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
}
header #logo img {
  width: 100px;
  display: block;
}
header #logo div {
  position: relative;
  top: -0.5ch;
}
header #logo span:nth-child(2) {
  position: absolute;
  left: 0;
  top: 1ch;
  opacity: 0.7;
}
header #logo span:nth-child(3) {
  position: absolute;
  left: 0;
  top: 2ch;
  opacity: 0.55;
}
header #logo span:nth-child(4) {
  position: absolute;
  left: 0;
  top: 3ch;
  opacity: 0.4;
}
header #logo span:nth-child(5) {
  position: absolute;
  left: 0;
  top: 4ch;
  opacity: 0.25;
}
header #logo span:nth-child(6) {
  position: absolute;
  left: 0;
  top: 5ch;
  opacity: 0.1;
}
header #logo span:nth-child(7) {
  position: absolute;
  left: 0;
  top: 6ch;
  opacity: -0.05;
}
header #subtitle {
  font-style: italic;
  font-size: 1rem;
}

main {
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
main > * {
  width: 450px;
  max-width: 100%;
}

form .field {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
form .field:not(:last-child) {
  margin-bottom: 0.5rem;
}

.pseudo-checkbox {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ececec;
  width: 2.5ch;
  height: 2.5ch;
  cursor: pointer;
}
.pseudo-checkbox:hover {
  background-color: rgba(236, 236, 236, 0.3);
}
.pseudo-checkbox div {
  width: 66%;
  height: 66%;
}
.pseudo-checkbox div.checked {
  background-color: #ececec;
}

#your-releases {
  text-align: center;
  padding: 0.5rem;
  border-bottom: 1px solid rgba(236, 236, 236, 0.5);
}

#releases {
  width: 100%;
}
#releases th {
  background-color: #ececec;
  color: #151515;
}
#releases th:not(:last-child) {
  border-right: 1px solid #151515;
}
#releases tr:nth-child(even) {
  background-color: rgba(236, 236, 236, 0.2);
}
#releases td {
  padding: 0.5rem;
}
#releases td:not(:last-child) {
  border-right: 1px solid rgba(236, 236, 236, 0.5);
}

#profile-header {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.final {
  background-color: rgba(0, 255, 128, 0.1);
}

#demos-header {
  text-align: center;
}

#demos {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.demos__track {
  background-color: rgba(0, 255, 128, 0.1);
}
.demos__track h4 {
  position: sticky;
  top: 0;
  background-color: rgb(0, 255, 128);
  color: #151515;
  padding: 1rem;
  z-index: 2;
  filter: invert(1);
}

.demos__demos {
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.demo {
  border: 1px solid rgba(0, 255, 128, 0.5);
}

.demo__info {
  display: flex;
  justify-content: space-between;
  background-color: rgba(0, 255, 128, 0.5);
  padding: 0.25rem;
  font-size: 0.8rem;
}

.demo__comment {
  padding: 0.5rem;
}

.dug-player {
  display: flex;
  align-items: stretch;
}
.dug-player .timebar {
  flex-grow: 1;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  position: relative;
}
.dug-player .timebar .timebar__current {
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
}
.dug-player .timebar .timebar__times {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  color: #151515;
}

.demo__notes {
  margin: 1rem;
}
.demo__notes h5 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  border-bottom: 1px solid white;
}
.demo__notes .demo__note {
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.demo__notes .demo__note .note__header {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  background-color: #ececec;
  color: #151515;
  padding: 0 0.5rem;
  font-size: 0.8rem;
  opacity: 0.5;
}
.demo__notes .demo__note .note__body {
  padding: 0.5rem;
  font-size: 0.8rem;
  font-style: italic;
}

#modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  height: 100dvh;
  width: 100dvw;
  z-index: 3;
  background-color: rgba(21, 21, 21, 0.5);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}

#modal {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgb(0, 255, 128);
  color: #151515;
  border: 5px solid rgb(0, 255, 128);
}
#modal #modal__header {
  background-color: rgba(21, 21, 21, 0.5);
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
#modal #modal__header h1 {
  font-size: 1.25em;
  padding-left: 1rem;
  color: #ececec;
}
#modal #modal__header button {
  filter: invert(1);
}
#modal #modal__header button:hover {
  filter: invert(0);
}
#modal #modal__body {
  padding: 0.5rem;
}
#modal #modal__body code {
  display: block;
  padding: 1rem;
  background-color: rgba(21, 21, 21, 0.2);
  font-style: italic;
}
#modal #modal__body textarea {
  width: 100%;
  background-color: rgba(21, 21, 21, 0.2);
  padding: 1rem;
  font-style: italic;
  border: 0;
}
#modal #modal__body textarea:focus {
  outline: 1px dashed #151515;
}
#modal #modal__body #add-note-time-field {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
}
#modal #modal__body #add-note-time-field input {
  color: #151515;
  background-color: rgba(21, 21, 21, 0.2);
}
#modal #modal__body #add-note-time-field input:focus {
  outline: 1px dashed #151515;
}

@font-face {
  font-family: "Sv";
  src: url("/font/Sv.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Sv";
  src: url("/font/SvBold.ttf");
  font-weight: bold;
  font-style: normal;
}
*, *::after, *::before {
  box-sizing: border-box;
  font-family: "Sv";
}

body {
  background-color: #151515;
  color: #ececec;
  margin: 0;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

input:focus, button:focus {
  outline: 1px dashed #ececec;
}

input {
  border: 0;
  padding: 0.5rem;
  background-color: rgba(236, 236, 236, 0.1);
  color: #ececec;
}

button {
  border-radius: 0;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}
button:hover {
  filter: brightness(0.5);
}
button.caution {
  background-color: #931f31;
  color: #ececec;
}

.error {
  color: #ca2f55;
}

.c {
  display: block;
  text-align: center;
}

a {
  color: rgb(0, 255, 128);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a:focus {
  outline: 1px dashed #ececec;
}

#subtitle {
  text-align: center;
}/*# sourceMappingURL=main.css.map */