/**
/** Desktop styles
///////////////////////////////////////////////*/
/**
/** HP Section 1 - Polartec
///////////////////////////////////////////////*/

.hp-content-block {
    display: flex;
    padding: 40px 100px;
}

    .hp-content-block .hp-content-block-center {
        width: 100%;
        padding: 0;
    }

        .hp-content-block .heading-2 {
            color: var(--darkpurple);
        }

            .hp-content-block .heading-2 > span {
                font-size: 12px;
                vertical-align: super;
            }

    .hp-content-block .hp-content-block-center .heading-2 {
        color: var(--darkpurple);
        text-align: center;
    }

    .hp-content-block .hp-content-block-center .verbiage-copy {
        font-size: var(--baseFontSize);
        line-height: 26px;
        text-align: center;
    }

        .hp-content-block .hp-content-block-center .verbiage-copy > span > a {
            font-weight: 600;
        }

        .hp-content-block .hp-content-block-center .verbiage-copy .reg-stock,
        .hp-content-block .hp-content-block-center .verbiage-copy .limited-stock {
            font-weight: 600;
            color: var(--darkpurple);
            cursor: default;
            display: inline-block;      
        }

            .hp-content-block .hp-content-block-center .verbiage-copy .reg-stock > .msg-reg-stock,
            .hp-content-block .hp-content-block-center .verbiage-copy .limited-stock > .msg-limited-stock {
                position: absolute;
                background-color: rgba(51,54,121,.95);
                border: solid 1px rgba(51,54,121,1);
                border-radius: var(--buttonBorderRadius);
                padding: 30px;
                max-width: 500px;
                transition-duration: .3s;
                transition-timing-function: ease-in-out;
                transition-property: visibility opacity;
                visibility: hidden;
                opacity: 0;
                z-index: 101;
                /*left: calc(50% - 250px);*/
            }

            .hp-content-block .hp-content-block-center .verbiage-copy .reg-stock:hover .msg-reg-stock,
            .hp-content-block .hp-content-block-center .verbiage-copy .limited-stock:hover .msg-limited-stock {
                visibility: visible;
                opacity: 1;
            }

            .hp-content-block .hp-content-block-center .verbiage-copy .reg-stock > .msg-reg-stock a,
            .hp-content-block .hp-content-block-center .verbiage-copy .limited-stock > .msg-limited-stock a {
                color: #bbb;
            }

                .hp-content-block .hp-content-block-center .verbiage-copy .reg-stock > .msg-reg-stock a:hover,
                .hp-content-block .hp-content-block-center .verbiage-copy .limited-stock > .msg-limited-stock a:hover {
                    color: #ddd;
                }

            .hp-content-block .hp-content-block-center .verbiage-copy .reg-stock > .msg-reg-stock > span::before, /* 'x' close button */
            .hp-content-block .hp-content-block-center .verbiage-copy .limited-stock > .msg-limited-stock > span::before {
                content: '\f057';
                font-family: 'Font Awesome';
                text-transform: uppercase;
                color: #fff;
                position: absolute;
                right: 11px;
                top: 8px;
                font-size: 1.4em;
                opacity: .5;
            }

                .hp-content-block .hp-content-block-center .verbiage-copy .reg-stock > .msg-reg-stock > span:hover::before,
                .hp-content-block .hp-content-block-center .verbiage-copy .limited-stock > .msg-limited-stock > span:hover::before {
                    opacity: .9;
                }

            .hp-content-block .hp-content-block-center .verbiage-copy .reg-stock > .msg-reg-stock > h2,
            .hp-content-block .hp-content-block-center .verbiage-copy .limited-stock > .msg-limited-stock > h2 {
                text-transform: uppercase;
                color: #fff;
                padding: 0;
                margin: 0 0 20px;
            }

            .hp-content-block .hp-content-block-center .verbiage-copy .reg-stock > .msg-reg-stock > p,
            .hp-content-block .hp-content-block-center .verbiage-copy .limited-stock > .msg-limited-stock > p {
                color: #eee;
                font-weight: 500;
                font-size: 16px;
                padding: 0;
                margin: 0;
            }

    .hp-content-block .hp-content-block-center .customers-wrapper {
        display: flex;
        width: 60%;
        margin: 0 auto;
        padding: 30px 0;
        border-bottom: 1px solid var(--lightgrey);
    }

        .hp-content-block .hp-content-block-center .customers-wrapper .new-customers,
        .hp-content-block .hp-content-block-center .customers-wrapper .returning-customers {
            text-align: center;
            width: 50%;
            display: flex;
            flex-direction: column-reverse;
            justify-content: center;
            position: relative;
            transition-duration: .3s;
            transition-timing-function: ease-in-out;
            transition-property: opacity;
            opacity: 1;
        }

        .hp-content-block .hp-content-block-center .customers-wrapper .new-customers:hover,
        .hp-content-block .hp-content-block-center .customers-wrapper .returning-customers:hover {
            opacity: .8;
        }

            .hp-content-block .hp-content-block-center .customers-wrapper .new-customers > p,
            .hp-content-block .hp-content-block-center .customers-wrapper .returning-customers > p {
                text-transform: capitalize;
                margin: 16px 0 0;
                color: #555;
                font-size: 20px;
                font-weight: 600;
            }

            .hp-content-block .hp-content-block-center .customers-wrapper .returning-customers > span {
            }

                .hp-content-block .hp-content-block-center .customers-wrapper .new-customers > span::before,
                .hp-content-block .hp-content-block-center .customers-wrapper .returning-customers > span::before {
                    content: '\f067';
                    font-family: 'Font Awesome';
                    display: block;
                    width: 54px;
                    height: 54px;
                    line-height: 54px;
                    color: #fff;
                    margin: 0 auto;
                    border-radius: 20px;
                    font-size: 24px;
                }

            .hp-content-block .hp-content-block-center .customers-wrapper .new-customers > span::before {
                content: '\f067';
                background-color: var(--lightpurple);
            }

            .hp-content-block .hp-content-block-center .customers-wrapper .returning-customers > span::before {
                content: '\f00c';
                background-color: var(--darkpurple);
            }

             /**
             /** make divs into clickable buttons
             /** re-used throughout (divs need 'position: relative;' to work)
             ///////////////////////////////////////////////*/
            .hp-content-block .hp-content-block-center .customers-wrapper .new-customers > span > a,
            .hp-content-block .hp-content-block-center .customers-wrapper .returning-customers > span > a {
                position: absolute;
                width: 100%;
                height: 100%;
                top: 0;
                left: 0;
                text-decoration: none; /* No underlines on the link */
                z-index: 10; /* Places the link above everything else in the div */
                background-color: transparent; /* Fix to make div clickable in IE */
                opacity: 1; /* Fix to make div clickable in IE */
                filter: alpha(opacity=1); /* Fix to make div clickable in IE */
            }

    .hp-content-block .hp-content-block-left {
        width: 50%;
        padding: 0;
    }

    .hp-content-block .hp-content-block-right {
        background-color: #999;
        width: 50%;
        color: #fff;
        padding: 20px 50px 40px;
    }

        .hp-content-block .hp-content-block-left .verbiage-copy {
            font-size: var(--baseFontSize);
            line-height: 26px;
        }

            .hp-content-block .hp-content-block-left .verbiage-copy > a {
                font-weight: 600;
            }

    
