#editor {
  display: flex;
  width: 100%;
}
#editor > .content {
  padding-left: 2em;
}
#editor > .content .content {
  padding: unset;
}
#editor #chordsheet {
  padding-left: 6em;
}
aside.drawer#revs ol {
  list-style-type: lower-greek;
  padding-left: 1.8em;
}
aside.drawer#revs ol li {
  font-size: 0.8em;
  padding: 0.3em;
}
aside.drawer#revs ol li:hover {
  background-color: white;
}
aside.drawer#revs ol li.active {
  background-color: white;
}
#dirty {
  display: block;
  position: absolute;
  font-size: 1.6em;
  width: 1em;
  height: 1em;
  border-radius: 1em;
  background-color: var(--accent);
  left: 4rem;
  top: 2.5rem;
}
@media only screen and (max-width: 700px) {
  #dirty {
    display: none;
  }
}
.bubble li {
  display: inline-block;
  font-size: 0.75em;
  line-height: 1.8em !important;
  font-weight: 600;
  text-transform: uppercase;
  background-color: var(--gray);
  color: var(--text-inverted);
}
.bubble li::before {
  content: none !important;
}
.bubble li b {
  display: inline-block;
  font-weight: inherit;
  padding: 0 0.8em;
  padding-left: 0.3em;
  margin: 0 -0.9em;
  margin-left: 0.3em;
  background-color: var(--accent);
  border-top-right-radius: inherit;
  border-bottom-right-radius: inherit;
}
#bubble {
  border-radius: 0.6em;
  padding-right: 0.2rem;
  padding-left: 0.2rem;
  margin-right: 0.1rem;
  margin-left: 0.1rem;
  white-space: nowrap;
}
.source-font {
  font-family: "Plex Mono", Courier New, Courier, monospace;
  font-weight: 300;
  font-size: 0.9em;
}
.diff {
  display: inline;
}
.diff.added {
  border-radius: 0.6em;
  padding-right: 0.2rem;
  padding-left: 0.2rem;
  margin-right: 0.1rem;
  margin-left: 0.1rem;
  white-space: nowrap;
  background-color: var(--text-inverted);
  color: var(--text);
  filter: unset;
}
.diff.removed {
  border-radius: 0.6em;
  padding-right: 0.2rem;
  padding-left: 0.2rem;
  margin-right: 0.1rem;
  margin-left: 0.1rem;
  white-space: nowrap;
  text-decoration-line: line-through;
  text-decoration-color: var(--text);
  text-decoration-thickness: 0.1rem;
  background-color: var(--text-inverted);
  color: var(--accent);
  filter: unset;
  position: relative;
  z-index: 2;
}
.diff.removed + .diff.added {
  position: relative;
  margin-left: -0.6rem;
  padding-left: .6rem;
  z-index: 1;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.settings {
  display: flex;
  flex-flow: row nowrap;
  margin-bottom: 1.5rem;
}
.settings label {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: capitalize;
  margin-right: 0.4rem;
}
.settings input {
  margin-right: 0.4rem;
}
.blameColumn {
  white-space: nowrap;
  font-family: "Plex Mono", Courier New, Courier, monospace;
  font-weight: 300;
  font-size: 0.9em;
  margin-right: 0.2rem;
}
.blameColumn .annotation-group {
  text-align: right;
  cursor: pointer;
  display: flex;
  flex-flow: row nowrap;
}
.blameColumn .annotation-group:nth-child(even) > * {
  background-color: var(--accent);
  border-color: var(--accent);
}
.blameColumn .annotation-group:nth-child(even) .annotation {
  filter: grayscale(0.8);
}
.blameColumn .annotation-group:nth-child(even) .annotation.hovering {
  filter: grayscale(0.3);
}
.blameColumn .annotation-group:nth-child(even) .annotation:hover {
  position: relative;
  z-index: 100;
  filter: drop-shadow(0 0 3rem var(--accent));
}
.blameColumn .annotation-group:nth-child(odd) > * {
  background-color: var(--bg-rev);
  border-color: var(--bg-rev);
}
.blameColumn .annotation-group:nth-child(odd):hover {
  filter: none;
}
.blameColumn .annotation-group:nth-child(odd) .annotation {
  filter: grayscale(0.8);
}
.blameColumn .annotation-group:nth-child(odd) .annotation.hovering {
  filter: grayscale(0.3);
}
.blameColumn .annotation-group:nth-child(odd) .annotation:hover {
  position: relative;
  z-index: 100;
  filter: drop-shadow(0 0 3rem var(--bg-rev));
}
.blameColumn .annotation-group .annotation {
  padding: 0 0.2rem;
  margin-right: 0.2rem;
  width: 100%;
}
.blameColumn .annotation-group .hover-container {
  width: 0px;
  order: 1;
  position: relative;
}
.blameColumn .annotation-group .hover-container .hover {
  text-align: left;
  border: 1rem solid;
  border-radius: 1rem;
  position: absolute;
  padding: 10px;
  margin-top: -10px;
  background-color: inherit;
  border-color: inherit;
  opacity: 0.9;
  overflow-x: scroll;
  width: 36vw;
}
.blameColumn .annotation-group .hover-container .hover .info {
  font-family: 'Roboto';
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}
.blameColumn .annotation-group .hidden {
  display: none;
}
.source-adv {
  display: flex;
  flex-flow: row nowrap;
}
.source-adv textarea {
  width: 100%;
}
