@import url('https://fonts.googleapis.com/css2?family=Hind:wght@300;400;700&display=swap');
*{
    box-sizing: border-box;
}
:root{
	--colorVerde: #91C84C;
    --colorNaranjo: #DD5702;
}
a{
    color: var(--colorNaranjo);
    text-decoration: none;
}
a:hover{
    text-decoration: underline;
    color: var(--colorNaranjo);
}
ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
fieldset{
    padding: 0;
    border: 0;
}
html{
	font-size: 16px;
}
body{
    margin: 0;
    top: 0;
    font-family: 'Hind', sans-serif;
}

/* Textos */

h1,h2, h3, h4,h6{
	line-height: 1.2;
    margin: 0 0 20px;
    font-weight: 400;
}
h1{
	font-size: 1.8rem;
	margin-bottom:20px;
}
h2{
	font-size: 1.6rem;
	margin-bottom: 20px;
}
h3{
	font-size: 1.5rem;
}
h4{
	font-size: 1.4rem;
}

li, p, th, td, dt, dd, span{
	font-size: 1rem;
	margin-bottom:20px;
	color: var(--colorParrafos);
	line-height: 27px;
}
.nav > li.non, .non { display: none;}

/* Forms */

/* input[type="text"],
input[type="date"],
input[type="password"],
input[type="email"]{
    width: 100%;
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
    border: 1px solid #D3D3D3;
    font-size: 1rem;
    font-family: 'Hind', sans-serif;
} */
textarea{
    width: 100%;
    padding: 10px;
    border: 1px solid #D3D3D3;
}

label{
    display: block;
    margin-bottom: 5px;
    color: #505050;
}
fieldset{
    margin-bottom: 15px;
}


header{
    border-bottom: 6px solid #E6E6E6;
    margin-bottom: 30px;
}

header .center{
    display: grid;
    grid-template-columns: 220px 1fr;
    grid-column-gap: 20px;
    align-items: center;
    position: relative;
}
header .menu{
    justify-self: right;
    /* width: 500px; */
    display: grid;
    grid-template-columns: 1fr 1fr;
}

@media screen and (min-width: 767px){
header .menu { grid-template-columns: 1fr 300px; }
.menu .nav { padding-right: 20px;}
}
.menu .nav li{
    display: inline-block;
    margin-bottom: 0;
}
.menu .nav li a{
    display: block;
    padding: 30px;
    position: relative;
}
.menu .nav li a:hover{
    text-decoration: none;
}
.menu .nav li a:after{
    width: 100%;
    height: 5px;
    background: var(--colorNaranjo);
    content: ' ';
    position: absolute;
    bottom: -2px;
    left: 0;
    opacity: 0;
}
.active{
    height: 5px;
    background: var(--colorNaranjo);
    content: ' ';
    position: absolute;
    left: 0;
    opacity: 1;
}
.menu .nav li a:hover:after{
    opacity: 1;
}
.infoUser{
    border: 1px solid #ccc;
    height: 58px;
    align-self: center;
    padding: 17px;
    position: relative;
    z-index: 99;
    color: var(--colorNaranjo);
}
.infoUser:after{
    position: absolute;
    right: 20px;
    top: 20px;
    width: 20px;
    height: 20px;
    background: url('/public/imagenes/i-chevron.svg') no-repeat center center;
    content: ' ';
}
.infoUser:hover ul{ display: block;}
.infoUser ul{
    border: 1px solid #ccc;
    position: absolute;
    left: -1px;
    width: 101%;
    background: #fff;
    border-top: 0;
    padding: 20px 20px 0;
    display: none;
}
.infoUser img{ margin-right: 10px;}

