/* ----> Session Manager Modals <----*/

.sm-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.55);
  align-items: center;
  justify-content: center;
}

.sm-card {
  background: #fff;
  border-radius: 1.2rem;
  padding: 2.5rem 2rem 2rem;
  width: 100%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.sm-lock-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.sm-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: #113a5c;
}

.sm-body {
  font-size: 0.9rem;
  color: #555;
  margin: 0 0 0.5rem;
}

.sm-reason {
  font-size: 0.78rem;
  color: #888;
  font-style: italic;
  margin: 0 0 1.25rem;
  min-height: 1em;
}

.sm-countdown {
  font-size: 2.8rem;
  font-weight: 700;
  color: #113a5c;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.sm-countdown-urgent {
  color: #b33930;
}

.sm-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.sm-btn {
  padding: 0.55rem 1.4rem;
  border-radius: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}

.sm-btn:hover {
  opacity: 0.85;
}

.sm-btn-primary {
  background-color: #113a5c;
  color: #fff;
}

.sm-btn-ghost {
  background-color: transparent;
  color: #113a5c;
  border: 2px solid #113a5c;
}

/* ----> Font import <----*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");

* {
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: whitesmoke;
}

.main-cont {
  grid-template-areas: "header; cont; footer";
}

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

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding: 0.5rem 2rem;
  border-radius: 0 0 6px 6px;
  box-shadow: 0px 2px 18 -6px rgba(0, 0, 0, 0.99);
  -webkit-box-shadow: 0px 2px 18px -6px rgba(0, 0, 0, 0.99);
  -moz-box-shadow: 0px 2px 18px -6px rgba(0, 0, 0, 0.99);
}

.button-with-descr {
  margin-left: 1rem;
  display: grid;
  place-content: center;
  justify-items: center;
  transition: 0.3s ease all;
  width: fit-content;
  cursor: pointer;
}

.carrito-logo {
  height: 7rem;
}

.button-with-descr img {
  padding: 6px;
  border-radius: 1rem;
  height: 40px;
  transition: 0.3s ease all;
}

.button-with-descr img:hover {
  transform: scale(1.1);
}

.button-with-descr p {
  margin: 0;
  text-align: center;
  padding: 0.1rem 0.3rem;
  width: 50px;
  transition: 0.3s ease all;
  background-color: #424949;
  color: white;
  z-index: 10;
  font-size: 0.7rem;
  position: relative;
  border-radius: 0.5rem;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.button-with-descr:hover p {
  opacity: 1;
  transform: scale(1);
}

.notification-cont {
  position: relative;
}

.button-with-descr span {
  position: absolute;
  background-color: #d04116;
  top: 4px;
  right: 4px;
  border-radius: 100%;
  height: 20px;
  width: 20px;
  color: white;
  text-align: center;
  font-size: 0.85rem;
}

.header .header-logo {
  height: 3rem;
}

.height100p {
  height: 100%;
}

/* Estilos del modal (por defecto, oculto) */

/* Animación para que aparezca suavemente */

.cont {
  margin-top: 2rem;
  padding: 0 2rem;
}

.footer {
  grid-area: "footer";
  background-color: #0b89a4;
  padding: 1rem 2rem;
  margin-top: 2rem;
}

