@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Pinyon+Script');
@import url(jquery-ui-datepicker-base.css);

/* CSS Document */


/* ====================================================================================================
	Table of Content

	Misc Inlcudes
	Variables
	1. Typography - Copy into admin.css
	2. Header
	3. Navigation
		a. Navigation
		b. Sub Navigation
	4. Content
		a. Homepage Styles
		b. Page Styles
	5. Blog
	6. Print
	7. Buttons
	8. Footer
*/


/*! normalize.css v2.1.3 | MIT License | git.io/normalize */


/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */


/**
 * Correct `block` display not defined in IE 8/9.
 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}


/**
 * Correct `inline-block` display not defined in IE 8/9.
 */

audio,
canvas,
video {
    display: inline-block;
}


/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

audio:not([controls]) {
    display: none;
    height: 0;
}


/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */

[hidden],
template {
    display: none;
}


/* ==========================================================================
   Base
   ========================================================================== */


/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */

html {
    font-family: sans-serif;
    /* 1 */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
}


/**
 * Remove default margin.
 */

body {
    margin: 0;
}


/* ==========================================================================
   Links
   ========================================================================== */


/**
 * Remove the gray background color from active links in IE 10.
 */

a {
    background: transparent;
}


/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */

a:focus {
    outline: thin dotted;
}


/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */

a:active,
a:hover {
    outline: 0;
}


/* ==========================================================================
   Typography
   ========================================================================== */


/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}


/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */

abbr[title] {
    border-bottom: 1px dotted;
}


/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */

b,
strong {
    font-weight: bold;
}


/**
 * Address styling not present in Safari 5 and Chrome.
 */

dfn {
    font-style: italic;
}


/**
 * Address differences between Firefox and other browsers.
 */

hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
}


/**
 * Address styling not present in IE 8/9.
 */

mark {
    background: #ff0;
    color: #000;
}


/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */

code,
kbd,
pre,
samp {
    font-family: monospace, serif;
    font-size: 1em;
}


/**
 * Improve readability of pre-formatted text in all browsers.
 */

pre {
    white-space: pre-wrap;
}


/**
 * Set consistent quote types.
 */

q {
    quotes: "\201C" "\201D" "\2018" "\2019";
}


/**
 * Address inconsistent and variable font size in all browsers.
 */

small {
    font-size: 80%;
}


/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}


/* ==========================================================================
   Embedded content
   ========================================================================== */


/**
 * Remove border when inside `a` element in IE 8/9.
 */

img {
    border: 0;
}


/**
 * Correct overflow displayed oddly in IE 9.
 */

svg:not(:root) {
    overflow: hidden;
}


/* ==========================================================================
   Figures
   ========================================================================== */


/**
 * Address margin not present in IE 8/9 and Safari 5.
 */

figure {
    margin: 0;
}


/* ==========================================================================
   Forms
   ========================================================================== */


/**
 * Define consistent border, margin, and padding.
 */

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}


/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */

legend {
    border: 0;
    /* 1 */
    padding: 0;
    /* 2 */
}


/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */

button,
input,
select,
textarea {
    font-family: inherit;
    /* 1 */
    font-size: 100%;
    /* 2 */
    margin: 0;
    /* 3 */
}


/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */

button,
input {
    line-height: normal;
}


/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */

button,
select {
    text-transform: none;
}


/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    /* 2 */
    cursor: pointer;
    /* 3 */
}


/**
 * Re-set default cursor for disabled elements.
 */

button[disabled],
html input[disabled] {
    cursor: default;
}


/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    /* 1 */
    padding: 0;
    /* 2 */
}


/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */

input[type="search"] {
    -webkit-appearance: textfield;
    /* 1 */
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    /* 2 */
    box-sizing: content-box;
}


/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}


/**
 * Remove inner padding and border in Firefox 4+.
 */

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}


/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */

textarea {
    overflow: auto;
    /* 1 */
    vertical-align: top;
    /* 2 */
}


/* ==========================================================================
   Tables
   ========================================================================== */


/**
 * Remove most spacing between table cells.
 */

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/*-----------------------------------------------*/


/* Icon Fonts
/*-----------------------------------------------*/

@font-face {
    font-family: 'icomoon';
    src: url("https://www.wvv.com/assets/font/icomoon.eot?2tpbk0");
    src: url("https://www.wvv.com/assets/font/icomoon.eot?2tpbk0#iefix") format("embedded-opentype"), url("https://www.wvv.com/assets/font/icomoon.ttf?2tpbk0") format("truetype"), url("https://www.wvv.com/assets/font/icomoon.woff?2tpbk0") format("woff"), url("https://www.wvv.com/assets/font/icomoon.svg?2tpbk0#icomoon") format("svg");
    font-weight: normal;
    font-style: normal;
}

[class^="icon-"],
[class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-paper-clip:before {
    content: "\e001";
}

.icon-link:before {
    content: "\e006";
}

.icon-image:before {
    content: "\e010";
}

.icon-clock:before {
    content: "\e015";
}

.icon-settings:before {
    content: "\e023";
}

.icon-heart:before {
    content: "\e024";
}

.icon-book:before {
    content: "\e030";
}

.icon-search:before {
    content: "\e036";
}

.icon-sun:before {
    content: "\e064";
}

.icon-map:before {
    content: "\e072";
}

.icon-comments:before {
    content: "\e077";
}

.icon-share:before {
    content: "\e081";
}

.icon-tag:before {
    content: "\e085";
}

.icon-arrow-left:before {
    content: "\e094";
}

.icon-arrow-right:before {
    content: "\e095";
}

.icon-arrow-up:before {
    content: "\e096";
}

.icon-arrow-down:before {
    content: "\e097";
}

.icon-email:before {
    content: "\e0be";
}

.icon-phone:before {
    content: "\e0cd";
}

.icon-plus:before {
    content: "\e114";
}

.icon-minus:before {
    content: "\e115";
}

.icon-cross:before {
    content: "\e117";
}

.icon-menu:before {
    content: "\e120";
}

.icon-person:before {
    content: "\e7fd";
}

.icon-lock:before {
    content: "\e897";
}

.icon-cart:before {
    content: "\e8cc";
}

.icon-calendar:before {
    content: "\e905";
}

.icon-pencil:before {
    content: "\e906";
}

.icon-home:before {
    content: "\e907";
}

.icon-medal:before {
    content: "\e908";
}

.icon-clothes:before {
    content: "\e909";
}

.icon-music:before {
    content: "\e90a";
}

.icon-star:before {
    content: "\e90b";
}

.icon-wine:before {
    content: "\e90c";
}

.icon-juice:before {
    content: "\e90d";
}

.icon-gift:before {
    content: "\e90e";
}

.icon-flower:before {
    content: "\e90f";
}

.icon-leaves:before {
    content: "\e910";
}

.icon-google-plus:before {
    content: "\e900";
}

.icon-pinterest:before {
    content: "\e901";
}

.icon-yelp:before {
    content: "\e902";
}

.icon-delectable:before {
    content: "\e903";
}

.icon-twitter:before {
    content: "\f099";
}

.icon-facebook:before {
    content: "\f09a";
}

.icon-linked-in:before {
    content: "\f0e1";
}

.icon-youtube:before {
    content: "\f167";
}

.icon-instagram:before {
    content: "\f16d";
}

.icon-tumblr:before {
    content: "\f173";
}

.icon-vine:before {
    content: "\f1ca";
}

.icon-cc-visa:before {
    content: "\f1f0";
}

.icon-cc-mastercard:before {
    content: "\f1f1";
}

.icon-cc-discover:before {
    content: "\f1f2";
}

.icon-cc-amex:before {
    content: "\f1f3";
}

.icon-cc-paypal:before {
    content: "\f1f4";
}

.icon-cc-stripe:before {
    content: "\f1f5";
}

.icon-tripadvisor:before {
    content: "\f262";
}

.icon-vimeo:before {
    content: "\f27d";
}

.icon-snapchat:before {
    content: "\f2ac";
}


/*
 * jQuery Nivo Slider v3.0.1
 * http://nivo.dev7studios.com
 *
 * Copyright 2012, Dev7studios
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */


/* The Nivo Slider styles */

.nivoSlider {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    background: white url(../nivo/loading.gif) no-repeat 50% 50%;
}

.nivoSlider img {
    position: absolute;
    top: 0px;
    left: 0px;
}

.nivo-main-image {
    display: block !important;
    position: relative !important;
    width: 100% !important;
}


/* If an image is wrapped in a link */

.nivoSlider a.nivo-imageLink {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    margin: 0;
    z-index: 6;
    display: none;
    cursor: hand;
    background-color: #fff;
    filter: alpha(opacity=0);
    /*non ie*/
    opacity: 0;
}


/* The slices and boxes in the Slider */

.nivo-slice {
    display: block;
    position: absolute;
    z-index: 5;
    height: 100%;
    top: 0;
}

.nivo-box {
    display: block;
    position: absolute;
    z-index: 5;
    overflow: hidden;
}

.nivo-box img {
    display: block;
}


/* Caption styles */

.nivo-caption {
    position: absolute;
    left: 0px;
    bottom: 0px;
    background: #000;
    color: #fff;
    width: 100%;
    z-index: 8;
    padding: 5px 10px;
    opacity: 0.8;
    overflow: hidden;
    display: none;
    -moz-opacity: 0.8;
    filter: alpha(opacity=8);
    -webkit-box-sizing: border-box;
    /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;
    /* Firefox, other Gecko */
    box-sizing: border-box;
    /* Opera/IE 8+ */
}

.nivo-caption p {
    padding: 5px;
    margin: 0;
}

.nivo-caption a {
    display: inline !important;
}

.nivo-html-caption {
    display: none;
}


/* Direction nav styles (e.g. Next & Prev) */

.nivo-directionNav a {
    display: block;
    width: 30px;
    height: 30px;
    background: url(../nivo/arrows.png) no-repeat;
    text-indent: -9999px;
    border: 0;
    position: absolute;
    top: 45%;
    z-index: 9;
    cursor: pointer;
}

a.nivo-prevNav {
    left: 15px;
}

a.nivo-nextNav {
    background-position: -30px 0px;
    right: 15px;
}


/* Control nav styles (e.g. 1,2,3...) */

.nivo-controlNav {
    text-align: center;
    padding: 15px 0;
}

.nivo-controlNav a {
    display: inline-block;
    width: 22px;
    height: 22px;
    background: url(../nivo/bullets.png) no-repeat;
    color: transparent;
    border: 0;
    margin: 0 2px;
    cursor: pointer;
}

.nivo-controlNav a.active {
    background-position: 0 -22px;
}

.transition {
    -ms-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.hideText {
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
}

.hideText a {
    display: block;
    height: 100%;
    text-indent: 101%;
}


/*   ===================================================================================================
     1. Typography - These get copied into the admin.css
======================================================================================================== */

html {
    font-size: 100%;
}

body {
    background: #f2efed;
    color: #808080;
    font-family: Georgia, Times, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
}

.transition {
    -ms-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #332f2c;
    font-weight: normal;
    margin: 0;
}

h1 {
    font-size: 2.5em;
    font-family: "Prata", serif;
    line-height: 1.375;
    margin-bottom: 0.75em;
    text-align: center;
    position: relative;
}

@media screen and (max-width: 500px) {
    h1 {
        font-size: 2.3em;
    }
}

h2 {
    font-size: 2.25em;
    font-family: "Prata", serif;
    line-height: 1.25;
    margin-bottom: 0.5em;
}

@media screen and (max-width: 500px) {
    h2 {
        font-size: 2.125em;
    }
}

h3 {
    font-size: 2em;
    /*   font-family: "Prata", serif; */
    line-height: 1.25;
    margin-bottom: 0.75em;
}

h4,
.productGroupStock .v65-product-title {
    font-size: 1.5em;
    /*   font-family: "Prata", serif; */
    line-height: 1.25;
    margin-bottom: 0.75em;
}

h5 {
    color: #aba07a;
    font-size: 1.5em;
    font-family: "Pinyon Script";
    line-height: 1.25;
}

h6 {
    color: #4e4937;
    font-size: 1em;
    /*   font-family: "Prata", serif; */
    line-height: 1.25;
    margin-bottom: 0.5em;
}

.v65-title {
    color: #332f2c;
    font-family: "Prata", serif;
    font-size: 1.5em;
    line-height: 1.125;
    margin-bottom: 0.2em;
}

.v65-title a {
    color: #332f2c;
}

.v65-title a:hover,
.v65-title a:focus,
.v65-title a:visited {
    text-decoration: none;
}

.v65-subtitle {
    color: #aba07a;
    font-size: 1.8em;
    font-family: "Pinyon Script";
    line-height: 1.2;
    margin-bottom: 0.2em;
}

.v65-subtitle a {
    color: #aba07a;
}

.v65-subtitle a:hover,
.v65-subtitle a:focus,
.v65-subtitle a:visited {
    text-decoration: none;
}

.v65-productGroup-title.v65-title {
    font-size: 2.2em;
    margin-bottom: 0.5em;
    text-align: center;
}

p,
blockquote {
    margin: 0 0 1em;
    line-height: 1.5;
}

blockquote {
    color: #4e4937;
    max-width: 600px;
    text-align: center;
    margin: 1em auto;
    line-height: 1.7;
}

dl,
ol,
ul {
    margin: 0 0 1.5em;
}

dd,
dt,
li {
    line-height: 1.5;
    margin: 0;
}

a {
    color: #aba07a;
    text-decoration: none;
}

img {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: none;
    border-color: #aba07a;
    height: auto !important;
    max-width: 100%;
}

form {
    margin-bottom: 1em;
}

legend {
    color: #808080;
}

hr {
    background-color: #d6d4d2;
    border: 0;
    color: #808080;
    height: 2px;
}

a[name=footerNav] {
    display: none !important;
}


/*   ===================================================================================================
     2. Header
======================================================================================================== */

header.primary {
    background: #332f2c;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 15;
}

header.primary .wrapper {
    position: relative;
}

@media screen and (max-width: 1100px) {
    header.primary .wrapper {
        padding: 0 3%;
        width: 94%;
    }
}

@media screen and (max-width: 580px) {
    header.primary .wrapper {
        width: 100%;
        padding: 0;
        margin: 0;
    }
}

header.primary .headerIcon {
    font-size: 1.4em;
    vertical-align: middle;
    margin-top: -2px;
    display: inline-block;
}

header.primary .socialIcons {
    float: right;
    padding: 0;
    margin: 5px 30px 5px 10px;
}

@media screen and (max-width: 580px) {
    header.primary .socialIcons {
        display: none;
    }
}

header.primary .socialIcons li {
    color: #ada073;
    list-style-type: none;
    display: inline-block;
    font-size: 0.75em;
    padding: 0 5px;
}

header.primary .socialIcons li a {
    color: #ada073;
}

header.primary .headerTop {
    background: #2b2725;
    border-bottom: none;
}

header.primary .headerTop .telephoneNumber {
    color: #808080;
    float: right;
    font-size: 14px;
    height: 2em;
    line-height: 2em;
    margin: 2px 0 0 2em;
    /* display: none; */
}

@media screen and (max-width: 950px) {
    header.primary .headerTop .telephoneNumber {
        margin-top: 0;
        height: 2.5em;
        line-height: 2.5em;
    }
}

@media screen and (max-width: 700px) {
    header.primary .headerTop .telephoneNumber {
        display: none;
    }
}

header.primary .headerTop .telephoneNumber a {
    color: #808080;
}

header.primary .headerTop .telephoneNumber i {
    color: #ada073;
    display: inline-block;
}

header.primary.checkoutHeader .logo {
    float: none;
    margin: 0.5em auto;
}

#user-tools {
    font-size: 14px;
}

@media screen and (min-width: 581px) {
    #user-tools {
        float: right;
        height: 2em;
        line-height: 2em;
        margin-top: 2px;
        width: auto;
        width: initial;
        position: static;
    }
}

@media screen and (min-width: 581px) and (max-width: 950px) {
    #user-tools {
        margin: 3px 0 7px;
    }
}

@media screen and (max-width: 580px) {
    #user-tools {
        height: 3em;
        line-height: 3em;
    }
}

#user-tools.cartNav {
    margin: 38px 0 0 7.5px;
    height: 2.5em;
    line-height: 2.5em;
}

#user-tools.cartNav #v65-modalCart>a {
    color: #808080;
    font-size: 14px;
}

#user-tools.cartNav #v65-modalCart>a:hover,
#user-tools.cartNav #v65-modalCart>a:focus,
#user-tools.cartNav #v65-modalCart>a:active {
    color: #d6d4cb;
}

@media screen and (max-width: 950px) {
    #user-tools.cartNav {
        display: none;
    }
}

#user-tools a {
    color: #808080;
}

#user-tools .icon-person {
    margin-right: 5px;
}

#user-tools .icon-person,
#user-tools .icon-cart {
    color: #ada073;
    width: 15px;
    display: inline-block;
}

#user-tools .v65-yourAccount,
#user-tools .v65-editProfile,
#user-tools .v65-login,
#user-tools .v65-logout {
    border: 0;
}

@media screen and (min-width: 581px) {
    #user-tools .v65-yourAccount,
    #user-tools .v65-editProfile,
    #user-tools .v65-login,
    #user-tools .v65-logout {
        position: static;
        width: auto;
        width: initial;
    }
}

@media screen and (min-width: 581px) {
    #user-tools .v65-yourAccount,
    #user-tools .v65-editProfile,
    #user-tools .v65-login,
    #user-tools .v65-logout {
        margin-top: 1px;
        height: 2em;
        line-height: 2em;
    }
}

@media screen and (max-width: 580px) {
    #user-tools .v65-yourAccount,
    #user-tools .v65-editProfile,
    #user-tools .v65-login,
    #user-tools .v65-logout {
        height: 3em;
        line-height: 3em;
    }
}

@media screen and (min-width: 581px) {
    #user-tools .v65-login,
    #user-tools .v65-logout {
        margin: 0 1em !important;
    }
	header.primary .headerTop .telephoneNumber {
		margin-left: 1em;
	}
}

@media screen and (min-width: 581px) and (max-width: 950px) {
    #user-tools .v65-login,
    #user-tools .v65-logout {
        margin-right: 1em;
    }
}

@media screen and (min-width: 951px) {
    #user-tools .v65-editProfile {
        margin-left: 1em;
        margin-right: 0;
        padding-right: 0;
    }
}

@media screen and (min-width: 581px) and (max-width: 950px) {
    #user-tools .v65-editProfile {
        margin-right: 0;
        padding-right: 0;
		margin-left: 1em;
    }
}

@media screen and (min-width: 581px) {
    #user-tools .v65-yourAccount {
        display: none;
    }
}

@media screen and (min-width: 581px) {
    #user-tools #v65-modalCart {
        float: right;
        position: relative;
    }
}

@media screen and (min-width: 581px) and (max-width: 950px) {
    #user-tools #v65-modalCart {
        height: 2.2em;
        line-height: 2.2em;
    }
}

@media screen and (max-width: 580px) {
    #user-tools #v65-modalCart {
        height: 3em;
        line-height: 3em;
    }
}

@media screen and (max-width: 580px) {
    #user-tools #v65-modalCart #v65-toggleModalCart {
        display: block;
        float: right;
        margin-right: 1%;
    }
}

@media screen and (max-width: 580px) {
    #user-tools #v65-modalCart #v65-toggleModalCart {
        line-height: 3em;
        height: 3em;
    }
}

