body {
  font-family: 'Poppins', sans-serif;
  color: #444444;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  color: #206bfb;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #cca332de;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.form-group .btn-submit {
  background: #cca332de !important;
  color: white;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #cca332de;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
}

#header .logo a {
  color: #5f687b;
}

#header .logo img {
  max-height: 40px;
}

@media (max-width: 991px) {
  #header {
    padding: 12px 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #6a7489;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #cca332de;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 10px 25px;
  margin-left: 30px;
  border-radius: 4px;
  line-height: 1;
  color: #5f687b;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #cdd1d9;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  background: #206bfb;
  color: #fff;
  border-color: #206bfb;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 100;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #16df7e;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #5f687b;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(73, 80, 94, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #5f687b;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #16df7e;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  padding: 10px 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #16df7e;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* RELATÓRIO POSTS */
.header-painel-anuncios {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;

  background: #fff;
  padding-block: 1rem;
  padding-inline: 1rem;

  border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc;
}
.header-painel-anuncios .title {
  display: flex;
  height: 100%;
}

.header-painel-anuncios .title h3 {
  font-size: 1rem;
  padding-top: 0.8rem;
}

.header-painel-anuncios .buttons {
  width: 50%;
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

.header-painel-anuncios button {
  padding: 0.3rem;
  width: 24%;
  background: #fff;
  border: 1px solid #ccc;
}

.painels {
  background: #fff;
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  margin-block: 0.5rem;
  padding-inline: 1rem;
  padding-block: 0.5rem;

  gap: 0.5rem;
}

.painels .painel {
  display: flex;
  justify-content: space-between;
}

.painels .painel.activo .painel-content button:first-child {
  background: var(--bg-primary) !important;
  border-color: #000;
}

.painels .painel .painel-content {
}

.painels .painel .painel-content label {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.painels .painel .painel-content label.activo {
  background: rgb(4, 128, 57);
}

.painels .painel .painel-content label.vencido {
  background: red;
}

.painels .painel .painel-content button:first-child {
  background: #fff;
  font-size: 0.895rem;
  border: 1px solid #ccc;
  padding-block: 0.5rem;
}
.painels .painel .painel-content button:last-child {
  background: none;
  border: 0;
}

.painels .painel button {
  background: none;
  border: 0;
}

.resultados-companha {
}

.resultados-companha .title-content {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;

  padding-top: 1rem;
  padding-bottom: 0.5rem;
}

.resultados-companha .title-content h3 {
  font-size: 1.1rem;
}

.resultados-companha table {
  width: 100%;
  margin-top: 1rem;

  background: white;
  /* border-radius: 0.3rem; */
  /* box-shadow: 0 10px 16px 0 rgb(0 50 90 / 8%); */

  border-collapse: collapse;
}

/* .table__recibo {
  margin-top: 2rem;
  padding-block: 2rem;
  background: white;
  border-radius: 0.3rem;
  box-shadow: 0 10px 16px 0 rgb(0 50 90 / 8%);
} */

/* .table__recibo span {
  font-weight: 500;
  text-transform: uppercase;
} */

.resultados-companha table {
  width: 100%;
  margin-top: 1rem;
  border-collapse: collapse;
}

.resultados-companha table tr th {
  text-align: left;
  font-weight: 400;
  padding-block: 1rem;
}

.resultados-companha span,
.resultados-companha table th,
.resultados-companha table td {
  padding-inline: 2rem;
}

.resultados-companha table tbody tr {
  margin-top: 2rem;
  height: 55px;
  /* background: #88182933; */
  border-bottom: 1px solid #e4ebee;
  cursor: pointer;
  transition: 0.3s all ease-in-out;
}

.resultados-companha table tbody tr:hover {
  background: #f1f1f1;
}

.resultados-companha table tbody tr button {
  background: #fafafa;
  border: 0;
}

@media (max-width: 996px) {
  .header-painel-anuncios {
    flex-direction: column;
  }

  .header-painel-anuncios .buttons {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
  }

  .header-painel-anuncios .buttons button {
    width: 50%;
  }
}