/**
/** HP Section 2 - Mill News
///////////////////////////////////////////////*/

.news-block-wrapper {
    background-color: var(--lighttan);
    padding: 50px 0;
}
    .news-block-wrapper .hp-content-block {
        padding: 0 100px;
    }

    .news-block-wrapper .hp-content-block.center {
        justify-content: center; /* flex box */
        padding: 0 100px 40px;
    }

    .news-block-wrapper .hp-content-block .heading-1 {
        color: var(--darkpurple);
        text-align: center;
    }

        .news-block-wrapper .hp-content-block .news-date {
            color: var(--mainTextGrey);
            margin: 0 0 var(--baseWrapperMargin) 0;
        }

    .news-block-wrapper .hp-content-block .hp-content-block-left {
        padding: 0 40px 0 0;
    }

    .news-block-wrapper .hp-content-block .hp-content-block-right {
        background-color: transparent;
        padding: 0 0 0 40px;
    }

        .news-block-wrapper .hp-content-block .heading-2 {
            color: var(--darkpurple);
        }

            .news-block-wrapper .hp-content-block .heading-2 > span {
                font-size: 12px;
                vertical-align: super;
            }

        .news-block-wrapper .hp-content-block .hp-content-block-right .verbiage-copy {
            font-size: var(--baseFontSize);
            line-height: 26px;
            color: var(--mainTextGrey);
        }

            .news-block-wrapper .hp-content-block .hp-content-block-right .verbiage-copy > a {
                font-weight: 600;
            }

            .news-block-wrapper .hp-content-block .heading-4 {
                color: var(--darkpurple);
            }

            .news-block-wrapper .hp-content-block .heading-5 {
                color: var(--darkpurple);
            }


