@import url("../bootstrap-icons/font/bootstrap-icons.css");

#loader-content {
  height: 100vh;
  display: grid;
  place-items: center;
}

.loader {
  width: 150px;
  height: 150px;
  background-color: #ff3d00;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 30px 4px rgba(0, 0, 0, 0.5) inset, 0 5px 12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.loader:before,
.loader:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 45%;
  top: -40%;
  background-color: #fff;
  animation: wave 5s linear infinite;
}

.loader:before {
  border-radius: 30%;
  background: rgba(255, 255, 255, 0.4);
  animation: wave 5s linear infinite;
}

@keyframes wave {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.deleting {
  position: relative;
  background: #ff3d00;
  width: 80px;
  height: 30px;
  line-height: 18px;
  text-align: center;
  color: #931010;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 14px;
  box-sizing: border-box;
  border: 5px groove #de3500;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 5px 7px #0002;
}

.deleting:before {
  content: "";
  width: 70px;
  height: 80px;
  background: #fff;
  box-shadow: 0 0 10px #0003;
  position: absolute;
  left: 50%;
  transform: translatex(-50%);
  bottom: calc(100% + 6px);
  animation: loadPaper 4s ease-in infinite;
}

.deleting:after {
  content: "";
  width: 70px;
  height: 80px;
  background: linear-gradient(to right, #fff 50%, #0000 51%);
  background-size: 9px 80px;
  position: absolute;
  left: 50%;
  transform: translatex(-50%);
  top: calc(100% + 6px);
  animation: disposePaper 4s ease-in infinite;
}

@keyframes loadPaper {

  0%,
  10% {
    height: 80px;
    bottom: calc(100% + 40px);
  }

  50% {
    height: 80px;
    bottom: calc(100% + 6px);
  }

  75%,
  100% {
    height: 0px;
    bottom: calc(100% + 6px);
  }
}

@keyframes disposePaper {

  0%,
  50% {
    height: 0px;
    top: calc(100% + 6px);
  }

  75% {
    height: 80px;
    top: calc(100% + 6px);
    opacity: 1;
  }

  100% {
    height: 80px;
    top: calc(100% + 40px);
    opacity: 0;
  }
}


/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Centrar contenedor vertical y horizontalmente */


/* Estilos del contenedor */

.container-scroll p:not(:last-child) {
  margin-bottom: 1rem;
}

/* Tamaño del scroll */
.container-scroll::-webkit-scrollbar {
  width: 8px;
}

.container-scroll::-moz-scrollbar {
  width: 8px;
}

/* Estilos barra (thumb) de scroll */
.container-scroll::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.container-scroll::-moz-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.container-scroll::-webkit-scrollbar-thumb:active {
  background-color: #999999;
}

.container-scroll::-moz-scrollbar-thumb:active {
  background-color: #999999;
}

.container-scroll::-webkit-scrollbar-thumb:hover {
  background: #b3b3b3;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}

.container-scroll::-moz-scrollbar-thumb:hover {
  background: #b3b3b3;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}

/* Estilos track de scroll */
.container::-webkit-scrollbar-track {
  background: #e1e1e1;
  border-radius: 4px;
}

.container::-moz-scrollbar-track {
  background: #e1e1e1;
  border-radius: 4px;
}

.container::-webkit-scrollbar-track:hover,
.container::-webkit-scrollbar-track:active {
  background: #d4d4d4;
}

/* nav-pills */
.menu-left::-webkit-scrollbar:vertical {
  width: 10px;
}

.panel-dash::-webkit-scrollbar:vertical {
  width: 10px;
}

.menu-left::-webkit-scrollbar-button:increment,
.contenedor::-webkit-scrollbar-button {
  display: none;
}

.panel-dash::-webkit-scrollbar-button:increment,
.contenedor::-webkit-scrollbar-button {
  display: none;
}

.menu-left::-webkit-scrollbar:horizontal {
  height: 0px;
}

.panel-dash::-webkit-scrollbar:horizontal {
  height: 0px;
}

.menu-left::-webkit-scrollbar-thumb {
  background-color: #000000;
  border-radius: 20px;
  border: 2px solid #070000;
}

.panel-dash::-webkit-scrollbar-thumb {
  background-color: #000000;
  border-radius: 20px;
  border: 2px solid #070000;
}

#contentPeriods {
  max-height: 200px;
  width: 100%;
  overflow-y: scroll;
  padding: 5px;
}

.form-control::placeholder {
  color: gray;
}

.text-gray {
  color: gray;
}

.btn-hover-primary:hover {
  background: rgba(131, 188, 253, 0.3);
  color: rgba(38, 73, 230, 0.6);
}

.btn-hover-success:hover {
  background: rgba(125, 251, 203, 0.2);
  color: #10B981;
}

.btn-hover-danger:hover {
  background: rgba(253, 131, 157, 0.3);
  color: rgba(211, 2, 2, 0.6);
}

.subrayar {
  animation: subrayar 10s;
}

@keyframes subrayar {
  0% {
    background: #99F6E4;
  }

  50% {
    background: #99F6E4;
  }

  100% {
    background: transparent;
  }
}

@media(max-width: 40em) {
  .menu-left {
    display: none;
  }

  .btn-menu {
    display: none;
  }

  .btnMenuOfcanvas {
    width: 30px;
    height: 30px;
    font-size: 15px;
    border: 1px solid black;
    background: white;
  }
}

@media(min-width: 40em) {
  .move-left {
    margin-left: 400px;
    z-index: 100;
  }

  .btnX {
    display: none;
  }
}

.bg-danger-light {
  background: rgba(255, 183, 141, 0.2);
}

.bg-primary-light {
  background: rgba(174, 223, 255, 0.2);
}

.bg-primary-success {
  background: rgba(174, 255, 198, 0.2);
}

.bg-opacity-15 {
  --bs-bg-opacity: 0.15;
}

.bg-yellow {
  background: #FACC2E;
}

.alert-yellow {
  background: #fff8e3;
  border: 1px solid #fff4b8;
}

.text-yellow {
  color: #FACC2E;
}

.rounded-5 {
  border-radius: 10px;
}

.rounded-10 {
  border-radius: 25px;
}

.bg-gray {
  background: #F5F5F5;
}

.le-2 {
  letter-spacing: 1px;
}

.hover-logo:hover {
  color: rgba(174, 223, 255, 0.2);
}

.form-control:focus {
  box-shadow: 10px 0px 10px solid #78716C;
}

.move-left {
  position: absolute;
  z-index: 100;
  margin-left: -400px;
  transition: all .5s;
}

.col-lg-12,
.col-md-12 {
  transition: all .5s;
}

iframe[seamless] {
  border: none;
}

.suspendido {
  border-left: 5px solid #E11D48;
}

.activo {
  border-left: 5px solid #10B981;
}

.autorizacion {
  border-left: 5px solid #F97316;
}

.negociacion {
  border-left: 5px solid #06B6D4;
}

.baja {
  border-left: 5px solid #6B7280;
}

.nuevo {
  border-left: 5px solid #6366F1;
}

.cliente-suspendido {
  color: #E11D48;
}

.cliente-activo {
  color: #10B981;
}

.cliente-autorizacion {
  color: #F97316;
}

.cliente-negociacion {
  color: #06B6D4;
}

.cliente-baja {
  color: #6B7280;
}

.cliente-total {
  color: #5706b4;
}

.progress-card-suspendido {
  background: #E11D48;
}

.progress-card-clientes {
  background: #5706b4;
}

.progress-card-activo {
  background: #10B981;
}

.progress-card-autorizacion {
  background: #F97316;
}

.progress-card-negociacion {
  background: #06B6D4;
}

.progress-card-baja {
  background: #6B7280;
}

.fs-7 {
  font-size: 18px;
}

.bg-danger-message {
  background: #FEE2E2;
  color: #e7093a;
  font-size: 12px;
}

.bg-primary-light {
  background: #0EA5E9;
}

.bg-success-light {
  background: #22C55E;
}

.bg-autorizacion-opacity {
  background: #FEF3C7;
  opacity: 0.9;
  color: #e1751d;
}

.bg-negociacion-opacity {
  background: #CFFAFE;
  opacity: 0.9;
  color: #1da3e1;
}

.bg-baja-opacity {
  background: #F5F5F4;
  opacity: 0.9;
  color: #979797;
}

.bg-activo-opacity {
  background: #DCFCE7;
  opacity: 0.9;
  color: #1de1c0;
}

.bg-clientes-opacity {
  background: #DDD6FE;
  opacity: 0.9;
  color: #891de1;
}

.bg-suspendido-opacity {
  background: #FFE4E6;
  opacity: 0.9;
  color: #e12a1d;
}

.bg-info-opacity {
  background: #E0F2FE;
  opacity: 0.9;
}

.hover-yellow {
  cursor: pointer;
  transition: all 0.5s;
}

.hover-yellow:hover {
  background: #fffdeb;
  color: #A16207;
  cursor: pointer;
  transition: all 0.5s;
}

.negociacion-hover:hover {
  background: #E0F2FE;
  color: #0891B2;
}

.autorizacion-hover:hover {
  background: #FEF3C7;
  color: #EA580C;
}

.todos-hover:hover {
  background: #C7D2FE;
  color: #7C3AED;
}

.activo-hover:hover {
  background: #DCFCE7;
  color: #059669;
}

.baja-hover:hover {
  background: #F5F5F4;
  color: #525252;
}

.suspendido-hover:hover {
  background: #FFE4E6;
  color: #DC2626;
}

.nuevo-hover:hover {
  background: #C7D2FE;
  color: #6366F1;
}

.head-suspendido {
  background: #DC2626;
  color: #FFF1F2;
}

.head-activo {
  background: #059669;
  color: #ffffff;
}

.head-negociacion {
  background: #0891B2;
  color: #FFF1F2;
}

.head-autorizacion {
  background: #F97316;
  color: #FFF1F2;
}

.head-baja {
  background: #525252;
  color: #FFF1F2;
}

.head-clientes {
  background: #2563EB;
  color: #FFF1F2;
}

.rounded-left {
  border-radius: 20px 0px 0px 20px;
}

.rounded-right {
  border-radius: 0px 20px 20px 0px;
}

.form-control::placeholder {
  color: #646464;
}

.nice-form::placeholder {
  color: #a7a7a7;
  font-size: 14px;
}

.nice-form {
  outline: none;
  color: #333333;
  font-size: 14px;
  padding-block: 8px;
  background-color: #fff;
  border: 1px solid #ced4da;
  color: #333333;
}

.border-end-dark {
  border-right: 1px solid black;
}

/* Estilos para motores Webkit y blink (Chrome, Safari, Opera... )*/
#contentWish::-webkit-scrollbar {
  -webkit-appearance: none;
}

#contentWish::-webkit-scrollbar:vertical {
  min-width: 12px;
  min-height: 20vh;
  max-width: 12px;
  max-height: 20vh;
}

#contentWish::-webkit-scrollbar-button:increment,
#contentWish::-webkit-scrollbar-button {
  display: none;
}

