[role="button"] {
  cursor: pointer;
}

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

:root {
  --metahuman-1: #06a7c0;
  --metahuman-2: #067687;
  --metahuman-3: #034e59;
  --metahuman-4: #013139;
  --metahuman-5: #001316;
  --metahuman-6: #28df68;
  --metahuman-7: #4cdef5;
  --metahuman-8: #9de6f1;
  --metahuman-9: #e3eff1;

  /* New refactor colors */
  --success: #51d2b7;
  --success-dark: #039700;
  --danger: #fb9678;
  --danger-dark: #a20d0d;
  --primary: #186073;
  --primary-dark: #013139;
  --info: #17a2b8;
  --light: #dbdbdb;
  --secondary: #5c5d5d;
  --muted: #999999;
  --warning: #ffc107;
  --text-muted-strong: #8B8B8B;  /* stronger muted text */
  --primary-600: #145463;        /* darker primary for hover */

  /* Dei Colors */
  --dei-purple: #6f3599;
  --dei-blue: #2d65a8;
  --dei-green: #1ca788;
  --dei-pink: #e93f95;
  --dei-yellow: #feb61f;
  --dei-gold: #c79730;
}

/* Border helpers */
.app-card-border-top-primary{
  border-top: 4px solid var(--primary) !important;
}

.brand-link .brand-image {
  float: none;
  max-height: 90px;
  max-width: 90%;
}

.layout-fixed .brand-link {
  text-align: center;
  padding: 1.4rem 0.5rem;
  border-top: 8px solid var(--info) !important;
  background: #fff;
}

.layout-fixed .wrapper .sidebar {
  height: calc(100vh - 200px) !important;
}

dl,
ul {
  margin-top: 0;
  margin-bottom: 1rem;
  list-style: none;
  padding-left: 0;
}

a {
  color: var(--info);
}

.h-100 {
  /*min-height:80vh*/
}

.typed {
  font-size: 24px;
  color: var(--success) !important;
}

.typed-cursor {
  font-size: 24px;
  color: #fff;
}

