/**
* author: Rodrigo Junior
* email: rodrigojrdev@gmail.com
*
*/

@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");

[data-bs-theme="dark"] {
  --sistema-theme-control-toggle-bg: rgb(133 169 254 / 24%);
  --sistema-theme-control-toggle-hover-bg: rgb(133 169 255 / 70%);
  --sistema-theme-control-toggle-color: #3874ff;
  --sistema-theme-border: 1px solid #31374a;
  --sistema-theme-background: #0f111a;
  --sistema-theme-arrow-bg: #f5f7fa;
  --sistema-theme-emphasis-bg: #1e2139;
  --sistema-theme-body-bg: #0f111a;
  --sistema-theme-border-color: #31374a;
  --sistema-theme-secondary-bg: #1e2139;
  --sistema-theme-primary: #3874ff;
  --sistema-theme-border-color-translucent: rgba(49, 55, 74, 0.5);
  --sistema-theme-input-select-2-bg: #212529;
}
[data-bs-theme="light"] {
  --sistema-theme-control-toggle-bg: rgba(255, 204, 133, 0.24);
  --sistema-theme-control-toggle-hover-bg: rgb(229 120 11);
  --sistema-theme-control-toggle-color: #e5780b;
  --sistema-theme-border: 1px solid #e9ecef;
  --sistema-theme-background: #f5f7fa;
  --sistema-theme-arrow-bg: #3874ff;
  --sistema-theme-emphasis-bg: #fff;
  --sistema-theme-body-bg: #fff;
  --sistema-theme-border-color: #e9ecef;
  --sistema-theme-secondary-bg: #f5f7fa;
  --sistema-theme-primary: #3874ff;
  --sistema-theme-border-color-translucent: rgba(233, 236, 239, 0.5);
  --sistema-theme-input-select-2-bg: #fff;
}
:root {
  --sidebar-hover: #f5f7fa;
  --sidebar-active: #e9f0ff;
  --sidebar-text: #333333;
  --sidebar-icon: #4a6cf7;
  --sidebar-border: rgba(0, 0, 0, 0.08);
  --sidebar-width: 270px;
  --transition-speed: 0.3s;
  --border-radius: 8px;
}

body {
  font-family: "Nunito Sans", sans-serif;
}

