/* Root */

body,
html {
  margin: 0;
  padding: 0;
  font-family: 'Poppins';
}

body {
  overflow-x: hidden;
}

/* Wrapper section */

#wrapper {
  width: 100%;
  min-height: 100vh;
  background-image: url(../../assets/img/backgroundIndex.jpg);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  #wrapper {
    width: 100%;
    min-height: 100vh;
    background-image: url(../../assets/img/backgroundIndex.jpg);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
  }
}

/* Logo Bar */

#bar {
  width: 100%;
}

#bar .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 20px;
}

#bar img {
  height: 120px;
  margin: 20px;
}

@media (min-width: 768px) {
  #bar {
    height: 40vh;
  }

  #bar .container {
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }

  #bar img {
    height: 185px;
    margin: 10px;
  }
}

/* Login */

#login {
  width: 100%;
  height: auto;
  padding: 30px 20px;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  #login {
    height: 50vh;
    padding: 0;
  }
}

#login .container {
  max-width: 1024px;
  height: auto;
}

#login > .container > .row > .col-12 {
  padding: 0;
}

@media (min-width: 768px) {
  #login > .container > .row > .col-12 {
    padding: 0 40px;
  }
}

/* Footer */

#footer {
  width: 100%;
  height: 100px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  #footer {
    height: 10vh;
    padding: 0;
  }
}

#footer p {
  font-size: 0.7rem;
  text-align: center;
  color: white;
  margin: 0;
}

#footer a {
  text-decoration: none;
  color: white;
  transition: all 0.3s ease-out;
}

#footer a:hover {
  text-decoration: underline;
  color: #00cccc;
}

/* General Styles */

.black {
  color: #98fafe;
  background-color: #000;
}

.black:hover {
  color: #000;
  background-color: #98fafe;
}

.pink {
  color: #f6e270 !important;
  background-color: #ff387b;
}

.pink:hover {
  color: #ff387b !important;
  background-color: #f6e270 !important;
}

.red {
  color: white !important;
  background-color: red;
}

.red:hover {
  background-color: rgb(135, 5, 5);
}

.cyan {
  color: white !important;
  background-color: #00cccc;
}

.cyan:hover {
  background-color: #047373;
}

.lightgreen {
  color: black;
  background-color: #33ff00;
}

.lightgreen:hover {
  background-color: #4d953b;
}

.neongreen {
  color: black;
  background-color: #33ff99;
}

.neongreen:hover {
  background-color: #4abb82;
}

.neonpink {
  background-color: #ff0099;
}

.neonpink:hover {
  background-color: #97065d;
}

.purple {
  background-color: #9900ff !important;
}

.letterblack {
  color: black !important;
}

.title {
  width: 100%;
  font-size: 2rem;
  line-height: 2.25rem;
  font-weight: 600;
  text-align: center;
}

.subtitle {
  text-transform: uppercase;
  font-size: 1.7rem;
  text-align: center;
  margin-bottom: 18px;
}

.subtitle2 {
  text-transform: uppercase;
  font-size: 1.3rem;
  text-align: center;
}

.subtitle3 {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 18px;
}

#login p,
#login a,
.modal p {
  font-size: 0.85rem;
  text-align: center;
  color: #444444;
}

#login a,
.modal a {
  color: grey;
  text-decoration: underline;
  transition: all 0.3s ease-out;
}

#login a:hover,
.modal a:hover {
  color: #00ff66;
}

/* Form */

.formLabel {
  font-size: 0.9rem;
  font-style: italic;
  color: #4f4f4f;
  margin-bottom: 0;
}

.formLabel i {
  color: #7e7e7e;
  margin-left: 5px;
  transition: all 0.3s ease-out;
}

.formLabel i:hover {
  color: purple;
  cursor: pointer;
}

/* Tooltip */

.tooltip-inner {
  font-size: 0.7rem !important;
}

.checkLabel {
  font-size: 0.8rem;
}

.formObs {
  display: block;
  font-size: 0.8rem;
  color: grey;
  margin-top: 6px !important;
  margin-bottom: 12px !important;
}

.obs {
  text-decoration: underline;
  cursor: pointer;
}

.obsText {
  width: 100%;
  display: none;
}

