﻿@charset "UTF-8";
/*#region [variáveis] */
/*#endregion */
/*#region [fonts] */
@import url("https://fonts.googleapis.com/css?family=Roboto+Condensed:300,300i,400,400i,700,700i");
@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100;
  src: local("Roboto Thin"), local("Roboto-Thin"), url(http://fonts.gstatic.com/s/roboto/v15/2tsd397wLxj96qwHyNIkxHYhjbSpvc47ee6xR_80Hnw.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Light"), local("Roboto-Light"), url(http://fonts.gstatic.com/s/roboto/v15/Hgo13k-tfSpn0qi1SFdUfZBw1xU1rKptJj_0jans920.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto"), local("Roboto-Regular"), url(http://fonts.gstatic.com/s/roboto/v15/oMMgfZMQthOryQo9n22dcuvvDin1pK8aKteLpeZ5c0A.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 100;
  src: local("Roboto Thin Italic"), local("Roboto-ThinItalic"), url(http://fonts.gstatic.com/s/roboto/v15/12mE4jfMSBTmg-81EiS-YQzyDMXhdD8sAj6OAJTFsBI.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 300;
  src: local("Roboto Light Italic"), local("Roboto-LightItalic"), url(http://fonts.gstatic.com/s/roboto/v15/7m8l7TlFO-S3VkhHuR0at4gp9Q8gbYrhqGlRav_IXfk.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 400;
  src: local("Roboto Italic"), local("Roboto-Italic"), url(http://fonts.gstatic.com/s/roboto/v15/vPcynSL0qHq_6dX7lKVByXYhjbSpvc47ee6xR_80Hnw.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}
/*#endregion */
/*#region [material-icons] */
/* Rules for sizing the icon. */
.material-icons.md-8 {
  font-size: 8px;
}

.material-icons.md-16 {
  font-size: 16px;
}

.material-icons.md-24 {
  font-size: 24px;
}

.material-icons.md-32 {
  font-size: 32px;
}

.material-icons.md-48 {
  font-size: 48px;
}

.material-icons.md-64 {
  font-size: 64px;
}

.material-icons.md-128 {
  font-size: 128px;
}

/* Rules for using icons as black on a light background. */
.material-icons.md-dark {
  color: rgba(0, 0, 0, 0.54);
}

.material-icons.md-dark.md-inactive {
  color: rgba(0, 0, 0, 0.26);
}

/* Rules for using icons as white on a dark background. */
.material-icons.md-light {
  color: rgb(255, 255, 255);
}

.material-icons.md-light.md-inactive {
  color: rgba(255, 255, 255, 0.3);
}

/*#endregion */
/*#region [keyframes] */
/* spin */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
.spin {
  font-weight: normal;
  animation: spin 1s infinite linear;
  -webkit-animation: spin 1s infinite linear;
}

@keyframes blinker {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes blinker {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.blink {
  text-decoration: blink;
  -webkit-animation-name: blinker;
  -webkit-animation-duration: 0.6s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-direction: alternate;
}

/* ngAnimation */
/* leaving animations --------------------------------------- */
@keyframes rotateFall {
  0% {
    transform: rotateZ(0deg);
  }
  20% {
    transform: rotateZ(10deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: rotateZ(17deg);
  }
  60% {
    transform: rotateZ(16deg);
  }
  100% {
    transform: translateY(100%) rotateZ(17deg);
  }
}
@keyframes slideOutLeft {
  to {
    transform: translateX(-100%);
  }
}
@keyframes rotateOutNewspaper {
  to {
    transform: translateZ(-3000px) rotateZ(360deg);
    opacity: 0;
  }
}
/* entering animations --------------------------------------- */
@keyframes scaleUp {
  from {
    opacity: 0.3;
    -webkit-transform: scale(0.8);
  }
}
@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes slideInUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
/* Indeterminate progressbar */
@-webkit-keyframes indeterminate {
  0% {
    left: -35%;
    right: 100%;
  }
  60% {
    left: 100%;
    right: -90%;
  }
  100% {
    left: 100%;
    right: -90%;
  }
}
@keyframes indeterminate {
  0% {
    left: -35%;
    right: 100%;
  }
  60% {
    left: 100%;
    right: -90%;
  }
  100% {
    left: 100%;
    right: -90%;
  }
}
@-webkit-keyframes indeterminate-short {
  0% {
    left: -200%;
    right: 100%;
  }
  60% {
    left: 107%;
    right: -8%;
  }
  100% {
    left: 107%;
    right: -8%;
  }
}
@keyframes indeterminate-short {
  0% {
    left: -200%;
    right: 100%;
  }
  60% {
    left: 107%;
    right: -8%;
  }
  100% {
    left: 107%;
    right: -8%;
  }
}
/*#endregion */
/*#region [Effects]*/
.opacityPulse-css {
  animation: opacityPulse 2s ease-out;
  animation-iteration-count: infinite;
  opacity: 1;
}

.alertPulse-css {
  animation: alertPulse 2s ease-out;
  animation-iteration-count: infinite;
  opacity: 1;
  background: #9A2727; /* you need this to specify a color to pulse to */
}

.pulsate-css {
  animation: pulsate 1s ease-out;
  animation-iteration-count: infinite;
  opacity: 0; /* you dont need the stuff below, but its what I used to create the loading circle */
  border: 3px solid #999;
  border-radius: 30px;
  height: 18px;
  width: 18px;
  position: relative;
  display: inline-block;
  margin-top: 20px;
  text-align: center;
}

/*#endregion*/
/*#region [bootstap.paper theme customize]*/
body {
  background-color: #f0f0f0;
  font-family: Roboto, Arial, sans-serif;
}

a, a:hover, a:active, a:focus, a:visited {
  text-decoration: none;
  color: #000;
}

h1, h2, h3, h4, h5, h6 {
  color: #000;
}

h6, .h6 {
  font-size: 16px;
}

strong {
  font-weight: 500;
}

textarea {
  font-family: "JetBrains Mono", monospace;
  font-size: 1.2rem !important;
}

small .material-icons {
  font-size: inherit !important;
  vertical-align: middle !important;
}

.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
  background-color: rgba(255, 255, 255, 0.3);
}

.navbar {
  min-height: initial;
  margin-bottom: initial;
}

.navbar > .container .navbar-brand,
.navbar > .container-fluid .navbar-brand {
  margin-left: initial;
}

.navbar-inverse {
  background-color: #607d8b;
  color: #fff;
}

.radio-inline {
  line-height: 1.8;
  margin: 0 15px 0 0;
}

.media-body {
  width: 100%;
}

.table {
  margin-bottom: 0;
}

.table .media-body {
  width: auto;
}

.media-heading {
  line-height: 1.2;
}

textarea, textarea.form-control, input.form-control, input[type=text], input[type=password], input[type=email], input[type=number], [type=text].form-control, [type=password].form-control, [type=email].form-control, [type=tel].form-control, [contenteditable].form-control, select, select.form-control {
  font-size: 14px;
}

.control-label {
  font-size: 12px;
}

.form-control {
  padding: 0 !important;
  margin: 0 !important;
  height: auto !important;
  min-height: 30px !important;
  font-size: 14px;
  cursor: inherit;
}

.form-control[disabled] {
  cursor: initial;
}

.form-control.range {
  width: 50%;
}

select.form-control, select.form-control:focus {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAAY0lEQVR42mNgGAWjYBTQA3BQSQ1e4AXEj4FYB48aPagaD0os2gjE/4H4FQ7LQJa8hqrZQGmw7cBhGbIlO6gRfMiWgQzWpYUluCyjiSXYLKOZJeiW0dQSZMs4RouXUTAKhjEAAKAUHg8Dwnx/AAAAAElFTkSuQmCC);
}

.form-control.edit {
  background-color: rgba(0, 0, 0, 0.03);
}

.input-group-addon {
  padding-top: 0;
  padding-bottom: 0;
}

.input-group > .input-group-addon:first-child {
  padding-left: 0;
  padding-right: 16px;
}

.input-group > .input-group-addon:first-child i {
  min-width: 24px;
}

.input-group > .input-group-addon:last-child {
  padding-left: 16px;
  padding-right: 0;
}

.input-group > .input-group-addon:last-child i {
  min-width: 24px;
}

.form-group, form-group-lg, form-group-sm {
  margin-bottom: 8px;
}

.form-group h1, .form-group-lg h1, .form-group-sm h1 {
  margin-top: 12px;
  margin-bottom: 12px;
}

.form-group-lg .form-control {
  font-size: 21px;
  border-radius: 0;
}

label.form-control, a.form-control {
  box-shadow: none;
  border-bottom: 1px dotted #ddd;
}

.form-control-1 {
  width: 8.3333333333% !important;
}

.form-control-2 {
  width: 16.6666666667% !important;
}

.form-control-3 {
  width: 25% !important;
}

.form-control-4 {
  width: 33.3333333333% !important;
}

.form-control-5 {
  width: 41.6666666667% !important;
}

.form-control-6 {
  width: 50% !important;
}

.form-control-7 {
  width: 58.3333333333% !important;
}

.form-control-8 {
  width: 66.6666666667% !important;
}

.form-control-9 {
  width: 75% !important;
}

.form-control-10 {
  width: 83.3333333333% !important;
}

.form-control-11 {
  width: 91.6666666667% !important;
}

.form-control-12 {
  width: 100% !important;
}

.btn-primary, .btn-primary:hover, .btn-primary:active, .btn-primary:focus {
  background-image: none !important;
  background-color: #607d8b !important;
  color: #fff !important;
}

.btn-success, .btn-success:hover, .btn-success:active, .btn-success:focus,
.btn-warning, .btn-success:hover, .btn-success:active, .btn-success:focus {
  color: #fff !important;
}

.btn-icon {
  border-radius: 3px;
  box-shadow: none;
  padding-left: 6px;
  padding-right: 6px;
}

.btn-primary.icon,
.btn-success.icon,
.btn-warning.icon,
.btn-default.icon {
  padding-left: 6px;
  padding-right: 6px;
}

.btn > .material-icons {
  vertical-align: middle;
  line-height: 13px;
}

.btn-toolbar .btn, .btn-toolbar .btn-group, .btn-toolbar .input-group {
  padding: 2px 8px;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-toolbar .btn:active, .btn-toolbar .btn.active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-link {
  color: #000;
}

.btn-group-sm .material-icons {
  font-size: 12px;
}

.btn-group-xs .material-icons {
  font-size: 12px;
}

.label .material-icons {
  font-size: 12px;
}

.table > caption {
  font-size: 10px;
  text-transform: uppercase;
  margin: 0;
}

.table > thead > tr > th {
  border-bottom-width: 1.5px;
}

.table tr td.col-line, .table tr td.col-separator,
.table tr th.col-line, .table tr th.col-separator {
  box-shadow: inset 1px 0px 0px 0px #eee;
}

.table-responsive-calendar th, .table-responsive-calendar td {
  font-size: 12px !important;
}

.table-responsive-calendar th:first-child, .table-responsive-calendar td:first-child {
  width: 180px !important;
  max-width: 180px !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
  background-color: #607d8b !important;
  color: #fff !important;
  border-color: #607d8b;
}

.navbar-right .dropdown-menu {
  top: 8px;
  right: 8px;
}

.navbar-right .dropdown-menu .media-left {
  padding-right: 0;
}

.navbar-right .dropdown-menu .media-left .material-icons {
  line-height: 48px;
  padding-right: 16px;
}

.navbar-right .dropdown-menu .media-body {
  line-height: 48px;
}

.navbar-right .dropdown-menu li.divider {
  margin: 4px 0;
}

.navbar-right .dropdown-menu li a {
  padding: 0 16px;
}

.toast-info {
  background-color: #000;
  color: #fff;
}

.toast-top-center > div {
  width: 60% !important;
  border-radius: 0 0 3px 3px !important;
}

.toast-bottom-center > div {
  width: 60% !important;
  border-radius: 3px 3px 0 0 !important;
}

.modal-dialog .modal-content {
  border-radius: 2px;
}

.modal-dialog .modal-content .modal-header {
  padding: 16px;
}

.modal-dialog .modal-content .modal-header .modal-title {
  font-size: 24px;
  line-height: 1;
}

.modal-dialog .modal-content .modal-body {
  font-size: 18px;
  padding: 8px 16px 8px 32px;
  min-height: 64px;
}

.modal-dialog .modal-content .modal-footer {
  padding: 16px;
}

.input-group .input-group-btn .btn {
  border-radius: 0;
  padding: 6px 12px;
}

body::-webkit-scrollbar {
  width: 4px;
  background-color: rgba(0, 0, 0, 0.5);
}

body::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.5);
}

[ng-click] {
  cursor: pointer;
}

/*#endregion*/
/*#region [sections] */
#header {
  position: fixed;
  border: none;
  box-shadow: 0 0 15px rgb(0, 0, 0);
}

#header .container-fluid {
  padding: 8px;
}

#header .navbar-brand {
  color: #fff;
  margin: 4px;
  padding: 0;
  line-height: 40px;
  height: 40px;
  font-size: 20px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: break-all;
  word-wrap: break-word;
}

#header .navbar-brand a {
  color: rgba(255, 255, 255, 0.5);
  display: inline-block;
  margin: 0;
  padding: 0;
}

