@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

/* #seforhoje{
  background-color: rgba(143, 156, 83, .2);
} */

:root {
  --cor-principal: #78866b;
  --cor-black: #000000;
  --cor-white: #ffffff;
  --cor-secondary: #9E9E9E;
  --cor-dirt: #86776b;
  --cor-lead: #495057;
  --cor-lead-hover: #436b7d;
  --m-top: 15px;
  --m-right: 15px;
  --m-bottom: 15px;
  --m-left: 15px;
  --m-between: 0 7.5px;
  --p-inner: 0 7.5px;
  --text-sized-1: 1rem;
  --text-sized-2: 2rem;
}

* {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-behavior: smooth;
}

.feature-card {
    background-color: transparent;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
    border: 1px solid rgba(129, 129, 129, 0.5);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature-card:not(:last-child) {
    margin-bottom: 24px;
    /* Espaço entre cards na mesma coluna */
}

.feature-card h5 {
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(129, 129, 129, 0.5);
    position: relative;
}

.feature-card h5:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 50px;
    height: 2px;
    background-color: rgb(92, 105, 124);
}

/* Estilo moderno para switches */
.modern-switch {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.modern-switch:hover {
    background-color: rgba(13, 110, 253, 0.05);
}

.modern-switch input[type="checkbox"] {
    height: 0;
    width: 0;
    visibility: hidden;
    position: absolute;
}

.modern-switch label {
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    padding-left: 65px;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 34px;
    user-select: none;
}

.modern-switch label:before {
    content: '';
    position: absolute;
    left: 0;
    width: 55px;
    height: 28px;
    border-radius: 28px;
    background-color: #c8cddb;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.modern-switch label:after {
    content: '';
    position: absolute;
    left: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: white;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    top: 50%;
    transform: translateY(-50%);
}

.modern-switch input:checked+label:before {
    background-color: rgb(69, 91, 124);
}

.modern-switch input:checked+label:after {
    left: 31px;
}

.modern-switch input:focus+label:before {
    box-shadow: 0 0 0 3px rgba(70, 87, 112, 0.25);
}

/* Estilo moderno para radio buttons */
.modern-radio {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.modern-radio:hover {
    background-color: rgba(13, 110, 253, 0.05);
}

.modern-radio input[type="radio"] {
    height: 0;
    width: 0;
    visibility: hidden;
    position: absolute;
}

.modern-radio label {
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    padding-left: 35px;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 28px;
    user-select: none;
}

.modern-radio label:before {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(129, 129, 129, 0.5);
    background-color: #c8cddb;
    transition: all 0.3s ease;
}

.modern-radio label:after {
    content: '';
    position: absolute;
    left: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgb(92, 105, 124);
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0);
    top: 50%;
    margin-top: -6px;
}

.modern-radio input:checked+label:before {
    border-color: rgba(129, 129, 129, 0.5);
}

.modern-radio input:checked+label:after {
    opacity: 1;
    transform: scale(1);
}

.modern-radio input:focus+label:before {
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.25);
}

