/*cores
	Azul: #0044ac
	Azul Escuro: #03193b
  linear-gradient(180deg,rgba(0,68,172,.83),#03193b)
*/

:root {
  --color-primary: #0044ac;
  --color-secundary: #03193b;
  --color-ativo: #05c535;

  --color-pendente: #827ca1;
  --color-cotado: #1b5e20;
  --color-negociacao: #ff0000;
  --color-vendido: #05c535;
  --color-parcialmente-vendido: #689f38;
  --color-desistencia: #e8edf2;
  --color-entregue: #64b5f6;

  --color-grafico: rgba(80, 140, 214, 0.8);

  --color-title: #373435;
  --color-text: #4a4f55;
  --color-input: #827ca1;
  --color-placeholder: rgba(55, 71, 95, 0.3);
  --color-background: #ffffff;
  --color-backgrund-filtro: #e8edf2;
  --color-background: #f2f4f8;
}

/** DIVERSAS PERSONALIZAÇÕES BASE ================================ **/
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #827ca1;
  border-radius: 4px;
}

.container {
  width: 90%;
}

@media (max-width: 600px) {
  .container {
    width: 100%;
  }

  .row .col-container {
    padding: 0;
  }
}

*,
a,
a:link,
a:hover,
a:visited,
a:active {
  text-decoration: none;
  outline: none;
}

.animate,
.animate-inverse {
  transition-duration: 0.3s;
  transform: scale(1);
  -webkit-transition-duration: 0.3s;
  -webkit-transform: scale(1);
}

.animate:hover {
  transition-duration: 0.3s;
  transform: scale(1.1);
  -webkit-transition-duration: 0.3s;
  -webkit-transform: scale(1.1);
}

.animate-inverse:hover {
  transition-duration: 0.3s;
  transform: scale(0.9);
  -webkit-transition-duration: 0.3s;
  -webkit-transform: scale(0.9);
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee;
}

*::-moz-selection {
  background: #0044ac;
  color: #fff;
}

*::selection {
  background: #0044ac;
  color: #fff;
}

/**
** FORM
***************************************/
/* Style Placeholders */
::-webkit-input-placeholder {
  color: #d1d1d1;
}

::-moz-placeholder {
  color: #d1d1d1;
}

:-ms-input-placeholder {
  color: #d1d1d1;
}

::-ms-input-placeholder {
  color: #d1d1d1;
}

::placeholder {
  color: #d1d1d1;
}

