@charset "utf-8";
@import url("font/Pirulen/stylesheet.css");
/*
@import url("font/Avenir_Next/stylesheet.css");
@import url("font/Avant_Garde/stylesheet.css");
*/
:root {
    /*SOMA*/
    --soma-azul: #1C75BC;
    --soma-verde: #00A79D;
    --soma-celeste: #00AEEF;
    /*APM*/
    --apm-blue: #3CB6CE;
    --apm-navy: #004165;
    --apm-orange: #FF6319;
    --apm-orange-opacity: #ff621990;
    --apm-yellow: #EEAF30;
    --apm-grey: #776F65;
    --apm-beige: #CBC7BF;
    /*COMUNES*/
    --verde-si: #56c080;
    --rojo-no: #c05656;
  }

* {
    box-sizing: border-box;
    max-width: 100vw;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
    overflow-wrap: break-word;
}

html {
    font-size: 62.5%;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.body {
    background-color: lightgray; /*var(--apm-grey);*/
    max-width: 150rem;
    margin: 0 auto;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 5rem 1fr 5rem;
    grid-template-areas:
        "header"
        "main"
        "footer";
    gap: 0.5rem;
}
.separador {
    border-top: 1px solid black;
    height: 2px;
    max-width: 250px;
    padding: 0;
    margin: 20px auto 0 auto;
  }
.upload {
    background-color: snow;
    display: flex;
}

.mandatorio {
    background-color: orangered;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding-left: 0;
}
/*
input {
    margin-top: 1rem;
  }
  */
input::file-selector-button {
    background-color: gray;
    opacity: 1;
    border-radius: 10px;
    color: snow;
    padding: 5px;
    font-size: 1.25rem;
    border: none;
    cursor: pointer;
  }

/*Tabla
table {
    border: 1px solid #ccc;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    //width: 70%;
    table-layout: fixed;
    background-color: #f8f8f8;
  }
table caption {
    font-size: 1.5em;
    margin: .5em 0 .75em;
  }
table tr {
    border: 1px solid #ddd;
    padding: .35em;
  }
table th, table td {
    padding: .625em;
    text-align: center;
  }
table th {
    font-size: 1.25rem;
    font-weight: lighter;
    letter-spacing: .1em;
    text-transform: uppercase;
    background-color: var(--apm-orange);
    color: snow;
  }
*/
table {
    border-collapse: collapse;
    /*width: 100%;*/
    color: #333;
    font-family: Arial, sans-serif;
    min-width: 600px; /* asegúrate de que sea lo suficientemente ancho */
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    position: sticky;
    z-index: 1; /* Asegura que el encabezado se mantenga sobre el resto de las filas */
    font-weight: bold;
    color: snow;
    top: 0;
    background-color: var(--apm-orange);
}

.table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* para una mejor experiencia en móviles */
    width: 100%;
    
    max-height: 80vh; /* Altura máxima para hacer scroll en la tabla */
    overflow-y: auto;
}

/*Tabla Listado Reportes*/
#tablaReportes, #tablaAprobaciones {
    font-size: 1.5rem;
}

