@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;500;900&display=swap");
body {
  margin: 0px;
  padding: 0px;
  font-family: 'Montserrat', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  text-decoration: none;
}

a {
  text-decoration: none !important;
}

#loading {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#loading .lds-facebook {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

#loading .lds-facebook div {
  display: inline-block;
  position: absolute;
  left: 8px;
  width: 16px;
  background: #fff;
  -webkit-animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
          animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

#loading .lds-facebook div:nth-child(1) {
  left: 8px;
  -webkit-animation-delay: -0.24s;
          animation-delay: -0.24s;
}

#loading .lds-facebook div:nth-child(2) {
  left: 32px;
  -webkit-animation-delay: -0.12s;
          animation-delay: -0.12s;
}

#loading .lds-facebook div:nth-child(3) {
  left: 56px;
  -webkit-animation-delay: 0;
          animation-delay: 0;
}

@-webkit-keyframes lds-facebook {
  0% {
    top: 8px;
    height: 64px;
  }
  50%,
  100% {
    top: 24px;
    height: 32px;
  }
}

@keyframes lds-facebook {
  0% {
    top: 8px;
    height: 64px;
  }
  50%,
  100% {
    top: 24px;
    height: 32px;
  }
}

.login-form {
  background: #fff;
  width: 500px;
  margin: 65px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
      flex-direction: column;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 25px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 25px rgba(0, 0, 0, 0.2);
}

.login-form h1 {
  padding: 35px 35px 0 35px;
  font-weight: 300;
}

.login-form .content {
  padding: 35px;
  text-align: center;
}

.login-form .input-field {
  padding: 12px 5px;
}

.login-form .input-field input {
  font-size: 16px;
  display: block;
  font-family: 'Rubik', sans-serif;
  width: 100%;
  padding: 10px 1px;
  border: 0;
  border-bottom: 1px solid #747474;
  outline: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.login-form .input-field input::-webkit-input-placeholder {
  text-transform: uppercase;
}

.login-form .input-field input:-ms-input-placeholder {
  text-transform: uppercase;
}

.login-form .input-field input::-ms-input-placeholder {
  text-transform: uppercase;
}

.login-form .input-field input::placeholder {
  text-transform: uppercase;
}

.login-form .input-field input:focus {
  border-color: #222;
}

.login-form a.link {
  text-decoration: none;
  color: #747474;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 20px;
}

.login-form .action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
      flex-direction: row;
}