/* Text inputs */
input:not([type]),
input[type='text']:not(.browser-default),
input[type='password']:not(.browser-default),
input[type='email']:not(.browser-default),
input[type='url']:not(.browser-default),
input[type='time']:not(.browser-default),
input[type='date']:not(.browser-default),
input[type='datetime']:not(.browser-default),
input[type='datetime-local']:not(.browser-default),
input[type='tel']:not(.browser-default),
input[type='number']:not(.browser-default),
input[type='search']:not(.browser-default),
textarea.materialize-textarea {
  /* background-color: #ffffff; */
  border: 1px solid #03193b;
  border-radius: 2px;
  height: 2.9rem;
  width: calc(100% - 18px);
  padding: 0 8px;
  font-weight: 400;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

/* Focus Inputs */
input:not([type]):focus:not([readonly]),
input[type='text']:not(.browser-default):focus:not([readonly]),
input[type='password']:not(.browser-default):focus:not([readonly]),
input[type='email']:not(.browser-default):focus:not([readonly]),
input[type='url']:not(.browser-default):focus:not([readonly]),
input[type='time']:not(.browser-default):focus:not([readonly]),
input[type='date']:not(.browser-default):focus:not([readonly]),
input[type='datetime']:not(.browser-default):focus:not([readonly]),
input[type='datetime-local']:not(.browser-default):focus:not([readonly]),
input[type='tel']:not(.browser-default):focus:not([readonly]),
input[type='number']:not(.browser-default):focus:not([readonly]),
input[type='search']:not(.browser-default):focus:not([readonly]),
textarea.materialize-textarea:focus:not([readonly]) {
  border: 1px solid #03193b;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

/* Valid Inputs */
input.valid:not([type]),
input.valid:not([type]):focus,
input.valid[type='text']:not(.browser-default),
input.valid[type='text']:not(.browser-default):focus,
input.valid[type='password']:not(.browser-default),
input.valid[type='password']:not(.browser-default):focus,
input.valid[type='email']:not(.browser-default),
input.valid[type='email']:not(.browser-default):focus,
input.valid[type='url']:not(.browser-default),
input.valid[type='url']:not(.browser-default):focus,
input.valid[type='time']:not(.browser-default),
input.valid[type='time']:not(.browser-default):focus,
input.valid[type='date']:not(.browser-default),
input.valid[type='date']:not(.browser-default):focus,
input.valid[type='datetime']:not(.browser-default),
input.valid[type='datetime']:not(.browser-default):focus,
input.valid[type='datetime-local']:not(.browser-default),
input.valid[type='datetime-local']:not(.browser-default):focus,
input.valid[type='tel']:not(.browser-default),
input.valid[type='tel']:not(.browser-default):focus,
input.valid[type='number']:not(.browser-default),
input.valid[type='number']:not(.browser-default):focus,
input.valid[type='search']:not(.browser-default),
input.valid[type='search']:not(.browser-default):focus,
textarea.materialize-textarea.valid,
textarea.materialize-textarea.valid:focus,
.select-wrapper.valid > input.select-dropdown {
  border: 1px solid black;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

/* Invalid Inputs */
input.invalid:not([type]),
input.invalid:not([type]):focus,
input.invalid[type='text']:not(.browser-default),
input.invalid[type='text']:not(.browser-default):focus,
input.invalid[type='password']:not(.browser-default),
input.invalid[type='password']:not(.browser-default):focus,
input.invalid[type='email']:not(.browser-default),
input.invalid[type='email']:not(.browser-default):focus,
input.invalid[type='url']:not(.browser-default),
input.invalid[type='url']:not(.browser-default):focus,
input.invalid[type='time']:not(.browser-default),
input.invalid[type='time']:not(.browser-default):focus,
input.invalid[type='date']:not(.browser-default),
input.invalid[type='date']:not(.browser-default):focus,
input.invalid[type='datetime']:not(.browser-default),
input.invalid[type='datetime']:not(.browser-default):focus,
input.invalid[type='datetime-local']:not(.browser-default),
input.invalid[type='datetime-local']:not(.browser-default):focus,
input.invalid[type='tel']:not(.browser-default),
input.invalid[type='tel']:not(.browser-default):focus,
input.invalid[type='number']:not(.browser-default),
input.invalid[type='number']:not(.browser-default):focus,
input.invalid[type='search']:not(.browser-default),
input.invalid[type='search']:not(.browser-default):focus,
textarea.materialize-textarea.invalid,
textarea.materialize-textarea.invalid:focus,
.select-wrapper.invalid > input.select-dropdown,
.select-wrapper.invalid > input.select-dropdown:focus {
  border: 1px solid #f44336;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

input:not([type]):focus:not([readonly]) + label,
input[type='text']:not(.browser-default):focus:not([readonly]) + label,
input[type='password']:not(.browser-default):focus:not([readonly]) + label,
input[type='email']:not(.browser-default):focus:not([readonly]) + label,
input[type='url']:not(.browser-default):focus:not([readonly]) + label,
input[type='time']:not(.browser-default):focus:not([readonly]) + label,
input[type='date']:not(.browser-default):focus:not([readonly]) + label,
input[type='datetime']:not(.browser-default):focus:not([readonly]) + label,
input[type='datetime-local']:not(.browser-default):focus:not([readonly])
  + label,
input[type='tel']:not(.browser-default):focus:not([readonly]) + label,
input[type='number']:not(.browser-default):focus:not([readonly]) + label,
input[type='search']:not(.browser-default):focus:not([readonly]) + label,
textarea.materialize-textarea:focus:not([readonly]) + label {
  color: black;
}

.select-wrapper input.select-dropdown:focus {
  border: 1px solid #03193b;
}

textarea {
  height: 100px;
  padding: 10px;
}

.input-field {
  margin: 0;
}

/* DROPDOWN SELECT*/
.dropdown-content.select-dropdown {
  position: absolute;
  left: 0;
  top: -45px;
  height: auto;
  background: none;
  min-width: 260px;
  width: auto;
  border: 1 solid rgba(31, 45, 61, 0);
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.dropdown-content.select-dropdown:before {
  position: absolute;
  content: ' ';
  display: inline-block;
  vertical-align: middle;
  margin-right: 0px;
  width: 0;
  height: 0;
  top: 0px;
  left: 20px;
  z-index: 99999;
}

.select-dropdown li {
  min-height: auto;
  background: #fff;
}

.select-dropdown li:hover {
  background: var(--color-backgrund-filtro);
  background: #fff;
}

.select-dropdown li:first-child {
  overflow: hidden;
  display: inherit;
  border-radius: 8px 8px 0 0;
}

.select-dropdown .dropdown-content a {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--color-title) !important;
  background: #fff;
  padding: 8px 16px;
}

.dropdown-content.select-dropdown a span {
  color: var(--color-title) !important;
  height: 24px;
  width: 58px;
}

.dropdown-content.select-dropdown li > span {
  color: var(--color-title) !important;
  background: #fff;
}

.dropdown-content.select-dropdown li:hover > span {
  background: var(--color-backgrund-filtro);
}

.dropdown-content a i,
.dropdown-content a img {
  height: 24px;
  line-height: 24px;
  margin-right: 0;
}

.dropdown-content.select-dropdown li:first-child a {
  padding-top: 8px;
}

.dropdown-content.select-dropdown li:last-child a {
  padding-bottom: 8px;
}

.dropdown-content.select-dropdown
  li:hover
  .dropdown-content.select-dropdown
  a:hover {
  color: var(--color-secundary) !important;
  background: var(--color-background) !important;
}

/* DROPDOWN */
.dropdown-content.acao {
  position: absolute;
  top: -10px;
  background: none;
  min-width: 220px;
  padding-top: 7px;
  border-radius: 0.375rem;
  border: 0 solid rgba(31, 45, 61, 0);
  box-shadow: 0 10px 30px 0 rgba(31, 45, 61, 0.1);
}

.dropdown-content.acao:before {
  position: absolute;
  content: ' ';
  display: inline-block;
  vertical-align: middle;
  margin-right: 0px;
  width: 0;
  height: 0;
  top: 0px;
  right: 20px;
  z-index: 999;

  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid white;
}

.dropdown-content.acao li {
  min-height: 0;
}

.dropdown-content.acao li:first-child {
  border-radius: 3px 3px 0 0;
  overflow: hidden;
}

.dropdown-content.acao li:last-child {
  border-radius: 0 0 3px 3px;
  padding-bottom: 5px;
  background-color: white;
}

.dropdown-content.acao a {
  color: #666;
  background: #fff;
  padding: 5px 15px;
  font-size: 15px;
}

.dropdown-content.acao a i {
  height: initial;
  line-height: initial;
  margin: 0 10px 0 0;
}

.dropdown-content.acao li:hover,
.dropdown-content.acao a:hover {
  color: #000;
  background: #fff;
}

.dropdown-content.acao form.destroy {
  margin-left: 0;
  width: 100%;
}

[type='radio']:checked + span:after,
[type='radio'].with-gap:checked + span:after {
  background-color: #03193b;
}

[type='radio']:checked + span:after,
[type='radio'].with-gap:checked + span:before,
[type='radio'].with-gap:checked + span:after {
  border: 2px solid #03193b;
}

[type='checkbox']:checked + span:not(.lever):before {
  border-right: 2px solid #03193b;
  border-bottom: 2px solid #03193b;
}

.switch label input[type='checkbox']:checked + .lever {
  background-color: #06242e;
}

.switch label input[type='checkbox']:checked + .lever:after {
  background-color: #03193b;
}

.switch.box {
  border: 1px solid var(--color-secundary);
  padding: 10px 5px;
  text-align: left;
  margin: 5px 0;
  border-radius: 6px;
}

.switch.box span.lever {
  float: right;
  margin-top: 4px;
}

@media (max-width: 992px) {
  .switch {
    padding: 10px 5px;
  }

  .switch span.lever {
    float: right;
    margin-top: 4px;
  }
}

input[type='text'].input-disabled,
input[type='email'].input-disabled,
.input-disabled {
  background-color: #e8edf2;
  border-color: #e8edf2;
  pointer-events: none;
}

/* DATEPICKER */
.datepicker-controls .select-month input {
  border: none !important;
  padding: 0;
  width: 70px;
}

.datepicker-controls .select-year input {
  border: none !important;
  padding: 0;
  width: 50px;
}

.datepicker-date-display {
  background: #0044ac;
}

.datepicker-cancel,
.datepicker-clear,
.datepicker-today,
.datepicker-done {
  color: #0044ac;
}

.datepicker-table td.is-selected {
  background-color: #0044ac;
}

.datepicker-table td.is-today {
  color: #0044ac;
}

.datepicker-table thead > tr > th:first-child,
.datepicker-table tbody > tr > td:first-child {
  padding-left: 0;
}

.datepicker-table tbody > tr > td:last-child {
  padding-right: 0;
}

.dropify-wrapper {
  height: 120px;
}

/* BUTTOM */
form.destroy {
  float: left;
  margin-left: 5px;
}

.btn-acao {
  background-color: transparent;
  border-radius: 10em;
  box-shadow: none;
  border: 1px solid #0044ac;
  color: #0044ac;
  font-size: small;
  height: 30px;
  line-height: 28px;
  padding: 0 15px;
  float: left;
}

.btn-acao:hover {
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.btn-acao:focus {
  background: #ffffff;
}

.btn-acao-default {
  border: 1px solid var(--color-input);
  color: var(--color-input);
}

.icone-produto {
  background: var(--color-backgrund-filtro);
  padding: 10px;
}

.btn-custom {
  background: #0044ac;
  padding: 7px 20px;
  height: auto;
}

.btn-search {
  background: #0044ac;
}

.btn-pdf,
.btn-excluir {
  border: 1px solid #ff0000;
  color: #ff0000;
}

.btn-search:focus,
.btn-search:hover,
.btn-custom:focus,
.btn-custom:hover {
  background: #03193b;
}

@media (max-width: 992px) {
  .btn-custom {
    width: 100%;
  }
}

.row.rb-0,
.row.rb0,
.row.row-bottom-0 {
  margin-bottom: 0;
}

label {
  width: 100%;
}

.help-block {
  color: red;
  font-size: 0.8rem;
  margin-top: -10px;
  margin-bottom: 10px;
}

#showPassword {
  color: #06242e;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 45%;
}

/** HTML, BODY ======================================== **/
html,
body {
  letter-spacing: 0.3px;
  background-color: #e8edf2;

  position: relative;
  overflow-x: hidden;
  color: #03193b;
  height: 100%;
  width: 100%;
}

.loadie {
  transition: width 0.5s ease-out;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.25);
  background-color: #0044ac;
  position: absolute;
  z-index: 99999;
  height: 3px;
  width: 0;
  left: 0;
  top: 0;
}

/** AUTH ======================================== **/
.auth {
  background: url('../images/bg_body.jpg') 0 0 rgba(255, 255, 255, 1);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
}

.auth .login {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  width: 500px;
  margin: 0 auto;
}

.auth .login .login-header {
  text-align: center;
  overflow: hidden;
  display: block;
}

.auth .login .login-header img {
  max-width: 250px;
  max-height: 100px;
  margin-bottom: 60px;
}

.auth .login .login-header small {
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  color: #827ca1;
}

.auth .login form {
  padding: 0 50px 10px;
}

.auth .login form input[name='nome'] {
  background: url('../images/input_lab.png') 0 2px no-repeat #fff;
  padding-left: 50px;
  width: calc(100% - 58px);
}

.auth .login form input[name='email'] {
  background: url('../images/input_user.png') 0 2px no-repeat #fff;
  padding-left: 50px;
  width: calc(100% - 58px);
}

.auth .login form input[name='password'],
.auth .login form input[name='password_confirmation'] {
  background: url('../images/input_password.png') 0 2px no-repeat #fff;
  padding-left: 50px;
  width: calc(100% - 58px);
}

.auth .login form button {
  margin-top: 20px;
  width: 100%;
  background: #03193b;
}

.auth .login form button:hover {
  background: #0044ac;
}

.auth .login .login-footer {
  margin: 20px 0;
  text-align: center;
}

.auth .login .login-footer a {
  text-decoration: none;
  color: #03193b;
}

.auth .login .login-footer a:hover {
  color: #0044ac;
}

@media (max-width: 992px) {
  .auth .login {
    width: 100%;
    max-width: 500px;
    float: none;
    margin: 0 auto;
  }
}

/** HEADER ======================================== **/
header {
  position: relative;
  z-index: 2;
}

header.navbar-fixed,
header .brand-logo {
  height: 70px;
}

header .brand-logo img {
  width: 100px;
  margin: 22px 0 0 45px;
}

header nav {
  padding: 0 20px;
  background-color: #ffffff;
  background: url('../images/bg_body.jpg') 0 0 rgba(255, 255, 255, 1);
  box-shadow: 0 0 13px rgba(0, 0, 0, 0.13);
  height: 70px;
  line-height: 70px;
}

header nav ul a {
  color: #03193b;
}

header nav .nav-wrapper i {
  height: 70px;
  line-height: 70px;
  color: #03193b;
}

header img.avatar {
  float: left;
  margin: 20px 10px 15px 0;
}

header .active.logout {
  background: #0044ac;
}

header nav .nav-wrapper .active.logout i {
  color: #ffffff;
}

header nav ul.menu-central {
  max-width: 695px;
  margin: auto;
}

header nav ul.menu-central li i {
  font-size: 18px;
  color: #827ca1;
  margin-right: 5px;
}

header nav ul.menu-central li:last-child a {
  display: block;
  height: 70px;
  line-height: 70px;
  margin: 0;
}

header .menu-options {
  position: relative;
  text-align: center;
  line-height: 25px;
  font-size: 18px;
  cursor: pointer;
  float: left;
  top: 20px;
  left: 220px;
  height: 25px;
  width: 25px;
  color: #03193b;

  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

header .menu-action {
  position: absolute;
  height: 12px;
  width: 14px;
  top: 50%;
  left: 0;

  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

header .menu-action::after {
  background: #8296a4 none repeat scroll 0 0;

  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;

  position: absolute;
  content: '';
  height: 2px;
  bottom: 0;
  left: 0;

  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  width: 100%;
}

header .menu-options.active .menu-action::after {
  bottom: 6px;

  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

header .menu-action::before {
  background: #8296a4 none repeat scroll 0 0;
  position: absolute;
  content: '';
  height: 2px;
  left: 0;
  top: 0;

  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;

  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  width: 100%;
}

header .menu-options.active .menu-action::before {
  top: 4px;

  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

header .menu-action > i {
  position: absolute;
  height: 3px;
  top: 50%;
  left: 0;

  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);

  width: 20px;
}

header .menu-action > i::before {
  background: #8296a4 none repeat scroll 0 0;

  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;

  position: absolute;
  content: '';
  height: 2px;
  left: 0;
  top: 34px;

  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  width: 100%;
}

header .menu-options.active .menu-action > i::before {
  opacity: 0;
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -o-transform: scale(0.5);
  transform: scale(0.5);
}

/* DORPDOWN */
header .dropdown-content {
  position: absolute;
  left: 0;
  top: -75px;
  height: auto;
  background: none;
  min-width: 260px;
  width: auto;
  /* padding-top: 7px; */
  border: 1 solid rgba(31, 45, 61, 0);
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.1);

  border-radius: 8px;
}

header .dropdown-content:before {
  position: absolute;
  content: ' ';
  display: inline-block;
  vertical-align: middle;
  margin-right: 0px;
  width: 0;
  height: 0;
  top: 0px;
  left: 20px;
  z-index: 99999;
}

header .dropdown-content li {
  min-height: auto;
}

header .dropdown-content li:hover {
  background: transparent;
}

header .dropdown-content li:first-child {
  overflow: hidden;
  display: inherit;
  border-radius: 8px 8px 0 0;
}

header .dropdown-content a {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--color-title) !important;
  background: #fff;
  padding: 8px 16px;
}

header .dropdown-content a span {
  height: 24px;
  width: 58px;
}

header .dropdown-content a i,
header .dropdown-content a img {
  height: 24px;
  line-height: 24px;
  margin-right: 0;
}

header .dropdown-content li:first-child a {
  padding-top: 8px;
}

header .dropdown-content li:last-child a {
  padding-bottom: 8px;
}

header .dropdown-content a:hover {
  color: var(--color-secundary) !important;
  background: var(--color-background) !important;
}

.sidenav .user-view img.avatar {
  padding: 2px;
  border: 2px solid #03193b;
}

@media (max-width: 992px) {
  header .menu-options {
    display: none;
  }

  header .brand-logo img {
    margin: 22px 0 0 -45px;
  }
}

#sidenav-lancamento-edit .icone-calendario,
#sidenav-lancamento-create .icone-calendario {
  position: absolute;
  top: 10px;
  right: 5px;
}

/** SIDEBAR ==================================== **/
.sidebar {
  -webkit-box-shadow: 0px 0px 50px rgba(36, 34, 47, 0.3);
  box-shadow: 0px 0px 50px rgba(36, 34, 47, 0.3);
  background: #ffffff;
  position: fixed;
  height: 100%;
  width: 280px;
  z-index: 1;
  white-space: nowrap;
  overflow-y: scroll;
  overflow-x: hidden;
  padding-top: 75px;
  top: 0;
  left: 0;

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;

  display: flex;
  flex-direction: column;
}

.sidebar ul:first-child {
  flex-grow: 1;
}

.sidebar::-webkit-scrollbar {
  width: 5px;
}

.sidebar::-webkit-scrollbar-button {
  width: 8px;
}

.sidebar::-webkit-scrollbar-track {
  border-radius: 0;
  background: #ffffff;
  box-shadow: 0;
  border: 0;
}

.sidebar::-webkit-scrollbar-thumb {
  background: #ffffff;
}

.sidebar:hover::-webkit-scrollbar-thumb {
  border-radius: 10px;
  margin-right: 5px;
  background: #827ca1;
}

.sidebar hr {
  margin-right: 20px;
  margin-left: 20px;
  border-top: 1px solid #eeeeee;
}

.sidebar > ul {
  margin: 20px 0 20px;
  list-style: none;
  width: 100%;
  padding: 0;
}

.sidebar ul li {
  display: block;
}

.sidebar ul li a {
  margin: 0 15px;
  padding: 10px;
  border-radius: 6px;
  font-weight: 600;
  display: block;
  color: #827ca1;
  outline: none;
  position: relative;
  overflow: hidden;

  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.sidebar ul li.sub-menu > a:after {
  transition: all 0.1s ease-in-out;
  display: block;
  content: '';
  width: 0px;
  height: 0px;
  border-width: 5px 0px 5px 5px;
  border-color: transparent transparent transparent #d2d9e5;
  border-style: solid;
  position: absolute;
  top: 17px;
  right: 20px;
}

.sidebar ul li span {
  display: block;
  padding: 0 0 10px 25px;
  font-size: 11px;
  color: #827ca1;
}

.submenu-ativo {
  background: #f2f4f8;
  color: #000;
}

.sidebar ul li a:hover {
  background: var(--color-backgrund-filtro);
}

.sidebar ul li a i {
  margin-right: 15px;
  font-size: 20px;
  color: #827ca1;
}

.sidebar ul ul {
  display: none;
  background: #f2f4f8;
  margin: 0;
}

.sidebar ul ul a {
  padding: 10px 60px 0;
}

.sidebar ul ul li:last-child a {
  padding: 10px 60px;
}

.sidebar ul li.link-site a {
  background: var(--color-backgrund-filtro);
  border: 1px solid var(--color-backgrund-filtro);
  margin: 0 15px;
  padding: 10px 6px;
  text-align: center;
  border-radius: 6px;
}

.sidebar ul li.link-site a:hover {
  border: 1px solid var(--color-input);
}

.sidebar li.versao {
  color: var(--color-input);
  font-size: small;
  text-align: center;
}

/** EFEITO SIDEBAR ======================================== **/
.main-container {
  padding: 0;
  float: left;
  width: 100%;

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.sidebar-toggle {
  left: -280px;
}

.main-toggle {
  padding: 0;
}

@media (max-width: 992px) {
  .sidebar {
    display: none;
  }

  .sidebar-toggle {
    left: 0;
  }

  .main-container {
    padding: 0;
  }
}

/** SIDENAV RIGHT ===================================== **/
.sidenav-right {
  width: 100%;
  max-width: 450px;
}

.sidenav-right .sidenav-container {
  padding: 40px;
}

.sidenav-right h2.titulo {
  display: flex;
  align-items: center;
  margin: 0 0 10px 0;
  font-size: 22px;
  color: var(--color-title);
}

.sidenav-right ul {
  margin-top: 20px;
}

.sidenav-right ul li {
  margin-bottom: 8px;
  padding: 0;
}

.sidenav-right ul li a {
  background: var(--color-backgrund-filtro);
  border: 1px solid var(--color-backgrund-filtro);
  border-radius: 8px;
  height: 56px;
  line-height: 56px;
  transition: all 0.3s;
}

.sidenav-right ul li a:hover {
  background: var(--color-backgrund-filtro);
  border: 1px solid var(--color-input);
}

.sidenav-right ul li a i.material-icons {
  height: 56px;
  line-height: 56px;
  color: var(--color-input);
}

.sidenav-right .form-transacao {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 10px 0 20px;
}

.sidenav-right .form-transacao label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--color-backgrund-filtro);
}

.sidenav-right .form-transacao label span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  color: #03193b;
  width: 100%;
  margin: 0;
  padding: 24px 0;
}

.sidenav-right .form-transacao [type='radio'] + span::before,
.sidenav-right .form-transacao [type='radio']:not(:checked) + span::before,
.sidenav-right .form-transacao [type='radio']:checked + span:after,
.sidenav-right .form-transacao [type='radio'].with-gap:checked + span:after {
  content: none;
  margin: 0;
  padding: 0;
  height: 0;
  width: 0;
}

.sidenav-right .form-transacao label.label-in span i {
  color: rgb(22 163 74 / 1) !important;
}

.sidenav-right .form-transacao label.label-out span i {
  color: rgb(220 38 38 / 1) !important;
}

.sidenav-right .form-transacao label.label-in [type='radio']:checked + span {
  background-color: rgb(187 247 208 / 1);
}

.sidenav-right .form-transacao label.label-out [type='radio']:checked + span {
  background-color: rgb(254 202 202 / 1);
}

.sidenav-right a.closeLancamento {
  background: #fff;
  box-shadow: none;
  color: #0044ac;
  padding: 7px 0;
  margin: 16px 0 0;
  width: 100%;
  height: auto;
}

/** BADGE ======================================== **/
span.badge {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 2px 10px;
  height: auto;
  line-height: 1.25rem;
  border-radius: 40px;
}

span.badge i {
  font-size: 1rem;
  margin-right: 10px;
}

span.badge-in {
  background-color: rgb(187 247 208 / 1);
  color: rgb(22 163 74 / 1) !important;
}

span.badge-out {
  background-color: rgb(254 202 202 / 1) !important;
  color: rgb(220 38 38 / 1) !important;
}

span.badge.aberto {
  background-color: rgb(170, 202, 243);
  color: var(--color-primary) !important;
  text-transform: capitalize;
}

span.badge.aprovado {
  background-color: rgb(187 247 208 / 1);
  color: rgb(22 163 74 / 1) !important;
  text-transform: capitalize;
}

span.badge.cancelado {
  background-color: rgb(254 202 202 / 1) !important;
  color: rgb(220 38 38 / 1) !important;
  text-transform: capitalize;
}

/** PANEL ======================================== **/
.panel {
  background-color: #ffffff;
  margin-bottom: 20px;
}

.panel > .panel-header {
  padding: 20px 30px;
  border-bottom: 1px solid #ddd;
}

.panel > .panel-header > h2 {
  font-size: 20px;
  text-align: left;
  line-height: 30px;
  margin: 0;
}

.panel > .panel-header > h2 a {
  margin-left: 8px;
}

.panel > .panel-body {
  padding: 20px;
}

.panel > .panel-header .resumo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 0 16px;
}

.panel > .panel-header .resumo span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 600;

  color: rgb(22, 111, 163) !important;
  background-color: rgb(187, 215, 247);
}

