<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* body,
.bg {
    transform: translateZ(-200px);
    perspective: none;
    -webkit-perspective: none;
    transform-style: flat;
    -webkit-transform-style: flat;
} */

.prodlist {
    justify-content: center;
    text-align: center;
    z-index: 2;
}

.card {
    margin: 0;
    padding: 0;
    cursor: default;
    display: inline-block;
    perspective: 1000px;
    -webkit-perspective: 1000px;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    vertical-align: top;
    transform: translateZ(300px);
    pointer-events: none;
}

.product {
    box-sizing: content-box;
    background-color: rgb(195, 236, 255);
    border: rgb(21, 110, 184) solid 1px;
    border-radius: 10px;
    max-width: 200px;
    min-height: 18em;
    margin: 10px 7px 10px 7px;
    padding: 10px;
    text-align: center;
    pointer-events: auto;
    /* will-change: transform; */
    transition: border-color 0.5s, transform 0.5s;
}

.product strong {
    pointer-events: none;
}

.card strong {
    pointer-events: none;
}

.anim-product {
    transition: background-color 0.5s;
}

.list-img {
    cursor: default;
    display: block;
    box-sizing: content-box;
    margin: 1em auto 1em auto;
    border: 4px solid;
    border-color: rgb(0, 174, 255);
    width: 140px;
    height: 140px;
    border-radius: 100%;
    pointer-events: none;
    transition: border-color 0.5s, transform 0.5s;
}

.prod-title {
    cursor: default;
    text-align: center;
    width: 200px;
    min-height: 5em;
    margin: auto;
    margin-top: 0;
    vertical-align: top;
    font-size: 1em;
    text-align: center;
    color: rgb(3, 61, 109);
    pointer-events: none;
}

.prodlist .prod-text {
    color: black;
}

.hide-product .prod-text {
    display: none;
}

.hide-product {
    max-width: 200px;
}

.show-product {
    text-align: justify;
    max-width: 800px;
    background-color: rgb(255, 255, 255);
    border: rgb(21, 110, 184) solid 0px;
}

.show-product .list-img {
    display: inline-table;
    box-sizing: content-box;
    margin: 2em;
    border: 4px solid;
    border-color: rgb(0, 174, 255);
    min-width: 140px;
    min-height: 140px;
    border-radius: 100%;
    transition: 0.4s;
}

.show-product .prod-title {
    display: inline-table;
    text-align: left;
    width: 65%;
    margin-top: 2em;
    font-size: 1.7em;
    text-align: left;
    color: rgb(3, 61, 109);
    transition: 0s;
}

.hide-product .prod-text {
    display: none;
    text-align: justify;
    max-height: 0px;
    pointer-events: none;
    transition: 0;
}

.show-product .prod-text {
    display: block;
    text-align: justify;
    max-height: max-content;
    pointer-events: none;
    transition: 0;
}

@media(max-width: 820px) {
    .product {
        margin: 10px 0;
    }
    .show-product .prod-title {
        margin-top: 2em;
    }
}

@media(max-width: 682px) {
    .show-product .prod-title {
        margin-top: 0em;
        margin-bottom: 1em;
    }
}</pre></body></html>