.noselect {
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
}

html, body {
  touch-action: manipulation;
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Open Sans, serif;
  font-style: normal;
  font-size: 3.4vmin;
  background: #184783;
  fill: #184783;
  color: white;
}

.main {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  align-content: center;
  justify-content: center;
}

.playarea {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
}

#react-app-container {
  height: 100%;
}

.bottombar {
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 1vmin 0;
}

.bottomarea {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 2vmin;
}

.red-button {
  background-color: rgba(255, 0, 0, 0.6);
}

.red-button-touched {
  background-color: rgba(255, 0, 0, 0.8);
}

.green-button {
  background-color: rgba(0, 200, 0, 0.6);
}

.green-button-touched {
  background-color: rgba(0, 200, 0, 0.8);
}

.circular-progress {
  position: relative;
  display: inline-block;
  margin-right: 20px;
}

.circular-progress-circle {
  position: relative;
  width: 24vh;
  height: 24vh;
  background: #7491b5;
  border-radius: 50%;
  overflow: hidden;
}

.segment {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vw;
  background: #e3e9f0;
  transform-origin: 0 0;
}

.circular-progress-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22vh;
  height: 22vh;
  transform: translate(-50%, -50%);
  background: #184783;
  border-radius: 50%;
}

button {
  outline: none;
  font-size: 120%;
  background-color: rgba(200, 200, 200, 0.4);
  color: white;
  min-width: 10vmin;
  border-radius: var(--control-radius);
  border: 0;
  padding: 2vmin 3vmin;
  margin: 0 1vmin;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

button:disabled {
  color: #b0faf3;
  fill: rgba(200, 200, 200, 0.5);
}

.touched-button {
  background-color: rgba(200, 200, 200, 0.6);
}

.xicon {
  fill: white;
}

.link, .touched-link {
  padding: 1vmin;
  box-sizing: border-box;
  fill: rgba(255, 255, 255, 0.9);
}

.touched-link {
  color: white;
  fill: red;
}

.xlink-icon {
  width: 6vmin;
  height: 6vmin;
}

.bottombar-button {
  background-color: rgba(0, 0, 0, 0);
}

.bottombar-button-selected {
  background-color: rgba(200, 240, 255, 0.4);
}

.songselection {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 1vmin;
}
.songselection h2 {
  align-self: center;
  font-size: 1.5rem;
}

.songlist {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 1vmin;
  overflow: scroll;
}
.songlist .songrow, .songlist .songrow-touched {
  padding: 2vmin 3vmin;
  font-size: 2vmin;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}
.songlist .songrow-touched {
  background-color: rgba(255, 255, 255, 0.3);
}

/*# sourceMappingURL=app.css.map */