@media screen and (min-width: 951px) {
    #user-tools #v65-modalCartDropdown {
        top: 5.1em;
    }
}

@media screen and (min-width: 581px) and (max-width: 950px) {
    #user-tools #v65-modalCartDropdown {
        top: 2.5em;
    }
}

#user-tools .v65-additionalItemsMessage a {
    color: #000;
}

.logo {
    -ms-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    background-image: url('../images/logo.png?1472678624');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    float: left;
    height: 80px;
    width: 255px;
    margin: 0.6em auto;
}

@media screen and (max-width: 580px) {
    .logo {
        margin: 0.3em;
    }
}

@media screen and (max-width: 430px) {
    .logo {
        float: left;
        margin: 0.3em;
    }
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min-resolution: 144dpi) {
    .logo {
        background-image: url('../images/logo@2x.png?1472678625');
    }
}

@media screen and (max-width: 580px) {
    #v65-modalContentHeader a.modalLinkBtn {
        text-align: right;
    }
}


/*   ===================================================================================================
     3. Navigation
======================================================================================================== */


/* ----- a. Main Menu ----- */

.mainMenu {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 15px;
    font-size: 1em;
}

@media screen and (min-width: 951px) {
    .mainMenu {
        float: right;
    }
}

@media screen and (max-width: 950px) {
    .mainMenu {
        -ms-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
        background: #3c3836;
        border-left: 1px solid #34302f;
        max-height: 87%;
        max-height: -moz-calc(100% - 146px);
        max-height: -webkit-calc(100% - 146px);
        max-height: calc(100% - 146px);
        height: 100%;
        font-size: 14px;
        position: fixed;
        top: 145px;
        right: -350px;
        margin: 0;
        overflow: auto;
        width: 350px;
        z-index: 100;
    }
}

@media screen and (max-width: 580px) {
    .mainMenu {
        top: 149px;
        right: -100%;
        max-height: -moz-calc(100% - 149px);
        max-height: -webkit-calc(100% - 149px);
        max-height: calc(100% - 149px);
        width: 100%;
    }
}

@media screen and (max-width: 500px) {
    .mainMenu {
        top: 147px;
        max-height: -moz-calc(100% - 148px);
        max-height: -webkit-calc(100% - 148px);
        max-height: calc(100% - 148px);
    }
}

.mainMenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    text-align: left;
}

@media screen and (min-width: 951px) {
    .mainMenu ul {
        float: right;
    }
}

@media screen and (max-width: 950px) {
    .mainMenu ul {
        text-align: left;
    }
}

.mainMenu ul ul {
    font-size: 14px;
    text-align: left;
}

@media screen and (min-width: 951px) {
    .mainMenu ul ul {
        background: #3c3836;
        border: 1px solid #34302f;
        visibility: hidden;
        opacity: 0;
        padding: 8px 10px;
        position: absolute;
        left: -15px;
        top: 110px;
        width: 200px;
        -ms-transform: translateY(5px);
        -moz-transform: translateY(5px);
        -o-transform: translateY(5px);
        -webkit-transform: translateY(5px);
        transform: translateY(5px);
    }
}

@media screen and (max-width: 950px) {
    .mainMenu ul ul {
        text-align: left;
    }
}

.mainMenu li {
    display: inline-block;
    padding: 0;
    position: relative;
}

@media screen and (min-width: 1201px) {
    .mainMenu li {
        padding: 0 15px;
        margin: 0;
    }
}

@media screen and (min-width: 951px) {
    .mainMenu li {
        padding: 0 7.5px;
        margin: 0;
    }
}

@media screen and (max-width: 950px) {
    .mainMenu li {
        border-top: 1px solid #34302f;
        margin: 0;
        width: 100%;
    }
}

.mainMenu li:first-child {
    margin-left: 0;
}

@media screen and (min-width: 951px) {
    .mainMenu li:hover ul {
        -ms-transition-delay: 0.2s;
        -moz-transition-delay: 0.2s;
        -o-transition-delay: 0.2s;
        -webkit-transition-delay: 0.2s;
        transition-delay: 0.2s;
        visibility: visible;
        opacity: 1;
        -ms-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -o-transform: translateY(0px);
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

.mainMenu li li {
    display: block;
    float: none;
    margin: 0;
    padding: 0;
}

@media screen and (max-width: 950px) {
    .mainMenu li li {
        text-align: left;
        padding: 0;
        width: 100%;
    }
}

.mainMenu li li a {
    color: #b1afa4;
    display: block;
    line-height: 1.5;
    margin: 0;
    padding: 5px 10px;
    text-transform: none;
}

@media screen and (max-width: 950px) {
    .mainMenu li li a {
        padding: 10px 2% 10px 10%;
        width: 88%;
    }
}

.mainMenu li li a:hover {
    color: #d6d4cb;
}

@media screen and (max-width: 950px) {
    .mainMenu li li a:after {
        content: "";
    }
}

@media screen and (max-width: 950px) {
    .mainMenu li li a {
        color: #b1afa4;
    }
    .mainMenu li li a:hover {
        color: #b1afa4;
    }
}

.mainMenu a {
    color: #b1afa4;
    display: inline-block;
    margin: 0;
    padding: 44px 0;
    position: relative;
    text-decoration: none;
}

@media screen and (max-width: 950px) {
    .mainMenu a {
        padding: 15px 2% 15px 6%;
        margin: 0;
        width: 92%;
    }
}

.mainMenu a:hover,
.mainMenu a:focus,
.mainMenu a:active {
    background: none;
    color: #d6d4cb;
    outline: none;
    text-decoration: none;
}

@media screen and (max-width: 950px) {
    .mainMenu a:after {
        content: "\e095";
        font-family: 'icomoon';
        font-size: 0.9em;
        position: absolute;
        right: 10px;
    }
}

@media screen and (max-width: 950px) {
    .mainMenu a {
        color: #b1afa4;
    }
    .mainMenu a:hover {
        color: #b1afa4;
    }
}

.mainMenu .v65-home {
    display: none;
}

.subMenu,
.subSubMenu {
    background: #3e3a36;
    background: rgba(56, 53, 50, 0.76);
    border-top: 1px solid #2f2d2b;
    font-size: 15px;
    position: relative;
    margin: 0;
    width: 100%;
}

@media screen and (max-width: 767px) {
    .subMenu,
    .subSubMenu {
        text-align: center;
    }
}

.subMenu ul,
.subSubMenu ul {
    list-style: none;
    margin-bottom: 0;
    padding: 0;
}

.subMenu ul ul,
.subSubMenu ul ul {
    display: none;
}

.subMenu li,
.subSubMenu li {
    line-height: 1.4;
    padding: 0;
    display: inline-block;
    padding: 12px 7.5px;
}

@media screen and (max-width: 767px) {
    .subMenu li,
    .subSubMenu li {
        display: inline-block;
    }
}

.subMenu li ul,
.subSubMenu li ul {
    margin-left: 10px;
}

.subMenu a,
.subSubMenu a {
    color: #a7a7a7;
    line-height: 1.5;
    width: 100%;
}

.subMenu a:hover,
.subMenu a:focus,
.subMenu a:active,
.subSubMenu a:hover,
.subSubMenu a:focus,
.subSubMenu a:active {
    color: #a7a7a7;
}

.subSubMenu {
    background: #f2efed;
    font-size: 14px;
}

@media screen and (max-width: 767px) {
    .subSubMenu {
        display: block;
    }
}

.subSubMenu li {
    padding: 10px 8px;
}

@media screen and (max-width: 767px) {
    .subSubMenu li {
        display: inline-block;
        padding: 15px 10px;
    }
}

.subSubMenu a {
    color: #808080;
}

.subSubMenu a:hover,
.subSubMenu a:focus,
.subSubMenu a:active {
    color: #808080;
}

.membersPages .subMenu li {
    display: inline-block;
}

@media screen and (max-width: 950px) {
    .membersPages .subMenu li {
        line-height: 2;
    }
}

.icon-menu {
    cursor: pointer;
    font-size: 1.5em;
    position: absolute;
    top: 1.5em;
    right: 1em;
    background: url(../images/icon-menu.svg);
    height: 27px;
    width: 27px;
    opacity: .75;
}

.icon-menu:before {
    content: ' ';
}

.icon-menu:hover,
.icon-menu:focus,
.icon-menu:active {
    opacity: 1;
}

@media screen and (max-width: 580px) {
    .icon-menu {
        top: 1.7em;
    }
}

@media screen and (min-width: 951px) {
    .icon-menu {
        display: none;
    }
}

.menuOpen {
    transform: translate(-350px, 0);
    -webkit-transform: translate(-350px, 0);
    -moz-transform: translate(-350px, 0);
    -ms-transform: translate(-350px, 0);
}

@media screen and (max-width: 580px) {
    .menuOpen {
        transform: translate(-100%, 0);
        -webkit-transform: translate(-100%, 0);
        -moz-transform: translate(-100%, 0);
        -ms-transform: translate(-100%, 0);
    }
}


/*.mobileBody { position: fixed; }*/

.mobileBody header.primary {
    position: fixed !important;
}


/*   ===================================================================================================
     4. Content
======================================================================================================== */

#v65-modalContentHeader {
    background: #332f2c;
}

@media screen and (max-width: 767px) {
    .content {
        padding: 2em 0 0;
    }
}

@media screen and (min-width: 768px) {
    .content {
        padding: 4em 0 0;
    }
}

@media screen and (max-width: 767px) {
    .pageContent,
    .wideContent {
        padding-bottom: 2em;
    }
}

@media screen and (min-width: 768px) {
    .pageContent,
    .wideContent {
        padding-bottom: 4em;
    }
}

.productDrilldownContent {
    padding-bottom: 0;
    padding-top: 0px;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    width: 90%;
}

@media screen and (max-width: 580px) {
    .wrapper {
        padding: 0 2.5%;
        width: 95%;
    }
}

.overlay {
    background: rgba(0, 0, 0, 0.15);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.overlay.overlayNo {
    background: transparent;
}

.pageTop {
    position: relative;
    z-index: 2;
    margin-top: 140px;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
        -webkit-animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
        animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
        -webkit-animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
        animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

input[type='text'],
input[type='password'],
input[type='username'],
input[type='tel'],
input[type='email'],
textarea {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 3px;
    -ms-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    border: 1px solid #D8D8D8;
    font-size: 0.9em;
}

@media screen and (min-width: 581px) {
    input[type='text'],
    input[type='password'],
    input[type='username'],
    input[type='tel'],
    input[type='email'],
    textarea {
        height: 2.9em;
        line-height: 2.9em;
    }
}

input[type='text']:focus,
input[type='password']:focus,
input[type='username']:focus,
input[type='tel']:focus,
input[type='email']:focus,
textarea:focus {
    background-color: #FBFBFB;
    border-color: #CECECE;
    outline: none;
}

fieldset#v65-fieldset-choices {
    width: 360px;
}

@media screen and (max-width: 950px) {
    fieldset#v65-fieldset-choices {
        width: 50%;
    }
}

@media screen and (max-width: 725px) {
    fieldset#v65-fieldset-choices {
        width: 98%;
    }
}

.v65-form textarea,
.v65-form select {
    font-size: 0.8em;
}

#v65-memberFormWrapper {
    margin: 0 auto;
}

#v65-memberFormWrapper form {
    max-width: 400px;
}

#v65-memberFormWrapper legend {
    text-align: center;
}

.v65-form,
#v65-memberFormWrapper {
    max-width: 420px;
    width: 100%;
}

.v65-form legend,
#v65-memberFormWrapper legend {
    color: #332f2c;
    font-family: "Prata", serif;
    letter-spacing: 0;
    padding: 0 0 6px;
}

.v65-form fieldset,
#v65-memberFormWrapper fieldset {
    border: 0;
    padding: 0;
}

.v65-form fieldset div,
#v65-memberFormWrapper fieldset div {
    padding: 5px 0;
}

.v65-form label,
#v65-memberFormWrapper label {
    padding-bottom: 2px;
}

.v65-form input[type=text],
.v65-form input[type=password],
.v65-form input[type='username'],
.v65-form textarea,
#v65-memberFormWrapper input[type=text],
#v65-memberFormWrapper input[type=password],
#v65-memberFormWrapper input[type='username'],
#v65-memberFormWrapper textarea {
    width: 100% !important;
}

#v65-commentFormWrapper #Comments {
    width: 100%;
}

#v65-commentFormWrapper #Comments:focus {
    background: #FDFDFD;
    outline: none;
}

#v65-checkBilling legend,
#v65-memberFormWrapper legend {
    color: #332f2c;
    font-family: "Prata", serif;
    font-size: 1.7em;
    letter-spacing: 0;
    padding: 0 0 6px;
}

#v65-checkBilling input[name=BillFirstName],
#v65-checkBilling input[name=BillLastName],
#v65-checkBilling input[name=BillCompany],
#v65-checkBilling input[name=BillCity],
#v65-checkBilling input[name=BillMainPhone],
#v65-checkBilling input[name=BillEmail],
#v65-checkBilling input[name=BillAddress],
#v65-checkBilling input[name=BillAddress2],
#v65-checkBilling textarea[name=OrderNotes],
#v65-checkBilling input[name=NickName],
#v65-checkBilling input[name=ShipFirstName],
#v65-checkBilling input[name=ShipLastName],
#v65-checkBilling input[name=ShipCompany],
#v65-checkBilling input[name=ShipCity],
#v65-checkBilling input[name=ShipMainPhone],
#v65-checkBilling input[name=ShipEmail],
#v65-checkBilling textarea[name=giftMessage],
#v65-checkBilling input[name=ShipAddress],
#v65-checkBilling input[name=ShipAddress2],
#v65-checkBilling input[name=FirstName],
#v65-checkBilling input[name=LastName],
#v65-checkBilling input[name=Company],
#v65-checkBilling input[name=City],
#v65-checkBilling input[name=MainPhone],
#v65-checkBilling input[name=Email],
#v65-checkBilling input[name=Username],
#v65-checkBilling input[name=Password],
#v65-checkBilling input[name=ConfirmPassword],
#v65-checkBilling input[name=Address2],
#v65-checkBilling input[name=Address],
#v65-checkBilling input[name=shipMainPhone],
#v65-checkBilling input[name=shipEmail],
#v65-memberFormWrapper input[name=BillFirstName],
#v65-memberFormWrapper input[name=BillLastName],
#v65-memberFormWrapper input[name=BillCompany],
#v65-memberFormWrapper input[name=BillCity],
#v65-memberFormWrapper input[name=BillMainPhone],
#v65-memberFormWrapper input[name=BillEmail],
#v65-memberFormWrapper input[name=BillAddress],
#v65-memberFormWrapper input[name=BillAddress2],
#v65-memberFormWrapper textarea[name=OrderNotes],
#v65-memberFormWrapper input[name=NickName],
#v65-memberFormWrapper input[name=ShipFirstName],
#v65-memberFormWrapper input[name=ShipLastName],
#v65-memberFormWrapper input[name=ShipCompany],
#v65-memberFormWrapper input[name=ShipCity],
#v65-memberFormWrapper input[name=ShipMainPhone],
#v65-memberFormWrapper input[name=ShipEmail],
#v65-memberFormWrapper textarea[name=giftMessage],
#v65-memberFormWrapper input[name=ShipAddress],
#v65-memberFormWrapper input[name=ShipAddress2],
#v65-memberFormWrapper input[name=FirstName],
#v65-memberFormWrapper input[name=LastName],
#v65-memberFormWrapper input[name=Company],
#v65-memberFormWrapper input[name=City],
#v65-memberFormWrapper input[name=MainPhone],
#v65-memberFormWrapper input[name=Email],
#v65-memberFormWrapper input[name=Username],
#v65-memberFormWrapper input[name=Password],
#v65-memberFormWrapper input[name=ConfirmPassword],
#v65-memberFormWrapper input[name=Address2],
#v65-memberFormWrapper input[name=Address],
#v65-memberFormWrapper input[name=shipMainPhone],
#v65-memberFormWrapper input[name=shipEmail] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100% !important;
}

@media screen and (min-width: 581px) {
    #v65-checkBilling select[name=BillBirthDay],
    #v65-checkBilling select[name=BillBirthYear],
    #v65-checkBilling select[name=BirthDay],
    #v65-checkBilling select[name=BirthYear],
    #v65-checkBilling select[name=ShipBirthDay],
    #v65-checkBilling select[name=ShipBirthYear],
    #v65-memberFormWrapper select[name=BillBirthDay],
    #v65-memberFormWrapper select[name=BillBirthYear],
    #v65-memberFormWrapper select[name=BirthDay],
    #v65-memberFormWrapper select[name=BirthYear],
    #v65-memberFormWrapper select[name=ShipBirthDay],
    #v65-memberFormWrapper select[name=ShipBirthYear] {
        width: 80px;
    }
}

@media screen and (max-width: 580px) {
    #v65-checkBilling select[name=BillBirthDay],
    #v65-checkBilling select[name=BillBirthYear],
    #v65-checkBilling select[name=BirthDay],
    #v65-checkBilling select[name=BirthYear],
    #v65-checkBilling select[name=ShipBirthDay],
    #v65-checkBilling select[name=ShipBirthYear],
    #v65-memberFormWrapper select[name=BillBirthDay],
    #v65-memberFormWrapper select[name=BillBirthYear],
    #v65-memberFormWrapper select[name=BirthDay],
    #v65-memberFormWrapper select[name=BirthYear],
    #v65-memberFormWrapper select[name=ShipBirthDay],
    #v65-memberFormWrapper select[name=ShipBirthYear] {
        width: 28%;
    }
    .pageTop {
        margin-top: 147px
    }
}

@media screen and (min-width: 581px) {
    #v65-checkBilling select[name=BillBirthMonth],
    #v65-checkBilling select[name=BirthMonth],
    #v65-checkBilling select[name=ShipBirthMonth],
    #v65-memberFormWrapper select[name=BillBirthMonth],
    #v65-memberFormWrapper select[name=BirthMonth],
    #v65-memberFormWrapper select[name=ShipBirthMonth] {
        width: 100px;
    }
}

@media screen and (max-width: 580px) {
    #v65-checkBilling select[name=BillBirthMonth],
    #v65-checkBilling select[name=BirthMonth],
    #v65-checkBilling select[name=ShipBirthMonth],
    #v65-memberFormWrapper select[name=BillBirthMonth],
    #v65-memberFormWrapper select[name=BirthMonth],
    #v65-memberFormWrapper select[name=ShipBirthMonth] {
        width: 38%;
    }
}

@media screen and (max-width: 580px) {
    #v65-checkBilling select[name=BillStateCode],
    #v65-memberFormWrapper select[name=BillStateCode] {
        width: 100%;
    }
}

#v65-memberAddressBook th {
    background-color: transparent;
}

#v65-memberAddressBook tr:hover,
#v65-memberAddressBook tr:focus,
#v65-memberAddressBook tr:active {
    background-color: #eee;
}


/* ----- a. Homepage Styles ----- */

.homepageHeader {
    overflow: hidden;
}


/*
@media screen and (max-width: 850px) {
  .homepageHeader {
    min-height: 400px;
  }
}
@media screen and (min-height: 851px) {
  .homepageHeader {
    min-height: 600px;
  }
}
*/


/*
.bx-wrapper {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
*/

.bx-wrapper .bx-viewport {
    /* 	height: auto !important; */
}

@media screen and (max-width: 580px) {
    .bx-wrapper .bx-controls {
        display: none;
    }
}


/*
.homepageGallery {
  background: #332f2c;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
*/