.login-form .action button {
  width: 100%;
  border: none;
  padding: 18px;
  font-family: 'Rubik', sans-serif;
  cursor: pointer;
  text-transform: uppercase;
  background: #e8e9ec;
  color: #777;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 0;
  letter-spacing: 0.2px;
  outline: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.login-form .action button:hover {
  background: #d8d8d8;
}

.login-form .action button:nth-child(2) {
  background: #2d3b55;
  color: #fff;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 4px;
}

.login-form .action button:nth-child(2):hover {
  background: #3c4d6d;
}

.panel-default {
  margin-top: 10px;
}

.geral {
  width: 100vw;
  height: 100vh;
  display: -ms-grid;
  display: grid;
      grid-template-areas: 'sidenav content';
}

.geral .sidenav {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: sidenav;
  width: 269px;
  height: 100vh;
  border-right: 1px solid #dadada;
  display: -ms-grid;
  display: grid;
      grid-template-areas: 'logo' 'menu';
}

.geral .sidenav .logo {
  width: 100%;
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: logo;
  height: 49px;
  border-bottom: 1px solid #dadada;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.geral .sidenav .menu {
  height: calc(100vh - 50px);
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: menu;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.geral .sidenav .menu nav {
  width: 100%;
}

.geral .sidenav .menu nav ul {
  padding: 0px;
  margin: 0px;
}

.geral .sidenav .menu nav ul li {
  border-left: 5px solid #fff;
  border-bottom: 1px solid #dadada;
}

.geral .sidenav .menu nav ul li.active {
  border-left: 5px solid #000;
}

.geral .sidenav .menu nav ul li:hover {
  border-left: 5px solid #000;
}

.geral .sidenav .menu nav ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: #000;
  gap: 10px;
}

.geral .sidenav .menu nav ul li a i {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.geral .content {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: content;
  width: calc(100vw - 270px);
  display: -ms-grid;
  display: grid;
      grid-template-areas: 'header' 'main' 'footer';
}

.geral .content .header {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: header;
  height: 49px;
  border-bottom: 1px solid #dadada;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50px;
      grid-template-columns: 1fr 50px;
}

.geral .content .header .title {
  text-transform: uppercase;
  padding: 0px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.geral .content .header .btnLogout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  color: #000;
}

.geral .content .main {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: main;
  height: calc(100vh - 100px);
  padding: 15px;
}

.geral .content .main .page-title {
  background-color: #f3f3f3;
  margin: -15px;
  margin-bottom: 15px;
  padding: 0px 15px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.geral .content .main .page-title h4 {
  font-size: 14px;
  margin: 0px;
  padding: 0px;
}

.geral .content .main .form-horizontal {
  height: 100%;
}

.geral .content .main .form-horizontal .form-body {
  height: calc(100% - 65px);
  overflow: auto;
  overflow-x: hidden;
  margin-left: -15px;
  margin-right: -15px;
  padding: 5px 15px;
  margin-top: -15px;
}

.geral .content .main .form-horizontal .form-body label {
  font-weight: 500;
  text-align: left;
}

.geral .content .main .form-horizontal .form-actions {
  border-top: 1px solid #dadada;
  margin-left: -15px;
  margin-right: -15px;
  overflow: hidden;
  padding: 15px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.geral .content .footer {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: footer;
  height: 49px;
  border-top: 1px solid #dadada;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.lista {
  margin-left: -15px;
  margin-top: -15px;
  margin-right: -15px;
  padding: 5px 0px;
  height: calc(100% - 65px) !important;
  overflow: auto;
  border-bottom: 1px solid #dadada;
}

#dataTable_wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
      grid-template-columns: repeat(12, 1fr);
  -ms-grid-rows: 35px 1fr 35px;
      grid-template-rows: 35px 1fr 35px;
  height: calc(100% - 65px);
      grid-template-areas: 'botaoAdd filtro filtro filtro filtro filtro filtro filtro filtro filtro filtro filtro' 'tabela   tabela tabela tabela tabela tabela tabela tabela tabela tabela tabela tabela' 'number   number number pages  pages  pages  pages  pages  pages  pages  pages  pages';
}

#dataTable_wrapper .dt-buttons {
  -ms-grid-row: 1 !important;
  -ms-grid-column: 1 !important;
  grid-area: botaoAdd !important;
  padding: 0px 0px 0px 15px;
}

#dataTable_wrapper .dt-buttons button {
  width: 100%;
}

#dataTable_wrapper .dataTables_filter {
  -ms-grid-row: 1 !important;
  -ms-grid-column: 2 !important;
  -ms-grid-column-span: 11 !important;
  grid-area: filtro !important;
  width: 100%;
  padding: 0px 15px 0px 0px;
}

#dataTable_wrapper .dataTables_filter label {
  width: 100%;
  font-size: 0;
}

#dataTable_wrapper .dataTables_filter label input {
  width: calc(100% - 6px);
  height: 34px;
  border-color: #ccc;
}

#dataTable_wrapper .dataTable {
  border-top: 1px solid #f3f3f3;
  border-bottom: 1px solid #f3f3f3;
  -ms-grid-row: 2 !important;
  -ms-grid-column: 1 !important;
  -ms-grid-column-span: 12 !important;
  grid-area: tabela !important;
  width: 100%;
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
}

#dataTable_wrapper .dataTable thead {
  background-color: #f3f3f3;
}

#dataTable_wrapper .dataTable thead th {
  font-weight: 500 !important;
}

#dataTable_wrapper .dataTable thead th .acao {
  width: 100px !important;
}

#dataTable_wrapper .dataTable thead th.sorting_disabled::after {
  display: none !important;
}

#dataTable_wrapper .dataTable tbody td {
  vertical-align: middle;
  font-weight: 300 !important;
}

#dataTable_wrapper .dataTable tbody td.acao {
  padding: 5px 0px 5px 15px !important;
  width: 100px;
}

#dataTable_wrapper .dataTable tbody td.acao .btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 5px;
          column-gap: 5px;
}

#dataTable_wrapper .dataTable tbody td.acao .btn-group button {
  width: 100%;
}

#dataTable_wrapper .dataTables_info {
  -ms-grid-row: 3 !important;
  -ms-grid-column: 1 !important;
  -ms-grid-column-span: 3 !important;
  grid-area: number !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 0px;
  height: 45px;
  padding-left: 15px;
  position: fixed;
  bottom: 50px;
}

#dataTable_wrapper .paging_simple_numbers {
  -ms-grid-row: 3 !important;
  -ms-grid-column: 4 !important;
  -ms-grid-column-span: 9 !important;
  grid-area: pages !important;
  padding-top: 15px;
  margin-right: -15px;
  padding-right: 15px;
  padding-top: 0px;
  height: 45px;
  padding-left: 15px;
  position: fixed;
  bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  right: 15px;
}
/*# sourceMappingURL=main.css.map */