body {
  display: flex;
  background: #09090B;
  flex-direction: column;
  font-family: "Montserrat", sans-serif;
  height: 100dvh;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden !important;
  transform-origin: center center;
  /* Trava o container no tamanho fixo de Full HD */
  flex-shrink: 0;
  font-size-adjust: 50%;
}

* {
  /* remove a rolagem quando o teclado
  do mobile estiver aberto */
  overscroll-behavior: none;
  box-sizing: border-box !important;
}

/* Bloqueia a selecao em toda a pagina */
html,
body {
  margin: 0 !important;
  padding: 0 !important;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  /* suaviza no mobile */
  -webkit-overflow-scrolling: touch;
}

.container {
  display: inline-flex;
  /*  flex-wrap: wrap !important; */
  align-items: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
  position: fixed !important;
  left: 0 !important;
  bottom: 0 !important;
  box-sizing: border-box;
  overflow: hidden !important;
  transition: none !important;
  background-color: #09090B;
}










#h2 {
  color: white;
}


.video-container {
  position: relative !important;
  width: 100% !important;
  padding-bottom: 56.25% !important;
  height: 0 !important;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-shrink: 0 !important;
  z-index: 9999;
}

.video-container #direct-player {
  display: flex !important;
  flex-shrink: 0 !important;
  position: absolute !important;
  top: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  flex: 3;
/*   transform: translateZ(0) !important;
  will-change: transform !important; */
}

.video-js .vjs-tech {
  background: #000000 !important;
}






#ytUrl {
  width: 100% !important;
}

input {
  color: rgba(255, 255, 255, 0.4);
}



#btn-forward-15,
#btn-back-15 {
  background-color: transparent;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35%;
  height: 50%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  gap: 7px;
  color: rgba(255, 255, 255, 0.7);
  border: none;
}

#btn-back-15 {
  left: 0;
}










.section-menu {
  display: none;
  width: 100%;
  height: 100%;
}

.bar-menu {
  width: 100%;
  height: 50px;
  background-color: #0082FF;
}




.container-section-chat {
  position: absolute;
  top: 0;
}





.section-1,
.section-2,
.section-3,
.section-4,
.section-inicio,
.section-remote,
.section-profile {
  display: none !important;
  position: relative;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 999;
}


.section-1.active,
.section-2.active,
.section-3.active,
.section-4.active,
.section-inicio.active,
.section-remote.active,
.section-profile.active {
  display: inline-flex !important;
  opacity: 1;
  animation: opacityShowGlobal 0.5s ease-in-out;
}




.box-notificacao-info {
  background-color: red;
  width: 300px;
  height: 200px;
  border-radius: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  justify-content: center;
  align-items: center;
}


@keyframes opacityShowGlobal {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes opacityHiddenGlobal {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}


#url {
  color: black;
}










#container-login-google {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999999;
}