#header .navbar-brand a:hover {
  color: #fff;
}

#header .navbar-brand .material-icons {
  color: rgba(255, 255, 255, 0.5);
  display: inline;
  vertical-align: sub;
}

#header .toolbar {
  float: left;
  -webkit-padding-start: 0;
  margin: 0 8px;
}

#header .toolbar > li {
  display: inline-block;
  list-style: none;
}

#header .toolbar > li > a {
  display: inline-block;
  color: #fff !important;
  text-transform: uppercase;
  margin: 4px;
  padding: 8px;
  height: 40px;
  border-radius: 100%;
}

#header .toolbar > li > a.btn-caret {
  padding-left: 5px;
  padding-right: 5px;
}

#header .search {
  position: absolute;
  top: 0;
  right: 30%;
  left: 30%;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  margin: 8px;
  padding: 6px;
  height: 48px;
  z-index: 1050;
}

#header .search .material-icons {
  color: #f0f0f0;
}

#header .search .input-group {
  height: 36px;
}

#header .search .form-control {
  box-shadow: none;
  color: #f0f0f0;
  height: 36px !important;
}

#header .search .form-control::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
  text-transform: lowercase;
}

#header .search.active {
  background-color: #fff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12);
}

#header .search.active .material-icons {
  color: #757575;
}

#header .search.active .form-control {
  color: #757575;
}

#header .search.active .form-control::-webkit-input-placeholder {
  color: initial;
}

#header .navbar-right {
  position: absolute;
  right: 0;
}

#header .nav > li > a:hover,
#header .nav > li > a:focus {
  background-color: rgba(255, 255, 255, 0.3);
}

#header .hamburger {
  display: block;
}

#sidebar {
  position: fixed;
  background-color: #fff;
  top: 0;
  left: -300px;
  bottom: 0;
  width: 300px;
  box-shadow: 0 1px 1px rgb(0, 0, 0);
  z-index: 1070;
}

#sidebar > .profile {
  background-color: #607d8b;
  color: #fff;
  background-image: url(/content/img/logo.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: auto 96px;
  height: 168px;
}

#sidebar > .profile > .media {
  color: #fff;
  min-height: 100px;
}

#sidebar > .profile > .media > .media-left > .profile-photo {
  background-color: #f0f0f0;
  border: solid 1px rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  margin: 16px;
  overflow: hidden;
}

#sidebar > .profile > .media > .media-left > .profile-photo > img {
  width: 100%;
}

#sidebar > .profile > .media > .media-body > .media-heading {
  padding: 8px 0;
}

#sidebar > .profile > .media > p.profile-name {
  font-size: 18px;
  margin: 8px 16px;
}

#sidebar > .profile > .media > p.profile-store {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 16px;
}

#sidebar > .menu {
  overflow: auto;
  height: calc(100% - 168px);
}

#sidebar > .menu::-webkit-scrollbar {
  width: 4px;
  background-color: #fff;
  background-color: rgba(0, 0, 0, 0.1);
}

#sidebar > .menu::-webkit-scrollbar-thumb,
#sidebar > .menu::-webkit-scrollbar-thumb:hover,
#sidebar > .menu::-webkit-scrollbar-thumb:active {
  background-color: rgba(0, 0, 0, 0.5);
}

#sidebar > .menu > ul {
  -webkit-padding-start: 0;
}

#sidebar > .menu > ul > li {
  list-style: none;
}

#sidebar > .menu > ul > li > a {
  display: inline-block;
  color: #757575;
  padding: 0;
  margin: 0;
  width: 100%;
  vertical-align: baseline;
}

#sidebar > .menu > ul > li > a > i {
  display: block;
  float: left;
  font-size: 24px;
  margin: 0 30px 0 16px;
  line-height: 48px;
}

#sidebar > .menu > ul > li > a > span {
  display: block;
  line-height: 48px;
}

#sidebar > .menu > ul > li > a:hover,
#sidebar > .menu > ul > li > a:focus,
#sidebar > .menu > ul > li > a:active {
  background-color: #f4f4f4;
}

#sidebar > .menu > ul > li.active {
  background-color: rgba(0, 0, 0, 0.05);
}

#sidebar > .menu > small {
  display: inline-block;
  margin: 0;
  padding: 8px 16px 16px 16px;
  width: 100%;
  border-top: solid 1px #eee;
  color: #ccc;
}

#sidebar > .menu > hr {
  margin: 8px 0;
}

/*
#wrapper .ng-enter { animation: slideInRight 0.5s both ease-in; }
#wrapper .ng-leave { animation: slideOutLeft 0.5s both ease-in; }
*/
#wrapper {
  margin-bottom: 128px;
  color: #757575;
}

#wrapper .space {
  height: 64px;
  clear: both;
}

#wrapper .content-header {
  background-color: #607d8b;
  color: #fff;
  vertical-align: bottom;
  margin-top: 56px;
  padding-left: 32px;
  padding-right: 32px;
}

#wrapper .content-header > .nav-tabs {
  text-transform: uppercase;
  border-bottom: none;
}

#wrapper .content-header > .nav-tabs > li > a {
  color: #fff;
  box-shadow: none;
  min-width: 10em;
  text-align: center;
}

#wrapper .content-header > .nav-tabs > li.active > a,
#wrapper .content-header > .nav-tabs > li.active > a:focus,
#wrapper .content-header > .nav-tabs > li > a:hover,
#wrapper .content-header > .nav-tabs > li > a:focus:hover {
  font-weight: bold;
  box-shadow: inset 0 -3px 0 rgba(255, 255, 255, 0.7);
  color: rgba(255, 255, 255, 0.7);
}

#wrapper .nav-tabs {
  border-bottom: solid 1px #ddd;
  text-transform: uppercase;
}

#wrapper .nav-tabs > li.active > a,
#wrapper .nav-tabs > li.active > a:focus,
#wrapper .nav-tabs > li > a:hover,
#wrapper .nav-tabs > li > a:focus:hover {
  border: none;
  -webkit-box-shadow: inset 0 -2px 0 #000;
  box-shadow: inset 0 -2px 0 #000;
  color: #000;
}

#wrapper .banner {
  min-height: 200px;
}

#wrapper .cover {
  background-color: #607d8b;
  color: #fff;
}

#wrapper .cover h1 {
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-size: 60px;
}

#wrapper .cover p {
  color: rgba(255, 255, 255, 0.5);
}

#wrapper hr {
  margin: 8px 0;
  border-top-color: rgba(0, 0, 0, 0.05);
}

#wrapper hr.no-line {
  margin: 8px 0;
  border: none;
}

#wrapper .add-br {
  padding-bottom: 16px !important;
}

#wrapper .dragover {
  border: 5px dashed rgba(255, 255, 255, 0.7);
}