/*
.homepageGallery .homepagePhoto {
  -ms-behavior: url(backgroundsize.min.htc);
  behavior: url(backgroundsize.min.htc);
  background-repeat: no-repeat;
  background-position: center center;
  padding: 0;
  list-style-type: none;
  position: relative;
  width: 100%;
  height: 100%;
}
*/

.homepageGallery {
    padding: 0;
    margin: 0;
}

.homepageGallery .homepagePhoto {
    list-style: none;
    /* 	position: relative !important; */
}

.homepagePhoto img {
    height: auto;
    width: 100%;
    vertical-align: middle;
}

@media screen and (min-width: 581px) {
    .homepageGallery .homepagePhoto {
        background-size: cover;
        /*     background-attachment: fixed; */
    }
}

.imagePreloader {
    opacity: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.imageVisible {
    opacity: 1;
}

.galleryContent {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 120%;
    max-width: 950px;
    margin: 0 auto;
    padding: 8.5em 2em;
    position: relative;
    text-align: center;
    width: 100%;
    z-index: 1;
}

@media screen and (max-width: 1350px) {
    .galleryContent {
        padding: 7.5em 2em;
    }
}

@media screen and (max-width: 1280px) {
    .galleryContent {
        padding: 6.5em 2em;
    }
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
    .galleryContent {
        padding: 9.25em 5%;
        width: 90%;
    }
}

@media screen and (max-width: 450px) {
    .galleryContent {
        padding: 4.5em 1em;
    }
}

@media screen and (min-width: 1001px) {
    .galleryContent.galleryFixed {
        position: fixed;
        top: initial;
        left: 50%;
        margin-left: -475px;
    }
}

.galleryContent.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    animation-delay: 1s;
}

.galleryContent h1,
.galleryContent h2,
.galleryContent h3,
.galleryContent h4,
.galleryContent h5,
.galleryContent h6,
.galleryContent p,
.galleryContent a {
    -ms-text-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
    -moz-text-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
    -o-text-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
    -webkit-text-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
    color: #fff;
    margin-bottom: 0.25em;
}

.galleryContent p {
    font-size: 90%;
}

@media screen and (min-width: 851px) {
    .galleryContent h1 {
        font-size: 3em;
    }
    .galleryContent h2 {
        font-size: 2em;
    }
    .galleryContent h3 {
        font-size: 1.75em;
    }
}

@media screen and (max-width: 850px) {
    .galleryContent h1 {
        font-size: 1.9em;
    }
    .galleryContent h2 {
        font-size: 1.75em;
    }
    .galleryContent h3 {
        font-size: 1.5em;
    }
}

@media screen and (max-width: 450px) {
    .galleryContent h1,
    .galleryContent h2,
    .galleryContent h3,
    .galleryContent h4,
    .galleryContent h5,
    .galleryContent h6 {
        font-size: 1.5em;
    }
}

.galleryContent a {
    text-decoration: underline;
}

.homepageContent {
    background: url(../images/texture-cream.jpg);
    border-top: 1px solid #ded6d0;
    border-bottom: 1px solid #ded6d0;
    float: left;
    position: relative;
    text-align: center;
    width: 100%;
    z-index: 10;
}

.homepageContent .wrapper {
    max-width: 900px;
    margin: 4em auto;
}

.homepageBanner {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -ms-behavior: url(backgroundsize.min.htc);
    behavior: url(backgroundsize.min.htc);
    background-position: center;
    background-repeat: no-repeat;
    font-size: 120%;
    float: left;
    padding: 12em 0;
    min-height: 650px;
    position: relative;
    z-index: 2;
    width: 100%;
}

@media screen and (min-width: 581px) {
    .homepageBanner {
        background-size: cover;
        background-attachment: fixed;
    }
}

.homepageBanner .wrapper {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.homepageBanner h1,
.homepageBanner h2,
.homepageBanner h3,
.homepageBanner h4,
.homepageBanner h5,
.homepageBanner h6,
.homepageBanner p,
.homepageBanner a {
    -ms-text-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
    -moz-text-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
    -o-text-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
    -webkit-text-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
    color: #fff;
    margin-bottom: 0.25em;
}

.homepageBanner p {
    font-size: 90%;
}

@media screen and (min-width: 851px) {
    .homepageBanner h1 {
        font-size: 3em;
    }
    .homepageBanner h2 {
        font-size: 2em;
    }
    .homepageBanner h3 {
        font-size: 1.75em;
    }
}

@media screen and (max-width: 850px) {
    .homepageBanner h1 {
        font-size: 1.9em;
    }
    .homepageBanner h2 {
        font-size: 1.75em;
    }
    .homepageBanner h3 {
        font-size: 1.5em;
    }
}

@media screen and (max-width: 450px) {
    .homepageBanner h1,
    .homepageBanner h2,
    .homepageBanner h3,
    .homepageBanner h4,
    .homepageBanner h5,
    .homepageBanner h6 {
        font-size: 1.5em;
    }
}

.homepageBanner a {
    text-decoration: underline;
}

.homepageSections {
    background: url(../images/texture-white.jpg);
    -ms-box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
    -o-box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
    position: relative;
    padding: 3em 5em;
    z-index: 5;
}

@media screen and (max-width: 1450px) {
    .homepageSections {
        padding: 3em 2em;
    }
    .homepage-alert {
        padding: 2em 2em;
    }
}

@media screen and (max-width: 1000px) {
    .homepageSections {
        padding: 3em 1em;
    }
    .homepage-alert {
        padding: 2em 1em;
    }
}

.homepageSection {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    -ms-box-shadow: 1px 1px 4px rgba(47, 40, 30, 0.21);
    -moz-box-shadow: 1px 1px 4px rgba(47, 40, 30, 0.21);
    -o-box-shadow: 1px 1px 4px rgba(47, 40, 30, 0.21);
    -webkit-box-shadow: 1px 1px 4px rgba(47, 40, 30, 0.21);
    box-shadow: 1px 1px 4px rgba(47, 40, 30, 0.21);
    border: 5px ridge #aba07a;
    float: left;
    margin: 1%;
    padding: 10em 0 7.5em;
    position: relative;
    text-align: center;
    z-index: 2;
    width: 31.33%;
}

@media screen and (max-width: 1200px) {
    .homepageSection {
        padding: 6em 0 4em;
    }
}

@media screen and (max-width: 875px) {
    .homepageSection {
        float: none;
        max-width: 500px;
        margin: 1.5em auto;
        width: 98%;
    }
}

.homepageSection.width-half {
    width: 48%;
}

@media screen and (max-width: 875px) {
    .homepageSection.width-half {
        float: none;
        max-width: 500px;
        margin: 1.5em auto;
        width: 98%;
    }
}

.homepageSection .overlay {
    -ms-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.homepageSection .wrapper {
    max-width: 800px;
    margin: 0 auto;
    z-index: 1;
    position: relative;
}

.homepageSection .homeIcon {
    -ms-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    font-size: 2em;
    padding: 10px;
}

.homepageSection h3,
.homepageSection a {
    -ms-text-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
    -moz-text-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
    -o-text-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
    -webkit-text-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
    color: #fff;
}

.homepageSection h3 {
    /*   padding-top: 1.2em; */
    font-size: 1.8em;
}

.homepageSection a {
    text-decoration: underline;
}

.homepageSection:hover .overlay,
.homepageSection:focus .overlay,
.homepageSection:active .overlay {
    background: rgba(2, 2, 2, 0.59);
}

.homepageSection:hover .homeIcon,
.homepageSection:focus .homeIcon,
.homepageSection:active .homeIcon {
    border: 3px solid #fff;
}

.homepageProductGroup {
    position: relative;
    z-index: 2;
}

.homepageProductGroup .wrapper {
    max-width: 1500px;
    margin: 0 auto;
}

.homepageProductGroup .v65-productGroup-title.v65-title,
.homepageProductGroup .v65-productGroup-teaser {
    display: none;
}

.homepageProductGroup .v65-productGroup {
    margin-bottom: 0;
}

.homepageProductGroup .v65-productGroup-products .v65-productGroup-product {
    width: 30.33%;
    margin: 3em 0 3em 3%;
}

@media screen and (max-width: 1100px) {
    .homepageProductGroup .v65-productGroup-products .v65-productGroup-product {
        float: none;
        margin: 2em auto;
        max-width: 600px;
        width: 100%;
    }
}

@media screen and (max-width: 790px) {
    .homepageProductGroup .v65-productGroup-products .v65-productGroup-product {
        float: left;
    }
}

.homepageProductGroup .v65-productGroup-products .v65-productGroup-product .productPhoto {
    float: right;
    width: 28%;
}

.homepageProductGroup .v65-productGroup-products .v65-productGroup-product .productDescription {
    float: left;
    margin: 0 4% 0 0;
    text-align: left;
    width: 68%;
}

.homepageProductGroup .v65-productGroup-products .v65-productGroup-product .productDescription .v65-title {
    font-size: 1.15em;
}

.homepageBottomContent {
    display: none;
    background: #e4e0de;
    float: left;
    width: 100%;
}

.homepageEvents {
    float: left;
    width: 42%;
    margin-left: 8%;
}

.homepageEvents .v65-event-upcoming-title {
    display: none;
}

.homepageEvents .v65-event-upcoming-event {
    border-top: 1px solid #d6d4d2;
    border-bottom: 1px solid #d6d4d2;
    text-align: left;
    padding: 1.5em 0;
    position: relative;
    margin: 0;
}

.homepageEvents .v65-event-upcoming-event .event-arrow {
    -ms-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    padding: 0 10px;
    position: absolute;
    right: 0;
    bottom: 32px;
}

.homepageEvents .v65-event-upcoming-event .event-arrow:hover,
.homepageEvents .v65-event-upcoming-event .event-arrow:focus,
.homepageEvents .v65-event-upcoming-event .event-arrow:active {
    transform: translateX(10px);
}

.homepageEvents .v65-event-upcoming-event .event-arrow a {
    color: #5f794c;
}

.homepageEvents .v65-event-upcoming-event .v65-event-upcoming-event-date {
    color: #aba07a;
    font-family: "Prata", serif;
    font-size: 0.9em;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1em;
    -webkit-font-smoothing: initial;
}

.homepageEvents .v65-event-upcoming-event .v65-event-upcoming-event-title {
    font-size: 1.2em;
    display: block;
}

.homepageEvents .v65-event-upcoming-event .v65-event-upcoming-event-time {
    display: block;
}


/* ----- b. Page Styles ----- */

.backToTop {
    -ms-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    border: 3px solid #aba07a;
    bottom: 20px;
    color: #aba07a;
    border-radius: 50%;
    display: none;
    font-size: 0.9em;
    height: 1.3em;
    line-height: 1.3em;
    padding: 1em;
    position: fixed;
    left: 20px;
    text-align: center;
    text-decoration: none;
    width: 1.3em;
    z-index: 1000;
}

.pageBanner {
    background-color: #3e3a36;
}

#pageBackground {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -ms-behavior: url(backgroundsize.min.htc);
    behavior: url(backgroundsize.min.htc);
    background-repeat: no-repeat;
    background-position: center;
    min-height: 400px;
    padding-top: 25em;
}

@media screen and (min-width: 581px) {
    #pageBackground {
        background-attachment: fixed;
        background-size: cover;
    }
}

@media screen and (min-width: 581px) and (max-width: 950px) {
    #pageBackground {
        min-height: 300px;
        padding-top: 20em;
    }
}

@media screen and (max-width: 580px) {
    #pageBackground {
        background-attachment: initial;
        min-height: 150px;
        padding-top: 14em;
    }
}

.pageBanner {
    position: relative;
}

.pageIntro {
    background: url(../images/texture-cream.jpg);
    border-bottom: 1px solid #ded6d0;
    text-align: center;
}

.pageIntro .wrapper {
    max-width: 1000px;
    margin: 4em auto;
}

.pageContentWrapper,
.wideContent {
    position: relative;
    z-index: 10;
}

.videoWrapper {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
}

@media screen and (min-width: 1401px) {
    .videoWrapper {
        margin: 0 auto;
        max-width: 700px;
        padding-bottom: 399px;
    }
}

.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.v65-socialMediaBar-GooglePlusOne .videoWrapper {
    height: inherit;
    max-width: inherit;
    padding: 0;
}

.v65-calendarList-Month {
    border-bottom: 3px double #d6d4d2;
    color: #aba07a;
    font-family: "Pinyon Script";
    font-size: 2em;
    max-width: 900px;
    margin: 0 auto 1em;
    text-align: center;
}

.v65-calendarList-Event {
    max-width: 900px;
    margin: 0 auto;
    padding-left: 0;
}

.v65-calendarList-Event strong {
    color: #332f2c;
    font-weight: normal;
    font-size: 0.9em;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.v65-calendarList-Event .v65-title {
    font-size: 1.5em;
    margin-bottom: 1em;
}

.v65-calendarList-Event .v65-calendarList-Time {
    display: block;
    font-style: normal;
    text-transform: uppercase;
}

#v65-CalendarTable {
    background-color: transparent;
    border: 0;
    color: #d6d4d2;
}

#v65-CalendarTable th {
    background-color: transparent;
    border: 0;
    border-bottom: 2px solid #d6d4d2;
    color: #808080;
    padding: 5px 0;
}

#v65-CalendarTable td {
    background-color: transparent;
    border-left: 2px solid #d6d4d2;
    border-bottom: 2px solid #d6d4d2;
    border-right: 2px solid #d6d4d2;
    height: 80px;
}

#v65-CalendarTable .v65-CalendarDay {
    border: 0;
    color: #6B6B6B;
    font-size: 0.8em;
}

#v65-CalendarTable .v65-CalendarOffMonthDays {
    background-color: transparent;
}

#v65-CalendarTable .v65-CalendarToDay {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #e3ddd8;
}

#v65-CalendarTable .v65-CalendarEvent {
    text-align: center;
}

@media screen and (max-width: 580px) {
    #v65-CalendarTable .v65-CalendarEvent {
        background: #5f794c;
        border-radius: 3px;
        padding: 0;
    }
}

#v65-CalendarTable .v65-CalendarEvent a {
    color: #aba07a;
}

@media screen and (max-width: 580px) {
    #v65-CalendarTable .v65-CalendarEvent a {
        background-color: transparent;
        color: #fff;
        height: 2.3em;
        width: auto;
    }
}

@media screen and (max-width: 400px) {
    #v65-CalendarTable .v65-CalendarEvent a {
        word-break: break-word;
    }
}

#v65-CalendarWrapper .icon-arrow-right,
#v65-CalendarWrapper .icon-arrow-left {
    color: #aba07a;
    padding: 7px;
}

#v65-CalendarWrapper h2 {
    font-size: 2.4em;
}

.eventDrilldownWrapper {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-top: 3px double #D6D4D2;
    border-bottom: 3px double #D6D4D2;
    max-width: 700px;
    margin: 0 auto;
    padding: 18px 25px;
    width: 100%;
}

@media screen and (max-width: 580px) {
    .eventDrilldownWrapper {
        padding: 18px 25px;
    }
}

.eventWrapper {
    max-width: 950px;
    margin: 0 auto;
    padding-bottom: 3em;
}

.eventWrapper .eventTitle {
    text-align: center;
    margin-bottom: 0.5em;
}

.eventWrapper>h1 {
    text-align: center;
    padding: 0 0 0.3em;
    margin-bottom: 0;
}

@media screen and (min-width: 751px) {
    .eventWrapper>h1 {
        padding: 0 2em 0.5em;
    }
}

@media screen and (min-width: 751px) {
    .eventWrapper .backLink {
        position: absolute;
        top: 14px;
        z-index: 1;
    }
}

@media screen and (max-width: 750px) {
    .eventWrapper .backLink {
        margin-bottom: 1em;
        display: block;
    }
}

.eventWrapper .backLink i {
    font-size: 0.8em;
    color: #aba07a;
}

.eventWrapper .backLink .eventsBackButton {
    color: #aba07a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 1em;
}

.eventWrapper .event-description {
    margin: 2em auto 1em;
    max-width: 700px;
}

#v65-CalendarEventTable {
    margin: 1em 0;
    width: 100%;
}

#v65-CalendarEventTable td {
    padding: 4px 10px 4px 2px;
}

#v65-CalendarEventTable tr td strong {
    font-weight: normal;
}

#v65-CalendarEventTable tr td:first-child {
    color: #332f2c;
    font-family: "Prata", serif;
}

#v65-CalendarEventTable tr td:last-child {
    text-align: right;
}

.videoWrapper {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
}

@media screen and (min-width: 1401px) {
    .videoWrapper {
        margin: 0 auto;
        max-width: 700px;
        padding-bottom: 399px;
    }
}

.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.v65-featureRight,
.v65-right,
.v65-featureLeft,
.v65-left,
.v65-border {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.v65-recipe {
    max-width: 900px;
    border-bottom: 3px double #d6d4d2;
    text-align: left;
    padding: 1.5em 0;
    position: relative;
    margin: 0 auto;
}

.v65-recipe .v65-recipe-date {
    color: #aba07a;
    font-family: "Pinyon Script";
    font-size: 1.7em;
    font-style: normal;
    margin-bottom: 0.35em;
}

.v65-recipe .v65-recipe-photo {
    position: static;
}

@media screen and (min-width: 551px) {
    .v65-recipe .v65-recipe-photo {
        float: left;
        width: 22%;
    }
}

.v65-recipe .v65-recipe-info {
    margin-left: 0;
}

@media screen and (min-width: 551px) {
    .v65-recipe .v65-recipe-info {
        float: left;
        margin-left: 3%;
        width: 69%;
    }
}

.v65-recipe .v65-recipe-title {
    font-size: 1.5em;
}

.v65-recipe .recipe-arrow {
    -ms-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    padding: 0 10px;
    position: absolute;
    right: 0;
    bottom: 32px;
}

@media screen and (max-width: 700px) {
    .v65-recipe .recipe-arrow {
        display: none;
    }
}

.v65-recipe .recipe-arrow:hover,
.v65-recipe .recipe-arrow:focus,
.v65-recipe .recipe-arrow:active {
    transform: translateX(10px);
}

.v65-recipe .recipe-arrow a {
    color: #5f794c;
}

.v65-recipe-drilldown {
    padding-bottom: 3em;
}

.v65-recipe-drilldown-subtitle {
    color: #332f2c;
    font-family: "Prata", serif;
    font-size: 1.3em;
    font-style: normal;
    margin: 1em 0 0.5em;
    text-transform: initial;
}

.v65-recipe-drilldown-right {
    float: left;
    margin-left: 0;
    text-align: center;
    width: 38%;
}

@media screen and (max-width: 1000px) {
    .v65-recipe-drilldown-right {
        float: none;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
}

.v65-recipe-drilldown-right .v65-recipe-attributeLabel {
    color: #332f2c;
    font-size: 0.9em;
    font-style: normal;
    font-weight: normal;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.v65-recipe-drilldown-right .v65-recipe-attributeValue {
    font-size: 16px;
}

.v65-recipe-drilldown-left {
    float: left;
    margin-left: 6%;
    width: 56%;
}

@media screen and (max-width: 1000px) {
    .v65-recipe-drilldown-left {
        float: none;
        margin: 0 auto;
        width: 100%;
    }
}

.v65-recipe-drilldown-related-products {
    border-top: 2px solid #d6d4d2;
    margin-top: 3em;
}

.v65-recipe-drilldown-related-products .v65-product-title {
    font-size: 1.15em;
}

.nivoSlider {
    margin: 0 auto;
    max-width: 900px;
}

.nivo-directionNav a {
    width: 26px;
    height: 26px;
    background: url(../images/gallery-arrows.png) no-repeat;
}

a.nivo-nextNav {
    background-position: -26px 0px;
}

form#v65-emailAFriend {
    width: 100% !important;
}

form#v65-emailAFriend .formatBeside label {
    width: 29% !important;
}

form#v65-emailAFriend textarea,
form#v65-emailAFriend .formatBeside input[type=text],
form#v65-emailAFriend .formatBeside input[type=password],
form#v65-emailAFriend .formatBeside input[type='username'],
form#v65-emailAFriend .formatBeside input[type='tel'],
form#v65-emailAFriend .formatBeside input[type='email'] {
    float: right;
    width: 68% !important;
    height: 3em;
    line-height: 3em;
}