/**
/** HP Section 3 - Images Block
///////////////////////////////////////////////*/

.img-block-wrapper {
}

    .img-block-wrapper .hp-content-block {
    }

        .img-block-wrapper .hp-content-block .img-block-left {
            width: 51.5%;
            background-color: #ccc;
        }

            .img-block-wrapper .hp-content-block .img-block-left .img1 { 
            }

                .img-block-wrapper .hp-content-block .img-block-left .img1 > a img {
                    width: 100%; /* scale img to fit div */
                    opacity: 1;
                    transition: opacity .5s ease-out;
                    -moz-transition: opacity .5s ease-out;
                    -webkit-transition: opacity .5s ease-out;
                    -o-transition: opacity .5s ease-out;
                }

                .img-block-wrapper .hp-content-block .img-block-left .img1 > a img:hover {
                    opacity: .7;
                }

        .img-block-wrapper .hp-content-block .img-block-right {
            width: 53%;
            display: flex;
            flex-flow: row wrap;
        }

            .img-block-wrapper .hp-content-block .img-block-right > * {
                max-width: 50%; /* leave white space gap */
                text-align: right;
            }

            .img-block-wrapper .hp-content-block .img-block-right .img2 {
                order: 1;
            }

            .img-block-wrapper .hp-content-block .img-block-right .img3 {
                order: 2;
            }

            .img-block-wrapper .hp-content-block .img-block-right .img4 {
                order: 3;
            }

            .img-block-wrapper .hp-content-block .img-block-right .img5 {
                order: 4;
            }

                .img-block-wrapper .hp-content-block .img-block-right * > img {
                    max-width: 94%; /* leave white space gap */
                    background-color: #ccc;
                    opacity: 1;
                    transition: opacity .5s ease-out;
                    -moz-transition: opacity .5s ease-out;
                    -webkit-transition: opacity .5s ease-out;
                    -o-transition: opacity .5s ease-out;
                }

                .img-block-wrapper .hp-content-block .img-block-right * > img:hover {
                    opacity: .7;
                }

                .img-block-wrapper .hp-content-block .img-block-right .img2 > a img,
                .img-block-wrapper .hp-content-block .img-block-right .img3 > a img {
                    margin-bottom: 6%;
                }

                .img-block-wrapper .hp-content-block .img-block-right div:nth-child(2n+1) > a img { /* odd elements */
                    /*padding-right: 5%;*/
                }


/**
/** HP Section 4 - From Our Customers
///////////////////////////////////////////////*/

.brick-background-wrapper {
    background-image: url(../img/homepage/Bricks-510x510.jpg);
}

    .brick-background-wrapper .hp-content-block {
        flex-direction: column;
    }

    .brick-background-wrapper .testimonials-wrapper {
        color: #fff;
        text-align: center;
        max-width: 900px;
        padding: 50px 100px 60px;
    }

        .brick-background-wrapper .testimonials-wrapper .heading-3 {
            text-transform: uppercase;
            color: #fff;
        }

        .brick-background-wrapper .testimonials-wrapper .testimonials-headshot {
            width: 90px;
            height: 90px;
            margin: 20px auto 30px;
        }

            .brick-background-wrapper .testimonials-wrapper .testimonials-headshot > img {
                width: 100%;
                height: 100%;
            }

        .brick-background-wrapper .testimonials-wrapper .testimonials-copy {
            font-size: var(--baseFontSize);
            line-height: 26px;
        }