#wrapper form.list > h1,
#wrapper form.list > div > h1 {
  font-size: 16px;
  color: #757575;
  margin: 0;
  line-height: 80px;
  height: 60px;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: break-all;
  word-wrap: break-word;
}

#wrapper form.content > h1 {
  font-size: 18px;
  color: #757575;
  margin: 0;
  line-height: 56px;
  height: 56px;
}

#wrapper form.content > h1 > span > a {
  display: inline-block;
  margin: 0;
  line-height: 1;
  height: 56px;
  padding: 16px;
  color: #757575;
}

#wrapper .action-bar > a {
  display: inline-block;
  color: #757575;
  text-transform: uppercase;
  margin: 8px 0;
  padding: 8px;
  line-height: 1;
  height: 40px;
  border-radius: 100%;
}

#wrapper .action-bar > a:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

#wrapper .section {
  min-height: 508px;
}

#wrapper form .submit {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  height: 112px;
  padding: 0 32px;
  background-color: #f0f0f0;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.7);
  text-align: right;
  z-index: 1040;
}

#wrapper form .submit > .btn {
  font-weight: bold;
  margin-top: 10px;
}

#wrapper .search-box {
  background-color: rgba(0, 0, 0, 0.05);
  height: 56px;
  padding: 8px;
}

#wrapper .search-box > div {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  height: 40px;
  margin: 0 30%;
}

#wrapper .search-box > div .form-control {
  box-shadow: none;
}

#wrapper h2 {
  font-size: 18px;
  border-bottom: solid 1px #eee;
  padding-bottom: 8px;
}

#wrapper .index .media h1 {
  font-size: 16px;
}

#wrapper .index a.item {
  display: inline-block;
  vertical-align: top;
  color: #757575;
  width: 100%;
  min-height: 80px;
  border-radius: 3px;
}

#wrapper .index a.item:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

#wrapper .hover:hover,
#wrapper .hover:focus,
#wrapper .hover:active {
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 3px;
}

#wrapper .nivel-avaliacao .material-icons {
  font-size: 14px;
  color: #607d8b;
}

#wrapper .nivel-avaliacao.nulo .material-icons {
  font-size: 14px;
  color: #aeaeae;
}

#wrapper .nivel-avaliacao.inverse .material-icons {
  font-size: 14px;
  color: #f0f0f0;
}

#wrapper .nivel-avaliacao.nulo.inverse .material-icons {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

#wrapper .inativo > .card {
  background-color: #eaeaea;
  overflow: hidden;
}

#wrapper .inativo > .card.bg-primary,
#wrapper .inativo > .card.bg-gerencial,
#wrapper .inativo > .card.bg-operação,
#wrapper .inativo > .card.bg-financeiro {
  background-color: #9e9e9e !important;
}

#wrapper .bloqueado > .card.bg-primary,
#wrapper .bloqueado > .card.bg-gerencial,
#wrapper .bloqueado > .card.bg-operação,
#wrapper .bloqueado > .card.bg-financeiro {
  background-color: #e51c23 !important;
}

#wrapper .card-servico {
  min-height: 100px;
}

#wrapper .inverse {
  color: #f0f0f0;
}

#wrapper .inverse * {
  color: #f0f0f0;
}

#wrapper .inverse select.form-control,
#wrapper .inverse select.form-control:focus {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAAbklEQVR42mNgGAWjYBTQHPz//5+DGmoIGeD179+/x0BaB48aPagaD7ItAhqwEWjAfyD9CptlUEteQ9VsoCjYgAbswGYZmiU7qBF8yJaBDNaluiW4LKOJJdgso5kl6JbR1BJky2huySgYBaNgYAEAB2PFJWxTwRoAAAAASUVORK5CYII=);
}

#wrapper .inverse option {
  color: initial;
}

#wrapper .inverse .nav-tabs > li.active > a,
#wrapper .inverse .nav-tabs > li.active > a:focus,
#wrapper .inverse .nav-tabs > li > a:hover,
#wrapper .inverse .nav-tabs > li > a:focus:hover {
  box-shadow: inset 0 -3px 0 #f0f0f0;
  color: #f0f0f0;
}

#wrapper .inverse .icon-24 .material-icons {
  color: initial;
}

#wrapper .inverse .icon-32 .material-icons {
  color: initial;
}

#wrapper .inverse .icon-48 .material-icons {
  color: initial;
}

#wrapper .inverse .icon-64 .material-icons {
  color: initial;
}

#wrapper .inverse .icon-96 .material-icons {
  color: initial;
}

#wrapper .inverse .icon-128 .material-icons {
  color: initial;
}

#wrapper .inverse .dropdown-menu * {
  color: #757575;
}

#wrapper .inverse input[type=radio]:before,
#wrapper .inverse .radio input[type=radio]:before,
#wrapper .inverse .radio-inline input[type=radio]:before {
  background-color: #f0f0f0;
}

#wrapper .inverse input[type=radio]:after,
#wrapper .inverse .radio input[type=radio]:after,
#wrapper .inverse .radio-inline input[type=radio]:after,
#wrapper .inverse input[type=radio]:checked:after,
#wrapper .inverse .radio input[type=radio]:checked:after,
#wrapper .inverse .radio-inline input[type=radio]:checked:after {
  border-color: #f0f0f0;
}

#wrapper .dropdown-menu .dropdown-menu-bar {
  padding: 0 6px;
  white-space: nowrap;
}

#wrapper .dropdown-menu .dropdown-menu-bar > a {
  display: inline-block;
  height: 40px;
  width: 40px;
  padding: 8px;
  margin: 0;
}

#wrapper tr > td.row-bar {
  width: 1px;
}

#wrapper tr > td.row-bar > .bar {
  position: relative;
}

#wrapper tr > td.row-bar > .bar > .buttons {
  position: absolute;
  left: auto;
  right: 0;
  height: 40px;
  white-space: nowrap;
  background-color: #fff;
  border-radius: 5px;
  padding: 4px;
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
}

#wrapper tr > td.row-bar > .bar > .buttons > a {
  display: inline-block;
  padding: 4px;
  margin: 0;
  border-radius: 16px;
  min-width: 32px;
  height: 32px;
  vertical-align: top;
  display: inline-block;
}

#wrapper tr > td.row-bar > .bar > .buttons > a:hover {
  background-color: #f0f0f0;
}

#wrapper tr > td.row-bar > .bar > .buttons > a > span {
  vertical-align: top;
  display: inline-block;
  font-size: 12px;
}

#wrapper tr > td.row-bar > .bar > .buttons {
  display: none;
}

#wrapper tr:hover > td.row-bar > .bar > .buttons {
  display: inline-block;
}

#wrapper .rouded-corner {
  border-radius: 3px;
}

#wrapper .placeholder {
  color: #bbb;
}

#wrapper .shadow-z1 {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12);
}

#wrapper .shadow-z2 {
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
}

#wrapper .shadow-z3 {
  box-shadow: 0 4px 5px -2px rgba(0, 0, 0, 0.2), 0 7px 10px 1px rgba(0, 0, 0, 0.14), 0 2px 16px 1px rgba(0, 0, 0, 0.12);
}

#wrapper .shadow-z4 {
  box-shadow: 0 6px 6px -3px rgba(0, 0, 0, 0.2), 0 10px 14px 1px rgba(0, 0, 0, 0.14), 0 4px 18px 3px rgba(0, 0, 0, 0.12);
}

#wrapper .shadow-z5 {
  box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 13px 19px 2px rgba(0, 0, 0, 0.14), 0 5px 24px 4px rgba(0, 0, 0, 0.12);
}

#wrapper .space-footer {
  padding: 10px;
  text-align: center;
  font-size: 0.7em;
  color: #ccc;
}

#wrapper .summary-footer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  height: 80px;
  background-color: #607d8b;
  color: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.7);
  z-index: 1040;
}

#wrapper .summary-footer .dashboard-nav {
  padding: 10px;
}

#main-menu {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  height: 80px;
  background-color: #607d8b;
  color: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.7);
  z-index: 1050;
}

#main-menu a.item {
  display: inline-block;
  height: 80px;
  width: 112px;
  padding: 1px 0;
  color: #fff;
  text-align: center;
  text-decoration: none;
}

#main-menu a.item:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

#main-menu a.item i, #main-menu a.item img {
  display: inline-block;
  height: 32px;
  width: 32px;
  margin: 8px 0;
}

#main-menu a.item p {
  display: block;
  padding: 0 8px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: break-all;
  word-wrap: break-word;
  width: 100%;
  text-transform: uppercase;
}

#main-menu a.active {
  background-color: rgba(0, 0, 0, 0.3);
}

#dropdown-modules {
  position: fixed;
  width: 366px;
  margin-top: 56px;
}

#dropdown-modules .arrow {
  position: absolute;
  top: -5px;
  right: 70px;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  background-color: #fff;
  box-shadow: -1px -1px 1px rgb(0, 0, 0);
}

#dropdown-modules a.item {
  display: inline-block;
  height: 112px;
  width: 112px;
  padding: 12px 0;
  margin: 5px;
  color: #757575;
  text-align: center;
  text-decoration: none;
}

#dropdown-modules a.item:hover {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12);
}

#dropdown-modules a.item i, #dropdown-modules a.item img {
  display: inline-block;
  height: 48px;
  width: 48px;
  margin: 8px 0;
}

#dropdown-modules a.item p {
  display: block;
  padding: 0 8px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: break-all;
  word-wrap: break-word;
  width: 100%;
  text-transform: uppercase;
}

#dropdown-modules a.active {
  color: #000;
}

#dropdown-account {
  position: fixed;
  width: 366px;
  margin-top: 56px;
}

#dropdown-account .arrow {
  position: absolute;
  top: -5px;
  right: 19px;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  background-color: #fff;
  box-shadow: -1px -1px 1px rgb(0, 0, 0);
}

#dropdown-account a {
  color: #757575;
}

#dropdown-account a.flag {
  height: 24px;
}

#dropdown-account .profile-photo {
  background-color: #f0f0f0;
  border: solid 1px rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  margin: 16px;
  overflow: hidden;
}

#dropdown-account .profile-photo > img {
  width: 100%;
}