@media screen and (max-width: 580px) {
    #v65-modalContentHeader {
        padding: 0;
        height: 2.5em;
    }
    #v65-modalContentHeader a.modalLinkBtn.modalClose span,
    #v65-modalContentHeader a.modalLinkAltBtn.modalClose span {
        padding: 0 1em;
    }
    #v65-modalContentHeader a.modalLinkBtn.modalClose {
        padding: 0;
    }
    form#v65-emailAFriend .formatBeside label {
        width: 38% !important;
    }
    form#v65-emailAFriend .formatBeside label[for="submit"] {
        width: 0% !important;
        padding: 0;
    }
    form#v65-emailAFriend textarea,
    form#v65-emailAFriend .formatBeside input[type=text],
    form#v65-emailAFriend .formatBeside input[type=password],
    form#v65-emailAFriend .formatBeside input[type='username'],
    form#v65-emailAFriend .formatBeside input[type='tel'],
    form#v65-emailAFriend .formatBeside input[type='email'] {
        height: 2em;
        line-height: 2em;
        width: 60% !important;
    }
}


/* ----- c. Store Styles ----- */

@media screen and (max-width: 725px) {
    #v65-fieldset-wholesalerInfo,
    #v65-fieldset-billingInfo,
    #v65-fieldset-shippingOptions,
    #v65-fieldset-shippingInfo,
    #v65-fieldset-paymentMethod,
    #v65-fieldset-sourceCode,
    #v65-fieldset-usernamePassword {
        width: 98%;
    }
}

@media screen and (max-width: 720px) {
    .print {
        margin: 0 10px;
    }
}

.dotted {
    display: none;
}

.v65-productGroup-teaser {
    max-width: 600px;
    margin: 0 auto 3em;
    text-align: center;
    width: 100%;
}

@media screen and (max-width: 750px) {
    .v65-productGroup .v65-clear {
        display: none;
    }
}

.v65-productGroup .v65-clear.productGroup-2Up-rowClear {
    display: none;
}

@media screen and (min-width: 581px) and (max-width: 599px) {
    .v65-productGroup .v65-clear.productGroup-2Up-rowClear {
        display: block;
    }
}

.v65-productGroup .v65-clear.productGroup-3Up-rowClear {
    display: none;
}

.v65-productGroup .v65-product-title.v65-title {
    font-size: 1.15em;
}

.v65-productGroup .v65-subtitle {
    font-size: 1.6em;
}

@media screen and (min-width: 580px) and (max-width: 1000px) {
    .v65-productGroup-product {
        width: 48%;
    }
}

.v65-productGroup-product .v65-product-addToCart-priceWrapper {
    margin-bottom: 20px;
}

.v65-productGroup-product .v65-product-teaser {
    font-size: 93%;
}

.v65-productGroup-product .v65-product-reviewStats {
    height: initial;
}

#v65-clubFormWrapper form .v65-clubChoice {
    line-height: 1.5;
}

.v65-club {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 5px ridge #aba07a;
    float: left;
    margin: 1em 2%;
    padding: 30px 2% 10px;
    width: 46%;
}

@media screen and (max-width: 940px) {
    .v65-club {
        margin: 1em 0;
        padding: 30px 5% 10px;
        width: 100%;
    }
}

.v65-club .v65-clubTeaser {
    border-bottom: 0;
    padding: 0;
}

.v65-club .v65-clubTeaser p {
    margin-bottom: 0.5em;
}

.v65-club .v65-clubTitle {
    font-size: 1.5em;
    margin-bottom: 1em;
}

.v65-club .v65-clubJoin {
    margin: 1em 0;
}

.club-one-third-center .v65-club,
.club-one-third-left .v65-club {
    width: 31.33%;
    margin: 1em 1%;
}

@media screen and (max-width: 940px) {
    .club-one-third-center .v65-club,
    .club-one-third-left .v65-club {
        margin: 1em 0;
        width: 100%;
    }
}

.club-half-center .v65-club,
.club-half-left .v65-club {
    width: 46%;
}

@media screen and (max-width: 940px) {
    .club-half-center .v65-club,
    .club-half-left .v65-club {
        margin: 1em 0;
        width: 100%;
    }
}

.club-full-center .v65-club,
.club-full-left .v65-club {
    float: none;
    margin: 1em auto;
    max-width: 950px;
    width: 100%;
}

.club-one-third-center .v65-club,
.club-half-center .v65-club,
.club-full-center .v65-club {
    text-align: center;
}

.club-one-third-center .v65-club li,
.club-half-center .v65-club li,
.club-full-center .v65-club li {
    list-style-position: inline;
}

.club-full-left .v65-club {
    max-width: initial;
}

.v65-clubSignUp-Teaser {
    display: none;
}

.v65-product-actionMessage,
.v65-product-reviewStats {
    margin-bottom: 0.5em;
}

.v65-product-addToCart-price {
    color: #332f2c;
    font-size: 0.9em;
}

.v65-product-addToCart-unitDescription {
    color: #808080;
    bottom: 0;
    font-size: 0.9em;
}

.v65-paging,
.v65-pagingBottom {
    border: 0;
}

.v65-product-inventoryMessage {
    color: #808080;
}

.v65-product-availability {
    color: #B7B7B7;
    margin-bottom: 1em;
}

.v65-product-teaser {
    margin-top: 1em;
    margin-bottom: 1em;
}

.v65-product-teaser p {
    margin-bottom: 0;
}

.v65-product-description {
    max-width: 750px;
    margin: 0 auto 1.5em;
    text-align: left;
}

.v65-product-description p,
.v65-product-teaser p {
    margin-bottom: 0.5em;
}

.v65-productList th {
    background: transparent;
    border-color: #e9e4e1;
    font-family: "Prata", serif;
    font-weight: normal;
    font-size: 1.2em;
}

.v65-productList tr:hover {
    background: #e9e4e1;
}

.v65-productList tr.alternatRow {
    background: transparent;
}

.v65-productList tr.alternatRow:hover {
    background: #e9e4e1;
}

.v65-productList td {
    border-color: #e9e4e1;
}

.v65-product1Up {
    margin: 1.5em auto;
    max-width: 750px;
}

@media screen and (max-width: 580px) {
    .v65-product1Up .v65-product-photo {
        margin-right: 4%;
        width: 21%;
    }
}

.v65-product2Up .v65-product-photo {
    margin: 0 2%;
}

.v65-product1UpStore {
    border-bottom: 1px solid #e7e2de;
    margin-bottom: 3em;
    padding-bottom: 2em;
}

@media screen and (max-width: 580px) {
    .v65-product1UpStore .v65-product-photo {
        margin-right: 3%;
        width: 16%;
    }
}

@media screen and (max-width: 580px) {
    .v65-product1UpStore .v65-product-infoWrapper,
    .v65-product1UpStore .v65-product-commerceWrapper {
        width: 81%;
    }
}

@media screen and (max-width: 600px) {
    .v65-product3Up {
        margin: 1em 0;
        width: 100%;
    }
}

.v65-product3Up .v65-product-addToCart-priceWrapper {
    display: inline-block;
}

.v65-product2Up .v65-product-addToCart-priceWrapper,
.v65-product3Up .v65-product-addToCart-priceWrapper,
.v65-product5Up .v65-product-addToCart-priceWrapper {
    margin-bottom: 0.75em;
}

@media screen and (max-width: 1275px) {
    .v65-product2Up .v65-product-addToCart-priceWrapper,
    .v65-product3Up .v65-product-addToCart-priceWrapper,
    .v65-product5Up .v65-product-addToCart-priceWrapper {
        display: block;
    }
}

.v65-product2Up .v65-product-teaser,
.v65-product3Up .v65-product-teaser,
.v65-product5Up .v65-product-teaser,
.v65-product1Up .v65-product-teaser,
.v65-product1UpStore .v65-product-teaser {
    font-size: 93%;
}

.v65-product-addToCart-priceWrapper {
    font-family: "Prata", serif;
}

@media screen and (max-width: 835px) {
    .v65-productWrapper {
        padding: 1em;
    }
}

.v65-productWrapper .v65-product-leftCol {
    margin-top: 1em;
}

@media screen and (max-width: 580px) {
    .v65-productWrapper .v65-product-photo img {
        max-height: 350px;
    }
}

.v65-productWrapper h1 {
    font-size: 2.5em;
    float: none;
    width: 100%;
}

@media screen and (max-width: 920px) {
    .v65-productWrapper h1 {
        font-size: 2.25em;
    }
}

@media screen and (max-width: 770px) {
    .v65-productWrapper h1 {
        font-size: 2em;
    }
}

.v65-productWrapper .v65-product-subtitle {
    font-size: 0.8em;
    font-family: "Pinyon Script";
    text-transform: initial;
    letter-spacing: 0;
}

.v65-productWrapper .v65-product-addToCart .v65-addToCart {
    border: 0;
}

.v65-productWrapper .v65-product-rightCol {
    text-align: center;
}

.v65-productWrapper .v65-product-socialBar {
    margin: 1em 0 1em;
}

.v65-productWrapper .v65-socialMediaBar-Facebook,
.v65-productWrapper .v65-socialMediaBar-Twitter,
.v65-productWrapper .v65-socialMediaBar-GooglePlusOne,
.v65-productWrapper .v65-socialMediaBar-Pinterest,
.v65-productWrapper .v65-socialMediaBar-ShareThis,
.v65-productWrapper .v65-socialMediaBar-Email,
.v65-productWrapper .v65-socialMediaBar-FacebookLikeButton {
    float: none;
    display: inline-block;
}

.v65-productWrapper .v65-product-reviewStats {
    margin: 1.5em 0 0.5em;
}

.wineSpecs,
.wineProfile {
    border-bottom: 1px solid #d6d4d2;
    max-width: 750px;
    margin: 0 auto;
    padding: 15px 0;
    text-align: left;
}

.wineSpecs .v65-wine-specs-title,
.wineSpecs .v65-wine-profile-title,
.wineProfile .v65-wine-specs-title,
.wineProfile .v65-wine-profile-title {
    cursor: pointer;
    font-size: 1.2em;
    margin-left: 10px;
    position: relative;
    text-align: center;
}

.wineSpecs .v65-wine-specs-title:after,
.wineSpecs .v65-wine-profile-title:after,
.wineProfile .v65-wine-specs-title:after,
.wineProfile .v65-wine-profile-title:after {
    content: "\e097";
    color: #aba07a;
    font-family: 'icomoon';
    font-size: 0.7em;
    position: absolute;
    bottom: 3px;
    right: 12px;
}

.wineSpecs.opened .v65-wine-specs-title:after,
.wineSpecs.opened .v65-wine-profile-title:after,
.wineProfile.opened .v65-wine-specs-title:after,
.wineProfile.opened .v65-wine-profile-title:after {
    content: "\e096";
}

.wineSpecs .v65-wine-specs,
.wineSpecs .v65-wine-profile,
.wineProfile .v65-wine-specs,
.wineProfile .v65-wine-profile {
    margin-left: 10px;
}

.wineSpecs {
    border-top: 1px solid #d6d4d2;
    width: 100%;
}

.stbuttontext {
    padding: 0;
    font-size: 1em
}

@media screen and (max-width: 860px) {
    .wineSpecs {
        margin-right: 0;
        width: 100%;
    }
}

.wineSpecs .v65-wine-specs .v65-product-attribute {
    font-size: .875em;
    margin: 0.5em 0;
}

.wineSpecs .v65-product-attributeLabel {
    color: #4e4937;
    display: inline-block;
    font-size: 0.95em;
    font-weight: normal;
    float: none;
    margin: 0 7px 0 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    width: initial;
}

.wineSpecs .v65-product-attributeValue {
    display: inline-block;
    float: none;
    margin: 0;
    width: initial;
}

.wineSpecs .v65-wine-specs {
    display: block;
    overflow: hidden;
}

.wineProfile {
    width: 100%;
}

.wineProfile .v65-wine-profile {
    display: block;
    overflow: hidden;
    margin-bottom: 0;
}

@media screen and (max-width: 860px) {
    .wineProfile .v65-wine-profile {
        width: 100%;
    }
}

.wineProfile .v65-wine-profile .v65-product-attribute {
    margin: 0.75em 0;
}

.wineProfile .v65-wine-profile .v65-product-attributeLabel {
    color: #4e4937;
    font-size: 0.95em;
    font-weight: normal;
    letter-spacing: 0.5px;
    margin-bottom: 0.5em;
    text-transform: uppercase;
    width: initial;
}

.bottomProductInfo {
    background: url(../images/texture-white.jpg);
    border-top: 1px solid #ded6d0;
    margin-top: 7em;
}

.productReviews {
    float: left;
    margin: 4em 0;
    width: 100%;
}

@media screen and (max-width: 860px) {
    .productReviews {
        padding-top: 3em;
    }
}

.productReviews .v65-ProductRating .v65-form legend {
    font-size: 1.5em;
}

.productReviews .v65-product-reviews .v65-product-review-wrapper {
    border-color: #d6d4d2;
    max-width: 650px;
    margin: 3em auto 0;
}

.productReviews .v65-product-reviews-title.v65-title {
    font-size: 2em;
    text-align: center;
}

.productReviews .v65-ProductRating p {
    text-align: center;
}

.productReviews .v65-ProductRating .v65-form {
    margin: 3em auto 1em;
}

.productReviews .v65-ProductRating .v65-form legend {
    color: #4e4937;
    font-size: 1em;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    width: initial;
}

.v65-product-relatedProducts {
    float: left;
    padding: 2em 0;
    width: 100%;
}

.v65-product-relatedProducts .v65-product-relatedProducts-title.v65-title {
    font-size: 2em;
    margin-top: 1em;
    text-align: center;
}

.v65-product-relatedProducts:first-child {
    border: 0;
}

.v65-product-relatedProducts .v65-product-addToCart-priceWrapper {
    font-size: 0.8em;
    margin-bottom: 10px;
}

.v65-product-relatedProducts .v65-product-relatedProducts-product {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 1em 1%;
}

@media screen and (max-width: 870px) {
    .v65-product-relatedProducts .v65-product-relatedProducts-product {
        width: 100%;
    }
}

.v65-product-relatedProducts .v65-product-relatedProducts-product:first-child {
    border-left: 0;
    border-top: 0;
}

.v65-product-relatedProducts .v65-product-relatedProducts-product .v65-title {
    font-size: 1.2em;
}

.v65-product-relatedProducts .v65-product-relatedProducts-product .v65-product-addToCart-priceWrapper {
    font-size: 0.95em;
}

.v65-product-relatedProducts .v65-product-relatedProducts-product .v65-product-photo img {
    max-height: 200px;
}

div#v65-LoginFormWrapper fieldset {
    border: 0;
}

#v65-modalViel {
    background-color: #000;
    opacity: 0.6;
    filter: alpha(opacity=6);
    -moz-opacity: 0.6;
}

#v65-modalContentHeader {
    background: transparent;
    height: initial;
}

a.modalLinkBtn.modalClose,
a.modalLinkAltBtn.modalClose {
    background: transparent;
}

a.modalLinkBtn.modalClose:hover,
a.modalLinkBtn.modalClose:focus,
a.modalLinkBtn.modalClose:active,
a.modalLinkAltBtn.modalClose:hover,
a.modalLinkAltBtn.modalClose:focus,
a.modalLinkAltBtn.modalClose:active {
    background: transparent;
}

a.modalLinkBtn.modalClose span,
a.modalLinkAltBtn.modalClose span {
    padding: 1em;
}

a.modalLinkBtn.modalClose i,
a.modalLinkAltBtn.modalClose i {
    color: #332f2c;
    font-size: 1.5em;
}

a.modalLinkAltBtn.modalClose span {
    padding: 0;
}

div#v65-modalCartBody {
    background: #fff;
    border-color: #e3ddd8;
}

div#v65-modalCartBody .right {
    margin-bottom: 0.75em;
}

#v65-modalCartDropdown {
    border-color: #E6E6E6;
}

@media screen and (max-width: 580px) {
    #v65-modalCartDropdown {
        top: 3em;
    }
}

#v65-modalCartTable strong {
    font-weight: normal;
    -ms-word-break: break-word;
    word-break: break-word;
}

#v65-modalCartTable th,
#v65-modalCartTable #v65-modalCartTableSubtotal td {
    background-color: transparent;
    font-size: 1em;
    font-weight: normal;
}

#v65-modalCartTable #v65-modalCartTableSubtotal td {
    padding: 2px 0;
}

#v65-modalCartTable td {
    border: 0;
    padding: 7px 1px;
}

#v65-modalCartTable th {
    border-top: 0;
    font-size: 0.8em;
}

.v65-form#v65-loginForm legend {
    margin-bottom: 1em;
}

#v65-modalContent .v65-form#v65-loginForm {
    margin: 0 auto;
}

#v65-modalContent .v65-form#v65-loginForm legend {
    font-size: 1.7em;
    text-align: center;
}

#v65-modalContent p {
    margin-bottom: 0.5em;
}

.v65-product-quickView {
    border: 1px solid #d6d4d2;
    border-radius: 0;
    font-size: 16px;
    font-weight: bold;
    margin-left: -61px;
    padding: 14px 5px;
    text-transform: uppercase;
}

@media screen and (max-width: 550px) {
    .v65-product-quickView {
        display: none !important;
    }
}

.v65-quickView {
    background: #fdfcfc;
    border: 1px solid #d6d4d2;
    border-radius: 0;
    box-shadow: none;
}

.v65-quickView .v65-product-tabs .last a,
.v65-quickView .v65-quickView-close a {
    border-radius: 0;
}

.v65-quickView .v65-product-title {
    margin: 0.5em 0;
}

.v65-quickView .v65-quickView-close {
    top: 15px;
    right: 15px;
}

.v65-quickView .v65-quickView-close a {
    font-size: 12px;
    padding: 6px 15px;
    text-transform: uppercase;
}

.v65-quickView .modalClose a {
    background: transparent;
    padding: 0;
}

.v65-quickView .modalClose a:hover,
.v65-quickView .modalClose a:focus,
.v65-quickView .modalClose a:active {
    background: transparent;
}

.v65-quickView .modalClose a i {
    color: #332f2c;
    font-size: 2em;
}

.v65-quickView .v65-product-tabs {
    border-bottom: 0;
}

.v65-quickView .v65-product-tabs li a {
    color: #4e4937;
    background: #fdfcfc;
    border: 0;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 30px 0 0;
}

.v65-quickView .v65-product-tabs li a:hover,
.v65-quickView .v65-product-tabs li a:focus,
.v65-quickView .v65-product-tabs li a:active {
    outline: none;
}

.v65-quickView .v65-product-tab-active {
    border: 0;
    padding: 25px 0;
}

.v65-quickView .v65-product-tab-active a {
    color: #aba07a;
}

