

* {
    -webkit-tap-highlight-color: transparent;
    vertical-align: middle;
    color: inherit;
    margin: 0;
    padding: 0;
    border-radius: 0px;
    box-sizing: border-box
}

.dp-none{
  display: none;
}

.dp-block{
  display: block;
}

.primary_bg{
  background-color: var(--primary);
}

.secondary_bg{
  background-color: var(--secondary);
}

.tertiary_bg{
  background-color: var(--tertiary);
}

.primary_text{
  color: var(--primary);
}

.secondary_text{
  color: var(--secondary);
}

.tertiary_text{
  color: var(--tertiary);
}


a{
  text-decoration: none;
  font-family: "Roboto", "Material Symbols Outlined";  
  font-weight: 400;
  font-size: 16px;
}


#root {
  width: 100dvw;
  height: 100dvh;
  /*opacity: 0; /* Inicialmente, el contenido está oculto */
  /*animation: fadeIn 1s ease-in-out forwards; /* Aplicar la animación de desvanecimiento */    
  /*opacity: 0;*/
  /*animation: zoom-in 0.5s forwards cubic-bezier(0.68, -0.55, 0.27, 1.55);*/
}

@keyframes zoom-in {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}


.position-relative{
  position: relative !important;
}


.outlet{
  padding: 20px;
  overflow-y:auto;  
  text-align: left;
  position: absolute;
}::-webkit-scrollbar {
  width: 15px;
}

.separator {
  margin-top: 1.1rem;
  margin-bottom: 1.1rem;
  border-top: 1px solid #e5e7eb; 
  width: 100%;
}

.separator-menu {
  margin-top: 0.3rem;
  margin-bottom: 0.3rem;
  border-top: 1px solid #e5e7eb; 
  width: 90%;
  margin-left: 5%;
}

.cosmo-animation{
  height: auto;
  width: 250px;
}

.cosmo-png{
  height: 320px;
  width: auto;
  margin: 0 auto;
}

@keyframes fadeIn { 
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }


body, html {
    min-height: 100%;    

}

body {        
    background-color: var(--primary);
    font-family: "Roboto", "Material Symbols Outlined";
    overflow-x: hidden;
    font-weight: 400;
    font-size: 1rem;
    color:#4c4e64de;
    line-height: 1.5;
    letter-spacing: 0.15px;
    text-align: center;
    -webkit-font-smoothing: antialiased;
}

i{
  font-family: "Material Symbols";
}

.cosmo-lottie{
  width: 250px;
  margin: 0 auto;
}

.is-displayed{
  display: block;
}

.is-hidden{
  display: none;
}

.is-not-visible{
  visibility: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;  
  align-items: center;
  margin-bottom: 0.5rem;
  line-height: normal;
}

.h1.small{
  font-size:3.0625rem
}
.h2.small{
  font-size:2.3125rem
}
.h3.small{
  font-size:1.75rem
}
.h4.small{
  font-size:1.5rem
}
.h5.small{
  font-size:1.25rem
}
.h6.small{
  font-size:1rem
}

.h1.large{
  font-size: 4.0625rem
}
.h2.large{
  font-size:3.3125rem
}
.h3.large{
  font-size:2.75rem
}
.h4.large{
  font-size:2.5rem
}
.h5.large{
  font-size:2.25rem
}
.h6.large{
  font-size:2rem
}

.mt-1{
  margin-top: 1rem;
}

.stylefromfather{
  color: initial;
  text-decoration: underline; 
  font-size: inherit; 
  font-weight: normal; 
}

.cursor_pointer{
  cursor: pointer;
}

hr {
  height: 1.2px;
  margin-left: 1%;
  margin-right: 1%;
  width: 98%;
  background-color: #e8e0e8;
}

article {
  box-shadow: var(--elevate1);
  background-color: var(--surface-container-low);
  color: var(--secondary);
  padding: 1rem;
  border-radius: .75rem;
  display: block;
  transition: transform .3s, border-radius .3s, padding .3s;
  display: flex;
  align-items: center !important;
  text-align: center;
  justify-content: center !important;
}

article.medium {
  block-size: 20rem;
}

article > div > svg {
    width: 80px;
}

.ShowOnMobile{
    display: none;
}

.space{
  block-size: 1rem;
}

.w100{
  width: 100%;
}

.w90{
  width: 90%;
}

.w80{
  width: 80%;
}

.w70{
  width: 70%;
}

.w60{
  width: 60%;
}

.w50{
  width: 50%;
}

.w40{
  width: 40%;
}

.w30{
  width: 30%;
}

.w20{
  width: 20%;
}

.text{  
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 24px;
  hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;    
}


/* Alineacion de texto */

.to-center{
  margin: 0 auto;
}

.content-right{
  display: flex;
  justify-content: flex-end;
}

.text-right{
  text-align: right;
}

.text-left{
  text-align: left;
}

.text-center{
  text-align: center;
}

.center-align {
  text-align: center;
  justify-content: center !important;
}

.text-justify{
  text-align: justify;
}



/* formatos de texto */

.green{
  color:#34be4d;
}

.red{
  color:#ff6240;
}

.yellow{
  color:#eab308;
}

.bg-white{
  background-color:#FFFFFF;  
}

.bg-green{
  background-color:#34be4d;
  color:#11371d;
}

.bg-red{
  background-color:#ff6240;
  color:#490909;
}

.color-neutral{
  color:var(--outline);
  font-family: 'Roboto';
}

.cursor_pointer{
  cursor: pointer;
}

.bold {
  font-weight: 700;
}

.italic {
  font-style: italic;
}

.underline {
  text-decoration: underline;
}

.overline {
  text-decoration: line-through;
}

