@import url(https://fonts.googleapis.com/css?family=Raleway|Lora|Poppins&display=swap);html {
  height: 100%;
  background-color: white; }

body {
  padding: 0px;
  margin: 0;
  margin-top: 0px;
  margin-bottom: 0px;
  height: calc(100% - 10px); }
  body * {
    font-family: "Raleway", "Poppins";
    user-select: none; }

.showSmall {
  display: none; }
  @media only screen and (max-width: 380px) {
    .showSmall {
      display: block; } }

.hideSmall {
  display: block; }
  @media only screen and (max-width: 380px) {
    .hideSmall {
      display: none; } }

#react-root {
  width: 100%;
  height: 100%;
  margin: auto; }

header {
  width: 100%;
  background-color: white;
  position: fixed;
  display: flex;
  height: 30px; }
  @media only screen and (max-width: 380px) {
    header {
      flex-direction: column;
      justify-content: space-around;
      height: 70px; } }
  header .logoBox .logo {
    line-height: 1; }
  header .navButtons {
    display: flex;
    justify-content: flex-start;
    padding-left: 10px;
    box-sizing: border-box;
    align-items: center;
    width: 100%; }
  header a {
    letter-spacing: 1;
    color: black;
    text-decoration: none;
    line-height: 1;
    font-size: 18px;
    margin-right: 15px; }
    header a:visited, header a:active {
      color: black; }
    header a.logo {
      font-size: 25px;
      letter-spacing: 1.5px;
      transform: rotate(0deg);
      margin-left: 10px; }

section {
  box-sizing: border-box;
  padding-top: 30px;
  color: white;
  background-color: black;
  height: 100%;
  width: calc(100% - 20px);
  margin: auto;
  display: flex;
  flex-direction: column;
  overflow: auto; }
  @media only screen and (max-width: 380px) {
    section {
      padding-top: 70px; } }
  section .colorBox {
    flex-grow: 1;
    background-color: black;
    margin-top: 5px;
    margin-bottom: 5px;
    border-top: 5px solid white; }
  section iframe {
    width: 100%;
    height: 100%;
    margin: auto;
    border: 1px solid white; }

h1, h2, h3, h4 {
  line-height: 1;
  margin: 5px 0px 5px 0px; }

h1 {
  font-weight: bold;
  padding: 10px 10px;
  background-color: black;
  font-size: 30px;
  letter-spacing: 1.5px;
  border-bottom: 5px solid white; }
  .active h1 {
    letter-spacing: 2px;
    transition: letter-spacing 1s ease-in-out; }

p {
  font-family: "Poppins";
  font-size: 15px;
  margin-block-start: 0px;
  margin-block-end: 0px;
  padding: 0px 10px 20px 0px;
  margin-top: -1px;
  line-height: 1.2;
  max-width: 400px;
  color: white; }
  .active p {
    margin-top: 0px;
    transition: margin-top 1s ease-in-out; }

.pBox {
  background-color: black;
  padding: 10px; }

.project {
  display: flex;
  align-items: flex-start;
  border-top: 1px solid white;
  padding-top: 10px; }
  @media only screen and (max-width: 380px) {
    .project {
      flex-direction: column; } }
  .project a {
    font-weight: bold;
    min-width: 150px;
    color: red;
    text-decoration: none; }
    .project a.disabled {
      pointer-events: none; }

button {
  border: none;
  background-color: white;
  font-weight: bold;
  width: 150px;
  cursor: pointer; }

#modal-root {
  position: absolute;
  left: 0;
  top: 0; }

.modalBack {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity .2s; }
  .modalBack.showing {
    opacity: 1;
    transition: opacity .2s; }
  .modalBack .modalBox {
    border-radius: 5px;
    padding: 20px;
    background-color: white;
    width: auto;
    height: auto; }
  .modalBack .modalTopRow {
    width: 100%;
    display: flex;
    justify-content: flex-end; }
  .modalBack .modalExit {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 15px;
    font-size: 30px;
    line-height: 1;
    cursor: pointer; }
  .modalBack .modalButtons {
    width: 100%;
    display: flex;
    justify-content: space-around; }
    .modalBack .modalButtons button {
      align-items: center;
      flex-grow: 1;
      margin-right: 10px;
      margin-bottom: 0px;
      padding-top: 5px;
      text-align: center; }
      .modalBack .modalButtons button:last-child {
        margin-right: 0px; }
      .modalBack .modalButtons button.disabled {
        pointer-events: none;
        color: #bbb; }
  .modalBack .modalInput {
    width: 100%; }
  .modalBack h2 {
    margin-top: 10px;
    padding: 0;
    max-width: 75vw; }
  .modalBack .columnLabel {
    display: flex;
    flex-direction: column; }
    .modalBack .columnLabel span {
      margin-bottom: 20px; }
  .modalBack .modalContent h2 {
    margin-top: 0px;
    margin-bottom: 20px;
    line-height: 1.4; }
  .modalBack .modalContent .modalButtons {
    margin-bottom: 0px; }
  .modalBack .modalContent.vertical {
    display: flex;
    flex-direction: column; }
    .modalBack .modalContent.vertical label {
      display: flex;
      flex-direction: column; }
      .modalBack .modalContent.vertical label.checkBox {
        flex-direction: row; }
        .modalBack .modalContent.vertical label.checkBox .checkBox__face {
          margin-bottom: 0; }

.sequencerWrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: 5px; }
  .sequencerWrapper * {
    user-select: none; }

