:root {
  --primary: #2bb6ee;
  --success: #1cb280;
  --danger: #ff0000;
  --text: #333;
  --light: #e8e9ea;
  --light2: lightgrey;
  --light3: rgb(182, 182, 182);
  --text-in-primary: #fff;
  --background: #fff;
  --color-nps-detrator: rgb(245, 8, 8);
  --color-nps-detrator-unselected: rgb(190, 55, 55);
  --color-nps-promotor: #1cb280;
  --color-nps-promotor-unselected: #1cb28083;
  --color-nps-neutro: rgb(255, 187, 0);
  --color-nps-neutro-unselected: rgba(255, 187, 0, 0.582);
}

table.dataTable th.sorting_disabled {
  cursor: initial !important;
  pointer-events: initial !important;
}

.epa-container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: 1fr;
}

.grid-cols-2 {
  grid-template-columns: 1fr 1fr;
}

.grid-cols-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-cols-4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid-cols-5 {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.col-span-1 {
  grid-column: span 1 / span 1;
}
.col-span-2 {
  grid-column: span 2 / span 2;
}
.col-span-3 {
  grid-column: span 3 / span 3;
}
.col-span-4 {
  grid-column: span 4 / span 4;
}
.col-span-5 {
  grid-column: span 5 / span 5;
}

.label-promotor {
  background: var(--color-nps-promotor);
}

.label-neutro {
  background: var(--color-nps-neutro);
}

.label-detrator {
  background: var(--color-nps-detrator);
}

.bg-promotor-unselected {
  background: var(--color-nps-promotor-unselected) !important;
  box-shadow: 0px 10px 50px rgb(0 0 0 / 10%);
}

.bg-detrator-unselected {
  border: 3px solid var(--color-nps-detrator-unselected) !important;
  box-shadow: 0px 10px 70px rgb(0 0 0 / 15%);
}

.bg-neutro-unselected {
  background: var(--color-nps-neutro-unselected) !important;
  box-shadow: 0px 10px 70px rgb(0 0 0 / 15%);
}

.bg-light {
  background: var(--light);
}

.hover--bg-light:hover {
  background: var(--light);
}

.bg-light2 {
  background: var(--light2);
}

.hover--bg-light2:hover {
  background: var(--light2);
}

.bg-light3 {
  background: var(--light3);
}

.hover--bg-light3:hover {
  background: var(--light3);
}


.opacity-0 {
  opacity: 0;
}

.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

* {
  -webkit-font-smoothing: antialiased !important;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.avatar-sm {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  object-fit: cover;
}

.avatar-sm2 {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
}

.input-sm2 {
  height: 10px;
}

.flex-1 {
  flex: 1;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;

}

.justify-end {
  justify-content: flex-end;
}

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

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.flex-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.flex-v-center {
  display: flex;
  align-items: center;
}

.flex-column-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-between-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.flex-bottom {
  display: flex;
  align-items: flex-end;
}

.flex-start {
  display: flex;
  align-items: flex-start;
}

.flex-content-start {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.block {
  display: block;
}

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

.cursor-pointer {
  cursor: pointer;
}

.text-danger {
  color: var(--danger);
}

.text-light {
  color: var(--light);
}

.text-light2 {
  color: var(--light2);
}

.text-light3 {
  color: var(--light3);
}

.w-49 {
  width: 49%;
}

.w-50 {
  width: 50%;
}

.w-100 {
  width: 100%;
}

.w-full {
  width: 100%;
}

.border {
  border: 1px solid #dee2e6!important;
}

.btn-padrao {
  height: 16px;
  width: 50px;
}
.shimmer-label {
  height: 17px;
  width: 200px;
}

.shimmer-avatar {
  height: 26px;
  width: 26px;
  border-radius: 50px !important;
}

.shimmer-input {
  height: 32px;
  width: 300px;
}

.shimmer-rich-text {
  height: 200px;
  width: 100%;
}

.shimmer-btn {
  height: 32px;
  width: 100px;
}

.shimmer-btn-mini {
  height: 26px;
  width: 26px;
}

.shimmer {
  background: #dfdfdf;
  background-image: linear-gradient(
    45deg,
    #dfdfdf 0%,
    #dbdbdb 20%,
    #e2e2e2 40%,
    #e2e2e2 100%
  );
  background-repeat: no-repeat;
  background-size: 800px 104px;
  display: inline-block;
  position: relative;
  border-radius: 5px;

  -webkit-animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-name: placeholderShimmer;
  -webkit-animation-timing-function: linear;
}

.shimmer-block {
  display: block;
  background: #dfdfdf;
  background-image: linear-gradient(
    45deg,
    #dfdfdf 0%,
    #dbdbdb 20%,
    #e2e2e2 40%,
    #e2e2e2 100%
  );
  background-repeat: no-repeat;
  background-size: 800px 104px;
  position: relative;
  border-radius: 5px;

  -webkit-animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-name: placeholderShimmer;
  -webkit-animation-timing-function: linear;
}

@-webkit-keyframes placeholderShimmer {
  0% {
    background-position: -468px 0;
  }

  50% {
    background-position: 468px 0;
  }

  100% {
    background-position: -468px 0;
  }
}

.hover-light:hover {
  background: red;
  /* background: var(--light); */
}

.btn-outline-danger {
  border: 1px solid var(--danger);
  color: var(--danger);
  background: transparent;
  transition: 0.2s;
}

.btn-outline-danger:hover {
  color: white;
  background: var(--danger);
  transition: 0.2s;
}

.cke_bottom {
  background: var(--light) !important;
}

.cke_reset.cke_browser_webkit {
  border: 1px solid var(--light2) !important;
  border-radius: 5px;
}

.ms-auto {
  margin-left: auto;
}

.rounded {
  border-radius: 0.25rem !important;
}

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

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



.p-2_5 {
  padding: 0.625rem;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

/* Margins */
.m-0 {
  margin: 0 !important;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-2_5 {
  margin-bottom: 0.625rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.m-3 {
  margin: 1rem;
}

.mt-3 {
  margin-top: 1rem;
}

.ml-3 {
  margin-left: 1rem !important;
}

.mt-5 {
  margin-top: 1.25rem;
}

.m-6 {
  margin: 1.5rem; /* 24px */
}

.mx-6 {
  margin-right: 1.5rem; /* 24px */
  margin-left: 1.5rem; /* 24px */
}

.mxy6 {
  margin-bottom: 1.5rem; /* 24px */
  margin-top: 1.5rem; /* 24px */
}

.mt-6 {
  margin-top: 1.5rem; /* 24px */
}

.mr-6 {
  margin-right: 1.5rem; /* 24px */
}

.mb-6 {
  margin-bottom: 1.5rem; /* 24px */
}

.ml-6 {
  margin-left: 1.5rem; /* 24px */
}

.m-10 {
  margin: 2.5rem; /* 40px */
}

.mx-10 {
  margin-left: 2.5rem; /* 40px */
  margin-right: 2.5rem; /* 40px */
}

.my-10 {
  margin-top: 2.5rem; /* 40px */
  margin-bottom: 2.5rem; /* 40px */
}

.mt-10 {
  margin-top: 2.5rem; /* 40px */
}

.mr-10 {
  margin-right: 2.5rem; /* 40px */
}

.mb-10 {
  margin-bottom: 2.5rem; /* 40px */
}

.ml-10 {
  margin-left: 2.5rem; /* 40px */
}

.mx-2 {
  margin-left: calc(1rem * 0.5);
  margin-right: calc(1rem * 0.5);
}

.mr-2 {
  margin-right: calc(1rem * 0.5);
}

.mx-3 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.my-3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mr-3 {
  margin-right: 1rem;
}

.mt-2 {
  margin-top: calc(1rem * 0.5);
}

.mt-01 {
  margin-top: calc(1rem* 0.3);
}

.mx-2 {
  margin-left: calc(1rem * 0.5);
  margin-right: calc(1rem * 0.5);
}

.mb-2 {
  margin-bottom: calc(1rem * 0.5);
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.ml-auto {
  margin-left: auto;
}

.ms-2 {
  margin-left: calc(1rem * 0.5);
}
text-page-title
.ms-3 {
  margin-left: 1rem;
}

.me-2 {
  margin-right: calc(1rem * 0.5);
}


.ms-auto {
  margin-left: auto;
}

/* Paddings */
.p-1 {
  padding: calc(1rem * 0.25);
}

.px-1 {
  padding-left: calc(1rem * 0.25);
  padding-right: calc(1rem * 0.25);
}

.py-1 {
  padding-top: calc(1rem * 0.25);
  padding-bottom: calc(1rem * 0.25);
}

.py-2 {
  padding-top: calc(1rem * 0.5);
  padding-bottom: calc(1rem * 0.5);
}

.py-3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.p-2 {
  padding: calc(1rem * 0.5);
}

.px-2 {
  padding-left: calc(1rem * 0.5);
  padding-right: calc(1rem * 0.5);
}

.pt-2 {
  padding-top: calc(1rem * 0.5);
}

.p-3 {
  padding: 1rem;
}

.pt-3 {
  padding-top: 1rem;
}

.pe-3 {
  padding-right: 1rem;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-3 {
  padding-bottom: 1rem;
}

.ps-3 {
  padding-left: 1rem;
}

.px-3 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-4 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.p-4 {
  padding: 1.25rem;
}

.p-5 {
  padding: 1.5rem;
}

.pl-1 {
  padding-left: calc(1rem * 0.25);
}

.pl-2 {
  padding-left: calc(1rem * 0.5);
}

.pl-3 {
  padding-left: 1rem;
}

.pr-1 {
  padding-right: calc(1rem * 0.25);
}

.pr-2 {
  padding-right: calc(1rem * 0.5);
}

.pr-3 {
  padding-right: 1rem;
}

.box-size {
  box-size: border-box;
}

.collapse-body-parametros-radar-executivo {
  border: solid 2px #f0f0f0;
  height: calc(100vh - 25rem);
}

.h-managerial-radar-details {
  overflow-y: auto;
  height: calc(100vh - 12rem);
}

.collapse-border-body {
  border: solid 2px #dfdada !important;
}

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

.f-s1 {
  font-size: larger;
}

.f-s2 {
  font-size: medium;
}

.f-s3 {
  font-size: large;
}

.f-s4 {
  font-size: x-large;
}

.input-error {
  color: var(--danger);
  line-height: 1;
  font-size: 11px;

}

.text-page-title {
  font-size: 21px;
  font-weight: normal;
  line-height: 21px;
}

.sorting_disabled
{
  background-image:none !important;
  cursor: not-allowed;
  pointer-events: none;
}

.options-selected {
  background: #eeeeee;
  color: #555555;
  padding: 0.2rem 7px 0 7px;
  line-height: initial !important;
  font-weight: normal;
  white-space: nowrap;
  min-height: 1.2rem;
  font-size: 1rem;
  /* BOTH of the following are required for text-overflow */
  overflow: hidden;
}

.options-selected:hover {
  cursor: not-allowed;
}

/*--------------------*/
.v-color .sp-replacer {
  width: 100% !important;
  height: 30px !important;
  margin-top: -2px;
}

.icon-spinner {
  animation: spin-animation 1.1s infinite linear;
  display: inline-block;
}

@keyframes spin-animation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}

/*** DATA TABLE ***/

.bd-table {
  border: solid 2px #f0f0f0; 
  border-radius: 4px;

}

/*** Dashboard ***/
.list-cards-dashboard {
  display: flex;
  flex-wrap: wrap;
  gap: 25px 15px;
  margin: 30px 0;
}

.card-dashboard {
  width: 100%;
  max-width: 262px;
  overflow: hidden;
  padding: 5px 15px;
  border-radius: 10px;
  position: relative;
  color: #000000;

  background: rgb(231,231,231);
  background: linear-gradient(90deg, rgba(231,231,231,1) 0%, rgba(207,207,207,1) 100%);

  -webkit-box-shadow: 5px 5px 15px -4px rgba(201,201,201,0.5);
  -moz-box-shadow: 5px 5px 15px -4px rgba(201,201,201,0.5);
  box-shadow: 5px 5px 15px -4px rgba(201,201,201,0.5);
}

.number-card-dashboard {
  font-size: 20px;
  line-height: 1;
}

.body-card-dashboard {
  margin-top: 5px;
  font-size: 12px;
  font-family: 'open_sansregular';
}

.icon-card {
  position: absolute;
  top: 0px;
  right: 0px;
  transform: rotate(-30deg);
  opacity: 20%;
}

.icon-card i {
  font-size: 70px;
}

.gray-card {
  color: #000000;
  background: rgb(231,231,231);
  background: linear-gradient(90deg, rgba(231,231,231,1) 0%, rgba(207,207,207,1) 100%);
}

.purple-card {
  color: #ffffff;
  background: rgb(140,74,237);
  background: linear-gradient(90deg, rgba(140,74,237,1) 0%, rgba(115,61,198,1) 100%);
}

.orange-card {
  color: #ffffff;
  background: rgb(254,88,36);
  background: linear-gradient(90deg, rgba(254,88,36,1) 0%, rgba(240,57,0,1) 100%);
}

.red-card {
  color: #ffffff;
  background: rgb(235,37,48);
  background: linear-gradient(90deg, rgba(235,37,48,1) 0%, rgba(212,8,19,1) 100%);
}

.blue-card {
  color: #ffffff;
  background: rgb(0,192,239);
  background: linear-gradient(90deg, rgba(0,192,239,1) 0%, rgba(10,143,176,1) 100%);
}

.dark-blue-card {
  color: #ffffff;
  background: rgb(0,115,183);
  background: linear-gradient(90deg, rgba(0,115,183,1) 0%, rgba(0,82,130,1) 100%);
}

.green-card {
  color: #ffffff;
  background: rgb(0,166,90);
  background: linear-gradient(90deg, rgba(0,166,90,1) 0%, rgba(3,136,75,1) 100%);
}

.yellow-card {
  color: #000000;
  background: rgb(217,219,5);
  background: linear-gradient(90deg, rgba(217,219,5,1) 0%, rgba(188,190,1,1) 100%);
}

.ml-0 {
  margin-left: 0 !important;
}

.format-text-title-info {
  font-size: 12px;
  font-weight: 100;
  line-height: 1.5;
  color: black;
}

.content-animation {
  transition: max-height 0.5s ease-in-out, opacity 0.3s ease-in-out, height 0.5s ease-in-out;
  max-height: 62px;
}

.max-height-0 {
  max-height: 0 !important;
}

.h-100 {
  height: 100%;
}

.min-h-100 {
  min-height: 100% !important;
}

.mt-0 {
  margin-top: 0 !important;
}

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

.position-relative {
  position: relative;
}

#getIndicadoresModal .indicadoresUl li {
  padding:4px 0 4px 0;
  font-weight:bold;
  display:list-item;
  width:-webkit-fill-available;
}

#getIndicadoresModal .indicadoresUl li:hover {
  background-color:#FFFFD5;
}

#getIndicadoresModal .indicadoresUl li a.imgmais {
  margin-left: 2px !important;
}