/* Topo */
nav.navbar-top.fixed-top.navbar.navbar-expand {
  border-bottom: var(--sistema-theme-border);
  background: var(--bs-body-bg);
}
nav.navbar-top .logo img {
  width: 140px;
  height: 100%;
}
.navbar-top input.search-input {
  width: 330px;
  padding: 5px 20px;
}
.navbar-top img.icon-user {
  width: 50px;
  height: 50px;
  object-fit: cover;
}
.navbar-top .assets-topo {
  display: flex;
  gap: 24px;
  align-items: center;
}
.navbar-top .switch-theme {
  background-color: var(--sistema-theme-control-toggle-bg);
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  cursor: pointer;
}
.navbar-top .switch-theme:hover {
  background-color: var(--sistema-theme-control-toggle-hover-bg);
  color: #fff;
  transition: 0.3s all;
}
.navbar-top .switch-theme:hover i {
  color: #fff;
}
.navbar-top .switch-theme i {
  color: var(--sistema-theme-control-toggle-color);
}
.navbar-top .user-info {
  background-color: var(sistema-theme-control-toggle-bg);
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  cursor: pointer;
}
/* Sidebar */
#sidebar {
  display: flex;
  justify-content: space-between;
  flex-direction: column;

  position: fixed;
  left: 0;
  top: 80px;

  height: 100vh;
  width: 270px;

  float: left;
  border-right: var(--sistema-theme-border);
  z-index: 99;
}
#sidebar .menu-bar {
  height: calc(100% - 50px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-right: var(--sistema-theme-border);
  width: 270px;
}
#sidebar .menu ul {
  list-style: none;
  margin-top: 32px;
}
#sidebar .menu ul li {
  height: 45px;
  list-style: none;
  margin-top: 4px;
  display: flex;
  align-items: center;
}
#sidebar .menu ul li a {
  height: 100%;
  width: 100%;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 6px;
  color: var(--bs-body-color);
}
#sidebar .menu ul li a.active {
  background-color: var(--sistema-theme-primary);
  color: var(--sistema-theme-body-bg);
  padding-left: 8px;
}
#sidebar button.btn.dropdown-toggle {
  padding-left: 0;
}
#sidebar .botton-content ul {
  list-style: none;
}
#sidebar .botton-content ul li a {
  height: 100%;
  width: 100%;
  text-decoration: none;
  border-radius: 6px;

  color: var(--bs-body-color);

  display: flex;
  align-items: center;
  gap: 8px;
}
#sidebar #ul.menu-links li a {
  display: flex;
  gap: 8px;
}
#sidebar button.btn.dropdown-toggle.show {
  border: none;
}
#sidebar .menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
#sidebar .menu-links li {
  position: relative;
  margin: 5px 10px;
  border-radius: var(--border-radius);
  transition: background var(--transition-speed);
}
#sidebar .menu-links li a:hover {
  background-color: var(--sidebar-hover);
}
#sidebar .menu-links li a.active,
#sidebar .dropdown-menu .dropdown-item.active {
  background-color: var(--sidebar-active);
  color: var(--sidebar-icon);
}
#sidebar .menu-links li a i {
  min-width: 30px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all var(--transition-speed);
}
/* Dropdown */
#sidebar .dropdown-menu {
  transform: none !important;
  padding: 5px;
  border: none;
  background-color: #212529;
  box-shadow: none;
  width: 100%;
  color: #fff;
  margin-top: 45px !important;
}
#sidebar .dropdown-menu .dropdown-item {
  transition: all var(--transition-speed);
  color: #fff;
  padding: 0;
}
#sidebar .dropdown-menu .dropdown-item:hover {
  background-color: var(--sidebar-hover);
  color: #000;
}
#sidebar .dropdown-toggle::after {
  margin-left: auto;
  transition: transform var(--transition-speed);
}
#sidebar .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}
#sidebar .dropdown-menu li a.active {
  padding-left: 0 !important;
}
#sidebar .dropdown-menu li a {
  gap: 2px;
}
#sidebar ul.dropdown-menu li {
  margin: 0 !important;
  margin-top: 6px !important;
}
.menu {
  height: 100%;
  overflow-y: scroll;
}
/* Header Notificações e Mensagens */
.header-nav ul,
.header-nav li {
  list-style: none;
}
ul#notificacaoLista li {
  width: 345px;
}
ul#notificacaoLista li a {
  text-decoration: none;
}
.header-nav > ul {
  margin: 0;
  padding: 0;
}

.header-nav .nav-icon {
  font-size: 22px;
  margin-right: 8px;
  position: relative;
}

.header-nav .nav-profile img {
  max-height: 36px;
}

.header-nav .nav-profile span {
  font-size: 14px;
  font-weight: 600;
}

.header-nav .badge-number {
  position: absolute;
  inset: -2px -5px auto auto;
  font-weight: normal;
  font-size: 12px;
  padding: 3px 6px;
}

.header-nav .notifications {
  inset: 8px -15px auto auto !important;
  height: 450px;
  overflow-y: scroll;
  width: 330px;
}

.header-nav .notifications .notification-item {
  display: flex;
  align-items: center;
  padding: 15px 10px;
  transition: 0.3s;
}

.header-nav .notifications .notification-item i {
  margin: 0 20px 0 10px;
  font-size: 24px;
}

.header-nav .notifications .notification-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.header-nav .notifications .notification-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}

.header-nav .notifications .notification-item:hover {
  background-color: #f6f9ff;
}

.header-nav .messages {
  inset: 8px -15px auto auto !important;
  height: 350px;
  overflow-y: scroll;
}

.header-nav .messages .message-item {
  padding: 15px 10px;
  transition: 0.3s;
}

.header-nav .messages .message-item a {
  display: flex;
  text-decoration: none;
}

.header-nav .messages .message-item img {
  margin: 0 20px 0 10px;
  max-height: 40px;
}