.v65-quickView .v65-product-tabRightcol {
    float: none;
    width: 100%;
}

.v65-quickView .v65-product-tabRightcol .v65-wine-specs-title {
    text-align: left;
}

.v65-quickView .v65-product-tabRightcol .v65-wine-specs {
    margin-bottom: 1em;
}

.v65-quickView .v65-product-tabRightcol .v65-wine-specs .v65-product-attributeLabel,
.v65-quickView .v65-product-tabRightcol .v65-wine-specs .v65-product-attributeValue {
    width: initial;
    text-align: left;
}

.v65-quickView .v65-wine-specs .v65-product-attributeLabel,
.v65-quickView .v65-wine-profile .v65-product-attributeLabel {
    color: #4e4937;
    font-size: 0.95em;
    font-weight: normal;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.v65-quickView .v65-product-tab .v65-title {
    display: none;
}

.v65-quickView .v65-product-review-wrapper {
    border-bottom: 0;
}

.v65-quickView .v65-product-review-wrapper .v65-product-review-avatar {
    display: none;
}

.v65-quickView .v65-product-review-wrapper .v65-product-review-comment-wrapper {
    margin-left: 0;
}

.v65-quickView .v65-product-review-wrapper .v65-product-review-reviewerName {
    color: #332f2c;
    font-size: 1em;
}

.v65-product-attributeLabel {
    font-weight: normal;
}

#v65-cartCheckOutCoupons legend {
    font-size: 1em;
}

#v65-cartCheckOutCoupons form {
    width: 300px;
}

#v65-cartCheckOutCoupons #v65-CouponCode {
    height: 2em;
    line-height: 2em;
    width: 150px !important;
    margin-right: .25em;
}

#v65-cartCheckOutCoupons button.modalBtn {
    line-height: 2em;
    height: 2em;
}

@media screen and (max-width: 580px) {
    #v65-cartCheckOutCoupons button.modalBtn {
        font-size: 0.6em;
        line-height: 2.5em;
        height: 2.5em;
    }
}

#v65-cartCheckOutCoupons button.modalBtn span {
    padding: 0 1em;
}

@media screen and (max-width: 800px) {
    #v65-cartTable {
        font-size: 90%;
    }
}

#v65-cartTable th,
#v65-cartTable #v65-cartSubtotal td,
#v65-cartTable .v65-cartTax td,
#v65-cartTable #v65-cartTotal td {
    background-color: transparent;
}

@media screen and (min-width: 581px) {
    #v65-cartTable button span {
        padding: 0 1em;
    }
}

@media screen and (max-width: 580px) {
    #v65-cartTable button span {
        padding: 0 5px;
    }
}

#v65-cartTable button.modalBtn,
#v65-cartTable button.altModalBtn {
    height: 2em;
}

@media screen and (max-width: 580px) {
    #v65-cartTable button.modalBtn,
    #v65-cartTable button.altModalBtn {
        font-size: 0.8em;
        height: auto;
    }
}

#v65-cartTable a.modalLinkBtn,
#v65-cartTable a.modalLinkAltBtn {
    font-size: 0.8em;
}

#v65-cartTable .v65-cartItemDescription {
    word-break: break-word;
}

#v65-cartTable .v65-cartItemDescription .v65-cartItemDescription-sku .small {
    display: none;
}

#v65-cartTable td,
#v65-cartTable th {
    font-weight: normal;
}

.v65-cartItem td,
#v65-cartTable th,
#v65-cartSubtotal td,
#v65-cartTable #v65-cartTotal td {
    border-color: #e3ddd8;
}

#v65-reviewClubSummaryWrapper,
#v65-signUpClubSummaryWrapper,
#v65-checkoutCartSummaryWrapper {
    /*   background: transparent; */
    border-color: #dbdbdb;
}

#v65-reviewClubSummaryWrapper {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 500px;
    max-width: 100%;
}

#v65-checkoutCartSummaryWrapper {
    position: static;
}

@media screen and (min-width: 726px) {
    #v65-checkoutCartSummaryWrapper {
        float: right;
    }
}

#v65-checkoutCartSummaryWrapper #v65-checkCartSummaryMoreOptions,
#v65-checkoutCartSummaryWrapper #v65-checkoutCartSummaryMini {
    font-size: 15px;
    margin: 0 2%;
    width: 96%;
}

#v65-checkoutCartSummaryWrapper #v65-checkoutCartSummaryMini {
    border-bottom: 2px solid #aba07a;
    margin-bottom: 1em;
}

#v65-checkoutCartSummaryWrapper #v65-couponFormWrapper legend,
#v65-checkoutCartSummaryWrapper #v65-giftCardFormWrapper legend {
    color: #4e4937;
    font-size: 0.9em;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 0;
}

#v65-checkoutCartSummaryWrapper #v65-couponFormWrapper div,
#v65-checkoutCartSummaryWrapper #v65-giftCardFormWrapper div,
#v65-checkoutCartSummaryWrapper #v65-checkoutCartSummaryMini td {
    font-size: 15px;
    line-height: 1.5;
}

#v65-checkoutCartSummaryWrapper #v65-CouponCode,
#v65-checkoutCartSummaryWrapper #v65-GiftCode {
    height: 2.7em;
    line-height: 2.7em;
    width: 60% !important;
}

@media screen and (min-width: 581px) {
    #v65-checkoutCartSummaryWrapper #v65-CouponCode,
    #v65-checkoutCartSummaryWrapper #v65-GiftCode {
        height: 2em;
        line-height: 2em;
    }
}

#v65-checkoutCartSummaryWrapper .v65-rowOverline td {
    border: 0;
}

#v65-checkoutFormWrapper,
#v65-clubFormWrapper {
    font-size: 0.9em;
}

#v65-checkoutFormWrapper .v65-form,
#v65-clubFormWrapper .v65-form {
    max-width: initial;
}

#v65-signUpClubSummaryWrapper {
    float: right;
    position: static;
}

.v65-rowOverline td {
    border-color: #c8c8c8;
}

.v65-memberAllocationWrapper {
    border-bottom: 0;
}

.v65-memberAllocationWrapper .v65-allocationEndDate,
.v65-memberAllocationWrapper .v65-allocationMinBottlesPerOrder,
.v65-memberAllocationWrapper .v65-allocationMaxBottlesPerOrder {
    display: block;
    text-align: left;
}

.v65-memberAllocationWrapper h2 {
    font-size: 2em;
    text-align: left;
}

.v65-memberAllocationWrapper .v65-memberAllocationTeaser h3 {
    font-size: 1.75em;
}

.v65-memberAllocationWrapper .v65-memberAllocationTeaser h1,
.v65-memberAllocationWrapper .v65-memberAllocationTeaser h2,
.v65-memberAllocationWrapper .v65-memberAllocationTeaser h3,
.v65-memberAllocationWrapper .v65-memberAllocationTeaser h4,
.v65-memberAllocationWrapper .v65-memberAllocationTeaser h5,
.v65-memberAllocationWrapper .v65-memberAllocationTeaser h6,
.v65-memberAllocationWrapper .v65-memberAllocationTeaser a {
    text-align: left;
}

.v65-memberAllocationWrapper .v65-memberAllocationTeaser .v65-storeAllocationSKU {
    display: block;
}

.v65-memberAllocationWrapper .v65-memberAllocationTeaser .v65-memberAllocationTable {
    font-size: 14px;
}

.membersPages .pageContent {
    max-width: 950px;
    margin: 0 auto;
}

.v65-memberClubDescription {
    padding: 0;
}

form#v65-emailAFriend .formatBeside label {
    float: none;
    width: auto !important;
    text-align: left;
}

form#v65-emailAFriend {
    width: 100% !important;
}

form#v65-emailAFriend textarea,
form#v65-emailAFriend .formatBeside input[type=text],
form#v65-emailAFriend .formatBeside input[type=password] {
    width: 100%;
}


/*   ===================================================================================================
     5. Blog
======================================================================================================== */

@media screen and (min-width: 781px) {
    .blogContent {
        float: left;
        padding-right: 5%;
        width: 70%;
    }
}

@media screen and (max-width: 780px) {
    .blogContent {
        float: none;
        padding-right: 0;
        width: 100%;
    }
}

.blogContent .v65-avatar img {
    display: none;
}

.blogContent .v65-blogPost {
    border-bottom: 2px solid #d6d4d2;
    margin-left: 0;
}

.blogContent .v65-blogPostDate {
    color: #aba07a;
    font-family: "Pinyon Script";
    font-size: 1.75em;
}

.blogContent h2 a {
    color: #332f2c;
}

.blogContent h2 a:hover {
    color: #332f2c;
}

h3.v65-blogCommentsTitle {
    font-size: 1.5em;
}

.blogFilterWrapper {
    margin-top: 2em;
    width: 25%;
    float: left;
    padding-top: 2em;
}

@media screen and (max-width: 780px) {
    .blogFilterWrapper {
        float: none;
        width: 100%;
    }
}

.blogFilterWrapper ul {
    list-style: none;
    padding: 0;
}

.blogFilterWrapper li {
    font-size: 16px;
}

.blogFilterWrapper .blogFilter {
    float: left;
    width: 100%;
}

.blogFilterWrapper .blogFilter h5 {
    text-transform: none;
}


/*   ===================================================================================================
     6. Buttons
======================================================================================================== */

button span {
    padding: 0 1em;
    font-size: 0.8em;
}

@media screen and (min-width: 581px) {
    button span {
        padding: 0 2em;
    }
}

button.defaultBtn,
button.modalBtn,
button.largeBtn {
    background: #5f794c;
    letter-spacing: 0.5px;
    border-radius: 3px;
    text-transform: uppercase;
    text-decoration: none;
    vertical-align: middle;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

#submitbutton {
    margin-left: 5px;
    border: none;
    color: #fff;
    line-height: 45px;
    padding: 0 2em;
    font-size: 0.8em;
    background: #5f794c;
    letter-spacing: 0.5px;
    border-radius: 3px;
    text-transform: uppercase;
    text-decoration: none;
    vertical-align: middle;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@media screen and (max-width: 580px) {
    button.defaultBtn,
    button.modalBtn,
    button.largeBtn {
        font-size: 0.9em;
    }
    #submitbutton {
        margin-left: 5px;
        border: none;
        color: #fff;
        line-height: 72px;
        padding: 0 0.7em;
        font-size: 0.8em;
        background: #5f794c;
        letter-spacing: 0.5px;
        border-radius: 3px;
        text-transform: uppercase;
        text-decoration: none;
        vertical-align: middle;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    }
}

button.defaultBtn span,
button.modalBtn span,
button.largeBtn span {
    background: none;
    height: auto;
    line-height: inherit;
}

@media screen and (min-width: 581px) {
    button.defaultBtn span,
    button.modalBtn span,
    button.largeBtn span {
        padding: 0 2em;
    }
}

button.defaultBtn:hover,
button.defaultBtn:active,
button.modalBtn:hover,
button.modalBtn:active,
button.largeBtn:hover,
button.largeBtn:active {
    background: #536942;
}

button.modalBtn,
button.altModalBtn {
    height: 2.5em;
    line-height: inherit;
}

button.altBtn,
button.altModalBtn,
button.altLargeBtn {
    background: #b1b1b1;
    border-radius: 3px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    vertical-align: middle;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

button.altBtn span,
button.altModalBtn span,
button.altLargeBtn span {
    background: none;
    height: auto;
    line-height: inherit;
}

button.altBtn:hover,
button.altBtn:active,
button.altModalBtn:hover,
button.altModalBtn:active,
button.altLargeBtn:hover,
button.altLargeBtn:active {
    background: #a4a4a4;
}

a span {
    padding: 0 1em;
    font-size: 0.8em;
    height: auto;
    line-height: inherit;
}

@media screen and (min-width: 581px) {
    a span {
        padding: 0 2em;
    }
}

a.linkBtn,
a.modalLinkBtn,
a.largeLinkBtn {
    background: #5f794c;
    border-radius: 3px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    vertical-align: middle;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a.linkBtn span,
a.modalLinkBtn span,
a.largeLinkBtn span {
    background: none;
    height: auto;
    line-height: inherit;
}

@media screen and (min-width: 581px) {
    a.linkBtn span,
    a.modalLinkBtn span,
    a.largeLinkBtn span {
        padding: 0 2em;
    }
}

a.linkBtn:hover,
a.linkBtn:active,
a.modalLinkBtn:hover,
a.modalLinkBtn:active,
a.largeLinkBtn:hover,
a.largeLinkBtn:active {
    background: #536942;
}

a.largeLinkBtn {
    font-size: 1.2em;
}

@media screen and (min-width: 581px) {
    a.modalLinkBtn span {
        padding: 0 1em;
    }
}

a.linkAltBtn,
a.modalLinkAltBtn,
a.modalLinkAltBtn {
    background: #b1b1b1;
    border-radius: 3px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    vertical-align: middle;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a.linkAltBtn span,
a.modalLinkAltBtn span,
a.modalLinkAltBtn span {
    background: none;
    height: auto;
    line-height: inherit;
}

a.linkAltBtn:hover,
a.linkAltBtn:active,
a.modalLinkAltBtn:hover,
a.modalLinkAltBtn:active,
a.modalLinkAltBtn:hover,
a.modalLinkAltBtn:active {
    background: #a4a4a4;
}

a.modalLinkBtn,
a.modalLinkAltBtn,
a.modalLinkAltBtn {
    min-width: auto;
}


/*   ===================================================================================================
     7. Footer
======================================================================================================== */

footer {
    color: #676359;
    background: #2b2725;
    font-size: 17px;
    float: left;
    padding: 4em 0 0.5em;
    position: relative;
    z-index: 2;
    width: 100%;
}

footer .footerSection {
    float: left;
    font-size: 0.9em;
    font-size: 1em;
    margin-left: 3%;
    width: 22.6%;
}

@media screen and (min-width: 1051px) {
    footer .footerSection:first-child {
        margin-left: 0;
    }
}

@media screen and (min-width: 581px) and (max-width: 1050px) {
    footer .footerSection .v65-pod {
        max-width: 250px;
    }
}

@media screen and (min-width: 750px) and (max-width: 1050px) {
    footer .footerSection {
        margin: 1em 2%;
        width: 46%;
    }
}

@media screen and (max-width: 750px) {
    footer .footerSection {
        margin: 0 0 1em;
        width: 100%;
    }
}

footer .footerSection h3 {
    color: #b3ab96;
    border-bottom: 1px solid #403d38;
    font-size: 1.1em;
    letter-spacing: 0.3px;
    padding-bottom: 9px;
}

footer .footerSection h3,
footer .footerSection p,
footer .footerSection nav,
footer .footerSection .socialIcons {
    text-align: left;
}

@media screen and (max-width: 580px) {
    footer .footerSection h3,
    footer .footerSection p,
    footer .footerSection nav,
    footer .footerSection .socialIcons {
        text-align: center;
    }
}

footer nav ul {
    margin: 0;
    padding: 0;
}

footer nav li {
    list-style-type: none;
    padding: 0;
}

@media screen and (max-width: 767px) {
    footer nav li {
        line-height: 30px;
    }
}

footer nav li a {
    color: #676359;
    font-size: 1em;
    display: inline-block;
    position: relative;
}

footer nav li a:hover {
    color: #928d80;
}

@media screen and (max-width: 767px) {
    footer nav li a {
        width: 100%;
    }
}

footer a {
    color: #676359;
}

footer .socialIcons {
    padding: 0;
    margin: 0;
}

footer .socialIcons li {
    color: #676359;
    display: inline-block;
    list-style-type: none;
    margin-right: 15px;
    padding: 0;
}

footer .socialIcons li a {
    color: #676359;
    font-size: 1.4em;
    padding: 18px 0;
}

footer .socialIcons li a:hover,
footer .socialIcons li a:focus,
footer .socialIcons li a:active {
    color: #928d80;
}

footer .lowerFooter {
    float: left;
    margin-top: 2em;
    width: 100%;
}

footer .copyright {
    color: #524f47;
    display: block;
    clear: left;
    font-size: 0.75em;
    line-height: 2;
}

footer .copyright a {
    color: #524f47;
}

@media screen and (min-width: 768px) {
    footer .copyright {
        float: left;
        display: inline-block;
    }
}

@media screen and (min-width: 551px) {
    #v65-subscribeWidget input {
        width: 250px;
    }
}

#v65-subscribeWidget .icon-email {
    padding-right: 6px;
}

.footer-banner {
    width: 100%;
    height: 220px;
    clear: both;
    position: relative;
}

.footer-banner {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -ms-behavior: url(backgroundsize.min.htc);
    behavior: url(backgroundsize.min.htc);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

@media screen and (min-width: 581px) {
    .footer-banner {
        /*
    background-attachment: fixed;
    background-size: cover;
*/
    }
}

@media screen and (min-width: 581px) and (max-width: 950px) {
    .footer-banner {}
}

@media screen and (max-width: 580px) {
    .footer-banner {
        background-attachment: initial;
        height: 140px;
    }
}


/*   ===================================================================================================
     8. Tweaks, etc.
======================================================================================================== */

.subSubMenu {
    display: none;
}

.main-slider .nivoSlider {
    max-width: 100%;
}

.slider-desktop {
    display: block;
}

.slider-mobile {
    display: none;
}

@media screen and (max-width: 580px) {
    .slider-desktop {
        display: none;
    }
    .slider-mobile {
        display: block;
    }
}

#v65-cartCheckOutCoupons {
    width: 100%;
    margin-bottom: 2em;
}

.hideme {
    display: none
}

.blocker {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8)
}

.productGroupStock .v65-product-photo,
.productGroupStock .v65-productGroup-teaser,
.productGroupStock .v65-productGroup-title,
.productGroupStock .v65-product-reviewStats {
    display: none;
}

.productGroupStock .v65-productGroup-product {
    width: 100%;
    margin: 0;
}

.productGroupStock .v65-product-addToCart-price:after {
    content: " per Share";
}

#v65-fieldset-shippingOptions legend {
    display: none !important;
}

#v65-fieldset-shippingOptions {
    margin-bottom: 0;
}

#v65-fieldset-shippingOptions #v65-shippingOptions {
    padding: 0;
}

/*.floodlight iframe {
    height: auto;
}
*/

.subscribeContent #FormDE9E51EC-D0AE-79E1-F10E-54ECB4ACB79F {
    margin: 0 auto;
    text-align: left;
}

#FormDE9E51EC-D0AE-79E1-F10E-54ECB4ACB79F fieldset legend {
    display: none;
}

.v65-socialMediaBar-FacebookLikeButton {
    vertical-align: top;
}


/*Shared Page*/

body.shared-page,
body.shared-product.Yes {
    /*	font-size: 16px;*/
}

.shared-page .pageTop,
.shared-product.Yes .pageTop {
    margin-top: 8em;
}

.shared-page,
.shared-page footer {
    background: none;
}

.shared-page footer {
    padding: 1em 0;
}

.shared-page .copyright,
.shared-product.Yes .copyright {
    text-align: center;
    float: none;
    display: block;
    font-size: 10px;
}

.shared-page .pageContentWrapper {
    margin-top: 8em;
}


/*
.shared-page.member .pageContentWrapper {
	margin-top: 0em;
}
*/

.shared-page #v65-modalCart {
    margin-left: 1em;
}

.shared-page .left-nav ul li {
    list-style: none;
}

.shared-page .mainMenu a {}

@media screen and (max-width: 950px) {
    .shared-page .mainMenu a {
        text-align: left;
    }
}

