/* 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/CirclemartechLIVE_Imagens_BG_V2_1P.jpg);
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
}

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

/* Logo Bar */

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

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

#bar img {
  height: 150px;
}

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

/* 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;
}

/* General Styles */

.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;
}

/* Navbar */
#top .navbar {
  background-color: #ffffff;
  padding: 0.5rem 2rem;
}

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

#top .nav-item {
  font-size: 0.9rem;
  font-weight: 500;
  color: red !important;
}

#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;
}

.username {
  width: 200px;
  white-space: pre-line;
  color: #000099 !important;
}

#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: #00cccc;
}

#side-menu .nav-item a {
  color: white;
  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 {
} */

.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;
}

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

.palestrante h3 {
  font-size: 1rem;
  font-weight: 600;
  color: black;
}

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

/* Live */

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

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

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

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

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

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

#live h3 {
  font-size: 1rem;
  font-weight: 600;
  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 #33ffff;
}

/* Duvidas */

#duvidas {
  width: 100%;
  padding: 30px 20px;
  background-color: #00cccc;
  margin-top: 40px;
}

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

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

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

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

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

/* 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/CirclemartechLIVE_Imagens_BG_V2_3.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* Chat */

#chattitle {
  width: 100%;
  height: 60px;
  padding: 20px;
  border-bottom: 2px solid #33ffff;
  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 #33ffff;
}

#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: #00cccc;
  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: #047373;
}

/* #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 {
  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;
}