/**
/** HP Section 5 - Contact / Map Block
///////////////////////////////////////////////*/
.hp-content-block.location {
    display: flex;
    padding: 40px 100px;
}

    .hp-content-block.location .hp-content-block-left {
        padding: 20px 50px 20px 0;
    }

        .hp-content-block.location .hp-content-block-left .heading-2 {
            color: var(--darkpurple);
        }

        .hp-content-block.location .hp-content-block-left .address,
        .hp-content-block.location .hp-content-block-left .telephone,
        .hp-content-block.location .hp-content-block-left .email {
            font-size: 16px;
            position: relative;
        }

            .hp-content-block.location .hp-content-block-left .email.mobile {
                display: none;
            }

        .hp-content-block.location .hp-content-block-left .address {
            margin: 30px 0 0 30px;
        }

            .hp-content-block.location .hp-content-block-left .address::before {
                font-family: 'Font Awesome';
                content: '\f041';
                font-size: 30px;
                position: absolute;
                top: -7px;
                left: -30px;
            }

        .hp-content-block.location .hp-content-block-left .telephone {
            margin: 15px 0 0 30px;
        }

            .hp-content-block.location .hp-content-block-left .telephone::before {
                font-family: 'Font Awesome';
                content: '\f10b';
                font-size: 32px;
                position: absolute;
                top: -13px;
                left: -27px;
            }

        .hp-content-block.location .hp-content-block-left .email {
            margin: 15px 0 0 30px;
        }

            .hp-content-block.location .hp-content-block-left .email::before {
                font-family: 'Font Awesome';
                content: '\f003';
                font-size: 22px;
                position: absolute;
                top: -5px;
                left: -31px;
            } 

                .hp-content-block.location .hp-content-block-left .email > a {
                    font-weight: 600;
                }

    .hp-content-block.location .hp-content-block-right {
        background-color: transparent;
        padding: 20px 0;
    }

/* Google map */
.mapouter {
}

    .mapouter .gmap_canvas {
    }

    .mapouter .gmap_canvas > iframe {
        width: 100%;
        height: 400px;
    }

#homepageFeatured2 .ad {
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
}

#homepageFeatured3 {
    margin-top: 30px;
    min-height: 300px
}

    #homepageFeatured3 h3 {
        margin-bottom: 0;
    }

#homepageFeatured3 .row {
    padding-bottom: 20px;
}

#homepageFeatured3 .row section {
    text-align: center;
    font-family: "texgyreadventorregular", sans-serif;
    font-weight: 700;
    font-size: 30px;
    position: relative;
}

    #homepageFeatured3 .row section .swiper-left {
        position: absolute;
        left: 0;
        top: 60px;
        background: #fff;
        padding: 5px 15px 10px;
        z-index: 100;
        font-size: 30px;
        line-height: 50px;
        cursor: pointer;
        -webkit-box-shadow: 6px 0 4px 1px rgba(0, 0, 0, 0.4);
        -moz-box-shadow: 6px 0 4px 1px rgba(0, 0, 0, 0.4);
        box-shadow: 6px 0 4px 1px rgba(0, 0, 0, 0.4);
        border-radius: 0 30px 30px 0;
        -moz-border-radius: 0 30px 30px 0;
        -webkit-border-radius: 0 30px 30px 0;
    }

#homepageFeatured3 .row section .swiper-left.inactive {
    color: #ccc
}

#homepageFeatured3 .row section .swiper-right {
    position: absolute;
    right: 0;
    top: 60px;
    background: #fff;
    padding: 5px 15px 10px;
    z-index: 100;
    font-size: 30px;
    line-height: 50px;
    cursor: pointer;
    -webkit-box-shadow: -6px 0 4px 1px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: -6px 0 4px 1px rgba(0, 0, 0, 0.4);
    box-shadow: -6px 0 4px 1px rgba(0, 0, 0, 0.4);
    border-radius: 50px 0 0 50px;
    -moz-border-radius: 30px 0 0 30px;
    -webkit-border-radius: 30px 0 0 30px;
    border: 0 solid #000;
}

#homepageFeatured3 .row section .swiper-right.inactive {
    color: #ccc
}

#homepageFeatured3 .row section .featured-products,
#homepageFeatured3 .row section .related-products {
    margin: 20px auto 0;
    overflow: hidden;
}