.section-title {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.required-icon {
    color: rgb(96, 127, 173);
    font-size: 0.5rem;
    vertical-align: super;
    margin-left: 4px;
}

.feature-row {
    display: flex;
    flex-wrap: wrap;
}

.feature-row>[class*="col-"] {
    display: flex;
    flex-direction: column;
}

.feature-card {
    flex: 1;
    height: 100%;
}

.smooth-scroll {
  scroll-snap-type: y mandatory;
  scroll-snap-points-y: repeat(100vh);
  -webkit-overflow-scrolling: touch;
}

/* Optional: Add smooth momentum scrolling for containers */
.scroll-container {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: y proximity;
}

.navbar-nav .nav-item.dropdown .dropdown-toggle::after {
  content: '\F229' !important;
  font-family: 'bootstrap-icons' !important;
}

.dashed {
  border: 1px dashed rgba(255, 255, 255, 0.05) !important;
}

.nav-turnback {
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.calendar-table {
  border-spacing: 8px;
  border-collapse: separate;
}

/* Add these new rules */
.calendar-day:empty {
  display: none;
}

.calendar-day.prev-month,
.calendar-day.next-month {
  opacity: 0.5;
  background-color: #f5f5f5;
  height: 120px;
  padding: 8px !important;
  vertical-align: top !important;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.calendar-week {
  display: table-row;
}

.calendar-cell {
  height: 120px;
  padding: 8px !important;
  vertical-align: top !important;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.calendar-cell.empty {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
}


.calendar-cell.today {
  background: rgba(13, 110, 253, 0.05) !important;
  border: 1px solid rgba(13, 110, 253, 0.2) !important;
}

.day-number {
  font-size: 1.1rem;
  font-weight: bold;
}

.card-login {
  max-width: 25rem;
  background: rgba(255, 255, 255, 0.05) !important;
    background-size: auto;
  background-size: auto;
  backdrop-filter: blur(8px) !important;
  box-shadow: inset rgba(255, 255, 255, 0.2) 0px 4px 12px !important;
}

.day-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.meta-info {
    font-size: 0.8rem;
    opacity: 0.8;
}

.table-bordered.calendar-table th {
  border: none;
  font-weight: 600;
  text-align: center;
  padding: 8px;
  background-color: rgba(255, 255, 255, 0.02) !important;
}

.day-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5px;
  margin-bottom: 12px;
}

.weekday {
  font-size: 0.8rem;
  color: #666;
}

.revenue {
  font-weight: bold;
  margin: 3px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.daily-goal {
  font-size: 0.8rem;
  color: #666;
}

.holiday-tag {
    color: #dc3545;
    font-weight: bold;
}

.summary-row {
  border-top: 2px solid #dee2e6;
}

.summary-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 15px;
  white-space: nowrap;
}
.summary-item {
    text-align: center;
}

.summary-item strong {
    display: block;
    font-size: 1.1rem;
}

.summary-label {
    display: block;
    color: #888;
    font-size: 0.7rem;
    margin-top: 3px;
}

/* Modern Scrollbar for Entire Website */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) rgba(255, 255, 255, 0.05);
}


@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
/* Aplicar a animação à sidebar */
.sidebar-nav {
  animation: slideInLeft 0.5s ease-out;
}

#totalvendas {
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  height: 100%;
  width: 100%;
}

.flex-buttons {
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  flex-wrap: nowrap;
}

.flex-buttons > .btn-custom {
  padding: 7px;
}

.flex-buttons > button {
  margin: 0 10px !important;
  display: block;
}

.btn-custom > i {
  display: block !important;
  padding: 0.3rem 0.6rem !important;
}

button#scrollToTopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  border: none;
  border-radius: 5px;
  padding: 10px;
  cursor: pointer;
  z-index: 999;
}

a.nav-link > i {
  width: 25px;
  height: 25px;
  display: inline-block;
  text-align: center;
  border-radius: 25px;
  background: rgba(0,0,0,0.5);
  padding: 2px 0 0 0 !important;
}

a.nav-link > svg {
  width: 25px;
  height: 25px;
  display: inline-block;
  text-align: center;
  border-radius: 25px;
  background: rgba(0,0,0,0.5);
  padding: 2px 0 0 0 !important;
}

button#scrollToTopBtn img {
  width: 20px;
  height: 20px;
}

.dark-theme > #dataTable_wrapper > #dataTable_filter > label > input[type="search"], .dark-theme > #dataTableReverse_wrapper > #dataTable_filter > label > input[type="search"] {
  color: #fff !important;
}


.dark-theme > #dataTable_wrapper > #dataTable_filter > label > input[type="search"] {
  color: #fff !important;
}

.skeleton-loading {
  border-radius: 50px;
  width: 100%;
  height: 100px; /* Altura do elemento */
  background: #f0f0f0; /* Cor de fundo do skeleton */
  animation: loading 1.5s infinite alternate; /* Animação de pulsação */
}

.content.hidden {
  display: none; /* Esconde o conteúdo real até que esteja pronto */
}

@keyframes loading {
  0% {
      opacity: 0.6;
  }
  100% {
      opacity: 1;
  }
}

.ck.ck-editor__main {
  color: #000;
}

table#dataTableReverse, table#dataTable {
  padding: 15px 0 15px 0;
}

