

.text-red{
    color: #D02030;
}
.ticket{
    border: solid;
    border-radius: 14px;
    border-color:#DC3545;
    background-color: white;
    height: 18em;
    border-width: 8px;
}
.ticket2{
    border: solid;
    border-radius: 14px;
    border-color: red;
    background-color: rgba(255,255,255,0.5);;
}

.closer{
    display: inline-block;
}

.evidence{
    border-radius: 15px;
    width: 180px;
    height: 150px;
}

@font-face {
    font-family: 'MyWebFont';
    src: url('resources/Futura-Bold.woff') format('woff');
  }

  .fuente{
    font-family: MyWebFont;
  }

.back-drop{
    background-color: #757679;
}

a.nav-link:link
{
   color: black;
   text-decoration: none;
}
a.nav-link:visited
{
   color: black;
   text-decoration: none;
}
a.nav-link:hover
{
   color: black;
   text-decoration: none;
}
a.nav-link:active
{
   color: black;
   text-decoration: none;
}

.text-gray{
    color:  #757679;
}
  

.select_style{
    width: 290px;
    height: 30px;
    background-color: #DC3545;
    color: white;
}

.loading_custom{
    width: 9rem; height: 9rem;
}
.loading_custom_estatus{
    width: 2rem; height: 2rem;
}


.table-border-user {
    border: 1px solid black;
    padding: 8px;
}

.row-border-user {
    border-bottom: 1px solid black;
}

.header-border-user {
    border-bottom: 2px solid black;
}
.break-word {
    word-break: break-word;
}

.form-check.form-switch {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  
.custom-switch .form-check-input {
    width: 3rem;
    height: 1.5rem;
    background-color: red; /* Cambia el color de fondo */
    border-radius: 1.5rem;
    transition: background-color 0.25s;
  }
  
  .custom-switch .form-check-input:checked {
    background-color: green; /* Cambia el color cuando estÃ¡ activado */
  }
  
  .custom-switch .form-check-input::before {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    transition: transform 0.25s;
  }
  
  .custom-switch .form-check-input:checked::before {
    transform: translateX(1.5rem);
  }