html, body {
    background-color: white;
    padding: 0;
    margin: 0;
}

.padded {
    padding: 40px 0;
}

.header {
    padding-top: 20px;
}

.header a {
    color: #B22535;
    text-decoration: none;
}

.header a:hover {
    color: black;

}

.container{
    width: 990px;
    max-width: 80%;
}

.h1Spaced {
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.h3Spaced {
    padding-bottom: 20px;
    margin-bottom: 35px;
}

.h1 {
    font-size: 50px;
    font-weight: 600;
    color: #54565A;
    text-align: left;
    position: relative;
}

.h3 {
    font-size: 24px;
    font-weight: 600;
    color: #B22535;
    text-align: left;
    position: relative;

}

.h1.underlined:after {
    content: '';
    display: block;
    width: 180px;
    height: 4px;
    position: absolute;
    bottom: 4px;
    left: 0;
    background-color: #B22535;
    transform: translateX(0%);
    animation: fadeIn;
    animation-duration: 2s;
}


.h3.underlined:after {
    content: '';
    display: block;
    width: 180px;
    height: 4px;
    position: absolute;
    bottom: 4px;
    left: 0;
    background-color: #B22535;
    transform: translateX(0%);
    animation: fadeIn;
    animation-duration: 2s;
}

.halfWidth {
    width: 400px;
    max-width: 100%;
    color: #B22535;
}


.listDetProds {
   list-style: none;
    padding-left: 0;
}

.listDetProds li span {
    font-weight: bold;

}

.scannedProductsList {
    column-count: 2;
}

.scannedProductsList li {
    padding: 0 20px 10px 0;
    font-weight: bold;
}

.scannedProductsList li small{
    font-weight: normal;
    display: block;
    clear: both;

}


.scannedProductsList li a {
    color: #B22535;
    text-decoration: none;
}

.scannedProductsList li a {
    color: #B22535;
    text-decoration: none;
}

.scannedProductsList li a:hover {
    color: black;
}

.imageQr {
    width: 400px;
    height: auto;
}

.shopButton,
.documentLink{
    background-color: rgb(84, 86, 90);
    border: none;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, .5);
    text-decoration: none;
    color: #FFFFFF;
    padding: 5px 35px;
    transition: all .25s ease-in-out;
    display: inline-block;
    opacity: 1;
}

.shopButton:hover,
.documentLink:hover{
    background-color: #B22535 ;
    color: #FFFFFF;
}








.documentLink {
    display: flex;
    justify-content: space-between;
}

.documentLink > div {
   width: calc(100% - 40px);
}

.documentLink img,
.documentLink svg {
   width: 25px;
}


.spanDocumentDetail {
    font-size: 11px;
    display: block;
}

.swalConfig {
    padding: 40px 80px;
}

a.logoFooter svg {
    margin-bottom: 8px;
}

a.linkWebFooter {
    text-decoration: none;
    color: #55575a;
    font-size: 12px;
}

a.linkWebFooter:hover {
    color: #B22535;
}



.legalLinksFooter {
    list-style: none;
    display: flex;
    justify-content: center;
    font-size: 11px;
    padding-left: 0;

}

.legalLinksFooter li + li:before {
    content: " | ";
    padding: 0 4px;
}

.legalLinksFooter li a {
    text-decoration: none;
    color: #55575a;
}

.legalLinksFooter li a:hover {
    color: #B22535;
}







@media screen and (max-width: 768px) {
    .container{
        max-width: calc(100% - 30px);
    }

    .scannedProductsList {
        column-count: 1;
    }

}