.shared-page .v65-product-availability,
.shared-product.Yes .v65-product-availability,
.shared-page .v65-product-inventoryMessage,
.shared-product.Yes .v65-product-inventoryMessage {
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    color: #808080;
    margin: 0;
}

.shared-product.Yes .v65-product-addToCart-securityMessage,
.shared-page .v65-product-addToCart-securityMessage {
    font-size: .875em;
}

.shared-page .v65-product-reviewStats {
    font-size: 12px;
}

.shared-page .v65-product-addToCart-price {
    font-size: 16px;
}

.shared-page .v65-product-addToCart {
    margin: 1em 0;
}


/*
.shared-page h1,
.shared-page h2,
.shared-page h3,
.shared-page h4,
.shared-page h5,
.shared-page h6{
	line-height: 1;
}
*/

.shared-page .v65-product-addToCart-price,
.shared-product.Yes .v65-product-addToCart-price {
    font-weight: normal;
}

.shared-page .v65-title,
.shared-product.Yes .v65-title {
    margin: 0 0 1em 0;
    line-height: 1;
}

.shared-page #fieldsetSubmit,
.shared-product.Yes #fieldsetSubmit {
    font-size: 16px;
}

.shared-product.Yes .v65-form fieldset div,
.shared-page .v65-form fieldset div,
.shared-product.Yes #v65-memberFormWrapper fieldset div,
.shared-page #v65-memberFormWrapper fieldset div,
.shared-page .wineSpecs .v65-wine-specs .v65-product-attribute,
.shared-product.Yes .wineSpecs .v65-wine-specs .v65-product-attribute {
    /*	font-size: 12px;*/
}

.shared-product.Yes .wineSpecs .v65-wine-specs,
.shared-product.Yes .wineSpecs .v65-wine-profile,
.shared-product.Yes .wineProfile .v65-wine-specs,
.shared-product.Yes .wineProfile .v65-wine-profile,
.shared-page .wineSpecs .v65-wine-specs,
.shared-page .wineSpecs .v65-wine-profile,
.shared-page .wineProfile .v65-wine-specs,
.shared-page .wineProfile .v65-wine-profile {
    /*	margin: .5em 0 0 .25em;*/
}

.shared-product.Yes .v65-product1Up .v65-product-photo img,
.shared-page .v65-product1Up .v65-product-photo img {
    max-width: 90%;
}

.shared-product.Yes .v65-product1Up .v65-product-photo,
.shared-page .v65-product1Up .v65-product-photo {
    text-align: center;
}

.shared-page .v65-product1Up .v65-product-infoWrapper,
.shared-product.Yes .v65-product1Up .v65-product-infoWrapper {
    margin-top: .5em;
}

.shared-product.Yes .wineSpecs .v65-wine-specs-title.v65-title,
.shared-page .wineSpecs .v65-wine-specs-title.v65-title,
.shared-page .productReviews .v65-ProductRating .v65-form legend,
.shared-product.Yes .productReviews .v65-ProductRating .v65-form legend {
    /*	font-size: 16px;*/
    margin-bottom: 0;
    text-transform: none;
}

.shared-page p,
.shared-product.Yes p {}

.shared-page .mobile-winery-selection,
.mobile-winery-selection {
    display: none;
}

.shared-page .wvv-nav,
.shared-page .elton-nav,
.shared-page .pambrun-nav,
.shared-page .maison-bleue-nav {
    display: none;
}

.wvv .wvv-nav {
    display: block;
}

.elton .elton-nav {
    display: block;
}

.pambrun .pambrun-nav {
    display: block;
}

.maison-bleue .maison-bleue-nav {
    display: block;
}

.mainMenu h6.mobile-winery-selection {
    text-align: center;
    line-height: 44px;
    margin-top: .5em;
    font-size: 1.5em;
}

.shared-product.Yes .v65-product2Up .v65-product-teaser,
.shared-product.Yes .v65-product3Up .v65-product-teaser,
.shared-product.Yes .v65-product5Up .v65-product-teaser,
.shared-product.Yes .v65-product1Up .v65-product-teaser,
.shared-product.Yes .v65-product1UpStore .v65-product-teaser,
.shared-product.Yes p,
.shared-page .v65-product2Up .v65-product-teaser,
.shared-page .v65-product3Up .v65-product-teaser,
.shared-page .v65-product5Up .v65-product-teaser,
.shared-page .v65-product1Up .v65-product-teaser,
.shared-page .v65-product1UpStore .v65-product-teaser,
.shared-page p {
    font-size: 1em;
}

.shared-page p,
.shared-product.Yes p {
    font-size: .875em;
}

.shared-page .v65-product-reviews-title.v65-title,
.shared-product.Yes .v65-product-reviews-title.v65-title {
    font-size: 1.5em;
}

.shared-page .productReviews .v65-ProductRating .v65-form,
.shared-product.Yes .productReviews .v65-ProductRating .v65-form {
    margin: 1em auto;
}

.shared-product.Yes .v65-product-reviewStats,
.shared-page .v65-product-reviewStats {
    font-weight: bold;
}

.shared-page .v65-product-addToCart,
.shared-product.Yes .v65-product-addToCart {
    margin: 1em 0;
}

.shared-page #user-tools a,
.shared-product.Yes #user-tools a {}

.shared-product.Yes .v65-product-addToCart-unitDescription,
.shared-page .v65-product-addToCart-unitDescription {
    /*	font-size: 14px;*/
}

.shared-page button span,
.shared-product.Yes button span {
    text-transform: uppercase;
}

.shared-page .left-nav,
.shared-product.Yes .left-nav {
    font-size: 16px;
}

.shared-page footer,
.shared-product.Yes footer {
    margin-bottom: 0 !important;
}

.shared-page input[type='text'],
.shared-page input[type='password'],
.shared-page input[type='username'],
.shared-page input[type='tel'],
.shared-page input[type='email'],
.shared-page textarea {
    min-height: 45px;
    line-height: 45px;
}

@media screen and (max-width: 950px) {
    .shared-page .main-content {
        width: 100%;
    }
    .shared-page .left-nav,
    .shared-page .left-nav > h5,
    .shared-page .left-nav > ul {
        display: none!important;
    }
    .shared-page .mobile-winery-selection,
    .shared-product.Yes .mobile-winery-selection {
        display: block !important;
        /*		text-align: center;*/
    }
    .shared-product .mobile-winery-selection {
        display: none !important;
    }
    .shared-product.Yes .pageTop,
    .shared-page .pageTop {
        margin-top: 5em;
    }
}

@media screen and (max-width: 860px) {
    .shared-product.Yes .productReviews,
    .shared-page .productReviews {
        padding: 0;
    }
}

@media screen and (max-width: 680px) {
    .shared-page .v65-productWrapper .v65-productAddToCart-drilldownActivate,
    .shared-product.Yes .v65-productWrapper .v65-productAddToCart-drilldownActivate {
        background: none;
        border: 0;
        opacity: 1;
        margin: 0;
        position: relative;
        bottom: auto;
        left: auto;
        z-index: 899;
        width: 100%;
    }
    .shared-page .v65-productWrapper .v65-productAddToCart-drilldownActivate .v65-product-addToCart,
    .shared-product.Yes .v65-productWrapper .v65-productAddToCart-drilldownActivate .v65-product-addToCart {
        padding: 0
    }
}

@media screen and (max-width: 580px) {
    .shared-product.Yes .v65-product1Up .v65-product-photo,
    .shared-page .v65-product1Up .v65-product-photo {
        width: 100%;
        margin-right: 0;
        text-align: center;
    }
    .shared-page .v65-product1Up .v65-product-infoWrapper,
    .shared-product.Yes .v65-product1Up .v65-product-infoWrapper {
        width: 100%;
    }
    .shared-page .mainMenu,
    .shared-product.Yes .mainMenu {
        border-left: none !important;
    }
    .shared-page button.defaultBtn,
    .shared-page button.modalBtn,
    .shared-page button.largeBtn,
    .shared-product.Yes button.defaultBtn,
    .shared-product.Yes button.modalBtn,
    .shared-product.Yes button.largeBtn {
        font-size: inherit;
    }
    .shared-page .v65-product-addToCart-button button,
    .shared-product.Yes .v65-product-addToCart-button button {
        width: auto;
    }
    .shared-page button,
    .shared-product.Yes button {
        line-height: 3em;
        height: 3em;
    }
    .shared-page input[type='text'],
    .shared-page input[type='password'],
    .shared-page input[type='username'],
    .shared-page input[type='tel'],
    .shared-page input[type='email'],
    .shared-page textarea,
    .shared-product.Yes input[type='text'],
    .shared-product.Yes input[type='password'],
    .shared-product.Yes input[type='username'],
    .shared-product.Yes input[type='tel'],
    .shared-product.Yes input[type='email'],
    .shared-product.Yes textarea {
        font-size: 1em;
        line-height: 3em;
        height: 3em;
    }
    /*
	.shared-page button span,
	.shared-product.Yes button span {
		padding: 0 4em
	}
*/
}

@media screen and (max-width: 500px) {
    /*
	.shared-page .mainMenu,
	.shared-product.Yes .mainMenu {
		top: 145px !important;
		max-height: -moz-calc(100% - 145px) !important;
		max-height: -webkit-calc(100% - 145px) !important;
		max-height: calc(100% - 145px) !important;
	}
*/
}


/*Shared Product*/

body.shared-product.Yes {
    /*	font-size: 16px;*/
}

.shared-product.Yes .subMenu,
.shared-product.Yes .footerSection,
.shared-product.Yes .subscribeContent,
.shared-product.Yes .footer-banner,
.shared-product.Yes .main-nav,
.shared-product.Yes .telephoneNumber {
    display: none;
}

.shared-product.Yes footer {
    	background: none;
    padding: 1em 0;
}

.shared-product.Yes .v65-productWrapper .v65-product-rightCol {
    text-align: left;
}

.shared-product.Yes .v65-productWrapper h1 {
    margin-bottom: .5em;
}

.shared-product.Yes footer .lowerFooter {
    text-align: center;
    margin-top: 0;
}

.shared-product.Yes footer .lowerFooter .copyright {
    float: none;
}

.brand-nav {
    display: none;
}

.elton .wvv-nav,
.pambrun .wvv-nav,
.maison-bleue .wvv-nav {
    display: none;
}

.elton-nav,
.maison-bleue-nav,
.pambrun-nav {
    display: none;
}

.shared-product.Yes .bottomProductInfo {
    background: none;
    border: none;
}

.shared-product.Yes .v65-product-addToCart-price {
    font-size: 24px;
}

.shared-product.Yes .v65-product-addToCart-securityMessage {
    margin-top: .25em;
}

.shared-product.Yes .v65-product-reviewStats,
.shared-product.Yes .v65-product-availability-inStock {
    font-size: 12px;
    line-height: 1;
    margin: .5em 0;
}

.shared-product.Yes .wineSpecs .v65-wine-specs-title,
.shared-product.Yes .wineSpecs .v65-wine-profile-title,
.shared-product.Yes .wineProfile .v65-wine-specs-title,
.shared-product.Yes .wineProfile .v65-wine-profile-title {
    /*	font-size: 1em;*/
}

.shared-product.Yes .productReviews .v65-product-reviews-title.v65-title {
    text-align: center;
}

.shared-product.Yes .v65-form label,
.shared-product.Yes #v65-memberFormWrapper label,
.shared-product.Yes label {
    font-size: 12px;
}

.left-nav h5 {
    margin-bottom: .5em;
}


/*Member*/

body.member {
    color: #333;
    background: #efefef;
}

.member .logo { }

.member .logo a {
    color: rgba(0, 0, 0, 0);
}

.member .logo a:hover {
    color: rgba(0, 0, 0, 0);
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min-resolution: 144dpi) {
    /*
	.member .logo {
		background-image: url('../images/elton-logo@2x.png?1472678625');
	}
*/
}

.member .icon-menu {
    /*	color: #b2b4b1;*/
}

.member header.primary {
    /*	background: rgba(60,60,60,1);*/
}

.member header.primary .headerTop {
    /*
	background: rgba(45,45,45,1);
	border-color:  rgba(75,75,75,1);
*/
}

.member footer .copyright a,
.member footer .copyright {
    /*	color: #808080;*/
}

.shared-page .v65-product-addToCart-price {
    /*    color: #333;*/
}

.member a {
    /*    color: #666;*/
    text-decoration: none;
    -webkit-transition: color 200ms ease-out;
    -ms-transition: color 200ms ease-out;
    -o-transition: color 200ms ease-out;
    transition: color 200ms ease-out
}

.member a:hover,
.member .mainMenu a:hover,
.member .left-nav ul li:hover a,
.member #user-tools a:hover {
    /*    color: #454545;*/
    text-decoration: none
}

.member #user-tools .icon-person,
.member #user-tools .icon-cart {
    /*	color: #efefef;*/
    width: 15px;
    display: inline-block;
}

.member .mainMenu a {
    /*	color: #aaa;*/
    text-transform: none;
}

.member .mainMenu .v65-leftSelected {
    /*	color: #ccc;*/
}

.member #user-tools a,
.member #user-tools a:hover {
    /*	color: #efefef;*/
}

.member h1,
.member h2,
.member h3,
.member h4,
.member h5,
.member h6 {
    font-weight: normal;
    /*	color: #333;*/
}

.member .v65-title,
.member h1 {
}

.member h5 {
    font-size: 2em;
    margin-bottom: .5em;
}

.member .v65-form legend,
.member #v65-memberFormWrapper legend {
}

.member .left-nav ul {
    margin: 0;
    padding: 0;
    /*	background: rgba(255,255,255,0.75);*/
    padding: 1em 2em;
    overflow: hidden;
    display: inline-block;
}

.member .left-nav {
    margin-top: 4em;
}

.member .left-nav ul li {
    list-style: none;
    line-height: 2em;
    float: left;
    clear: both;
    font-size: 14px;
}

.member .left-nav ul li a {
    /*    color: #666;*/
    font-size: 14px;
}

.member .v65-product-addToCart-priceWrapper {
}

.member .left-nav ul li.current-brand a {
    padding-left: 1em;
    border-left: 0.1875rem solid #eaceb7;
    /*    color: #333; */
}

.member .modalBtn,
.member .modalLinkBtn,
.member .defaultBtn,
.member .linkBtn,
.member .largeBtn,
.member .largeLinkBtn {
    /*	background: #666;*/
}

.member .modalBtn:hover,
.member .modalLinkBtn:hover,
.member .defaultBtn:hover,
.member .linkBtn:hover,
.member .largeBtn:hover,
.member .largeLinkBtn:hover {
    /*	background: #454545;*/
}

.member .bottomProductInfo {
    /*	background: rgba(255,255,255,0.5) !important;*/
}

.member #user-tools.cartNav #v65-modalCart>a:hover,
.member #user-tools.cartNav #v65-modalCart>a:focus,
.member #user-tools.cartNav #v65-modalCart>a:active {
    /*    color: #33231F; */
}

.member #user-tools.cartNav #v65-modalCart>a {
    /*	color: #6C635F;*/
}

@media screen and (max-width: 950px) {
    .member .mainMenu {
        /*
		background: rgba(255, 255, 255, 1);
		border-left: 1px solid #fff;
*/
    }
    .member .mainMenu li {
        /*		border-top: 1px solid #b2b4b1;*/
    }
    .member .mainMenu h6 {
        /*		color: #33231F;*/
    }
}


/*Pambrun*/

body.pambrun {
    font-family: AGaramondPro-Regular, 'AGaramondPro-Regular', 'Adobe Garamond Pro', Times, 'Times New Roman', serif;
    color: #221f20;
    background: #fff;
}

.pambrun .logo {
    background-image: url('../images/pambrun-logo.png?1472678624');
    background-position: center left;
    width: 180px;
}

.pambrun .logo a {
    color: rgba(0, 0, 0, 0);
}

.pambrun .logo a:hover {
    color: rgba(0, 0, 0, 0);
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min-resolution: 144dpi) {
    .pambrun .logo {
        background-image: url('../images/pambrun-logo@2x.png?1472678625');
    }
}

.pambrun .icon-menu {
    color: #84754e;
}

.pambrun header.primary {
    background: rgba(46, 46, 46, 1);
    position: absolute;
}

.pambrun header.primary .headerTop {
    background: #221f20;
    border-color: #221f20;
}

.pambrun footer .copyright a,
.pambrun footer .copyright {
    color: #221f20;
}

.pambrun a {
    color: #84754e;
    text-decoration: none;
    -webkit-transition: color 200ms ease-out;
    -ms-transition: color 200ms ease-out;
    -o-transition: color 200ms ease-out;
    transition: color 200ms ease-out
}

.pambrun a:hover {
    color: #84754e;
    text-decoration: none
}

.pambrun #user-tools .icon-person,
.pambrun #user-tools .icon-cart {
    color: #84754e;
    display: inline-block;
}

.pambrun #user-tools.cartNav #v65-modalCart>a {
    color: #84754e;
}

.pambrun .mainMenu a {
    font-family: 'AGaramondPro-Bold';
    color: #84754e;
    text-transform: uppercase;
}

.pambrun #user-tools a {
    color: #84754e;
}

.pambrun h1,
.pambrun h2,
.pambrun h3,
.pambrun h4,
.pambrun h5,
.pambrun h6,
.pambrun .productReviews .v65-product-reviews-title.v65-title,
.pambrun .v65-title,
.pambrun .productReviews .v65-ProductRating .v65-form legend,
.pambrun legend,
.pambrun .v65-product-addToCart-priceWrapper {
    font-family: 'AGaramondPro-Bold';
    font-weight: normal;
    color: #221f20;
    text-transform: uppercase;
}

.pambrun h1 {
    text-transform: uppercase;
    font-family: 'AGaramondPro-Bold';
}

@media only screen and (min-width: 48em) {
    .pambrun h1 {}
}

.pambrun .v65-product-addToCart-priceWrapper {
    font-family: 'AGaramondPro-Bold';
}

.pambrun h5 {
    font-size: 1.2em;
    margin-bottom: .5em;
}

.pambrun .left-nav ul {
    margin: 0;
    padding: 0;
    background: #dbddd9;
    padding: 1em 2em;
    overflow: hidden;
    display: inline-block;
}

.pambrun button.defaultBtn,
.pambrun button.modalBtn,
.pambrun button.largeBtn {
    font-weight: normal;
    font-family: 'AGaramondPro-Bold';
}

.pambrun a.linkAltBtn span,
.pambrun a.modalLinkAltBtn span,
.pambrun a.modalLinkAltBtn span {
    font-family: 'AGaramondPro-Bold';
}

.pambrun .left-nav {
    margin-top: 4em;
}

.pambrun .left-nav ul li {
    list-style: none;
    line-height: 2em;
    float: left;
    clear: both;
}

.pambrun .left-nav ul li a {
    padding: .25em 0;
    color: #221f20;
}

.pambrun .left-nav ul li.current-brand a {
    padding-left: 1em;
    border-left: 0.1875rem solid #84754e;
    color: #84754e;
}

.pambrun .mainMenu h6 {
    color: #fff;
}

.shared-product.Yes.pambrun .bottomProductInfo {
    /*	background: rgba(46, 46, 46, .1);*/
}

.pambrun .modalBtn,
.pambrun .modalLinkBtn,
.pambrun .defaultBtn,
.pambrun .linkBtn,
.pambrun .largeBtn,
.pambrun .largeLinkBtn {
    background: #84754e;
}