.panel > .panel-header .resumo span i {
  font-size: 1rem;
  margin-right: 10px;
  font-weight: 600;
}

.panel > .panel-header .resumo span.entradas {
  color: rgb(22 163 74 / 1) !important;
  background-color: rgb(187 247 208 / 1);
}

.panel > .panel-header .resumo span.saidas {
  color: rgb(220 38 38 / 1) !important;
  background-color: rgb(254 202 202 / 1) !important;
}

@media (min-width: 1100px) {
  .panel > .panel-header .resumo {
    margin: 0 0 0 80px;
  }
}

@media (max-width: 992px) {
  .panel > .panel-header {
    padding: 20px 10px;
  }

  .panel > .panel-header > h2 {
    font-size: 16px;
    text-align: left;
  }

  .panel > .panel-header > h2 a {
    padding: 0 8px;
  }

  .panel > .panel-header > h2 a i {
    margin-right: 6px;
  }

  .panel > .panel-header .resumo {
    display: none;
  }
}

/** RESUMO MOBILE ======================================== **/
.resumo-mobile {
  display: flex;
}

.resumo-mobile > div {
  display: flex;
  gap: 6px;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
  font-weight: 600;
  color: rgb(22, 111, 163) !important;
  background-color: rgb(187, 215, 247);
}