#homepageFeatured3 .row section .featured-products a .description,
#homepageFeatured3 .row section .related-products a .description {
    color: #555;
    font-size: 14px;
    font-weight: normal;
    display: block;
    padding-top: 5px;
    width: 200px;
    margin: 0 auto;
    font-weight: bold;
}

#homepageFeatured3 .row section .featured-products a .sku,
#homepageFeatured3 .row section .related-products a .sku {
    font-size: 12px;
    color: #999;
    display: block;
}

#homepageFeatured3 .row section .featured-products a .price,
#homepageFeatured3 .row section .related-products a .price {
    color: #555;
    font-size: 14px;
    display: block;
    font-weight: normal;
}

    #homepageFeatured3 .row section .featured-products a .price .was,
    #homepageFeatured3 .row section .related-products a .price .was {
        font-weight: normal;
        color: #cc2222;
        text-decoration: line-through;
    }

    #homepageFeatured3 .row section .featured-products a .price .now,
    #homepageFeatured3 .row section .related-products a .price .now {
        font-weight: bold;
    }

#homepageFeatured3 .row section .featured-products a:hover,
#homepageFeatured3 .row section .related-products a:hover {
    text-decoration: none;
}

#homepageFeatured3 .row section h2 {
    font-family: "texgyreadventorregular", sans-serif;
    margin-top: 0;
}

#homepageFeatured4 {
    margin-bottom: 30px;
}

    #homepageFeatured4 .ad {
        -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
        -moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
        box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
    }

#homepageFeatured5 {
    margin-bottom: 30px;
}

#homepageFeatured5 .ad {
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
}

#homepageFeatured6 {
    margin-bottom: 50px;
}

    #homepageFeatured6 .ad {
        -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
        -moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
        box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
    }

.slider-fullwidth {
    background: #f4f4f4;
    position: relative;
    width: 1200px;
    margin: 0 auto;
}

.slider-fullwidth .arrow-left,
.slider-fullwidth .arrow-right {
    width: 100px;
    height: 132px;
    display: block;
    background: #173661;
    opacity: 0.3;
    filter: alpha(opacity=30);
    background: url('../img/homepage/slider/hp-slideshow-arrow.png') no-repeat 0 0;
    position: absolute;
    top: 100px;
    z-index: 100;
    outline: 0;
}

.slider-fullwidth .arrow-left {
    left: 0;
    top: 23%;
}

.slider-fullwidth .arrow-right {
    right: 0;
    top: 23%;
    background-position: -100px 0;
}

    .slider-fullwidth .arrow-left:hover,
    .slider-fullwidth .arrow-right:hover {
        opacity: .6;
        filter: alpha(opacity=60);
    }

.slider-fullwidth .inner img {
    width: 100%;
    max-width: 1400px;
}

.sign-up .frm {
    position: absolute;
    top: 235px;
    padding-left: 5%;
    width: 100%;
    font-size: 0;
}

.sign-up .frm .left {
    width: 70%;
    font-size: 16px;
    float: left;
}

.sign-up .frm .left input {
    width: 100%;
    height: 34px;
    -webkit-border-radius: 0;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius: 0;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-bottomleft: 5px;
    border-radius: 0;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px
}

.sign-up .frm .right {
    width: 20%;
    font-size: 16px;
    float: left;
}

