/* Estilos generales */
.sil-text-center {
    text-align: center;
}

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

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

.sil-align-middle {
    vertical-align: middle !important;
}

.sil-justify-content-end {
    justify-content: flex-end;
}

.sil-align-x-middle {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sil-align-y-middle {
    display: flex;
    align-items: center;
}

.sil-decoration-none {
    text-decoration: none
}

a.sil-decoration-none-link:hover,
a.sil-decoration-none-link:focus,
a.sil-decoration-none-link:active {
  text-decoration: none;
}

.sil-overflow-hidden {
    overflow: hidden;
}

.sil-overflow-x-hidden {
    overflow-x: hidden;
}

.sil-overflow-y {
    overflow-y: auto;
}


.sil-resize-none {
    resize: none;
}

/* Estilos para los textarea */
.sil-textarea {
    height: 125px !important;
    resize: none;
    width: 100% !important;
}

/* Estilos para los display */
.sil-d-none {
    display: none;
}

.sil-d-inline-block {
    display: inline-block;
}

/* Estilos para los display */
.sil-float-left {
    float: left;
}

.sil-float-right {
    float: right;
}

/* Estilos para los cursores */
.sil-pointer {
    cursor: pointer;
}

.sil-default {
    cursor: default;
}

/* Estilos para las fuentes */
/* TAMAÑOS */
.sil-font-size-14px {
    font-size: 14px;
}

.sil-font-size-18px {
    font-size: 18px;
}

.sil-font-size-80pc {
    font-size: 80%;
}

.sil-font-size-85pc {
    font-size: 85%;
}

.sil-font-size-120pc {
    font-size: 120%;
}

.sil-font-size-125pc {
    font-size: 125%;
}

.sil-font-size-140pc {
    font-size: 140%;
}

.sil-font-size-150pc {
    font-size: 150%;
}

/* GROSOR */
.sil-normal {
    font-weight: normal;
}

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

/* Estilos para la altura */
.sil-h-inherit {
    height: inherit;
}

.sil-h-34px {
    height: 34px;
}

.sil-h-40px {
    height: 40px;
}

.sil-h-46px {
    height: 46px;
}

.sil-h-70px {
    height: 70px !important;
}

.sil-h-75px {
    height: 75px;
}

.sil-h-100px {
    height: 100px;
}

.sil-h-150px {
    height: 150px;
}

.sil-h-215px {
    height: 215px !important;
}

.sil-h-245px {
    height: 245px !important;
}

.sil-h-300px {
    height: 300px;
}

.sil-h-70vh {
    height: 70vh;
}

.sil-h-75vh {
    height: 75vh;
}

/* Estilos para los altos maximos de pantalla */
.sil-max-h-400px {
    max-height: 400px;
}

.sil-max-h-500px {
    max-height: 500px;
}

/* Estilos para el ancho */
.sil-w-25px {
    width: 25px;
}

.sil-w-50px {
    width: 50px;
}

.sil-w-100 {
    width: 100% !important;
}

.sil-w-100px {
    width: 100px;
}

.sil-w-200px {
    width: 200px;
}

.sil-w-250px {
    width: 250px !important;
}

.sil-w-300px {
    width: 300px;
}

.sil-w-450px {
    width: 450px;
}

.sil-w-60pc {
    width: 60%;
}

.sil-w-70pc {
    width: 70%;
}

.sil-w-80pc {
    width: 80%;
}

.sil-w-full {
    width: 100% !important;
}

/* Estilos para los anchos minimos y maximos de pantalla */
.sil-min-w-full {
    min-width: 100%;
}

.sil-max-w-500px {
    max-width: 500px;
}

.sil-max-w-70pc {
    max-width: 70%;
}

.sil-max-w-full {
    max-width: 100%;
}

/* Estilos para los colores */
.sil-color-darkred {
    color: darkred;
}

.sil-color-333 {
    color: #333333;
}

.sil-color-fff {
    color: #ffffff;
}

.sil-background-color-333 {
    background-color: #333333;
    color: #ffffff;
}

.sil-background-color-fff {
    background-color: #ffffff;
}

.sil-background-color-2b3136 {
    background-color: #2b3136;
}
.sil-background-color-f5f5f5 {
    background-color: #f5f5f5;
}

.sil-background-color-777 {
    background-color: #777777;
    border-color: #777777;
}

.sil-background-color-777:hover {
    background-color: #999999;
}

/* Estilos para los border */
.sil-border-0px {
    border: 0px;
}

.sil-border-1px-solid-ccc {
    border: 1px solid #cccccc;
}

.sil-border-radius-ccc {
    border: 1px solid #cccccc;
    border-radius: 4px !important;
}

/* Estilos para los border top */
.sil-border-top-1px-solid-blk {
    border-top: 1px solid black;
}

.sil-border-top-2px-solid-ccc {
    border-top: 2px solid #cccccc;
}
 
/* Estilos para el background */
.sil-bg-fff {
    background: #ffffff;
}

.sil-bg-b8c1b5 {
    background: #b8c1b5;
}

.sil-bg-aliceblue {
    background: aliceblue;
}

.sil-py-10 {
	padding-bottom: 10 !important;
	padding-top: 10 !important;
}

/* Estilos para los padding */
.sil-p-0px {
    padding: 0px;
}

.sil-p-5px {
    padding: 5px;
}

.sil-p-7-8px {
    padding: 7.5px;
}

.sil-p-15px {
    padding: 15px;
}

.sil-p-30px {
    padding: 30px;
}

.sil-p-5px-15px {
    padding: 5px 15px;
}

.sil-p-5px-15px-0px-40px {
    padding: 5px 15px 0px 40px;
}

.sil-p-10px-0 {
    padding: 10px 0;
}

.sil-p-0-30px {
    padding: 0 30px;
}

/* Estilos para los padding-top */
.sil-pt-4px {
    padding-top: 4px;
}

.sil-pt-5px {
    padding-top: 5px;
}

.sil-pt-10px {
    padding-top: 10px;
}

.sil-pt-15px {
    padding-top: 15px;
}

.sil-pt-25px {
    padding-top: 25px;
}

.sil-pt-30px {
    padding-top: 30px;
}

/* Estilos para los padding-bottom */
.sil-pb-0 {
    padding-bottom: 0px;
}

.sil-pb-4px {
    padding-bottom: 4px;
}

.sil-pb-10px {
    padding-bottom: 10px;
}

.sil-pb-15px {
    padding-bottom: 15px;
}

.sil-pb-20px {
    padding-bottom: 20px;
}

.sil-pb-25px {
    padding-bottom: 25px;
}

.sil-pb-30px {
    padding-bottom: 30px;
}

/* Estilos para los padding-right */
.sil-pe-0 {
    padding-right: 0px !important;
}

.sil-pe-40px {
    padding-right: 40px;
}

/* Estilos para los padding-left */
.sil-ps-0 {
    padding-left: 0px !important;
}

/* Estilos para los margenes */
.sil-m-auto {
    margin: auto;
}

.sil-mx-2px {
    margin-left: 2px;
    margin-right: 2px;
}

.sil-m-0px {
    margin: 0px;
}

.sil-m-5px {
    margin: 5px;
}

.sil-m-10px {
    margin: 10px;
}

.sil-m-5px-0 {
    margin: 5px 0;
}

.sil-m-10px-0-0 {
    margin: 10px 0 0;
}

.sil-m-20px-0-0 {
    margin: 20px 0 0;
}

/* Estilos para los margin-top */
.sil-mt-0 {
    margin-top: 0;
}
.sil-mt-2px {
    margin-top: 2px !important;
}

.sil-mt-3px {
    margin-top: 3px;
}

.sil-mt-5px {
    margin-top: 5px;
}

.sil-mt-9px {
    margin-top: 9px;
}

.sil-mt-10px {
    margin-top: 10px;
}

.sil-mt-15px {
    margin-top: 15px;
}

.sil-mt-20px {
    margin-top: 20px;
}

.sil-mt-25px {
    margin-top: 25px;
}

.sil-mt-30px {
    margin-top: 30px;
}

.sil-mt-50px {
    margin-top: 50px;
}

/* Estilos para el margin-y */
.sil-my-0px {
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}

.sil-my-150px {
    margin-bottom: 150px;
    margin-top: 150px;
}

/* Estilos para los margin-bottom */
.sil-mb-0px {
    margin-bottom: 0px;
}

.sil-mb-2px {
    margin-bottom: 2px;
}

.sil-mb-7px {
    margin-bottom: 7px;
}

.sil-mb-10px {
    margin-bottom: 10px;
}

.sil-mb-15px {
    margin-bottom: 15px;
}

.sil-mb-25px {
    margin-bottom: 25px;
}

.sil-mb-30px {
    margin-bottom: 30px;
}

.sil-mb-35px {
    margin-bottom: 35px;
}

.sil-mb-45px {
    margin-bottom: 45px;
}

/* Estilos para los margin-right */
.sil-me-15px {
    margin-right: 15px;
}

.sil-me-30px {
    margin-right: 30px;
}

/* Estilos para los margin-left */
.sil-ms-10px {
    margin-left: 10px;
}

.sil-ms-15px {
    margin-left: 15px;
}

.sil-ms-25px {
    margin-left: 25px;
}

.sil-modal-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
}