.chatbox .card-body.chat_screen {
  background: -webkit-linear-gradient(top, #294159, #0e7585);
  background: -moz-linear-gradient(top, #294159, #0e7585);
  background: linear-gradient(to bottom, #294159, #0e7585);
}

.chatbox .logo {
  width: 80px;
  height: auto;
  display: table;
  margin: 30px auto 40px;
}

.timer {
  position: absolute;
  top: 5px;
  right: 15px;
  /*width:65px;
  height:65px;*/
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.timer img {
  width: 100%;
  z-index: 1;
}

.countdown {
  font-size: 1.6rem;
  text-align: center;
  /*position: absolute;
  z-index: 10*/
}

/*--- UTILITIES ---*/

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

.overflow-visible {
  overflow: visible !important;
}

.border-success {
  border-color: var(--success) !important;
}

.border-primary {
  border-color: var(--primary) !important;
}

.border-info {
  border-color: var(--info) !important;
}

.border-dark {
  border-color: rgb(0, 0, 0, 0.1) !important;
}

.border-md {
  border-width: 2px !important;
}

.border-lg {
  border-width: 4px !important;
}

.progress-lg {
  height: 22px;
}

.pill {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.pill-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.pill-info {
  color: #ffffff;
  background-color: var(--info);
  border-color: var(--info);
  box-shadow: none;
}

.pill-warning {
  color: #1f2d3d;
  background-color: var(--warning);
  border-color: var(--warning);
  box-shadow: none;
}

.pill-danger {
  color: #fff !important;
  background-color: var(--danger);
  border-color: var(--danger);
  box-shadow: none;
}

.pill-primary {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #fff !important;
}

/*--- TEXTOS ---*/

.display-4 {
  font-size: 3rem !important;
  font-weight: 300;
  line-height: 1.2;
}

@media (min-width: 180px) {
  h1,
  .h1 {
    font-size: 1.8rem;
  }

  h2,
  .h2 {
    font-size: 1.6rem;
  }

  h3,
  .h3 {
    font-size: 1.4rem;
  }

  h4,
  .h4 {
    font-size: 1.3rem;
  }

  h5,
  .h5 {
    font-size: 1rem;
  }

  h6,
  .h6 {
    font-size: 1rem;
    line-height: 1.4em;
  }
}

@media (min-width: 576px) {
  h1,
  .h1 {
    font-size: 2rem;
  }

  h2,
  .h2 {
    font-size: 1.6rem;
  }

  h3,
  .h3 {
    font-size: 1.4rem;
  }

  h4,
  .h4 {
    font-size: 1.3rem;
  }

  h5,
  .h5 {
    font-size: 1rem;
  }

  h6,
  .h6 {
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  h1,
  .h1 {
    font-size: 2.2rem;
  }

  h2,
  .h2 {
    font-size: 1.6rem;
  }

  h3,
  .h3 {
    font-size: 1.4rem;
  }

  h4,
  .h4 {
    font-size: 1.3rem;
  }

  h5,
  .h5 {
    font-size: 1rem;
  }

  h6,
  .h6 {
    font-size: 1rem;
  }
}

@media (min-width: 992px) {
  h1,
  .h1 {
    font-size: 2.3rem;
  }

  h2,
  .h2 {
    font-size: 1.8rem;
  }

  h3,
  .h3 {
    font-size: 1.65rem;
  }

  h4,
  .h4 {
    font-size: 1.4rem;
  }

  h5,
  .h5 {
    font-size: 1.15rem;
  }

  h6,
  .h6 {
    font-size: 1rem;
  }
}

@media (min-width: 1200px) {
  h1,
  .h1 {
    font-size: 2.5rem;
  }

  h2,
  .h2 {
    font-size: 2rem;
  }

  h3,
  .h3 {
    font-size: 1.75rem;
  }

  h4,
  .h4 {
    font-size: 1.5rem;
  }

  h5,
  .h5 {
    font-size: 1.25rem;
  }

  h6,
  .h6 {
    font-size: 1rem;
  }
}

h1,
.h1 {
  font-weight: 300;
}

.bold {
  font-weight: 600 !important;
}

.light {
  font-weight: 300 !important;
}

.badge-primary,
.progress-bar-primary,
.bg-primary {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #fff;
}

.badge-success,
.progress-bar-success,
.bg-success {
  background-color: var(--success) !important;
  border-color: var(--success) !important;
  color: #fff;
}

.badge-white,
.progress-bar-white,
.bg-white {
  background-color: #ffffff !important;
  border-color: #cccccc !important;
}

.badge-Diferencial {
  color: #fff;
  background-color: var(--danger);
}

.badge-Desejavel {
  color: #fff;
  background-color: var(--info);
}

.border-left-primary {
  border-left: 0.25rem solid var(--danger) !important;
}

.text-primary {
  color: var(--primary) !important;
}

/* Fundo claro derivado da cor primária */
.bg-primary-soft {
  /* 24, 96, 115 é o rgb aproximado de #186073 */
  background-color: rgba(24, 96, 115, 0.10) !important;
}

/* Tooltip único mais largo: Canais */
.canais-tooltip-inner {
  max-width: 680px !important;
  white-space: normal !important;
}

.text-primary-dark {
  color: var(--primary-dark) !important;
}

.text-secondary {
  color: var(--secondary) !important;
}

.text-success {
  color: var(--success) !important;
}

.h100 {
  height: 100%;
}

/*--- COLORS ---*/
.green {
  color: var(--success);
}

.blue {
  color: #35729e;
}

.bg-danger {
  background-color: var(--danger) !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.btn-success,
.btn-success:link {
  background: var(--success) !important;
  border-color: var(--success) !important;
  color: #fff !important;
}

.btn-success-dark,
.btn-success-dark:link {
  background: var(--success-dark) !important;
  border-color: var(--success-dark) !important;
  color: #fff !important;
}

/* .btn-success-gradient {
  background: linear-gradient(90deg, var(--success-dark) 0%, #014f00 100%-dark) !important;
  color: #fff !important;
} */

.btn-primary {
  background: var(--primary) !important;
  border-color: var(--primary)!important;
  color: #fff !important;
}



.btn-primary-gradient {
  background: linear-gradient(90deg, var(--primary) 0%, var(--info) 100%) !important;
  border-color: var(--info) !important;
  color: #fff !important;
}

.btn-primary.active {
  background: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
  color: #fff !important;
}

.btn-outline-primary {
  color: var(--primary) !important;
  border-color: var(--primary) !important;
}

.btn-outline-primary:hover {
  color: #fff !important;
  background-color: var(--primary) !important;
}

.btn-default:not(:disabled):not(.disabled):active,
.btn-default:not(:disabled):not(.disabled).active,
.show > .btn-default.dropdown-toggle {
  background-color: rgb(0, 0, 0, 0.1);
}

.btn-danger {
  color: #fff !important;
  background-color: var(--danger) !important;
  border-color: var(--danger);
  box-shadow: none;
}

.btn-outline-danger {
  color: var(--danger) !important;
  border-color: var(--danger) !important;
}

.btn-outline-danger:hover {
  color: #fff !important;
  background-color: var(--danger) !important;
  border-color: var(--danger) !important;
}

.btn-white {
  background-color: #ffffff;
  border-color: #cccccc;
  color: #333 !important;
}

.btn-info {
  color: #ffffff !important;
}

.buttonFinish,
.buttonNext,
.buttonPrevious {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  float: right;
  margin-left: 5px;
}

.buttonFinish {
  background: var(--success) !important;
  border-color: var(--success) !important;
  color: #fff;
}

.buttonNext {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #fff !important;
}

.buttonPrevious {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #fff !important;
}

.btn-circle-sm {
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-size: 0.9rem;
  padding: 0;
}

.btn-answer {
  border-radius: 3px;
  border: 2px solid #ddd;
  color: var(--secondary);
  font-size: 12px;
  padding: 15px;
  position: relative;
  text-align: center;
}

.btn-answer:hover {
  border: 2px solid #555;
}

.actionBar {
  /* padding: 1rem !important; */
  overflow: auto;
}

.actionBar .loader {
  display: none;
}

.nav-sidebar > .nav-item {
  border-bottom: 1px solid rgb(255, 255, 255, 0.1);
}

.nav-sidebar > .nav-item .nav-icon {
  color: var(--info) !important;
  font-size: 1.3rem;
  margin-right: 0.4rem;
}

.nav-sidebar > .nav-item .nav-link {
  padding: 1.2rem 1rem;
}

ion-icon {
  color: var(--info) !important;
  --ionicon-stroke-width: 16px !important;
}

.nav-link {
  display: block;
  padding: 0.8rem 1rem;
}

.nav-sidebar .nav-link > .right,
.nav-sidebar .nav-link > p > .right {
  position: absolute;
  right: 1rem;
  top: 1.1rem;
}

.nav-pills .nav-link {
  padding: 0.8rem 1rem;
  font-size: 1rem;
  position: relative;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: var(--primary) !important;
}

.nav-pills.segment_categories .nav-link.active:after,
.nav-pills .show > .nav-link:after {
  content: "";
  border-style: solid;
  position: absolute;
  left: 50%;
  bottom: -6px;
  margin-left: -10px;
  border-width: 10px 12.5px 0 12.5px;
  border-color: var(--primary) transparent transparent transparent;
}

.nav-pills .nav-link.selected,
.nav-pills .show > .nav-link {
  color: #fff !important;
  background-color: var(--primary) !important;
}

.nav-tabs.outline-tabs.nav-tabs-primary .nav-link.active,
.nav-tabs.outline-tabs.nav-tabs-primary .nav-item.show .nav-link {
  border-top: 3px solid var(--primary) !important;
}

.nav-tabs.outline-tabs.nav-tabs-info .nav-link.active,
.nav-tabs.outline-tabs.nav-tabs-info .nav-item.show .nav-link {
  border-top: 3px solid var(--info) !important;
}

.nav-tabs.outline-tabs.nav-tabs-success .nav-link.active,
.nav-tabs.outline-tabs.nav-tabs-success .nav-item.show .nav-link {
  border-top: 3px solid var(--success) !important;
}

.nav-tabs.nav-lg .nav-item .nav-link {
  padding: 1.4rem 2rem !important;
  font-size: 1rem;
  color: var(--primary);
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
  background: rgb(255, 255, 255, 0.7) !important;
}

.nav-tabs.nav-modal .nav-link {
  padding: 1rem !important;
}

.main-header .navbar-nav .nav-item {
  display: flex;
  align-items: center;
}

.main-header .nav-link {
  height: inherit;
}

.alert-success {
  color: #fff;
  background: var(--success) !important;
  border-color: var(--success) !important;
}

.alert .icon {
  color: rgba(0, 0, 0, 0.15);
  position: absolute;
  top: 10px;
  right: 5px;
  z-index: 0;
}

.alert .icon i {
  font-size: 40px;
}

.tooltipsample li {
  display: inline-block;
}

.evaluationImage {
  width: 62%;
  height: auto;
}

/*---FORMS---*/

.mainFloat .radio {
  float: left;
  margin: 5px 10px 0 0;
}

.info-box.active {
  background: #f8f8f8;
  box-shadow: none;
  border: 1px solid #eee;
  pointer-events: none;
}

.info-box-link {
  cursor: pointer;
}

.info-box-link:hover {
  cursor: pointer;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.125), 0 1px 3px rgba(0, 0, 0, 0.5);
}

/*** DASHBOARD ***/

.commentlist {
  list-style: none;
  clear: both;
}

.commentlist li {
  display: block;
  border-bottom: 1px solid #ddd;
  padding: 15px;
  overflow: auto;
}

.commentlist li a {
  color: var(--primary);
}

.commentlist li img {
  /*width: 70px; padding: 10px;*/
}

.commentlist li .comment-info {
  margin-left: 80px;
  min-height: 90px;
}

.commentlist li p:last-child {
  margin-bottom: 0;
}

.commentlist li .btn {
  margin-right: 3px;
}

.commentlist li .btn span {
  margin-right: 5px;
}

.commentlist li .comment-info {
  margin-left: 55px;
}

.commentlist li .comment-info h4 {
  font-size: 1rem;
}

/*--- user / Tarefas ---*/
.evaluationImage {
  width: 62%;
  height: auto;
}

.topicpanel .author-thumb {
  overflow: hidden;
  width: 70px;
  margin: 2rem auto 0;
}

.topicpanel .author-thumb a,
.topicpanel .author-thumb div,
.topicpanel .author-thumb .thumb_circle {
  overflow: hidden;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.topicpanel .author-thumb .thumb_circle i {
  font-size: 2rem;
}

.commentlist li .comment-info {
  margin-left: 90px;
}

.commentlist li a {
  float: left;
}

[class*="sidebar-dark-"] .nav-sidebar > .nav-item > .nav-treeview {
  background: rgb(0, 0, 0, 0.2);
}

.card-primary.card-outline {
  border-top: 3px solid var(--primary) !important;
}

.card-success.card-outline {
  border-top: 3px solid var(--success) !important;
}

.card-danger.card-outline {
  border-top: 3px solid var(--danger) !important;
}

/*--- RELATORIOS ---*/

.relatorio {
}

.table th,
.table td {
  vertical-align: middle;
}

.table th form,
.table td form {
  display: inline-block;
}

.table.cond th,
.table.cond td {
  padding: 0.3rem;
  white-space: nowrap;
}

.relatorio div.page div.card {
  min-height: 90vh !important;
  /* max-height: 1000px!important;*/
  page-break-after: always !important;
}

@media print {
  .relatorio div.page {
    page-break-after: always;
    page-break-before: always;
  }

  .relatorio div.page.cover {
    page-break-after: always;
    page-break-before: avoid !important;
  }
}

.relatorio .page .card .card-body {
  padding: 3em 3em 6em 3em;
}

.relatorio .page .rnr-page .card-body {
  padding: 3em;
  padding-bottom: 1rem;
}

.relatorio div.page div.card:after {
  content: url("/bundles/hfapp/images/logo_report.png");
  left: 40px;
  position: absolute;
  bottom: 30px;
}

.page_number {
  position: absolute;
  bottom: 30px;
  right: 40px;
  font-size: 0.9em;
  color: var(--secondary) !important;
}

.toolbar {
  background: #fff;
  padding: 15px 30px;
  z-index: 1000;
  border-bottom: 1px solid #dee2e6;
  /*width:100%;*/
  left: 250px;
  right: 0;
  -webkit-transition-delay: 0.01s;
  transition-delay: 0.01s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.toolbar.sticky {
  position: fixed;
  top: 0;
}

.chart_desempenho {
  padding-top: 92px;
  overflow: hidden;
  position: relative;
}

.vertical_bar {
  position: absolute;
  top: 0;
  width: 1px;
  border-left: 2px dotted #3a4250;
  height: 100%;
  z-index: 100;
}

.grupo.vertical_bar {
  top: 30px !important;
}

.media_historica.vertical_bar {
  top: 60px !important;
}

.vertical_bar .ref {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4em;
  position: absolute;
  top: 0px;
  left: -15px;
  border-radius: 100%;
  cursor: pointer;
}

/*
.vertical_bar .ref.bg-success {
  top:-30px!important;
}
.vertical_bar .ref.bg-primary {
  top:0px!important;
}
.vertical_bar .ref.bg-secondary {
  top:30px!important;
}*/
/*
.vertical_bar .ref.sm.bg-success {
  top:-14px!important;
}
.vertical_bar .ref.sm.bg-primary {
  top:-7px!important;
}
.vertical_bar .ref.sm.bg-secondary {
  top:0px!important;
}*/

.vertical_bar .ref.sm {
  width: 20px;
  height: 20px;
  font-size: 1em;
  top: 0;
  left: -10px;
}

.vertical_bar.sm {
  top: 0 !important;
}

.vertical_bar.sm.grupo {
  top: 20px !important;
}

.vertical_bar.sm.media_historica {
  top: 40px !important;
}

.progress-group .badge {
  position: absolute;
  top: 18px;
  left: 103%;
}

@media print {
  .content-wrapper {
    background: #fff;
  }

  .page.align-items-center {
    -ms-flex-align: start !important;
    align-items: start !important;
  }
}

/*--- EDIT PAGE ---*/

.editable {
  cursor: pointer;
  border: 2px dashed #ccc;
}

.editable:hover {
  background: var(--warning) !important;
}

.editable .edit {
  display: none;
}

.editable.txt_title .view.hide,
.editable.txt_subtitle .view.hide,
.editable.txt_paragraph .view.hide {
  display: none;
}

.editable.txt_title .edit.show,
.editable.txt_subtitle .edit.show,
.editable.txt_paragraph .edit.show {
  display: block;
}

.edit_page_tools {
  /*background:#343a40;
  border:1px solid #4b545c;*/
  position: absolute;
  right: 3em;
  top: 3em;
  z-index: 200;
}

.display-4 .form-control {
  font-size: 3rem !important;
  font-weight: 300;
  line-height: 1.2;
}

/*--- Relatorios ---*/

.page-edit div[class^="col-"] {
  border: 1px dashed #ccc;
  min-height: 1em;
}

@media print {
  .no-print,
  .no-print * {
    display: none !important;
  }

  .page-edit div[class^="col-"] {
    border: none !important;
  }
}

.ui-state-highlight {
  height: 3em;
  background: #c9fff4;
  border: 1px dashed var(--success);
  margin-bottom: 1.5rem !important;
}

.login-page,
.register-page {
  /*background: #343a40!important;*/
  background: -webkit-linear-gradient(bottom left, #294159, var(--info));
  background: -moz-linear-gradient(bottom left, #294159, var(--info));
  background: linear-gradient(to top right, #294159, var(--info));
  height: initial;
}

.login-box .login-logo img {
  width: 70%;
}

.small-box .icon > i.fa,
.small-box .icon > i.fas,
.small-box .icon > i.far,
.small-box .icon > i.fab,
.small-box .icon > i.glyphicon,
.small-box .icon > i.ion {
  font-size: 50px;
  top: 20px;
}

.small-box:hover .icon > i {
  font-size: 55px;
}

.widget-user .card-footer {
  padding: 0.75rem 1.25rem !important;
}

.img-back {
  background-size: cover;
  background-position: center;
}

.widget-user .widget-user-image {
  width: 90px;
  height: 90px;
  /*border: 3px solid #ffffff;*/
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23) !important;
  border-radius: 100%;
  background-position: center;
  background-size: cover;
  /*overflow:hidden;*/
}

[class*="sidebar-dark-"] {
  /*background-color: #294159!important;*/
  background: -webkit-linear-gradient(top, #294159, #0e7585);
  background: -moz-linear-gradient(top, #294159, #0e7585);
  background: linear-gradient(to bottom, #294159, #0e7585);
}

.sidebar-dark-primary .nav-sidebar > .nav-item > .nav-link.active,
.sidebar-light-primary .nav-sidebar > .nav-item > .nav-link.active {
  background-color: transparent;
  color: #ffffff;
}

[class*="sidebar-dark-"] .nav-treeview > .nav-item > .nav-link.active,
[class*="sidebar-dark-"] .nav-treeview > .nav-item > .nav-link.active:hover,
[class*="sidebar-dark-"] .nav-treeview > .nav-item > .nav-link.active:focus {
  background-color: rgb(255, 255, 255, 0.1);
  color: #ffffff !important;
}

[class*="sidebar-dark-"]
  .nav-treeview
  > .nav-item
  > .nav-treeview
  > .nav-item
  > .nav-link.active,
[class*="sidebar-dark-"] .nav-treeview > .nav-item > .nav-link.active:hover,
[class*="sidebar-dark-"] .nav-treeview > .nav-item > .nav-link.active:focus {
  background-color: none;
  color: #ffffff !important;
}

/*--- SELECT 2 ---*/

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 100% !important;
  position: absolute;
  top: -1px;
  right: 1px;
  width: 3em !important;
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: initial !important;
  user-select: none;
  background-color: transparent;
  -webkit-user-select: none;
}

.selection + select {
  border: 1px solid red !important;
}

.select2-results__option--highlighted {
  background-color: #14830b;
}

#unity-container.unity-desktop {
  left: 0 !important;
  top: 0 !important;
  transform: none !important;
  text-align: center !important;
  width: auto !important;
  display: table !important;
  margin: auto !important;
  border: 8px solid #fff !important;
}

#unity-container {
  position: inherit !important;
}

/*--- chat ---*/

.chat-search-box {
  -webkit-border-radius: 3px 0 0 0;
  -moz-border-radius: 3px 0 0 0;
  border-radius: 3px 0 0 0;
  padding: 0.75rem 1rem;
}

.chat-search-box .input-group .form-control {
  -webkit-border-radius: 2px 0 0 2px;
  -moz-border-radius: 2px 0 0 2px;
  border-radius: 2px 0 0 2px;
  border-right: 0;
}

.chat-search-box .input-group .form-control:focus {
  border-right: 0;
}

.chat-search-box .input-group .input-group-btn .btn {
  -webkit-border-radius: 0 2px 2px 0;
  -moz-border-radius: 0 2px 2px 0;
  border-radius: 0 2px 2px 0;
  margin: 0;
}

.chat-search-box .input-group .input-group-btn .btn i {
  font-size: 1.2rem;
  line-height: 100%;
  vertical-align: middle;
}

@media (max-width: 767px) {
  .chat-search-box {
    display: none;
  }
}

/************************************************
************************************************
                Users Container
************************************************
************************************************/

.users-container {
  position: relative;
  padding: 1rem 0;
  border-right: 1px solid #e6ecf3;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

/************************************************
************************************************
                    Users
************************************************
************************************************/

.users {
  padding: 0;
}

.users .person {
  position: relative;
  width: 100%;
  padding: 10px 1rem;
  cursor: pointer;
  border-bottom: 1px solid #f0f4f8;
}

.users .person:hover {
  background-color: #ffffff;
  /* Fallback Color */
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#e9eff5),
    to(#ffffff)
  );
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(right, #e9eff5, #ffffff);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(right, #e9eff5, #ffffff);
  /* FF3.6 */
  background-image: -ms-linear-gradient(right, #e9eff5, #ffffff);
  /* IE10 */
  background-image: -o-linear-gradient(right, #e9eff5, #ffffff);
  /* Opera 11.10+ */
  background-image: linear-gradient(right, #e9eff5, #ffffff);
}

.users .person.active-user {
  background-color: #ffffff;
  /* Fallback Color */
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#f7f9fb),
    to(#ffffff)
  );
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(right, #f7f9fb, #ffffff);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(right, #f7f9fb, #ffffff);
  /* FF3.6 */
  background-image: -ms-linear-gradient(right, #f7f9fb, #ffffff);
  /* IE10 */
  background-image: -o-linear-gradient(right, #f7f9fb, #ffffff);
  /* Opera 11.10+ */
  background-image: linear-gradient(right, #f7f9fb, #ffffff);
}

.users .person:last-child {
  border-bottom: 0;
}

.users .person .user {
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

.users .person .user img {
  width: 48px;
  height: 48px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
}

.users .person .user .status {
  width: 10px;
  height: 10px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  background: #e6ecf3;
  position: absolute;
  top: 0;
  right: 0;
}

.users .person .user .status.online {
  background: #9ec94a;
}

.users .person .user .status.offline {
  background: #c4d2e2;
}

.users .person .user .status.away {
  background: #f9be52;
}

.users .person .user .status.busy {
  background: #fd7274;
}

.users .person p.name-time {
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-block;
}

.users .person p.name-time .time {
  font-weight: 400;
  font-size: 0.7rem;
  text-align: right;
  color: #8796af;
}

@media (max-width: 767px) {
  .users .person .user img {
    width: 30px;
    height: 30px;
  }

  .users .person p.name-time {
    display: none;
  }

  .users .person p.name-time .time {
    display: none;
  }
}

/************************************************
************************************************
                Chat right side
************************************************
************************************************/

.selected-user {
  width: 100%;
  padding: 0 15px;
  min-height: 64px;
  line-height: 64px;
  border-bottom: 1px solid #e6ecf3;
  -webkit-border-radius: 0 3px 0 0;
  -moz-border-radius: 0 3px 0 0;
  border-radius: 0 3px 0 0;
}

.selected-user span {
  line-height: 100%;
}

.selected-user span.name {
  font-weight: 700;
}

.chat-container {
  position: relative;
  padding: 1rem;
}

.chat-container li.chat-left,
.chat-container li.chat-right {
  display: flex;
  flex: 1;
  flex-direction: row;
  margin-bottom: 40px;
}

.chat-container li img {
  width: 48px;
  height: 48px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

.chat-container li .chat-avatar {
  margin-right: 20px;
}

.chat-container li.chat-right {
  justify-content: flex-end;
}

.chat-container li.chat-right > .chat-avatar {
  margin-left: 20px;
  margin-right: 0;
}

.chat-container li .chat-name {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
}

.chat-container li .chat-text {
  padding: 0.4rem 1rem;
  font-size: 1.4em;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background: #ffffff;
  font-weight: 300;
  line-height: 150%;
  position: relative;
}

.chat-container li .chat-text.buttons {
  padding: 0.4rem 1rem;
  font-size: 1.4em;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background: #ffffff;
  font-weight: 300;
  line-height: 150%;
  position: relative;
  display: flex;
  align-items: center;
}

.chat-container li .chat-text:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 10px;
  left: -20px;
  border: 10px solid;
  border-color: transparent #ffffff transparent transparent;
}

.chat-container li.chat-right > .chat-text {
  text-align: right;
}

.chat-container li.chat-right > .chat-text:before {
  right: -20px;
  border-color: transparent transparent transparent #ffffff;
  left: inherit;
}

.chat-container li .chat-hour {
  padding: 0;
  margin-bottom: 10px;
  font-size: 0.75rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0 0 0 15px;
}

.chat-container li .chat-hour > span {
  font-size: 16px;
  margin-left: 0.5rem !important;
}

.chat-container li.chat-right > .chat-hour {
  margin: 0 15px 0 0;
}

@media (max-width: 767px) {
  .chat-container li.chat-left,
  .chat-container li.chat-right {
    flex-direction: column;
    margin-bottom: 30px;
  }

  .chat-container li img {
    width: 32px;
    height: 32px;
  }

  .chat-container li.chat-left .chat-avatar {
    margin: 0 0 5px 0;
    display: flex;
    align-items: center;
  }

  .chat-container li.chat-left .chat-hour {
    justify-content: flex-end;
  }

  .chat-container li.chat-left .chat-name {
    margin-left: 5px;
  }

  .chat-container li.chat-right .chat-avatar {
    order: -1;
    margin: 0 0 5px 0;
    align-items: center;
    display: flex;
    justify-content: right;
    flex-direction: row-reverse;
  }

  .chat-container li.chat-right .chat-hour {
    justify-content: flex-start;
    order: 2;
  }

  .chat-container li.chat-right .chat-name {
    margin-right: 5px;
  }

  .chat-container li .chat-text {
    font-size: 0.8rem;
  }
}

.chat-form {
  padding: 15px;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  border-top: 1px solid white;
}

.chat-container li .chat-avatar .pic {
  border-radius: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  width: 48px;
  height: 48px;
  justify-content: center;
}

.chat-container li .chat-avatar .pic img {
  width: 32px;
  height: 32px;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.chat-container .card {
  border: 0;
  background: #f4f5fb;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  margin-bottom: 2rem;
  box-shadow: none;
}

.type_box {
  position: absolute;
  bottom: 0;
  width: 100%;
  max-width: 800px;
  padding: 30px;
  background: #fff;
  z-index: 300;
}

.breadcrumb.h1 {
  font-size: 1.8rem !important;
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.border-primary {
  border-color: var(--primary) !important;
}

.border-gray {
  border-color: var(--secondary) !important;
}

.error {
  color: #dc3545;
  padding-top: 1px;
}

#group_name_title {
  font-size: 16px;
  font-weight: bold;
  padding-top: 10px;
  padding-bottom: 10px;
}

.question_answer .btn {
  text-align: left;
}

.question_answer .btn {
  display: flex !important;
  align-items: center;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: normal !important;
  margin-bottom: 1rem;
  padding: 0.75rem 1.2rem;
}

.question_answer .btn .dot {
  height: 20px;
  width: 20px;
  background: #d9d9d9;
  position: relative;
  border-radius: 50%;
  margin-right: 0.8rem;
}

.question_answer .btn .dot::before {
  position: absolute;
  content: "";
  top: 4px;
  left: 4px;
  width: 12px;
  height: 12px;
  background: var(--success) !important;
  border-radius: 50%;
  opacity: 0;
  transform: scale(1.5);
  transition: all 0.3s ease-in-out;
}

/*--- Btn Dot Grades */
.question_answer .btn-grades {
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: normal !important;
  display: block !important;
  margin-bottom: 1rem;
  padding: 0.75rem 1.2rem;
  border: none;
  background: transparent;
  font-size: 1.3em;
  text-align: center;
  height: 100%;
}

.question_answer .btn-grades .dot-grades {
  height: 40px;
  width: 40px;
  background: #f8f8f8;
  position: relative;
  border-radius: 50%;
  display: block;
  margin: 0 auto 15px;
  -webkit-box-shadow: inset 2px 2px 2px 0px rgb(0 0 0 / 20%);
  -moz-box-shadow: inset 2px 2px 2px 0px rgba(0, 0, 0, 0.2);
  box-shadow: inset 2px 2px 2px 0px rgb(0 0 0 / 20%);
}

.question_answer .btn-grades .dot-grades::before {
  position: absolute;
  content: "";
  top: 8px;
  left: 8px;
  width: 24px;
  height: 24px;
  background: var(--success) !important;
  border-radius: 50%;
  opacity: 0;
  transform: scale(1.5);
  transition: all 0.3s ease-in-out;
}

.question_answer .btn .check {
  height: 20px;
  width: 20px;
  background: #d9d9d9;
  position: relative;
  margin-right: 0.8rem;
}

.question_answer .btn .check::before {
  position: absolute;
  content: "";
  top: 4px;
  left: 4px;
  width: 12px;
  height: 12px;
  background: var(--success) !important;
  opacity: 0;
  transform: scale(1.5);
  transition: all 0.3s ease-in-out;
}

.question_answer input[type="radio"],
.question_answer input[type="checkbox"] {
  display: none !important;
}

.question_answer .btn-dot-image:hover {
  box-shadow: 0 0 1px rgb(0 0 0 / 40%), 0 1px 3px rgb(0 0 0 / 60%) !important;
}

.question_answer .btn-dot .dot {
  height: 30px;
  width: 30px;
  background: #f8f8f8;
  position: relative;
  border-radius: 50%;
  border: 2px solid #ccc;
}

.question_answer .btn-dot .dot::before {
  position: absolute;
  content: "";
  top: 4px;
  left: 4px;
  width: 18px;
  height: 18px;
  background: var(--success) !important;
  border-radius: 50%;
  opacity: 0;
  transform: scale(1.5);
  transition: all 0.3s ease-in-out;
}

.question_answer .btn-dot-image .marked {
  height: 50px;
  width: 50px;
  background: #f8f8f8;
  position: relative;
  border-radius: 50%;
  -webkit-box-shadow: inset 2px 2px 2px 0px rgb(0 0 0 / 20%);
  -moz-box-shadow: inset 2px 2px 2px 0px rgba(0, 0, 0, 0.2);
  box-shadow: inset 2px 2px 2px 0px rgb(0 0 0 / 20%);
}

.question_answer .btn-dot-image .marked .mark_icon {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  background: var(--success) !important;
  border-radius: 50%;
  opacity: 0;
  /*transform: scale(1.5);*/
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.question_answer .btn-dot-image .dot {
  height: 42px;
  width: 42px;
  background: #eee;
  position: absolute;
  border-radius: 50%;
  border: 2px solid #ccc;
}

.question_answer .btn-dot-image .dot::before {
  position: absolute;
  content: "";
  top: 4px;
  left: 4px;
  width: 34px;
  height: 34px;
  background: var(--success) !important;
  border-radius: 50%;
  opacity: 0;
  transform: scale(1.5);
  transition: all 0.3s ease-in-out;
}

#option-1:checked:checked ~ .option-1 .dot,
#option-2:checked:checked ~ .option-2 .dot {
  background: #fff;
}

#option-1:checked:checked ~ .option-1 .dot::before,
#option-2:checked:checked ~ .option-2 .dot::before {
  opacity: 1;
  transform: scale(1);
}

.question_answer .btn span {
  font-size: 1.2em;
}

#option-1:checked:checked ~ .option-1 span,
#option-2:checked:checked ~ .option-2 span {
  /*color: #fff;*/
}

.progress-xs {
  height: 7px !important;
}

.progress-sm {
  height: 10px !important;
}

.profile_video_btn {
  position: absolute;
  display: block;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background: #212529;
  border-radius: 100%;
  z-index: 100;
}

/*--- MODALS ---*/

@media (min-width: 992px) {
  .modal-lg {
    max-width: 880px;
  }
}

@media (min-width: 1200px) {
  .modal-lg {
    max-width: 1180px;
  }
}

@media (min-width: 576px) {
  .modal-md {
    max-width: 500px;
  }
}

.buttonPrevious {
  display: none;
}

.buttonNext {
  display: none;
}

/*--- SURVEYS ---*/

/* RATING */

.rating {
  border: none;
  margin: auto;
  display: table;
  width: 100% !important;
}

.rating.show_result span {
  font-size: 3.6em;
  color: var(--warning);
}

.rating > label {
  color: #90a0a3;
  float: right;
  margin: 7px;
}

.rating > label:before {
  margin: 5px;
  font-size: 2em;
  font-family: "Font Awesome 5 Free";
  content: "\f005";
  display: inline-block;
}

.rating > label.star:before {
  content: "\f005";
}

.rating > label.check:before {
  content: "\f00c";
}

.rating > label.pessoa:before {
  content: "\f007";
}

.rating > label.circle:before {
  content: "\f192";
}

.rating > input {
  display: none;
}

.rating > input:checked ~ label,
.rating:not(:checked) > label:hover,
.rating:not(:checked) > label:hover ~ label {
  color: #f79426;
}

.rating > input:checked + label:hover,
.rating > input:checked ~ label:hover,
.rating > label:hover ~ input:checked ~ label,
.rating > input:checked ~ label:hover ~ label {
  color: #fece31;
}

/*--- HIGHCHARTS ---*/

.highcharts-figure .chart-container {
  width: 180px;
  height: 120px;
  float: left;
}

.highcharts-figure,
.highcharts-data-table table {
  width: 100%;
  margin: 0 auto;
}

.highcharts-data-table table {
  font-family: Verdana, sans-serif;
  border-collapse: collapse;
  border: 1px solid #ebebeb;
  margin: 10px auto;
  text-align: center;
  width: 100%;
  max-width: 500px;
}

.highcharts-data-table caption {
  padding: 1em 0;
  font-size: 1.2em;
  color: #555;
}

.highcharts-data-table th {
  font-weight: 600;
  padding: 0.5em;
}

.highcharts-data-table td,
.highcharts-data-table th,
.highcharts-data-table caption {
  padding: 0.5em;
}

.highcharts-data-table thead tr,
.highcharts-data-table tr:nth-child(even) {
  background: #f8f8f8;
}

.highcharts-data-table tr:hover {
  background: #f1f7ff;
}

@media (max-width: 600px) {
  .highcharts-figure,
  .highcharts-data-table table {
    width: 100%;
  }

  .highcharts-figure .chart-container {
    width: 300px;
    float: none;
    margin: 0 auto;
  }
}

/*--- CHARTS PESQUISA ESTRUTURAL ---*/

.label_minimum {
  /*transform: translateX(-50%);*/
  text-align: center;
}

.label_maximum {
  /*transform: translateX(50%);*/
  text-align: center;
}

.scale_marker {
  position: absolute;
  width: 1px;
  right: 0px;
  bottom: 0;
  overflow: visible;
  border-right: 2px dotted #3a4250;
}

.progress.invert {
  display: flex;
  justify-content: right;
}

.progress.invert .progress-bar .scale_marker {
  right: initial !important;
}

.scale_label {
  position: absolute;
  transform: translateX(-50%);
  /*padding: 5px 8px;
    border-radius: 6px;*/
  bottom: 100%;
}

.gauge_label {
  position: absolute;
  top: 95px;
  background: #fff;
  z-index: 1000;
  font-size: 0.85em;
  color: #666;
  text-align: center;
  width: 110px;
}

.gauge_label.left {
  right: 50%;
}

.gauge_label.right {
  left: 50%;
}

.scale_marker_left {
  display: flex;
  align-items: center;
  transform: translateX(-25px);
}

.scale_marker_left .ico {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50% !important;
}

.scale_marker_right {
  display: flex;
  align-items: center;
  transform: translateX(25px);
}

.scale_marker_right .ico {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50% !important;
}

#tbl_permissions thead {
  background-color: #efefef !important;
}

.toasts-top-right {
  z-index: 1050;
}

/* card view */
.card-view-hidden {
  display: none;
}

#membros.card-view {
  overflow-x: hidden;
  max-width: 100% !important;
}

#membros.card-view .card-view-hidden {
  display: unset;
}

#membros.card-view thead {
  display: none;
}

#membros.card-view tbody {
  width: 100%;
  display: flex;
  padding-top: 1rem;
  padding-left: 1rem;
  overflow-x: auto;
}

#membros.card-view tbody tr {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.19);
  margin-right: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 1.25rem;
  border-top: 6px solid var(--primary);
  background-color: var(--surface);
}

#membros.card-view tbody tr td {
  border-top: unset;
}

#membros.card-view tbody tr td:first-child {
  margin-top: 0.5rem;
}

#membros.card-view tbody tr td:first-child .d-flex {
  flex-direction: column;
}

#membros.card-view tbody .profile-picture-container {
  margin-right: 0 !important;
}

#membros.card-view tbody .profile-picture-container .img-circle {
  margin-right: 0 !important;
  width: 100px !important;
  height: 100px !important;
}

#membros.card-view tbody tr td:first-child span {
  display: block;
  margin-top: 0.5rem;
}

#membros.card-view tbody tr td:nth-child(2) {
  font-size: 18px;
  font-weight: bold;
}

#membros.card-view tbody tr td:nth-child(3) {
  position: absolute;
  top: 140px;
  font-size: 11px;
  color: #aaa;
}

#membros.card-view tbody tr:last-child {
  margin-right: 1rem;
}

#membros.card-view tbody tr td:nth-child(4) {
  font-size: 12px;
  margin-top: -20px;
}

#membros.card-view tbody tr td:nth-child(5) {
  margin-top: -10px;
}

#membros.card-view tbody tr td:last-child {
  display: none;
}

#membros.card-view tbody .dropdown {
  position: absolute;
  right: 0;
}