.obsText p {
  font-size: 0.8rem;
  color: grey;
  text-align: left;
  padding: 0px 20px;
}

input[type='text'],
input[type='password'],
input[type='file'],
select,
option {
  font-size: 0.8rem !important;
}

/* input[type='text'],
input[type='password'],
select,
option {
} */

.formButton {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  padding: 5px 35px;
  border-radius: 25px;
  border: 0;
  text-decoration: none !important;
  transition: all 0.3s ease-out;
}

.formButton:focus {
  outline-style: none;
  box-shadow: none;
  border-color: transparent;
}

/* Copyright */
.copyright p {
  font-size: 0.7rem;
  text-align: center;
}

/* ====================================== */

/* Página Main */

/* Navbar */
#top .navbar {
  min-height: 180px;
  padding: 16px 24px;
}

#top .navbar-brand img {
  height: 100px;
}

@media (min-width: 768px) {
  #top .navbar-brand img {
    height: 150px;
  }
}

#top .nav-item {
  font-size: 0.9rem;
  font-weight: 500;
  color: #ff387b !important;
  text-transform: uppercase;
}

#top .nav-item a {
  color: red;
  transition: all 0.3s ease-out;
}

#top .nav-item a:hover {
  color: #00cccc !important;
}

#top .nav-item span {
  font-size: 0.8rem;
  color: grey;
}

@media (min-width: 768px) {
  #top .navbar-collapse {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: flex-end;
    align-items: flex-end;
  }
}

#top .navbar-toggler {
  border-color: white;
}

#top .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

#menu-superior {
  padding: 10px;
  background-color: #000;
}

#menu-superior hr {
  margin: 0;
  padding: 0;
  background-color: #555555;
}

#menu-superior .nav-item {
  font-size: 0.7rem;
  font-style: italic;
  font-weight: 500;
  color: #b995dd !important;
}

#menu-superior .nav-item a {
  color: #b995dd;
  text-decoration: underline;
  transition: all 0.3s ease-out;
}

#menu-superior .nav-item a:hover {
  color: #03f9b8 !important;
}

.username {
  width: 100%;
  display: block;
  white-space: pre-line;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: left;
  color: #fff !important;
  padding-bottom: 8px;
}

@media (min-width: 768px) {
  .username {
    text-align: center;
  }
}

#top .dropdown a {
  color: #000099;
  /*border-bottom: 2px solid transparent;*/
}

#top .dropdown a:hover {
  color: #2e2eeb !important;
  text-decoration: none;
  /*border-bottom: 2px solid transparent;*/
}

#top .dropdown-menu a {
  color: #7e7e7e;
  font-size: 0.8rem;
}

#top .dropdown-menu a:hover {
  color: white !important;
  background-color: #000099;
}

/* Side-menu */

#side-menu {
  background-color: rgba(0, 0, 0, 0.8);
}

#side-menu .nav-item a {
  color: #b995dd;
  font-size: 0.8rem;
  text-align: left;
  transition: all 0.3s ease-out;
}

#side-menu .nav-item a:hover {
  color: #300130;
  transition: all 0.3s ease-out;
}

#side-menu .nav-item {
  color: black;
}

#side-menu .dropdown {
  margin-top: 12px;
}

#side-menu .dropdown-menu a {
  font-size: 0.8rem;
  color: #7e7e7e;
}

#side-menu .dropdown-menu a:hover {
  color: white !important;
  background-color: #087988;
}

#side-menu .close {
  color: white !important;
}

/* Carousel */

/* #slider {
} */

#slider .carousel-inner,
#slider .carousel-item {
  width: 100%;
  height: 300px;
}

#slider .carousel-item {
  padding: 40px 70px;
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.2) 90%
    ),
    url(../../assets/img/slider_back.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  #slider .carousel-item {
    padding: 40px 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

#slider .carousel-item h1 {
  font-size: 1.7rem;
  line-height: 2rem;
  color: #add8e6;
  max-width: 60vw;
}

@media (min-width: 768px) {
  #slider .carousel-item h1 {
    font-size: 2rem;
    line-height: 2.25rem;
  }
}

#slider .carousel-item p {
  font-size: 0.8rem;
  line-height: 1rem;
  color: #e0dede;
  max-width: 50vw;
}

