body {
  margin: 0px;
  font-family: Arial;
}

*:-webkit-scrollbar {
  display: none;
}

* {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

input[type="range"][orient="vertical"] {
  writing-mode: vertical-lr;
  direction: rtl;
  appearance: slider-vertical;
  width: 16px;
  vertical-align: bottom;
}

.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

.center {
  text-align: center;
  justify-content: center;
  align-items: center;
}

.left {
  align-self: stretch;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
}

.banner {
  width: 100%;
  background-color: #ff0000;
  text-align: center;
  padding: 4px;
  margin-bottom: 12px;
}

.fSizeBig {
  font-size: 1.2em;
}

.fSizeMedium {
  font-size: 1em;
}

.fSizeSmall {
  font-size: 0.8em;
}

.fSizeTiny {
  font-size: 0.6em;
}

.text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.presenterText {
  text-align: right;
}

.infoFrame {
  flex: 1;
  padding: 4px;
  flex-direction: column;
  gap: 4px;
  display: inline-flex;
  overflow: hidden;
}

.actionFrame {
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  display: inline-flex;
}

.bottomSection {
  align-self: stretch;
  flex: 1;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 4px;
  display: inline-flex;
}

.songFrame {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.presenterFrame {
  max-width: 220px;
  align-self: stretch;
  padding: 4px;
  opacity: 0.5;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
  display: flex;
  transition-duration: 400ms;
  overflow: hidden;
}

.presenterFrame:hover {
  opacity: 1;
}

.button {
  cursor: pointer;
  transition-duration: 200ms;
}

.button:hover {
  opacity: 0.7;
  transform: scale(1.1);
}

.pauseButton {
  transition-duration: 500ms;
  opacity: 0.1;
}

.invisible {
  display: none;
}

.resyncButton {
  opacity: 0.6;
}

.resyncButton:hover {
  opacity: 1;
}

.imgSpin {
  animation: imgSpin 1.1s ease-in-out infinite;
}
.imgSpin2 {
  animation: imgSpin 0.9s ease-in-out infinite;
}

.spinC {
  animation: spinC 0.5s linear infinite;
}
.spinCC {
  animation: spinCC 0.5s linear infinite;
}

@keyframes spinC {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spinCC {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

@keyframes imgSpin {
  0% {
    transform: rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: rotate(180deg);
    opacity: 0.2;
  }
  100% {
    transform: rotate(360deg);
    opacity: 1;
  }
}