#contentWish::-webkit-scrollbar:horizontal {
  height: 10px;
}

#contentWish::-webkit-scrollbar-thumb {
  background-color: #242424;
  border-radius: 20px;
  border: 2px solid #f1f2f3;
}

#contentWish::-webkit-scrollbar-track {
  border-radius: 10px;
}

.input-warning {
  border: 1px solid #FB923C;
  box-shadow: 0px 0px 2px solid #FDBA74;
}

.input-danger {
  border: 1px solid #fb3c6c;
  box-shadow: inset 0px 0px 2px solid #fd747f;
}

.input-success {
  border: 1px solid #3cfbab;
  box-shadow: 0px 0px 2px solid #74fda2;
}

.rounded-left-pill {
  border-radius: 25px 0px 0px 25px;
}

.rounded-right-pill {
  border-radius: 0px 25px 25px 0px;
}

.yellow {
  color: #5e5434;
  border-left: 5px solid #FCD34D;
}

.yellow:hover {
  background-color: #FEFCE8;
}

.btn-purple {
  background: #5706b4;
}

.letter-1 {
  letter-spacing: 1px;
}

.letter-2 {
  letter-spacing: 2px;
}

.letter-3 {
  letter-spacing: 3px;
}

.bg-light-pink {
  background: #F9A8D4;
  color: #EC4899;
  border: 1px solid #EC4899;
  box-shadow: 0px 3px 0px #EC4899;
}