a.paginate_button.current, a.paginate_button {
  border-radius: 50px !important;
  background: rgba(255,255,255,0.2) !important;
  color: #000 !important;
}

.table-bg-dark > div#dataTableReverse_wrapper > div > label,
.table-bg-dark > div#dataTable_wrapper > div > label,
.table-bg-dark > div#dataTableReverse_wrapper > div,
.table-bg-dark > div#dataTable_wrapper > div {
  color: #fff !important;
}

button#toggle-tema {
  width: 40px !important;
  height: 38px;
  overflow: hidden;
  transition: width 0.5s;
}

button#toggle-tema:hover {
  width: 150px !important;
}

button#toggle-tema > span {
  position: relative;
  display: inline-block;
  transform: translate(150px, 0px);
  width: 110px !important;
  transition: transform 1s, color 0.5s;
}

button#toggle-tema:hover > span {
  transform: translate(10px, 0px);
}

button#toggle-tema > i {
  position: absolute;
  transform: translate(0px, 0px);
  transition: transform 1s;
}

button#toggle-tema:hover > i {
  position: absolute;
  transform: translate(-10px, 0px);
}

.drophome > .dropdown-menu{
  position: absolute !important;
  margin: 0px !important;
  width: 100% !important;
  z-index: 9 !important;
  transform: translate(1px, 109px) !important;
}

.drophome > button::after{
  content: unset !important;
}

.drophome > .dropdown-menu{
  position: absolute !important;
  margin: 0px !important;
  width: 100% !important;
  z-index: 9 !important;
  transform: translate(1px, 109px) !important;
}

.drophome > button::after{
  content: unset !important;
}

a.nav-link {
  background: rgba(255,255,255,0) !important;
  transition: all(1s);
}
a.nav-link:hover {
  background: rgba(255,255,255,0.1) !important;
}
a.nav-link.active {
  background: rgba(255,255,255,0.1) !important;
}

div#content-wrapper {
  background: rgba(255,255,255,0.02);
  min-height: 100vh;
}

#wrapper #content-wrapper {
  /* overflow-x: hidden !important; */
  width: 100% !important;
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.search-container {
  position: relative;
  display: inline-block;
}
ul#searchResults {
  list-style: none;
  padding: 15px;
  margin: 0;
  position: absolute;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  width: calc(100vw - 68%) !important;
  max-height: 50vh;
  overflow-y: auto;
  display: none;
  z-index: 99 !important;
  background: #ddd !important;
}

ul#searchResults > li {
  padding: 10px;
  cursor: pointer;
}

ul#searchResults > li:hover {
  background-color: #ddd;
}

.custom-toast {
  position: fixed;
  top: 100px;
  right: 20px;
  max-width: 100% !important;
  z-index: 1000;
}

ul#statushora > li:nth-child(1) {
  border-radius: 50px 0 0 50px !important;
}

ul#statushora > li:nth-child(3) {
  border-radius: 0 50px 50px 0 !important;
}

.shake {
  animation: shake 2s ease infinite;
}
@keyframes shake {
	0%, 100% {transform: translateX(0);}
	10%, 30%, 50%, 70%, 90% {transform: translateX(-1px);}
	20%, 40%, 60%, 80% {transform: translateX(1px);}
}

.gelatine {
  animation: gelatine 0.5s infinite;
}
@keyframes gelatine {
  from, to { transform: scale(1, 1); }
  25% { transform: scale(0.9, 1.1); }
  50% { transform: scale(1.1, 0.9); }
  75% { transform: scale(0.95, 1.05); }
}

.table-active {
  word-wrap: break-word;
}

.tooltip {
  position: relative;
}

.tooltip::before {
  content: attr(title);
  position: absolute;
  background: #000;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  visibility: hidden;
  opacity: 0;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.2s, visibility 0.2s;
}

.tooltip:hover::before {
  visibility: visible;
  opacity: 1;
}

.shadow-danger{
  text-shadow: 0 0 5px rgba(220,53,69,0.8);
}
.shadow-success{
  text-shadow: 0 0 5px rgba(25,135,84,0.9);
}
.shadow-warning{
  text-shadow: 0 0 5px rgba(255, 191, 0, 0.9);
}
.accordion-body > figure > img {
  display: block;
  max-width: 100% !important;
}