@media (min-width: 768px) {
  #slider .carousel-item p {
    font-size: 0.85rem;
    line-height: 1.25rem;
    max-width: 40vw;
  }
}

/* Agenda */

#agenda {
  width: 100%;
  background-color: #ccffff;
  padding: 40px 20px;
  margin-top: 40px;
}

#agenda .container {
  max-width: 1024px;
}

#agenda h1 {
  font-size: 2rem;
  font-weight: 600;
  color: #0000cc;
  text-transform: uppercase;
}

#agenda p {
  text-align: center;
  font-size: 0.9rem;
  color: grey;
}

.horario {
  min-width: 250px;
  height: auto;
  /*padding: 8px 20px;*/
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  color: black;
}

.divisor {
  width: 100%;
  height: 1px;
  top: -20px;
  background: black;
  margin-bottom: 32px;
}

/* Agenda > Evento */

.evento > div > img {
  width: 100%;
  height: auto;
}

.evento h3 {
  color: black;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0;
}

.schedule {
  font-size: 1rem;
  font-weight: 400;
  color: black;
  margin-left: 10px;
}

.schedule i:nth-child(2) {
  margin-left: 10px;
}

.evento p {
  font-size: 0.8rem !important;
  text-align: left !important;
  color: black !important;
}

/* Agenda > Evento > Palestrante */

.palestrante {
  display: flex;
  flex-direction: row;
  margin-top: 12px !important;
}

.palestrante img {
  width: 69px;
  height: 70px;
  margin-right: 10px;
  filter: grayscale(1);
}

.palestrante h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #33ffff;
  margin-bottom: 4px;
}

.palestrante h5 {
  font-size: 0.7rem;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 2px;
  color: #dd517c;
}

.palestrante p {
  font-size: 0.75rem !important;
  text-align: left !important;
  color: white !important;
}

/* Live */

#live {
  width: 100%;
  min-height: 300px;
  padding: 40px 20px;
  background-color: #191919;
  margin-top: 40px;
}

#live .container {
  max-width: 1024px;
}

#live h1 {
  font-size: 2rem;
  font-weight: 600;
  font-style: italic;
  text-transform: uppercase;
  color: #98fafe;
  margin-bottom: 24px;
}

#live p {
  font-size: 0.9rem;
  color: white;
}

#live .today {
  margin-left: 8px;
  color: #a7a7a7;
}

.liveembedded {
  width: 100%;
  height: auto;
}

.liveembedded iframe {
  width: 100%;
  height: auto;
  min-height: 315px;
}

.record iframe {
  width: 100%;
  height: auto;
  min-height: 315px;
}

@media (min-width: 768px) {
  .record iframe {
    min-height: 500px;
  }
}

#live h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

#live h5 {
  font-size: 0.7rem;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 2px;
}

#live .palestra {
  font-size: 0.75rem;
}

#chat {
  width: 100%;
  height: auto;
  min-height: 400px;
  background-color: white;
  /* padding: 16px; */
  border: 10px solid #ff387b;
}

#qrcode {
  width: 100%;
  height: auto;
  background-color: white;
  margin-top: 12px;
  padding: 4px;
  border: 10px solid #33ffff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

#qrcode iframe {
  width: 120px;
  height: 120px;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: hidden;
}
#qrcode iframe img {
  width: auto;
  height: 120px;
  padding: 0;
  overflow-x: hidden;
  overflow-y: hidden;
  /* padding-right: 8px; */
}

#qrcode span {
  font-size: 1.1rem;
  line-height: 1.2rem;
  font-weight: 600;
  color: #000099;
}

/* Galeria */
#galeria {
  width: 100%;
  padding: 30px 20px;
  background-color: #33ffff;
  margin-top: 40px;
}

#galeria .container {
  max-width: 1024px;
}

#galeria h1 {
  font-size: 2rem;
  font-weight: 600;
  color: #5a6bff;
  text-transform: uppercase;
}

#galeria p {
  font-size: 0.9rem;
}

.cardGaleria {
  width: 100%;
  height: auto;
}

.cardGaleriaTitle {
  display: block;
  width: 100%;
  min-height: 0px;
}

@media (min-width: 768px) {
  .cardGaleriaTitle {
    min-height: 60px;
  }
}

.cardGaleria h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  padding: 0;
  margin: 0;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .cardGaleria h3 {
    margin: 0;
  }
}

