#player {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.grassplayer2 {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  font-family: Arial, Helvetica, sans-serif;
  background-image: url("/images/vlc.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 140px;
  display: flex;
  align-items: start;
  justify-content: start;
}
.grassplayer2 .subtitles-octopus {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.grassplayer2 button {
  color: black;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  padding: 0.25em 0.5em;
  border: none;
}
.grassplayer2 button:hover {
  color: black;
  background: rgba(220, 220, 220, 0.3);
}
.grassplayer2 input[type=checkbox] {
  user-select: none;
  box-sizing: border-box;
  appearance: none;
  padding: 0;
  width: 16px;
  height: 16px;
  border: none;
  cursor: pointer;
  color: black;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  border-radius: 100%;
}
.grassplayer2 input[type=checkbox]:hover {
  background: rgba(220, 220, 220, 0.3);
}
.grassplayer2 input[type=checkbox]:checked {
  background: rgba(150, 255, 150, 0.5);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.5);
}
.grassplayer2 input[type=number] {
  color: black;
  width: 6em;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  border: none;
}
.grassplayer2 select {
  padding: 4px;
  color: black;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  border: none;
}
.grassplayer2 select:focus {
  border: none;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.grassplayer2 select:hover {
  background: rgba(220, 220, 220, 0.3);
}
.grassplayer2 select:disabled {
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  color: rgb(100, 100, 100);
  background: rgba(230, 230, 230, 0.3);
}
.grassplayer2 option {
  color: black;
  background: white;
}
@keyframes slide-in {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.grassplayer2 .settings {
  right: 0;
  bottom: 0;
  margin: 1em;
  position: absolute;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  color: black;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  width: 400px;
  max-height: calc(100% - 2em);
  overflow: auto;
  padding: 0.5em;
  gap: 0.5em;
  scrollbar-width: none;
  animation: slide-in 0.2s;
}
.grassplayer2 .settings .stats {
  font-family: monospace;
  font-size: 0.9em;
}
.grassplayer2 .settings .stats > * {
  word-break: keep-all;
  white-space: pre-wrap;
}
.grassplayer2 .settings .options {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.grassplayer2 .settings .options.nogap {
  gap: 2px;
}
.grassplayer2 .settings .options > div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.grassplayer2 .settings .options > div > *:first-child:not(:only-child) {
  flex: 1;
}
.grassplayer2 .settings > .header {
  padding: 0.5em;
}
.grassplayer2 .settings > div {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.grassplayer2 .settings > div > div {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  padding: 0.5em;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  padding: 0.5em;
  align-items: start;
  gap: 0.5em;
}
.grassplayer2 .settings > div > div > :first-child {
  width: 100%;
  display: block;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.grassplayer2 .settings > div > div > :first-child > :first-child {
  flex: 1;
}
.grassplayer2 .settings > div > div > :last-child {
  align-self: stretch;
  word-break: break-all;
}
.grassplayer2 .settings .filters {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.grassplayer2 .settings .filters > div {
  border-radius: 4px;
  padding: 0.5em;
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.grassplayer2 .settings .filters .title {
  gap: 0.5em;
  display: flex;
  align-items: center;
}
.grassplayer2 .settings .filters .title > span {
  font-weight: bold;
  height: 1em;
}
.grassplayer2 .settings button.reset {
  background: none;
  line-height: 1em;
  width: 24px;
  height: 24px;
  margin: 0;
  padding: 0;
  border: 0;
  box-shadow: none;
}
.grassplayer2 .settings button.reset::after {
  vertical-align: middle;
  content: "settings_backup_restore";
  font-family: "Material Symbols Rounded";
}
.grassplayer2 .buttons {
  position: absolute;
  left: 50%;
  top: 10em;
}
.grassplayer2 .video-outer {
  left: 0;
  top: 0;
  pointer-events: none;
  position: absolute;
  overflow: hidden;
  height: 100%;
  width: 50%;
}
.grassplayer2 video {
  width: 100%;
  pointer-events: all;
  object-fit: contain;
}
.grassplayer2 #chk_split {
  display: none;
}
.grassplayer2 #chk_split:checked ~ .video-outer > video {
  width: 100vw;
  height: 100%;
  top: 0;
  bottom: unset;
}
.grassplayer2 #chk_split:checked ~ * #lbl_split::after {
  content: "split";
}
.grassplayer2 #lbl_split::after {
  content: "unset";
}
.grassplayer2 .view {
  user-select: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.grassplayer2 .view > div {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.grassplayer2 .view > .BasicRenderer {
  width: 100%;
  height: 100%;
}
.grassplayer2 .view > .BasicRenderer video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.grassplayer2 .view > .WebGPURenderer canvas {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.grassplayer2 .view > .YoutubeRenderer {
  pointer-events: none;
}
.grassplayer2 .view > .YoutubeRenderer > iframe {
  width: 100%;
  height: 100%;
}
.grassplayer2 button.icon.floating {
  border: none;
  width: 2em;
  height: 2em;
}
.grassplayer2 .view {
  cursor: none;
}
.grassplayer2 .overlay > .controls,
.grassplayer2 .overlay > .main > .settings {
  opacity: 0;
  transition: opacity 0.2s;
}
.grassplayer2.show .view {
  cursor: unset;
}
.grassplayer2.show .overlay > .controls,
.grassplayer2.show .overlay > .main > .settings {
  opacity: 1;
}
.grassplayer2 .overlay {
  z-index: 2;
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: flex;
  flex-direction: column;
}
.grassplayer2 .overlay > .main {
  pointer-events: none;
  flex: 1;
  position: relative;
}
.grassplayer2 .overlay > .main > * {
  pointer-events: all;
}
.grassplayer2 .overlay .messages {
  color: rgba(255, 255, 255, 0.7);
  user-select: none;
  position: absolute;
  left: 25%;
  top: 0;
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5em;
  padding: 0.5em;
  pointer-events: none;
  overflow: hidden;
}
.grassplayer2 .overlay .messages > div {
  pointer-events: all;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  padding: 0.5em;
  border-radius: 4px;
}
.grassplayer2 .overlay .messages .volume-up,
.grassplayer2 .overlay .messages .volume-down {
  display: flex;
  gap: 0.5em;
}
.grassplayer2 .overlay .messages .volume-up::before {
  content: "volume_up";
  font-family: "Material Symbols Rounded";
}
.grassplayer2 .overlay .messages .volume-down::before {
  content: "volume_down";
  font-family: "Material Symbols Rounded";
}
.grassplayer2 .controls {
  pointer-events: all;
  position: relative;
  display: flex;
  height: 64px;
  justify-content: space-between;
  align-items: center;
}
.grassplayer2 .controls > .left,
.grassplayer2 .controls > .right {
  display: flex;
  align-items: center;
}
.grassplayer2 .controls > .left > *,
.grassplayer2 .controls > .right > * {
  flex-shrink: 0;
}
.grassplayer2 .controls button,
.grassplayer2 .controls input[type=checkbox] {
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Material Symbols Rounded";
  border: none;
  background: none;
  border-radius: 100%;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  width: 48px;
  height: 48px;
  padding: 0;
  margin: 8px;
}
.grassplayer2 .controls button:hover,
.grassplayer2 .controls input[type=checkbox]:hover {
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.grassplayer2 .controls button:focus, .grassplayer2 .controls button:focus-visible,
.grassplayer2 .controls input[type=checkbox]:focus,
.grassplayer2 .controls input[type=checkbox]:focus-visible {
  border: none;
  outline: 4px solid rgba(0, 255, 70, 0.5);
  outline-offset: 2px;
}
.grassplayer2 .controls button:disabled,
.grassplayer2 .controls input[type=checkbox]:disabled {
  cursor: not-allowed;
  color: rgb(100, 100, 100);
  background: rgba(255, 255, 255, 0);
}
.grassplayer2 .controls button {
  font-size: 40px;
  line-height: 40px;
}
.grassplayer2 .controls input[type=checkbox] {
  font-size: 32px;
  line-height: 32px;
}
.grassplayer2 .controls .chk-play:checked::after {
  content: "pause";
}
.grassplayer2 .controls .chk-play::after {
  content: "play_arrow";
}
.grassplayer2 .controls .chk-next::after {
  content: "skip_next";
}
.grassplayer2 .controls .chk-captions:checked::after {
  content: "subtitles_off";
}
.grassplayer2 .controls .chk-captions::after {
  content: "subtitles";
}
.grassplayer2 .controls .chk-settings:checked:hover {
  background: rgba(255, 255, 255, 0.6);
  box-shadow: inset 0 0 5px rgb(0, 0, 0);
}
.grassplayer2 .controls .chk-settings:checked {
  background: rgba(255, 255, 255, 0.6);
  box-shadow: inset 0 0 5px rgb(0, 0, 0);
}
.grassplayer2 .controls .chk-settings::after {
  content: "settings";
}
.grassplayer2 .controls .chk-fullscreen::after {
  content: "open_in_full";
}
.grassplayer2 .controls .chk-fullscreen:checked::after {
  content: "close_fullscreen";
}
.grassplayer2 .controls .txt-time {
  color: rgba(255, 255, 255, 0.7);
  padding: 8px;
  font-size: 18px;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.grassplayer2 .controls .volume {
  position: relative;
  height: 48px;
}
.grassplayer2 .controls input[type=range] {
  background: none;
}
.grassplayer2 .controls .range-volume-progress {
  display: block;
  position: absolute;
  left: 16px;
  top: 0;
  width: calc(100% - 32px);
  height: 100%;
  padding: 16px;
  pointer-events: none;
  margin: 0;
}
.grassplayer2 .controls .range-volume-progress > .range-volume-progress-track {
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 80%;
  height: 4px;
  padding: 0;
  background: rgb(255, 255, 255);
  transform: translateY(-50%);
}
.grassplayer2 .controls .range-volume {
  appearance: none;
  padding: 0 16px;
  margin: 0;
  border: none;
  width: 100px;
  height: 48px;
  border-radius: 48px;
  box-shadow: none;
}
.grassplayer2 .controls .range-volume:focus {
  outline: 4px solid rgba(0, 255, 70, 0.5);
}
.grassplayer2 .controls .range-volume ::after {
  display: block;
  content: "";
}
.grassplayer2 .controls .range-volume::-webkit-progress-value {
  background: red;
}
.grassplayer2 .controls .range-volume::-webkit-slider-runnable-track {
  appearance: none;
  padding: 0;
  margin: 0;
  height: 4px;
  border-radius: 4px;
  width: 100%;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.grassplayer2 .controls .range-volume::-moz-range-track {
  appearance: none;
  padding: 0;
  margin: 0;
  height: 4px;
  border-radius: 4px;
  width: 100%;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.grassplayer2 .controls .range-volume::-moz-range-thumb {
  appearance: none;
  padding: 0;
  margin: 0;
  height: 16px;
  width: 16px;
  top: 0;
  border: none;
  background: rgb(255, 255, 255);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  border-radius: 100%;
}
.grassplayer2 .controls .range-volume::-webkit-slider-thumb {
  appearance: none;
  padding: 0;
  margin: 0;
  height: 16px;
  width: 16px;
  top: 0;
  border: none;
  background: rgb(255, 255, 255);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  border-radius: 100%;
  transform: translateY(-6px);
}
.grassplayer2 .seekbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 16px;
  cursor: pointer;
  transition: height 0.1s linear, bottom 0.1s linear;
  transform: translateY(-100%);
  touch-action: none;
  user-select: none;
}
.grassplayer2 .seekbar.disabled {
  pointer-events: none;
}
.grassplayer2 .seekbar:hover, .grassplayer2 .seekbar.seeking {
  height: 16px;
}
.grassplayer2 .seekbar:hover > .seekbar-handle-info, .grassplayer2 .seekbar.seeking > .seekbar-handle-info {
  transform: translate(-50%, -120%);
  opacity: 1;
}
.grassplayer2 .seekbar:hover > .seekbar-preview, .grassplayer2 .seekbar.seeking > .seekbar-preview {
  transform: translate(-50%, 0);
  opacity: 0.9;
}
.grassplayer2 .seekbar:hover > .seekbar-bar, .grassplayer2 .seekbar.seeking > .seekbar-bar {
  height: 8px;
}
.grassplayer2 .seekbar:hover > .seekbar-bar > .seekbar-bar-current, .grassplayer2 .seekbar.seeking > .seekbar-bar > .seekbar-bar-current {
  background: rgba(0, 255, 70, 0.7);
}
.grassplayer2 .seekbar:hover > .seekbar-handle, .grassplayer2 .seekbar.seeking > .seekbar-handle {
  position: absolute;
  width: 16px;
  height: 16px;
  opacity: 0.8;
  transform: translate(-50%, 4px);
}
.grassplayer2 .seekbar .seekbar-handle-info {
  pointer-events: none;
  position: absolute;
  display: flex;
  flex-direction: column;
  padding: 0.25em;
  top: 0;
  transform: translate(-50%, -100%);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.2s, transform 0.1s linear;
}
.grassplayer2 .seekbar .seekbar-preview {
  padding: 0.1em;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 0.25em;
  position: absolute;
  bottom: 2.5em;
  transform: translate(-50%, 20%);
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  max-height: 6em;
  max-width: 11em;
}
.grassplayer2 .seekbar .seekbar-handle {
  pointer-events: none;
  position: absolute;
  width: 4px;
  height: 4px;
  bottom: 0;
  left: 0%;
  transform: translate(-50%, 0px);
  background: rgb(0, 255, 70);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  opacity: 0;
  transition: width 0.1s linear, height 0.1s linear, transform 0.1s linear, opacity 0.1s;
}
.grassplayer2 .seekbar .seekbar-handle.seeking {
  transition: left 0s;
}
.grassplayer2 .seekbar .seekbar-bar {
  position: absolute;
  width: 100%;
  height: 4px;
  bottom: 0;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.1);
  transition: height 0.1s;
}
.grassplayer2 .seekbar .seekbar-bar > div {
  position: absolute;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  pointer-events: none;
  z-index: 0;
}
.grassplayer2 .seekbar .seekbar-bar > .seekbar-bar-current {
  background: rgba(0, 255, 70, 0.4);
  z-index: 1;
}

.mute_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 2;
}
.mute_overlay > span {
  text-align: center;
  flex: 1;
  color: white;
  text-shadow: 0.1em 0.1em 0.2em black;
  pointer-events: none;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
body {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: Arial, Helvetica, sans-serif;
}

main {
  box-sizing: border-box;
  position: absolute;
  padding-top: 32px;
  overflow: hidden;
  width: min(100%, 1000px);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  overflow: auto;
  transition: 0.5s width, 0.5s padding;
}
main > div {
  flex: 1;
  box-sizing: border-box;
  max-width: 1000px;
  padding: 1em;
  width: 100%;
  animation: fadein 1s;
}

nav {
  z-index: 1;
  width: 1000px;
  height: 100%;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
nav > div {
  width: 1000px;
  padding: 0;
  align-self: center;
  background: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  pointer-events: all;
  border-radius: 0;
  opacity: 1;
  transform: translateY(0);
  transition: 0.5s width, 0.5s border-radius, 0.5s transform, 0.5s opacity;
}
nav > div > * {
  white-space: nowrap;
  box-sizing: border-box;
  height: 32px;
  line-height: 32px;
  padding: 0 16px;
  text-decoration: none;
}
nav > * {
  padding: 0 0.5em;
}

.IndexLive > div {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.IndexLive .roomlist {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.IndexLive .roomlist > a {
  color: black;
  text-decoration: none;
  border-radius: 4px;
  padding: 8px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.RoomLive {
  max-width: 100%;
  padding: 0;
}
.RoomLive > .main {
  background-color: black;
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.RoomLive > .main > .player {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.RoomLive .ChatComponent {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.RoomLive .ChatComponent .messages {
  display: flex;
  flex-direction: column-reverse;
  flex: 1;
  overflow-y: scroll;
  padding: 0.5em;
}
.RoomLive .ChatComponent form {
  width: 100%;
}
.RoomLive .ChatComponent form input {
  padding: 8px;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}
.RoomLive .bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.RoomLive .bottom > * {
  flex: 1;
}
.RoomLive .interaction-area {
  background: rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 800px;
  max-width: 100%;
  border-radius: 0 0 8px 8px;
}
.RoomLive .interactions {
  padding: 0.5em;
  display: flex;
  height: 48px;
  align-items: center;
  gap: 0.5em;
  justify-content: space-between;
}
.RoomLive .interactions > * button {
  height: 32px;
}
.RoomLive .playlist-form {
  padding: 0.5em;
  display: flex;
  flex-direction: row;
  gap: 0.5em;
  justify-content: center;
}
.RoomLive .playlist-form > * {
  display: block;
}
.RoomLive .playlist {
  background: rgb(255, 255, 255);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  overflow-y: scroll;
  padding: 0.5em;
  border-radius: 0 0 8px 8px;
}
.RoomLive .playlist > * {
  user-select: none;
  display: flex;
  gap: 0.5em;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.RoomLive .playlist > * span {
  flex: 1;
}
.RoomLive .playlist > *.current {
  background: rgb(220, 220, 220);
}

@keyframes hide {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-100%);
    opacity: 0;
  }
}
nav:has(~ main > .RoomLive) > div {
  width: 250px;
  border-radius: 0 0 8px 8px;
  position: absolute;
  top: 0;
  background: rgba(255, 255, 255, 0.5);
  transform: translateY(-100%);
  opacity: 0;
  animation: hide 0.5s;
}

main:has(.RoomLive) {
  width: 100%;
  padding: 0;
}

h1 {
  margin-top: 0;
}

form {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  align-items: start;
}

button {
  border: none;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  padding: 4px 8px;
  cursor: pointer;
}
button:hover {
  background: rgb(220, 220, 220);
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///black/grasstube/assets/css/grassplayer2.scss%22,%22file:///black/grasstube/assets/css/app.scss%22,%22file:///black/grasstube/assets/css/IndexLive.scss%22,%22file:///black/grasstube/assets/css/RoomLive.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAAA;EACI;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;;AAGJ;EACI;EACA;EACA;;AAIR;EACI;EACA;;AAIA;EACI;IACI;IACA;;EAGJ;IACI;IACA;;;AATZ;EAaI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;;AAEA;EACI;EACA;;AAEA;EACI;EACA;;AAIR;EACI;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;;AAKZ;EACI;;AAGJ;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAIR;EACI;EACA;;AAIR;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;EACA;;AAKZ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAKZ;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAGJ;EACI;;AAIA;EACI;EACA;EACA;EACA;;AAGJ;EACI;;AAKJ;EACI;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;;AAEA;EACI;EACA;EACA;;AAKJ;EACI;EACA;EACA;;AAIR;EACI;;AAEA;EACI;EACA;;AAKZ;EACI;EACA;EACA;;AAGJ;EACI;;AAIA;AAAA;EAEI;EACA;;AAKJ;EACI;;AAIA;AAAA;EAEI;;AAKZ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAEA;EACI;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;AAAA;EAEI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAKZ;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;AAAA;EAEI;EAEA;;AAEA;AAAA;EACI;;AAIR;AAAA;EAEI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;AAAA;EACI;EACA;;AAGJ;AAAA;AAAA;EAEI;EACA;EACA;;AAGJ;AAAA;EACI;EACA;EACA;;AAIR;EACI;EACA;;AAGJ;EACI;EACA;;AAKI;EACI;;AAIR;EACI;;AAIR;EACI;;AAKI;EACI;;AAIR;EACI;;AAMA;EACI;EACA;;AAHR;EAMI;EACA;;AAGJ;EACI;;AAKJ;EACI;;AAGJ;EACI;;AAIR;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAIR;EACI;EAEA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;;AA4BJ;EACI;;AAGJ;EA5BI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAyBJ;EAhCI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AA6BJ;EAzBI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;;AAmBJ;EA7BI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EAqBA;;AAKZ;EACI;EACA;EACA;EACA;EACA;EACA;EACA,YACI;EAEJ;EACA;EACA;;AAEA;EACI;;AAGJ;EAEI;;AAEA;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;;AAEA;EACI;;AAIR;EACI;EACA;EACA;EACA;EAEA;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA,YACI;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA,YACI;EAEJ;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,YACI;;AAKJ;EACI;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;;;AAMhB;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;;;AClzBR;EACI;;;AAGJ;EACI;EACA;;;AAGJ;EACI;IACI;;EAGJ;IACI;;;AAIR;EACI;EACA;EAEA;EACA;EACA;EACA;EACA;EAEA;;;AAMJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,YACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,YACI;;AAKJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAIR;EACI;;;ACvGR;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;EACA;EAEA;EACA;EACA;;;ACjBR;EACI;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAIR;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;;AAEA;EACI;EACA;EACA;EACA;;AAKZ;EAEI;EACA;EACA;;AAEA;EACI;;AAIR;EACI;EAEA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAGI;EACI;;AAKZ;EAEI;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAKR;EACI;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;;AAGA;EACI;;AAGJ;EACI;;;AFNZ;EACI;IACI;IACA;;EAGJ;IACI;IACA;;EAGJ;IACI;IACA;;;AAKJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAIR;EACI;EACA;;;AAGJ;EACI;;;AAGJ;EACI;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI%22,%22file%22:%22app.css%22%7D */