#membros.card-view tbody .dropdown i {
  color: #ededed;
  font-size: 18px;
}

#membros.card-view tbody tr:hover .dropdown i {
  color: #c8c8c8;
}

.paginate_button {
  border: none !important;
  background: none !important;
  color: var(--primary) !important;
  padding: 0.5em !important;
}

.sorting_disabled::before,
.sorting_disabled::after {
  display: none !important;
}

/* end card view */
.dataTables_filter {
  float: right;
}

#membros .os-host,
.os-host-textarea {
  overflow-x: auto !important;
  flex-direction: row !important;
}

.card-scroll.path {
  background-image: url("/images/svg-path.svg");
  background-repeat: no-repeat;
}

/*templates rick*/
.liderEquipe {
  background-color: #7a43ee;
  color: #fff;
  padding: 5px 10px;
  border-radius: 10px;
}

.membro {
  background-color: #437dee;
  color: #fff;
  padding: 5px 10px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

/* Classes de Prioridade */
.alta {
  background-color: #116c7e;
  color: #fff;
  font-weight: bold;
  padding: 8px 10px;
  margin-bottom: 2%;
  border-radius: 5px;
}

.alta:hover {
  background-color: #116c7e;
  color: #fff;
}

.text-alta {
  color: #116c7e;
}

.mediaa {
  background-color: var(--info);
  color: #fff;
  font-weight: bold;
  padding: 8px 10px;
  margin-bottom: 2%;
  border-radius: 5px;
}

.mediaa:hover {
  background-color: var(--info);
  color: #fff;
}

.text-mediaa {
  color: var(--info);
}

.baixa {
  background-color: #6ce5e8;
  color: #fff;
  font-weight: bold;
  padding: 8px 10px;
  margin-bottom: 2%;
  border-radius: 5px;
}

.baixa:hover {
  background-color: #6ce5e8;
  color: #fff;
}

.text-baixa {
  color: #6ce5e8;
}

/* Classes de Status */
.a-fazer {
  background-color: #c8c7c7;
  color: #fff;
  font-weight: bold;
  padding: 8px 10px;
  margin-bottom: 2%;
  border-radius: 5px;
}

.a-fazer:hover {
  background-color: #c8c7c7;
  color: #fff;
}

.em-andamento {
  background-color: #fcc810;
  color: #fff;
  font-weight: bold;
  padding: 8px 10px;
  margin-bottom: 2%;
  border-radius: 5px;
}

.em-andamento:hover {
  background-color: #fcc810;
  color: #fff;
}

.em-atraso {
  background-color: #ff7272;
  color: #fff;
  font-weight: bold;
  padding: 8px 10px;
  margin-bottom: 2%;
  border-radius: 5px;
}

.em-atraso:hover {
  background-color: #ff7272;
  color: #fff;
}

.finalizada {
  background-color: #28df68;
  color: #fff;
  font-weight: bold;
  padding: 8px 10px;
  margin-bottom: 2%;
  border-radius: 5px;
}

.finalizada:hover {
  background-color: #28df68;
  color: #fff;
}

/*kanban status*/
.cardScroll {
  display: inline-block;
  /*height: 100%;*/
  background-color: #f2f2f2;
  border-radius: 10px;
}

.TableScroll {
  display: inline-block;
  /*height: 100%;*/
}

.card-container {
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
}

.baixaSpan {
  background-color: #6ce5e8;
  color: #fff;
  font-weight: bold;
  padding: 10px 12px;
  border-radius: 5px;
}

.list-group {
  gap: 10px;
  padding: 8px;
}

.list-group-item {
  border-radius: 5px;
}

.list-group-item-placeholder {
  background-color: #f8f9fa;
  border: 2px dashed #dee2e6;
  height: 380px;
  margin-bottom: 1rem;
}

.kanban-list {
  min-height: 60px;
}

.kanban-container {
  padding: 0 10px;
}

.card-kanban {
  height: 100%;
  width: calc(100% - 6px);
  background-color: #e6e6e6;
  border-radius: 5px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  margin-bottom: 20px;
  box-sizing: border-box;
}

.card-kanban:hover {
  box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.2);
}

