* {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  overflow-y: hidden;
  touch-action: none;
  background: #555555;
  -webkit-touch-callout: none; /* iOS Safari */
  font-size: large;
}

#cover {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: red;
  opacity: 0.1;
}

.touch_pickup_ignore {
  pointer-events: none;
}
.touch_pickup_detect {
  pointer-events: auto;
}

.prevent-select {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

#toolbar, .toolbar {
  position: fixed;
  display: flex;
  padding: 0.5em;
  align-items: center;
  flex-wrap: wrap;
  top: 0;
  left: 0;
  margin: auto;
  background-color: black;
  color: white;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 13px;
  width: 100%;
  border-radius: 0 0 5px 5px;
  border: 1px solid #333333;
}
#toolbar--floating, .toolbar--floating {
  position: fixed;
  padding: 0.5em;
  position: fixed;
  top: 0;
  right: 0;
  margin: auto;
  background-color: black;
  z-index: 100;
  border-radius: 0 0 5px 5px;
  border: 1px solid #333333;
  font-family: Roboto, Arial, Helvetica, sans-serif;
}
#toolbar__item, .toolbar__item {
  border: 1px solid gray;
  border-radius: 5px;
  padding: 0.5em;
  margin: 0.5em;
  list-style-type: none;
  color: lightgray;
}
#toolbar__item label, .toolbar__item label {
  padding-right: 0.5em;
}
#toolbar__item button, #toolbar__item select, .toolbar__item button, .toolbar__item select {
  border-radius: 5px;
  box-shadow: none;
  color: black;
  font-size: 1em;
  margin: 0;
}
#toolbar__item select, .toolbar__item select {
  padding: 0.1em;
}
#toolbar__item:hover, .toolbar__item:hover {
  background-color: #333333;
}

#mainSVG {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none;
}

.screenNoteGroup {
  transition: transform 0.1s ease;
  filter: brightness(2);
}

#slider-container {
  opacity: 0;
  touch-action: none;
  overflow: hidden;
}

#slider-bg {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  margin: auto;
  height: 80%;
  width: 80%;
  z-index: -1;
  border: solid black 10px;
  background-color: gray;
  overflow: hidden;
}

#instrument__underlay input {
  pointer-events: none;
}

.svg-fader {
  cursor: ns-resize;
}

/*# sourceMappingURL=style.css.map */