.sticky-footer{
  top: 100% !important;
}

button.navbar-toggler {
  width: 66px !important;
  margin: 0 !important;
}

.menu-icon{
  display: flex;
  align-content: center;
  justify-content: center;
  font-size: 2em;
  margin: 0 !important;
}
.bell {
  position: absolute !important;
  right: 120px;
  top: 25px;
  font-size: 1.2em;
}
.user-avatar{
  position: absolute;
  left: 96px;
  padding-left: 30px;
}

.orcamentopd {
  position: absolute;
  top: 0;
  left: 15px;
  font-size: 1em !important;
  border-radius: 0 0 15px 15px !important;
  background: #1d1d1d !important;
  padding-top: 25px !important;
}

.statuspd {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 0.8em;
}

div.produtos {
  height: 150px;
  overflow-y: auto;
}
div.cliente{
  height: 40px;
  border-bottom: 2px dashed rgba(200, 200, 200, 0.5);
}
.datas {
  border: 2px dashed rgba(200, 200, 200, 0.5);
}

.dropdown-item:hover{
  background: #8d969e !important;
}
a.borda:before{
  content: "";
  display: table;
  width: 50px;
  height: 50px;
  border-radius: 30px;
  transform: rotate(175deg);
  vertical-align: middle;
  border-bottom: 3px solid rgb(255, 255, 255);
  border-right: 3px solid rgb(255, 255, 255);
  border-left: 3px solid rgb(243, 156, 53);
  border-top: 3px solid rgb(243, 156, 53);
  transition: all 1s;
  position: absolute;
}
a.borda:hover:before{
  transform: rotate(0deg);
}
a.borda:focus:before{
  transform: rotate(320deg);
}


a.borda-dark:before{
  content: "";
  display: table;
  width: 50px;
  height: 50px;
  border-radius: 30px;
  transform: rotate(175deg);
  vertical-align: middle;
  border-bottom: 3px solid rgb(20 27 59);
  border-right: 3px solid rgb(20 27 59);
  border-left: 3px solid rgb(243, 156, 53);
  border-top: 3px solid rgb(243, 156, 53);
  transition: all 1s;
  position: absolute;
}
a.borda-dark:hover:before{
  transform: rotate(0deg);
}
a.borda-dark:focus:before{
  transform: rotate(320deg);
}

.show > .slide{
  animation: open 1s;
}

@keyframes open {
  0% {
    transform: translateX(400px);
  }
  100% {
    transform: translateX(0);
  }
}

a.light-theme > .card{
  color: #ffffff !important;
}
a.dark-theme > .card{
  /* color: #ffffff !important; */
}

button.light-theme > .card{
  color: #ffffff !important;
}
button.dark-theme > .card{
  /* color: #ffffff !important; */
}

a.light-theme > .card, a.dark-theme > .card {
  height: 110px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}

button.light-theme > .card, button.dark-theme > .card {
  height: 110px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}

a.light-theme > .card:hover, a.dark-theme > .card:hover {
  transform: scale(1.05);
}

a.light-theme > .card > .card-body, a.dark-theme > .card > .card-body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 115px;
}

button.light-theme > .card:hover, button.dark-theme > .card:hover {
  transform: scale(1.05);
}

button.light-theme > .card > .card-body, button.dark-theme > .card > .card-body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 115px;
}

a.light-theme > .card > div.card, a.dark-theme > .card > div.card {
  display: block;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}

button.light-theme > .card > div.card, button.dark-theme > .card > div.card {
  display: block;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}

a.light-theme > .card > div.card::before, a.dark-theme > .card > div.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0;
  background: rgba(255, 255, 255, 0.1) !important;
  transition: all 0.3s ease-in-out;
}

button.light-theme > .card > div.card::before, button.dark-theme > .card > div.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0;
  background: rgba(255, 255, 255, 0.1) !important;
  transition: all 0.3s ease-in-out;
}

a.light-theme > div.card:hover::before, a.dark-theme > div.card:hover::before {
  opacity: 1;
}