.card-kanban-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-radius: 5px 5px 0 0;
  color: #010f15;
}

.card-kanban-title {
  font-size: 1.2rem;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tarefas {
  min-height: 100px;
  height: 380px;
  overflow-y: auto;
}

.navbar-dark-background {
  position: relative;
  background-image: url("../../images/fundo-multicor-dark.png");
  background-size: cover;
  border-radius: 5px 5px 0 0;
}

.card-header-gradient {
  position: relative;
  background: linear-gradient(
    to bottom,
    var(--metahuman-1),
    var(--metahuman-4)
  );
  background-size: cover;
  border-radius: 5px 5px 0 0;
}

.column-title {
  padding: 10px;
  border-radius: 5px;
  font-weight: bold;
}

#containerTarefas {
  width: 100%;
  max-width: 800px;
}

#containerStatus {
  width: 100%;
  max-width: 800px;
}

#containerPrioridade {
  width: 100%;
  max-width: 800px;
}

.task {
  border-radius: 10px;
}

/* steps */
.table-steps {
  border-radius: 5px;
  background-color: #ffffff;
  border: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.table-steps:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.header-gradient {
  background: linear-gradient(to right, var(--metahuman-2), var(--metahuman-4));
  color: #fff;
  font-size: 1.5em;
}

.stepTitleB {
  background: linear-gradient(to right, var(--metahuman-2), var(--metahuman-4));
  color: #fff;
  font-size: 1.5em;
}

#containerStatusTable,
#containerPrioridadeTable {
  width: 100%;
  height: 100px;
}

.toDo {
  background-color: #c8c7c7;
  color: #fff;
  font-weight: bold;
  padding: 8px 10px;
  margin-bottom: 2%;
  border-radius: 5px;
}

.toDo:hover {
  background-color: #c8c7c7;
  color: #fff;
}

.inProgress {
  background-color: #fcc810;
  color: #fff;
  font-weight: bold;
  padding: 8px 10px;
  margin-bottom: 2%;
  border-radius: 5px;
}

.inProgress:hover {
  background-color: #fcc810;
  color: #fff;
}

.inLate {
  background-color: #ff7272;
  color: #fff;
  font-weight: bold;
  padding: 8px 10px;
  margin-bottom: 2%;
  border-radius: 5px;
}

.inLate:hover {
  background-color: #ff7272;
  color: #fff;
}

.finished {
  background-color: #28df68;
  color: #fff;
  font-weight: bold;
  padding: 8px 10px;
  margin-bottom: 2%;
  border-radius: 5px;
}

.finished:hover {
  background-color: #28df68;
  color: #fff;
}

.rotated {
  transform: rotate(-90deg);
}

/*team dashboard*/
#container {
  width: 100%;
  margin: 0;
  padding: 0;
}

#chart-idadeMedia {
  width: 100%;
  height: 250px;
}

#chart-escolaridade {
  width: 100%;
  height: 300px;
}

#chart-mediaSalario {
  width: 100%;
  height: 100px;
}

#chart-horasExtras {
  width: 100%;
  height: 150px;
}

#chart-horasTrabalhadas {
  width: 100%;
  height: 100%;
}

#chart-genero {
  width: 100%;
  height: 100px;
}

#chart-contratacoes {
  width: 100%;
}

#containerStatus {
  width: 100%;
  height: 100%;
}

#chart-TarefasporDia {
  width: 100%;
  height: 300px;
}

#chart-TarefasporDia {
  width: 100%;
}

#chart-empregativo,
#chart-nivel {
  width: 100%;
  height: 200px;
}

.mercado {
  background-color: #2d8bba;
  color: #fff;
  font-size: 2.4em;
}

/* Classes Novas */

.icone-titulo {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.2;
}