.pambrun .modalBtn:hover,
.pambrun .modalLinkBtn:hover,
.pambrun .defaultBtn:hover,
.pambrun .linkBtn:hover,
.pambrun .largeBtn:hover,
.pambrun .largeLinkBtn:hover {
    background: #84754e;
}

.pambrun .backToTop {
    color: #84754e;
    border-color: #84754e;
}

.pambrun footer {
    background: none;
}

.pambrun .v65-leftSelected {
    color: #af9b67 !important;
}

@media screen and (max-width: 950px) {
    .pambrun .mainMenu {
        background: rgba(46, 46, 46, 1);
        border-left: 1px solid #000;
    }
}


/*Elton*/

body.elton {
    font-family: "Palatino-Roman", "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif";
    color: #33231F;
    background: url(/assets/images/elton-label-texture.png) #ffffff;
}

.elton .logo {
    background-image: url('../images/elton-logo.png?1472678624');
    background-position: center left;
    width: 100px;
}

.elton .logo a {
    color: rgba(0, 0, 0, 0);
}

.elton .logo a:hover {
    color: rgba(0, 0, 0, 0);
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min-resolution: 144dpi) {
    .elton .logo {
        background-image: url('../images/elton-logo@2x.png?1472678625');
    }
}

.elton .icon-menu {
    color: #b2b4b1;
}

.elton header.primary {
    background: rgba(255, 255, 255, 0.95);
    position: absolute;
}

.elton header.primary .headerTop {
    background: #eaceb7;
    border-color: #eaceb7;
}

.elton footer {
    background: none;
}

.elton footer .copyright a,
.elton footer .copyright {
    color: #6C635F;
}

.shared-page .v65-product-addToCart-price {
    color: #33231F;
}

.elton a {
    color: #6C635F;
    text-decoration: none;
    -webkit-transition: color 200ms ease-out;
    -ms-transition: color 200ms ease-out;
    -o-transition: color 200ms ease-out;
    transition: color 200ms ease-out
}

.elton a:hover,
.elton .mainMenu a:hover,
.elton .left-nav ul li:hover a,
.elton #user-tools a:hover {
    color: #33231F;
    text-decoration: none
}

.elton #user-tools .icon-person,
.elton #user-tools .icon-cart {
    color: #6C635F;
    width: 15px;
    display: inline-block;
}

.elton .mainMenu a {
    font-family: "Palatino-Bold";
    color: #6C635F;
    text-transform: uppercase;
}

.elton .mainMenu .v65-leftSelected {
    color: #473d37;
}

.elton #user-tools a,
.elton #user-tools a:hover {
    color: #473d37;
}

.elton h1,
.elton h2,
.elton h3,
.elton h4,
.elton h5,
.elton h6 {
    font-family: 'Pinyon Script', sans-serif;
    font-weight: normal;
    color: #473d37;
    text-align: inherit;
}

.elton .wineSpecs {
    border-color: #eaceb7;
}

.elton .v65-title {
    font-size: 1.25rem;
    line-height: 1.125;
    font-family: "Palatino-Bold";
    margin-bottom: 1em;
    text-transform: uppercase;
}

.elton h5 {}

.elton .v65-form legend,
.elton #v65-memberFormWrapper legend {}

.elton .wineSpecs .v65-wine-specs-title:after,
.elton .wineSpecs .v65-wine-profile-title:after,
.elton .wineProfile .v65-wine-specs-title:after,
.elton .wineProfile .v65-wine-profile-title:after {
    color: #6C635F;
}

.elton .left-nav ul {
    margin: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 1em 2em;
    overflow: hidden;
    display: inline-block;
}

.elton .left-nav {
    margin-top: 4em;
}

.elton .left-nav ul li {
    list-style: none;
    line-height: 2em;
    float: left;
    clear: both;
}

.elton .left-nav ul li a {
    color: #6C635F;
}

.elton .v65-product-addToCart-priceWrapper {}

.elton .left-nav ul li.current-brand a {
    padding-left: 1em;
    border-left: 0.1875rem solid #eaceb7;
    color: #473d37;
}

.elton .modalBtn,
.elton .modalLinkBtn,
.elton .defaultBtn,
.elton .linkBtn,
.elton .largeBtn,
.elton .largeLinkBtn {
    background: #6C635F;
}

.elton .modalBtn:hover,
.elton .modalLinkBtn:hover,
.elton .defaultBtn:hover,
.elton .linkBtn:hover,
.elton .largeBtn:hover,
.elton .largeLinkBtn:hover {
    background: #6C635F;
}

.elton .bottomProductInfo {
    background: none !important;
}

.elton #user-tools.cartNav #v65-modalCart>a:hover,
.elton #user-tools.cartNav #v65-modalCart>a:focus,
.elton #user-tools.cartNav #v65-modalCart>a:active {
    color: #473d37;
}

.elton #user-tools.cartNav #v65-modalCart>a {
    color: #473d37;
}

.elton .backToTop {
    color: #6C635F;
    border-color: #6C635F;
}

.elton .v65-product-reviewStats,
.elton .v65-product-availability-inStock,
.elton .v65-product-addToCart-unitDescription {
    color: #6C635F;
}

.elton .v65-leftSelected {
    color: #473d37 !important;
}

@media screen and (max-width: 950px) {
    .elton .mainMenu {
        background: rgba(255, 255, 255, 1);
        border-left: 1px solid #fff;
    }
    .elton .mainMenu li {
        border-top: 1px solid #eaceb7;
    }
    .elton .mainMenu h6 {
        color: #473d37;
    }
}


/*Maison Bleue*/

body.maison-bleue {
    font-family: AGaramondPro-Regular, 'AGaramondPro-Regular', 'Adobe Garamond Pro', Times, 'Times New Roman', serif;
    color: #000;
    background: url(/assets/images/maison-bleue-label-texture.png) #ffffff;
}

.maison-bleue .logo {
    background-image: url('../images/maison-bleue-logo.png?1472678624');
    background-position: center left;
    width: 255px;
}

.maison-bleue .logo a {
    color: rgba(0, 0, 0, 0);
}

.maison-bleue .logo a:hover {
    color: rgba(0, 0, 0, 0);
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min-resolution: 144dpi) {
    .maison-bleue .logo {
        background-image: url('../images/maison-bleue-logo@2x.png?1472678625');
    }
}

.maison-bleue .icon-menu {
    color: #002d62;
}

.maison-bleue header.primary {
    background: rgba(242, 242, 242, .95);
    position: absolute;
}

.maison-bleue header.primary .headerTop {
    background: #808080;
    border-color: #808080;
}

.maison-bleue footer .copyright a,
.maison-bleue footer .copyright {
    color: #000;
}

.maison-bleue .mainMenu li {
    border-color: #808080;
}

.maison-bleue a {
    color: #002d62;
    text-decoration: none;
    -webkit-transition: color 200ms ease-out;
    -ms-transition: color 200ms ease-out;
    -o-transition: color 200ms ease-out;
    transition: color 200ms ease-out
}

.maison-bleue a:hover {
    color: #002d62;
    text-decoration: none
}

.maison-bleue .v65-title,
.maison-bleue h1 {
	font-family: 'AGaramondPro-Bold', "Adobe Garamond Pro" ,"Cormorant Garamond", serif;
}

.maison-bleue .mainMenu h6 {
    color: #000;
}

.maison-bleue #user-tools .icon-person,
.maison-bleue #user-tools .icon-cart {
    color: #002d62;
    width: 15px;
    display: inline-block;
}

.maison-bleue #user-tools .icon-cart {
    color: #002d62;
}

.maison-bleue .mainMenu a {
    color: #4d4d4d;
    text-transform: none;
    text-transform: uppercase;
}

.maison-bleue .mainMenu .v65-leftSelected {
    color: #000;
}

.maison-bleue #user-tools a {
    color: #ffffff;
}

.maison-bleue #user-tools.cartNav #v65-modalCart>a {
    color: #002d62;
}

.maison-bleue h1,
.maison-bleue h2,
.maison-bleue h3,
.maison-bleue h4,
.maison-bleue h5,
.maison-bleue h6 {
    font-weight: normal;
    color: #333;
    text-align: inherit;
    text-transform: uppercase;
}

.maison-bleue .v65-title {
    text-transform: uppercase;
}

.maison-bleue h5 {
    font-size: 1.25em;
    margin-bottom: .5em;
    text-transform: none;
    color: #002d62;
    font-weight: normal;
    font-family: 'AGaramondPro-Regular';
    text-transform: uppercase;
}

.maison-bleue .left-nav ul {
    margin: 0;
    padding: 0;
    background: rgba(242, 242, 242, .95);
    padding: 1em 2em;
    overflow: hidden;
    display: inline-block;
}

.maison-bleue footer {
    background: none;
}

.maison-bleue .left-nav {
    margin-top: 4em;
}

.maison-bleue .left-nav ul li {
    list-style: none;
    line-height: 2em;
    float: left;
    clear: both;
}

.maison-bleue .left-nav ul li a {
    color: #4d4d4d;
}

.maison-bleue .v65-product-addToCart-priceWrapper {}

.maison-bleue .left-nav ul li.current-brand a {
    padding-left: 1em;
    border-left: 0.1875rem solid #002d62;
    color: #002d62;
}

.maison-bleue .modalBtn,
.maison-bleue .modalLinkBtn,
.maison-bleue .defaultBtn,
.maison-bleue .linkBtn,
.maison-bleue .largeBtn,
.maison-bleue .largeLinkBtn {
    background: #002d62;
}

.maison-bleue .modalBtn:hover,
.maison-bleue .modalLinkBtn:hover,
.maison-bleue .defaultBtn:hover,
.maison-bleue .linkBtn:hover,
.maison-bleue .largeBtn:hover,
.maison-bleue .largeLinkBtn:hover {
    background: #002d62;
}

.maison-bleue .backToTop {
    color: #002d62;
    border-color: #002d62;
}

.maison-bleue .v65-leftSelected {
    color: #002d62 !important;
}

@media screen and (max-width: 950px) {
    .maison-bleue .mainMenu {
        background: #ffffff;
        border-left: 1px solid rgba(242, 242, 242, 1);
    }
    .maison-bleue #user-tools .icon-cart {
        color: rgba(242, 242, 242, 1);
    }
}


/*wvv*/

body.wvv {
    color: #000;
    background: #f2efed;
}

.wvv .logo {}

.wvv .logo a {}

.wvv .logo a:hover {}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min-resolution: 144dpi) {
    .wvv .logo {}
}

.wvv .icon-menu {}

.wvv header.primary {
    position: absolute;
}

.wvv header.primary .headerTop {}

.wvv footer .copyright a,
.wvv footer .copyright {}

.wvv .mainMenu li {}

.wvv a {}

.wvv a:hover {
    text-decoration: none
}

.wvv .mainMenu h6 {
    color: #808080;
}

.wvv #user-tools .icon-person,
.wvv #user-tools .icon-cart {
    display: inline-block;
}

.wvv #user-tools .icon-cart {}

.wvv .mainMenu a {}

.wvv .mainMenu .v65-leftSelected {}

.wvv #user-tools a {}

.wvv #user-tools.cartNav #v65-modalCart>a {}

.wvv h1,
.wvv h2,
.wvv h3,
.wvv h4,
.wvv h5,
.wvv h6 {}

.wvv .v65-title {}

.wvv h5 {
    margin-bottom: .5em;
    font-size: 1.25em;
    text-transform: none;
    font-weight: normal;
    font-family: "Prata", serif;
    color: #332f2c;
}

.wvv .left-nav ul {
    margin: 0;
    padding: 0;
    background: #f7f7f7;
    padding: 1em 2em;
    overflow: hidden;
    display: inline-block;
    border: 1px solid #dbdbdb;
}

.wvv footer {
    background: none;
}

.wvv .left-nav {
    margin-top: 4em;
}

.wvv .left-nav ul li {
    list-style: none;
    line-height: 2em;
    float: left;
    clear: both;
}

.wvv .left-nav ul li a {
    color: #808080;
}

.wvv .v65-product-addToCart-priceWrapper {}

.wvv .left-nav ul li.current-brand a {
    padding-left: 1em;
    border-left: 0.1875rem solid #aba07a;
    color: #aba07a;
}

.wvv .modalBtn,
.wvv .modalLinkBtn,
.wvv .defaultBtn,
.wvv .linkBtn,
.wvv .largeBtn,
.wvv .largeLinkBtn {}

.wvv .modalBtn:hover,
.wvv .modalLinkBtn:hover,
.wvv .defaultBtn:hover,
.wvv .linkBtn:hover,
.wvv .largeBtn:hover,
.wvv .largeLinkBtn:hover {}

.wvv .backToTop {}

.v65-leftSelected {
    color: #d6d4cb !important;
}

@media screen and (max-width: 950px) {
    .wvv .mainMenu {}
    .wvv #user-tools .icon-cart {}
}

.v65-product-pagination li a,
.v65-Paging li a {
    background: #f7f7f7;
}

.v65-product-pagination li a:hover,
.v65-Paging li a:hover {
    background: #fff;
}

.v65-product-pagination,
.v65-Paging {
    width: 100%;
}

.logo-maison,
.logo-pambrun,
.logo-elton,
.maison-bleue .logo-wvv,
.elton .logo-wvv,
.pambrun .logo-wvv {
	display: none;
}
.maison-bleue .logo-maison,
.elton .logo-elton,
.pambrun .logo-pambrun {
	display: block;
}



/* Alert */

.homepage-alert {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none;
}

.homepage-alert h6 {
    color: #ffffff;
    margin-bottom: 0;
    text-align: center;
}

.displayNo {
    display: none;
}

.alertYellow {
	margin-bottom: 1em;
}

/* hidden for now */

#v65-businessLocator p,
#v65-businessLocatorSelectByZipCode fieldset legend,
#v65-businessLocatorSelectByZipCode fieldset label,
#v65-businessLocatorSelectByZipCode fieldset input,
#v65-businessLocatorSelectByZipCode fieldset select,
#v65-businessLocatorSelectByZipCode fieldset,
#v65-businessLocator #v65-map_canvas {
    display: none
}

body > .videoWrapper {display:none}

/* ADA */
.skipToContent {position: absolute;top: -1000px;left: -1000px;height: 1px;width: 1px;text-align: left;overflow: hidden;}
a.skipToContent:active, a.skipToContent:focus, a.skipToContent:hover {left: 0; top: 0;width: auto; height: auto; overflow: visible; }



.v65-product-sortBy {width: auto; float: right;}

