html{
    font-size: 62.5%;
    box-sizing: border-box;
}
*, *::before, *:after{
    box-sizing: inherit;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    /* line-height: 1; */
}

h1 {
    font-size: 3.8rem;
}

h2{
    font-size: 2.8rem;
}

h3 {    
    font-size: 1.8rem;
}

h1,h2,h3 {
    text-align: center;
}

.principal-form {
    font-size: 2rem;
}

.contenedor {
    max-width: 120rem;
    margin: 0 auto;
}

.campos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-items: center;
    column-gap: 1rem;
}

.campo:nth-child(3) {
    grid-column: 1 / 3;
}

@media (min-width: 768px) {
    .campos {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
        justify-items: center;
        column-gap: 1rem;
    }
}

.campo {
    width: 100%;
}

.formulario fieldset {
    border: none;
}

.input-text {
    width: 100%;
    padding: 1.2rem 1rem;
    border-radius: 0.3rem;
}
@media (min-width:768px ) {
    .input-text {
    width: 100%;
    padding: 1.2rem 3rem;
    border-radius: 0.3rem;
}
}

.btn {
    padding: 1.4rem 3rem;
    font-size: 2rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: .5rem;
    width: 100%;
    text-align: center;
    border: none;
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c;
}

.btn:hover {
    cursor: pointer;
}

.qr{
    font-size: 1.8rem;
    background-color: #fdfdfd;
    border: 1px solid #828282;
    border-radius: 3px;
}

.footer {
    text-align: center;
    font-size: 1.8rem;
}

.principal-tabla {
    font-size: 1.8rem;
    padding-left: 0.1rem;
    padding-right: 0.1rem;
}

.table {
    margin-left: auto;
    margin-right: auto;
}

@media (min-width:768px ) {
    .table {
    margin-left: auto;
    margin-right: auto;
    table-layout: fixed;
    width: 100%;
}
}

th, td {
  border-bottom: 1px solid #ddd;
}

.th-imagen {
}

.td-cantidad {
    text-align: center;
}

@media (min-width:768px ) {
    .informacion-etiqueta {
    }
}

.informacion-etiqueta {
    display: flex;
    flex-direction: column;
    font-size: 1.5rem;
    align-items: center
}

.datoDesti {
    margin-block-start: 0.2em;
    margin-block-end: 0.2em;
    width: 90%;
}

.datoDesti:nth-child(odd) {background-color: #f2f2f2;}

.img-pro {
    height: 20rem;
}
@media(max-width: 768px) {
	.img-pro {
    height: 9rem;
}
}

#qr-reader {
    width: 640px;
    margin-top: 1rem;
}

@media(max-width: 768px) {
	#qr-reader {
	    margin-top: 1rem;
		width: 300px;
	}
}
.empty {
    display: block;
    width: 100%;
    height: 20px;
}
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}
.alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}
.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.loading {
    display: grid;
    justify-items: center;
}

.loading-img {
    width: 20%;
}

@media (min-width: 768px) {
    .loading-img {
        width: 12%;
    }
}