@import url("root.css?v=1222");
@import url("base.css?v=1222");
@import url("login.css?v=1222");
@import url("painel.css?v=1222");

/* INTRO VIDEO */

.intro-video-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-video-overlay.escondido {
  display: none !important;
}

.intro-video-player {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.btn-fechar-intro-video {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  z-index: 100000;
  border: none;
  border-radius: 1.8rem;
  padding: 1.8rem 3rem;

  background: var(--cor-primaria);
  color: #fff;

  font-size: 2rem;
  font-weight: 900;

  box-shadow: 0 1rem 3rem rgba(0,0,0,0.45);
}

.botao-atualizar-painel {
  width: 100%;
  border: 0.1rem solid rgba(214, 51, 132, 0.18);
  background: #ffffff;
  color: var(--cor-primaria);
  border-radius: 1.4rem;
  padding: 1.2rem 1.4rem;
  margin: -1rem 0 2rem 0;
  font-size: 1.5rem;
  font-weight: 900;
  box-shadow: 0 0.8rem 2rem rgba(214, 51, 132, 0.08);
}

.botao-atualizar-painel:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}