.card-custom {
  overflow: hidden;
  box-shadow: 0 0 15px rgba(10, 10, 10, 0.1);
}

.card-custom-img {
  height: 100px;
  min-height: 100px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-color: inherit;
  background-image: url(../../images/fundo-multicor.jpg);
}

.card-custom-avatar i {
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(10, 10, 10, 0.3);
  position: absolute;
  top: 20px;
  left: 30px;
  width: 130px;
  height: 130px;
  padding: 15px;
}

/* Botao Glitch */
.btn-glitch,
.btn-btn-glitch:after {
  background: linear-gradient(45deg, transparent 5%, var(--metahuman-4) 5%);
  border: 0;
  color: #fff;
  letter-spacing: 3px;
  box-shadow: 6px 0px 0px var(--metahuman-1);
  outline: transparent;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  transition: color 0.3s ease;
  border-radius: 4px;
  padding: 6px 10px;
}

.btn-glitch:after {
  --slice-0: inset(50% 50% 50% 50%);
  --slice-1: inset(80% -6px 0 0);
  --slice-2: inset(50% -6px 30% 0);
  --slice-3: inset(10% -6px 85% 0);
  --slice-4: inset(40% -6px 43% 0);
  --slice-5: inset(80% -6px 5% 0);

  content: "GLITCH";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 3%,
    var(--metahuman-1) 3%,
    var(--metahuman-1) 5%,
    var(--metahuman-4) 5%
  );
  text-shadow: -3px -3px 0px #f8f005, 3px 3px 0px var(--metahuman-1);
  clip-path: var(--slice-0);
}

.btn-glitch:hover {
  color: var(--metahuman-1);
}

.btn-glitch:hover:after {
  animation: 1s glitch;
  animation-timing-function: steps(2, end);
}

@keyframes glitch {
  0% {
    clip-path: var(--slice-1);
    transform: translate(-20px, -10px);
  }

  10% {
    clip-path: var(--slice-3);
    transform: translate(10px, 10px);
  }

  20% {
    clip-path: var(--slice-1);
    transform: translate(-10px, 10px);
  }

  30% {
    clip-path: var(--slice-3);
    transform: translate(0px, 5px);
  }

  40% {
    clip-path: var(--slice-2);
    transform: translate(-5px, 0px);
  }

  50% {
    clip-path: var(--slice-3);
    transform: translate(5px, 0px);
  }

  60% {
    clip-path: var(--slice-4);
    transform: translate(5px, 10px);
  }

  70% {
    clip-path: var(--slice-2);
    transform: translate(-10px, 10px);
  }

  80% {
    clip-path: var(--slice-5);
    transform: translate(20px, -10px);
  }

  90% {
    clip-path: var(--slice-1);
    transform: translate(-10px, 0px);
  }

  100% {
    clip-path: var(--slice-1);
    transform: translate(0);
  }
}

@media (max-width: 767px) {
  .glitch-text {
    display: none;
  }
}

/* Botao Graficos */
.btn-graphic {
  position: relative;
  top: 0;
  left: 0;
  width: 70%;
  min-height: 40px;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
}

@media screen and (min-width: 1400px) {
  /* Adjust the breakpoint as needed */
  .btn-graphic {
    width: 50%;
    /* Change the width for larger screens */
  }
}

.btn-graphic span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(2, 65, 75, 0.5);
  box-shadow: 0 15px 15px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 25px;
  letter-spacing: 1px;
  text-decoration: none;
  overflow: hidden;
  color: #fff;
  font-weight: 400px;
  z-index: 1;
  transition: 0.5s;
  backdrop-filter: blur(15px);
  word-wrap: break-word;
}

.btn-graphic:hover span {
  letter-spacing: 1.3px;
}

.btn-graphic span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(45deg) translate(0);
  transition: 0.5s;
  filter: blur(0px);
  -webkit-transform: skewX(45deg) translate(0);
  -moz-transform: skewX(45deg) translate(0);
  -ms-transform: skewX(45deg) translate(0);
  -o-transform: skewX(45deg) translate(0);
}

.btn-graphic:hover span::before {
  transform: skewX(45deg) translate(200px);
}

.btn-graphic::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translatex(-50%);
  bottom: -1px;
  width: 30px;
  height: 1px;
  border-radius: 10px;
  transition: 0.5s;
  transition-delay: 0.5;
}

.btn-graphic:hover::before {
  bottom: 0;
  height: 50%;
  width: 80%;
  border-radius: 30px;
}

.btn-graphic::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translatex(-50%);
  top: -1px;
  width: 30px;
  height: 1px;
  border-radius: 10px;
  transition: 0.5s;
  transition-delay: 0.5;
}

.btn-graphic:hover::after {
  top: 0;
  height: 50%;
  width: 80%;
  border-radius: 30px;
}

/* Titulo Projeto */
.project-title {
  font-weight: bold;
  width: 100%;
  text-align: left;
  white-space: normal;
  word-break: break-word;
  text-transform: uppercase;
  background: repeating-linear-gradient(219deg,
      var(--metahuman-1) 0%,
      var(--metahuman-1) 10.5%,
      transparent 10.5%,
      transparent 11%,
      var(--metahuman-2) 11%,
      var(--metahuman-2) 21.5%,
      transparent 21.5%,
      transparent 22%,
      var(--metahuman-3) 22%,
      var(--metahuman-3) 32.5%,
      transparent 32.5%,
      transparent 33%,
      var(--metahuman-4) 33%,
      var(--metahuman-4) 43.5%,
      transparent 43.5%,
      transparent 44%,
      var(--metahuman-5) 44%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  word-wrap: break-word;
}

/* Date Projeto */
.project-date-container {
  background-color: #222;
  padding: 10px;
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.project-date {
  color: #fff;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Input Projeto */
.project-input {
  position: relative;
  padding: 15px 0 0;
  width: 100%;
}

@media (min-width: 767px) {
  .project-input {
    width: 50%;
  }
}

.project-input-field {
  font-family: inherit;
  width: 100%;
  border: 0;
  border-bottom: 2px solid var(--metahuman-5);
  outline: 0;
  font-size: 1.3rem;
  color: var(--metahuman-5);
  padding: 7px 0;
  background: transparent;
  transition: border-color 0.2s;

  &::placeholder {
    color: transparent;
  }

  &:placeholder-shown~.project-input-label {
    font-size: 1.3rem;
    cursor: text;
    top: 20px;
  }
}

.project-input-label {
  position: absolute;
  top: 0;
  display: block;
  transition: 0.2s;
  color: var(--metahuman-5);
}

.project-input-field:focus {
  ~.project-input-label {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 1rem;
    color: var(--metahuman-1);
    font-weight: 700;
  }
  padding-bottom: 6px;
  font-weight: 700;
  border-width: 3px;
  border-image: linear-gradient(
    to right,
    var(--metahuman-1),
    var(--metahuman-3)
  );
  border-image-slice: 1;
}

/* reset input */
.project-input-field {
  &:required,
  &:invalid {
    box-shadow: none;
  }
}

/* ---------------------------------------------- */

.font-color {
  color: var(--secondary);
}

.new-cards {
  border-radius: 10px;
  background: #fff;
  box-shadow: 3px 4px 10px 0px rgba(0, 0, 0, 0.25);
}

.icon_card {
  width: 80px;
  height: 80px;
  border-radius: 10px;
}

.btn-custom-blue {
  background-image: linear-gradient(to right, var(--info), var(--primary));
  border: none;
  transition: 0.5s;
  border-radius: 5px;
  font-size: 0.9rem;
}

.btn-custom-blue:hover {
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.3));
}

/* inputs estilizados */

.input-forms {
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.322);
}

/* Alterar a cor da borda quando o campo de entrada está focado */
.form-control:focus {
  border-color: rgba(0, 0, 0, 0.322);
  box-shadow: none;
  background-color: transparent;
  transition: 0.5s ease;
}

.input-group .input-forms:focus + .input-group-text,
.input-group .input-forms:not(:focus) + .input-group-text {
  transition: border-color 0.3s ease;
}

.input-group-text {
  border: 1px solid rgba(0, 0, 0, 0.322);
}

.input-group input.form-control:focus + .input-group-text {
  border-color: rgba(0, 0, 0, 0.322);
}

/* Alterar a cor da borda quando o campo de entrada está focado */
.form-control:focus {
  box-shadow: none;
  background-color: transparent;
}

.btn-custom-gray {
  border: 1px solid black;
  border-radius: 5px;
  background-color: transparent;
  transition: 0.5s;
  font-size: 0.9rem;
  color: black;
}

.btn-custom-gray:hover {
  border: 1px solid black;
}

.color_criado {
  width: 20px;
  height: 20px;
  border-radius: 100px;
  background-color: #06a7c0;
  cursor: pointer;
  margin: 0 auto;
}

.color_aceito {
  width: 20px;
  height: 20px;
  border-radius: 100px;
  background-color: #14830b;
  cursor: pointer;
  margin: 0 auto;
}

.color_recusado {
  width: 20px;
  height: 20px;
  border-radius: 100px;
  background-color: #a20e0e;
  cursor: pointer;
  margin: 0 auto;
}

.color_revisao {
  width: 20px;
  height: 20px;
  border-radius: 100px;
  background-color: #ffd43a;
  cursor: pointer;
  margin: 0 auto;
}

.color_edicao {
  width: 20px;
  height: 20px;
  border-radius: 100px;
  background-color: #d68407;
  cursor: pointer;
  margin: 0 auto;
}

.criado {
  background-color: #06a7c0;
  color: #ffff;
}

.criado_:before {
  border-top-color: #06a7c0 !important;
}

.aceito {
  background-color: #14830b;
  color: #ffff;
}

.aceito_:before {
  border-top-color: #14830b !important;
}

.recusado {
  background-color: #a20e0e;
  color: #ffff;
}

.recusado_:before {
  border-top-color: #a20e0e !important;
}

.revisao {
  background-color: #ffd43a;
  color: #ffff;
}

.revisao_:before {
  border-top-color: #ffd43a !important;
}

.card-modal {
  border-radius: 5px;
  border: 1px solid rgba(92, 93, 93, 0.37);
  background: #e5e6e8;
}

.card-modal_title {
  color: var(--primary);
  font-weight: bold;
}

/* select customizado bootstrap Select*/

.bootstrap-select {
  border: 1px solid rgba(0, 0, 0, 0.322);
  border-radius: 5px;
  background-color: transparent !important;
  width: 100%;
}

.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(
    .input-group-btn
  ) {
  width: 220px;
  display: flex;
  align-items: center;
}

.form-select + button {
  background-color: white !important;
  border: 1px solid rgba(0, 0, 0, 0.322);
}

.bootstrap-select .dropdown-menu {
  background-color: #ffff;
  border-radius: 10px;
  border: none;
  margin: 7px 0px 7px;
}

.bootstrap-select .dropdown-menu li.selected a {
  /*cor do fundo quando for selecionado*/
  background-color: #f4f6f9;
  color: var(--secondary);
}

/* Alterar a cor e o tamanho da fonte dos itens dentro do dropdown */
.bootstrap-select .dropdown-menu li a {
  font-size: 0.9em;
  color: var(--secondary);
}

.bootstrap-select .dropdown-menu li a:active {
  background-color: #d9d9d9;
  color: var(--secondary);
}

.bootstrap-select .dropdown-toggle .filter-option {
  font-size: 0.9em;
  color: var(--secondary);
}

/* fim select customizado*/

.dropdown-item:active {
  background-color: #d9d9d9;
  color: var(--secondary);
}

.select2-results__options {
  background-color: #ffff !important;
}
.select2-results__options li:hover {
  background-color: #f4f6f9 !important;
  color: var(--secondary) !important;
}
.select2-results__options li:active {
  background-color: #f4f6f9 !important;
}

.select2-results__options li.select2-results__option[aria-selected="true"] {
  background-color: #f4f6f9 !important;
  color: var(--secondary) !important;
  font-weight: bold;
}

.select2-results__options li {
  background-color: #ffff !important;
  color: var(--secondary) !important;
}

.select2-search__field:focus {
  border-color: var(--secondary) !important;
}

.border-line {
  border-bottom: 1px solid rgba(0, 0, 0, 0.089);
}

.btn_accept {
  border: 1px solid #14830b;
  color: #14830b;
}