.cardGaleria .schedule {
  font-size: 0.9rem;
  font-weight: 400;
  margin: 0;
  padding-bottom: 16px;
  margin-top: 6px;
}

.cardGaleria .livegaleria {
  width: 100%;
  height: auto;
  margin-top: 8px;
  margin-bottom: 8px;
}

.cardGaleria .livegaleria iframe {
  width: 100%;
  height: auto;
  min-height: 250px;
}

@media (min-width: 768px) {
  .cardGaleria .livegaleria iframe {
    min-height: 180px;
  }
}

.cardGaleria p {
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.1rem;
}

/* Material de Apoio */
#materiaisdeapoio {
  width: 100%;
  padding: 30px 20px;
  background-color: #0033cc;
  margin-top: 40px;
}

#materiaisdeapoio .container {
  max-width: 1024px;
}

#materiaisdeapoio .row {
  margin-top: 48px;
}

#materiaisdeapoio h1 {
  font-size: 2rem;
  font-weight: 600;
  color: #ffff33;
  text-align: center;
}

#materiaisdeapoio a:link {
  text-decoration: none;
}

#materiaisdeapoio > .container > p {
  font-size: 0.9rem;
  text-align: center;
  color: white;
}

.cardMaterial {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  padding: 0 8px;
  margin-top: 18px;
  transition: all 0.3s ease-out;
  color: white;
  text-decoration: none;
}

@media (min-width: 768px) {
  .cardMaterial {
    margin-top: 0;
  }
}

.cardMaterial img {
  width: auto;
  height: 60px;
  padding-right: 16px;
}

.cardMaterial h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  padding: 0;
}

.cardMaterial p {
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.2rem;
  text-align: left !important;
  margin-top: 4px;
}

a .cardMaterial:hover {
  color: #ff00ff;
}

/* Realização */
#realizacao {
  width: 100%;
  padding: 40px 20px;
  background-color: #0e0e0e;
  margin-top: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#realizacao p {
  color: white;
  text-align: center;
  font-size: 0.7rem;
}

/* Apoio */
#apoio {
  width: 100%;
  padding: 40px 20px;
  background-color: #161616;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#apoio .container {
  max-width: 1024px;
}

#apoio p {
  color: white;
  text-align: center;
  font-size: 0.7rem;
}

#apoio .logosapoio {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#apoio .logosapoio img {
  margin: 20px;
}

@media (min-width: 768px) {
  #apoio .logosapoio {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  #apoio .logosapoio img {
    margin: 10px;
  }
}

/* Duvidas */
#duvidas {
  width: 100%;
  padding: 30px 20px;
  background-color: black;
  /* margin-top: 40px; */
}

#duvidas .container {
  max-width: 1024px;
}

#duvidas h1 {
  font-size: 2rem;
  font-weight: 400;
  color: white;
  text-align: left;
}

#duvidas p {
  font-size: 0.75rem;
  text-align: left;
  color: white;
}

#duvidas a {
  /* display: block; */
  font-size: 0.75rem;
  text-align: center;
  color: white;
  text-decoration: underline;
  transition: all 0.3s ease-out;
}

#duvidas a:hover {
  color: #33ffff;
}

#duvidas .alterarDados {
  display: block;
  width: 100%;
  text-align: right;
}

#duvidas .iconInstagram {
  display: block;
  margin-bottom: 8px;
  text-align: right;
}

@media (min-width: 768px) {
  #duvidas .alterarDados {
    text-align: right;
  }
  #duvidas .iconInstagram {
    text-align: right;
  }
}

/* Formulário de Pesquisa */

#pesquisa {
  padding: 40px 20px;
  background-color: white;
  margin-top: 40px;
}

#pesquisa .container {
  max-width: 1024px;
}

#pesquisa h1 {
  font-size: 2rem;
  text-align: left;
  color: #6600cc;
}

#pesquisa .perguntas {
  max-width: 800px;
  margin: 0 auto;
}

#pesquisa h3 {
  text-align: left;
  font-size: 1rem;
  margin-top: 18px;
  color: black;
  font-weight: 600;
}

#pesquisa h3:nth-child(1) {
  margin-top: 0;
}

#pesquisa p {
  font-size: 1rem;
  text-align: left !important;
  color: grey;
}