.header-nav .messages .message-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #444444;
}

.header-nav .messages .message-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}

.header-nav .messages .message-item:hover {
  background-color: #f6f9ff;
}

.header-nav .profile {
  min-width: 240px;
  padding-bottom: 0;
  top: 8px !important;
}

.header-nav .profile .dropdown-header h6 {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 600;
}

.header-nav .profile .dropdown-header span {
  font-size: 14px;
}

.header-nav .profile .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
}

.header-nav .profile .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}

.header-nav .profile .dropdown-item:hover {
  background-color: #f6f9ff;
}

button.marcar-lida-notificacoes {
  background: none;
  border: none;
  padding: 0;
}

/* Página Inicial */
.content {
  min-height: 100vh;
  background: var(--sistema-theme-background);
  margin-top: 81px;
  margin-left: 270px;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 60px;
  overflow: hidden;
}
text.apexcharts-text.apexcharts-yaxis-label,
text.apexcharts-text.apexcharts-xaxis-label,
.apexcharts-tooltip.apexcharts-theme-light.apexcharts-active,
.apexcharts-tooltip-title,
.apexcharts-tooltip * {
  font-size: 16px;
  color: var(--bs-tertiary-color) !important;
  fill: var(--bs-tertiary-color) !important;
}
.h-box {
  height: 198px;
}
.card {
  padding: 16px;
}
.card-home {
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-home h4 {
  font-size: 60px;
}
.card-home i {
  font-size: 25px;
  color: var(--sistema-theme-primary);
}
/* Assets */
.thumb-users img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 100%;
  padding: 4px;
}
.search-box input {
  width: 300px;
}
td.td-users-icons-name {
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
}
.table-default-system ul.pagination li.active a {
  color: #fff;
  background-color: #3874ff;
  padding: 0.5rem 0.75rem;
  font-size: 16px;
  border-radius: 8px;
}
.table-default-system ul.pagination li a {
  color: #fff;
  padding: 0.5rem 0.75rem;
  font-size: 16px;
  border-radius: 8px;
  text-decoration: none;
  background: #a3a3a3;
}
.table-default-system ul.pagination {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* Pesquisar em tabelas */
.sort {
  cursor: pointer;
  position: relative;
}
.sort::before {
  content: "\f0b0";
  position: absolute;
  top: 5px;
  right: 5px;
  font-family: "Font Awesome 6 Free";
}
.sort:hover {
  background-color: var(--sistema-theme-background);
}
.sort:focus {
  outline: none;
}
.sort:after {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid transparent;
  content: "";
  position: relative;
  top: -10px;
  right: -5px;
}
.sort.asc:after {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--sistema-theme-arrow-bg);
  content: "";
  position: relative;
  top: 13px;
  right: -5px;
}
.sort.desc:after {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid var(--sistema-theme-arrow-bg);
  content: "";
  position: relative;
  top: -10px;
  right: -5px;
}

/* Eye Password Show */
.eye-pass {
  position: relative;
}
.eye-pass span.view-pass {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
}