.resumo-mobile > div i {
  font-size: 1rem;
  font-weight: 600;
}

.resumo-mobile .entradas {
  color: rgb(22 163 74 / 1) !important;
  background-color: rgb(187 247 208 / 1);
}

.resumo-mobile .saidas {
  color: rgb(220 38 38 / 1) !important;
  background-color: rgb(254 202 202 / 1) !important;
}

/** FILTROS ======================================== **/
.filtros {
  float: left;
  width: 100%;
  padding: 20px 20px 20px;
  margin: 0 0 10px;
  /* background: #f2f4f8; */
  background: var(--color-background);
}

.filtros .row {
  margin-bottom: 0;
}

.filtros input[name='like'] {
  background: url('../images/input_sharting.png') 0 2px no-repeat;
  padding-left: 50px;
  width: calc(100% - 58px);
}

.filtros button.btn {
  padding: 5px 20px 0;
  width: 100%;
}

/** MODAL FORMULÁRIO ======================================== **/
.modal-form {
  background-color: #fff;
  overflow-y: unset;
  max-height: none;
}

.modal-form h4 {
  font-size: 1.5rem;
  color: var(--color-title);
  margin-bottom: 2rem;
}

.modal-form p {
  color: var(--color-text);
}

.modal-form input.datepicker {
  background: url('../images/input_calendario.png') right 2px no-repeat #fff;
}