.sign-up .frm .right input {
    width: 100%;
    text-align: center;
    height: 34px;
    -webkit-border-radius: 5px;
    -webkit-border-top-left-radius: 0;
    -webkit-border-bottom-left-radius: 0;
    -moz-border-radius: 5px;
    -moz-border-radius-topleft: 0;
    -moz-border-radius-bottomleft: 0;
    border-radius: 5px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.sign-up .bb {
    width: 100%;
}

body .swiper-container .swiper-slide .inner {
    display: block;
}

.hp-midbar {
    background: #32261a;
    margin-bottom: 6px;
}

    .hp-midbar .text {
        color: #cebb81;
        font-size: 25px;
        line-height: 25px;
        padding: 15px;
        text-transform: uppercase;
    }

        .hp-midbar .text a {
            text-decoration: none;
            color: #cebb81;
        }

            .hp-midbar .text a:hover {
                color: #fff;
            }

.hp-midbar .text-2 {
    color: #cebb81;
    font-size: 25px;
    line-height: 25px;
    padding: 15px;
    text-transform: uppercase;
    float: right;
}

    .hp-midbar .text-2 a {
        text-decoration: none;
        color: #cebb81;
    }

        .hp-midbar .text-2 a:hover {
            color: #fff;
        }

.hp-midbar .social-icons {
    float: right;
    padding-top: 13px;
    margin-right: 15px;
}

.hp-midbar .social-icons .social-icon {
    margin-right: 8px;
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url("../graphics/hp-sprites.png");
}

.hp-midbar .social-icons .social-icon-1 {
    background-position: 0 0;
}

    .hp-midbar .social-icons .social-icon-1:hover {
        background-position: 0 -30px;
    }

.hp-midbar .social-icons .social-icon-4 {
    background-position: -30px 0;
}

    .hp-midbar .social-icons .social-icon-4:hover {
        background-position: -30px -30px;
    }

.hp-midbar .social-icons .social-icon-5 {
    background-position: -60px 0;
}

    .hp-midbar .social-icons .social-icon-5:hover {
        background-position: -60px -30px;
    }

.hp-buyers-club,
.hp-catalog {
    margin-bottom: 6px;
}

.hp-bottom-ad {
    margin-bottom: 20px;
}

.hp-row {
    margin-bottom: 6px;
    font-size: 0;
    text-align: center;
}

    .hp-row .cell {
        display: inline-block;
        width: 396px;
    }

        .hp-row .cell.first {
            margin-right: 6px;
        }

        .hp-row .cell.last {
            margin-left: 6px;
        }

        .hp-row .cell img {
            -webkit-backface-visibility: hidden;
            -webkit-transform: translateZ(0) scale(1, 1);
        }


/**
/** Mobile styles
///////////////////////////////////////////////*/
@media screen and (max-width: 1200px) {

    .slider-fullwidth {
        width: 100%;
    }

    .slider-fullwidth .arrow-left,
    .slider-fullwidth .arrow-right {
        
    }

    .sign-up .frm {
        top: 185px;
    }

    .hp-midbar .text-2 {
        display: none;
    }

    .hp-row .cell {
        width: 326px;
    }

        .hp-row .cell.first {
            margin-right: 7px;
        }

        .hp-row .cell.last {
            margin-left: 7px;
        }
}


@media screen and (max-width: 992px) {

    .hp-content-block {
        padding: 40px 0;
    }

    .news-block-wrapper {

    }

        .news-block-wrapper .hp-content-block {
            padding: 0;
        }

    .hp-content-block.location {
        padding: 40px 0;
    }

    .hp-content-block .hp-content-block-center .verbiage-copy .reg-stock > .msg-reg-stock,
    .hp-content-block .hp-content-block-center .verbiage-copy .limited-stock > .msg-limited-stock {
        display: none;
        left: calc(50% - 250px);
    }

    .hp-content-block .hp-content-block-center .verbiage-copy .reg-stock:hover .msg-reg-stock,
    .hp-content-block .hp-content-block-center .verbiage-copy .limited-stock:hover .msg-limited-stock {
        display: block;
    }

    #homepageFeatured3 .row section .swiper-left {
        display: none;
    }

    #homepageFeatured3 .row section .swiper-right {
        display: none;
    }

    .slider-fullwidth .arrow-left,
    .slider-fullwidth .arrow-right {
        display: none;

    }
    .sign-up .frm {
        top: 140px;
    }

    .sign-up .frm .left {
        width: 62%;
    }

    .sign-up .frm .right {
        width: 25%;
    }
    
    .hp-row .cell {
        width: 252px;
    }

        .hp-row .cell.first {
            margin-right: 6px;
        }

        .hp-row .cell.last {
            margin-left: 6px;
        }
}


