<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#overlay {
    background: #fff;
    border: 1px solid #ccc;
    width: 100%;
    left: 0;
    z-index: 2900;
    display: none;
    padding: 2rem;
    box-sizing: border-box;
    margin-bottom: 30px;
    text-align: center;
    cursor: pointer;
}

#overlay h2 {
    width: 100%;
    text-align: center;
    margin-bottom: 0;
}

#overlay .item-sku {
    display: block;
    color: #999;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

#overlay .button {
    margin: 0;
    margin-bottom: 1rem;
    width: 200px;
}

#overlay em {
    font-style: normal;
    font-size: initial;
    display: block;
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-family: 'Raleway', sans-serif;
}

/* Categroy Layout */
.catTitle.pagename {
    left: 0;
    z-index: 5;
    font-family: 'BedrockRegular', Helvetica, Arial, sans-serif;
    color: #fff;
    padding-top: 80px;
    font-size: 54px;
    padding-bottom: 78px
}

/* Product / Category List */
.prodList-CatImage-Wrap {
    display: block;
    margin-bottom: 20px;
    position: relative
}

.productList-wrap {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 800px) {
    .productList-wrap {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1200px) {
    .productList-wrap {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (min-width: 1400px) {
    .productList-wrap {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

.product-wrap, .category-wrap {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.prodListTitle a {
    text-decoration: none;
    display: block;
    padding: 1rem 0;
    line-height: 1;
}

.productList-wrap .details-mainImg, .prod-Assoc .details-mainImg, .catListImage {
    border: 1px solid #ccc;
    margin-bottom: 1rem;
}

.productList-wrap .main-prodImage, .prod-Assoc .main-prodImage, .catListImage img {
    margin: 0 auto;
    height: 240px;
    object-fit: contain;
    display: block;

}

/* PRODUCT DETAILS */
.prod-Left .details-mainImg {
    border: 1px solid #ccc;
    margin-bottom: 2rem;
}

.prod-Left {
    margin-bottom: 4rem;
}

.prod-Left .main-prodImage {
    margin: 0 auto;
    height: 400px;
    width: 100%;
    object-fit: contain;
    display: block;
}

.thumb-prodImage {
    width: 50px;
    height: 50px;
    float: left;
    margin-right: 1rem;
    object-fit: cover;
    display: block;
    opacity: 1;
    transition: all ease 0.3s;
    cursor: pointer;
}

.thumb-prodImage:hover {
    opacity: 0.6;
}

.ecomPag {
    width: 100%;
    text-align: center;
    background: #eee;
    border: 1px solid #ccc;
    padding-top: 10px;
    padding-bottom: 10px;
    clear: both;
    display: none;
}

.prod-Price {
    color: #9c0205;
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top:auto;
    line-height: 1;
}

.product-details-wrap .prod-Price {
    color: #9c0205;
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.prod-Price .origprice {
    text-decoration: line-through;
    opacity: 0.5;
    color:#333;
}

.prod-Price .saleprice {
    font-size: 120%;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.prod-Price .saleprice:after {
    content: "Sale";
    text-transform: uppercase;
    background: #9c0205;
    display: inline-flex;
    font-size: 60%;
    color: #fff;
    padding: .25rem 1rem;
    border-radius: .5rem;
}

.prod-Options {
    padding: 2rem 0;
    font-weight: 700
}

.optionText {
    display: block
}

.prod-Options iframe {
    display: none
}

.column {
    float: none;
    margin: 0;
    padding: 0;
    font-weight: 400;
    padding-top: 5px;
    display: block
}

.prod-Qty-Wrap {
}

.prod-Qty {
    width: 100%;
    font-weight: 700
}

.prod-Qty input {
    width: 50px
}

.prod-AddtoCart {
    display: block;
    padding-top: 10px
}

.prod-Description {
    padding-top: 20px
}

/* Associated Products */
.prod-Assoc-Wrap {
    height: auto !important;
    height: 80px;
    margin-top: 20px;
    min-height: 80px;
    padding: 10px
}

.prod-Assoc-Wrap .thumb-prodImage {
    display: none;
}

.prod-Assoc-Title {
    border-bottom: 1px solid #ccc;
    font-size: 35px;
    margin-bottom: 30px;
    padding-bottom: 10px;
    color: #9c0205;
    font-family: 'BedrockRegular', Helvetica, Arial, sans-serif;
    font-weight: 400
}

.prod-Assoc {
    height: auto !important;
    height: 80px;
    min-height: 80px;
    text-align: center
}

.assocProdList-Wrap {
    float: left;
    width: 200px
}

.assocProdImage img {
    margin: 0 auto;
    margin-bottom: 2rem;
    width: auto;
    height: 100px;
}

/* Cart */

/* mini cart */

#right-side #sidebar {
    position: sticky;
    top:0;
    background: #e9eeee;
    padding: 2rem;
}

.minicart-itemWrap {
    position: relative;
    border-bottom: 1px solid #ccc;
    dispaly: block;
    padding: 1rem 0;
    padding-left: 50px;
}

.minicart-Qty {
    width: 40px;
    height: 20px;
    background: #9C0205;
    color: #fff;
    font-size: 1.4rem;
    border-radius: 10rem;
    text-align: center;
    display: block;
    position: absolute;
    left: 0;
    font-weight: 600;
}

.minicart-prodName a {
    display: block;
}

.minicart-itemTotal {
    display: block;
    clear: both;
    text-align: left;
}

.minicartNum {
    display: none;
}

.minicart-Qty {
}

.minisubtotal-Wrap {
    padding-top: 20px;
    display: block;
    padding-bottom: 10px;
    font-weight: bold;
}

.minicart-prodName {
    display: block;
    text-align: left;
    font-weight: bold;
    float: left;
}

/* end min cart */


</pre></body></html>