button.light-theme > div.card:hover::before, button.dark-theme > div.card:hover::before {
  opacity: 1;
}

a.dark-theme > div.card > div.card-body > i {
  position: absolute;
  left: -30px;
  top: 30px;
  font-size: 6em;
  transform: rotate3d(1, 1, 1, 45deg);
  color: rgba(243, 156, 53, .8);
  text-shadow: -1px -1px 0 #212529, 1px -1px 0 #212529, -1px  1px 0 #212529, 1px 0 #212529;
  transition: all 0.2s;
}

button.dark-theme > div.card > div.card-body > i {
  position: absolute;
  left: -30px;
  top: 30px;
  font-size: 6em;
  transform: rotate3d(1, 1, 1, 45deg);
  color: rgba(243, 156, 53, .8);
  text-shadow: -1px -1px 0 #212529, 1px -1px 0 #212529, -1px  1px 0 #212529, 1px 0 #212529;
  transition: all 0.2s;
}

a.dark-theme > div.card:hover > div.card-body > i {
  left: 20px;
  top: 8px;
  font-size: 4em;
  transform: rotate3d(0, 0, 0, 0deg);
  color: rgba(243, 156, 53, 1);
  text-shadow: -1px -1px 0 #212529, 1px -1px 0 #212529, -1px  1px 0 #212529, 1px 0 #212529;
  z-index: -1;
}

a.dark-theme > div.card:hover > div.card-body > i {
  left: 20px;
  top: 8px;
  font-size: 4em;
  transform: rotate3d(0, 0, 0, 0deg);
  color: rgba(243, 156, 53, 1);
  text-shadow: -1px -1px 0 #212529, 1px -1px 0 #212529, -1px  1px 0 #212529, 1px 0 #212529;
  z-index: -1;
}

a.light-theme > div.card > div.card-body > i {
  position: absolute;
  left: -30px;
  top: 30px;
  font-size: 6em;
  transform: rotate3d(1, 1, 1, 45deg);
  color: rgba(243, 156, 53, .8);
  transition: all 0.2s;
}

button.light-theme > div.card > div.card-body > i {
  position: absolute;
  left: -30px;
  top: 30px;
  font-size: 6em;
  transform: rotate3d(1, 1, 1, 45deg);
  color: rgba(243, 156, 53, .8);
  transition: all 0.2s;
}

a.light-theme > div.card:hover > div.card-body > i {
  left: 20px;
  top: 8px;
  font-size: 4em;
  transform: rotate3d(0, 0, 0, 0deg);
  color: rgba(243, 156, 53, 1);
  z-index: -1;
}

button.light-theme > div.card:hover > div.card-body > i {
  left: 20px;
  top: 8px;
  font-size: 4em;
  transform: rotate3d(0, 0, 0, 0deg);
  color: rgba(243, 156, 53, 1);
  z-index: -1;
}

button.dark-theme > div.card:hover > div.card-body > i {
  left: 20px;
  top: 8px;
  font-size: 4em;
  transform: rotate3d(0, 0, 0, 0deg);
  color: rgba(243, 156, 53, 1);
  z-index: -1;
}

a.dark-theme > div.card > div.card-body > h5, a.light-theme > div.card > div.card-body > h5 {
  display: contents;
  font-size: 20px;
  line-height: 7px;
  /* letter-spacing: .1rem; */
  text-transform: uppercase;
}

button.dark-theme > div.card > div.card-body > h5, button.light-theme > div.card > div.card-body > h5 {
  display: contents;
  font-size: 20px;
  line-height: 7px;
  /* letter-spacing: .1rem; */
  text-transform: uppercase;
}


a.dark-theme > div.card > div.card-body > h5 {
  text-shadow: -1px -1px 0 #212529, 1px -1px 0 #212529, -1px  1px 0 #212529, 1px 0 #212529;
}
a.light-theme > div.card > div.card-body > h5 {
  /* text-shadow: -1px -1px 0 #212529, 1px -1px 0 #212529, -1px  1px 0 #212529, 1px 0 #212529; */
}
button.dark-theme > div.card > div.card-body > h5 {
  text-shadow: -1px -1px 0 #212529, 1px -1px 0 #212529, -1px  1px 0 #212529, 1px 0 #212529;
}
button.light-theme > div.card > div.card-body > h5 {
  /* text-shadow: -1px -1px 0 #212529, 1px -1px 0 #212529, -1px  1px 0 #212529, 1px 0 #212529; */
}