.bg-green-fosfore {
  text-decoration: none;
  background-color: #A3E635;
  border: 1px solid #84CC16;
  color: #4D7C0F;
  box-shadow: 0px 5px 0px #84CC16;
}

.bg-disable-card {
  text-decoration: none;
  background-color: #E2E8F0;
  border: 1px solid #64748B;
  color: #64748B;
  box-shadow: 0px 5px 0px #64748B;
}

.bg-light-cofe {
  background: #57534E;
  color: #dadada;
  border: 1px solid #292524;
  box-shadow: 0px 3px 0px #292524;
}

.bg-light-dark {
  background: #4e4e4e;
  color: #ffffff;
  border: 1px solid #181717;
  box-shadow: 0px 3px 0px #000000;
}

.bg-light-skyblue {
  background: #99F6E4;
  color: #14B8A6;
  border: 1px solid #14B8A6;
  box-shadow: 0px 3px 0px #14B8A6;
}

.bg-light-success {
  background: #a5ffc9;
  color: #10B981;
  border: 1px solid #10B981;
  box-shadow: 0px 3px 0px #10B981;
}

.bg-light-light {
  background: #ffffff;
  color: #7a7a7a;
  border: 1px solid #b3b3b3;
  box-shadow: 0px 3px 0px #b3b3b3;
}