.center{
	max-width: 1600px;
    width: 95%;
    margin: 0 auto;
}
.btnPrimary{
	background-color: var(--colorNaranjo);
    height: 40px;
    line-height: 40px;
	color: #fff !important;
	text-align: center;
	border: 0;
	font-size: 1rem;
	cursor: pointer;
	border: 0;
    display: block;
    padding: 0 20px;
}
.btnPrimary img{ margin-right: 10px;}
.btnPrimary:hover{
	text-decoration: none;
	background-color: #FF6300;
}

.contenedorLogin{
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.contenedorLogin > div{
    align-self: center;
    justify-self: center;
    width: 220px;
    position: relative;
}
.contenedorLogin > div:after{
    background: var(--colorNaranjo);
    width: 50%;
    height: 12px;
    position: fixed;
    bottom: 0;
    left: 0;
    content: ' ';
}
.contenedorLogin > div img{
    display: block;
    margin: 0 auto 30px;
}
.contenedorLogin > div b{
    font-weight: 300;
    display: block;
    margin-bottom: 30px;
    text-align: center;
    font-size: 23px;
}
.contenedorLogin > div a{
    text-align: center;
    display: block;
    margin-top: 45px;
}
.contenedorLogin > div .btnPrimary{
    width: 120px;
    margin: 30px auto 0;
}
.contenedorLogin .imagenGrande{
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
.overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000a3;
    z-index: 9;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-content: center;
}
.popUpContainer{
    max-width: 500px;
    width: 90%;
    background: #fff;
    justify-self: center;
    align-self: center;
    padding: 30px;
    position: relative;
}
.popUpContainer .close{
    position: absolute;
    right: 25px;
    top: 25px;
    cursor: pointer;
}

.popUpContainer .btnPrimary{
    margin: 30px auto 0;
    width: 120px;
}

.contenedor{
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    align-items: center;
    height: 400px;
}

.contenedor img{
    display: block;
    margin: 0 auto 45px;
}

.contenedor a{
    font-size: 1.3rem;
}

footer{
    padding: 30px 0 100px;
    background: #E6E6E6;
    margin-top: 70px;
}

footer .center{
    display: grid;
    grid-template-columns: 171px 220px 1fr;
    grid-column-gap: 20px;
    align-items: center;
}
footer ul{
    justify-self: right;
}
footer ul li{
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 0;
}

.titulo{
    position: relative;
    margin-bottom: 30px;
}
.titulo .btnPrimary{
    position: absolute;
    right: 0;
    top: 0;
}
.titulo h1 img{
    vertical-align: middle;
    position: relative;
    top: -2px;
    margin-right: 10px;
}
.filtros{
    padding: 20px;
    background: #F5F5F5;
    display: grid;
    grid-template-columns: 360px 150px;
    grid-column-gap: 10px;
    align-items: end;
    margin-bottom: 20px;
}
.filtros fieldset{
    margin-bottom: 0;
}


table{
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 70px;
}
table th{
    background: #F5F5F5;
    text-transform: uppercase;
    font-size: 0.7rem;
    color: #747474;
    font-weight: normal;
    letter-spacing: 1px;
    padding: 10px 20px;
    text-align: left;
}
table td{
    padding: 20px;
    color: #505050;
    border-bottom: 1px solid #EAEAEA;
    /*font-size: 0.9rem;*/
    font-size: 14px;
}
.tablaClientes th:nth-child(1){
    width: 300px;
}
.tablaClientes th:nth-child(2){
    width: 500px;
}
.crearCliente{
    max-width: 346px;
    width: 100%;
    margin-bottom: 300px;
}

.contenedorDetalle{
    display: grid;
    grid-template-columns: 1fr 500px;
    grid-column-gap: 50px;
    margin-bottom: 70px;
}
.btnGroup{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
    width: 90%;
}
.btnGhost{
    background: transparent;
    border: 1px solid var(--colorNaranjo);
    color: var(--colorNaranjo) !important;
}
.btnGhost:hover{
    color: #fff !important;
}

.contenedorDetalle{
    margin-top: 50px;
}
.contenedorDetalle span{
    display: block;
    margin-bottom: 0;
    color: #505050;
}
.contenedorDetalle b{
    color: #505050;
}
.datosDetalle{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 20px;
}
.datosDetalle div{
    margin-bottom: 20px;
}
.datosDetalle hr{
    grid-column-start: 1;
    grid-column-end: 4;
    width: 100%;
    border: 0;
    height: 1px;
    background: #E5E5E5;
    margin: 30px 0;
}
.datosDetalle div:nth-child(5){
    grid-column-start: 1;
    grid-column-end: 4;
}
.datosDetalle div:nth-child(9){
    grid-column-start: 2;
    grid-column-end: 4;
}
.datosDetalle div:nth-child(8){
    grid-row-start: 5;
    grid-column-start: 1;
}
.tablaPedidos th:first-child{
    width: 180px;
}
.tablaPedidos th:nth-child(8){
    width: 100px;
}
.tablaPedidos td:first-child{
    color: var(--colorNaranjo);
}
.descargaEtiquetas a{
    margin-right: 20px;
    display: block;
}
.tablaPedidos img{
    margin-right: 10px;
}

.aviso{
    background: #FFFBE8;
    padding: 20px 30px;
    color: #505050;
    font-size: .9rem;
    margin-bottom: 30px;
}

.ingresoCargaMasiva{
    display: grid;
    grid-template-columns: 400px 160px;
    align-items: end;
    grid-column-gap: 20px;
    margin-bottom: 20px;
}
.ingresoCargaMasiva fieldset{
    margin-bottom: 0;
}

.enlaceImagen img{
    margin-right: 10px;
}

.inputFile{
    position: relative;
}
.inputFile input[type="file"]{
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
}
.inputFile img{
    position: absolute;
    right: 20px;
    top: 11px;
}
.formIngresoCarga{
    max-width: 700px;
    width: 100%;
}
.formIngresoCarga hr{
    border: 0;
    width: 100%;
    height: 1px;
    background: #ccc;
    margin: 40px 0;
}
.primeraParte{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
}
.contenedorDoble{
    display: grid;
    grid-template-columns: 456px 1fr;
    grid-column-gap: 20px;
}
.segundaParte > div{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 20px;
}
.segundaParte .contenedorDoble{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
}
.nice-select{
    width: 100%;
    border-radius: 0;
    border-color: #d3d3d3;
    padding-top: 8px;
}
.nice-select:after{
    border-bottom: 2px solid var(--colorNaranjo);
    border-right: 2px solid var(--colorNaranjo);
}
.nice-select .option{
    margin-bottom: 0;
}
.nice-select.open .list{
    width: 100%;
}
::-webkit-calendar-picker-indicator {
    background: url('/public/imagenes/i-calendar.svg') center/80% no-repeat;
    color: black;
}
.popUpExito h4{
    text-align: center;
}
.popUpExito .btnPrimary{
    width: max-content;
}
.select2-container--default .select2-selection--single{
    margin-bottom: 0;
}
.select2-container--default .select2-selection--single {
    border: 1px solid #D3D3D3;
    border-radius: 5px;
    height: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: 15px;
    line-height: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b{
    /* margin-left: -14px;
    margin-top: 4px;
    border-color: var(--colorNaranjo) transparent transparent transparent;*/
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{
    border-color: transparent transparent var(--colorNaranjo) transparent;
	top: 34%;
}
.select2-results__option--selectable{
    margin: 0;
}
.select2-search--dropdown, .select2-results{
    margin: 0;
}

.cambioContrasena{
    max-width: 400px;
    width: 100%;
}

.btn-modal-et {
	border-radius: 5px;
	position: absolute;
	top: 0;
	right: 260px;
	z-index: 2;
}
.modal-content { font-size: 16px;}
.modal-content .thumbnail { padding:14px; margin-bottom:0;}


/* spinner */
.lds-ring {
    display: inline-block;
    position: relative;
    width: 130px;
    height: 38px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    top: -6px;
    left: 30%;
    width: 15px;
    height: 15px;
    margin: 8px;
    border: 2px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.btnImprimir{
    height: 40px;
    width: 140px;
}

.close-modal-print{
    font-size:24px ;
}
.btnMultiImpresion, .btnDescargarDC{
    border-radius: 5px;
    position: absolute;
    right: 375px;
    z-index: 3;
    height: 40px;
    width: 200px;
}
.btnDescargarDC { width:230px; right: 583px;}
.estados_base{
    padding: 2px;
    border-radius: 30px;
    width: 100px;
    height: 30px;
    display: block;
    text-align: center;
    margin: 0 auto;
    font-size: 12.5px;
    color: white;
}
.estado_documento_ingresada{
    background-color: #7F7F7F;
}

.estado_cedible_pendiente{
    background-color: #95a5a6;
}

.estado_documento_transito{
    background-color: #3498db;
}

.estado_documento_entragada{
    background-color: #2ecc71;
}

.estado_cedible_entregado{
    background-color: #2ecc71;
}

.estado_documento_dev_total{
    background-color: #e74c3c;
}

.estado_documento_dev_parcial{
    background-color: #f1c40f;
}

.wp-select-request-first{
    display: grid;
    grid-template-columns: 327px 327px 327px;
    text-align: center;
    gap: 15px;
    justify-content: center;
    margin-top:15px;
}

.wp-select-request-second{
    display: grid;
    grid-template-columns: 327px 327px;
    text-align: center;
    gap:15px;
    justify-content: center;
    margin-top:15px;
}

.wp-svg{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    height: 100%;
}

.wp-svg > img {
    width: 60px;
    margin: 0 auto;
}

.wp-solicitud{
    border: 1px solid #D7D7D7;
    border-radius: 15px;
    height: 300px;
    width: 100%;
    margin: auto;
}

.wp-solicitud > a:hover{
    text-decoration: none;
}

.wp-solicitud > a:focus{
    outline: none;
}

.title-category{
    margin-top: 10px;
    font-weight: 400;
    font-size: 24px;
    line-height: 33px;
    text-align: center;
    color: #000;
    width: 220px;
    margin: 15px auto;
    display: block;
}

.btnNuevaSolicitud{
    border-radius: 5px;
    position: absolute;
    right: 250px;
    z-index: 3;
    height: 40px;
    width: 200px;
}
.btnRequests{
    width: 100px;
}

.wrapper-title {
    display: grid;
    grid-gap: 0px;
    grid-template-columns: 40px 1fr;
    grid-template-rows: 1fr 1fr;
    background-color: #fff;
    color: #444;
    height: 80px;
    align-items:center;
    margin-bottom: 20px;
}

.a {
    grid-column: 1;
    grid-row: 1 / 3 ;
}
.b {
    grid-column: 2 ;
    grid-row: 1 ;
}
.c {
    grid-column: 2;
    grid-row: 2;
}

.c > p{
    font-size: 24px;
    font-weight: 400;
}

.wrapper-detail{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap:50px;
}

.field-detail{
    height: 51px;
    border: 1px solid #E1E1E1;
    border-radius: 5px;
    padding: 12px;
    margin-bottom: 10px;
}

.field-detail-description{
    border: 1px solid #E1E1E1;
    border-radius: 5px;
    padding: 12px;
    margin-bottom: 10px;
}

.titulo-bitacora{
    font-weight: 400;
    font-size: 24px;
    line-height: 38px;
    margin-top: 25px;
}

/* Bitacora */

.wrapper-bitacora{
    display: block;
    margin: 40px auto;
}

#tiempo .text-18 {
    background-color: #FFF;
    padding: 8px 36px 10px;
    margin: 0 -36px;
}

.relative {
    position: relative;
}
.wrapper-bitacora table {
    margin: 0;
}
.relative > table tr td {
    padding: 0;
    border: none;
}

#tiempo #formBitacora {
    background-color: #FFF;
    padding-left: 36px;
    margin: 0 0 0px -36px;
    position: relative;
}

.agregar {
    font-size: 14px;
    color: #FFF;
    line-height: 20px;
    height: 40px;
    margin: 0px 5px;
    border: none;
}

#tiempo .block-actividad {
    position: relative;
    min-height: 15px;
    margin-top:20px;
}

#tiempo {
    background: url(../imagenes/bitacora/background-linea.gif) 0 15px repeat-y;
    margin: 0 -10px;
    padding-left: 36px;
}

