*, ::after, ::before {
  box-sizing: border-box;
  padding: 0;
  margin: 0; }

html {
  height: -webkit-fill-available; }

body {
  position: fixed;
  top: 0;
  left: 0;
  max-height: 100vh;
  max-width: 100vw;
  min-width: 100vw;
  overflow: hidden;
  height: -webkit-fill-available;
  width: -webkit-fill-available;
  background: black;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 100%;
  padding: 4px;
  margin: 0;
  align-items: center;
  align-content: center;
  /* justify-content: space-between; */ }
  body.chat-off #doska {
    display: none; }
  body.chat-off #chatolab {
    transform: translate(40%, -50%) ROTATE(-90deg) scale(0.7);
    right: 8px;
    top: 50%; }
  body.dialogo {
    pointer-events: none; }
    body.dialogo #bdrop {
      display: block; }

.msg-maintain {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  color: #fff;
  text-shadow: 0 0 7px rgba(0, 0, 0, 0.5), 0 0 27px rgba(0, 0, 0, 0.8);
  z-index: 3; }

div.stream {
  text-align: center;
  margin: auto auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 4px 0 8px; }
  div.stream video {
    min-width: 200px;
    max-width: 100%;
    max-height: 100%;
    position: relative !important;
    top: unset !important;
    left: unset !important;
    bottom: unset;
    right: unset; }
  div.stream.portrait {
    width: 100% !important;
    height: fit-content !important; }
    div.stream.portrait video {
      width: 100% !important;
      height: auto !important; }
  @media (orientation: portrait) {
    div.stream {
      width: 100% !important;
      height: fit-content !important; }
      div.stream video {
        width: 100% !important;
        height: auto !important; } }
  div.stream.lanscape {
    width: fit-content !important;
    height: 100% !important; }
    div.stream.lanscape video {
      width: auto !important;
      height: 100% !important; }
  @media (orientation: landscape) {
    div.stream {
      width: fit-content !important;
      height: 100% !important; }
      div.stream video {
        width: auto !important;
        height: 100% !important; } }
  div.stream button.vjs-big-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 4px 8px; }
  div.stream.vjs-playing button.vjs-big-play-button {
    display: none; }

@keyframes color_rotate {
  from {
    filter: hue-rotate(0deg); }
  to {
    filter: hue-rotate(360deg); } }
#psybg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  margin: 0;
  opacity: 0.666;
  overflow-x: hidden;
  display: grid;
  align-items: center;
  pointer-events: none;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-fill-mode: both;
  animation-name: color_rotate;
  grid-template-columns: 100%;
  grid-template-rows: 100%;
  align-items: center;
  justify-content: stretch;
  align-content: center;
  justify-items: stretch; }
  #psybg video {
    width: 100%;
    height: 100%;
    object-fit: cover; }

div.buto {
  text-align: center;
  margin-top: 14px;
  border-top: 1px solid #fff;
  padding-top: 8px; }

div.lab {
  margin-top: 4px;
  margin-bottom: 14px;
  text-align: center;
  color: #fff; }

label {
  display: grid;
  grid-template-columns: 90px auto;
  grid-column-gap: 6px;
  /* height: 24px; */
  align-items: center; }
  label span {
    text-align: right;
    color: #fff;
    display: inline-block; }

button {
  height: 24px;
  width: 100px;
  margin: 0 auto; }

input {
  width: 100%;
  padding: 5px 7px;
  margin-right: 4px;
  color: #000; }

#doska {
  z-index: 3;
  /*position: fixed;*/
  /*right: 0;*/
  /*top: 0;*/
  /*bottom: 0;*/
  /*width: fit-content;*/
  /*max-width: 320px;*/
  /*min-width: 200px;*/
  background: rgba(0, 0, 0, 0.5);
  max-width: 300px;
  min-width: 300px;
  width: 100%;
  height: 100%;
  /*height: 100vh;*/
  padding: 8px;
  margin: 0;
  display: grid;
  grid-template-columns: 100%;
  overflow: hidden;
  grid-template-areas: "chato" "posto";
  grid-template-rows: auto max-content;
  font-family: sans-serif;
  font-size: 14px;
  color: #fff;
  position: absolute;
  right: 0;
  top: 0; }
  #doska.loged #nologino {
    display: none; }
  #doska.loged #posto {
    display: grid; }
  #doska #lento {
    height: 100%;
    width: 100%;
    display: block;
    border: 1px solid #fff;
    padding: 8px 0;
    grid-area: chato;
    position: relative;
    overflow: scroll;
    /*grid-template-rows: min-content;*/
    /*align-items: start;*/
    /*grid-row-gap: 6px;    */ }
    #doska #lento > div {
      padding: 3px 3px;
      margin-bottom: 10px; }
      #doska #lento > div nick {
        display: grid;
        grid-template-columns: auto max-content;
        color: moccasin;
        margin-bottom: 2px;
        text-align: right; }
        #doska #lento > div nick span:first-of-type {
          align-self: start;
          text-align: left;
          display: inline-block; }
        #doska #lento > div nick span:last-of-type {
          color: #5dcced;
          font-size: 11px; }
      #doska #lento > div msg {
        display: block;
        text-align: left;
        padding: 3px 5px 3px 12px;
        overflow-wrap: anywhere; }
  #doska #posto {
    height: 50px;
    width: 100%;
    grid-area: posto;
    grid-template-columns: calc(100% - 34px) max-content;
    align-items: center;
    /*background: green   ; */
    padding: 4px 0;
    position: relative;
    display: none; }
    #doska #posto button {
      height: 32px;
      width: 32px;
      padding: 5px 8px; }
  #doska #nologino {
    grid-area: posto;
    background: darkslategray;
    border: 1px solid #fff;
    padding-bottom: 8px; }
    #doska #nologino .buto {
      border-top: none;
      padding-top: 0; }