.shadow-dark {
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.9);
}

.shadow-info {
  text-shadow: 0 0 5px rgba(13, 202, 240, 0.9);
}

.shadow-success {
  text-shadow: 0 0 5px rgba(25, 135, 84, 0.9);
}

.shadow-primary {
  text-shadow: 0 0 5px rgba(13, 109, 253, 0.9);
}

.shadow-secondary {
  text-shadow: 0 0 5px rgba(108, 117, 125, 0.9);
}

.shadow-warning {
  text-shadow: 0 0 5px rgba(255, 193, 7, 0.9);
}

.text-alert {
  color:#ff7707;
}

.shadow-alert {
  text-shadow: 0 0 5px rgba(255, 119, 7, 0.9);
}

.shadow-danger {
  text-shadow: 0 0 5px rgba(220, 53, 69, 0.9);
}

.navbar-dark .navbar-toggler {
  color: rgba(255,255,255,0.0) !important;
  border-color: rgba(255,255,255,0.0) !important;
}

.seletor {
  height: 50px;
  display: flex;
  justify-content: center;
}

a.pass {
  position: absolute !important;
  right: 18px !important;
  top: 18px !important;
}

#dropdownMenuButton2{
  display: inline-block;
  width: 40px;
  height: 40px;
  padding: 0 !important;
}
div#loadingDiv{
  background: rgba(255, 255, 255, 0.5);
  max-width: 100% !important;
  width: 100%;
  height: 100vh;
  padding: 25% 0;
  position: fixed;
  top: 0;
  left: 0;
}
.loader,
.loader:after {
    border-radius: 50%;
    width: 5em;
    height: 5em;
    margin: 0 auto;
    top: 25% !important;
}
.loader {
    color: #1d1d1d;
    font-size: 10px;
    position: relative;
    text-indent: -9999em;
    border-top: 1.1em solid rgba(255, 255, 255, 0.2);
    border-right: 1.1em solid rgba(255, 255, 255, 0.2);
    border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
    border-left: 1.1em solid #1d1d1d;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.1s infinite linear;
    animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
#loadingDiv {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
}

.modal {
  z-index: 9999 !important;
}

::-webkit-scrollbar {
  -moz-width: 12px;
  -webkit-width: 12px;
  width: 12px;
}
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  -moz-background: rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}
::-webkit-scrollbar-thumb {
  background: rgba(243, 156, 53, 1);
  -moz-background: rgba(243, 156, 53, 1);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
}
::-webkit-scrollbar-thumb:window-inactive {
  background: rgba(243, 156, 53, .7);
  background: rgba(243, 156, 53, .7);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
  -moz-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
}

.navbar-expand .navbar-nav .nav-link {
  padding-right: 0 !important;
  padding-left: 0 !important;
  margin: 0 0 0 10px !important;
}

html, body{
  font-family: 'Montserrat', sans-serif !important;
}

html .mascaraInput {
  position: relative;
  float: left;
  width: fit-content;
  color: #fff;
  background: #fff;
  cursor: default;
  outline: none;
  overflow: hidden;
  border-radius: 3px;
  border: 1px solid #c4c4c4;
  transition: border 0.3s;
}
html .mascaraInput:hover {
  border: 1px solid #0c8581;
}
html .mascaraInput.active {
  -webkit-box-shadow: 0px 0px 2px 1px #0c8581;
  -moz-box-shadow: 0px 0px 2px 1px #0c8581;
  box-shadow: 0px 0px 2px 1px #0c8581;
  border: 1px solid #0c8581;
}
html .quadroImgAuto {
  margin: 0 auto;
  width: 100%;
  height: auto;
  overflow: hidden;
  border: 0px solid #000;
  position: relative;
}
html .boxImgAuto {
  width: 100%;
  height: auto;
  display: table;
}
html .imgItem {
  margin: 0 auto;
  width: 100%;
  background: #fff;
  /* 	opacity: 0.9;
	filter: alpha(opacity = 90); */
  border: 0px solid red;
}
html .inputFile {
  position: absolute;
  z-index: 2;
  top: 0px;
  left: 0px;
  cursor: pointer;
  outline: none;
  opacity: 0;
  filter: alpha(opacity = 0);
  width: 100%;
  height: 100%;
  font-family: Arial;
  font-size: 0px;
  color: #484848;
  background: none;
}
html .mascaraInput .title_mascaraInput {
  float: left;
  width: 100%;
  padding: 5px;
  color: #666;
  background: #eee;
  font-weight: bold;
  font-size: 14px;
  overflow: hidden;
  padding-left: 10px;
  text-align: left;
  border-bottom: 1px solid #c4c4c4;
}
html .mascaraInput span {
  float: left;
  width: 100%;
  padding: 3px;
  color: #666;
  background: #f8f8f8;
  font-size: 14px;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid #c4c4c4;
}

