@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@400;700&display=swap');

* {
    font-family: 'arial', sans-serif;
    color: #354151;
}

input[type=file],
input[type=file]::-webkit-file-upload-button {
    cursor: pointer;
}

#reporte th,
#reporte td {
    border-top: 1px solid #E3E8EF;
    border-bottom: 1px solid #E3E8EF;
    padding: 10px;
    padding-left: 30px;
    font-size: 14px;
}

tr {
    -webkit-print-color-adjust: exact;
}

@media print {

    html, body {
      height:100%; 
      margin: 0 !important; 
      padding: 0 !important;
      overflow: hidden;
    }
  
  }

/* #reporte th {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    color: #6E7B8E;
    text-align: left;
    background-color: #F8FAFC;
    padding-top: 14px;
    padding-bottom: 14px;
} */

#reporte td,
#reporte th {
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
}

#reporte td:nth-child(1),
#reporte th:nth-child(1) {
    width: 60px;
    min-width: 30px;
}

output {
    width: 100%;
    min-height: 150px;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
    border-radius: 5px;
    margin-top: 20px;
}

output .image {
    border-radius: 0px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
}

output .image img {
    height: 100%;
    width: 100%;
}

output .image span {
    position: absolute;
    top: -4px;
    right: 4px;
    cursor: pointer;
    font-size: 22px;
    color: white;
}

output .image span:hover {
    opacity: 0.8;
}

output .span--hidden {
    visibility: hidden;
}

.toggle-checkbox:checked {
    right: 0;
    border-color: #68D391;
}

.toggle-checkbox:checked+.toggle-label {
    background-color: #68D391;
}