#reggo {
  pointer-events: all;
  /*height: 50px;*/
  width: auto;
  height: auto;
  padding: 16px 28px;
  background: darkslategray;
  display: grid;
  grid-template-columns: 100%;
  grid-row-gap: 4px;
  align-items: center;
  /*background: green   ; */
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  display: none; }

#bdrop {
  z-index: 3;
  display: none;
  pointer-events: all;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

#logino {
  background: darkslategray;
  pointer-events: all;
  /*height: 50px;*/
  width: auto;
  height: auto;
  display: grid;
  padding: 16px 28px;
  grid-template-columns: 100%;
  grid-row-gap: 4px;
  align-items: center;
  /*background: green   ; */
  /*padding: 4px 0;*/
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  display: none; }
  #logino input {
    height: 32px;
    width: 100%;
    padding: 5px 8px;
    margin-right: 4px; }

#wazzap {
  background: darkslategray;
  color: #fff;
  pointer-events: all;
  /*height: 50px;*/
  width: auto;
  height: auto;
  padding: 16px 28px;
  position: fixed;
  left: 118px;
  top: 32px;
  z-index: 5;
  display: none; }

#chatolab {
  color: #fff;
  font-style: oblique;
  font-family: sans-serif;
  text-transform: uppercase;
  align-self: start;
  padding: 4px 8px;
  border: 1px solid #fff;
  background: rgba(200, 200, 200, 0.5);
  border-radius: 5px;
  transform: rotate(-90deg) translate(-20px, 16px) scale(0.7);
  cursor: pointer;
  position: absolute;
  right: 273px;
  top: 33px;
  text-align: center;
  z-index: 3; }

@keyframes glow {
  to {
    text-shadow: 0 0 4px #fff, 0 0 8px #fff, 0 0 12px #d25ed4, 0 0 16px #d25ed4, 0 0 20px #d25ed4, 0 0 24px #d25ed4, 0 0 28px #d25ed4; } }
#uc {
  position: fixed;
  left: 8px;
  top: 8px;
  z-index: 3;
  font-size: 16px;
  color: #fff; }
  #uc div.ucv {
    display: grid;
    grid-template-columns: 28px max-content;
    align-items: center;
    justify-content: center; }
  #uc img {
    width: 28px;
    height: auto; }
  #uc span {
    display: inline-block;
    padding-left: 6px;
    font-variant: none; }
  #uc > div {
    text-transform: uppercase;
    font-variant: all-small-caps;
    padding-bottom: 3px; }
  #uc .smode {
    color: #fff8ab;
    text-shadow: 0 0 3px rgba(202, 228, 225, 0.98), 0 0 15px rgba(202, 228, 225, 0.42);
    animation-duration: 18s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-fill-mode: both;
    animation-name: color_rotate; }
  #uc .wnext {
    cursor: pointer;
    color: #f6c5ce;
    text-shadow: 0 0 3px rgba(202, 228, 225, 0.98), 0 0 15px rgba(202, 228, 225, 0.42);
    animation-duration: 13s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-fill-mode: both;
    animation-name: color_rotate; }

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