.upper {
  text-transform: uppercase;
}

.lower {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

.large-text {
  font-size: 1rem;
}

.medium-text {
  font-size: .875rem;
}

.small-text {
    font-size: .75rem;
}

.no-white-space{  
  overflow: hidden; 
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ajust-text{
  overflow: hidden
}

.border-round{
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
  border-radius: 20px
}


.mt-5{
  margin-top: 5px;
}

.mt-10{
  margin-top: 10px;
}

.mt-20{
  margin-top: 20px;
}

.ml-5{
  margin-left: 5px;
}

.ml-10{
  margin-left: 10px;
}

.ml-20{
  margin-left: 20px;
}

.mr-5{
  margin-right: 5px;
}

.mr-10{
  margin-right: 10px;
}

.mr-15{
  margin-right: 15px;
}

.mr-20{
  margin-right: 20px;
}

.pd-8{
  padding: 8px;
}

.pd-10{
  padding: 10px;
}

.pd-20{
  padding: 20px;
}

.pd-30{
  padding: 30px;
}

.pd-t7{
  padding-top: 7px;
}

#btnmenu{
  left: 20px;
}

.iswrap{
  display: flex;
  flex-wrap: wrap;
}

[data-title]:hover:after {  
  transition: all 0.1s ease 0.5s;
  display: block;
}

[data-title]:after {
  content: attr(data-title);
  background-color: #333;
  color: #f8f9fa;
  font-family: "Roboto";
  padding: 4px 8px;
  font-size: 12px;
  line-height: 16px;
  white-space: nowrap;
  border-radius: 4px;
  left: -50%;
  position: absolute;
  bottom: -50%;  
  z-index: 99999;
  opacity: 1;
  display: none;    
}
[data-title] {
  position: relative;
}

.form-button-actions{
  width: 100%;
  margin-top: 25px;  
  display: flex;
  flex-direction: row;
  flex-wrap: wrap-reverse;
  justify-content: flex-end;
  align-items: stretch;
  align-content: flex-end;
}

.form-button-actions > .form-button {
  margin-right: 20px;
  display: inline-block;
}

.basic-card{
    background-color: #F7F2FA;
    border-radius: 16px;
    box-shadow:var(--elevate1);
    padding-top: 20px;
}

.basic-card-details{
  padding-left: 30px;
  padding-top: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: normal;
  font-family: "Roboto";
  font-size: 18px
}

.dv-programorder > div svg{
  width: 20px;
  margin-right: 15px;
}

.token-search-label {
  grid-area: select-search / search-input / select-search / search-input;
}

.token-search-input {
  background-image: url('https://fonts.gstatic.com/s/i/short-term/release/googlesymbols/search/default/24px.svg');
  background-position: 8px 6px;
  background-repeat: no-repeat;
  background-size: 24px;
  padding-left: 32px;
  padding-right: 15px;
  transition: all 0.1s ease 0s;
  border-radius: 28px;
  border: 1px solid var(--primary);
  margin-top: 2px;
  height: 36px;
  appearance: auto;
  box-sizing: border-box;
  writing-mode: horizontal-tb !important;
  width: 100%;
}

.token-search-input:focus {
  background: 0px 0px;
  padding-left: 15px;
}


.segmented-buttons {
  display: inline-flex;
  border-radius: 4px;
  overflow: hidden;  
  border-start-start-radius: 2rem !important;
  border-end-start-radius: 2rem !important;
}

.segmented-button {
  border-color:var(--primary);
  color:var(--primary);
  border: .0625rem solid var(--primary);
  background-color: transparent;  
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s, color 0.3s;
}

.segmented-button:first-child {
  border-start-start-radius: 2rem !important;
  border-end-start-radius: 2rem !important;
}

.segmented-button:last-child {
  border-start-end-radius: 2rem !important;
  border-end-end-radius: 2rem !important;
}

.segmented-button:hover {
  background-color: var(--tertiary);
}

.segmented-button:focus {
  background-color: var(--secondary);
}

.segmented-button.active {
  background-color: #007bff;
  color: #fff;
}

.segmented-button + .segmented-button {
  border-left: 1px solid #ccc;
}


.clickable-span {
  color: var(--primary);
  text-decoration: underline; 
  cursor: pointer; 
}

.clickable-span:hover {
  color:var(--tertiary);
  text-decoration: none; 
}

.clickable-span:active {
  color: var(--secondary); 
}

.blockui_table{
  width: 100%;
  height: 80vh;
  padding-top: 20vh;
}

.blockui_table span{  
  font-size: 2rem;
  color: var(--tertiary);
  font-weight: 500;
  animation: pulse 2s infinite; 
}

@keyframes pulse {
  0% {
    transform: scale(1); 
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.skeleton {
  background-color: var(--tertiary); 
  border-radius: 16px;
  border-color: var(--primary);
  padding: 5px;
  width: 100%;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.skeleton::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
  animation: loading 1.5s infinite;
}

.SemaforoEntidad{  
  font-weight: 700;  
}

.DefCom1{
  color:red;
}

.DefCom2{
  color:yellow;
}

.DefCom3{
  color:green;
}

.SemaforoEntidad > svg{
  margin-top: -4px;
  padding-right: 4px;
  width: 20px;
}

@keyframes loading {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Smartphones */
@media screen and (max-width: 767px){
  .ShowOnMobile{
    display: block;
  }
}

/* Tablets */
@media screen and (min-width:767px) and  (max-width: 1200px){
  
}

/* Desktop */
@media screen and (min-width:1200px){
  
}

/* Lotties */

.lottie-fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none; /* Esto asegura que no bloquees clics en el fondo */
  z-index: 10; /* Ajusta según el contexto del diseño */
  background: transparent;
}