.bg-light-danger {
  background: #ffc7cd;
  color: #F87171;
  border: 1px solid #F87171;
  box-shadow: 0px 3px 0px #F87171;
}

.bg-light-secondary {
  background: #D4D4D8;
  color: #6B7280;
  border: 1px solid #6B7280;
  box-shadow: 0px 3px 0px #6B7280;
}

.bg-light-orange {
  background: #FFEDD5;
  color: #FB923C;
  border: 1px solid #FB923C;
  box-shadow: 0px 3px 0px #fb8d34;
}

.bg-light-purple {
  background: #d3caff;
  color: #818CF8;
  border: 1px solid #818CF8;
  box-shadow: 0px 3px 0px #818CF8;
}

.bg-light-info {
  background: #ECFEFF;
  color: #06B6D4;
  border: 1px solid #06B6D4;
  box-shadow: 0px 3px 0px #06B6D4;
}

.bg-light-primary {
  background-color: #4d6eda;
  color: #c0dbff;
  border: 1px solid #2550dd;
  box-shadow: 0px 3px 0px #1a3ba9;
}

.bg-light-green {
  background-color: #059669;
  color: #d4fffb;
  border: 1px solid #035d40;
  box-shadow: 0px 3px 0px #026243;
}

.bg-light-warning {
  background-color: rgb(255, 237, 199);
  border: 1px solid #ffa200;
  box-shadow: 0px 2px 0px #d38600;
  color: #dd8c00;
}

.text-green {
  color: #10B981;
}

.text-danger {
  color: #F87171;
}

.text-gray {
  color: #6B7280;
}

.text-orange {
  color: #FB923C;
}

.text-purple {
  color: #7481fc;
}

.text-info {
  color: #079db8;
}

.text-warning {
  color: #9c6b00;
}

.border-light-gray {
  border: 1px solid rgba(98, 98, 98, 0.10);
}

.bg-green {
  background: #34D399;
}

.bg-orange {
  background-color: #FB923C;
}

.bg-darkgray {
  background-color: #334155;
}

.bg-red {
  background: #EF4444;
}

.height-0 {
  overflow: hidden;
  height: 0px;
  border: 1px solid white;
  transition: all 0.2s;
}

.height-100 {
  overflow: hidden;
  height: 100%;
  border: 1px solid white;
  transition: all 0.2s;
}

[data-title]:hover:after {
  opacity: 1;
  transition: all 0.1s ease 0.5s;
  visibility: visible;
  z-index: 99999;
}

[data-title]:after {
  content: attr(data-title);
  background-color: #303030;
  color: #fff;
  font-size: 12px;
  width: 250px;
  position: absolute;
  padding: 3px 5px;
  font-weight: normal;
  left: 100%;
  white-space: wrap;
  box-shadow: 1px 1px 3px #222222;
  opacity: 0;
  border: 2px solid #333;
  z-index: 99999;
  visibility: hidden;
  border-radius: 5px;
}

[data-title] {
  position: relative;
}

.toast-container {
  z-index: 1060;
}

thead {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: #ffffff;
}

.table-responsive {
  max-height: 65vh;
  min-height: 30vh;
}

.load {
  cursor: wait;
}

#textMessage {
  width: 300px;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bg-nuevos {
  background: #818CF8;
}

.bg-autorizados {
  background: #059669;
}

