* {
  margin: 0;
  padding: 0;
  list-style-type: none;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  box-shadow: none;
}
* a, *:hover, *:active {
  text-decoration: none;
  outline: none;
  box-shadow: none;
}

body {
  background-color: #028C50;
  background-image: var(--imagem-fundo);
  background-attachment: fixed;
  background-position: center;
  background-clip: border-box;
  background-size: cover;
  font-family: var(--font-family);
}

.container-sys {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100vh;
}
.container-sys .aside {
  width: 100%;
  height: 100%;
  max-width: 250px;
  background-color: #028C50;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.25);
  border-right: 2px solid #03be6d;
}
.container-sys .aside header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  background-color: #03b266;
  width: 100%;
  padding: 15px 0;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
}
.container-sys .aside header .header-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);
}
.container-sys .aside header .header-menu a {
  background-color: #e6e6e6;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 35px;
  color: #028C50;
  font-weight: bold;
}
.container-sys .aside header .header-menu a:hover {
  background-color: #f6f6f6;
}
.container-sys .aside header .header-menu a:first-child {
  border-radius: 3px 0 0 3px !important;
  border-right: 1px solid #FFFFFF;
}
.container-sys .aside header .header-menu a:last-child {
  border-radius: 0 3px 3px 0 !important;
  border-left: 1px solid #a6a6a6;
}
.container-sys .aside nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  width: 90%;
}
.container-sys .aside nav a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #03b266;
  width: 100%;
  height: 35px;
  color: #FFFFFF;
  font-weight: bold;
  padding: 0 15px;
  border-radius: 3px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);
  transition: all 0.25s ease-in-out;
}
.container-sys .aside nav a:hover {
  background-color: #03cb74;
  height: 50px;
  letter-spacing: 1px;
}
.container-sys .main {
  width: 100%;
  height: 100vh;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
}
.container-sys .main footer {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 35px;
  background-color: #FFFFFF;
  padding: 5px 10px;
  border-radius: 3px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);
  font-size: 0.65rem;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 1px;
}
.container-sys .main footer p {
  margin: 0;
  padding: 0;
}
.container-sys .main .content {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  height: calc(100% - 50px);
}
.container-sys .main .content-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}
.container-sys .main .content-title, .container-sys .main .content-main {
  display: flex;
  align-items: flex-start;
  background-color: #FFFFFF;
  padding: 5px 10px;
  border-radius: 3px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);
}
.container-sys .main .content-title {
  font-weight: bold;
  justify-content: space-between;
  color: #028C50;
}
.container-sys .main .content-main {
  width: 100%;
  height: calc(100% - 100px);
  opacity: 1;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 10px;
  padding: 20px 0 !important;
  overflow-y: auto;
}

.btn-theme, .btn-secondary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-radius: 3px;
}
.btn-theme:hover, .btn-theme:active, .btn-theme:focus, .btn-theme.show, .btn-secondary:hover, .btn-secondary:active, .btn-secondary:focus, .btn-secondary.show {
  color: currentColor;
}
.btn-theme {
  background-color: #028C50;
  color: #FFFFFF !important;
}
.btn-theme:hover, .btn-theme:active, .btn-theme:focus, .btn-theme.show {
  background-color: #015a33;
}
.btn-theme:disabled {
  background-color: #03be6d;
}
.btn-secondary {
  background-color: #015a33;
  color: #FFFFFF !important;
}
.btn-secondary:hover, .btn-secondary:active, .btn-secondary:focus, .btn-secondary.show {
  background-color: #014125;
}

.pagination {
  border: none !important;
}

.page {
  color: #028C50 !important;
}
.page-item {
  color: #028C50 !important;
}
.page-item a {
  color: #028C50 !important;
}

.active .page-link {
  color: #FFFFFF !important;
  background-color: #015a33;
  border-color: #015a33;
}

.text-theme {
  color: #028C50 !important;
}

@keyframes main {
  from {
    height: 0;
    opacity: 0;
  }
  to {
    height: 100%;
    opacity: 1;
  }
}

/*# sourceMappingURL=estilo.norte.dev.br.css.map */