#pesquisa label {
  font-size: 0.9rem;
  color: grey;
}

/* Resultados */

#resultados {
  padding: 40px 20px;
  background-color: white;
  margin-top: 40px;
}

#resultados .container {
  max-width: 1024px;
}

#resultados h1 {
  font-size: 2rem;
  text-transform: uppercase;
  color: #00cccc;
}

#resultados h3 {
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: left;
  margin-top: 18px;
  color: black;
}

#resultados h5 {
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  margin-top: 8px;
  margin-bottom: 24px;
  color: grey;
}

#resultados p {
  font-size: 1rem;
  text-align: left !important;
  color: grey;
}

.boxResultado {
  width: 100%;
  height: auto;
  background-color: #ffffff;
  padding: 20px 15px;
  margin: 0;
  margin-bottom: 20px;
  border-radius: 15px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}

.boxResultado h5 {
  font-size: 1rem !important;
  font-weight: 600;
  margin-bottom: 15px;
}

.boxResultado p {
  font-size: 1rem !important;
  font-weight: 400;
  margin-bottom: 15px;
}

.boxSubResultado {
  padding: 10px;
  margin: 0;
}

.boxSubResultado p {
  font-size: 13px !important;
  font-style: italic;
  text-align: center;
  margin-bottom: 10px;
}

/* Table Usuários */

.participantedit,
.participantdelete {
  cursor: pointer;
  transition: all 0.3s ease-out;
}

.participantedit:hover,
.participantdelete:hover {
  color: purple;
}

/* Tabelas */

.tabela {
  margin-top: 15px;
  font-size: 0.8rem;
  cursor: pointer;
}

.tabela i {
  margin: 0 5px;
}

.tabela .pagination {
  display: inline-flex;
}

.tabela .page-link {
  font-size: 12px;
}

.tabela .fa-pencil-alt,
.tabela .fa-trash-alt,
.tabela .fa-sort {
  cursor: pointer;
}

.tabela label {
  text-transform: uppercase;
}

.tabela input {
  padding: 5px;
  border: 1px solid #6f7a85 !important;
}

.dataTables_wrapper .dataTables_length select {
  border: 1px solid #aaa;
  border-radius: 4px;
  background: #eeeeee;
}

.dataTables_filter input {
  border: 1px solid #aaa;
  border-radius: 4px;
  background: #eeeeee;
}

#myTable {
  font-size: 0.9rem;
}

#bigBackground {
  width: 100%;
  height: auto;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  background: url(../../assets/img/backgroundMain.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

/* Chat */

#chattitle {
  width: 100%;
  height: 60px;
  padding: 20px;
  border-bottom: 2px solid #a7a7a7;
  margin-bottom: 5px;
  font-size: 1rem;
  font-weight: 600;
}

#messages {
  height: 400px;
  overflow-x: hidden;
  padding: 10px;
  background: white;
}

#chat form {
  height: 80px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-content: center;
  background: white;
  padding: 0 20px;
  border-top: 2px solid #a7a7a7;
}

#chat input {
  font-size: 0.8rem;
  padding: 10px 5px;
  appearance: none;
  -webkit-appearance: none;
  border: 0;
}

#chat input[type='text'] {
  width: 100% !important;
}

#chat input:focus {
  outline: none;
  box-shadow: none;
}

#chat input[type='submit'] {
  font-size: 1rem;
  background-color: #ff387b;
  font-weight: 500;
  border-radius: 12px;
  padding: 10px 25px;
  border: none;
  color: white;
  transition: all 0.3s ease-out;
  cursor: pointer;
  margin-left: 10px;
}
#chat input[type='submit']:hover {
  background-color: #98fafe;
}

/* #message {
  flex: 2;
} */

.msg {
  background-color: white;
  font-size: 0.8rem;
  color: black;
  padding: 5px 15px;
  margin-bottom: 8px;
  width: 100%;
  font-weight: 400;
}

.msg p {
  color: #000 !important;
  margin: 0;
  font-weight: 600;
}

.moderador {
  text-align: right;
}

.moderador p {
  color: #9900ff !important;
}

.msg span {
  font-size: 0.7rem;
  font-weight: 400;
  margin-left: 15px;
  color: grey !important;
}
