.edit-mode > * :where(button) {
  margin: auto 0;
  padding: 0 0.4em;
  border-radius: 100vh;
  border: 0.15em solid var(--blue);
  font-weight: 500;
  background-color: #eee;
  cursor: pointer;
}
.edit-mode > * :where(button):hover, .edit-mode > * :where(button):focus {
  background-color: #ddd;
  box-shadow: 0 0 0.8em 0em #d8d8d8;
}
.edit-mode .song__section__headder__notes {
  outline: 0.05em solid #000;
}
.edit-mode .song__section__headder__notes:hover, .edit-mode .song__section__headder__notes:focus {
  outline: 0.15em solid var(--blue);
}

.edit-options {
  z-index: 3;
  position: fixed;
  display: flex;
  right: -6rem;
  top: 0;
  bottom: 0;
  width: 0;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 3rem;
  pointer-events: none;
  transition: right 0.5s cubic-bezier(0.18, 0.89, 0.2, 1.54);
}
.edit-options__button {
  --icon-size: 5rem;
  padding: 0;
  border: none;
  min-width: -moz-max-content;
  min-width: max-content;
  position: relative;
  left: calc((var(--icon-size) + var(--gap)) * -1);
  display: flex;
  align-items: start;
  --gap: 1rem;
  gap: var(--gap);
  padding-right: 1rem;
  border-radius: 100vw 0 0 100vw;
  background-color: #eeeeee;
  transition: transform 0.1s ease-out, background-color 0.1s ease-out;
}
.edit-options__button__icon {
  margin: auto;
  display: inline-block;
  height: var(--icon-size);
  border-radius: 100vw;
}
.edit-options__button__icon img {
  box-sizing: border-box;
  padding: 1.2rem;
  width: var(--icon-size);
  height: var(--icon-size);
}
.edit-options__button__text {
  display: inline-block;
  margin: auto;
}
.edit-options__button--exit .edit-options__button__icon {
  background-color: var(--red);
}
.edit-options__button--exit:focus {
  transform: none;
}
.edit-options--enabled {
  right: 0;
  pointer-events: all;
}
.edit-options--enabled .edit-options__button:hover, .edit-options--enabled .edit-options__button:focus {
  background-color: #dddddd;
  transform: translateX(calc(-100% + var(--icon-size) + var(--gap)));
  cursor: pointer;
}
.edit-options .enabled {
  background-color: var(--green) !important;
  box-shadow: 0 0 2rem hsla(0, 0%, 0%, 0.4);
}

.change-order .song__section {
  border-bottom: 0.1em solid #ddd;
}
.change-order .song__section__lyrics, .change-order .song__section__instrumental {
  height: 0 !important;
  padding-top: 0;
  overflow: hidden;
}
.change-order .song__section__headder__notes {
  align-self: center;
  margin-top: 0;
}
.change-order .song__section__headder .order-mover {
  display: inline-flex;
  position: relative;
  align-self: stretch;
  align-items: center;
  padding-left: 3rem;
}
.change-order .song__section__headder .order-mover__icon {
  width: 1.8em;
  height: 1.8em;
  margin: auto;
  padding: 0;
  cursor: grab;
}
.change-order .song__section__headder .order-mover__icon img {
  width: 100%;
  height: 100%;
  padding: 0.2em;
  transform: rotate(90deg);
  pointer-events: none;
}
.change-order .song__section__headder .order-mover__listener {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.change-order .song__section__headder .order-mover__listener--top {
  top: -0.5em;
  bottom: 50%;
  z-index: 400;
}
.change-order .song__section__headder .order-mover__listener--bottom {
  top: 50%;
  bottom: -0.6em;
  z-index: 300;
}
.change-order .song__section--moving {
  pointer-events: none;
  z-index: 2;
  opacity: 0.8;
}

.moving .song__section:not(.song__section--moving) .order-mover__icon {
  pointer-events: none;
}
.moving .song__section:not(.song__section--moving) .order-mover__listener {
  pointer-events: auto;
}

.spacer {
  transition: height 0.2s ease-out;
}

.no-height {
  animation: no-height 0.2s ease-out forwards;
}

.slide-notes .song__section__lyrics__line {
  line-height: 500%;
}
.slide-notes .song__section__lyrics__line__note:hover {
  text-decoration: underline;
}
.slide-notes .song__section__lyrics__line__note:hover div {
  text-decoration: underline;
}
.slide-notes .song__instrumental .song__section__line {
  line-height: 170%;
}

.note-mover {
  cursor: grab;
  display: block;
  position: absolute;
  width: 1.75em;
  height: 1.75em;
  left: -100%;
  right: -100%;
  margin: auto;
  bottom: -3.25em;
  padding: 0.3em;
}
.note-mover img {
  pointer-events: none;
}

.only-lyrics .song__section {
  margin-top: 0;
}
.only-lyrics .song__section__instrumental {
  display: none;
}
.only-lyrics .song__section__lyrics {
  padding-top: 0em;
}
.only-lyrics .song__section__lyrics__line {
  line-height: 100%;
  margin-top: 0.4em;
}
.only-lyrics .song__section__lyrics__line:first-of-type {
  margin-top: 0.2em;
}
.only-lyrics .song__section__lyrics__line__note {
  margin-left: 0 !important;
}
.only-lyrics .song__section__lyrics__line__note__wrapper {
  display: none;
}
.only-lyrics .song__instrumental {
  display: none;
}

.dialog {
  pointer-events: none;
  z-index: 2;
  position: fixed;
  inset: 0 0 auto 0;
}
.dialog__text {
  position: relative;
  width: -moz-max-content;
  width: max-content;
  max-width: min(50rem, 80vw);
  margin: 0 auto;
  padding: 0.5em 1em;
  border-radius: 1rem;
  overflow: hidden;
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
  box-shadow: 0 0 2rem hsla(0, 0%, 0%, 0.4);
}
.dialog__text::after {
  content: "";
  display: block;
  position: absolute;
  height: 0.3rem;
  width: 0;
  background-color: hsla(0, 0%, 0%, 0.25);
  inset: auto 0 0 0;
}

.show-dialog {
  animation: show-hide-dialog var(--time) ease-in-out forwards;
}
.show-dialog::after {
  animation: time-bar var(--time) linear;
}

.text-error {
  animation: text-error 5s linear forwards;
}

@keyframes show-hide-dialog {
  5% {
    margin-top: 1rem;
    z-index: 4;
  }
  95% {
    margin-top: 1rem;
    z-index: -1;
    box-shadow: 0 0 2rem hsla(0, 0%, 0%, 0.4);
  }
  100% {
    margin-top: -5rem;
    z-index: -1;
    box-shadow: 0 0 2rem hsla(0, 0%, 0%, 0);
  }
}
@keyframes time-bar {
  5% {
    width: 0;
  }
  95% {
    width: 100%;
  }
  100% {
    width: 100%;
  }
}
@keyframes text-error {
  0% {
    color: #ff0000;
  }
  80% {
    color: #ff0000;
  }
  100% {
    color: #000;
  }
}
@keyframes no-height {
  100% {
    height: 0;
  }
}/*# sourceMappingURL=settings.css.map */