.card-img {
  -webkit-filter: drop-shadow(3px -1px 2px #666666);
  filter: drop-shadow(3px -1px 2px #666666);
  transform: scale(1.1) translate(4%, -4%);
  height: 14rem;
  margin-top: auto;
  min-height: 5rem;
}

.two-section-full-screen-cont {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.two-section-img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.two-section-content {
  width: 100%;
}

.two-section-content-logo {
  margin: auto;
  padding-top: 1rem;
  position: relative;
  display: grid;
  place-items: center;
}

.two-section-content-logo img {
  height: 5rem;
}

.two-section-content-logo h1 {
  color: #424949;
  margin: 0;
  margin-top: 0.5rem;
}

.two-section-content-cont {
  height: 90%;
  display: grid;
  place-content: center;
  grid-template-columns: 80%;
  gap: 1rem;
}

.small-card {
  background-color: white;
  padding: 1rem 2rem 2rem 1rem;
  box-shadow: 0px 3px 8px 4px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 3px 8px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 3px 8px 4px rgba(0, 0, 0, 0.2);
  transition: 0.2s ease-in-out;
}

.small-card-lat-icon {
  height: 50px;
}

.small-card-header {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
}

.small-card-header h3 {
  margin-top: 0;
  margin-bottom: 0;
}

.large-welcome-card {
  background-color: white;
  box-shadow: 0px 3px 8px 4px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 3px 8px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 3px 8px 4px rgba(0, 0, 0, 0.2);
  transition: 0.2s ease-in-out;
  display: flex;
  justify-content: space-between;
  height: 9rem;
  margin-bottom: 2rem;
}

.card-title,
.card-title-nopad {
  color: #616a6b;
}

.card-title-nopad {
  margin: 0;
  padding-left: 1rem;
  margin-right: 1rem;
}

.card-title {
  text-align: center;
  margin: 0 auto;
  padding: 0.5rem 4rem 0;
}

input[type="range"]::-webkit-slider-runnable-track {
  border: #0b89a4 2px solid;
  background-color: white;
  border-radius: 1rem;
}

.contents {
  display: contents !important;
}

.fancy-input-cont {
  display: grid;
  grid-template-columns: 1fr;
  padding-top: 1rem;
  align-items: end;
  gap: 0.5rem;
}

.fancy-input {
  overflow: hidden;
  border: transparent solid 2px;
  border-bottom: #0b89a4 solid 2px;
  padding: 0.5rem 1rem;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease-in;
}

.fancy-input-cont p {
  margin: 0;
}

.fancy-input-select {
  border: #0b89a4 solid 2px;
  border-radius: 1rem;
  padding: 0.5rem 1rem;
  font-size: 16px;
  max-height: 5ch;
  outline: none;
  transition: all 0.3s ease-in;
}

.fancy-input:focus {
  border-color: #0b89a4;
  border: #0b89a4 solid 2px;
  border-radius: 1rem;
}

.form-cont,
.form-cont-3 {
  display: grid;
  gap: 1.5rem;
  transition: 0.5s ease all;
  align-items: end;
}

.form-cont {
  grid-template-columns: 1fr 1fr;
}

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

.form-cont-6 {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.form-cont input[type="submit"],
.form-cont-3 input[type="submit"] {
  height: auto;
  padding: 0.5rem 3rem;
  margin: auto;
  margin-bottom: 0;
  border-radius: 0.8rem;
  font-size: 1.2rem;
  cursor: pointer;
  transition: ease 0.4s all;
}

.save-btn {
  height: auto;
  padding: 0.5rem 3rem;
  margin: auto;
  margin-bottom: 0;
  border-radius: 0.8rem;
  font-size: 1.2rem;
  cursor: pointer;
  transition: ease 0.4s all;
}

table {
  width: 100%;
  background-color: white;
  border-radius: 2rem 2rem 0 0;
  box-shadow: 0px 3px 8px 4px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 3px 8px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 3px 8px 4px rgba(0, 0, 0, 0.2);
  transition: 0.2s ease-in-out;
}

thead {
  background-color: #0b89a4;
  color: white;
  width: 100%;
  border-top-left-radius: 2rem;
}

th:first-child tr {
  border-top-left-radius: 2rem;
}

th {
  padding: 1rem;
  text-align: center;
}

tr th:first-child {
  border-top-left-radius: 2rem;
  padding-left: 2rem;
}

tr td:first-child {
  padding-left: 2rem;
}

tr th:last-child {
  border-top-right-radius: 2rem;
}

tbody tr:last-child td {
  border-bottom: none;
}

td {
  padding: 1rem;
  border-bottom: #616a6b76 1px solid;
}

.comment-container {
  overflow-y: auto;
  max-height: 70%;
}

.comment-cont div {
  display: grid;
  grid-template-columns: 10ch 1fr;
}

.comment-cont div p:first-child {
  color: #ec7726;
  font-size: 0.9rem;
}

.comment-cont div p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: #616a6b;
}

.full-screen-card {
  max-height: calc(100vh - 14rem);
  overflow-y: scroll;
}

.comment-cont textarea {
  width: 90%;
  height: fit-content;
  resize: none;
  scrollbar-width: 0;
  flex-shrink: 4;
}

.multi-check-cont {
  display: flex;
  height: fit-content;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.multi-check-cont p {
  width: 100%;
  font-weight: bolder;
  user-select: none;
  color: #424949;
  -moz-user-select: none;
}

.fancy-check {
  background-color: gainsboro;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  transition: 0.4s ease all;
  cursor: pointer;
}

.fancy-check.kpi-label {
  display: flex;
  justify-content: space-between;
}

.fancy-check.kpi-label.done > img {
  content: url("src/check_small_gray.png");
  height: 1.5rem;
}

.fancy-check.kpi-label.done:has(input:checked) > img {
  content: url("src/check_small_white.png");
  height: 1.5rem;
}

.fancy-check:hover {
  background-color: #0b88a488;
}

.fancy-check:has(input:checked) {
  background-color: #0b89a4;
  color: white;
}

.fancy-check input[type="checkbox"],
.fancy-check input[type="radio"] {
  opacity: 0;
  position: absolute;
}

#soulver-info {
  height: 22rem;
}

.cardlogo-button {
  height: 2.5rem;
  transition: 0.3s ease all;
  cursor: pointer;
}

.cardlogo-button:hover {
  transform: scale(1.1);
}

.radio-cont {
  display: grid;
  grid-template-columns: 98%;
  overflow-y: scroll;
  position: relative;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  padding-top: 1rem;
}

.radio-cont label {
  margin-bottom: 1rem;
  background-color: whitesmoke;
  border: #0b89a4 2px solid;
}

label {
  font-weight: bolder;
  user-select: none;
  color: #424949;
  -moz-user-select: none;
}

.welcome-title {
  color: #616a6b;
  margin: 0;
  white-space: pre-line;
  padding: 0.5rem;
  min-width: 10ch;
  height: auto;
  margin-left: 2rem;
}

.welcome-title strong {
  color: #424949;
}

.welcome-card {
  display: grid;
  padding: 0;
  grid-template-columns: auto 1fr;
}

.welcome-card > img {
  -webkit-filter: drop-shadow(3px -1px 2px #666666);
  filter: drop-shadow(3px -1px 2px #666666);
  transform: scale(1.1) translate(3.5%, -4.5%);
  margin-top: auto;
  min-height: 5rem;
  border-bottom-left-radius: 2rem;
}

.filters-cont {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/** LOADING OVERLAY **/
#loading-overlay {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  /* Semi-transparent white background */
  z-index: 9999;
  /* Ensure it's on top of other elements */
}

.loader {
  border: 4px solid #f3f3f3;
  /* Light gray border */
  border-top: 4px solid #3498db;
  /* Blue border on top */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  /* Rotate animation */
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/** FLOATING ERROR SUCCESS WINDOW */
.floating-window-cont {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  position: fixed;
  background-color: #043d499d;
  width: 100vw;
  height: 100vh;
  top: 0;
  z-index: 9999;
  transition: 0.3s ease-in-out all;
}

.floating-window {
  width: max-content;
  height: max-content;
  background-color: white;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 1rem;
  text-align: justify;
  transition: 0.5s ease-in-out all;
  max-width: 70%;
  max-height: 80%;
}

.floating-scroll {
  height: 100%;
  overflow-y: auto;
  max-height: 80vh;
}

.floating-close {
  position: absolute;
  height: 16px;
  padding: 8px;
  background-color: whitesmoke;
  top: -8px;
  right: -8px;
  border-radius: 100%;
  transition: 0.3s ease-in-out all;
  cursor: pointer;
}

.floating-close:hover {
  transform: rotate(180deg) scale(1.15);
}

.floating-window h3 {
  font-size: 2rem;
  text-align: center;
  margin: 0;
}

#excelModal {
  padding: 2rem 1rem;
}

#excelModal h3 {
  font-size: 1rem;
  text-align: center;
  margin: inherit;
}

#excelModal .text-right {
  text-align: right;
}

#excelModal .no-margin {
  margin: 0;
}

#excelModal .kpis-table {
  max-height: none;
  overflow-y: hidden;
  padding-right: 2em;
}

.floating-success center img {
  content: url("src/checkmark.svg");
  height: 5rem;
  width: 5rem;
}

.floating-modal center img {
  content: url("src/Who-performance.jpg");
  object-fit: contain;
  max-width: 90%;
  max-height: 90%;
  margin: auto;
}

.floating-success h3::before {
  color: #0b89a4;
  content: "SUCCESS";
}

.floating-err center img {
  content: url("src/error.png");
  height: 5rem;
  width: 5rem;
}

.floating-warning center img {
  content: url("src/bell.png");
  height: 5rem;
  width: 5rem;
}

.floating-err dotlottie-player,
.floating-success dotlottie-player,
.floating-warning dotlottie-player {
  display: none;
}

.floating-warning-animated center img {
  display: none;
}

.floating-warning-animated dotlottie-player {
  display: inherit;
}

.floating-err h3::before {
  color: #ec7726;
  content: "ERROR";
}

.floating-warning h3::before {
  color: #f0a14b;
  content: "REMINDER";
}

textarea {
  resize: none;

  /* Hide scrollbar for Chrome, Safari and Opera */
  ::-webkit-scrollbar {
    display: none;
  }

  /* Hide scrollbar for IE, Edge, and Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

/* Ensure scrolling still works when scrollbar is hidden */
textarea {
  overflow-y: scroll;
}

/** General purpose classes **/

.center {
  display: grid;
  place-content: center;
}

.rounded {
  border-radius: 2rem;
}

.grid-colspan-5 {
  grid-row: span 5;
}

.bigger-img img {
  height: 5rem;
}

.bigger-img p {
  width: 60px;
}

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

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

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

.target {
  justify-self: end;
  justify-items: center;
}

.grid-colspan-4 {
  grid-row: span 4;
}

.grid-colspan-3 {
  grid-row: span 3;
}

.grid-colspan-2 {
  grid-row: span 2;
}

.grid-rowspan-2 {
  grid-column: span 2;
}

.grid-rowspan-3 {
  grid-column: span 3;
}

.grid-rowspan-4 {
  grid-column: span 4;
}

.grid-rowspan-5 {
  grid-column: span 5;
}

.white-font {
  color: white;
}

.gray-font {
  color: #424949;
}

.small-font {
  font-size: 0.8rem;
}

.medium-font {
  font-size: 1rem;
}

.large-font {
  font-size: large;
  .multi-purp-bkg {
    background: rgb(164, 70, 153);
    background: linear-gradient(
      90deg,
      rgba(164, 70, 153, 1) 30%,
      rgba(11, 137, 164, 1) 83%
    );
  }
}

.percent-bkg {
  background-color: #00896478;
  color: white;
}

.percent-bkg-per {
  padding: 0.5rem 3rem;
  background: rgb(0, 137, 100);
  background: linear-gradient(
    90deg,
    rgba(0, 137, 100, 1) 28%,
    rgba(255, 255, 255, 0) 28%
  );
}

.gray-bkg {
  background-color: #424949;
}

.purp-bkg {
  background-color: #a44699;
}

.green-bkg {
  background-color: #0b89a4;
}

.orange-bkg {
  background-color: #ec7726;
}

.strgreen-bkg {
  background-color: #008964;
}

.red-bkg {
  background-color: #d04116;
}

.yellow-bkg {
  background-color: #f0a14b;
}

.bryellow-bkg {
  background: linear-gradient(90deg, #b9771a, #efca6b, #b9771a);
}

.bryellow-font {
  background: linear-gradient(90deg, #b9771a, #efca6b, #b9771a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.yellow-brdr {
  border: 2px solid #f0a14b;
}

.violet-bkg {
  background-color: #6a5acd;
}

.lt-violet-bkg {
  background-color: #877bd4;
}

.violet-bkg-trans {
  background-color: #695acd24;
}

.violet-border {
  border: solid 4px #6a5acd;
}

.orange-border {
  border: solid 4px #ec7726;
}

.brown-bkg {
  background-color: #8b4513;
}

.pink-bkg {
  background-color: #c33c5e;
}

.multi-bkg {
  background: linear-gradient(90deg, #ec7726 20%, #0b89a4 60%);
}

.margin-bottom2 {
  margin-bottom: 2rem;
}

.center-self {
  align-self: stretch;
}

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

.centered-self {
  align-self: center;
}

.highlight-text {
  background-color: #616a6b1f;
  border-radius: 1rem;
  color: #d04116;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

.fit-content {
  width: fit-content;
}

.width-50 {
  width: 50%;
}

.width-70 {
  width: 70%;
}

.width-85 {
  width: 85%;
}

.width-90 {
  width: 90%;
}

.width-100 {
  width: 100%;
}

.width-2 {
  width: 2em;
}

.width-5 {
  width: 5em;
}

.align-self {
  align-self: start;
}

.align-bottom {
  align-self: flex-end;
}

.center-items {
  display: grid;
  place-content: center;
}

.margin-bottom-m1 {
  margin-bottom: -1.2rem;
}

.padright-1 {
  margin-right: 1rem;
}

.padbot-1 {
  padding-bottom: 1rem;
}

.loss-fields {
  padding: 0.1rem 0.8rem;
  font-size: large;
}

.loss-fields:focus {
  outline: none;
  border-color: #0b89a4;
}

.flex-grow-1 {
  flex-grow: 1;
}

.full-width {
  width: 100%;
}

.no-gap {
  gap: 0;
}

.vertical-gap {
  gap: 2rem;
}

.greater-horizontal-gap {
  gap: 1rem 4rem;
}

.no-bottom-gap {
  gap: 0 1.5rem;
}

.flex-shrink-1 {
  flex-shrink: 1;
}

.yellow-font {
  color: #f0a14b;
}

.strorange-font {
  color: #d04116;
}

.orange-font {
  color: #ec7726;
}

.green-font {
  color: #008964;
}

.bigger-font {
  font-size: 3rem;
}

.bold-font {
  font-weight: bold;
}

.multi-purp-bkg {
  background: rgb(164, 70, 153);
  background: linear-gradient(
    90deg,
    rgba(164, 70, 153, 1) 30%,
    rgba(11, 137, 164, 1) 83%
  );
}

.percent-bkg {
  background-color: #00896478;
  color: white;
}

.percent-bkg-per {
  padding: 0.5rem 3rem;
  background: rgb(0, 137, 100);
  background: linear-gradient(
    90deg,
    rgba(0, 137, 100, 1) 28%,
    rgba(255, 255, 255, 0) 28%
  );
}

.gray-bkg {
  background-color: #424949;
}

.white-bkg {
  background-color: white;
}

.purp-bkg {
  background-color: #a44699;
}

.green-bkg {
  background-color: #0b89a4;
}

.orange-bkg {
  background-color: #ec7726;
}

.strgreen-bkg {
  background-color: #008964;
}

.red-bkg {
  background-color: #d04116;
}

.yellow-bkg {
  background-color: #f0a14b;
}

.bryellow-bkg {
  background: linear-gradient(90deg, #b9771a, #efca6b, #b9771a);
}

.bryellow-font {
  background: linear-gradient(90deg, #b9771a, #efca6b, #b9771a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.yellow-brdr {
  border: 2px solid #f0a14b;
}

.violet-border {
  border: solid 4px #6a5acd;
}

.orange-border {
  border: solid 4px #ec7726;
}

.brown-bkg {
  background-color: #8b4513;
}

.pink-bkg {
  background-color: #c33c5e;
}

.multi-bkg {
  background: linear-gradient(90deg, #ec7726 20%, #0b89a4 60%);
}

.margin-bottom2 {
  margin-bottom: 2rem;
}

.center-self {
  align-self: stretch;
}

.centered-self {
  align-self: center;
}

.highlight-text {
  background-color: #616a6b1f;
  border-radius: 1rem;
  color: #d04116;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

.fit-content {
  width: fit-content;
}

.width-50 {
  width: 50%;
}

.width-70 {
  width: 70%;
}

.width-85 {
  width: 85%;
}

.width-90 {
  width: 90%;
}

.width-2 {
  width: 2em;
}

.width-5 {
  width: 5em;
}

.align-self {
  align-self: start;
}

.align-bottom {
  align-self: flex-end;
}

.center-items {
  display: grid;
  place-content: center;
}

.margin-bottom-m1 {
  margin-bottom: -1.2rem;
}

.padright-1 {
  margin-right: 1rem;
}

.padbot-1 {
  padding-bottom: 1rem;
}

.loss-fields {
  padding: 0.1rem 0.8rem;
  font-size: large;
}

.loss-fields:focus {
  outline: none;
  border-color: #0b89a4;
}

.flex-grow-1 {
  flex-grow: 1;
}

.full-width {
  width: 100%;
}

.no-gap {
  gap: 0;
}

.vertical-gap {
  gap: 2rem;
}

.greater-horizontal-gap {
  gap: 1rem 4rem;
}

.no-bottom-gap {
  gap: 0 1.5rem;
}

.flex {
  display: flex;
}

.flex-shrink-1 {
  flex-shrink: 1;
}

.yellow-font {
  color: #f0a14b;
}

.strorange-font {
  color: #d04116;
}

.orange-font {
  color: #ec7726;
}

.green-font {
  color: #0b89a4;
}

.strgreen-font {
  color: #008964;
}

.alert-font {
  font-size: 1.1rem;
  color: #d04116;
  font-weight: bolder;
}

.none {
  display: none;
}

.text-padding {
  padding: 0.5rem 2rem;
}

.no-marpad {
  margin: 0;
  padding: 0;
}

.no-margin {
  margin: 0;
}

.no-padding-bottom {
  padding-bottom: 1rem;
}

.full-page-img {
  width: 25vw;
  position: sticky;
  bottom: 2rem;
}

.no-padding-top {
  padding-top: 0;
}

.cursor {
  cursor: pointer;
}

.green-button {
  border: #0b89a4 solid 2px;
  transition: 0.3s ease-in-out all;
  cursor: pointer;
}

.green-button:hover {
  background-color: #0b89a4;
  color: white;
}

.strgreen-button {
  border: #008964 solid 2px;
  background: white;
  font-family: inherit;
  font-weight: bolder;
  color: #616a6b;
}

.strgreen-button:hover {
  background-color: #008964;
  color: white;
}

.red-button {
  border: #d04116 solid 2px;
  background: white;
  font-family: inherit;
  font-weight: bolder;
  color: #616a6b;
}

.red-button:hover {
  background-color: #d04116;
  color: white;
}

.orange-button {
  border: #ec7726 solid 2px;
  cursor: pointer;
}

.orange-button:hover {
  background-color: #ec7726;
  color: white;
}

.yellow-button {
  border: #f0a14b solid 2px;
}

.yellow-button:hover {
  background-color: #f0a14b;
  color: #424949;
}

.solid-button {
  --button-color: #0b89a4; /* Un color de fallback, si la otra clase falla */
  background-color: var(--button-color);

  border: none;
  transition: 0.3s ease-in-out all;
  cursor: pointer;
  border-radius: 2rem;
  padding: 0.5em 1em 0.5em 1em;
  font-size: x-large;
  font-weight: bold;
  -webkit-box-shadow: 0px 4px 8px 1px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 4px 8px 1px rgba(0, 0, 0, 0.2);
}

.solid-button:hover {
  filter: brightness(1.3);
  transform: scale(1.05);
}

.gap-1rem {
  gap: 1rem;
}

.gap-05rem {
  gap: 0.5rem;
}

.display-flex {
  display: flex;
}

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

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

.flex-evenly {
  justify-content: space-evenly;
}

.flex-wrap {
  flex-wrap: wrap;
}

.lower-zindex {
  z-index: 999;
}

.padleft-1rem {
  padding-left: 1rem;
}

.status-ind {
  color: white;
  padding: 0.5rem 2rem;
  margin: 0;
}

.small-round-img {
  padding: 4px 6px;
  border-radius: 8px;
  height: 40px;
}

.invisible {
  transform: skew(60deg) translateY(-10rem) translateX(-5rem) scale(0);
  opacity: 0;
  transition: 0.6s cubic-bezier(0, 0, 0.38, 1) all;
  width: 0;
}

.visible {
  transform: skew(0deg) translateY(0%) translateX(0%) scale(1);
  opacity: 1;
  transition: 0.4s ease all;
}

.cont > h1 {
  padding: 0.5rem 0;
  text-align: center;
  color: white;
}

.menu-container {
  margin-top: 6px;
}

.menu-container > img {
  height: 40px;
  width: 40px;
}

.menu-container:hover .menu {
  transform: translateY(0%) translateX(0%) scale(1);
}

.menu {
  position: absolute;
  display: flex;
  max-width: 180px;
  flex-wrap: wrap;
  transform: translateY(-100%) translateX(-50%) scale(0);
  transition: 0.3s ease-in-out all;
  margin-top: 0.5rem;
}

.wolfie {
  height: 10rem;
}

.info-label-cont {
  position: relative;
}

.info-label {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.info-label img {
  height: 2.5ch;
  transition: 0.2s ease-in-out all;
  cursor: pointer;
}

.info-label-cont:hover img {
  transform: scale(1.2);
}

.label-info {
  position: absolute;
  top: -6rem;
  right: 0;
}

.label-info p {
  background-color: #424949;
  color: white;
  border-radius: 1rem;
  padding: 0.5rem;
  font-size: 0.01rem;
  opacity: 0;
  transform: scale(0);
  transition: 0.3s ease-in-out all;
  height: 0;
  width: 0;
}

.info-label-cont:hover .label-info p {
  opacity: 1;
  transform: scale(1);
  height: auto;
  width: auto;
  font-size: 0.75rem;
}

/*
DROPDOWN WITH SEARCH STYLING
*/

.fancy-selected input {
  border: none;
  background-color: transparent;
  user-select: none;
  cursor: pointer;
  -moz-user-select: none;
  -webkit-user-select: none;
}

.fancy-select input:focus,
.fancy-select input:active {
  border: none;
  outline: none;
}

.fancy-selected {
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 16px;
}

.fancy-selected-dropped {
  border-radius: 1rem;
  border: #0b89a4 solid 2px;
}

.fancy-selected img {
  height: 16px;
  user-select: none;
  transition: 0.3s ease all;
  cursor: pointer;
}

.show {
  display: none;
}

.rotate {
  transform: rotate(180deg);
}

.height40vh {
  height: 70vh;
}

.overFlowXAuto {
  overflow: auto;
}

.dropdown-content {
  max-height: 250px;
  overflow-y: auto;
  margin-top: 1rem;
  position: absolute;
  z-index: 100;
}

.dropdown-content * {
  padding: 0.5rem 1rem;
  border-radius: 1rem;
}

.dropdown-content p {
  transition: 0.3s ease all;
  cursor: pointer;
  user-select: none;
  margin: 0;
}

.dropdown-content p:hover {
  background-color: #0b88a488;
}

.dropdown-content input {
  transition: 0.3s ease;
  border: #424949 solid 2px;
}

.dropdown-content input:focus {
  border: #0b89a4 solid 2px;
}

#soulver-select {
  display: none;
}

.pagination-indicator {
  background-color: #0b89a4;
  margin: auto;
  width: auto;
  max-width: 25ch;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  padding: 0.5rem;
  align-items: center;
}

.pagination-indicator p {
  text-align: center;
  color: white;
}

.pagination-indicator img {
  cursor: pointer;
  height: 2rem;
  transition: 0.3s ease all;
}

.pagination-indicator img:first-child {
  transform: rotate(90deg);
}

.pagination-indicator img:first-child:hover {
  transform: rotate(90deg) scale(1.2);
}

.pagination-indicator img:last-child {
  transform: rotate(270deg);
  justify-self: end;
}

.pagination-indicator img:last-child:hover {
  transform: rotate(270deg) scale(1.2);
}

.home-page-menu {
  padding: 1rem 10rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.home-page-card {
  display: grid;
  grid-template-columns: 60px 1fr 60px;
  align-items: center;
  gap: 0 1rem;
  background-color: white;
  box-shadow: 0px 3px 8px 4px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 3px 8px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 3px 8px 4px rgba(0, 0, 0, 0.2);
  transition: 0.2s ease-in-out;
  padding: 0 0 0 1rem;
  cursor: pointer;
  transition: 0.3s ease-in-out all;
}

.home-page-card img {
  height: 60px;
  margin: auto;
  transition: 0.3s ease-in-out all;
}

.home-page-card .lottie-cont {
  height: 100px;
  margin: auto;
  transition: 0.3s ease-in-out all;
}

.home-page-card p {
  margin-top: 0rem;
  align-self: start;
}

.home-page-card div {
  width: 60px;
  transition: 0.25s ease-in-out all;
}

.home-page-card div {
  display: flex;
  height: 100%;
  margin: auto;
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
}

.home-page-card h3 {
  margin: 0.5rem 0;
  color: #616a6b;
}

.home-page-card:hover {
  transform: translateY(-10px);
}

dotlottie-player {
  transition: 0.3s ease-in-out all;
}

.home-page-card:hover dotlottie-player {
  transform: scale(1.3);
}

/*
 *  Scrollbar styling
 */

*::-webkit-scrollbar-track {
  border-radius: 10px;
  height: 10px;
  background-color: transparent;
  padding: 2rem 0;
  margin: 2rem 0;
}

*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  background-color: transparent;
  padding: 2rem 0;
  cursor: pointer;
}

*::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: #fc6901ad;
  padding: 2rem 0;
  cursor: pointer;
}

.animated-multi-bkg {
  background: linear-gradient(
    90deg,
    #008964,
    #0b89a4,
    #ec7726,
    #d04116,
    #a44699,
    #6a5acd
  );
  background-size: 500% 200%;

  -webkit-animation: bkg-move 15s ease infinite;
  -moz-animation: bkg-move 15s ease infinite;
  animation: bkg-move 15s ease infinite;
}

@-webkit-keyframes bkg-move {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@-moz-keyframes bkg-move {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes bkg-move {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

#org-chart {
  margin: 20px;
}

.person {
  margin: 10px 0;
  padding: 10px;
  border: 2px solid #043d499d;
}

.children {
  margin-left: 20px;
}

.icon-container {
  min-width: 30px;
  min-height: 30px;
  width: 30px;
  height: 30px;
  position: relative;
  cursor: pointer;
  background-color: white;
  margin: auto;
  border-radius: 100%;
}

.icon-line {
  position: absolute;
  margin-left: 5px;
  width: 20px;
  height: 5px;
  background-color: #ec7726;
  transition: all 0.3s ease;
}

.line1 {
  top: 30%;
  transform: translateY(-50%);
}

.line2 {
  top: 65%;
  transform: translateY(-50%);
}

.icon-container.active .line1 {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.icon-container.active .line2 {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.link-item {
  background-color: #0b89a4;
  padding: 10px 15px;
  margin: 5px;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
}

.link-item a {
  text-decoration: none;
  color: white;
  margin-right: 10px;
}

.delete-button {
  background-color: #ec7726;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
}

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

.marbot-1 {
  margin-bottom: 1em;
}

.marbot-2 {
  margin-bottom: 2em;
}

.marbot-4 {
  margin-bottom: 4em;
}

.martop-1 {
  margin-top: 1em;
}

.martop-2 {
  margin-top: 2em;
}

.marleft-1 {
  margin-left: 1em !important;
}

.marleft-4 {
  margin-left: 4em;
}

.marrigth-4 {
  margin-right: 4em;
}

.start-2 {
  grid-column-start: 2;
}

#soulverContainer,
#operationKpiContainer,
#supKpiContainer,
#hrKpiContainer {
  overflow-y: hidden;
}

#soulver-select-radio {
  overflow-y: auto;
}

.max-height-11 {
  max-height: 11em;
}

.max-height-14 {
  max-height: 14em;
}

.max-height-34 {
  max-height: 34em;
}

.max-width-30 {
  max-width: 40%;
}

.text-right {
  text-align: right;
}

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

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

.conf-btn {
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: medium;
}

.kpis-table {
  border-collapse: collapse;
  border: none;
  box-shadow: none;
  table-layout: fixed;
  width: 100%;
  display: block;
  max-height: 17em;
  overflow-y: auto;
}

.kpis-table th,
.kpis-table td {
  border: none;
  padding: 0.5rem 1rem;
  overflow: hidden;
  box-sizing: border-box;
}

.kpis-table thead {
  background-color: white;
  color: #424949;
}

.show-important {
  display: none !important;
}

#kpiIndexCont {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: auto auto 1fr;
  gap: 0.5rem;
}

#kpiIndexCont div:nth-child(1) {
  grid-row: 1 / 3;
}

#kpiIndexCont div:nth-child(2) {
  grid-column: 2 / 7;
  grid-row: 1 / 3;
}

#kpiIndexCont div:nth-child(3),
#kpiIndexCont div:nth-child(5),
#kpiIndexCont div:nth-child(7) {
  grid-column: 6 / 7;
}

#kpiIndexCont div:nth-child(4),
#kpiIndexCont div:nth-child(6) {
  grid-column: 2 / 6;
}

#kpiIndexCont div:nth-child(8) {
  grid-column: 3 / 5;
  grid-row: 3 / 4;
}

#kpiIndexCont div {
  height: auto;
}

.circular-border {
  fill: transparent;
  stroke: #00896285;
  stroke-width: 2rem;
}

.circular-progress {
  fill: transparent;
  stroke: #008962;
  stroke-width: 2rem;
  stroke-dasharray: 502.65;
  stroke-dashoffset: calc(502.65 * (1 - 1));
  rotate: -90deg;
  transform-origin: center;
}

.circular-progress-text {
  font-family: sans-serif;
  font-size: 2.5em;
  text-anchor: middle;
  dominant-baseline: central;
  fill: #008962;
}

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

.no-text-decoration {
  text-decoration: none;
}

.title-link {
  transition: 0.3s ease all;
}

.title-link:hover {
  color: #0b89a4;
  transform: scale(1.02);
  transition: 0.3s ease all;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
  /* Para Firefox */
  appearance: textfield;
  appearance: none;
}

@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }

  to {
    top: 0;
    opacity: 1;
  }
}

.hrListButtonContainer {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hrTableContainer {
  overflow: auto;
}

#confirmationModal {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

#confirmationModal .small-card {
  padding: 1rem 1rem;
}

.btn-grey {
  padding: 0.5rem;
  color: #f5f5f5;
  font-weight: 700;
  background-color: #d5d5d5;
  border-radius: 10px;
  outline: none;
  border: 0;
  cursor: pointer;
}
.btn-grey:hover {
  background-color: #878787;
}

.btn-blue {
  padding: 0.5rem;
  color: #f5f5f5;
  font-weight: 700;
  background-color: #4ac7db;
  border-radius: 10px;
  outline: none;
  border: 0;
  cursor: pointer;
}
.btn-blue:hover {
  background-color: #007289;
}

.reviewComment {
  height: 10rem;
  width: 95%;
  padding-bottom: 1rem;
  outline: none;
  border: 1px #d4d4d4 solid;
}

.hr-action-container {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}

.submit-review-button {
  height: auto;
  margin: auto;
  margin-bottom: 0;
  border-radius: 0.8rem;
  font-size: 0.5 rem;
  cursor: pointer;
  transition: ease 0.4s all;
}