input[type~="search"] {
  color: #1d1d1d;
  border: 1px solid #ddd;
  border-radius: 16px 16px !important;
  padding: 5px;
  width: 300px;
  height: 40px;
}

.bg-custom{
  background: url(../images/default/capa-painel.png) no-repeat center fixed;
  background-size: cover;
}

table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > td:first-child::before, table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > th:first-child::before {
  top: 15px !important;
  left: 15px !important;
  height: 30px !important;
  width: 30px !important;
  border-radius: 30px !important;
  line-height: 31px !important;
  font-size: 1.2em;
  content: '+';
  background-color: #198754;
  bottom: 10px !important;
}

input[type~="search"]:focus {  
  background-image: unset;
}
.dataTables_length{
  display: block;
}

.navbar-nav {
  z-index: 1080;
}

.btn-group-sm > .btn,
.btn-sm {
  padding: 0.5em 0.8em !important;
  font-size: 0.875rem;
  line-height: 0.5em;
  border-radius: 0.2rem;
}

td.child > ul {
  width: 100%;
}
table.dataTable thead .sorting:before,
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_desc:before,
table.dataTable thead .sorting_asc_disabled:before,
table.dataTable thead .sorting_desc_disabled:before,
table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc_disabled:after {
  display: none !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  color: #fff !important;
  border: 1px solid #ddd !important;
  border-radius: 5px;
  background: #ffffff !important;
}

table.dataTable tbody tr {
  background-color: none !important;
}

.tableline-hover {
  display: table;
  width: 100%;
  height: 100px;

  border-radius: 5px;

  color: #000;
  text-decoration: none !important;
  transition: all 0.5s;
}
.tableline-hover:hover {
  color: #000;
}

.dragHelper {
  display: block;
  padding: 30px;
  border: 2px dashed #c2cdda;
  border-radius: 3px;
}

h1, h2, h3, h4, h5, h6{
  font-weight: 900 !important;
}

.mobile {
  display: none;
}

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

.border-tb {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 15px;
  margin: 15px;
}

.min-height {
  min-height: 175px;
}

.border-solid {
  border: 1px solid #ddd;
  margin-bottom: 15px;
}

.bg-caller {
  width: 100%;
  display: table;
  background: #007bff !important;
  color: #fff;
  border-radius: 5px 5px 0 0;
  padding: 15px;
}
.space-caller {
  padding: 15px;
}

.img-lg {
  width: 100%;
  height: auto;
}

.fixed-menu {
  position: fixed;
  width: 90px;
  padding: 0;
  z-index: 9999;
}
.hover-info {
  display: table;
  position: absolute;
  z-index: 1020;
  right: 15px !important;
  top: 0;
  padding: 15px;
  color: #fff;
  overflow: hidden;
}
.hover-info:hover {
  overflow: auto !important;
}
.hover-info > .info {
  display: none;
  position: absolute;
  right: 15px !important;
  top: 0;
  background: rgba(221, 221, 221, 0);
  padding: 15px;
  color: rgba(255, 255, 255, 0);
  width: 0;
  transition: all 0.2s;
}