.btn_accept:hover {
  border: 1px solid #14830b;
  color: #fff;
  background-color: #14830b;
}

.btn_deny {
  border: 1px solid #a20e0e;
  color: #a20e0e;
}

.btn_deny:hover {
  border: 1px solid #a20e0e;
  color: #ffff;
  background-color: #a20e0e;
}

/* ====================== telas a360 =========================*/
.new-cards.path {
  background-image: url("/images/card-user-a360.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center 0px;
  /* Padrão para telas grandes */
}

/* Tablets e telas pequenas */
@media (max-width: 1024px) {
  .new-cards.path {
    background-position: center 0px;
    /* Ajuste para tablets */
  }
}

/* Smartphones em paisagem */
@media (max-width: 768px) {
  .new-cards.path {
    background-position: center -10px;
    /* Ajuste para telas de smartphones em paisagem */
  }
}

/* Smartphones em retrato */
@media (max-width: 480px) {
  .new-cards.path {
    background-position: center -25px;
    /* Ajuste para telas de smartphones em retrato */
  }
}

/* Para telas muito grandes (como telas 4K) */
@media (min-width: 1600px) {
  .new-cards.path {
    background-position: center -25px;
    /* Ajuste para telas grandes */
  }
}

.new-cards {
  border-radius: 10px;
  background: #fff;
  box-shadow: 3px 4px 10px 0px rgba(0, 0, 0, 0.25);
}

.card-membro {
  border-radius: 25px;
}

/* cor cinza escura font*/
.font-color {
  color: var(--secondary);
}

.font-color-question {
  color: #186378;
}

.font-color-blue {
  color: var(--info);
}

/* icones grandes da tela index a360 */
.new-cards_icon-pesquisas {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
}

.new-cards_icon-abertas {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  background: #14830b;
  color: #fff;
}

.new-cards_icon-encerrados {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  background: var(--danger-dark);
  color: #fff;
}

/* select customizado bootstrap Select*/

.bootstrap-select {
  border: 1px solid rgba(0, 0, 0, 0.322);
  border-radius: 5px;
  background-color: transparent !important;
  width: 100%;
}

.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(
    .input-group-btn
  ) {
  width: 220px;
  display: flex;
  align-items: center;
}

.bootstrap-select .dropdown-menu {
  background-color: #ffff;
  border-radius: 10px;
  border: none;
  margin: 7px 0px 7px;
}

.bootstrap-select .dropdown-menu li.selected a {
  /*cor do fundo quando for selecionado*/
  background-color: #f4f6f9;
  color: var(--secondary);
}

/* Alterar a cor e o tamanho da fonte dos itens dentro do dropdown */
.bootstrap-select .dropdown-menu li a {
  font-size: 0.9em;
  color: var(--secondary);
}

.bootstrap-select .dropdown-menu li a:active {
  background-color: #d9d9d9;
  color: var(--secondary);
}

.bootstrap-select .dropdown-toggle .filter-option {
  font-size: 0.9em;
  color: var(--secondary);
}

/* fim select customizado*/

.dropdown-item:active {
  background-color: #d9d9d9;
  color: var(--secondary);
}

.required-span {
  color: #b2b2b2;
}

.btn-custom {
  background-image: linear-gradient(to right, var(--info), var(--primary));
  color: #ffff;
  border: none;
  transition: 0.5s;
  border-radius: 5px;
  font-size: 0.9rem;
}

.btn-custom:hover {
  color: #ffff;
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.3));
}

.btn-custom-gray {
  border: 1px solid black;
  border-radius: 5px;
  background-color: transparent;
  transition: 0.5s;
  font-size: 0.9rem;
  color: black;
}

.btn-custom-gray:hover {
  border: 1px solid black;
}

.btn-custom-green {
  background-image: linear-gradient(to right, #14830b, #3db133);
  color: #ffff;
  border: none;
  transition: 0.5s;
  border-radius: 5px;
  font-size: 0.9rem;
}

.btn-custom-green:hover {
  color: #ffff;
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.3));
}

.btn-custom-logica {
  border: 1px solid var(--info);
  border-radius: 5px;
  background-color: transparent;
  transition: 0.5s;
  font-size: 0.9rem;
  color: var(--info);
}

.btn-custom-logica:hover {
  color: var(--info);
}

/*dropdown de ações*/
.dropdown-menu-custom {
  background-color: #ffff;
  border-radius: 10px;
  font-size: 1em;
  border: none;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
}

.span-actions {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  color: #ffff;
  background-image: linear-gradient(to right, var(--info), var(--primary));
}

/*fim dropdown ações*/

.status-aberto {
  width: 20px;
  height: 20px;
  border-radius: 100px;
  background-color: #3db133;
  cursor: pointer;
}

.status-encerrado {
  width: 20px;
  height: 20px;
  border-radius: 100px;
  background-color: var(--danger-dark);
  cursor: pointer;
}

.status-inativo {
  width: 20px;
  height: 20px;
  border-radius: 100px;
  background-color: #d9d9d9;
  cursor: pointer;
}

/* status pequeno para ficra dentro do select*/
.status-sm {
  width: 10px;
  height: 10px;
}

.div-assessment {
  border: 1px solid #d9d9d9;
  width: 30px;
  height: 30px;
  border-radius: 5px;
}

/*cores do tootip"*/
.verdinho {
  background-color: #3db133;
}

.verdinho_:before {
  border-top-color: #3db133 !important;
}

.vermelhinho {
  background-color: var(--danger-dark);
}

.vermelhinho_:before {
  border-top-color: var(--danger-dark) !important;
}

.cinzinha {
  background-color: #d9d9d9;
  color: var(--secondary);
}

.cinzinha_:before {
  border-top-color: #d9d9d9 !important;
}

.radio-active {
  filter: drop-shadow(0px 0px 5px #c3d4db);
}

.card-assessment {
  height: 300px;
  cursor: pointer;
}

/*barra de progresso*/
.bolinha-cinza {
  background-color: #d9d9d9;
}

.bolinha-azul {
  background-color: var(--info);
}

.start-0 {
  left: 0%;
}

.start-1 {
  left: calc((100% / 5));
}

.start-2 {
  left: calc((100% / 5) * 2);
}

.start-3 {
  left: calc((100% / 5) * 3);
}

.start-4 {
  left: calc((100% / 5) * 4);
}

.start-5 {
  left: calc((100% / 6) * 6);
}

.progress-bar {
  -webkit-transition: width 1s ease-in-out !important;
  -moz-transition: width 1s ease-in-out !important;
  -o-transition: width 1s ease-in-out !important;
  transition: width 1s ease-in-out !important;
}

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

/*fim barra de progresso*/

/*estilizando um input com icone dentro*/
.input-forms {
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.322);
}

/* Alterar a cor da borda quando o campo de entrada está focado */
.form-control:focus {
  border-color: rgba(0, 0, 0, 0.322);
  box-shadow: none;
  background-color: transparent;
  transition: 0.5s ease;
}

.input-group .input-forms:focus + .input-group-text,
.input-group .input-forms:not(:focus) + .input-group-text {
  transition: border-color 0.3s ease;
}

.input-group-text {
  border: 1px solid rgba(0, 0, 0, 0.322);
}

.input-group input.form-control:focus + .input-group-text {
  border-color: rgba(0, 0, 0, 0.322);
}

/* Alterar a cor da borda quando o campo de entrada está focado */
.form-control:focus {
  box-shadow: none;
  background-color: transparent;
}

/*input radio customizado*/
.radio {
  border: 1px solid #ccc;
  box-sizing: border-box;
  height: 25px;
  position: relative;
  width: 25px;
  border-radius: 100px;
}

.radio label {
  background: #fff no-repeat center center;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  white-space: nowrap;
  border-radius: 100px;
}

.radio label input[type="radio"] {
  all: unset;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 100px;
  transition: 0.3 ease;
}

.radio label input[type="radio"]:checked {
  background-color: var(--primary);
}

.radio label span {
  z-index: 1;
  opacity: 0;
}

.radio label input[type="radio"]:checked + span {
  opacity: 100;
  color: #ffffff;
}

.radio span {
  font-size: 0.8em;
}

