section[aria-hidden="true"],main[aria-hidden="true"] { 
    display: none !important;
    visibility: hidden; 
}
.u-hidden{
  display: none !important;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Para Firefox (en versiones anteriores era necesario -moz-appearance) */
input[type=number] {
  -moz-appearance: textfield;
}

/* Asegurar apariencia consistente */
input[type=number] {
  appearance: textfield;
}
.global-login{
  opacity:0;
  animation: globalloginhidden 1000ms linear 1;
  animation-fill-mode: forwards; /* Mantiene el último estado de la animación */
  
}
@keyframes globalloginhidden {
0% {
    opacity: 0;
}
60% {
    opacity: 0.1;
}
100% {
    opacity: 1;
}
}
.imgESLOGO{
  text-align: center;
  /* width:100%; */
  max-height:20px;
}
.is-busy {
  position: relative;
  color: transparent !important;
  cursor: progress;
  pointer-events: none;
  user-select: none;
}

.is-busy::after {
  content: "" !important;
  position:absolute;
  top: 5px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20px' height='20px' viewBox='0 0 100 100' preserveAspectRatio='xMidYMid'%3E%3Ccircle xmlns='http://www.w3.org/2000/svg' cx='50' cy='50' fill='none' stroke='%23ffffff' stroke-width='10' r='35' stroke-dasharray='164.93361431346415 56.97787143782138' transform='rotate%28276 50 50%29'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  animation: btn-action-busy 500ms linear infinite;
}

/* - MODULE STATE - */
.error_reconectandoFLOTANTE {
  position: fixed;
  z-index: 99999999999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 1;
}
.module-state {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.module-state__title {
  font-size: 130pt;
  opacity: 0.4;
  transform: rotate(90deg);
}

.module-state__description {
  font-size: 13pt;
  opacity: 0.4;
}

.module-spinner {
  display: flex;
  /** Avoid animation flickering */
  transform: translate3d(0, 0, 0);
  user-select: none;
}

.module-state > .module-spinner,
.module-state.is-errored > .module-spinner + span {
  /**
   * Move the spinner left
   * the width of the sidebar.
   */
  transform: translateX(-40px) translate3d(0, 0, 0);
}

.module-spinner > div {
  display: inline-flex;
  width: 1rem;
  height: 1rem;
  margin: 3rem 0.3rem;
  background: var(--brand-color);
  border-radius: 50%;
  /** Avoid animation flickering */
  transform: translate3d(0, 0, 0);
  animation: module-spinner 0.6s ease infinite alternate;
}

.module-spinner > div:nth-child(2) {
  animation-delay: 0.2s;
}

.module-spinner > div:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes module-spinner {
  from {
      opacity: 1;
      transform: translateY(0);
  }
  to {
      opacity: 0.1;
      transform: translateY(-1rem);
  }
}

.module-spinner--small > div {
  width: 0.7rem;
  height: 0.7rem;
}

.module-spinner--white > div {
  background: var(--white-color);
}

/*
 * === VARIABLES ===
 */
/*
 * === VARIABLES ===
 */
 :root {
  --brand-color: #0081e0;
  --touraccent-color: #1a1a1c;
  --accent-color: #141415;
  --text-color: #000000;
  --text-colorcalendar: #0d0e0e;
  --whitepaboton-color: #ffffff;
  --white-color: #ffffff;
  --red-color: #ff1903;
  --error-color: #e53935;
  --success-color: #43a047;
  --dark-color: #9B9B9B;
  --darkworkflowslinea-color: #9B9B9B;  
  --blue-color: #3F81DE;
  --module-color: #f4f8f9;
  --border-color:rgba(0, 75, 236, 0.05);
  --module-accent-color: #eff3f4;
  --input-color:#FBFCFF;
  --hover-color:#f2f9ff;
  --fondodestaca-color:#f2f9ff;
  --fondoresaltado-color:#FAFDFF;
  --scrolldark-color: rgba(0,0,0,0.1);
  --scrolldark2-color: rgba(0,0,0,0.2);
  --botonmastabla-gradient: linear-gradient(to right,rgba(232,243,250,0) 0,rgba(232,243,250,1) 100%);
  
  --brand-gradient: linear-gradient(to bottom, #2eafff 0%,rgba(0, 129, 224, .2) 100%);
  --accent-gradient: linear-gradient(to bottom, #7b8393 0%,var(--accent-color) 100%);
  --success-gradient: linear-gradient(to bottom, #ffffff 50%,rgba(67, 160, 71, .2) 100%);
  --error-gradient: linear-gradient(to bottom, #ffffff 50%,rgba(229, 57, 53, .2) 100%);
  --yellow-gradient: linear-gradient(to bottom, #ffffff 50%,rgba(253, 209, 13, .2) 100%);

  --font-size-05: 11px;
  --font-size-1: 13px;
  --font-size-2: 14px;
  --font-size-3: 15px;
  --font-size-4: 17px;
  --font-size-5: 18px;
  --font-size-6: 21px;
  --font-size-7: 24px;

  --spacing-05: 0.5rem;
  --spacing-1: 1rem;
  --spacing-2: 1.5rem;
  --spacing-3: 2rem;
  --spacing-4: 2.5rem;
  --spacing-5: 3rem;
  --spacing-6: 3.5rem;
  --spacing-7: 4rem;
  
  --zIndex-1: 100;
  --zIndex-2: 200;
  --zIndex-3: 300;
  --zIndex-4: 400;
  --zIndex-5: 500;
}

/*
 * === VARIABLES ===
 */

.global-login {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 20px !important;
    text-align: center;
  }
  
  .global-login[aria-hidden="false"] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .global-login__inner {
    position: relative;
    text-align: center;
  }
  
  .global-login__content {
    position: relative;
    display: inline-block;
    flex-direction: column;
    width: 25rem;
    padding: 1.25rem;
    padding-top: 2rem;
    margin-top: 0rem;
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 5%);
    background: var(--white-color);
  }
  
  .global-login__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: var(--spacing-2);
  }
  
  .global-login__brand-link {
    position: relative;
    width: 340px;
    height: 75px;
  }
  
  .global-login__brand-image > img {
    width: 100%;
    height: 100%;
    vertical-align: middle;
  }
  
  .global-login__brand-badge {
    position: absolute;
    top: -10px;
    right: 0;
    font-size: 8px;
    font-weight: 800;
    line-height: 15px;
    letter-spacing: 1px;
    color: var(--white-color);
    background: var(--accent-color);
    padding: 1px 5px 0;
    border-radius: 3px;
    text-transform: uppercase;
  }
  
  .global-login__description {
    display: block;
    margin-top: var(--spacing-1);
    font-size: var(--font-size-3);
    line-height: 20px;
    text-align: center;
  }
  
  
  .global-login__form {
    display: flex;
    flex-direction: column;
  }
  
  .global-login__form-message {
    position: absolute;
    top: 0;
    right: -1px;
    font-size: var(--font-size-1);
    line-height: 21px;
    padding: 0 var(--spacing-05);
    color: var(--white-color);
    background: var(--error-color);
    border-radius: 3px;
    border-bottom-right-radius: 0;
    visibility: hidden;
  }
  
  .global-login__form-control {
    position: relative;
    display: block;
    margin-bottom: var(--spacing-1);
  }
  
  .global-login__form-control label {
    text-transform: uppercase;
    color: #7f858d;
    font-size: var(--font-size-05);
    font-weight: 500;
    display: block;
    letter-spacing: 0.03rem;
    margin-bottom: 8px;
  }
  
  .global-login__form-control input {
    font-size: 1rem;
    background: var(--input-color) !important;  
    border: 1px solid var(--border-color) !important;box-shadow:0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border-radius: 2px;
    padding: 12px 10px;
    width: 100%;
  }
  
  .global-login__form-control input:focus {
    border: 1px solid var(--brand-color);
    box-shadow: 0 0 0 1px var(--brand-color);
    outline: none;
  }
  
  .global-login__form-control.is-errored input {
    border: 1px solid var(--error-color) !important;
    box-shadow: 0 0 0 1px var(--error-color) !important;
  }
  
  .global-login__form-control.is-errored .global-login__form-message {
    visibility: visible;
  }
  
  .global-login__form-control .control--checkbox,
  .global-login__form-control .control--checkbox + label {
    display: inline-block;
    vertical-align: middle;
    user-select: none;
  }
  
  .global-login__form-control .control--checkbox {
    margin-right: 5px;
  }
  
  .global-login__form-control .control--checkbox .control__indicator {
    background: #f7f7f7;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.2);
  }
  
  .global-login__form-control .control--checkbox input:checked + .control__indicator {
    box-shadow: 0 0 0 1px var(--brand-color);
  }
  
  .global-login__form-actions {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin:5px 0;
  }
  
  .global-login__form-actions .btn {
    font-size: var(--font-size-2);
    height: 100%;
    margin: 0;
    line-height: 20px;
    color: var(--brand-color);
    background: var(--white-color);
    border-color: var(--brand-color);
  }
  
  .global-login__form-actions .btn:hover,
  .global-login__form-actions .btn:focus {
    color: var(--white-color);
    background: var(--brand-color);
    border-color: var(--brand-color);
  }
  
  .global-login .btn--login > .btn__icon {
    position: relative;
    display: inline-block;
    width: 17px;
    height: 17px;
    vertical-align: middle;
    margin-top: -4px;

    transform: translateX(0px);
    transition: transform 0.2s cubic-bezier(0.1, 0.82, 0.25, 1);
  }
  
  .global-login .btn--login:hover > .btn__icon {
    transform: translateX(4px);
  }
  
  .global-login .btn--login > .btn__text {
    font-size:14px;
  }
  
  
  .global-login__footer {
    position: absolute;
    left: 0;
    width: 100%;
    font-size: var(--font-size-1);
    padding: var(--spacing-1);
    text-align: center;
  }
  
  .global-login__footer-link {
    color: var(--brand-color);
  }
  
  .global-login__footer-link:hover {
    text-decoration: underline;
  }
  
  .global-login__footer-link:not(:first-child)::before {
    content: "";
    position: relative;
    display: inline-block;
    width: 2px;
    height: 2px;
    line-height: 10px;
    margin: 0 var(--spacing-05);
    background: var(--accent-color);
    border-radius: 50%;
    vertical-align: middle;
  }
  .global-login__form-control.is-errored input {
    border: 1px solid var(--error-color) !important;
    box-shadow: 0 0 0 1px var(--error-color) !important;
}

.global-login__form-control.is-errored .global-login__form-message {
    visibility: visible;
}
.marcnowrap{
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow:hidden;
}
.marcnowrap2{
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
max-height: 40px;
}
.marcnowrap3{
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 30px;
  }