/* Swall Custom DarkMode e LightMode */
.swal-custom {
  background-color: var(--sistema-theme-background);
  color: var(--bs-body-color);
}
.swal-custom .swal-title {
  color: var(--bs-body-color);
}
.swal-custom .swal-text {
  color: var(--bs-body-color);
}
.swal-custom .swal-footer {
  background-color: var(--sistema-theme-background);
}
.swal-custom .swal-button {
  background-color: var(--sistema-theme-control-toggle-bg);
  color: var(--sistema-theme-control-toggle-color);
}
.swal-custom .swal-button:hover {
  background-color: var(--sistema-theme-control-toggle-hover-bg);
  color: #fff;
}
.swal-custom .swal-icon--success:after,
.swal-custom .swal-icon--success:before {
  background-color: var(--sistema-theme-background);
}
.swal-icon--success__hide-corners {
  background-color: var(--sistema-theme-background) !important;
}
.swal-custom .swal-icon--success__ring {
  border: 4px solid hsl(116.67deg 93.79% 51.67%);
}
.swal-btns-space .swal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.swal-btns-space .swal-button-container {
  flex: none;
}
.swal-btns-space .swal-button {
  padding: 8px 16px;
  font-size: 14px;
}
.swal-btns-space button.swal-button.swal-button--cancel {
  background-color: #dc3545;
  color: #fff;
}
.swal-btns-space button.swal-button.swal-button--cancel:hover {
  background-color: #c82333;
  color: #fff;
}
button.swal-button.swal-button--confirm.swal-button--danger {
  background-color: #1f9d25;

  color: #fff;
}
button.swal-button.swal-button--confirm.swal-button--danger:hover {
  background-color: #26cb31;
  color: #fff;
}
/* Select2 */
.select2-container--default .select2-selection--single {
  background-color: var(--sistema-theme-input-select-2-bg);
}
.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: var(--bs-body-color);
}
.select2-results__option--selectable {
  color: var(--bs-body-color);
  background-color: var(--sistema-theme-background);
}
.select2-search--dropdown {
  background-color: var(--sistema-theme-background);
}
input.select2-search__field:focus-visible {
  border: none;
  outline: none;
}

/* Button BS */
.btn-check:checked + .btn:focus-visible,
.btn.active:focus-visible,
.btn.show:focus-visible,
.btn:first-child:active:focus-visible,
:not(.btn-check) + .btn:active:focus-visible {
  border: none !important;
}
.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  border: none !important;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: var(--sistema-theme-background);
}

/* Dropzone */
.dropzone {
  background: transparent;
  border: 2px dashed;
  border-radius: 8px;
}
.dropzone .dz-preview.dz-image-preview {
  background: transparent;
}
.dz-preview .dz-image {
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  width: 100% !important;
}
.dz-preview .dz-image img {
  max-width: 100%;
  max-height: 100%;
}
.dz-image i {
  font-size: 120px;
  position: absolute;
  top: 0;
}
.dz-preview .dz-progress {
  background-color: #f5f5f5;
  border-radius: 5px;
  overflow: hidden;
  height: 20px;
}
.dz-preview .dz-progress .dz-upload {
  background-color: #28a745;
  height: 100%;
  width: 0;
  transition: width 0.3s ease-in-out;
}
.dz-preview .dz-error-message {
  color: red;
}
.dz-preview .dz-success-mark,
.dz-preview .dz-error-mark {
  display: none;
}
.dz-filename {
  display: none;
}
.dropzone .dz-preview.dz-image-preview:hover .dz-details .dz-filename {
  display: block !important;
}
.dropzone .dz-preview:hover .dz-details .dz-filename span {
  position: absolute;
  top: -20px;
  left: 0 !important;
  background: var(--sistema-theme-primary);
  color: #fff;
}

div#upload-progress {
  position: fixed;
  right: 25px;
  bottom: 0;
  -webkit-animation: scale-up-center 1s ease-in-out infinite alternate both;
  animation: scale-up-center 1s ease-in-out infinite alternate both;
}

#produto-dropzone > div.dz-preview.d-flex.flex-wrap {
  display: none !important;
}
/* 
.h-100 {
  height: 100px !important;
} */

/* Footer */
footer.footer-system {
  margin-left: 270px;
  padding-right: 40px;
  overflow: hidden;
  text-align: center;
}

/* Select */
.form-select {
  padding: 1rem 0.75rem;
}
span.select2-selection.select2-selection--multiple {
  padding: 12px 0px;
  background-color: var(--bs-body-bg);
  background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-border-color) !important;
}
.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice__display {
  color: #000;
}
.select2-container {
  display: block !important;
  width: 100% !important;
}

/* Produto */
.img-container {
  width: 220px;
  height: 150px;
  overflow: hidden;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7f7f7;
  margin-bottom: 12px;
}
.produto-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.remove-image-btn {
  position: absolute;
  top: 5px;
  right: 5px;
}
span.ordem-imgs {
  position: absolute;
  left: 6px;
  top: 6px;
  background: #fff;
  padding: 5px;
  border-radius: 6px;
  font-size: 12px;
  cursor: move;
}

