html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.sinsalto {
    white-space: nowrap;
}

.filtros {
    background-color: papayawhip;
    border: 1px solid #000000;
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
    padding: 10px;
    margin-left: 10px;
}

.cuadroRosa {
    background-color: mistyrose;
    border: 1px solid #000000;
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
    padding: 10px;
    margin-left: 10px;
}


/*.cuadroCeleste {
    background-color: #d8e7ff*/

.cuadroAzul {
    background-color: lightsteelblue;
    border: 1px solid #000000;
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
    padding: 10px;
    margin-left: 10px;
}

.cuadroNaranja {
    background-color:burlywood;
    border: 1px solid #000000;
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
    padding: 10px;
    margin-left: 10px;
}

.cuadroGris {
    background-color: whitesmoke;
    border: 1px solid #000000;
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
    padding: 10px;
    margin-left: 10px;
}

.botonNaranja {
    background-color: coral;
    border-color: coral;
}
.botonNaranja:hover {
    background-color: coral;
    border-color: coral;
}

.botonAzul {
    background-color: cornflowerblue;
    border-color: cornflowerblue;    
}



.botonAzul:hover {
    background-color: cornflowerblue;
    border-color: cornflowerblue;
}



.btn-filtrar {
    font-weight: bold;
}

.derecha{
    text-align: right;
}

.centrado {
    text-align: center;
}

.padizq300 {
    padding-left: 300px;
}

.izquierda {
    text-align: left;
}

.anchofecha {
    width: 150px;
}

.anchomax200 {
    max-width: 200px;
}

.anchomax1000 {
    max-width: 1000px;
}

.ancho100 {
    width: 100%;
}

.ancho200px {
    width: 200px;
}

.fuente20 {
    font-size: 20px;
}

.altomin200 {
    min-height: 300px;
}

#btnSeleccionarEmpresa {
    padding-top: 0px;
}

.aSeleccionarEmpresa {
    padding-top: 0px;
    height: 40px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.grande{
    font-size: 20px;
    margin-top: 5px;
}

/*para selectpicket blanco*/
.btn-light {
    color: #495057;
    background-color: #fff;
    border-color: #ced4da;
    box-shadow: none;
    display: block;
}

    /*.btn-light:disabled, .btn-light[readonly] {*/
    .btn-light.disabled {
        background-color: #e9ecef;
        border-color: #ced4da;
        opacity: 1;
    }

.hipervnegro {
    color: black;
    text-decoration: none;
    background-color: transparent;
}

.modal-dialog {
    max-width: 60%;
}

.button-container {
    width: 100%; /* Adjust as needed */
    text-align: center; /* Centers the buttons horizontally */
}

.left-button {
    float: left;
    margin-right: 10px; /* Adjust as needed */
}

.right-button {
    float: right;
    margin-left: 10px; /* Adjust as needed */
}

.hidden {
    display: none; /* This CSS rule will hide the element */
}

#start-task {
    position: absolute; /* or relative */
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#responseMessage {
    display: none;
}

.novisible {
    display: none;
}

.centradoverticalDIV {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.checkbox-container {
    display: flex;
    width: 100%;
    background-color: whitesmoke;
    border-radius: 5px;
    padding: 5px;
}

/*.checkbox-container label {
    min-width: 100px;
    margin-right: 10px;*/ /* Espacio entre el label y el checkbox */
    /*text-align: left;
    flex: 1;*/ /* Ocupa el espacio restante */
    /*height: 40px;*/
 /*   background-color: whitesmoke;*/
/*}


.checkbox-container input {*/
    /* background-color: lightcoral;*/
    /*width: 20px;*/ /* Ancho fijo */
    /*space
    height: 20px;
}*/

.checkbox-label {
    min-width: 60px;
    margin-right: 10px;
    flex: 1;
}

input[type="checkbox"] {
    /* background-color: lightcoral;*/
    margin-left: 10px;
    margin-right: 10px;
    width: 25px; /* Ancho fijo */
    height: 25px;
}



.input-container {
    display: flex;
    /*align-items: center;*/
}

.link-negro {
    color: black;
    font-weight: bold;
    display: table-row;
}

.right-align {
    text-align: right;
}

.anchoFechaMin{
    min-width: 150px;
}

.toolTipText {
    color: black;
}

.subtotal {
    font-weight: bold;
}

.datepicker {
    min-width: 500px;
}

.disabled-link {
    pointer-events: none; /* Evita que se pueda hacer clic */
    color: white; /* Cambia el color para dar apariencia de deshabilitado */
    text-decoration: none;
    cursor: not-allowed;
}

.texto-clampeado {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 2.4em;
    line-height: 1.2em;
    border: none;
    background: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    vertical-align: middle;
}