#dropdown-account p.profile-name {
  font-size: 16px;
  margin: 16px 0;
}

#dropdown-account p {
  line-height: 1;
}

#protection {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: none;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1040;
}

/*#endregion */
/*#region [components] */
.right-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 384px;
  background-color: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.7);
  padding: 16px;
  z-index: 1070;
  overflow-y: auto;
}

.right-nav::-webkit-scrollbar {
  width: 4px;
  background-color: #fff;
  background-color: rgba(0, 0, 0, 0.1);
}

.right-nav::-webkit-scrollbar-thumb,
.right-nav::-webkit-scrollbar-thumb:hover,
.right-nav::-webkit-scrollbar-thumb:active {
  background-color: rgba(0, 0, 0, 0.5);
}

.right-nav > h1 {
  font-size: 16px;
  color: #bbb;
  padding: 0;
  margin: 0 !important;
  line-height: 24px !important;
  margin-bottom: 16px !important;
  height: auto !important;
}

.right-nav > h1 > a {
  line-height: 1 !important;
}

.right-nav hr {
  margin: 0 !important;
  border: none !important;
  line-height: 8px;
  height: 8px;
}

.right-nav.x2 {
  width: 768px;
}

.menu ul {
  -webkit-padding-start: 0;
}

.menu ul > li {
  list-style: none;
}

.menu ul > li > a {
  display: inline-block;
  color: #757575;
  padding: 0;
  margin: 0;
  width: 100%;
  vertical-align: baseline;
}

.menu ul > li > a > i {
  display: block;
  float: left;
  font-size: 24px;
  margin: 0 30px 0 16px;
  line-height: 48px;
}

.menu ul > li > a > img {
  display: block;
  float: left;
  height: 24px;
  width: 24px;
  margin: 12px 30px 12px 16px;
}

.menu ul > li > a > span {
  display: block;
  line-height: 48px;
}

.menu ul > li > a:hover,
.menu ul > li > a:focus,
.menu ul > li > a:active {
  background-color: #f4f4f4;
}

.menu ul > li.active {
  background-color: rgba(0, 0, 0, 0.05);
}

.menu small {
  display: inline-block;
  margin: 0;
  padding: 8px 16px 16px 16px;
  width: 100%;
  border-top: solid 1px #eee;
  color: #ccc;
}

.menu hr {
  margin: 8px 0;
}

.bg-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1040;
  display: block !important;
  overflow-y: auto;
}