.user-image {
  width: 35px;
  height: 35px;
  background-image: radial-gradient(#c4c4c4, #dbdcdd);
  border-radius: 100px;
}

.user-image-card {
  width: 80px;
  height: 80px;
  background-image: radial-gradient(#c4c4c4, #dbdcdd);
  border-radius: 100px;
}

.span-status-cinza {
  background-color: #dee3ed;
  border-radius: 100px;
}

.span-status-atribuido {
  background-color: #6ecefb;
  border-radius: 100px;
  color: #ffff;
}

/*modal com borda gradiente*/
.modal-borderLeft {
  border-radius: 0px 10px 10px 0px;
  background-image: linear-gradient(135deg, #fff 1.51%, #e5e6e8 100%);
  box-shadow: 3px 4px 10px 0px rgba(0, 0, 0, 0.25);
  border-left: 20px solid transparent;
  border-image: linear-gradient(to bottom, var(--info), var(--primary));
  border-image-slice: 1;
  height: 100%;
}

.card-borderLeft {
  border-radius: 0px 10px 10px 0px;
  background-color: #fff;
  box-shadow: 3px 4px 10px 0px rgba(0, 0, 0, 0.25);
  border-left: 10px solid transparent;
  border-image: linear-gradient(to bottom, var(--info), var(--primary));
  border-image-slice: 1;
}

.card-borderTop {
  border-top: 5px solid transparent;
  background-color: #fff;
  border-image: linear-gradient(to left, var(--info), var(--primary));
  border-image-slice: 1;
  box-shadow: 3px 4px 10px 0px rgba(0, 0, 0, 0.25);
}

.modal-borderLeftDanger {
  border-radius: 0px 10px 10px 0px;
  background-image: linear-gradient(135deg, #fff 1.51%, #e5e6e8 100%);
  box-shadow: 3px 4px 10px 0px rgba(0, 0, 0, 0.25);
  border-left: 20px solid transparent;
  border-image: linear-gradient(to bottom, #d41111, #800000);
  border-image-slice: 1;
  height: 100%;
}

.btn-danger-gradient {
  background-image: linear-gradient(to right, #d41111, #800000);
  color: #ffffff;
}

.modal-borderLeftSuccess {
  border-radius: 0px 10px 10px 0px;
  background-image: linear-gradient(135deg, #fff 1.51%, #e5e6e8 100%);
  box-shadow: 3px 4px 10px 0px rgba(0, 0, 0, 0.25);
  border-left: 20px solid transparent;
  border-image: linear-gradient(to bottom, #14830b, #074403);
  border-image-slice: 1;
  height: 100%;
}

.btn-success-gradient {
  background-image: linear-gradient(to right, #14830b, #074403);
  color: #ffffff;
}

.modal-borderLeftWarning {
  border-radius: 0px 10px 10px 0px;
  background-image: linear-gradient(135deg, #fff 1.51%, #e5e6e8 100%);
  box-shadow: 3px 4px 10px 0px rgba(0, 0, 0, 0.25);
  border-left: 20px solid transparent;
  border-image: linear-gradient(to bottom, #ffd43a, #ffa500);
  border-image-slice: 1;
  height: 100%;
}

.btn-warning-gradient {
  background-image: linear-gradient(to right, #ffd43a, #ffa500);
  color: #ffffff;
}

.btn-danger-gradient:hover,
.btn-success-gradient:hover,
.btn-warning-gradient:hover {
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

/*checkbox costumizada*/
.div-check input {
  display: none;
}

.div-check input + div:before {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  border: 1px solid #d9d9d9;
  background-color: transparent;
  border-radius: 3px;
}

.div-check input:checked + div:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%23ffffff' class='bi bi-check' viewBox='0 0 16 16'%3E%3Cpath d='M10.97 4.97a.75.75 0 0 1 1.07 1.05l-3.99 4.99a.75.75 0 0 1-1.08.02L4.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093 3.473-4.425a.267.267 0 0 1 .02-.022z'/%3E%3C/svg%3E");
  background-color: var(--primary);
  border-radius: 3px;
  border: none;
  background-repeat: no-repeat;
}

.user-check input {
  display: none;
}

.user-check input + label:before {
  content: "";
  width: 25px;
  height: 25px;
  border-radius: 50px;
  display: inline-block;
  border: 1px solid #d9d9d9;
  background-color: transparent;
}

.user-check input:checked + label:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' fill='%23ffffff' class='bi bi-check' viewBox='0 0 16 16'%3E%3Cpath d='M10.97 4.97a.75.75 0 0 1 1.07 1.05l-3.99 4.99a.75.75 0 0 1-1.08.02L4.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093 3.473-4.425a.267.267 0 0 1 .02-.022z'/%3E%3C/svg%3E");
  background-color: var(--info);
  border-radius: 50px;
  border: none;
  background-repeat: no-repeat;
}

.btn-cards-hover .new-cards {
  transition: 0.5s ease;
}

.btn-cards-hover .new-cards:hover {
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.3));
}

.div-radio input {
  display: none;
}

.div-radio input + div:before {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  border: 1px solid #d9d9d9;
  background-color: transparent;
  border-radius: 100px;
}

.div-radio input:checked + div:before {
  background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 10 10'%3E%3Cg class='nc-icon-wrapper' stroke-width='1' fill='%23555555'%3E%3Cpath fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' data-cap='butt' d='M2.83 4.72l1.58 1.58 2.83-2.83'/%3E%3C/g%3E%3C/svg%3E");
  background-color: var(--primary);
  border: none;
  background-repeat: no-repeat;
  background-size: contain;
}

/* ======================== criar questioario styles =========================== */
/*lista manupulavel*/
.sortable {
  list-style-type: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sortable li {
  background-color: #f4f6f9;
  border-radius: 10px;
  cursor: grab;
}

.sortable-list {
  list-style-type: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sortable-list li {
  background-color: #f4f6f9;
  border-radius: 10px;
  cursor: grab;
}

.tipo-pergunta {
  border-radius: 5px;
  width: auto;
  color: #fff;
  padding: 0.375rem 0.75rem;
  font-size: 0.9em;
}

/* cores dos tipos de pergunta */
.pequeno_texto-color {
  background-color: #179fb5;
}

.multipla_escolha-color {
  background-color: #148fa2;
}

.escala_polar-color {
  background-color: #107281;
}

.escala_personalizada-color {
  background-color: #0e6674;
}

.escala_avaliacao-color {
  background-color: #0c5b68;
}

.escala_likert-color {
  background-color: #0a515d;
}

/* cor no select */
.tipo-pergunta-small {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* alternativas background (a,b,c ... 1,2,3....) */
.div-alternativa {
  width: 38px;
  height: 38px;
  background-color: #ffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.small-shadow {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
}

.btn-alternativas {
  background-color: #ebedee;
  border-radius: 20px;
  border: 1px solid #8c8e8e;
  transition: 0.6s;
}

.btn-alternativas:hover {
  border: 1px solid #000000;
}

/* options multiple choice */
.div-options input {
  display: none;
}

.div-options input + div:before {
  content: "";
  position: relative;
  width: 18px;
  height: 18px;
  display: inline-block;
  border: 1px solid #d9d9d9;
  background-color: transparent;
  border: 1px solid #9ea0a0;
  border-radius: 100px;
  vertical-align: middle;
  margin-right: 15px;
}

.div-options input:checked + div:before {
  background-color: transparent;
  box-sizing: border-box;
  border: 5px solid #186577;
}

/* options escala polar */
.div-escala_polar-valores-5 input + label:before {
  content: "";
  width: 35px;
  height: 35px;
  display: inline-block;
  background-color: #186577;
  border: 10px solid #186577;
  border-radius: 100px;
  vertical-align: middle;
  cursor: pointer;
}

.div-escala_polar-valores-5 input:checked + label:before {
  background-color: transparent;
}

.div-escala_polar-valores-4 input + label:before {
  content: "";
  width: 35px;
  height: 35px;
  display: inline-block;
  background-color: #588f9c;
  border: 10px solid #588f9c;
  border-radius: 100px;
  vertical-align: middle;
  cursor: pointer;
}

.div-escala_polar-valores-4 input:checked + label:before {
  background-color: transparent;
}

.div-escala_polar-valores-3 input + label:before {
  content: "";
  width: 35px;
  height: 35px;
  display: inline-block;
  background-color: #689aa5;
  border: 10px solid #689aa5;
  border-radius: 100px;
  vertical-align: middle;
  cursor: pointer;
}

.div-escala_polar-valores-3 input:checked + label:before {
  background-color: transparent;
}

.div-escala_polar-valores-2 input + label:before {
  content: "";
  width: 35px;
  height: 35px;
  display: inline-block;
  background-color: #92b6be;
  border: 10px solid #92b6be;
  border-radius: 100px;
  vertical-align: middle;
  cursor: pointer;
}

.div-escala_polar-valores-2 input:checked + label:before {
  background-color: transparent;
}

.div-escala_polar-valores-1 input + label:before {
  content: "";
  width: 35px;
  height: 35px;
  display: inline-block;
  background-color: #b2cbd1;
  border: 10px solid #b2cbd1;
  border-radius: 100px;
  vertical-align: middle;
  cursor: pointer;
}

.div-escala_polar-valores-1 input:checked + label:before {
  background-color: transparent;
}

/* options escala de avaliação */
.star-widget input {
  display: none;
}

.star-widget label {
  cursor: pointer;
  color: #ccc;
  font-size: 4rem;
  transition: all 0.2s ease;
  float: right;
  padding: 0 1rem;
}

.star-widget input:not(:checked) ~ label:hover,
.star-widget input:not(:checked) ~ label:hover ~ label {
  color: #fd4;
}

.star-widget input:checked ~ label {
  color: #fd4;
}

.star-widget input#rate-5:checked ~ label {
  color: #ffe300;
}

/*options escala likert*/
.div-options-likert {
  width: 9%;
}

.div-options-likert input {
  display: none;
  position: absolute;
}

.div-options-likert input + label:before {
  content: "";
  width: 25px;
  height: 25px;
  display: block;
  border: 1px solid #d9d9d9;
  background-color: transparent;
  border: 1px solid #9ea0a0;
  border-radius: 100px;
  position: relative;
  margin: 0 auto;
  margin-bottom: 20px;
}

.div-options-likert input:checked + label:before {
  background-color: transparent;
  box-sizing: border-box;
  border: 5px solid #186577;
}

.btn-alternativas-likert {
  border-radius: 10px;
  transition: 0.6s;
  font-size: 0.9em;
  height: 100%;
}

/* options escala personalizada */
.div-options-personalizada input {
  display: none;
  position: absolute;
}

.div-options-personalizada input + label:before {
  content: "";
  width: 30px;
  height: 30px;
  display: block;
  border: 1px solid #d9d9d9;
  background-color: transparent;
  border: 1px solid #9ea0a0;
  border-radius: 100px;
  position: relative;
  margin-right: 10px;
  vertical-align: middle;
}

.div-options-personalizada input:checked + label:before {
  background-color: transparent;
  box-sizing: border-box;
  border: 5px solid #186577;
}

.questionario-progress {
  border-radius: 50px;
}

.progress-bar-questionario {
  border-radius: 50px !important;
}

.progress-bar-custom {
  background-image: linear-gradient(to right, var(--info), var(--primary));
}

.progress-bar-custom-green {
  background-image: linear-gradient(to right, #14830b, #3db133);
}

.div-alternativa-pergunta {
  width: 38px;
  height: 38px;
  background-color: var(--info);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffff;
}

.remove-alternativa {
  padding: 0.375rem 0.75rem;
  transition: 0.3s all ease;
}
.remove-alternativa:hover {
  color: #000000;
}

.g-10 {
  display: flex;
  gap: 10px;
}

.font-color-light {
  color: #b2b2b2;
}

.font-color-blue {
  color: #186577;
}

.btn-custom-transparent {
  background-color: transparent;
  border-color: transparent;
}

.btn-custom-transparent:hover {
  color: #186577;
}

/* criando padrão de tabelas*/
.table-borderTop {
  border-top: 10px solid transparent;
  background-color: #fff;
  border-radius: 10px;
  border-image: linear-gradient(to left, var(--info), var(--primary));
  border-image-slice: 1;
  box-shadow: 3px 4px 17px 0px rgba(0, 0, 0, 0.25);
}

.user-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-image: linear-gradient(
    137deg,
    rgba(92, 93, 93, 0.47) 0%,
    rgba(92, 93, 93, 0.24) 95.07%
  );
}

.span-email {
  font-size: 0.9rem;
  color: #8f96a3;
}

.span-avaliado {
  color: #14830b;
  font-weight: bold;
}

.rotated {
  transform: rotate(90deg);
  transition: transform 0.5s;
}

.aspect-ratio-one-per-one {
  aspect-ratio: 1/1;
}

/* ======================================================= 07/2024 General Refactor ===========================================================================*/
.select2-container .select2-selection--single {
  background-color: white !important;
  border-color: #ced4da;
  /* This matches the default Bootstrap border color */
  color: #495057;
}

.meta-title {
  margin: 0;
  color: var(--secondary) !important;
  font-weight: 600;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .meta-title {
    font-size: 1.25rem !important; /* Force smaller font size on mobile */
  }
}

/* Even smaller for very small screens */
@media (max-width: 480px) {
  .meta-title {
    font-size: 1rem !important;
  }
}

.meta-subtitle {
  margin: 0;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 400;
}

/* Data Table custom styles */
table.dataTable td {
  white-space: normal !important;
  word-wrap: break-word !important;
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control::before,
table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control::before {
  background-color: var(--success) !important;
}

table.dataTable.dtr-inline.collapsed
  > tbody
  > tr.parent
  > td.dtr-control::before,
table.dataTable.dtr-inline.collapsed
  > tbody
  > tr.parent
  > th.dtr-control::before {
  background-color: var(--danger) !important;
}

table.dataTable thead {
  color: #fff;
  background-color: var(--primary);
  border: none;
}

@media (max-width: 767.98px) {
  .custom-page-header .col-md-6 {
    width: 100%;
    padding: 0;
  }

  .custom-page-header .input-group {
    margin-top: 10px;
  }

  .custom-page-header button {
    width: 100%;
  }
}

select {
  background-color: white !important;
}

@media (max-width: 768px) {
  .responsive-controls {
    width: 100% !important;
    margin-bottom: 1rem;
  }
}

.card-simple {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.card-simple .card-title {
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: bold;
  margin-bottom: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-simple .card-subtitle {
  font-size: 1rem;
  font-weight: bold;
  color: var(--secondary);
}

.card-simple .card-text {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Bootstrap selects with selectpicker height issue solved */
.bootstrap-select .dropdown-toggle {
  height: 100%;
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
}

/* Modals max-height of viewport 80% */
.modal-80vh {
  max-height: 80vh;
}

.modal-80vh .modal-content {
  max-height: 80vh;
  overflow-y: auto;
}

.ampersand {
  font-family: "Adobe Garamond", serif;
}

/* ======================================================= DataTable List Styles ===========================================================================*/
/* Header styling */
table.dataTable.list-table thead {
  background-color: transparent !important;
  color: #000 !important;
  font-weight: bold !important;
}

table.dataTable.list-table thead th {
  border: none !important;
  background-color: transparent !important;
  padding: 0 1rem !important;
}

/* Table basic styling */
table.dataTable.list-table {
  margin: 0 !important;
  border-spacing: 0 8px !important;
  width: 100% !important;
}

/* Remove borders from scrolling container */
.list-table-wrapper .dataTables_wrapper .dataTables_scroll,
.list-table-wrapper .dataTables_wrapper .dataTables_scrollBody,
.list-table-wrapper .dataTables_wrapper .dataTables_scrollHead {
  border: none !important;
}

.list-table-wrapper .datatable-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: none !important;
}

/* Style for row cells */
table.dataTable.list-table tbody tr td {
  background-color: #fff !important;
  padding: 1rem !important;
  vertical-align: middle !important;
}

/* Rounded corners for first and last cells */
table.dataTable.list-table tbody tr td:first-child {
  border-top-left-radius: 8px !important;
  border-bottom-left-radius: 8px !important;
}

table.dataTable.list-table tbody tr td:last-child {
  border-top-right-radius: 8px !important;
  border-bottom-right-radius: 8px !important;
}

/* Card effect and hover states */
table.dataTable.list-table tbody tr {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05) !important;
}

table.dataTable.list-table.display tbody tr:hover > *,
table.dataTable.list-table.display tbody tr.odd:hover > *,
table.dataTable.list-table.display tbody tr.even:hover > *,
table.dataTable.list-table.hover tbody tr:hover > *,
table.dataTable.list-table.hover tbody tr.odd:hover > *,
table.dataTable.list-table.hover tbody tr.even:hover > * {
  box-shadow: none !important;
  background-color: #fff !important;
}

/* Utility classes */
table.dataTable.list-table tbody tr td {
  transition: none !important;
}

table.dataTable.list-table .deadline-cell {
  white-space: nowrap !important;
}

/* Footer and controls styling */
.list-table-wrapper .datatable-footer {
  background: transparent;
  margin-top: 0.7rem;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 0.5rem;
}

.list-table-wrapper .dataTables_wrapper .dataTables_info {
  padding: 0 !important;
  margin: 0 !important;
  color: #6c757d !important;
  float: none !important;
}

@media (max-width: 768px) {
  .list-table-wrapper .datatable-footer {
      flex-direction: column !important;
      gap: 1rem !important;
      align-items: center !important;
      padding: 1rem 0.5rem !important;
  }
  
  .list-table-wrapper .datatable-footer > div {
      width: 100% !important;
      text-align: center !important;
  }
  
  .list-table-wrapper .dataTables_paginate {
      order: 2 !important;
  }
  
  .list-table-wrapper .dataTables_length {
      order: 3 !important;
  }
  
  .list-table-wrapper .dataTables_info {
      order: 1 !important;
  }
  
  .list-table-wrapper .dataTables_length,
  .list-table-wrapper .dataTables_paginate {
      justify-content: center !important;
  }
}

/* Pagination styling */
.list-table-wrapper .dataTables_wrapper .dataTables_paginate {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.list-table-wrapper .dataTables_wrapper .dataTables_paginate .paginate_button {
  background: white !important;
  border: 1px solid #dee2e6 !important;
  border-radius: 4px !important;
  color: #6c757d !important;
  padding: 5px 10px !important;
}

.list-table-wrapper .dataTables_wrapper .dataTables_paginate .paginate_button.current {
  cursor: default !important;
}

.list-table-wrapper .dataTables_wrapper .dataTables_paginate .paginate_button.previous,
.list-table-wrapper .dataTables_wrapper .dataTables_paginate .paginate_button.next {
  cursor: pointer !important;
}

.list-table-wrapper .dataTables_wrapper .dataTables_paginate .paginate_button:hover,
.list-table-wrapper .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  background: white !important;
  border: 1px solid #dee2e6 !important;
  color: #6c757d !important;
}

/* Length control styling */
.list-table-wrapper .dataTables_length {
  color: #6c757d !important;
}

.list-table-wrapper .dataTables_length select {
  margin: 0 0.5rem !important;
  padding: 0.25rem 0.5rem !important;
  border-radius: 0.25rem !important;
  border: 1px solid #dee2e6 !important;
}

/* Update the responsible cell styles */
table.dataTable.list-table .responsible-wrapper {
  display: inline-flex !important;
  align-items: center !important;
  background-color: #dee2e6 !important;
  padding: 0.25rem !important;
  border-radius: 9999px !important;
  gap: 0.75rem !important;
  max-width: 200px !important;
}

/* Avatar styles */
table.dataTable.list-table .responsible-avatar {
  width: 24px !important;
  height: 24px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 500 !important;
}

.list-table-wrapper .progress {
  background-color: #e9ecef;
  margin-right: 5px;
}

.list-table-wrapper .progress-bar {
  transition: width 0.4s ease; 
}
/* ======================================================= End DataTable List Styles ===========================================================================*/

/* ======================================================= DataTable Striped Styles ===========================================================================*/
table.striped-table thead th {
  background-color: #dee2e6;
  color: #495057;
  font-weight: bold;
  padding: 0.75rem;
  text-align: left;
}

.striped-table-wrapper .dataTables_info {
  padding-top: 0 !important; 
}

.striped-table-wrapper .dataTables_length label {
  margin: 0; 
}

/* Footer styles */
.striped-table-wrapper .datatable-footer {
  display: flex;
  justify-content: space-between !important;
  align-items: center;
  padding: 0.5rem;
}

@media (max-width: 768px) {
  .striped-table-wrapper .datatable-footer {
      flex-direction: column !important;
      gap: 1rem;
      justify-content: center !important;
  }
  
  .striped-table-wrapper .datatable-footer > div {
      width: 100%;
      text-align: center;
  }
  
  .striped-table-wrapper .datatable-footer .dataTables_paginate {
      display: flex;
      justify-content: center;
  }
  
  .striped-table-wrapper .datatable-footer .dataTables_length {
      display: flex;
      justify-content: center;
  }
  
  .striped-table-wrapper .datatable-footer .dataTables_info {
      order: -1;
  }
}
/* ======================================================= End DataTable Striped Styles ===========================================================================*/

/* ======================================================= Delete Confirmation Modal Styles ===========================================================================*/
.modal-delete-confirmation {
  max-width: 414px !important;
}

.modal-delete-content {
  border-radius: 10px !important;
  border: none !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

.modal-delete-header {
  background-color: #ffffff !important;
  border-radius: 10px 10px 0px 0px !important;
  padding: 15px !important;
  border: none !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
}

.modal-delete-title {
  font-weight: 700 !important;
  font-size: 22px !important;
  line-height: 1.21 !important;
  color: #1E1E1E !important;
  margin: 0 !important;
  padding: 0 !important;
}

.modal-delete-description {
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 1.21 !important;
  color: #1E1E1E !important;
  margin: 0 !important;
  padding: 0 !important;
}

.modal-delete-footer {
  background-color: #F9F9F9 !important;
  border-radius: 0px 0px 10px 10px !important;
  padding: 15px 10px !important;
  border: none !important;
  height: 51px !important;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
}

.modal-delete-actions {
  display: flex !important;
  flex-direction: row !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 6px !important;
  width: 100% !important;
}

.modal-btn-cancel {
  font-weight: 500 !important;
  font-size: 12px !important;
  line-height: 1.21 !important;
  color: rgba(30, 30, 30, 0.65) !important;
  background-color: transparent !important;
  border: none !important;
  padding: 8px 10px !important;
  cursor: pointer !important;
  transition: color 0.2s ease !important;
}

.modal-btn-cancel:hover {
  color: rgba(30, 30, 30, 0.85) !important;
  background-color: transparent !important;
}

.modal-btn-cancel:focus {
  box-shadow: none !important;
  outline: none !important;
}

.modal-btn-delete {
  font-weight: 500 !important;
  font-size: 12px !important;
  line-height: 1.21 !important;
  color: #ffffff !important;
  background-color: #DF2E2E !important;
  border: none !important;
  border-radius: 100px !important;
  padding: 8px !important;
  cursor: pointer !important;
  transition: background-color 0.2s ease, box-shadow 0.2s ease !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 5px !important;
}

.modal-btn-delete:hover {
  background-color: #c22828 !important;
  color: #ffffff !important;
  /* box-shadow: 0px 2px 4px rgba(223, 46, 46, 0.3) !important; */
}

.modal-btn-delete:focus {
  box-shadow: 0px 0px 0px 3px rgba(223, 46, 46, 0.2) !important;
  outline: none !important;
}

.modal-btn-delete:active {
  background-color: #b02222 !important;
}

/* Remove default Bootstrap modal styles for this modal */
.modal-delete-content .modal-header,
.modal-delete-content .modal-body,
.modal-delete-content .modal-footer {
  padding: 0 !important;
  border: none !important;
}

/* Backdrop/overlay styling for delete confirmation modal */
/* Change the background color by modifying the rgba values below */
/* rgba(0, 0, 0, 0.5) = black with 50% opacity */
/* You can change to any color, e.g., rgba(255, 0, 0, 0.3) for red, or rgba(100, 100, 100, 0.6) for gray */
.modal-backdrop.show {
  background-color: #1e1e1e !important;
  opacity: 0.15 !important;
}

/* Optional: Add blur effect to backdrop */
/* Uncomment the line below if you want a blur effect on the backdrop */
/* .modal-backdrop.show {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
} */

/* ======================================================= End Delete Confirmation Modal Styles ===========================================================================*/

/* ======================================================= Description Modal Styles ===========================================================================*/
.modal-description {
  max-width: 414px !important;
}

.modal-description-content {
  border-radius: 10px !important;
  border: none !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

.modal-description-header {
  background-color: #ffffff !important;
  border-radius: 10px 10px 0px 0px !important;
  padding: 15px !important;
  border: none !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
}

.modal-description-title {
  font-weight: 700 !important;
  font-size: 22px !important;
  line-height: 1.21 !important;
  color: #1E1E1E !important;
  margin: 0 !important;
  padding: 0 !important;
}

.modal-description-text {
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 1.21 !important;
  color: #1E1E1E !important;
  margin: 0 !important;
  padding: 0 !important;
}

.modal-description-footer {
  background-color: #F9F9F9 !important;
  border-radius: 0px 0px 10px 10px !important;
  padding: 15px 10px !important;
  border: none !important;
  height: 51px !important;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
}

.modal-description-actions {
  display: flex !important;
  flex-direction: row !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 6px !important;
  width: 100% !important;
}

.modal-btn-close {
  font-weight: 500 !important;
  font-size: 12px !important;
  line-height: 1.21 !important;
  color: rgba(30, 30, 30, 0.65) !important;
  background-color: transparent !important;
  border: none !important;
  padding: 8px 10px !important;
  cursor: pointer !important;
  transition: color 0.2s ease !important;
}

.modal-btn-close:hover {
  color: rgba(30, 30, 30, 0.85) !important;
  background-color: transparent !important;
}

.modal-btn-close:focus {
  box-shadow: none !important;
  outline: none !important;
}

/* Remove default Bootstrap modal styles for description modal */
.modal-description-content .modal-header,
.modal-description-content .modal-body,
.modal-description-content .modal-footer {
  padding: 0 !important;
  border: none !important;
}

/* ======================================================= End Description Modal Styles ===========================================================================*/

/* ======================================================= Alternatives Recommendation Modal Styles ===========================================================================*/
.modal-alternatives-recommendation {
  max-width: 600px !important;
}

.modal-alternatives-content {
  border-radius: 10px !important;
  border: none !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

.modal-alternatives-header {
  background-color: #ffffff !important;
  border-radius: 10px 10px 0px 0px !important;
  padding: 15px !important;
  border: none !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
  max-height: 70vh !important;
  overflow-y: auto !important;
}

.modal-alternatives-title {
  font-weight: 700 !important;
  font-size: 22px !important;
  line-height: 1.21 !important;
  color: #1E1E1E !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
}

.modal-alternatives-body {
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: #1E1E1E !important;
  margin: 0 !important;
  padding: 0 !important;
}

.modal-alternatives-footer {
  background-color: #F9F9F9 !important;
  border-radius: 0px 0px 10px 10px !important;
  padding: 15px 10px !important;
  border: none !important;
  height: 51px !important;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  flex-shrink: 0 !important;
}

.modal-alternatives-actions {
  display: flex !important;
  flex-direction: row !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 6px !important;
  width: 100% !important;
}

.modal-btn-close-alt {
  font-weight: 500 !important;
  font-size: 12px !important;
  line-height: 1.21 !important;
  color: rgba(30, 30, 30, 0.65) !important;
  background-color: transparent !important;
  border: none !important;
  padding: 8px 10px !important;
  cursor: pointer !important;
  transition: color 0.2s ease !important;
}

.modal-btn-close-alt:hover {
  color: rgba(30, 30, 30, 0.85) !important;
  background-color: transparent !important;
}

.modal-btn-close-alt:focus {
  box-shadow: none !important;
  outline: none !important;
}

/* Remove default Bootstrap modal styles for alternatives modal */
.modal-alternatives-content .modal-header,
.modal-alternatives-content .modal-body,
.modal-alternatives-content .modal-footer {
  padding: 0 !important;
  border: none !important;
}

/* ======================================================= End Alternatives Recommendation Modal Styles ===========================================================================*/