@media (max-width: 992px) {
  /* .modal-form {
		overflow-y: scroll;
	} */

  .modal-form .btn-acao {
    width: 100%;
  }
}

.modal-submenu {
  width: 280px;
  border-radius: 8px;
}

.modal-submenu .modal-content {
  padding: 10px;
}

.modal-submenu ul {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.modal-submenu ul a {
  margin: 0;
  padding: 10px;
  border-radius: 6px;
  font-weight: 600;
  color: var(--color-text);
  display: block;
  outline: none;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.modal-submenu ul a:hover {
  background: var(--color-backgrund-filtro);
}

/** PAINEL ======================================== **/
.painel {
  background: linear-gradient(180deg, rgba(0, 68, 172, 0.83), #03193b);
  padding: 10px 0 15px;
  color: #ffffff;
}

.painel ul.anos {
  display: block;
  margin-bottom: 30px;
  text-align: center;
}

.painel ul.anos li {
  display: inline-block;
}

.painel ul.anos li a {
  border: 1px solid #ffffff;
  color: #ffffff;
  transition: all 0.3s;
}

.painel ul.anos li a:hover {
  color: #03193b;
  box-shadow: none;
}

.painel .box {
  display: flex;
  flex-direction: column;
  /* gap: 20px; */
  border: 1px solid #fff;
  border-radius: 8px;
  padding: 16px 25px;
  margin-bottom: 16px;
}

.painel .box > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.painel .box > div i {
  font-size: 2rem;
}

.painel .box.out > div i {
  color: rgb(220 38 38 / 1) !important;
}

.painel .box.in > div i {
  color: rgb(22 163 74 / 1) !important;
}

.painel .box h4 {
  font-weight: 500;
  margin: 0;
}

.painel .item.box,
.painel .item .box {
  gap: 5px;
  padding: 10px;
  margin-bottom: 10px;
}

.painel .item.box span span,
.painel .item .box span span {
  font-weight: 500;
}

.painel .item.box span span:nth-child(2),
.painel .item .box span span:nth-child(2) {
  margin-inline: 10px;
  color: var(--color-ativo);
}

.painel .item.box span span:last-child,
.painel .item .box span span:last-child {
  color: var(--color-entregue);
}

.painel .owl-theme .owl-dots .owl-dot span {
  margin: 3px;
  width: 13px;
  height: 13px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: rgba(80, 140, 214, 1);
}

@media screen and (max-width: 992px) {
  .painel .box {
    padding: 20px 10px;
    margin-bottom: 10px;
  }

  .row .col.col-pd-0 {
    padding: 0;
  }
}

@media (min-width: 800px) {
  .show-800 {
    display: none;
  }
}

@media (max-width: 800px) {
  .hide-800 {
    display: none;
  }

  .show-800 {
    display: block;
  }
}

/** TABLE ======================================== **/
table .acao1 {
  width: 150px;
}

table .acao2 {
  width: 220px;
}

table .acao3 {
  width: 320px;
}

table .acao4 {
  width: 440px;
}

table a.link {
  display: inline-flex;
  align-items: center;
  color: #03193b;
}

table a.link i {
  margin-left: 10px;
  font-size: 18px;
}

table a.link:hover {
  color: #0044ac;
}

table a.done {
  color: var(--color-input);
  cursor: pointer;
}

table a.done:hover {
  color: var(--color-primary);
}

table a.done.one {
  color: var(--color-ativo);
}

table .foto {
  width: 60px;
}

table .foto img {
  margin: auto;
}

table.bordered > thead > tr {
  background: #f2f4f8;
}

table.bordered > thead > tr,
table.bordered > tbody > tr {
  border-bottom: 1px solid #e4e9f0;
}

td,
th {
  padding: 10px 20px;
  overflow: auto;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 240px;
}

table > thead > tr > th:first-child,
table > tbody > tr > td:first-child {
  padding-left: 30px;
}

table > tbody > tr > td:last-child {
  padding-right: 30px;
}

table > tbody > tr .valor {
  display: flex;
  align-items: center;
  font-weight: 500;
  gap: 10px;
}

table > tbody > tr .valor.in {
  color: rgb(22 163 74 / 1) !important;
}

table > tbody > tr .valor.out {
  color: rgb(220 38 38 / 1) !important;
}

table > tbody > tr .valor i {
  font-size: 1.1rem;
  color: var(--color-text);
  font-weight: normal;
}

@media screen and (max-width: 992px) {
  table.table-responsive > thead {
    display: none;
  }

  table.table-responsive > tbody > tr {
    background-color: #fff;
    display: block;
    margin: 0 0 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.13);
  }

  table.table-responsive > tbody > tr > td:first-child,
  table.table-responsive > tbody > tr > td:last-child {
    padding-left: 10px;
    padding-right: 10px;
  }

  table.table-responsive > tbody > tr > td {
    border-bottom: 1px solid #e4e9f0;
    display: block;
    padding: 10px;
    width: auto;
  }

  td,
  th {
    max-width: 992px;
  }

  table.table-responsive > tbody > tr > td:before {
    content: attr(data-label);
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
  }

  table.table-responsive > tbody > tr > td:last-child {
    border-bottom: 0;
  }

  table.table-responsive > tbody > tr > td form,
  table.table-responsive > tbody > tr > td .btn-acao {
    float: none;
    display: inline-block;
  }
}

/** PAGINAÇÃO ======================================== **/
.paginacao {
  padding: 20px 30px 0;
  margin: 0;
}

.paginacao ul.pagination {
  margin: 0;
}

.paginacao .pagination li.active {
  background-color: #e8edf2;
}

/** ORÇAMENTOS ======================================== **/
.servicos a.removeServico {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  color: #827ca1;
  margin: 24px 0 0 0;
  cursor: pointer;
  transition: all 0.3s;
  background: #fff;
  border: 1px solid #827ca1;
  border-radius: 40px;
}

.servicos a.removeServico:hover {
  color: red;
  border: 1px solid red;
}

.servicos a.removeServico i {
  margin: 0;
}

@media (max-width: 992px) {
  .servicos .row-servico {
    padding-bottom: 20px;
    border-bottom: 2px solid #827ca1;
    margin-bottom: 20px;
  }
}

/** FOOTER ======================================== **/
footer {
  padding-bottom: 20px;
  font-weight: 500;
  font-size: small;
}

.by {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.by a {
  display: flex;
}

.copy {
  text-align: center;
  margin-top: 30px;
  color: #444;
}