#tiempo .inicio, #tiempo .pausar2 {
    background: url(../imagenes/bitacora/estado-bitacora-inicio.png) 0 0;
    height: 40px;
    width: 22px;
    position: absolute;
    left: 1px;
    top: 5px;
}

#tiempo div.pausado {
    background: url(../imagenes/bitacora/estado-bitacora.png) 0 -32px;
}

#tiempo .block-color {
    background-color: #f6f6f6;
    padding: 10px;
}

#tiempo .dia {
    font-size: 30px;
    line-height: 20px;
    text-align: center;
    width: 30px;
    position: absolute;
    top: 30px;
    left: 16px;
}

#tiempo .mes {
    font-size: 12px;
}

#tiempo .indicador {
    background-image: url(../imagenes/bitacora/indicador.png);
    position: absolute;
    left: -9px;
    top: 20px;
    width: 9px;
    height: 17px;
}

#tiempo .bloque-listar {
    background-color: #f6f6f6;
    margin: 0 0 0 60px;
    padding: 0;
}

#tiempo table.tablesorter tbody tr td {
    color: #000;
    background-color: #f6f6f6;
    /* border-bottom: 1px solid #e0e0e0; */
    border: none;
}

#tiempo table.tablesorter tbody td .etiqueta {
    color: #999;
}