@media screen and (max-width: 820px) {
    .hp-content-block {
        display: flex;
        padding: 40px 20px;
        flex: 1 100%;
        flex-flow: row wrap;
        position: relative;
    }

        .hp-content-block > * { /* We tell all items to be 100% width, via flex-basis */
            flex: 1 100%;
        }

        .hp-content-block .hp-content-block-left {
            padding: 0 0 50px 0;
        }

    .news-block-wrapper {
    }

        .news-block-wrapper .hp-content-block {
            padding: 0 20px;
        }

            .news-block-wrapper .hp-content-block .hp-content-block-left {
                padding: 0;
            }

            .news-block-wrapper .hp-content-block .hp-content-block-right {
                padding: 60px 0 0;
            }

    .img-block-wrapper {
    }

        .img-block-wrapper .hp-content-block {
        }

            .img-block-wrapper .hp-content-block .img-block-left {
                width: 51.5%;
                background-color: #fff; /* change grey bg for mobile */
                margin: 0 0 3% 0;
            }

            .img-block-wrapper .hp-content-block .img-block-right > * {
                max-width: 50%; /* leave white space gap */
                text-align: initial;
            }

            .img-block-wrapper .hp-content-block .img-block-right * > img {
                max-width: 100%;
                background-color: #fff; /* change grey bg for mobile */
            }

            .img-block-wrapper .hp-content-block .img-block-right .img2 > a img,
            .img-block-wrapper .hp-content-block .img-block-right .img3 > a img {
                margin-bottom: 6%;
            }

            .img-block-wrapper .hp-content-block .img-block-right div:nth-child(2n+1) > a img { /* odd elements */
                padding-right: 3%;
            }

            .img-block-wrapper .hp-content-block .img-block-right div:nth-child(even) > a img {
                padding-left: 3%;
            }

    .hp-content-block.location {
        padding: 40px 20px;
    }

        .hp-content-block.location .hp-content-block-left {
            padding: 20px 0;
        }
}


@media screen and (max-width: 768px) {

    .hp-content-block .hp-content-block-center .customers-wrapper {
        width: 100%;
        border-bottom: none;
    }

    .brick-background-wrapper .testimonials-wrapper {
        padding: 50px 20px 60px;
    }

    #homepageFeatured2 .ad {
        margin-bottom: 10px;
    }

    body .pagination-slider {
        display: none;
    }

    #homepageFeatured3 {
        margin-top: 15px;
    }

    #homepageFeatured3 .row {
        padding-bottom: 15px;
    }

    #homepageFeatured3 .row section .featured-products,
    #homepageFeatured3 .row section .related-products {
        width: 100%;
        margin: 20px auto;
    }

    #homepageFeatured3 .row section h2 {
        font-size: 28px;
    }

    #homepageFeatured5 .ad {
        margin-bottom: 10px;
    }

    .sign-up .frm {
        top: auto;
        bottom: 20px;
    }

    .sign-up .frm .left {
        width: 59%;
    }

    .sign-up .frm .right {
        width: 27%;
    }

    .hp-midbar .text {
        font-size: 16px;
        line-height: 16px;
        text-align: center;
    }

    .hp-buyers-club,
    .hp-catalog {
        display: none;
    }
    
    .hp-midbar .social-icons {
        float: none;
        text-align: center;
        padding-top: 10px;
        margin-right: 0;
    }
    
    .hp-row .cell {
        width: 100%;
        max-width: 396px;
        display: block;
        margin: 0 auto 10px;
    }

        .hp-row .cell.first {
            margin: 0 auto 10px;
        }

        .hp-row .cell.last {
            margin: 0 auto 10px;
        }
}


@media screen and (max-width: 560px) {

    .hp-content-block .hp-content-block-center .verbiage-copy .reg-stock > .msg-reg-stock,
    .hp-content-block .hp-content-block-center .verbiage-copy .limited-stock > .msg-limited-stock {
        left: 0;
    }

    .news-block-wrapper .hp-content-block.center {
        padding: 0 0 40px;
    }

    .hp-content-block .hp-content-block-right.email-form {
        max-height: none;
    }

    .hp-content-block .hp-content-block-right .btn-signup-wrapper > input {
        width: 100%;
    }

    .hp-content-block.location .hp-content-block-left .email {
        display: none;
    }

        .hp-content-block.location .hp-content-block-left .email.mobile {
            display: block;
        }
}


@media screen and (max-width: 480px) {
    .hp-content-block .hp-content-block-center .customers-wrapper {
        flex-flow: column;
    }

        .hp-content-block .hp-content-block-center .customers-wrapper .new-customers,
        .hp-content-block .hp-content-block-center .customers-wrapper .returning-customers {
            width: 100%;
        }

        .hp-content-block .hp-content-block-center .customers-wrapper .returning-customers {
            margin: 60px 0 0;
        }
}