/* Configuracoes */

.box-card-funcoes {
  background: var(--bs-body-bg);
  padding: 30px;
  border-radius: 8px;
}
.box-card-funcoes-header i {
  font-size: 20px;
  margin-bottom: 19px;
}
.box-card-funcoes a {
  text-decoration: none;
}

@-webkit-keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/* Modal Comentarios */

#modalComentarios #listaComentarios {
  max-height: 500px;
  overflow-y: auto;
}

#modalComentarios .card.bg-primary {
  border: none;
}

#modalComentarios .card.bg-light {
  border: 1px solid #ddd;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

/* Modal Analise de Documentação */
#modalControleDocs .modal-header {
  border-bottom: 2px solid #007bff;
}

#modalControleDocs .table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}

#modalControleDocs .badge {
  font-size: 0.9rem;
}

#modalControleDocs .btn-sm {
  margin-right: 5px;
}

/* Load */
.ajax-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8)
    url("https://retchhh.wordpress.com/wp-content/uploads/2015/03/loading7.gif")
    no-repeat center;
  z-index: 9999;
  display: none;
}

/* MOdal Ordernar */

#modalOrdenarServicos li {
  cursor: all-scroll;
}

/* analises-creditos-home */
.analises-creditos-home #serviceContainer {
  margin-bottom: 2rem;
}
.analises-creditos-home #serviceContainer i {
  color: #fff;
  z-index: 1;
  position: relative;
}
.analises-creditos-home .service-card-modern {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.analises-creditos-home .service-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}
.analises-creditos-home .card-header {
  background: linear-gradient(135deg, #007bff, #0056b3) !important;
  border-radius: 12px 12px 0 0;
  color: white;
  position: relative;
  z-index: 1;
}
.analises-creditos-home .header-overlay {
  border-radius: 12px 12px 0 0;
}
.analises-creditos-home .card-title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
}
.analises-creditos-home .card-text {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.5;
}
.analises-creditos-home .btn-outline-primary {
  border-radius: 20px;
  padding: 8px 16px;
  font-weight: 600;
}
.analises-creditos-home .btn-outline-primary:hover {
  background-color: #007bff;
  color: white;
}
.analises-creditos-home #searchService {
  border-radius: 25px;
  padding: 10px 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* analises creditos solicitar */
.analises-creditos-solicitar .form-step {
  animation: fadeIn 0.4s ease-in-out;
}
.analises-creditos-solicitar .progress {
  background-color: #e9ecef;
  height: 10px;
}
.analises-creditos-solicitar .progress-bar {
  background: linear-gradient(90deg, #28a745, #218838);
  height: 10px;
}
.analises-creditos-solicitar .form-control,
.analises-creditos-solicitar .form-select {
  height: 52px;
  font-size: 1rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease-in-out;
}
.analises-creditos-solicitar .form-control:focus,
.analises-creditos-solicitar .form-select:focus {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-color: #28a745;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.analises-creditos-solicitar button {
  border-radius: 30px;
}
.analises-creditos-solicitar textarea {
  height: 120px;
}
.analises-creditos-solicitar input[type="file"] {
  height: auto;
}
.analises-creditos-solicitar .is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* CRM */
.kanban-full .kanban-container {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(45, 46, 46, 0.67) #f1f1f1;
}
.kanban-full .kanban-container::-webkit-scrollbar {
  height: 10px;
}
.kanban-full .kanban-container::-webkit-scrollbar-thumb {
  background: #007bff;
  border-radius: 5px;
}
.kanban-full .kanban-container::-webkit-scrollbar-thumb:hover {
  background: #0056b3;
}
.kanban-full .kanban-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 5px;
}
.kanban-full .kanban-cards {
  max-height: 500px;
  overflow-y: auto;
  padding-right: 5px;
  scrollbar-width: thin;
  scrollbar-color: rgba(51, 51, 51, 0.7) #f1f1f1;
}
.kanban-full .kanban-cards::-webkit-scrollbar {
  width: 8px;
}
.kanban-full .kanban-cards::-webkit-scrollbar-thumb {
  background: #28a745;
  border-radius: 5px;
}
.kanban-full .kanban-cards::-webkit-scrollbar-thumb:hover {
  background: #1e7e34;
}
.kanban-full .kanban-cards::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 5px;
}
.kanban-full .kanban-column {
  background: #fff;
  border-radius: 8px;
  min-width: 300px;
  max-width: 300px;
  padding: 10px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}