#tiempo .etiqueta.f-l {
    float: left;
    padding-right: 10px;
}

#tiempo table.tablesorter tbody td.tol {
    width: 22px;
}

.btn-estrella {
    text-indent: -9999px;
    background: transparent url(../imagenes/bitacora/estrella-1.png);
    vertical-align: middle;
    width: 17px;
    height: 16px;
    border: none;
    cursor: pointer;
}

#tiempo div.reposo, #tiempo div.activo, #tiempo div.pausado {
    background: url(../imagenes/bitacora/estado-bitacora.png);
    display: block;
    width: 15px;
    height: 16px;
    position: absolute;
    top: 20px;
    left: -32px;
}

#tiempo div.pausado {
    background: url(../imagenes/bitacora/estado-bitacora.png) 0 -32px;
}

.wp-inputload-file,.wp-info-user{
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.image-upload > input{
    display: none;
}

.image-upload img{
    width: 40px;
    cursor: pointer;
}
.border-bottom{
    border-bottom: 1px solid #e0e0e0 !important;
}

.file_bitacora{
    height: 17px;
    vertical-align: sub;
    margin-right: 5px;
}
/* spinner */
.lds-ring {
    display: inline-block;
    position: relative;
    width: 100px;
    height: 17px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    top: -6px;
    left: 15%;
    width: 15px;
    height: 15px;
    margin: 8px;
    border: 2px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}
@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/********** Cambios 2023 - Recepcion **********/
.btn-cube{
	background:transparent;
	border: none;
	width: 21px;
	height:20px;
}
.btn-cube img{
    vertical-align: top; background-color:#DD5702;
}
.btn-cube.validado img,
.btn-cube:hover img{
    background-color: #65C97A;
}

.btn-validar{
    background:transparent!important;
    font-size: 20px;
    color:#DD5702!important;
    cursor: pointer;
}
.btn-validar:hover{
    background:transparent!important;
    font-size: 20px;
    color: #65C97A!important;
    cursor: pointer;
}

.btn-validado{
    background:transparent!important;
    font-size: 20px;
    color: #65C97A!important;
    cursor: pointer;
}
.btn-validado:hover{
    background:transparent!important;
    font-size: 20px;
    color: #65C97A!important;
    cursor: pointer;
}

.btn-volver {
	color:#CD6027;
	font-size: 16px;
	background-color: #fff;
	border-color: #FF6300;
	margin-bottom: 70px;
}

.btn-volver:hover {
	color:#CD6027;
	background-color: #FDF7EF;
	border-color: #FF6300;
}

.btn-volver i{
	margin-right: 14px;
}
.btn-doc.btn-default {
	color:#CD6027;
	background-color: #FDF7EF;
}
.escaneando { background-color:#D5BE45;}
.estados_base.r100 { width: 110px;}

/********** Responsivo **********/
@media (min-width: 1200px) {
    .container {
      width: 1180px;
    }
}
@media (min-width: 1450px) {
    .container {
        width: 1420px;
    }
}
@media (min-width: 1700px) {
    .container {
        width: 1660px;
    }
}
@media (min-width: 1920px) {
    .container {
        width: 1890px;
    }
}

@media (max-width: 1140px) {
.menu .nav li a {
  padding: 30px 20px;
}
}
@media screen and (max-width: 992px){
    .contenedorDetalle{
        grid-template-columns: 1fr;
        grid-row-gap: 40px;
    }
    .wp-select-request-first,.wp-select-request-second{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 810px) {
	.btnMultiImpresion, .btnDescargarDC,.btn-modal-et{
		vertical-align: top;
		display:inline-block;
		margin:0 6px 10px 0;
		position:relative;
		right: auto;
	}
}
@media screen and (max-width: 768px){
    .contenedorLogin{
        grid-template-columns: 1fr;
        height: 100vh;
    }
    .contenedorLogin .imagenGrande,
    .contenedorLogin > div:after{
        display: none;
    }
    .contenedorTabla{
        overflow-x: scroll;
    }
    .contenedorTabla table{
        width: 1200px;
    }
    footer .center{
        grid-template-columns: 170px 1fr;
        grid-row-gap: 30px;
    }
    footer ul{
        grid-row-start: 2;
        grid-column-start: 1;
        grid-column-end: 4;
        justify-self: left;
    }
    .ingresoCargaMasiva{
        grid-template-columns: 1fr 150px;
    }
    .contenedorDoble{
        grid-template-columns: 1fr 200px;
    }
    .contenedor{
        grid-template-columns: 1fr;
        height: auto;
        grid-row-gap: 100px;
        margin: 100px 0;
        text-align: center;
    }
    header .center{
        grid-template-columns: 1fr;
        justify-items: center;
    }
    header .menu{
        width: 100%;
        grid-template-columns: 1fr;
    }
    .infoUser{
        width: 100%;
        margin-bottom: 20px;
    }
    .nav{
        justify-self: center;
    }
}

@media screen and (max-width: 576px){
    .filtros{
        grid-template-columns: 1fr;
        grid-row-gap: 20px;
    }
    .titulo .btnPrimary{
        position: relative;
        width: max-content;
    }
    .datosDetalle{
        grid-template-columns: 1fr 1fr;
    }
    .datosDetalle hr{
        grid-column-end: 3;
    }
    .datosDetalle div:nth-child(5), .datosDetalle div:nth-child(9){
        grid-column-end: auto;
    }
    .datosDetalle div:nth-child(9){
        grid-column-start: 1;
    }
    .contenedorDoble,
    .primeraParte,
    .segundaParte > div,
    .segundaParte .contenedorDoble{
        display: block;
    }
    footer .center{
        display: block;
        text-align: center;
    }
}

@media (max-width: 460px) {
.menu .nav li a {
  padding: 24px 10px;
}
}
@media (max-width: 359px) {

.menu .nav li a {
  padding: 24px 4px;
}
}