.grid {
  position: absolute;
  display: flex; }
  .grid .barGridWrapper {
    position: relative;
    overflow: hidden;
    left: 0px; }
  .grid .barGrid {
    height: 100%;
    background-image: url("../images/barGrid.png");
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    border-left: 1px solid #c1c1c1;
    box-sizing: border-box;
    background-size: 100%;
    right: 0px;
    position: absolute; }

.sequencerLine {
  width: 100%;
  position: relative;
  border-top: 1px solid grey;
  box-sizing: border-box;
  color: black;
  font-size: 10px; }
  .sequencerLine.blackKey {
    background-color: rgba(0, 0, 0, 0.3); }

.sequencerNotes {
  width: 100%;
  height: 100%;
  top: 0px;
  position: absolute; }
  .sequencerNotes .sequencerNote {
    height: 100%;
    position: absolute;
    background-color: red;
    box-sizing: border-box;
    border: 1px solid pink;
    box-shadow: 1px 1px black; }
    .sequencerNotes .sequencerNote.selected {
      background-color: #c80000; }

.sequencerSelectionBox {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.2); }

.toolMenu {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  background-color: #98d29e;
  margin-bottom: 5px; }
  .toolMenu .gorahSlider {
    width: 100%; }

.toolMenuTool {
  font-size: 20px;
  border: none;
  width: 40px;
  height: 30px;
  outline: none;
  background-position: center;
  background-repeat: no-repeat;
  padding: 5px;
  background-color: inherit;
  border: 1px solid white;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
  flex-grow: 1;
  margin: 1px; }
  .toolMenuTool.pencil {
    background-image: url("/images/icons/pencil.png"); }
  .toolMenuTool.hand {
    background-image: url("/images/icons/hand.png"); }
  .toolMenuTool.speaker {
    background-image: url("/images/icons/speaker.png"); }
  .toolMenuTool.select {
    background-image: url("/images/icons/cursor.png"); }
  .toolMenuTool.slice {
    background-image: url("/images/icons/knife.png"); }
  .toolMenuTool.paused {
    background-image: url("/images/icons/play.png"); }
  .toolMenuTool.playing {
    background-image: url("/images/icons/pause.png"); }
  .toolMenuTool.minimize, .toolMenuTool.maximize {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    line-height: 1;
    font-size: 16px;
    text-shadow: 1px 1px black;
    background-image: url("/images/icons/magnifier.png"); }
  .toolMenuTool.selected {
    background-color: white;
    color: white; }

.toolMenuLabel {
  display: flex;
  color: black;
  align-items: center;
  height: 100%;
  margin-left: 5px; }

.toolMenuInput {
  height: 100%;
  width: 100px;
  border: none;
  padding: 2px;
  line-height: 1;
  margin-right: 2px;
  outline: none; }

.timeBar {
  display: flex;
  overflow: hidden; }

.timeBarSliceWrapper {
  position: relative;
  overflow: hidden;
  left: 0px;
  height: 30px;
  flex-shrink: 0; }

.timeBarSlice {
  height: 100%;
  font-family: monospace;
  background-color: #bbf3bb;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  box-sizing: border-box;
  right: 0px;
  position: absolute;
  display: flex;
  align-items: center;
  line-height: 1;
  color: green;
  padding: 5px;
  user-select: none; }

.timeBarPlayPosition {
  position: absolute;
  height: 100%;
  width: 2px;
  background-color: blue; }

.timeBarEndPosition {
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  height: 100%;
  right: 0px; }

.timeBarStartPosition {
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  height: 100%;
  left: 0px; }

.editorWrapper {
  display: flex;
  margin: auto;
  padding: 5px;
  background-color: white; }
  .editorWrapper .leftColumn {
    width: 200px;
    background-color: white;
    margin-right: 5px;
    display: flex;
    flex-direction: column; }

.trackList {
  width: 100%;
  height: 100%;
  max-height: 500px;
  overflow: auto; }

