﻿

/* ************************************************** */
/*                    Hero Image                      */
/* ************************************************** */
.pnlHeroImage img {
    width: 100%;
    margin: 20px 0px;
}



/* ************************************************** */
/*                    Info Panel                      */
/* ************************************************** */

.h1InfoPanel {
    color: #222;
    font-size: 1.7em;
}

.pnlMainInfo {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0;
    border-bottom: 1px solid #ddd;
}

.pnlInfo {
    flex: 1 0 280px;
    margin: 0px 10px;
}

    .pnlInfo p:first-of-type {
        margin-top: 5px;
    }

.pnlInfoVideo {
    flex: 0 0 280px;
    margin: 0 auto;
}

.vidPlaceholderImage {
    display: inline-block;
    height: 200px;
    width: auto;
    margin: 3px 10px;
    border: 2px solid #fff;
    background-color: #ddd;
    box-shadow: 2px 2px 2px rgba(0,0,0,.6);
    transition: all .3s ease;
    z-index: 5;
    position: relative;
}

.vidThumb {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    z-index: 1;
    cursor: pointer;
}

.playLogo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 30%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    z-index: 2;
    transition: all .3s ease;
    cursor: pointer;
}

.vidPlaceholderImage:hover .playLogo {
    transform: translateX(-50%) translateY(-50%) scale(1.1);
}

/* ************************************************** */
/*               Example Products Panel               */
/* ************************************************** */
.pnlProductLinks {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 20px 0px 0px;
    margin: 30px 0px 20px;
    /*border-top: 1px solid #ddd;*/
    /*border-bottom: 1px solid #ddd;*/
}

.pnlExampleProduct {
    flex: 1 0 25%;
    min-width: 200px;
    margin-top: 10px;
    transition-duration: 0.2s;
}

.pnlExampleProduct:hover {
    transform: scale(0.95);
}

.lnkExampleProduct {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: #000;
}

.pnlExampleProductImage {
    flex: 0 0 auto;
    align-items: center;
    /*height: 150px;*/
    height: 250px;
    width: 150px;
    overflow: hidden;
    /*border-radius: 75px;*/
    position: relative;
    background-color: #ddd;
}

.imgExampleProductImage {
    /*height: 200px;
    position: relative;
    top: -20px;*/
    height: 250px;
}

.pnlExampleProductInfo {
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
    margin: 10px 0px;
}

.lblExampleProductFabric {
    font-size: 1.05em;
    font-weight: 600;
    color: #8dc63f;
    margin-bottom: 5px;
}

.lblExampleProductPrice {
    font-size: 0.95em;
}

.lblExampleProductClick {
    color: #8dc63f;
    font-size: 0.95em;
    margin-top: 5px;
    font-weight: 600;
}

.pnlShopAllButtonRow {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.lnkShopAllButton {
    color: #fff;
    background-color: #8dc63f;
    padding: 10px 20px;
}

/* ************************************************** */
/*                   Review Panels                    */
/* ************************************************** */
.pnlReviews {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 10px 0px 20px;
}

.pnlBadge {
    flex: 1 0 240px;
}

.pnlBadge:not(:last-child) a {
    padding: 0px 5px;
    border-right: 1px solid #79787b;
}

/*.pnlBadge > a {
    display: flex;
    flex-direction: row;
    height: 100%;
    align-items: flex-start;
    color: #8dc63f;
    text-decoration: none;
}*/

.pnlBadge > a {
    display: block;
    height: 100%;
    color: #8dc63f;
    text-decoration: none;
}

.pnlReviewBadge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px 15px;
    font-size: 14px;
}

.imgReviewStars {
    height: 20px;
    padding: 0px 0px 5px;
}

.pnlClickNotice {
    font-size: 11px;
    margin: 0px 0px 10px;
    padding: 0px;
}

.pnlQuote {
    display: inline-block;
    text-align: center;
    height: 18px;
    width: 18px;
    border-radius: 9px;
    overflow: hidden;
}

    .pnlQuote p {
        display: inline-block;
        font-family: serif;
        font-size: 40px;
        line-height: 40px;
        margin: 0;
        transform: translateY(-4px);
    }

.pnlReviewContent {
    max-width: 100%;
}

.pnlReviewContent > p {
    display: inline;
    line-height: 25px;
    font-style: italic;
    color: #444;
}

.pnlReviewAttribution {
    line-height: 25px;
    width: 100%;
    text-align: right;
    color: #666;
}


/* ************************************************** */
/*                   Footer Panels                    */
/* ************************************************** */
.imgFooter {
    width: 100%;
}