.kanban-full .kanban-header {
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  padding: 10px;
  border-bottom: 2px solid #ddd;
  position: relative;
}
.kanban-full .kanban-count {
  background: #e74c3c;
  color: white;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 14px;
  position: absolute;
  top: 5px;
  right: 10px;
}
.kanban-full .kanban-cards {
  min-height: 300px;
  max-height: 500px;
  overflow-y: auto;
}
.kanban-full .kanban-card {
  background: white;
  padding: 10px;
  margin-bottom: 24px !important;
  border-radius: 5px;
  cursor: grab;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #007bff;
}
.kanban-full .add-card,
.kanban-full .add-column {
  background: #007bff;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 10px;
  width: 100%;
}
.kanban-full .add-card:hover,
.kanban-full .add-column:hover {
  background: #0056b3;
}
.kanban-full .card-info {
  font-size: 14px;
  color: #555;
}
.kanban-full .card-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
}
.kanban-full .card-actions i {
  cursor: pointer;
}
.kanban-full .cursor-pointer {
  cursor: pointer;
}

/* Comentarios */
#listaComentarios {
  max-height: 400px;
  overflow-y: auto;
  padding-right: 5px;
}
#listaComentarios::-webkit-scrollbar {
  width: 8px;
}
#listaComentarios::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}
.mention-item {
  cursor: pointer;
  font-weight: bold;
}
.comment-card {
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 10px;
}
.comment-user {
  font-weight: bold;
}
.comment-time {
  font-size: 12px;
}
.bg-user-message {
  background-color: rgb(51 53 55);
  color: white;
}
.bg-other-message {
  background-color: #f8f9fa;
  color: black;
}
.bg-other-message .comment-time {
  color: #000 !important;
}
.bg-user-message .comment-time {
  color: #fff !important;
}
.dropdown-menu-itens-acoes li {
  cursor: pointer;
}
/* Public Content */
main.public-content {
  background: #f7f7f7;
  margin-top: 84px;
}
main img.logo-img {
  width: 160px;
}
.h-100vh {
  height: 100vh;
  margin-top: 12px;
}
.conteudo-modal {
  border-radius: 0.5rem;
  border: none;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
#modalBuscaAvancada .form-floating > label {
  padding-left: 2.5rem;
}
#modalBuscaAvancada .form-floating .form-control {
  padding-left: 2.5rem;
  height: calc(3.5rem + 2px);
}
.input-icon {
  position: absolute;
  left: 1rem;
  top: 1.25rem;
  color: #6c757d;
  z-index: 5;
}
.btn-busca:hover {
  background-color: #059669;
  border-color: #059669;
}
.onoff input.toggle {
  display: none;
}

.onoff input.toggle + label {
  display: inline-block;
  position: relative;
  height: 40px;
  width: 70px;
  border-radius: 20px;
  background-color: #6c757d; /* Bootstrap secondary */
  cursor: pointer;
  transition: background-color 0.2s;
}

.onoff input.toggle + label:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  height: 36px;
  width: 36px;
  background-color: white;
  border-radius: 50%;
  transition: left 0.2s;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.onoff input.toggle:checked + label {
  background-color: #198754; /* Bootstrap success */
}

.onoff input.toggle:checked + label:after {
  left: 32px;
}
.sortable-service-placeholder {
  background-color: #f0f0f0;
  border: 2px dashed #a9a9a9;
  min-height: 150px;
  border-radius: 0.5rem;
}
.ui-sortable-helper {
  background-color: #f8f9fa !important;
  border: 2px dashed #0d6efd !important;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  opacity: 1.2;
}