.bg-suspendidos {
  background: red;
}

.bg-bajas {
  background: gray;
}

.bg-negociacion {
  background: skyblue;
}

.bg-autorizacion {
  background: orange;
}

.bg-instalacion {
  background: yellowgreen;
}

.btn-hide-hover {
  display: none;
}

.btn-hide-hover:hover {
  display: block;
}

.bg-gradient-dark {
  background: rgb(2, 0, 36);
  background: linear-gradient(135deg, rgba(2, 0, 36, 1) 0%, rgba(71, 27, 55, 1) 100%, rgba(0, 212, 255, 1) 100%);
}

.shadow-light {
  box-shadow: rgba(149, 157, 165, 0.1) 0px 8px 24px;
}

@keyframes rotate {
  0% {
    color: #1b1b1b;
  }

  50% {
    color: #bec1c5;
  }

  100% {
    color: #252525;
  }
}

.border-active {
  border-bottom: 3px solid #059669;
}

.bi-hourglass-split {
  animation: rotate 2s;
  animation-iteration-count: infinite;
}

.bg-dark-success {
  background: linear-gradient(90deg, #0F766E, #0b1110);
}

.bg-dark-primary {
  background: linear-gradient(90deg, #1E40AF, #031141);
}

.bg-dark-danger {
  background: #881337;
}

.bg-dark-warning {
  background: linear-gradient(-180deg, #F59E0B, #fbb740);
}

.load-cursor {
  cursor: wait;
}

.load-cursor:hover {
  cursor: wait;
}

.alert-message-success {
  border: 1px solid #22C55E;
  background-color: #BBF7D0;
  color: #059669;
  margin-block: 10px;
  padding-block: 15px 0px;

  >.message-title {
    font-size: 14px;
    font-family: inter-bold;
    padding-inline: 20px;
    margin-block: 0px;
  }

  .message-details {
    padding-inline: 20px;
    font-family: manrope-regular;
    font-size: 14px;
  }
}

.alert-message-danger {
  border: 1px solid red;
  background-color: rgba(255, 173, 173, 0.15);
  color: #ff3d00;
  margin-block: 10px;
  padding-block: 15px 0px;

  >.message-title {
    font-size: 14px;
    font-family: inter-bold;
    padding-inline: 20px;
    margin-block: 0px;
  }

  .message-details {
    padding-inline: 20px;
    font-family: manrope-regular;
    font-size: 14px;
  }
}

.input-invalid {
  border: none;
  outline: none;
  background-color: #FEF2F2;
  border: 1px solid #FB7185;
  color: #FB7185;
}

.input-invalid:active {
  border: none;
  outline: none;
  background-color: #FEF2F2;
  border: 1px solid #FB7185;
  color: #FB7185;

}

.input-invalid:focus {
  border: none;
  outline: none;
  color: #FB7185;
  background-color: #FEF2F2;
  border: 1px solid #FB7185;
}

iframe>html>body>img {
  width: 100px;
  height: 100px;
}

.btn-light {
  box-shadow: none;
  border: 1px solid #d3d3d5;
  box-shadow: 0px 4px 0px #d0d0d0;
}

.btn-light:focus {
  border: 1px solid #d3d3d5;
  box-shadow: 0px 4px 0px #d0d0d0;
}

.btn-primary {
  box-shadow: none;
  border: 1px solid #1a3ba9;
  box-shadow: 0px 4px 0px #1a3ba9;
}

.btn-primary:focus {
  border: 1px solid #1a3ba9;
  box-shadow: 0px 4px 0px #1a3ba9;
}

.btn-secondary:hover {
  border: 1px solid #d3d3d5;
  box-shadow: 0px 4px 0px #d0d0d0;
}

.btn-secondary {
  border: 1px solid #555555;
  box-shadow: 0px 4px 0px #555555;
}

.btn-success {
  border: 1px solid #10421c;
  box-shadow: 0px 4px 0px #144b21;
}

.btn-danger {
  border: 1px solid #c22d2d;
  box-shadow: 0px 4px 0px #c93535;
}

.btn-info {
  color: white;
  border: 1px solid #0E7490;
  box-shadow: 0px 4px 0px #0E7490;
}

.cursor-wait {
  cursor: progress;
}

/* HTML: <div class="loader"></div> */
.loader2 {
  width: fit-content;
  font-weight: bold;
  font-family: inter-bold;
  font-size: 25px;
  color: #0000;
  background: linear-gradient(90deg, #000 25%, #8A9B0F 0 50%, #C02942 0 75%, #00A0B0 0) 0 0/400% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: l10 5s infinite cubic-bezier(0.3, 1, 0, 1);
}

.loader2:before {
  content: "Cargando..."
}

@keyframes l10 {
  25% {
    background-position: calc(1*100%/3) 0
  }

  50% {
    background-position: calc(2*100%/3) 0
  }

  75% {
    background-position: calc(3*100%/3) 0
  }

  100% {
    background-position: calc(4*100%/3) 0
  }
}

.loader-2 {
  color: #fff;
  font-size: 10px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  text-indent: -9999em;
  animation: mulShdSpin 1.3s infinite linear;
  transform: translateZ(0);
}

@keyframes mulShdSpin {

  0%,
  100% {
    box-shadow: 0 -3em 0 0.2em,
      2em -2em 0 0em, 3em 0 0 -1em,
      2em 2em 0 -1em, 0 3em 0 -1em,
      -2em 2em 0 -1em, -3em 0 0 -1em,
      -2em -2em 0 0;
  }

  12.5% {
    box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em,
      3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em,
      -2em 2em 0 -1em, -3em 0 0 -1em,
      -2em -2em 0 -1em;
  }

  25% {
    box-shadow: 0 -3em 0 -0.5em,
      2em -2em 0 0, 3em 0 0 0.2em,
      2em 2em 0 0, 0 3em 0 -1em,
      -2em 2em 0 -1em, -3em 0 0 -1em,
      -2em -2em 0 -1em;
  }

  37.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em,
      3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em,
      -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }

  50% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em,
      3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em,
      -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }

  62.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em,
      3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0,
      -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
  }

  75% {
    box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em,
      3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em,
      -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
  }

  87.5% {
    box-shadow: 0em -3em 0 0, 2em -2em 0 -1em,
      3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em,
      -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
  }
}

tr:hover {
  background-color: #f7f5f5;
  color: #4d6c72;
}

.link-dark:target>.bi {
  transform: rotate(120deg);
}



.floating-label {
  position: relative;
}

.floating-label>input {
  display: block;
}

.floating-label>input:focus {
  outline: none;
}

.floating-label>label {
  color: #999;
  font-size: 14px;
  padding-inline: 10px;
  font-family: inter-regular;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 10px;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}

.floating-label>input:focus~label,
.floating-label>input:valid~label {
  top: -10px;
  font-size: 12px;
  padding-inline: 10px;
  font-family: inter-medium;
  color: #0d0d0e;
  background-color: white;
}

.floating-label>.bar:before,
.floating-label>.bar:after {
  content: '';
  height: 2px;
  width: 0;
  bottom: 1px;
  position: absolute;
  background: #4285f4;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}

.floating-label>input:focus~.highlight {
  -webkit-animation: inputHighlighter 0.3s ease;
  -moz-animation: inputHighlighter 0.3s ease;
  animation: inputHighlighter 0.3s ease;
}

/* animations */
@-webkit-keyframes inputHighlighter {
  from {
    background: #4285f4;
  }

  to {
    width: 0;
    background: transparent;
  }
}

@-moz-keyframes inputHighlighter {
  from {
    background: #4285f4;
  }

  to {
    width: 0;
    background: transparent;
  }
}

@keyframes inputHighlighter {
  from {
    background: #4285f4;
  }

  to {
    width: 0;
    background: transparent;
  }
}


.selectIMG {
  width: 200px;
  height: 200px;
  border: 5px solid #F8FAFC;
  border-radius: 50%;
  display: grid;
  place-content: center;

  >.icon {
    display: none;
  }
}

.selectIMG:hover {
  width: 200px;
  height: 200px;
  border: 5px solid #F8FAFC;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);

  >img {
    display: none;
  }

  >.icon {
    display: block;
  }
}

@keyframes loading {
  0% {
    background-color: #00ffc2;
  }

  100% {
    background-color: #48c170;
  }
}

.progress-load {
  animation: loading 2s;
  animation-iteration-count: infinite;
}

.hover-text-underline:hover {
  text-decoration: underline;
}

.capitalize {
  text-transform: capitalize;
}