/* popups */
.popUp, .ageGate {display:none; position:fixed; width:100%; height:100%; left:0; top:0; overflow:auto; align-items:center; justify-content:center; background:rgba(0, 0, 0, .75); z-index:999;}
.popUp > div, .ageGate > div {background:#ffffff; position:relative; width:60%; max-width:420px; padding:30px;}
.popUpClose {display:block; width:25px; height:25px; position:absolute; top:-6px; right:0; text-align:center; font-weight:bold; font-size:25px; cursor:pointer;}
.popUp #v65-subscribeWidget, .ageGateButtons {text-align: center;}
@media screen and (max-width:1020px) {
.popUp > div, .ageGate > div {width:auto;}
}
.homePage .popUp {width:250px; height:auto; left:inherit; right:-300px; top:25%; background:transparent; overflow:hidden; display: flex; box-shadow:0px 12px 24px -12px rgba(0, 0, 0, 0.5); -webkit-box-shadow:0px 12px 24px -12px rgba(0, 0, 0, 0.5);}
.homePage .popUp > div {width:100%; padding: 30px 30px 10px 30px; background:#a6192e; color:#fff;}
.homePage .popUp h2, .homePage .popUp p {cursor:pointer; display:block; width:100%;}
.homePage .popUp h2 {font-size:1.3em; color:#fff;}
.homePage .popUp #v65-subscribeWidget {display:none;}
.homePage .popUpClose {left:2px;font-weight:normal;border-radius:300px;/*background:rgba(0,0,0,0.3);*/height:27px;width:27px;top:2px;line-height:1.2;font-size:19px;font-family:Arial,Helvetica Neue,Helvetica,sans-serif}
.homePage .popUp .v65-form legend {display:none}
.homePage .popUp .v65-form fieldset div {text-align:center; padding:2px 0;}
.homePage .popUp .v65-form button[type="submit"] {margin-top: 12px; background:#fff!important}
.homePage .popUp .v65-form button[type="submit"] span {color:#222!important}
.homePage .popUp .v65-form button i {position:relative; top:1px; padding-right:3px;}
.homePage .popUp .error {color:wheat; display:none;}
.homePage .popUp .error ~ .error {display:block;}
@media screen and (max-height:970px) {
.homePage .popUp {width:350px; top:260px; right:-400px;}
}
@media screen and (max-height:900px) {
.homePage .popUp {top:230px;}
}
@media screen and (max-height:700px) {
.homePage .popUp {top:0;}
}

/* home */
.homepageBlocks {margin-top: 140px; display:flex; flex-flow:row wrap;}
.homepageBlocks > div {width:100%; min-height:500px; display: flex; align-items: center; justify-content: center; }
.homepageBlocks > div > div {width:calc(100% - 80px); background-repeat: no-repeat;background-size: cover;background-position: center center; min-height:500px; display: flex; align-items: center; justify-content: center; padding:40px; position:relative;}
@media screen and (max-width: 1360px) {
.homepageBlocks > div > div {min-height:550px;}
}
@media screen and (max-width: 1080px) {
.homepageBlocks > div > div {min-height:580px;}
}
@media screen and (max-width: 920px) {
.homepageBlocks > div > div {min-height:800px;}
}
@media screen and (max-width: 889px) {
.homepageBlocks > div > div {min-height:500px;}
}
.homepageBlockFull, .homepageBlockFull > div {min-height:700px!important;}
@media screen and (min-width: 890px) {
.homepageBlocks .homepageBlockHalfLeft > div, .homepageBlocks .homepageBlockHalfRight > div {width: calc(50% - 80px);}
.homepageBlockHalfRight .homepageBlock1 {order:2;}
.homepageBlockHalfRight .homepageBlock2 {order:1;}
}
.homepageBlockFull .linkBtn {height: 3.5em;line-height: 3.5em; -ms-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out; -o-transition: all 0.3s ease-out; -webkit-transition: all 0.3s ease-out; transition: all 0.3s ease-out; }
.homepageBlockFull .linkBtn span {font-size:1.4em; }
.homepageBlockFull .linkBtn:hover {}
/*
.homepageBlockHalf h2 {color:#fff; font-size: 3.25em;}
*/
.homepageBlockFull .homepageBlock1 {display:none}
@media screen and (max-width: 889px) {
.homepageBlocks {margin-top: 147px;}
.homepageBlocks > div {flex-direction:column; min-height:300px;}
.homepageHero {flex-direction:row!important;}
.homepageBlockHalf {justify-content: center!important;}
.homepageBlockHalf h2 {text-align: center!important; color:#000;}
}
.homepageHeroContent {position:absolute; bottom:150px; width:100%;}
@media screen and (min-width: 2200px) {
.homepageHero, .homepageHero > div {min-height:900px!important;}
}
@media screen and (max-width: 720px) {
.homepageHero > div {background-size:cover;}
.homepageHero, .homepageHero > div {min-height:500px!important;}
}
@media screen and (max-width: 580px) {
.homepageHeroContent {bottom:0;}
.homepageHeroContent .v65-col2 {float: left!important;margin-left: 6%!important;width: 47%!important;margin-bottom: 0!important;}
.homepageHeroContent .v65-col2:first-child {margin-left: 0%!important;}
}
@media screen and (max-width: 540px) {
.homepageHero, .homepageHero > div {min-height:400px!important;}
}
@media screen and (max-width: 440px) {
.homepageHero, .homepageHero > div {min-height:300px!important;}
}

/* new alert */
.homeAlert {position:absolute;top:0;width:calc(100% - 20px);padding:10px;text-align:center; color:#fff; box-shadow:0px 12px 24px -12px rgba(0, 0, 0, 0.5); -webkit-box-shadow:0px 12px 24px -12px rgba(0, 0, 0, 0.5); display:none;}
.homeAlertRed {background:#A6192E;}
.homeAlertBlack {background:#222;}
.homeAlertGreen {background:#5f794c;}
.homeAlert a {color:#fff; display:block; width:100%; height:100%;}

/* not shown on current homepage */
.homepageProductGroup {display:none;} 
.homePage .homepageProductGroup {display:block; background: url(../images/texture-cream.jpg); border-top: 1px solid #ded6d0; border-bottom: 1px solid #ded6d0;} 

.homepageProductGroup .v65-productGroup-title.v65-title {margin-top: 40px; display:block; font-size:2.5em;}
@media screen and (min-width: 791px) {
.homepageProductGroup .wrapper {max-width:100%; width:100%; padding:0;}
}
.homepageProductGroup .v65-addToCartCase {display:none;}
.homepageProductGroup .v65-productGroup-products .v65-productGroup-product .productPhoto {float:left;}
.homepageProductGroup .v65-product-photo img {}
.homepageProductGroup .v65-productGroup-products .shopAll {}
.homepageProductGroup .v65-productGroup-products .shopAll .productDescription {height:100%; display: flex; min-height: 297px; max-width:300px; }
@media screen and (min-width:1101px) {
.homepageProductGroup .v65-productGroup-products .shopAll .productDescription p {min-height: 204px;}
}
@media screen and (min-width:1157px) {
.homepageProductGroup .v65-productGroup-products .shopAll .productDescription p {min-height: 181px;}
}
.homepageProductGroup .v65-productGroup-products .shopAll .productDescription a {padding:0 20px;}
.homepageProductGroup .v65-productGroup-products .shopAll .productDescription div, .homepageProductGroup .v65-productGroup-products .shopAll .productDescription a {text-align: left; margin-left:10px}
.homepageProductGroup .v65-productGroup-products .shopAll .v65-productGroup-teaser {margin:0;}
.homepageProductGroup .v65-productGroup-products .shopAll .productDescription h3 {font-family: "Prata", serif;font-size: 1.15em;line-height: 1.125;}
.homePage .v65-productGroup-product .v65-product-description p, .homePage .v65-productGroup-product .v65-product-teaser p {display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden;}
.homePage .v65-product-addToCart-price {font-weight:300!important;}

.homepageFooterBlocks {display:flex; flex-flow:row wrap;}
.homepageFooterBlocks > a {width:100%; background-repeat: no-repeat;background-size: cover;background-position: center center; min-height:500px; display: flex; align-items: center; justify-content: center; background-color:rgba(0,0,0,0.3); display: flex; align-items: center; justify-content: center; font-family: "Prata", serif; font-size: 36px; color: #fff; position: relative;}
.homepageFooterBlocks > a:after {display:block; content:''; position:absolute; top:0; left: 0; bottom: 0; right: 0; -ms-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out; -o-transition: all 0.3s ease-out; -webkit-transition: all 0.3s ease-out; transition: all 0.3s ease-out; background-color:rgba(0,0,0,0.3);}
.homepageFooterBlocks > a:hover:after {background-color:rgba(0,0,0,0.5); }
.homepageFooterBlocks > a span {z-index:9; font-size:45px;}
@media screen and (min-width: 940px) {
.homepageFooterBlocks > a {width:33.33%;}
}

/* Footer adjustments (make global) */
.homePage footer, .homePage footer nav li a, .homePage footer .socialIcons li a, .homePage .copyright, .homePage .copyright a {color:#b1afa4;}
.homePage footer nav li a:hover,  .homePage footer .socialIcons li a:hover, .homePage .copyright a:hover {color:#d6d4cb;}

/* page title hero */
.pageTitleHero {background-size: cover; display: flex; align-items: center; justify-content: center; min-height: 300px;}
.pageTitleHero h1 {color:#fff; z-index:9; margin: 0;}
.pageTitleHero:after off {content:''; background:rgba(0,0,0,0.3); display:block; position:absolute; z-index:3; top:0; left:0; right:0; bottom:0; }


/* visit and experiences */
.visitPage .pageContent {margin-top: 140px; background: url(../images/texture-cream.jpg); border-top: 1px solid #ded6d0; border-bottom: 1px solid #ded6d0; padding: 1em;}
.visitBlocks > div {display: flex; align-items: center; justify-content: center; flex-flow:row wrap; min-height: 500px;}
.visitBlocks > div > div {padding:40px; background-size:cover; background-position: center; min-height:300px; width:100%; display:flex; justify-content: center; flex-flow: column; order:1;}
.visitBlocks > div > div:first-child {order: 2}
@media screen and (min-width: 880px) {
.visitBlocks > div > div {width: calc(50% - 80px); min-height:500px;}
.visitBlocks .visitBlockLeft > div:first-child {order: 1}
}

@media screen and (max-width: 1560px) {
.visitBlocks > div > div {min-height:550px;}
}
@media screen and (max-width: 1320px) {
.visitBlocks > div > div {min-height:680px;}
}
@media screen and (max-width: 1110px) {
.visitBlocks > div > div {min-height:840px;}
}
@media screen and (max-width: 880px) {
.visitBlocks > div > div {min-height:500px;}
}

/* .visitPage h3 {font-size: 1em; color:#5f794c; text-transform: capitalize;} */
.visitPage .linkBtn {margin-top: 30px;}

.experiencesPage .pageContent, .experienceFooterLink {background: url(../images/texture-cream.jpg); border-top: 1px solid #ded6d0; border-bottom: 1px solid #ded6d0; padding:3em 1em 1em;}
.experienceFooterMap .videoWrapper {max-width:100%; height:500px; padding: 0;}
.showFooterMapNo, .experiencesPage .subscribeContent {display:none;}
.experienceFooterLink {display:block; text-align:center;margin:0 auto;padding:100px 40px;}
.experienceFooterLink h1 {font-size:2.25em;font-family:"Prata", serif;line-height:1.25;color:#000;}

/* cart */
@media screen and (min-width: 400px) {
.homePage #v65-modalCartDropdown {width:400px;}
}
.homePage #v65-modalCartTable th {font-size:0.9em; text-transform: uppercase;}
.homePage #v65-modalCartDropdown a span {font-size: 1em;}
.homePage #v65-modalCartDropdown a.modalLinkAltBtn, .homePage #v65-modalCartDropdown a.modalLinkBtn {padding: 5px;}

/* product detail page  */
.wvv-detail .bottomProductInfo {display: none;} /* there are no product reviews */
.productDetailFeatureBlock .v65-productWrapper {padding: 60px;}
.productDetailFeatureBlockContent {background:#332f2c; color:#b3ab96}
.productDetailFeatureBlockContent p, .productDetailFeatureBlockContent h1, .productDetailFeatureBlockContent h2, .productDetailFeatureBlockContent h3, .productDetailFeatureBlockContent h4, .productDetailFeatureBlockContent h5 {color:#b3ab96;}
.productDetailFeatureBlockBottomContent {}
.relatedProductsHolder {background: url(../images/texture-cream.jpg);}
.productDetailFooterBlock {display: none;}
.wvv-detail .productDetailFooterBlock {display:flex; flex-flow: row wrap; align-items: center; justify-content: center;}
.productDetailFooterBlock > div {width: calc(50% - 80px); padding:40px;}
.productDetailFooterBlock > div:first-child {height:400px; background-size:cover; background-position:center;}
@media screen and (max-width: 580px) {
.productDetailFooterBlock > div {width:100%;}
}

.stickyProduct header.primary {position:fixed;}
.stickyProduct .telephoneNumber, .stickyProduct .main-nav {display:block!important}
.stickyProduct .wvv-nav {display:none!important}
.stickyProduct .productBlock .v65-productAddToCart-drilldown, .stickyProduct .productBlockWrapper > .v65-product-leftCol .v65-productAddToCart-drilldown {text-align:center;}
.stickyProduct .productBlock .v65-product-addToCart-priceWrapper, .stickyProduct .productBlockWrapper > .v65-product-leftCol .v65-product-addToCart-priceWrapper {display:block; margin:0 0 10px;}
.stickyProduct .v65-product-addToCart-price {font-size: 16px!important;}
.stickyProduct .v65-product-buyCase-button button {margin-left: 42px; width: 160px;}
.stickyProduct .productBlockWrapper > .v65-product-leftCol .v65-product-photo img {max-height:54vh!important; height:auto!important; width:auto!important;}
@media screen and (max-height: 888px) {.stickyProduct .productBlockWrapper > .v65-product-leftCol .v65-product-photo img {max-height:50vh!important;}}
@media screen and (max-height: 820px) {.stickyProduct .productBlockWrapper > .v65-product-leftCol .v65-product-photo img {max-height:45vh!important;}}
@media screen and (max-height: 740px) {.stickyProduct .productBlockWrapper > .v65-product-leftCol .v65-product-photo img {max-height:40vh!important;}}
@media screen and (max-height: 680px) {.stickyProduct .productBlockWrapper > .v65-product-leftCol .v65-product-photo img {max-height:35vh!important;}}
@media screen and (max-height: 630px) {.stickyProduct .productBlockWrapper > .v65-product-leftCol .v65-product-photo img {max-height:30vh!important;}}
@media screen and (max-height: 588px) {.stickyProduct .productBlockWrapper > .v65-product-leftCol .v65-product-photo img {max-height:25vh!important;}}
.stickyProduct .v65-product-photos {display:none;}
.stickyProduct .v65-product-leftCol .v65-addToCartCase, .stickyProduct .v65-product-leftCol .v65-addToCartCase .v65-product-addToCart-priceWrapper {margin:0!important;}
.stickyProduct .v65-productWrapper .v65-product-rightCol {width:auto;}
@media screen and (min-width:951px) {
.stickyProduct .productBlock .v65-product-rightCol {min-height: 1200px;}
}
.stickyProduct .productBlockWrapper {position:relative; margin-top:-200px; display:flex; flex-direction:column; align-self:start; display:grid; grid-template-columns:minmax(1.2rem,1fr) minmax(300px,450px) minmax(0,75ch) minmax(1.2rem,1fr); grid-column-gap:2rem; }
.stickyProduct .productBlockWrapper > .v65-product-leftCol {width:500px; top:0; z-index:9; height:97vh; -ms-grid-column:2; grid-column:2; position:-webkit-sticky; position:sticky; -ms-grid-row:1; grid-row:1; }
.stickyProduct #MainContent {position:relative; display:flex; flex-direction:column; align-items:flex-start; justify-content:flex-end; align-self:start; position:relative; min-height:71vh; margin-bottom:10vh; margin-top:220px; --ms-grid-column:3; grid-column:3; }
.stickyProduct .productBlock {margin-top:0!important; padding:0 60px; }
.stickyProduct .productDetailFeatureBlock {-ms-grid-column:3; grid-column:3; }
.stickyProduct .productDetailFeatureBlockContent {position: relative;}
.stickyProduct .productDetailFeatureBlockContent:after {content:'';position:absolute;top:0;height:100%;left:-50vw;width:150vw;background:#332f2c;z-index:-1} /* left and width are overwritten with JS */
.stickyProduct .v65-product-relatedProducts-title {font-size: 2.5em!important; line-height: 1.375!important; margin-bottom: 0.75em!important;}
.fblock1_colorFlipAvailability .v65-product-availability, .fblock1_colorFlipAddtocart .v65-product-addToCart-priceWrapper *, .fblock2_colorFlipAvailability .v65-product-availability, .fblock2_colorFlipAddtocart .v65-product-addToCart-priceWrapper *, .fblock3_colorFlipAvailability .v65-product-availability, .fblock3_colorFlipAddtocart .v65-product-addToCart-priceWrapper *, .fblock4_colorFlipAvailability .v65-product-availability, .fblock4_colorFlipAddtocart .v65-product-addToCart-priceWrapper *, .fblock5_colorFlipAvailability .v65-product-availability, .fblock5_colorFlipAddtocart .v65-product-addToCart-priceWrapper *, .fblock6_colorFlipAvailability .v65-product-availability, .fblock6_colorFlipAddtocart .v65-product-addToCart-priceWrapper *, .fblock7_colorFlipAvailability .v65-product-availability, .fblock7_colorFlipAddtocart .v65-product-addToCart-priceWrapper *, .fblock8_colorFlipAvailability .v65-product-availability, .fblock8_colorFlipAddtocart .v65-product-addToCart-priceWrapper *, .fblock9_colorFlipAvailability .v65-product-availability, .fblock9_colorFlipAddtocart .v65-product-addToCart-priceWrapper *, .fblock10_colorFlipAvailability .v65-product-availability, .fblock10_colorFlipAddtocart .v65-product-addToCart-priceWrapper * { color: #b1afa4 !important; }
@media screen and (min-width: 951px) {
.stickyProduct .productBlockWrapper > .v65-product-leftCol {top:220px; }
.stickyProduct .v65-productWrapper h1 {padding-top: 2em;}
}
@media screen and (min-width: 870px) {
.stickyProduct .v65-product-relatedProducts .v65-product-relatedProducts-product {width:33%;}
}
@media screen and (max-height: 666px) {
.stickyProduct .productBlockWrapper {margin-top: 0;}
.stickyProduct .productBlockWrapper > .v65-product-leftCol {margin-bottom:10vh;}
.stickyProduct #MainContent {margin-top:0; }
}
@media screen and (max-width: 950px) {
.stickyProduct .productBlockWrapper {display: inline-block; margin: 90px auto 0 auto;}
.stickyProduct .productBlockWrapper > .v65-product-leftCol {position:relative;height:auto;width:100%;}
.stickyProduct #MainContent {min-height:0;width:100%;margin:0 auto;display:inline-block;padding:0}
.stickyProduct #MainContent .v65-product-rightCol {float:none;padding:0 60px}
.stickyProduct .productBlock {margin-top:50px!important;width:100%;padding:0}
}
@media screen and (max-width: 580px) {
.stickyProduct header.primary .headerTop .telephoneNumber {display:none!important}
}
@media screen and (min-width: 951px) and (max-width: 1035px) {
.stickyProduct .v65-productWrapper h1 {padding-top: 2.3em;}
.stickyProduct .productBlockWrapper > .v65-product-leftCol {top:250px;}
}
@media screen and (min-width: 581px) and (max-width:950px) {
.stickyProduct .productBlockWrapper > .v65-product-leftCol {top:50px;}
}

/* carrots that live outside of the cart */
.v65-carrot-color-green {position:fixed; bottom:-10px; right:-240px; z-index:9999999;background-color: #f8f8f8; padding:20px; max-width:200px; border-radius:6px 0 0 0; box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px; -ms-transition: all 0.5s ease-out; -moz-transition: all 0.5s ease-out;-o-transition: all 0.5s ease-out;-webkit-transition: all 0.5s ease-out; transition: all 0.5s ease-out;}

/* bigger cart with stuff inside it and styled carrots */
@media screen and (min-width: 400px) {
.stickyProduct #v65-modalCartDropdown {width:400px;}
}
.stickyProduct #v65-modalCartTable th {font-size:0.9em; text-transform: uppercase;}
.stickyProduct #v65-modalCartDropdown a span {font-size: 1em;}
.stickyProduct #v65-modalCartDropdown a.modalLinkAltBtn, .stickyProduct #v65-modalCartDropdown a.modalLinkBtn {padding: 5px;}

/* product filters */
.productFilters { margin-top: 20px;display: none;}
.productFilters > div {background: #f7f7f7;padding: 1em 2em;overflow: hidden;display: inline-block;border: 1px solid #dbdbdb; min-width:220px;}
.productFilters > div > div {margin:10px 0}
.productFilters ul {padding:0!important; border:none!important; margin:10px 0 0 20px!important;}
.productFilters span {display:block;}
.productFilters ul span {display: none}


.v65-quantity-label, .v65-addToCartCase .v65-product-addToCart-price, .v65-addToCartCase .v65-product-addToCart-caseQuantity {display:none;}

@media screen and (min-width: 971px) {
.v65-col2Left .v65-product1Up .v65-product-buyCase-button {margin-left: 178px;}
}

/* new subnav*/
.subnavHolder {position:fixed; top:140px; width:100%; background:#332f2c; border-top:1px solid #a39875; z-index:-1}
.subnavHolder ul {list-style: none; margin:0; padding:10px; text-align:center;}
.subnavHolder li {display:inline-block; font-size: 15px; margin:0 10px}
.subnavHolder li a:hover {color:#d6d4cb;}
@media screen and (max-width:1060px) and (min-width:1036px) {
.mainMenu li {padding: 0px 5px;}
}
@media screen and (max-width:1035px) and (min-width:951px) {
.subnavHolder {top:200px}  /* making room for second row of main nav at some screen widths */
}

@media screen and (max-width: 580px) {
.subnavHolder {display: none;}
}

/* move buy case button up to be next to add to cart */
.v65-product1Up .v65-product-addToCart form, .elton .v65-product-addToCart form, .pambrun .v65-product-addToCart form, .maison-bleue .v65-product-addToCart form {float:left;}
.v65-product1Up .v65-product-addToCart form.v65-addToCartCase, .elton .v65-product-addToCart form.v65-addToCartCase, .pambrun .v65-product-addToCart form.v65-addToCartCase, .maison-bleue .v65-product-addToCart form.v65-addToCartCase {margin: 2px 0 0;}
.v65-col2Left .v65-product1Up .v65-product-buyCase-button, .v65-product1Up .v65-product-addToCart form.v65-addToCartCase .v65-product-addToCart-priceWrapper, .elton .v65-product-buyCase-button, .elton .v65-product-addToCart form.v65-addToCartCase .v65-product-addToCart-priceWrapper, .pambrun .v65-product-buyCase-button, .pambrun .v65-product-addToCart form.v65-addToCartCase .v65-product-addToCart-priceWrapper, .maison-bleue .v65-product-buyCase-button, .maison-bleue .v65-product-addToCart form.v65-addToCartCase .v65-product-addToCart-priceWrapper {margin:0!important;}
@media screen and (max-width: 970px) {
.v65-product1Up .v65-product-addToCart form.v65-addToCartCase {margin: 36px 0 0;}
.elton .v65-product1Up .v65-product-addToCart form.v65-addToCartCase, .pambrun .v65-product1Up .v65-product-addToCart form.v65-addToCartCase, .maison-bleue .v65-product1Up .v65-product-addToCart form.v65-addToCartCase {margin: 32px 0 0;}
.elton .v65-product-addToCart form.v65-addToCartCase, .pambrun .v65-product-addToCart form.v65-addToCartCase, .maison-bleue .v65-product-addToCart form.v65-addToCartCase {margin: 36px 0 0;}
}
@media screen and (max-width: 970px) and (min-width: 581px){
.elton .v65-product-addToCart form.v65-addToCartCase, .maison-bleue .v65-product-addToCart form.v65-addToCartCase {margin: 44px 0 0!important}
.pambrun .v65-product-addToCart form.v65-addToCartCase {margin: 39px 0 0!important}
}

/* fix for strange issue with QuickView */
.v65-quickView .v65-product-tabs { width: 100%; float: left; }
.v65-quickView .v65-product-tab { float: left; }