.bg-modal .form {
  margin: 56px auto;
  width: 800px;
  height: 600px;
  height: calc(100% - 112px);
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.bg-modal .form .header {
  font-size: 24px;
  height: 56px;
  line-height: 56px;
  padding: 0 10px 0 20px;
  margin: 0;
  text-transform: uppercase;
  color: #fff;
  background-color: #607d8b;
}

.bg-modal .form .header small {
  color: rgba(255, 255, 255, 0.5);
}

.bg-modal .form .header .material-icons {
  color: #fff;
}

.bg-modal .form .wrapper {
  padding: 16px;
  margin: 0;
  height: 488px;
  height: calc(100% - 124px);
  min-height: 124px;
  width: 100%;
  overflow: auto;
  overflow-x: hidden;
}

.bg-modal .form .footer {
  padding: 16px;
  height: 68px;
  text-align: right;
  background-color: #f0f0f0;
}

.bg-modal .form .footer .btn {
  font-weight: bold;
}

.bg-modal .btn-float {
  z-index: 1065;
}

.bg-modal::-webkit-scrollbar {
  width: 4px;
  background-color: rgba(0, 0, 0, 0.5);
}

.bg-modal::-webkit-scrollbar-thumb {
  background-color: #607d8b;
}

.bg-modal.bg-modal-lg .form {
  margin: 32px auto;
  width: 1024px;
  width: calc(100% - 64px);
  height: 664px;
  height: calc(100% - 64px);
}

.bg-modal.bg-modal-lg .form .wrapper {
  height: 552px;
  height: calc(100% - 128px);
}

.bg-modal.bg-modal-sm .form {
  margin: 56px auto;
  width: 400px;
  height: auto;
  max-height: 600px;
  max-height: calc(100% - 112px);
}

.bg-modal.bg-modal-sm .form .wrapper {
  height: auto;
  max-height: 488px;
  max-height: calc(100% - 112px);
}

.bg-modal .autorizacao {
  margin: 56px auto;
  width: 400px;
  height: auto;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.bg-modal .autorizacao .logo .material-icons {
  font-size: 100px;
  color: #757575;
}

.bg-modal .autorizacao .header {
  font-size: 24px;
  height: 56px;
  line-height: 56px;
  padding: 0 10px 0 20px;
  text-transform: uppercase;
  color: #757575;
}

.bg-modal .autorizacao .wrapper {
  padding: 0 56px;
  height: auto;
  width: 100%;
  overflow: auto;
}

.bg-modal .autorizacao .wrapper textarea {
  line-height: 1;
  font-size: 11px;
}

.bg-modal .autorizacao .footer {
  padding: 8px 16px;
  height: 56px;
  text-align: right;
  background-color: #f0f0f0;
}

.bg-modal .autorizacao .footer .btn {
  font-weight: bold;
}

.bg-modal.scroll .form {
  height: auto;
}

.fit-to-filter {
  margin-right: 384px;
}

/*.navbar-transparent { background: none !important; background: -moz-linear-gradient($darkest-color, rgba(0,0,0,0)) !important; background: -webkit-linear-gradient($darkest-color, rgba(0,0,0,0)) !important; box-shadow: none !important; }*/
.navbar-transparent {
  background: none !important;
  box-shadow: none !important;
}

.shadow {
  box-shadow: 0 0 5px rgb(0, 0, 0) !important;
}

.no-shadow {
  box-shadow: none !important;
}

.error {
  color: red;
}

.text-center {
  text-align: center;
}

.text-middle {
  vertical-align: middle;
}

.clear-both {
  clear: both !important;
}

.loading {
  padding: 32px;
  text-align: center;
}

.loading-no-data {
  padding: 32px;
  color: #bbb;
}

.loading-error {
  padding: 32px;
}

.loading-form {
  padding: 128px 32px;
  text-align: center;
}

.icon-24 {
  display: inline-block;
  width: 24px;
  height: 24px;
  overflow: hidden;
  border-radius: 50%;
  background-color: #f5f5f5;
  border: solid 1px rgba(255, 255, 255, 0.7);
  line-height: 24px;
  text-align: center;
}

.icon-24 > img {
  width: 100%;
}

.icon-24 > .material-icons {
  vertical-align: middle;
  font-size: 16px;
}

.icon-32 {
  display: inline-block;
  width: 32px;
  height: 32px;
  overflow: hidden;
  border-radius: 50%;
  background-color: #f5f5f5;
  border: solid 1px rgba(255, 255, 255, 0.7);
  line-height: 32px;
  text-align: center;
}

.icon-32 > img {
  width: 100%;
}

.icon-32 > .material-icons {
  vertical-align: middle;
  font-size: 24px;
}

.icon-48 {
  display: inline-block;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 50%;
  background-color: #f5f5f5;
  border: solid 1px rgba(255, 255, 255, 0.7);
  line-height: 48px;
  text-align: center;
}

.icon-48 > img {
  width: 100%;
}

.icon-48 > .material-icons {
  vertical-align: middle;
  font-size: 32px;
}

.icon-64 {
  display: inline-block;
  width: 64px;
  height: 64px;
  overflow: hidden;
  border-radius: 50%;
  background-color: #f5f5f5;
  border: solid 1px rgba(255, 255, 255, 0.7);
  line-height: 64px;
  text-align: center;
}

.icon-64 > img {
  width: 100%;
}

.icon-64 > .material-icons {
  vertical-align: middle;
  font-size: 48px;
}

.icon-96 {
  display: inline-block;
  width: 96px;
  height: 96px;
  overflow: hidden;
  border-radius: 50%;
  background-color: #f5f5f5;
  border: solid 1px rgba(255, 255, 255, 0.7);
  line-height: 96px;
  text-align: center;
}

.icon-96 > img {
  width: 100%;
}

.icon-96 > .material-icons {
  vertical-align: middle;
  font-size: 64px;
}

.icon-128 {
  display: inline-block;
  width: 128px;
  height: 128px;
  overflow: hidden;
  border-radius: 50%;
  background-color: #f5f5f5;
  border: solid 1px rgba(255, 255, 255, 0.7);
  line-height: 128px;
  text-align: center;
}

.icon-128 > img {
  width: 100%;
}

.icon-128 > .material-icons {
  vertical-align: middle;
  font-size: 96px;
}

.element-toggled {
  left: 300px !important;
  right: -300px !important;
  transition: all 0.2s ease-in-out;
}

.sidebar-toggled {
  left: 0 !important;
  transition: all 0.2s ease-in-out;
}

.protection-toggled {
  display: block !important;
  transition: all 0.2s ease-in-out;
}

.activate-on-scroll {
  transition: all 0.2s ease-in-out;
}

.featured {
  background-color: #ffc107 !important;
  color: #fff !important;
}

.cover,
.banner {
  background-color: #607d8b;
  background-size: 100%;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.foto {
  text-align: center;
  overflow: hidden;
}

.foto img {
  width: 100%;
}

.foto-galeria {
  min-height: 200px;
  position: relative;
}

.foto-galeria img {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 20px 20px;
}

.card {
  background-color: #fff;
  display: block;
  position: static;
  width: auto;
  border-radius: 0;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
}

.stats {
  background-color: #607d8b;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12);
  color: #fff;
  transition: all 0.2s ease-in-out;
}

.stats > .stats-left {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 10px;
  transition: all 0.2s ease-in-out;
}

.stats > .stats-body {
  margin-left: 80px;
  min-height: 80px;
}

.stats > .stats-body > small {
  display: inline-block;
  margin: 0;
  padding: 20px 10px 0 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: break-all;
  word-wrap: break-word;
  width: 100%;
}

.stats > .stats-body > h1 {
  font-size: 20px;
  display: inline-block;
  margin: 0;
  padding: 0 10px 10px 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: break-all;
  word-wrap: break-word;
  width: 100%;
}

.stats > .stats-body > h1,
.stats > .stats-body > h2,
.stats > .stats-body > h3,
.stats > .stats-body > h4,
.stats > .stats-body > h5,
.stats > .stats-body > h6 {
  color: #f0f0f0;
}

a > .stats:hover > .stats-left {
  width: 0;
}

.dashboard-nav {
  background-color: #607d8b;
  display: block;
  position: static;
  width: auto;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12);
  margin: 0;
  padding: 20px 10px;
}

.dashboard-nav > .content > .number {
  margin-top: -6px;
  font-size: 20px;
}

.dashboard-nav > .content > .title {
  opacity: 0.8;
}

.dashboard-nav > .icon > .material-icons {
  opacity: 0.3;
  font-size: 32px;
  -webkit-transform: rotate(-5deg);
  transform: rotate(-5deg);
}

.card-chart {
  padding: 16px 8px 8px 8px;
}

.card-chart > h1 {
  font-size: 18px;
  padding: 0;
  margin: 4px 0 16px 0;
}

.chart {
  min-height: 300px;
}

.table > tbody > tr > td,
.table > tbody > tr > th {
  font-size: 14px;
  border-bottom: solid 1px #eee;
}

.table > thead > tr > th,
.table > tfoot > tr > th {
  font-size: 12px;
  font-weight: bold;
  color: #aeaeae;
}

.table .sequence, .table .sharp {
  width: 1em;
}

.table > tbody > tr > td > input {
  font-size: 14px;
  width: 100%;
}

.table > tbody > tr > td .media > .media-body h6 {
  margin: 8px 0;
}

.table > tbody > tr > td .dropdown-toggle > .material-icons {
  color: #757575;
}

.table-nowrap td, .table-nowrap th {
  white-space: nowrap;
}

.table-col-striped > tbody > tr > td:nth-child(2n+1) {
  background-color: rgba(0, 0, 0, 0.03);
}

.table-row-inactive td {
  text-decoration: line-through;
  color: rgba(0, 0, 0, 0.3);
}

.table-row-inactive td a,
.table-row-inactive td .material-icons {
  color: rgba(0, 0, 0, 0.3);
}

.table-editable > tbody > tr > td,
.table-editable > tbody > tr > th {
  border: none;
  vertical-align: middle;
}

.table-editable > tbody > tr:last-child > td,
.table-editable > tbody > tr:last-child > th {
  padding-bottom: 24px;
}

.table-grade-produto {
  table-layout: fixed;
}

.table-grade-produto > tbody > tr > td,
.table-grade-produto > tbody > tr > th {
  font-size: 14px;
  border-right: solid 1px #eee;
  text-align: center;
}

.table-grade-produto > tbody > tr > td > input,
.table-grade-produto > tbody > tr > th > input {
  font-size: 14px;
  text-align: center;
  width: 48px;
}

.table-grade-produto > thead > tr > th,
.table-grade-produto > tfoot > tr > th {
  font-size: 12px;
  border-right: solid 1px #eee;
  text-align: center;
  min-width: 48px;
  color: #aeaeae;
}

.table-grade-produto > tbody > tr > td:first-child,
.table-grade-produto > tbody > tr > th:first-child,
.table-grade-produto > thead > tr > th:first-child,
.table-grade-produto > tfoot > tr > th:first-child {
  border-left: solid 1px #eee;
}

.text-through, text-line {
  text-decoration: line-through;
}

.ellipsis {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: break-all;
  word-wrap: break-word;
  width: 100%;
}

.grow {
  transition: all 0.2s ease-in-out;
}

.grow:hover {
  -webkit-transform: scale(1.1);
}

.grow-sm {
  transition: all 0.2s ease-in-out;
}

.grow-sm:hover {
  -webkit-transform: scale(1.05);
}

.btn-float {
  position: fixed;
  bottom: 16px;
  right: 16px;
  cursor: pointer;
  background-color: #d23f31;
  color: #fff;
  width: 56px;
  height: 56px;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  z-index: 1040;
}

.btn-float > .material-icons {
  color: #fff;
  font-size: 1.5em;
  transition: all 0.2s linear;
  line-height: 56px;
}

.btn-float > .material-icons:hover {
  color: #fff;
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
}

.btn-float.footer {
  bottom: 96px;
}

.btn-float.inline {
  position: static;
  display: inline-block;
  background-color: #607d8b;
  filter: brightness(130%);
  -webkit-filter: brightness(130%);
  color: #fff;
  width: 56px;
  height: 56px;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0 4px 5px -2px rgba(0, 0, 0, 0.2), 0 7px 10px 1px rgba(0, 0, 0, 0.14), 0 2px 16px 1px rgba(0, 0, 0, 0.12);
  z-index: 1065;
}

.animate-enter {
  -webkit-transition: 1s linear all;
  transition: 1s linear all;
  opacity: 0;
}

.animate-enter.animate-enter-active {
  opacity: 1;
}

.percent-bar {
  display: inline-block;
  min-height: 16px;
  width: 100%;
  vertical-align: middle;
  overflow: hidden !important;
  margin: 0;
  padding: 0;
  line-height: 1;
  border-radius: 2px;
}

.progress {
  position: relative;
  height: 4px;
  display: block;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.03);
  border-radius: 2px;
  background-clip: padding-box;
  margin: 0;
  overflow: hidden;
}

.progress .determinate {
  position: absolute;
  background-color: inherit;
  top: 0;
  bottom: 0;
  background-color: #607d8b;
  transition: width 0.3s linear;
}

.progress .indeterminate {
  background-color: #607d8b;
}

.progress .indeterminate:before {
  content: "";
  position: absolute;
  background-color: inherit;
  top: 0;
  left: 0;
  bottom: 0;
  will-change: left, right;
  -webkit-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
  animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
}

.progress .indeterminate:after {
  content: "";
  position: absolute;
  background-color: inherit;
  top: 0;
  left: 0;
  bottom: 0;
  will-change: left, right;
  -webkit-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  -webkit-animation-delay: 1.15s;
  animation-delay: 1.15s;
}

.ta-root.focussed > .ta-scroll-window.form-control {
  outline: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.ta-bind {
  background-color: #f0f0f0;
}

.fullscreen {
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 1500;
  transition: all 0.2s ease-in-out;
}

/*#endregion*/
/*#region [background-colors] */
.bg-body {
  background-color: #f0f0f0 !important;
  color: #757575 !important;
}

.bg-primary {
  background-color: #607d8b !important;
  color: #fff !important;
}

.bg-featured {
  background-color: #ffc107 !important;
  color: #f0f0f0 !important;
}

.bg-black {
  background-color: #000 !important;
  color: #f0f0f0 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-smoke {
  background-color: #f0f0f0 !important;
}

.bg-dark {
  background-color: rgba(0, 0, 0, 0.3) !important;
}

.bg-darkest {
  background-color: rgba(0, 0, 0, 0.7) !important;
}

.bg-bright {
  background-color: rgba(255, 255, 255, 0.3) !important;
}

.bg-brightest {
  background-color: rgba(255, 255, 255, 0.7) !important;
}

.bg-zebra {
  background-color: rgba(0, 0, 0, 0.03) !important;
}

.bg-marsala {
  background-color: #782929 !important;
  color: #f0f0f0 !important;
}

.bg-rose-quartz {
  background-color: #f7786b !important;
  color: #f0f0f0 !important;
}

.bg-greenery {
  background-color: #88B04B !important;
  color: #f0f0f0 !important;
}

.bg-red {
  background-color: #f44336 !important;
  color: #f0f0f0 !important;
}

.bg-pink {
  background-color: #e91e63 !important;
  color: #f0f0f0 !important;
}

.bg-purple {
  background-color: #9c27b0 !important;
  color: #f0f0f0 !important;
}

.bg-deeppurple {
  background-color: #673ab7 !important;
  color: #f0f0f0 !important;
}

.bg-indigo {
  background-color: #3f51b5 !important;
  color: #f0f0f0 !important;
}

.bg-blue {
  background-color: #2196f3 !important;
  color: #f0f0f0 !important;
}

.bg-lightblue {
  background-color: #03a9f4 !important;
  color: #f0f0f0 !important;
}

.bg-cyan {
  background-color: #00bcd4 !important;
  color: #f0f0f0 !important;
}

.bg-teal {
  background-color: #009688 !important;
  color: #f0f0f0 !important;
}

.bg-green {
  background-color: #4caf50 !important;
  color: #f0f0f0 !important;
}

.bg-lightgreen {
  background-color: #8bc34a !important;
  color: #f0f0f0 !important;
}

.bg-lime {
  background-color: #cddc39 !important;
  color: #f0f0f0 !important;
}

.bg-yellow {
  background-color: #ffeb3b !important;
  color: #f0f0f0 !important;
}

.bg-amber {
  background-color: #ffc107 !important;
  color: #f0f0f0 !important;
}

.bg-orange {
  background-color: #ff9800 !important;
  color: #f0f0f0 !important;
}

.bg-deeporange {
  background-color: #ff5722 !important;
  color: #f0f0f0 !important;
}

.bg-brown {
  background-color: #795548 !important;
  color: #f0f0f0 !important;
}

.bg-grey {
  background-color: #9e9e9e !important;
  color: #f0f0f0 !important;
}

.bg-bluegrey {
  background-color: #607d8b !important;
  color: #f0f0f0 !important;
}

.bg-gerencial {
  background-color: #3f51b5 !important;
  color: #fff !important;
}

.bg-operação {
  background-color: #607d8b !important;
  color: #fff !important;
}

.bg-financeiro {
  background-color: #4caf50 !important;
  color: #fff !important;
}

.bg-warning {
  background-color: #ff9800 !important;
  color: #f0f0f0 !important;
}

.bg-danger {
  background-color: #e51c23 !important;
  color: #f0f0f0 !important;
}

.bg-success {
  background-color: #4caf50 !important;
  color: #f0f0f0 !important;
}

.bg-info {
  background-color: #9c27b0 !important;
  color: #f0f0f0 !important;
}

/*#endregion */
/*#region [text-colors] */
.text-primary {
  color: #607d8b !important;
}

.text-featured {
  color: #fff !important;
}

.text-link {
  color: #000 !important;
}

.text-smoke {
  color: #f0f0f0 !important;
}

.text-dark {
  color: rgba(0, 0, 0, 0.3) !important;
}

.text-darkest {
  color: rgba(0, 0, 0, 0.7) !important;
}

.text-bright {
  color: rgba(255, 255, 255, 0.3) !important;
}

.text-brightest {
  color: rgba(255, 255, 255, 0.7) !important;
}

.text-numero-negativo {
  color: #e51c23 !important;
}

.text-warning {
  color: #ff9800 !important;
}

.text-danger {
  color: #e51c23 !important;
}

.text-success {
  color: #4caf50 !important;
}

.text-info {
  color: #9c27b0 !important;
}

.text-icon {
  color: #757575 !important;
}

.text-marsala {
  color: #782929 !important;
}

.text-rose-quartz {
  color: #f7786b !important;
}

.text-greenery {
  color: #88B04B !important;
}

.text-red {
  color: #f44336 !important;
}

.text-pink {
  color: #e91e63 !important;
}

.text-purple {
  color: #9c27b0 !important;
}

.text-deeppurple {
  color: #673ab7 !important;
}

.text-indigo {
  color: #3f51b5 !important;
}

.text-blue {
  color: #2196f3 !important;
}

.text-lightblue {
  color: #03a9f4 !important;
}

.text-cyan {
  color: #00bcd4 !important;
}

.text-teal {
  color: #009688 !important;
}

.text-green {
  color: #4caf50 !important;
}

.text-lightgreen {
  color: #8bc34a !important;
}

.text-lime {
  color: #cddc39 !important;
}

.text-yellow {
  color: #ffeb3b !important;
}

.text-amber {
  color: #ffc107 !important;
}

.text-orange {
  color: #ff9800 !important;
}

.text-deeporange {
  color: #ff5722 !important;
}

.text-brown {
  color: #795548 !important;
}

.text-grey {
  color: #9e9e9e !important;
}

.text-bluegrey {
  color: #607d8b !important;
}

.text-black {
  color: #000 !important;
}

.text-white {
  color: #fff !important;
}

.text-gerencial {
  color: #607d8b !important;
}

.text-operação {
  color: #607d8b !important;
}

.text-financeiro {
  color: #607d8b !important;
}

/*#endregion */
/*#region [text-decoration] */
.text-bold {
  font-weight: bold;
}

.text-light {
  font-weight: lighter;
}

.text-italic {
  font-style: italic;
}

.text-line-through {
  text-decoration: line-through;
}

.text-underline {
  text-decoration: underline;
}

/*#endregion */
/*#region [border-colors] */
.tr-primary {
  border: solid 3px #607d8b !important;
}

.tr-featured {
  border: solid 3px #ffc107 !important;
}

.tr-smoke {
  border: solid 3px #f0f0f0 !important;
}

.tr-warning {
  border: solid 3px #ff9800 !important;
}

.tr-danger {
  border: solid 3px #e51c23 !important;
}

.tr-success {
  border: solid 3px #4caf50 !important;
}

.tr-info {
  border: solid 3px #9c27b0 !important;
}

.tr-marsala {
  border: solid 3px #782929 !important;
}

.tr-rose-quartz {
  border: solid 3px #f7786b !important;
}

.tr-greenery {
  border: solid 3px #88B04B !important;
}

.tr-red {
  border: solid 3px #f44336 !important;
}

.tr-pink {
  border: solid 3px #e91e63 !important;
}

.tr-purple {
  border: solid 3px #9c27b0 !important;
}

.tr-deeppurple {
  border: solid 3px #673ab7 !important;
}

.tr-indigo {
  border: solid 3px #3f51b5 !important;
}

.tr-blue {
  border: solid 3px #2196f3 !important;
}

.tr-lightblue {
  border: solid 3px #03a9f4 !important;
}

.tr-cyan {
  border: solid 3px #00bcd4 !important;
}

.tr-teal {
  border: solid 3px #009688 !important;
}

.tr-green {
  border: solid 3px #4caf50 !important;
}

.tr-lightgreen {
  border: solid 3px #8bc34a !important;
}

.tr-lime {
  border: solid 3px #cddc39 !important;
}

.tr-yellow {
  border: solid 3px #ffeb3b !important;
}

.tr-amber {
  border: solid 3px #ffc107 !important;
}

.tr-orange {
  border: solid 3px #ff9800 !important;
}

.tr-deeporange {
  border: solid 3px #ff5722 !important;
}

.tr-brown {
  border: solid 3px #795548 !important;
}

.tr-grey {
  border: solid 3px #9e9e9e !important;
}

.tr-bluegrey {
  border: solid 3px #607d8b !important;
}

.tr-black {
  border: solid 3px #000 !important;
}

.tr-white {
  border: solid 3px #fff !important;
}

.tr-none td {
  border: none !important;
}

/*#endregion */
/*#region [mark-colors] */
.mark-primary:nth-of-type(1) {
  border-top: solid 5px #607d8b !important;
}

.mark-featured:nth-of-type(1) {
  border-top: solid 5px #ffc107 !important;
}

.mark-black:nth-of-type(1) {
  border-top: solid 5px #000 !important;
}

.mark-white:nth-of-type(1) {
  border-top: solid 5px #fff !important;
}

.mark-smoke:nth-of-type(1) {
  border-top: solid 5px #f0f0f0 !important;
}

.mark-marsala:nth-of-type(1) {
  border-top: solid 5px #782929 !important;
}

.mark-rose-quartz:nth-of-type(1) {
  border-top: solid 5px #f7786b !important;
}

.mark-greenery:nth-of-type(1) {
  border-top: solid 5px #88B04B !important;
}

.mark-red:nth-of-type(1) {
  border-top: solid 5px #f44336 !important;
}

.mark-pink:nth-of-type(1) {
  border-top: solid 5px #e91e63 !important;
}

.mark-purple:nth-of-type(1) {
  border-top: solid 5px #9c27b0 !important;
}

.mark-deeppurple:nth-of-type(1) {
  border-top: solid 5px #673ab7 !important;
}

.mark-indigo:nth-of-type(1) {
  border-top: solid 5px #3f51b5 !important;
}

.mark-blue:nth-of-type(1) {
  border-top: solid 5px #2196f3 !important;
}

.mark-lightblue:nth-of-type(1) {
  border-top: solid 5px #03a9f4 !important;
}

.mark-cyan:nth-of-type(1) {
  border-top: solid 5px #00bcd4 !important;
}

.mark-teal:nth-of-type(1) {
  border-top: solid 5px #009688 !important;
}

.mark-green:nth-of-type(1) {
  border-top: solid 5px #4caf50 !important;
}

.mark-lightgreen:nth-of-type(1) {
  border-top: solid 5px #8bc34a !important;
}

.mark-lime:nth-of-type(1) {
  border-top: solid 5px #cddc39 !important;
}

.mark-yellow:nth-of-type(1) {
  border-top: solid 5px #ffeb3b !important;
}

.mark-amber:nth-of-type(1) {
  border-top: solid 5px #ffc107 !important;
}

.mark-orange:nth-of-type(1) {
  border-top: solid 5px #ff9800 !important;
}

.mark-deeporange:nth-of-type(1) {
  border-top: solid 5px #ff5722 !important;
}

.mark-brown:nth-of-type(1) {
  border-top: solid 5px #795548 !important;
}

.mark-grey:nth-of-type(1) {
  border-top: solid 5px #9e9e9e !important;
}

.mark-bluegrey:nth-of-type(1) {
  border-top: solid 5px #607d8b !important;
}

.mark-gerencial:nth-of-type(1) {
  border-top: solid 5px #607d8b !important;
}

.mark-operação:nth-of-type(1) {
  border-top: solid 5px #607d8b !important;
}

.mark-financeiro:nth-of-type(1) {
  border-top: solid 5px #607d8b !important;
}

.mark-t-primary {
  border-top: solid 5px #607d8b !important;
}

.mark-t-featured {
  border-top: solid 5px #ffc107 !important;
}

.mark-t-black {
  border-top: solid 5px #000 !important;
}

.mark-t-white {
  border-top: solid 5px #fff !important;
}

.mark-t-smoke {
  border-top: solid 5px #f0f0f0 !important;
}

.mark-t-marsala {
  border-top: solid 5px #782929 !important;
}

.mark-t-rose-quartz {
  border-top: solid 5px #f7786b !important;
}

.mark-t-greenery {
  border-top: solid 5px #88B04B !important;
}

.mark-t-red {
  border-top: solid 5px #f44336 !important;
}

.mark-t-pink {
  border-top: solid 5px #e91e63 !important;
}

.mark-t-purple {
  border-top: solid 5px #9c27b0 !important;
}

.mark-t-deeppurple {
  border-top: solid 5px #673ab7 !important;
}

.mark-t-indigo {
  border-top: solid 5px #3f51b5 !important;
}

.mark-t-blue {
  border-top: solid 5px #2196f3 !important;
}

.mark-t-lightblue {
  border-top: solid 5px #03a9f4 !important;
}

.mark-t-cyan {
  border-top: solid 5px #00bcd4 !important;
}

.mark-t-teal {
  border-top: solid 5px #009688 !important;
}

.mark-t-green {
  border-top: solid 5px #4caf50 !important;
}

.mark-t-lightgreen {
  border-top: solid 5px #8bc34a !important;
}

.mark-t-lime {
  border-top: solid 5px #cddc39 !important;
}

.mark-t-yellow {
  border-top: solid 5px #ffeb3b !important;
}

.mark-t-amber {
  border-top: solid 5px #ffc107 !important;
}

.mark-t-orange {
  border-top: solid 5px #ff9800 !important;
}

.mark-t-deeporange {
  border-top: solid 5px #ff5722 !important;
}

.mark-t-brown {
  border-top: solid 5px #795548 !important;
}

.mark-t-grey {
  border-top: solid 5px #9e9e9e !important;
}

.mark-t-bluegrey {
  border-top: solid 5px #607d8b !important;
}

.mark-t-gerencial {
  border-top: solid 5px #607d8b !important;
}

.mark-t-operação {
  border-top: solid 5px #607d8b !important;
}

.mark-t-financeiro {
  border-top: solid 5px #607d8b !important;
}

.mark-r-primary {
  border-right: solid 5px #607d8b !important;
}

.mark-r-featured {
  border-right: solid 5px #ffc107 !important;
}

.mark-r-black {
  border-right: solid 5px #000 !important;
}

.mark-r-white {
  border-right: solid 5px #fff !important;
}

.mark-r-smoke {
  border-right: solid 5px #f0f0f0 !important;
}

.mark-r-marsala {
  border-right: solid 5px #782929 !important;
}

.mark-r-rose-quartz {
  border-right: solid 5px #f7786b !important;
}

.mark-r-greenery {
  border-right: solid 5px #88B04B !important;
}

.mark-r-red {
  border-right: solid 5px #f44336 !important;
}

.mark-r-pink {
  border-right: solid 5px #e91e63 !important;
}

.mark-r-purple {
  border-right: solid 5px #9c27b0 !important;
}

.mark-r-deeppurple {
  border-right: solid 5px #673ab7 !important;
}

.mark-r-indigo {
  border-right: solid 5px #3f51b5 !important;
}

.mark-r-blue {
  border-right: solid 5px #2196f3 !important;
}

.mark-r-lightblue {
  border-right: solid 5px #03a9f4 !important;
}

.mark-r-cyan {
  border-right: solid 5px #00bcd4 !important;
}

.mark-r-teal {
  border-right: solid 5px #009688 !important;
}

.mark-r-green {
  border-right: solid 5px #4caf50 !important;
}

.mark-r-lightgreen {
  border-right: solid 5px #8bc34a !important;
}

.mark-r-lime {
  border-right: solid 5px #cddc39 !important;
}

.mark-r-yellow {
  border-right: solid 5px #ffeb3b !important;
}

.mark-r-amber {
  border-right: solid 5px #ffc107 !important;
}

.mark-r-orange {
  border-right: solid 5px #ff9800 !important;
}

.mark-r-deeporange {
  border-right: solid 5px #ff5722 !important;
}

.mark-r-brown {
  border-right: solid 5px #795548 !important;
}

.mark-r-grey {
  border-right: solid 5px #9e9e9e !important;
}

.mark-r-bluegrey {
  border-right: solid 5px #607d8b !important;
}

.mark-r-gerencial {
  border-right: solid 5px #607d8b !important;
}

.mark-r-operação {
  border-right: solid 5px #607d8b !important;
}

.mark-r-financeiro {
  border-right: solid 5px #607d8b !important;
}

.mark-b-primary {
  border-bottom: solid 5px #607d8b !important;
}

.mark-b-featured {
  border-bottom: solid 5px #ffc107 !important;
}

.mark-b-black {
  border-bottom: solid 5px #000 !important;
}

.mark-b-white {
  border-bottom: solid 5px #fff !important;
}

.mark-b-smoke {
  border-bottom: solid 5px #f0f0f0 !important;
}

.mark-b-marsala {
  border-bottom: solid 5px #782929 !important;
}

.mark-b-rose-quartz {
  border-bottom: solid 5px #f7786b !important;
}

.mark-b-greenery {
  border-bottom: solid 5px #88B04B !important;
}

.mark-b-red {
  border-bottom: solid 5px #f44336 !important;
}

.mark-b-pink {
  border-bottom: solid 5px #e91e63 !important;
}

.mark-b-purple {
  border-bottom: solid 5px #9c27b0 !important;
}

.mark-b-deeppurple {
  border-bottom: solid 5px #673ab7 !important;
}

.mark-b-indigo {
  border-bottom: solid 5px #3f51b5 !important;
}

.mark-b-blue {
  border-bottom: solid 5px #2196f3 !important;
}

.mark-b-lightblue {
  border-bottom: solid 5px #03a9f4 !important;
}

.mark-b-cyan {
  border-bottom: solid 5px #00bcd4 !important;
}

.mark-b-teal {
  border-bottom: solid 5px #009688 !important;
}

.mark-b-green {
  border-bottom: solid 5px #4caf50 !important;
}

.mark-b-lightgreen {
  border-bottom: solid 5px #8bc34a !important;
}

.mark-b-lime {
  border-bottom: solid 5px #cddc39 !important;
}

.mark-b-yellow {
  border-bottom: solid 5px #ffeb3b !important;
}

.mark-b-amber {
  border-bottom: solid 5px #ffc107 !important;
}

.mark-b-orange {
  border-bottom: solid 5px #ff9800 !important;
}

.mark-b-deeporange {
  border-bottom: solid 5px #ff5722 !important;
}

.mark-b-brown {
  border-bottom: solid 5px #795548 !important;
}

.mark-b-grey {
  border-bottom: solid 5px #9e9e9e !important;
}

.mark-b-bluegrey {
  border-bottom: solid 5px #607d8b !important;
}

.mark-b-gerencial {
  border-bottom: solid 5px #607d8b !important;
}

.mark-b-operação {
  border-bottom: solid 5px #607d8b !important;
}

.mark-b-financeiro {
  border-bottom: solid 5px #607d8b !important;
}

.mark-l-primary {
  border-left: solid 5px #607d8b !important;
}

.mark-l-featured {
  border-left: solid 5px #ffc107 !important;
}

.mark-l-black {
  border-left: solid 5px #000 !important;
}

.mark-l-white {
  border-left: solid 5px #fff !important;
}

.mark-l-smoke {
  border-left: solid 5px #f0f0f0 !important;
}

.mark-l-marsala {
  border-left: solid 5px #782929 !important;
}

.mark-l-rose-quartz {
  border-left: solid 5px #f7786b !important;
}

.mark-l-greenery {
  border-left: solid 5px #88B04B !important;
}

.mark-l-red {
  border-left: solid 5px #f44336 !important;
}

.mark-l-pink {
  border-left: solid 5px #e91e63 !important;
}

.mark-l-purple {
  border-left: solid 5px #9c27b0 !important;
}

.mark-l-deeppurple {
  border-left: solid 5px #673ab7 !important;
}

.mark-l-indigo {
  border-left: solid 5px #3f51b5 !important;
}

.mark-l-blue {
  border-left: solid 5px #2196f3 !important;
}

.mark-l-lightblue {
  border-left: solid 5px #03a9f4 !important;
}

.mark-l-cyan {
  border-left: solid 5px #00bcd4 !important;
}

.mark-l-teal {
  border-left: solid 5px #009688 !important;
}

.mark-l-green {
  border-left: solid 5px #4caf50 !important;
}

.mark-l-lightgreen {
  border-left: solid 5px #8bc34a !important;
}

.mark-l-lime {
  border-left: solid 5px #cddc39 !important;
}

.mark-l-yellow {
  border-left: solid 5px #ffeb3b !important;
}

.mark-l-amber {
  border-left: solid 5px #ffc107 !important;
}

.mark-l-orange {
  border-left: solid 5px #ff9800 !important;
}

.mark-l-deeporange {
  border-left: solid 5px #ff5722 !important;
}

.mark-l-brown {
  border-left: solid 5px #795548 !important;
}

.mark-l-grey {
  border-left: solid 5px #9e9e9e !important;
}

.mark-l-bluegrey {
  border-left: solid 5px #607d8b !important;
}

.mark-l-gerencial {
  border-left: solid 5px #607d8b !important;
}

.mark-l-operação {
  border-left: solid 5px #607d8b !important;
}

.mark-l-financeiro {
  border-left: solid 5px #607d8b !important;
}

.mark-0 {
  border-width: 0 !important;
}

/*#endregion */
/*#region [paddings] */
.p-0 {
  padding: 0;
}

.p-4 {
  padding: 4px;
}

.p-8 {
  padding: 8px;
}

.p-16 {
  padding: 16px;
}

.p-32 {
  padding: 32px;
}

.p-48 {
  padding: 48px;
}

.p-64 {
  padding: 64px;
}

.p-v-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.p-v-4 {
  padding-top: 4px;
  padding-bottom: 4px;
}

.p-v-8 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.p-v-16 {
  padding-top: 16px;
  padding-bottom: 16px;
}

.p-v-32 {
  padding-top: 32px;
  padding-bottom: 32px;
}

.p-v-48 {
  padding-top: 48px;
  padding-bottom: 48px;
}

.p-v-64 {
  padding-top: 64px;
  padding-bottom: 64px;
}

.p-h-0 {
  padding-left: 0;
  padding-right: 0;
}

.p-h-4 {
  padding-left: 4px;
  padding-right: 4px;
}

.p-h-8 {
  padding-left: 8px;
  padding-right: 8px;
}

.p-h-16 {
  padding-left: 16px;
  padding-right: 16px;
}

.p-h-32 {
  padding-left: 32px;
  padding-right: 32px;
}

.p-h-48 {
  padding-left: 48px;
  padding-right: 48px;
}

.p-h-64 {
  padding-left: 64px;
  padding-right: 64px;
}

.p-b-0 {
  padding-bottom: 0;
}

.p-t-0 {
  padding-top: 0;
}

.p-l-0 {
  padding-left: 0;
}

.p-r-0 {
  padding-right: 0;
}

.p-b-4 {
  padding-bottom: 4px;
}

.p-t-4 {
  padding-top: 4px;
}

.p-l-4 {
  padding-left: 4px;
}

.p-r-4 {
  padding-right: 4px;
}

.p-b-8 {
  padding-bottom: 8px;
}

.p-t-8 {
  padding-top: 8px;
}

.p-l-8 {
  padding-left: 8px;
}

.p-r-8 {
  padding-right: 8px;
}

.p-b-16 {
  padding-bottom: 16px;
}

.p-t-16 {
  padding-top: 16px;
}

.p-l-16 {
  padding-left: 16px;
}

.p-r-16 {
  padding-right: 16px;
}

.p-b-32 {
  padding-bottom: 32px;
}

.p-t-32 {
  padding-top: 32px;
}

.p-l-32 {
  padding-left: 32px;
}

.p-r-32 {
  padding-right: 32px;
}

.p-b-48 {
  padding-bottom: 48px;
}

.p-t-48 {
  padding-top: 48px;
}

.p-l-48 {
  padding-left: 48px;
}

.p-r-48 {
  padding-right: 48px;
}

.p-b-64 {
  padding-bottom: 64px;
}

.p-t-64 {
  padding-top: 64px;
}

.p-l-64 {
  padding-left: 64px;
}

.p-r-64 {
  padding-right: 64px;
}

/*#endregion */
/*#region [margins] */
.m-0 {
  margin: 0;
}

.m-4 {
  margin: 4px;
}

.m-8 {
  margin: 8px;
}

.m-16 {
  margin: 16px;
}

.m-32 {
  margin: 32px;
}

.m-48 {
  margin: 48px;
}

.m-64 {
  margin: 64px;
}

.m-v-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.m-v-4 {
  margin-top: 4px;
  margin-bottom: 4px;
}

.m-v-8 {
  margin-top: 8px;
  margin-bottom: 8px;
}

.m-v-16 {
  margin-top: 16px;
  margin-bottom: 16px;
}

.m-v-32 {
  margin-top: 32px;
  margin-bottom: 32px;
}

.m-v-48 {
  margin-top: 48px;
  margin-bottom: 48px;
}

.m-v-64 {
  margin-top: 64px;
  margin-bottom: 64px;
}

.m-h-0 {
  margin-left: 0;
  margin-right: 0;
}

.m-h-4 {
  margin-left: 4px;
  margin-right: 4px;
}

.m-h-8 {
  margin-left: 8px;
  margin-right: 8px;
}

.m-h-16 {
  margin-left: 16px;
  margin-right: 16px;
}

.m-h-32 {
  margin-left: 32px;
  margin-right: 32px;
}

.m-h-48 {
  margin-left: 48px;
  margin-right: 48px;
}

.m-h-64 {
  margin-left: 64px;
  margin-right: 64px;
}

.m-t-1 {
  margin-top: 1px;
}

.m-b-1 {
  margin-bottom: 1px;
}

.m-l-1 {
  margin-left: 1px;
}

.m-r-1 {
  margin-right: 1px;
}

.m-t-0 {
  margin-top: 0;
}

.m-b-0 {
  margin-bottom: 0;
}

.m-l-0 {
  margin-left: 0;
}

.m-r-0 {
  margin-right: 0;
}

.m-t-4 {
  margin-top: 4px;
}

.m-b-4 {
  margin-bottom: 4px;
}

.m-l-4 {
  margin-left: 4px;
}

.m-r-4 {
  margin-right: 4px;
}

.m-t-8 {
  margin-top: 8px;
}

.m-b-8 {
  margin-bottom: 8px;
}

.m-l-8 {
  margin-left: 8px;
}

.m-r-8 {
  margin-right: 8px;
}

.m-b-16 {
  margin-bottom: 16px;
}

.m-t-16 {
  margin-top: 16px;
}

.m-l-16 {
  margin-left: 16px;
}

.m-r-16 {
  margin-right: 16px;
}

.m-b-32 {
  margin-bottom: 32px;
}

.m-t-32 {
  margin-top: 32px;
}

.m-l-32 {
  margin-left: 32px;
}

.m-r-32 {
  margin-right: 32px;
}

.m-b-48 {
  margin-bottom: 48px;
}

.m-t-48 {
  margin-top: 48px;
}

.m-l-48 {
  margin-left: 48px;
}

.m-r-48 {
  margin-right: 48px;
}

.m-b-64 {
  margin-bottom: 64px;
}

.m-t-64 {
  margin-top: 64px;
}

.m-l-64 {
  margin-left: 64px;
}

.m-r-64 {
  margin-right: 64px;
}

.m-b-96 {
  margin-bottom: 96px;
}

.m-t-96 {
  margin-top: 96px;
}

.m-l-96 {
  margin-left: 96px;
}

.m-r-96 {
  margin-right: 96px;
}

.-m-t-4 {
  margin-top: -4px;
}

.-m-t-8 {
  margin-top: -8px;
}

.-m-t-16 {
  margin-top: -16px;
}

.-m-t-24 {
  margin-top: -24px;
}

.-m-t-32 {
  margin-top: -32px;
}

.-m-t-48 {
  margin-top: -48px;
}

.-m-t-64 {
  margin-top: -64px;
}

.-m-t-128 {
  margin-top: -128px;
}

/*#endregion */
/*#region [max-min]*/
.min-h-8 {
  min-height: 8px;
}

.min-h-16 {
  min-height: 16px;
}

.min-h-24 {
  min-height: 24px;
}

.min-h-32 {
  min-height: 32px;
}

.min-h-48 {
  min-height: 48px;
}

.min-h-64 {
  min-height: 64px;
}

.min-h-96 {
  min-height: 96px;
}

.min-h-128 {
  min-height: 128px;
}

.min-h-192 {
  min-height: 192px;
}

.min-h-256 {
  min-height: 256px;
}

.min-h-382 {
  min-height: 382px;
}

.min-h-512 {
  min-height: 512px;
}

.max-h-8 {
  max-height: 8px;
}

.max-h-16 {
  max-height: 16px;
}

.max-h-24 {
  max-height: 24px;
}

.max-h-32 {
  max-height: 32px;
}

.max-h-48 {
  max-height: 48px;
}

.max-h-64 {
  max-height: 64px;
}

.max-h-96 {
  max-height: 96px;
}

.max-h-128 {
  max-height: 128px;
}

.max-h-192 {
  max-height: 192px;
}

.max-h-256 {
  max-height: 256px;
}

.max-h-382 {
  max-height: 382px;
}

.max-h-512 {
  max-height: 512px;
}

/*#endregion*/
/*#region [pages]*/
/*--[ Home ]--------------------------------------------------*/
#home-content .cover {
  background-color: #607d8b;
  color: #fff;
  text-align: center;
  height: 768px;
  height: 100vh;
}

#home-content .cover img {
  height: 35%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, calc(-50% - 64px));
  -moz-transform: translate(-50%, calc(-50% - 64px));
  -o-transform: translate(-50%, calc(-50% - 64px));
  -ms-transform: translate(-50%, calc(-50% - 64px));
  transform: translate(-50%, calc(-50% - 64px));
}