.sil-no-hover:hover {
    color: #fcfcfd !important;
    text-decoration: underline;
}

.sil-text-warning {
    color: #00B0C7 !important;
}
a.sil-text-warning:hover,
a.sil-text-warning:focus {
    color: #00B0C7 !important;
}

.sil-user-actions {
  display: flex !important;
  align-items: center;   /* Alinea verticalmente si tienen distintas alturas */
  gap: 10px;             /* Espacio entre los enlaces (ajústalo si quieres) */
  max-height: 50.41px;
}

/* ESTILOS PARA MOSTRAR LOS LI EN VISTA PC */
/* Oculta el dropdown por defecto */
.dropdown-menu {
  display: none;
  position: absolute;
  background-color: white; /* o con transparencia */
  min-width: 160px;
  z-index: 1000;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
}

/* Muestra el dropdown al hacer hover en el li padre */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Asegura que el <li class="dropdown"> tenga posición relativa */
.dropdown {
  position: relative;
}

@media (max-width: 991.98px) {
  .onlyPhone {
    margin-left: 10px;
  }
}

.sil-top-right {
    position: fixed;
    top: 55px;
    right: 3px;
    margin: 0;
    z-index: 1050;
    display: block;
    padding: 0;
}

.sil-top-right .modal-dialog {
    margin: 0;
    position: relative;
    top: 0;
    right: 0;
    left: auto;
    transform: none !important;
    margin-left: auto;
}
.sil-alert {
    padding-left: 5px;
    padding-right: 5px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.sil-success {
    color: #1a9988;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.sil-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}

.sil-danger {
    color: #dd7e6b;
    background-color: #f2dede;
    border-color: #ebccd1;
}

.sil-warning {
    color: #c6ab7b;
    background-color: #fcf8e3;
    border-color: #faebcc;
}

.sil-finish {
    color: #333333;
    background-color: #b8c1b5;
    border-color: #98a292;
}

.sil-alert-info {
    background-color: #f5f5f5;
    border-color: #ddd;
}

.sil-tabla-scroll-container {
    overflow-y: auto;
    max-height: 130px;
    border: 1px solid #ddd;
}

.sil-tabla-scroll-container-full {
    overflow-y: auto;
    max-height: 280px;
    border: 1px solid #ddd;
}

.sil-gap-8 {
    gap: 8px;
}

.sil-panel-body-heght {
    max-height: 180px;
    overflow-y: auto;
}