/*Switch SI/NO*/
.toggle {
    cursor: pointer;
    display: inline-block;
}
.toggle-switch {
    display: inline-block;
    background: var(--rojo-no);
    border-radius: 10px;
    width: 30px;
    height: 20px;
    position: relative;
    vertical-align: middle;
    transition: background 0.25s;
}
.toggle-switch:before, .toggle-switch:after {
    content: "";
}
.toggle-switch:before {
    display: block;
    background: linear-gradient(to bottom, #fff 0%, #eee 100%);
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
    width: 12px;
    height: 12px;
    position: absolute;
    top: 4px;
    left: 4px;
    transition: left 0.25s;
}
.toggle:hover .toggle-switch:before {
    background: linear-gradient(to bottom, #fff 0%, #fff 100%);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
}
.toggle-checkbox:checked + .toggle-switch {
    background: var(--verde-si);
}
.toggle-checkbox:checked + .toggle-switch:before {
    left: 15px;
}
.toggle-checkbox {
    position: absolute;
    visibility: hidden;
}
.toggle-switch-on {
    display: inline-block;
    background: var(--verde-si);
    border-radius: 10px;
    width: 30px;
    height: 20px;
    position: relative;
    vertical-align: middle;
    transition: background 0.25s;
}
.toggle-switch-on:before, .toggle-switch-on:after {
    content: "";
}
.toggle-switch-on:before {
    display: block;
    background: linear-gradient(to bottom, #fff 0%, #eee 100%);
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
    width: 12px;
    height: 12px;
    position: absolute;
    top: 4px;
    right: 4px;
    transition: right 0.25s;
}
.toggle-switch-on:before {
    background: linear-gradient(to bottom, #fff 0%, #fff 100%);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
}
.toggle-on:hover .toggle-switch-on:before {
    background: linear-gradient(to bottom, #fff 0%, #fff 100%);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
}
.toggle-checkbox-on:checked + .toggle-switch-on {
    background: var(--rojo-no);
}
.toggle-checkbox-on:checked + .toggle-switch-on:before {
    right: 15px;
}
.toggle-checkbox-on {
    position: absolute;
    visibility: hidden;
}


nav {
    width: min(10rem);
    padding: 1rem;
    position: fixed;
    right: 0;
    top: -100vh;
    border-radius: 1rem;
    /*height: calc(100% - 10rem);*/
    height: auto;
    background-color: var(--apm-grey);
    color: black;
    transition: top 1s;
    }
nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
    color: snow;
}
nav a {
    margin: 1em 0;
    }

/* Alert box design */
.alertBox {
    display: none;
    background-color: red;
    color: black;
    position: fixed;
    left:calc(50% - 175px);
    top:25%;
    width: 350px;
    height: 150px;
    border-radius: 15px;
    padding: 16px 8px 8px;
    flex-direction: column;
    justify-content: space-around;
    z-index: 999000;
}
		
/* Designing dialog box's okay button */
#alertBox button {
    background-color: snow;
    display: inline-block;
    border-radius: 5px;
    border: 2px solid gray;
    padding: 5px;
    text-align: center;
    width: 80px;
}
		
/* Dialog box message decorating */
.alertMessage {
    text-align: left;
    padding: 10px 30px;
    font-size: 1.5rem;
    font-weight: bold;
}
.alertButtons {
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    width: 100%;
}

.bold {
    font-weight: bold;
}
.centered {
    text-align: center;
}
.tachado {
    text-decoration: line-through;
}
.alerta {
    color: red;
}
.advertencia {
    color: #ffcc00;
}
.firma {
    font-weight: bold;
    font-family: cursive;
}

.show {
    top: 5rem;
    transition: top 1s;
  }

header,main,footer {
    padding: 1em;
}

header {
    background-color: #252442;
    background: transparent;
    grid-area: header;
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
    top: 0;
    position: sticky;
    backdrop-filter: blur(5px);
    z-index: 10;
}

.logo {
    display: flex;
    height: 5rem;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    color: black;
}

.logoSOMA {
    display: flex;
    height: 5rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    color: black;
}

main {
    border-radius: 1rem;
    font-family: "Avenir Next";
    background-color: snow;
    grid-area: main;
} 

/* Contenedor de la pestaña lateral de referencias */
.reference-tab {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 300px;
    background-color: #f9f9f9;
    border-left: 1px solid #ddd;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
}
/* Contenido de la pestaña */
.reference-tab-content {
    padding-left: 20px;
    overflow-y: auto;
    /*height: 100%;*/
}
/* Botón para abrir/cerrar la pestaña */
.reference-tab-toggle {
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-color: #707070;
    color: #fff;
    border: none;
    border-radius: 5px 0 0 5px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.reference-tab-toggle:hover {
    background-color: #404040;
}
/* Cuando la pestaña está abierta */
.reference-tab.open {
    transform: translateX(0);
}

footer {
    color: #00AEEF;
    grid-area: footer;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    align-content: center;
    background-color: black;
    font-size: 1rem;
}

.copyright {
    font-size: 1.5rem;
    font-family: 'Pirulen Rg';
}

.seccionInicio {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 3rem;
    gap: 3rem;
    align-content: center;
    justify-content: space-evenly;
}
.seccionEncabezado {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
}
.seccionTitulo {
    display: inline-block;
    width: min(80px);
}
.seccionTituloResaltado {
    width: 100%;
    color: snow;
    text-align: center;
}
.seccionSubtitulo {
    display: flex;
    flex-direction: row;
    width: max(650px);
    /*width: minmax(auto,70%);*/
}
.seccionEnvioReporte {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 5rem;
    align-content: center;
    justify-content: space-evenly;
}
.numeroReporte {
    flex-direction: column;
    gap: 2rem;
}
.seccionTablas {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 2rem;
    align-content: center;
    justify-content: center;
}
.seccionPreguntas {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
}
.seccionRecuadro {
    height: 80vh;
    display: flex;
    justify-content: center;
}
.preguntasSiNo {
    display: inline-flex;
    flex-wrap: nowrap;
    text-align: right;
    padding: 1rem;
    gap: 5px;
}
.preguntasSiNoTexto {
    width: max(198px);
}
.preguntasSiNoCorta {
    text-align: right;
    width: max(125px);
}
.preguntasSiNoCortaDato {
    text-align: left;
    width: max(150px);
}
.preguntasSiNoCortaVacio {
    text-align: left;
    width: 1rem;
}
.seccionBloqueTitulo {
    /*width: max(180px);*/
    padding: 1rem;
}
.seccionBloqueInfo {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.seccionBloqueSeleccion {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.pendiente {
    color: red;
    font-weight: bold;
    font-size: 1.25rem;
}
.riesgo {
    font-size: 2rem;
}

.avisoError {
    width: 100%;
    height: 80vh;
    display: flex;
    flex-direction: column;
    color: var(--apm-orange);
    text-align: center;
    font-size: 4rem;
    font-weight: bolder;
    justify-content: center;
    align-content: center;
}

/*Lista desplegble*/
.custom-select {
    min-width: 50px;
    position: relative;
}
.custom-select select {
    appearance: none;
    /* safari */
    -webkit-appearance: none;
    /* other styles for aesthetics */
    width: 100%;
    height: 20px;
    font-size: 1rem;
    padding: 2px;/*0.675em 6em 0.675em 1em;*/
    background-color: var(--apm-navy);
    opacity: 0.7;
    border: none;
    border-radius: 10px;
    color: snow;
    cursor: pointer;
    text-align:center;
}
.custom-select::before,
.custom-select::after {
  --size: 0.3rem;
  position: absolute;
  content: "";
  right: 1rem;
  pointer-events: none;
}
.custom-select::before {
  border-left: var(--size) solid transparent;
  border-right: var(--size) solid transparent;
  border-bottom: var(--size) solid snow;
  top: 30%;
}
.custom-select::after {
  border-left: var(--size) solid transparent;
  border-right: var(--size) solid transparent;
  border-top: var(--size) solid snow;
  bottom: 30%;
}

/*Botones buscadores*/
.dropdown {
    position: relative;
    display: inline-block;
    text-align: left;
}
.dropbtn {
    background-color: var(--apm-navy);
    opacity: 1;
    border-radius: 10px;
    color: snow;
    padding: 5px;
    font-size: 1.25rem;
    border: none;
    cursor: pointer;
}
.dropbtnSelected {
    background-color: var(--apm-navy);
    opacity: 0.75;
    border-radius: 5px;
    color: snow;
    padding: 2px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}
.dropbtn:hover, .dropbtn:focus {
    opacity: 0.75;
}
.dropdown-content {
    display: none;
    background-color: #f6f6f6;
    font-size: 1.25rem;
    overflow: auto;
    border: 1px solid #ddd;
    z-index: 1;
}
.dropdown-content span {
    text-decoration: none;
    display: block;
}
.dropdown span:hover {background-color: grey;}

/*Boton paginas*/
.pagbtn {
    background-color: var(--apm-orange);
    opacity: 1;
    border-radius: 20px;
    color: snow;
    width: 150px;
    height: 30px;
    font-size: 1.25rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
}
.pagbtn:hover, .pagbtn:focus {
    opacity: 0.75;
}

/*Boton agregar*/
.addbtn {
    background-color: var(--apm-blue);
    opacity: 1;
    border-radius: 5px;
    color: snow;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}
.addbtn:hover, .addbtn:focus {
    opacity: 0.75;
}
.adddown span:hover {background-color: var(--apm-orange);}

/*Boton nuevo*/
.btnNuevo {
    background-color: var(--apm-orange);
    opacity: 1;
    border-radius: 5px;
    color: snow;
    font-size: 2rem;
    border: none;
    cursor: pointer;
}
.btnNuevo:hover, .btnNuevo:focus {
    opacity: 0.75;
}

.show {display: block;}

.formAgregar {
    display: none;
}
.formulario {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 1.25rem;
}

/*Formularios*/
.formularios {
    display: flex;
    flex-direction: column;
    width: 350px;
    margin: 20px auto;
    padding: 20px;
    gap: 10px;
    background-color: #f2f2f2;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
    border: 1px solid #ccc;
    border-radius: 10px;
}
.formularios h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}
.formularios p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 0px;
}
.formularios a {
    text-decoration: none;
    color: black;
    font-weight: 600;
    margin-top: 10px;
}

.form {
    font-size: 1.5rem;
}

.campoForm {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.botonForm {
    text-align: center;
    margin: 30px 20px 10px 20px
}

.formulario div {
    display: inline-flex;
    width: 100px;
    justify-content: space-between;
}
/*Botones Envios Reporte*/
.pdtbtn {
    background-color: var(--apm-orange);
    opacity: 1;
    border-radius: 20px;
    color: snow;
    padding: 10px;
    font-size: 2rem;
    border: none;
    cursor: pointer;
}
.aprobar {
    background-color: var(--verde-si);
}
.rechazar {
    background-color: var(--rojo-no);
}
.pdtbtn:hover, .pdtbtn:focus,.aprobar:hover, .aprobar:focus, .rechazar:hover, .rechazar:focus {
    opacity: 0.75;
}

/*MENU INICIO*/
/*Disposicion*/
.menuInicio {
    display: grid;
    width: 48%;
}
/*Botones*/
.botonInicio {
    color: var(--apm-orange);
    border-radius: 5px;
    padding: 10px;
    font-size: 3rem;
    border: 2px solid var(--apm-orange);
    cursor: pointer;
}

.botonInicio:hover, .botonInicio:focus {
    color: snow;
    background-color: var(--apm-orange);
    font-weight: bold;
}

.botonAutorizar {
    background-color: var(--apm-grey);
    color: snow;
    border-radius: 5px;
    padding: 5px;
    font-size: 1rem;
}

.botonAutorizar:hover, .botonAutorizar:focus {
    background-color: gray;
    font-weight: bold;
}

.recuadroIngreso {
    width: 50%;
    color: snow;
    border-radius: 30px;
    background-color:#414141;
}
.recuadroIngresoDatos {
    width: 350px;
    gap: 5px;
    font-size: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
}
.recuadroIngresoDatosInput {
    border-radius: 25px;
    border: none;
    height: 40px;
    width: 100px;
    font-size: 2rem;
    background-color: rgb(170, 170, 170);
    color: snow;
    text-align: center;
}
.recuadroIngresoBoton {
    width: 350px;
}

/*Imagenes Inspeccion*/
.bloqueImagenes {
    height: 100px;
}
.iframeImagenes {
    width: 320px;
}

.imagenListado img {
    max-height: 300px;
    /*max-width: 1000px;*/
    vertical-align: middle;
  }
/* Caption text */
.textListado {
    color: #f2f2f2;
    font-size: 1.5rem;
    padding: 8px 12px;
    width: 100%;
    text-align: center;
    background-color: rgba(192,192,192, .7);
}

/*Carrousel de imagenes de inspeccion*/
.mySlides {
    display: none
  }
/* Slideshow container */
.slideshow-container {
    /*display: none;*/
    max-width: 1000px;
    position: relative;
    margin: auto;
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    /*margin-top: -22px;*/
    color: snow;
    font-weight: bold;
    font-size: 2rem;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

/* Number text (1/3 etc) */
.numbertextInspeccion {
    color: #000000;
    font-size: 1.2rem;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}
/* Imagen */
.imagenInspeccion {
    height: 200px;
    text-align: center;
}
.imagenInspeccion img {
    max-height: 100%;
    max-width: 1000px;
    vertical-align: middle;
  }
/* Caption text */
.textInspeccion {
    color: #f2f2f2;
    font-size: 1.5rem;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
    background-color: rgba(192,192,192, .7);
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    position: relative;
    z-index: 2;
}

.active, .dot:hover {
    background-color: #717171;
}
/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}
@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

/*Spinner*/
#cover-spin {
    position:fixed;
    width:100%;
    left:0;right:0;top:0;bottom:0;
    background-color: rgba(255,255,255,0.7);
    z-index:9998;
    display:none;
}
@-webkit-keyframes spin {
	from {-webkit-transform:rotate(0deg);}
	to {-webkit-transform:rotate(360deg);}
}
@keyframes spin {
	from {transform:rotate(0deg);}
	to {transform:rotate(360deg);}
}
#cover-spin::after {
    content:'';
    display:block;
    position:absolute;
    left:48%;top:40%;
    width:40px;height:40px;
    border-style:solid;
    border-color:black;
    border-top-color:transparent;
    border-width: 4px;
    border-radius:50%;
    -webkit-animation: spin .8s linear infinite;
    animation: spin .8s linear infinite;
}

/*mini spinner*/
.spinner,.spinner:after {
    display: none;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
}
.spinner {
    display:none;
    background-color: transparent;
    border-top: 5px solid rgb(221,102,102);
    border-right: 5px solid rgb(221,102,102);
    border-bottom: 5px solid rgb(221,102,102);
    border-left: 5px solid rgba(221,102,102,.2);
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-duration: .8s;
    animation-name: spinner-loading
 }
@keyframes spinner-loading{
  0% {
      transform: rotate(0deg)
  } to {
      transform: rotate(1turn)
  }
}
.confirmado {
    display:none;
    font-size: 2rem;
 }

/*exclusivo celulares*/
@media screen and (max-width: 600px) {
    .dropbtn {
        font-size: 1rem;
    }
    .dropdown-content {
        font-size: 1rem;
    }
    .headerTitulo {
        display: none;
    }
    .headerSubtitulo {
        display: none;
    }
    .preguntasSiNo {
        width: 100%;
    }
    .preguntasSiNoTexto {
        width: max(80%);
    }
    .preguntasSiNoCorta {
        width: max(20%);
    }
/*
    table {
        border: 0;
        width: 100%;
      }
    table caption {
        font-size: 1.3em;
      }
    table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
      }
    table tr {
        border-bottom: 3px solid #ddd;
        display: block;
        margin-bottom: .625em;
      }
    table td {
        border-bottom: 1px solid #ddd;
        display: block;
        font-size: .8em;
        text-align: right;
      }
    table td::before {

        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-transform: uppercase;
      }
    table td:last-child {
        border-bottom: 0;
      }

    */
    /*para las imagenes del carrousel*/
    .prev, .next,.text {
        font-size: 11px
    }
    img {
        max-width: 250px;
    }        
}

/*Cards*/
.profile-card {
    width: 500px;
    /*width: fit-content;*/
    margin: 20px auto;
    padding: 40px;
    background-color: #f2f2f2;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
    border: 1px solid #ccc;
    border-radius: 10px;
}
.profile-card h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}
.profile-card p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 0px;
}
.profile-card a {
    text-decoration: none;
    color: black;
    font-weight: 600;
    margin-top: 10px;
}
.info {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.infoReportes {
    flex-direction: column;
}

/*exclusivo tablets y PCs*/
@media screen and (min-width: 768px) {
    .headerTitulo {
        display: block;
    }
    .headerSubtitulo {
        display: block;
    }
    .fechaAceptacion {
        max-width:100px;
    }
}