#home-content .cover .item .content {
  min-height: 96px;
}

#home-content #footer {
  float: left;
  width: 100%;
}

#home-content #footer .container-logo img {
  height: 128px;
}

#home-content #footer ul {
  list-style: none;
  font-size: 20px;
  padding: 0;
}

#home-content #footer .medias-sociais li {
  display: inline-block;
}

/*--[ login ]--------------------------------------------------*/
#login-content .cover {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #607d8b;
  color: #fff;
  text-align: center;
}

#login-content .cover img {
  height: 140px;
  margin-top: 64px;
}

#login-content .form {
  background-color: #fff;
  color: #757575;
  width: 380px;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

#login-content .form .logo .material-icons {
  font-size: 100px;
}

#login-content .form input[type=submit] {
  width: 100%;
}

#login-content textarea {
  line-height: 1;
  font-size: 11px;
}

/*--[ About ]--------------------------------------------------*/
#about-content .cover {
  background-color: #607d8b;
  color: #fff;
  text-align: center;
}

#about-content .cover img {
  height: 128px;
  margin: 60px 0;
}

/*--[ modules ]------------------------------------------------*/
#modules .card p:first-of-type {
  min-height: 150px;
  vertical-align: top;
}

#modules > div > div > div:nth-child(1) div.banner {
  -webkit-filter: opacity(0.9);
  filter: opacity(0.9);
}