.trackListTopRow {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px; }

.trackListGear {
  color: white;
  cursor: pointer; }

.trackListButtons {
  display: flex;
  margin-bottom: 5px;
  height: 30px; }
  .trackListButtons .trackListButton {
    width: 100%;
    background-color: #98d29e; }

.trackListTrack {
  width: 100%;
  margin-bottom: 5px;
  background-color: #8ec78d;
  color: black;
  padding: 5px;
  box-sizing: border-box; }
  .trackListTrack.selected {
    background-color: #547c54;
    color: white; }
  .trackListTrack .gorahSlider {
    padding-top: 5px;
    background-color: #bbf2bb; }

.seeker {
  width: 100%;
  height: 30px;
  background-color: #96c295;
  position: relative;
  margin-bottom: 5px; }

.seekerViewWindow {
  height: 100%;
  position: absolute;
  box-sizing: border-box;
  border: 1px solid black; }

.seekerViewSong {
  height: 100%;
  position: absolute;
  box-sizing: border-box;
  background-color: #bbf3bb; }

.seekerViewPlayPosition {
  height: 100%;
  width: 2px;
  position: absolute;
  box-sizing: border-box;
  background-color: blue; }

.gorahSlider {
  position: relative;
  height: 35px;
  background-color: inherit;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
  color: black; }

.gorahSliderInputHolder {
  position: relative;
  background-color: inherit;
  overflow: hidden;
  width: 100%; }
  .gorahSliderInputHolder input {
    width: 100%;
    height: 10px; }

.gorahSliderMask {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: inherit;
  top: 0px;
  left: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden; }

.gorahSliderBar {
  width: calc(100% - 20px);
  height: 10px;
  background-color: rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  border-radius: 10px;
  position: absolute;
  overflow: visible; }

.gorahSliderHandlePoint {
  position: absolute;
  top: 50%;
  transform: translateY(-50%); }

.gorahSliderHandle {
  width: 10px;
  height: 10px;
  background-color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 5px; }

.gorahSliderLabel {
  padding: 2px;
  padding-left: 10px;
  line-height: 1;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center; }

.propertyViewer {
  position: relative;
  overflow: hidden; }

.propertyViewerLabel {
  background-color: #96c295;
  position: absolute;
  padding: 5px;
  left: 5px;
  top: 5px;
  color: black;
  box-shadow: 1px 1px #599958; }

.propertyViewerWindow {
  width: 100%; }
  .propertyViewerWindow canvas {
    position: absolute; }

.propertyViewerLines {
  position: absolute;
  width: 100%; }

.propertyViewerLine {
  width: 100%;
  position: relative;
  border-top: 1px solid grey;
  box-sizing: border-box;
  color: black;
  font-size: 10px; }
  .propertyViewerLine.hidden {
    color: transparent;
    background-color: rgba(0, 0, 0, 0.18); }

.modeSelector {
  margin-top: 5px; }

.modeSelectorButton {
  width: auto;
  padding: 5px;
  background-color: #7a8e7a;
  margin-right: 5px;
  text-transform: uppercase;
  box-sizing: border-box;
  outline: none; }
  .modeSelectorButton.selected {
    background-color: #8ec78d; }

.synth {
  width: 500px;
  padding: 10px;
  border-radius: 5px;
  border-top: 5px solid #dc7575;
  border-right: 5px solid #922626;
  border-bottom: 5px solid #6a1b1b;
  border-left: 5px solid #d14d4d;
  background-color: #bb3030; }
  .synth .gorahSlider {
    color: white;
    background-color: #bb3030; }
  .synth h3 {
    color: white;
    text-shadow: 1px 1px #dc7575;
    margin-bottom: 10px; }

.synthTopRow {
  display: flex;
  justify-content: space-between; }

.synthRow {
  display: flex;
  margin-bottom: 5px;
  align-items: flex-end; }

.adsrSetter {
  margin-top: 5px;
  display: flex;
  align-items: center; }

.adsrSetterSliders {
  display: flex;
  flex-wrap: wrap; }
  .adsrSetterSliders .gorahSlider {
    width: 50%; }

.adsrSetterCanvasWrapper {
  padding: 5px;
  background-color: black; }

.adsrSetterCanvas {
  margin: auto; }

.waveChooser {
  display: flex; }
  .waveChooser .waveChooserButton {
    padding: 5px;
    margin-right: 5px;
    color: white;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.2); }
    .waveChooser .waveChooserButton.selected {
      color: #7aff7a; }

.onOffButton {
  height: max-content;
  padding: 5px;
  margin-right: 5px;
  color: white;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.2);
  text-transform: lowercase; }
  .onOffButton.on {
    color: #7aff7a; }