.hover-info:hover > .info {
  display: table;
  position: absolute;
  right: 0;
  top: 15px;
  background: rgba(222, 222, 222, 1);
  width: 200px;
  color: #343a40;
  border-radius: 5px;
  border: 1px solid #ddd;
}

.hover-info-table {
  display: table;
  position: relative;
  z-index: 1020;
  padding: 15px;
  color: #fff;
  float: right;
  overflow: hidden;
}
.hover-info-table:hover {
  overflow: auto !important;
}
.hover-info-table > .info-table {
  display: none;
  position: absolute;
  right: 15px !important;
  top: 0;
  background: rgba(221, 221, 221, 0);
  padding: 15px;
  color: rgba(255, 255, 255, 0);
  width: 0;
  transition: all 0.2s;
}

.hover-info-table:hover > .info-table {
  display: table;
  position: absolute;
  right: 0;
  top: 15px;
  background: rgba(222, 222, 222, 1);
  width: 200px;
  color: #343a40;
  border-radius: 5px;
  border: 1px solid #ddd;
}

.alertas {
  width: calc(100vw - 80vw) !important;
  height: calc(100vh - 70vh);
  overflow-y: scroll;
  top: 54px !important;
  right: -42px !important;
}

.unset-icon:before {
  content: unset !important;
}

a.dropdown-item:hover {
  background: transparent !important;
}

.support {
  position: relative !important;
  right: -40%;
}

.accordion-body {
  color: #000 !important;
}

@media only screen and (max-width: 480px) {
  .search-container {
    position: relative;
    display: inline-block;
  }
  ul#searchResults {
      list-style: none !important;
      padding: 15px;
      margin: 0;
      position: absolute;
      background-color: #f9f9f9;
      border: 1px solid #ccc;
      width: 94% !important;
      max-height: 50vh;
      overflow-y: auto;
      display: none;
      z-index: 99 !important;
      background: #ddd !important;
  }

  ul#searchResults > li {
      padding: 10px;
      cursor: pointer;
  }

  ul#searchResults > li:hover {
      background-color: #ddd;
  }
  .alertas {
    width: 100vw !important;
    height: 100vh !important;
    overflow-y: scroll;
    top: 54px !important;
    right: -27vw !important;
  }
  .user-avatar{
    position: absolute;
    left: 46px;
    padding-left: 30px;
  }
  .bell {
    position: absolute !important;
    right: 110px;
    top: 28px;
    font-size: 1.2em;
  }
}

@media only screen and (max-width: 680px) {
  .support {
    position: relative !important;
    right: -31%;
  }
  .search-container {
    position: relative;
    display: inline-block;
  }
  ul#searchResults {
      list-style: none !important;
      padding: 15px;
      margin: 0;
      position: absolute;
      background-color: #f9f9f9;
      border: 1px solid #ccc;
      width: 94% !important;
      max-height: 50vh;
      overflow-y: auto;
      display: none;
      z-index: 99 !important;
      background: #ddd !important;
  }

  ul#searchResults > li {
      padding: 10px;
      cursor: pointer;
  }

  ul#searchResults > li:hover {
      background-color: #ddd;
  }
  .alertas {
    width: 95vw !important;
    height: 100vh !important;
    overflow-y: scroll;
    top: 54px !important;
    right: -17vw !important;
  }
  .bell{
    position: absolute !important;
    right: 100px;
    top: 28px;
    font-size: 1.2em;
  }
  .user-avatar{
    position: absolute;
    left: 56px;
    padding-left: 30px;
  }
  
  .mobile {
    display: table;
  }
  .navbar-expand .navbar-nav .nav-link {
    padding-right: 0 !important;
    padding-left: 0 !important;
    margin: 0 0 0 0 !important;
  }

  .toggled > div > div.fixed-menu {
    left: -90px;
  }
}
@media only screen and (max-width: 768px) {
  .support {
    position: relative !important;
    right: -31%;
  }
  .mobile {
    display: table;
  }
  .toggled > div > div.fixed-menu {
    left: -90px;
  }
}
@media only screen and (max-width: 920px) {
  .support {
    position: relative !important;
    right: -25%;
  }
}
@media only screen and (max-width: 1440px) {
  .support {
    position: relative !important;
    right: -30.5%;
  }
}
