<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#product {
    background-color: #fff;
    padding: 40px;
    font-size: 1.4rem;
}
#product input, select {
    padding: 12px 10px;
    border-radius: 0;
    font-size: 1.4rem;
}
#product input:focus, select:focus {
    border-color: #14a3e8;
    box-shadow: inset 0 1px 0 0 rgba(63,63,68,0.05);
}

#product h1 {
    font-weight: normal;
    font-size: 2.0rem;
    margin: 0;
}
#product .title {
    font-weight: bold;
}

#product .section-header {
    padding-bottom: 20px;
}

#product .section-footer {
    padding-top: 20px;
}

#product .section-content {
    display: flex;
    flex-direction: row;
    align-content: stretch;
}

#product .section-left {
    flex: 1.5;
    box-sizing: border-box;
    padding-right: 10px;
}

#product .section-right {
    flex: 1;
    box-sizing: border-box;
    padding-left: 10px;
}

/* Breadcrumbs */
#product .breadcrumbs {
    font-size: 1.2rem;
}
    #product .breadcrumbs a:hover {
        text-decoration: underline;
    }
    #product .breadcrumbs .break {
        font-size: 1rem;
    }


/* Description */
#product .description {
    margin-top: 20px;
}

/* Price */
#product .price {
    font-size: 4.0rem;
}
#product .price div { display: inline-block; }

/* Add to cart */
#product .addButton {
    box-sizing: border-box;
    margin-top: 20px;
    background-color: #14a3e8;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 1.6rem;
    cursor: pointer;
}
#product .addButton.outOfStock {
    background-color: #b1b1b1;
    color: #fff;
    cursor: default;
}


#product .quantity {
    font-size: 1.2rem;
    font-style: italic;
    text-align: right;
}
#product .quantity div { display: inline-block; }
#product .quantity div['data-field'] { font-weight: bold; }


/* Options */
#product .options {
    margin-top: 40px;
}
#product .option-item {
    margin-top: 20px;
}
#product .option-item select {
    margin-top: 5px;
    width: 100%;
}

/* Image main */
#product .product-image-main {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
}
    #product .product-image-main .inner {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        text-align: center;
        cursor: pointer;
    }
    #product .product-image-main img {
        object-fit:contain;
        height: 99999px;
        max-height: 100%;
        max-width: 100%;
    }
    #product .product-image-main .image-next,
    #product .product-image-main .image-prev {
        position: absolute;
        top: 0;
        width: 50%;
        height: 100%;
        color: rgba(95,95,95,0.16);
    }
    #product .product-image-main .image-next { right: 0; }
    #product .product-image-main .image-prev { left: 0; }
    #product .product-image-main .image-next:hover .icon,
    #product .product-image-main .image-prev:hover .icon { color: #3a3a3a; }
    #product .product-image-main .image-next .icon,
    #product .product-image-main .image-prev .icon {
        position: absolute;
        top: 50%;
        margin-top: -20px;
        font-size: 40px;
    }
    #product .product-image-main .image-next .icon { right: 0; }
    #product .product-image-main .image-prev .icon { left: 0; }



/* Images thumbnails */
#product .product-image-thumbnails {
    padding-top: 20px;
}
    #product .product-image-thumbnails .thumbnail {
        display: inline-block;
        padding: 5px;
        border: 1px rgba(255,255,255,0) solid;
    }
    #product .product-image-thumbnails .thumbnail.selected {
        border-color: #3a3a3a;
    }
    #product .product-image-thumbnails .thumbnail:not(.selected):hover {
        /*border-color: #b1b1b1;*/
        cursor: pointer;
    }
    #product .product-image-thumbnails .thumbnail img {
        display: block;
    }

/* Tabs */
#product .section-tabs {
    display: flex;
    flex-direction: row;
    align-content: stretch;
    margin: 0;
    margin-top: 40px;
    padding: 0;
    font-weight: bold;
    font-size: 1.4rem;
    color: #3a3a3a;
    list-style-type: none;
}
    #product .section-tabs li {
        flex: 1;
        box-sizing: border-box;
        padding: 10px 20px;
        border-bottom: 1px #b1b1b1 solid;
    }
    #product .section-tabs li.selected {
        color: #14a3e8;
        border-bottom: 2px #14a3e8 solid;
    }
    #product .section-tabs li:not(.selected):hover {
        border-bottom: 2px #3a3a3a solid;
        cursor: pointer;
    }
    #product .section-tab-content {

    }
    #product .section-tab-content .item {
        display: none;
        padding: 10px;
        min-height: 200px;
    }
    #product .section-tab-content .item.selected {
        display: block;
    }
</pre></body></html>