#modules > div > div > div:nth-child(2) div.banner {
  -webkit-filter: opacity(0.8);
  filter: opacity(0.8);
}

#modules > div > div > div:nth-child(3) div.banner {
  -webkit-filter: opacity(0.7);
  filter: opacity(0.7);
}

#modules .card .banner, #modules .card {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#modules .card:hover .banner {
  padding: 32px calc(50% - 64px);
  -webkit-filter: opacity(1);
  filter: opacity(1);
}

#modules .card:hover {
  box-shadow: 0 1px 15px rgba(0, 0, 0, 0.25);
}

/*--[ Config ]-------------------------------------------------*/
#config-content .item-color {
  display: block;
  float: left;
  height: 32px;
  width: 32px;
  border: solid 1px #f0f0f0;
}

#config-content .selected {
  border: solid 4px #f0f0f0;
}

::-webkit-inner-spin-button, ::-webkit-calendar-picker-indicator {
  background: none;
  color: rgba(255, 255, 255, 0.9);
}

::-webkit-inner-spin-button {
  display: none;
}

/*#endregion*/
/*#region report */
#report-paper {
  margin: 32px;
  padding: 32px;
  font-family: "Roboto Condensed", sans-serif !important;
  background: #fff;
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
}

#report-paper h1,
#report-paper h2,
#report-paper h3,
#report-paper h4,
#report-paper h5,
#report-paper h6 {
  font-family: "Roboto Condensed", sans-serif !important;
}

#report-paper .card,
#report-paper .card-report {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

#report-paper .card .mark-t-primary,
#report-paper .card-report .mark-t-primary {
  border-top-color: #000;
}

#report-paper * {
  color: #000;
}

#report-paper table {
  width: 100% !important;
}

#report-paper table,
#report-paper table td,
#report-paper table th {
  border-color: rgb(0, 0, 0) !important;
}

#report-paper .table > tbody > tr > td,
#report-paper .table > tbody > tr > th,
#report-paper .table > tfoot > tr > th {
  white-space: nowrap;
  overflow: hidden;
  width: auto;
  text-overflow: ellipsis;
  vertical-align: middle !important;
}

#report-paper .widecol {
  min-width: 130px !important;
}

/*#endregion*/
