@charset "UTF-8";
/* 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;
  margin: auto 0;
}

/**
 * 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: serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
   overflow-y: scroll;
}

/**
 * Remove default margin.
 */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}


@media screen and (min-width: 768px) {
main {
    animation: transitionIn .75s;
}

@keyframes transitionIn {
    from {
        opacity: 0;
        transform: rotateX(-10deg);
    }

    to {
        opacity: 1;
        transform: rotateX(0);
    }
    }}

@media screen and (min-width: 768px) {
footer {
    animation: transitionIn .75s;
}

@keyframes transitionIn {
    from {
        opacity: 0;
        transform: rotateX(-10deg);
    }

    to {
        opacity: 1;
        transform: rotateX(0);
    }
    }}


/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}

/**
 * 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.
 */

/**
 * 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: "“" "”" "‘" "’";
}

/**
 * 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: 5px;
  /* 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;
}

th {
  font-size: 1em;  
}

td {
   font-size: 1em; 
}

@font-face {
  font-family: "icomoon";
  src: url("../font/icomoon.eot?jji5ji");
  src: url("../font/icomoon.eot?#iefixjji5ji") format("embedded-opentype"), url("../font/icomoon.woff?jji5ji") format("woff"), url("../font/icomoon.ttf?jji5ji") format("truetype"), url("../font/icomoon.svg?jji5ji#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^=icon-], [class*=" icon-"] {
  font-family: "icomoon";
  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-file-pdf:before {
  content: "";
}

.icon-mail:before {
  content: "";
}

.icon-phone:before {
  content: "";
}

.icon-user:before {
  content: "";
}

.icon-yelp:before {
  content: "";
}

.icon-youtube:before {
  content: "";
}

.icon-instagram:before {
  content: "";
}

.icon-angle-down:before {
  content: "";
}

.icon-up-bold:before {
  content: "";
}

.icon-vimeo:before {
  content: "";
}

.icon-twitter:before {
  content: "";
}

.icon-facebook:before {
  content: "";
}

.icon-gplus:before {
  content: "";
}

.icon-pinterest:before {
  content: "";
}

.icon-mobile:before {
  content: "";
  color: #222;
}

.icon-link:before {
  content: "";
}

.icon-comments:before {
  content: "";
}

.icon-clock:before {
  content: "";
}

.icon-search:before {
  content: "";
}

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

#v65-mainHeaderNav > ul > li.v65-home > a {
    display: none;
    overflow: hidden;
    visibility: hidden;
}


#v65-mainHeaderNav > ul > li.v65-home {
    margin-left: -20px;
}

@media screen and (max-width: 960px) {
#v65-mainHeaderNav ul li {
    text-align: left;
    width: 100%;
    }
}

/*   ===================================================================================================
     1. Typography - These get copied into the admin.css
======================================================================================================== */
html {
  font-size: 97%;
  scroll-padding-top: -4rem;
}

body {
  background-color: #f8f7f1;
  color: #222;
  font-family: "Libre Baskerville", serif;
  -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   Focus styles for accessibility
   ========================================================================== */
*:focus {
  outline: ;
}

*.focus--mouse:focus {
  outline: 0;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: "Libre Baskerville", serif;
}


h1 {
    font-size: 3.5rem;
    line-height: 4.5rem;
    text-align: left;
    margin: 0rem 0rem 2.25rem 0rem;
}

@media screen and (max-width: 1100px) {
    h1 {
  font-size: 3rem;
  line-height: 3.75rem;
  letter-spacing: -1px;
  text-align: left;
  margin: 0rem 0rem 2rem 0rem;
    }
}

@media screen and (max-width: 680px) {
    h1 {
    font-size: 2.25rem;
    line-height: 2.5rem;
    letter-spacing: 0px;
    text-align: left;
    margin: 1rem 0rem 1.5rem 0rem;
    }
}

@media screen and (max-width: 680px) {
    h1:first-of-type {
    font-size: 2.25rem;
    line-height: 2.5rem;
    letter-spacing: 0px;
    text-align: left;
    margin: 1rem 0rem 1.5rem 0rem;
    }
}

h2 {
    font-size: 2.5rem;
    line-height: 3.35rem;
    margin-bottom: 2rem;
}

@media screen and (max-width: 800px) {
    h2 {
    font-size: 1.3rem;
    line-height: 2rem;
    margin-bottom: 1rem;
    }
}

@media screen and (max-width: 580px) {
    h2 {
    font-size: 1.25rem;
    line-height: 1.65rem;
    margin-bottom: 1rem;
    }
}

h3 {
  font-size: 1.85rem;
  line-height: 2.5rem;
  margin: 1em 0em;
}

@media screen and (max-width: 800px) {
    h3 {
    font-size: 1.4rem;
    line-height: 2rem;
    margin: 1em 0em;
    }
}

@media screen and (max-width: 580px) {
    h3 {
    font-size: 1.2rem;
    line-height: 1.5rem;
    margin: 1em 0em;
    }
}

h4 {
    font-size: 1.25em;
    line-height: 1.5em;
    margin-bottom: 0.6em;
}

h5 {
  font-size: .75rem;
  line-height: 1rem;
  margin-bottom: 1.5rem;
}

h6 {
  font-size: 12px;
  line-height: 1em;
  margin-bottom: 0.5em;
}

@media screen and (max-width: 767px) {
h6 {
  font-size: 12px;
    line-height: 1.3em;
    margin-bottom: 3em !important;
    }
}

p, blockquote {
  margin: ;
  line-height: 1.5rem;
}

p {
font-size: 1rem;
margin-bottom: 1.5rem;
line-height: 1.4rem;
}

@media screen and (max-width: 767px) {
article ul {
    font-size: 1rem !important;
    line-height: 1.35rem;
    }
}

.checks .reasons {
    padding-left: 0em !important;
    line-height: .9em;
}

blockquote {
  padding-bottom: 1px;
  margin: 0 auto;
  width: 60%;
}
@media screen and (max-width: 767px) {
  blockquote {
    width: 80%;
  }
}
blockquote p {
  margin: 2em 0;
}

blockquote:after {
  border-bottom: 1px solid #ccc;
  content: "";
  height: 1px;
  margin-left: -75px;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 150px;
}

hr {
  background-color: #ccc;
  border: 0;
  color: #ccc;
  height: 1px;
  max-width: 95%;
  margin: 1em 0em 2em 0em;
}

dl, ol, ul {
    margin-top: 16px;
}

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

a {
  color: #333;
  cursor: pointer;
  text-decoration: ;
}

a:hover, a:focus, a:active {
  color: #999;
  text-decoration: none;
}

a.p {
  color: #333;
  cursor: pointer;
  text-decoration: underline;
}

a.p:hover, a.p:focus, a.p:active {
  color: #999;
  text-decoration: underline !important;
}

#v65-modalContent a {
    text-decoration: underline;
}


img {
  border: none;
  height: auto !important;
  max-width: 100%;
  display: block;
}

a img {
  -webkit-transition: 0.25s ease;
  transition: all 0.25s ease;
}

a:hover img {
    transform: scale(1.05);
}

h3 a, h3 a:hover, h3 a:focus, h3 a:active {
  border-bottom: 1px solid !important;
}

form {
  margin-bottom: 1em;
}

legend {
  color: #191919;
}

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

.v65-title {
  color: #000;
  font-family: "libre baskerville", serif;
  font-size: 1em;
  font-weight: normal;
  line-height: 1;
  display: inline-block;

}
.v65-title a {
  color: #000;
}
.v65-title a:hover, .v65-title a:focus, .v65-title a:active {
  color: #000;
  text-decoration: none;
}

.v65-subtitle {
  color: #000;
  font-size: 23px;
  font-family: "Libre Baskerville", serif;
  font-weight: normal;
  line-height: 1;
  margin-bottom: 1em;
}

#v65-modalForgotPasswordLink {
  color: #222;
  text-decoration: none;
  height: auto;
  line-height: initial;
  font-family: "Libre Baskerville", serif;
  background: none;
}

#v65-modalForgotPasswordLink:hover, #v65-modalForgotPasswordLink:focus, #v65-modalForgotPasswordLink:active {
  color: #999;
  text-decoration: none;
}

main section p a, main article p a {
  border-bottom: 1px solid #222;
}

main section p a, main article p a:hover {
  border-bottom: 1px solid #999;
}

@media screen and (min-width: 1000px) {
main article.page p {

    }
}

main article.page h3 {
    margin: 1em 0em 0.5em 0em !important;
    font-size: 1.5rem;
    line-height: 2.25rem;
    text-transform: ;
}

@media screen and (min-width: 800px) {
main article.page {
    padding-top: 4em;
    }
}

@media screen and (max-width: 799px) {
main article.page {
    padding-top: 2em;
    }
}

thead th {
    background: none;
}

.table td, .table th {
    padding: .75em 1em !important;
    font-size: 1.15em;
    vertical-align: middle !important;
}

.table-bordered td, .table-bordered th {
    border: 1px solid #222;
}

.table thead th {
    border: 1px solid #222;
}

.error {
    color: #c00;
    text-transform: uppercase;
    letter-spacing: 2px;
    list-style: none;
    font-size: 1em !important;

}

/*   ===================================================================================================
     2. Header
======================================================================================================== */
header.primary {
    width: 100%;
    height: 120px;
    display: flex;
    position: fixed;
    background-color: #f8f7f1;
    z-index: 10;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    margin-top: 40px;
}

@media screen and (max-width: 580px) {
    header.primary {
    width: 100%;
    height: 80px;
    display: block;
    position: fixed;
    background-color: #f8f7f1;
    z-index: 10;
    margin-top: 40px;
  }
}

@media screen and (min-width: 961px) {
    header.primary {
        margin-top: 40px !important;
          }
}


#user-tools {
  font-family: "Libre Baskerville", serif;
  font-size: 1rem;
  float: right;
  height: 3em;
  line-height: 3em;
  position: relative;
  width: auto;
  z-index: 200;
}
@media screen and (max-width: 580px) {
  #user-tools {
  font-family: "Libre Baskerville", serif;
  font-size: 1rem;
  float: right;
  height: 3em;
  line-height: 4em;
  position: relative;
  width: 100%;
  background-color: #faf9f5;
  height: 62px;
  display: contents;

  z-index: 200;
  }
}
#user-tools a {
  color: #000;
}
#user-tools a:hover, #user-tools a:active, #user-tools a:focus {
  color: #000;
}
@media screen and (max-width: 580px) {
  #user-tools a:hover, #user-tools a:active, #user-tools a:focus {
    color: #222;
  }
}
@media screen and (max-width: 580px) {
  #user-tools a {
    color: #222;
    font-size: ;
  }
}
@media screen and (max-width: 580px) {
  #user-tools .v65-editProfile, #user-tools .v65-yourAccount {
    width: 32%;
  }
}


@media screen and (max-width: 580px) {
#user-tools .v65-login, #user-tools .v65-logout {
    border-right: none;
    float: right;
    height: 4em;
    line-height: 4em;
    margin-top: 8px;
    margin-right: 22px;
    position: relative;
    text-align: center;
    width: 33%;
    z-index: 400;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    }
}

@media screen and (max-width: 580px) {
  #user-tools .v65-login, #user-tools .v65-logout {
    width: 20%;
  }
}
#user-tools .v65-editProfile, #user-tools .v65-yourAccount,
#user-tools .v65-login, #user-tools .v65-logout {
  border-color: #24475e;
}
@media screen and (min-width: 581px) {
  #user-tools .v65-editProfile, #user-tools .v65-yourAccount,
#user-tools .v65-login, #user-tools .v65-logout {
    width: auto;
  }
}
#user-tools .v65-pointsBalance {
  display: inline-block;
  padding-right: .5em;
}
@media screen and (max-width: 580px) {
  #user-tools .v65-pointsBalance {
    display: none;
  }
}

#v65-modalCart {
    position: static;
    display: none !important;
}
@media screen and (min-width: 581px) {
  #v65-modalCart {
    display: inline-block;
    padding-left: 1em;
  }
}

.v65-logo {
    width: auto !important;
    height: 36px !important;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    z-index: 300;
}
@media screen and (max-width: 767px) {
  .v65-logo {
    clear: both;

  }
}

@media screen and (max-width: 580px) {
  .v65-logo {
    position: fixed !important;
    top: 18px !important;
    width: 100px !important;
    margin: 0 !important;
    padding: 0px;
    z-index: 101;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 40px !important;
  }
}

.v65-productBadge {
    position: absolute;
  top: 40px;
  right: 40px;
    width: 18%;
}

@media screen and (max-width: 1150px) {
.v65-productBadge {
    position: absolute;
  top: 20px;
  right: 20px;
    width: 25%;
    }
}

@media screen and (min-width: 2100px) {
.v65-productBadge {
    position: absolute;
  top: 40px;
  right: 100px;
    }
}

.v65-product-relatedProducts .v65-productBadge {
    display: none;
}

.v65-buttonSpacing {
  display: none;
}
@media screen and (max-width: 580px) {
  .v65-buttonSpacing {
    display: inline-block;
    position: relative;
    float: left;
    width: 10%;
    height: 50px;
  }
}

.userToolsWrapper.v65-group {
  width: 100%;
}

@media screen and (max-width: 580px) {
  .userToolsWrapper.v65-group {
    right: 0;
  }
}

.wrapper50 {
    max-width: 1024px;
    margin: auto;
    margin-top: 100px !important;
}

/*   ===================================================================================================
     3. Navigation
======================================================================================================== */
/* ----- a. Main Menu ----- */
.mainMenu {
    font-family: "Libre Baskerville", serif;
    font-size: 1rem;
    position: relative;
    z-index: 101;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
}
@media screen and (max-width: 960px) {
  .mainMenu {
      visibility: hidden;
  }
}
@media screen and (min-width: 768px) {
  .mainMenu {

  }
}

@media screen and (max-width: 960px) {
  .mainMenu {
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: fixed;
    top: 80px;
    left: -100%;
    background-color: #f8f7f1;
    height: 100%;
    height: calc(100% - 46px);
    height: -o-calc(100% - 46px);
    /* opera */
    height: -webkit-calc(100% - 46px);
    /* google, safari */
    height: -moz-calc(100% - 46px);
    margin: 0;
    overflow-y: auto;
    padding: 20px 0;
    width: 100%;
    z-index: 100;
    -moz-transition: all 0.25s;
    -o-transition: all 0.25s;
    -webkit-transition: all 0.25s;
    transition: none;
    visibility: hidden;
  }
}


@media screen and (max-width: 580px) {
  .mainMenu {
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: fixed;
    top: 80px;
    left: -100%;
    background-color: #f8f7f1;
    height: 100%;
    height: calc(100% - 46px);
    height: -o-calc(100% - 46px);
    /* opera */
    height: -webkit-calc(100% - 46px);
    /* google, safari */
    height: -moz-calc(100% - 46px);
    margin: 0;
    overflow-y: auto;
    padding: 20px 0;
    width: 100%;
    z-index: 100;
    -moz-transition: all 0.25s;
    -o-transition: all 0.25s;
    -webkit-transition: all 0.25s;
    transition: none;
    visibility: hidden;
  }
}


.mainMenu ul {
    list-style: none;
    padding-left: 0px;
    display: inline-block;
    padding-top: 4px;
}

@media screen and (max-width: 960px) {
.mainMenu ul {
    list-style: none;
    padding-left: 0px;
    display: inline-block;
    width: 80%;
    font-size: 2.25em;
    text-align: left;
    }
}

@media screen and (max-width: 580px) {
.mainMenu ul {
    padding-bottom: 4em;
    }
}

.mainMenu ul ul {
  background: #f8f7f1;
  border: 1px solid #e6e6e6;
  display: none;
  font-size: 1rem;
  left: -30px;
  position: absolute;
  top: 22px;
  z-index: 1;
  padding: 32px;
}

@media screen and (max-width: 960px) {
  .mainMenu ul ul {
    background-color: #f8f7f1;
    border: 0;
    display: block;
    position: static;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0px 0px 20px 0px;
    display: ;
  }
}

@media screen and (max-width: 580px) {
  .mainMenu ul ul {
    background-color: #f8f7f1;
    border: 0;
    display: ;
    position: static;
    top: 0;
    left: 0;
    width: 100%;
  }
}

.mainMenu li {
  display: inline-block;
  padding: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mainMenu li {
    margin: 0 10px;
  }
}
@media screen and (max-width: 1199px) {
  .mainMenu li {
    margin: 0 0 0 12px;
  }
}
@media screen and (min-width: 1200px) {
  .mainMenu li {
    margin: 0 0 0 20px;
  }
}

@media screen and (max-width: 960px) {
  .mainMenu li {
    border-bottom: ;
    display: block;
    margin: 0;
    padding: 0 !important;
    text-align: left;
  }
}

@media screen and (max-width: 580px) {
  .mainMenu li {
    border-bottom: ;
    display: block;
    margin: 0;
    padding: 0px 16px;
    text-align: left;
  }
}

.mainMenu li:first-child {
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .mainMenu li:hover ul {
    display: block;
  }
}
.mainMenu li li {
  display: block;
  float: none;
  margin: 0;
  text-align: left;
  width: 200px;
}
@media screen and (max-width: 580px) {
  .mainMenu li li {
    border-bottom: 0;
    border-top: ;
    padding: 0;
    width: 100%;
  }
}

@media screen and (max-width: 960px) {
.mainMenu li li a {
  color: #222;
  font-size: 1.5em !important;
  height: 30px;
  line-height: 30px;
  padding: 0 !important;
  margin: 15px 40px 0px 40px;
  width: 100% !important;
  text-align: left !important;
  margin: 6px 0px 6px 0px !important
  white-space: nowrap;
  text-transform: lowercase;
    }
}

@media screen and (max-width: 580px) {
  .mainMenu li li a {
    color: #222;
    font-size: 1.5em !important;
    padding: 0 !important;
    width: 100%;
    padding: 0 !important;
    margin: 8px 0px 0px 16px;
    white-space: nowrap;
    text-align: left !important;
    text-transform: lowercase !important;
    }
}

@media screen and (min-width: 961px) {
.mainMenu li li a {
  color: #222;
  display: block;
  height: 30px;
  line-height: 30px;
  margin: 0px;
  padding: 0 0 0 5%;
  text-align: left;
  text-transform: none;
  width: 95%;
  text-transform: ;
    }
}

.mainMenu li li a {
  color: #222;
  display: block;
  height: 30px;
  line-height: 30px;
  padding: 0 0 0 5%;
  text-align: left;
  text-transform: none;
  width: 95%;
  text-transform: ;
}

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

.mainMenu a {
  color: #222;
  font-size: 1em;
  display: inline-block;
  margin: 0;
  padding: 0;
  position: relative;
  text-decoration: none;
  text-transform: ;
  text-align: left;
}
@media screen and (max-width: 959px) {
  .mainMenu a {
    padding: 0;
  }
}
@media screen and (min-width: 960px) {
  .mainMenu a {
    height: 40px;
    line-height: 34px;
  }
}
.mainMenu a:hover {
  color: #999;
  text-decoration: none;
}
@media screen and (max-width: 580px) {
  .mainMenu a {
    color: #222;
    padding: 0;
    width: 100%;
    text-transform: lowercase;
  }
  .mainMenu a:hover {
    color: #999;
  }
}

.mainMenu .v65-pageAParent {
  color: #222;
}
@media screen and (max-width: 580px) {
  .mainMenu .v65-pageAParent {
    color: #222;
  }
}
@media screen and (max-width: 919px) {
  .mainMenu .v65-home {
    display: ;
  }
}
.mainMenu .v65-selected {
  color: #222;
}
@media screen and (max-width: 580px) {
  .mainMenu .v65-selected {
    color: #222;
  }
}
.mainMenu .footerMenuLink {
  bottom: 0;
  font-size: 1.5em;
  position: absolute;
  right: 0;
}
@media screen and (max-width: 450px) {
  .mainMenu .footerMenuLink {
    display: block;
  }
}
@media screen and (min-width: 451px) {
  .mainMenu .footerMenuLink {
    display: none;
  }
}

.v65-subMenuAccessibilityIcon {
  position: absolute;
  transform: rotate(90deg);
  font-size: 12px;
  margin-top: 0.9rem;
  margin-left: 0.2rem;
}
@media screen and (max-width: 768px) {
  .v65-subMenuAccessibilityIcon {
    margin-top: 1rem;
  }
}

.v65-addToCartCase {
    display: none;
}

.v65-icon-selected:before {
  transform: rotate(90deg);
  animation-name: spin;
  animation-duration: 4000ms;
  animation-timing-function: linear;
}

@media screen and (min-width: 580px) {
  .v65-subMenuAccessibilityIcon:focus {
    position: absolute;
    opacity: 1;
  }
}
.activeIcon {
  position: absolute;
  opacity: 1;
  transform: rotate(0deg);
}

@media screen and (min-width: 768px) {
input[type=email], input[type=password], input[type=tel], input[type=text], input[type=username], {
    width: 600px;
    max-width: 90% !important;
    }
}

@media screen and (max-width: 767px) {
input[type=email], input[type=password], input[type=tel], input[type=text], input[type=username], input[type=number] {
    width: 600px;
    max-width: 90% !important;
    }
}

input[type=email], input[captchaText] {
    width: 600px !important;
    max-width: 90% !important;
}

#captchaText {
    background-color: #fff;
    border: 1px solid #eee;
}

/* ----- b. Sub Menu ----- */
.subMenu {
  font-family: "Libre Baskerville", serif;
  margin-bottom: 0;
  margin-top: 8%;
  font-size: 1rem
}
@media screen and (min-width: 768px) {
  .subMenu {
    float: left;
    margin-right: 6%;
    padding-right: 0%;
    width: 24%;
    border: 1px solid #222; 
    padding: 2em 0em 2em 2em;
    position: sticky;
    top: 540px;
    }
}
.subMenu h4 {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: normal;
  font-style: normal;
}

@media screen and (max-width: 767px) {
  .subMenu h4 {
    display: none;
  }
}
.subMenu ul {
  list-style: none;
  margin-bottom: 0;
  padding: 0;
}
.subMenu li {
  line-height: 2.25em;
}
@media screen and (max-width: 767px) {
  .subMenu li {
    border-top: 1px solid #eeeeee;
    line-height: 44px;
    text-align: center;
  }
}
.subMenu li ul {
  margin-left: 10px;
}
.subMenu a {
  display: inline-block;
  color: #222;
  font-size: 1rem;
  line-height: 1.35rem;
  width: 100%;
}
.subMenu a:hover, .subMenu a:focus, .subMenu a:active {
  color: #999;
  text-decoration: none;
}
.subMenu .v65-pageAParent {
  color: #000;
}
.subMenu .v65-leftSelected {
  color: #000;
  font-style: italic;
}

@media screen and (min-width: 961px) {
  .mobileMenu {
    display: none;
  }
}


@media screen and (max-width: 960px) {
.mobileMenu {
  color: #fff;
  display: none;
  float: left;
  font-size: 2.5em;
  position: absolute;
  width: 12%;
  top: 0em;
  z-index: 300;
    }
}

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

@media screen and (max-width: 580px) {
.mobileMenu {
  color: #fff;
  display: none;
  float: left;
  font-size: 2.5em;
  position: absolute;
  width: 12%;
  top: 0em;
  z-index: 300;
    }
}

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

@media screen and (max-width: 340px) {
  .mobileMenu {
    width: 14%;
  }
}

.menuOpen {
  transform: translate(100%, 0);
  -webkit-transform: translate(100%, 0);
  -moz-transform: translate(100%, 0);
  -ms-transform: translate(100%, 0);
  visibility: visible;
  text-align: center;
}

.mobileBody {
  position: fixed;
}

.v65-subMenuAccessibilityIcon{
	position: absolute;
	transform: rotate(90deg);
	font-size: 12px;
	margin-top: 0.9rem;
	margin-left: 0.2rem;
	@media screen and (max-width: 768px){
		margin-top: 1rem;
	}
}

.v65-icon-selected:before{
	transform: rotate(90deg);
	animation-name: spin;
    animation-duration: 4000ms;
    animation-timing-function: linear;
	
}
@media screen and (min-width: 580px){
	.v65-subMenuAccessibilityIcon:focus {
		position: absolute;
		opacity: 1;
                 cursor: pointer;
	}
}

.activeIcon{
	position: absolute;
	opacity: 1;
	transform: rotate(0deg);
}


/*   ===================================================================================================
     Announcement Bar
======================================================================================================== */

.announcement {
    display: inline-block;
    position: fixed;
    height: 40px;
    text-align: center;
    width: 100%;
    background: #222;
    color: #f8f7f1;
    font-family: "libre baskerville", serif;
    margin: 0;
    padding: 0;
    vertical-align: middle;
    font-size: 0.8em;
    z-index: 200;
}

.announcement p {
  vertical-align: middle !important;
  font-size: 1.15em !important;
  padding-top: .7em;
}

.announcement a { 
  color: #f8f7f1;
  text-decoration: underline;
}

.announcement a:hover {
  color: #999;
  text-decoration: underline;
}


/*   ===================================================================================================
     4. Content
======================================================================================================== */
#v65-modalContentHeader {
    background-color: #eee !important;
    text-align: right;
    padding: 16px 12px 46px 0px;
    margin: 0;
    border-bottom: 1px solid;
}

.content {
  background: #f8f7f1;
}

@media screen and (max-width: 767px) {
  .pageContent {
    padding: 120px 0px;
  }
}
@media screen and (min-width: 768px) {
  .pageContent {
    padding: 160px 0px;
  }
}
@media screen and (max-width: 580px) {
  .pageContent {
    padding: 120px 0px;
  }
}

.alternateBackgroundContent {
  background: #f8f7f1;
}

.wrapper {
  margin: 0 auto;
}

@media screen and (min-width: 580px){
    .wrapper {
  margin: 0 auto;
  width: 1920px;
  max-width: 85%;
    }
}
@media screen and (max-width: 580px) {
  .wrapper {
    margin: 0 auto;
    padding: 0 2%;
    width: 90%;
  }
}

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

.overlay {
  background: url(../images/image-overlay.png);
  background: rgba(0, 0, 0, 0.54);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -ms-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: none;
}

input[type=email], input[type=password], input[type=tel], input[type=text], input[type=username], input[type=number] {
  border: 1px solid #eee;;
  font-family: "Libre Baskerville", serif;
  margin-bottom: 1em;
}

button, input[type=button], input[type=submit], label, form {
  font-family: "Libre Baskerville", serif;
}

/* ----- a. Homepage Styles ----- */
.homepageContent {
    background: #f8f7f1;
    width: 100%;
    left: 0;
    right: 0;
    margin: auto;
    padding-bottom: 6em;
    padding-top: 80px;
}
.homepageContent h1 {
    width: 100%;
    margin: auto;
    padding: 1rem 0rem 1.75rem 0rem;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .homepageContent h1 {
    padding: 0rem 0rem .5rem 0rem;

}
    }

.homepageContent .v65-blogPostWrapper {
  float: left;
  margin: 1em 0 0;
  width: 50%;
}
@media screen and (max-width: 580px) {
  .homepageContent .v65-blogPostWrapper {
    float: none;
    margin: 0 auto;
    width: 95%;
  }
}
.homepageContent .v65-blogPostWrapper .v65-blogPost {
  margin: 0 6%;
}
.homepageContent .v65-blogPostWrapper h2 {
  font-family: "Libre Baskerville", serif;
}
.homepageContent .v65-blogPostWrapper h2 a:hover, .homepageContent .v65-blogPostWrapper h2 a:focus, .homepageContent .v65-blogPostWrapper h2 a:active {
  color: #2a536f;
  text-decoration: none;
}
.homepageContent .v65-blogPostWrapper .v65-blogPostDate {
  color: #5d5d5d;
  font-family: "Libre Baskerville", serif;
}
.homepageContent .v65-blogPostWrapper .v65-blogPostDate a {
  color: #5d5d5d;
  font-weight: bold;
}
.homepageContent .v65-blogPostWrapper .v65-avatar,
.homepageContent .v65-blogPostWrapper .v65-blogFooter {
  display: none;
}

.homepageLinks .heroImage {
  -ms-behavior: url(backgroundsize.min.htc);
  behavior: url(backgroundsize.min.htc);
  text-align: center;
  padding: 5em 5%;
  position: relative;
  width: 80%;
  height: auto;
  margin-top: 106px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 581px) {
  .homepageLinks .heroImage {
    min-height: 750px;
    padding: 2.5em 5% 8em;
  }
}
.homepageLinks .heroImage .imageContent {
  max-width: 80%;
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 581px) {
  .homepageLinks .heroImage .imageContent {
    margin-top: 8em;
  }
}
.homepageLinks .heroImage .imageContent h1 {
  font-size: 2.75rem;
}
@media screen and (min-width: 581px) and (max-width: 950px) {
  .homepageLinks .heroImage .imageContent h1 {
    font-size: 2.75rem;
  }
}
@media screen and (max-width: 580px) {
  .homepageLinks .heroImage .imageContent h1 {
    font-size: 2rem;
  }
}
.homepageLinks .heroImage .imageContent a {
  color: #d4d4d4;
  font-weight: bold;
}
.homepageLinks .imageContent {
  position: relative;
}
.homepageLinks .bottomImage {
  -ms-behavior: url(backgroundsize.min.htc);
  behavior: url(backgroundsize.min.htc);
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  text-align: center;
  padding: 6em 5% 4em;
  position: relative;
  width: 50%;
}
@media screen and (min-width: 1300px) {
  .homepageLinks .bottomImage {
    padding: 6em 6%;
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .homepageLinks .bottomImage {
    float: none;
    padding: 4em 5%;
    width: 100%;
  }
}
@media screen and (min-width: 581px) {
  .homepageLinks .bottomImage:hover .overlay, .homepageLinks .bottomImage:active .overlay, .homepageLinks .bottomImage:focus .overlay {
    background: url(../images/image-overlay-darken.png);
    background: rgba(0, 0, 0, 0.7);
  }
}
.homepageLinks a, .homepageLinks p, .homepageLinks h1, .homepageLinks h2, .homepageLinks h3, .homepageLinks h4, .homepageLinks h5, .homepageLinks h6 {
  color: #fff;
  line-height: 1.3;
}
.homepageLinks a:hover, .homepageLinks a:focus, .homepageLinks a:active, .homepageLinks p:hover, .homepageLinks p:focus, .homepageLinks p:active, .homepageLinks h1:hover, .homepageLinks h1:focus, .homepageLinks h1:active, .homepageLinks h2:hover, .homepageLinks h2:focus, .homepageLinks h2:active, .homepageLinks h3:hover, .homepageLinks h3:focus, .homepageLinks h3:active, .homepageLinks h4:hover, .homepageLinks h4:focus, .homepageLinks h4:active, .homepageLinks h5:hover, .homepageLinks h5:focus, .homepageLinks h5:active, .homepageLinks h6:hover, .homepageLinks h6:focus, .homepageLinks h6:active {
  text-decoration: none;
}
.homepageLinks h1 {
  font-size: 2.75rem;
  margin-bottom: 0;
}
@media screen and (min-width: 1301px) {
  .homepageLinks h1 {
    font-size: 2.75rem;
  }
}
.homepageLinks p {
  font-size: 1.2em;
  line-height: 1.7;
}
.homepageLinks .imageButton {
  border: 2px solid #fff;
  display: inline-block;
  font-family: "Libre Baskerville", serif;
  padding: 15px 30px;
  text-align: center;
  margin: 4px 2px;
  font-size: 1rem;
  border-radius: 32px;
  position: relative;
  width: auto;
  display: none;
}
.homepageLinks .imageButton:hover, .homepageLinks .imageButton:focus, .homepageLinks .imageButton:active {
  background-color: #f8f7f1;
  color: #000;
}

.homepageContent.homepageProductGroup {
  background-color: #f8f7f1;
  padding: 3em 0;
}
.homepageContent.homepageProductGroup .v65-productGroup-title.v65-title {
  display: none;
}
.homepageContent.homepageProductGroup .v65-productGroup-product {
    padding: 5em 0em;
    margin: auto;
    width: 100%;
    left: 0;
    right: 0;
    display: flex;
    object-position: center;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
}
.homepageContent.homepageProductGroup .v65-productGroup-product .v65-title {
  font-size: 3.25rem;
    margin-bottom: .75em;
}
.homepageContent.homepageProductGroup .v65-productGroup-product:last-child {
  border-bottom: 0;
}
@media screen and (min-width: 701px) {
  .homepageContent.homepageProductGroup .v65-productGroup-product .v65-product-teaser {
    padding: 0 0;
  }
}

article.page .v65-product-teaser {
    display: none;
}

article.page .v65-title {
    margin-bottom: .5rem !important;
}

.page {
    padding-top: ;
}

.homepageContent.homepageProductGroup .v65-productGroup-product .v65-product-addToCart-priceWrapper {
  margin-top: 1em;
  margin-bottom: 2em;
}
.homepageContent.homepageProductGroup .productPhoto {
  width: 30%;
}
@media screen and (max-width: 450px) {
  .homepageContent.homepageProductGroup .productPhoto {
    margin-bottom: 1em;
  }
}
.homepageContent.homepageProductGroup .productDescription {
  width: 50%;
}
@media screen and (min-width: 450px) {
.homepageContent.homepageProductGroup .productDescription {
  padding-left: 40px !important;
    }
}
.homepageContent.homepageProductGroup .productPhoto,
.homepageContent.homepageProductGroup .productDescription {
  float: left;
  text-align: left;
  max-width: 650px;
}
@media screen and (min-width: 1100px) {
  .homepageContent.homepageProductGroup .productPhoto,
.homepageContent.homepageProductGroup .productDescription {
 
  }
}
@media screen and (max-width: 451px) {
  .homepageContent.homepageProductGroup .productPhoto,
.homepageContent.homepageProductGroup .productDescription {
    display: block;
    width: 100%;
  }
}
@media screen and (min-width: 451px) {
  .homepageContent.homepageProductGroup .v65-productGroup-product.middleGroup .productPhoto {
    float: right;
  }
}

#slider {
  height: 0;
  padding-top: 35%;
  overflow: hidden;
  width: 100%;
}
#slider .nivo-main-image {
  position: absolute !important;
}

/* ----- b. Page Styles ----- */
.backToTop {
  background: #191919;
  bottom: 1em;
  color: #fff;
  border-radius: 50%;
  height: 4em;
  line-height: 4em;
  opacity: 0.6;
  padding-top: 0.5em;
  position: fixed;
  right: 1em;
  text-align: center;
  text-decoration: none;
  width: 4.5em;
  z-index: 1000;
  display: none !important;
}

.upButton {
  font-size: 3em;
  padding: 0;
}

@media screen and (min-width: 768px) {
  .page {
      width: 66%;
      display: inline-block;
  }
}

.colWrapper {
  width: 100%;
}

footer a {
    color: #eee;
    text-decoration: none;
}

footer p {
    font-size: 1em !important;
    line-height: 1.5;
}



footer > div.v65-pod a.linkBtn {
    border: 1px solid #eee;
    background-color: #222;
}

footer > div.v65-pod a.linkBtn:hover {
    border: 1px solid #666;
}

footer > div.v65-pod a.linkBtn span {
    color: #eee;
}

footer > div.v65-pod a.linkBtn span:hover {
    color: #666;
}

@media screen and (max-width: 1300px) {
#v65-colWrapperGroupBG .v65-colWrapper {
    width: 80% !important;
    }
}

div.v65-colWrapperGroupBG > div.v65-colWrapper {
    padding-left: 2em !important;
    padding-right: 2em !important;
}


.v65-colWrapperGroupBG {
    padding: 16px 0em 6em 0em;
    margin-left: calc(-100vw/2 + 100%/2);
    margin-right: calc(-100vw/2 + 100%/2);
    max-width: 100vw;
    width: auto;
    margin-top: 1.5em;
    margin-bottom: 2.5em;
    }

@media screen and (max-width: 767px) {
.v65-colWrapperGroupBG {
    padding-top: 0em;
    padding-bottom: 5em;
    margin-left: calc(-100vw/2 + 100%/2);
    margin-right: calc(-100vw/2 + 100%/2);
    max-width: 100vw;
    width: auto;
    margin-top: 2em;
    margin-bottom: 2em;
    }
}


.v65-colWrapperGroupTextBox {
    margin: 0 auto;
    width: 1920px;
    max-width: 85%;
    margin-top: 3em;
    margin-bottom: 1.5em;
    padding-bottom: 1.5em;
    }

@media screen and (min-width: 768px) {
.v65-colWrapperGroup {
    margin-top: 2em;
    margin-bottom: 3em;
    }
}

@media screen and (max-width: 767px) {
.v65-colWrapperGroup {
    margin-top: 2em;
    margin-bottom: 4em;
    }
}

    .v65-colWrapperGroupCenter {
    padding: 2em 0em 3em 0em;
}

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

@media screen and (min-width: 768px) {
    .v65-colWrapperGroupCenter h2 {
    margin: 0em 2em 0em 2em;
    }
}

.v65-colWrapper {
    margin: auto;
}

@media screen and (min-width: 581px) {
.v65-colWrapper {
    margin-top: 1em !important;
}
}

@media screen and (max-width: 580px) {
.v65-colWrapper {
    padding-bottom:  1em;
}
}

footer .Wrapper {
    width: 85% !important;
    margin: auto;
    max-width: 1920px;
    }


footer div.v65-colWrapper {
    max-width: 1920px !important;
    padding-top: 4em !important;
    margin: 0 auto;
    text-align: left;
}


.colWrapper:before, .colWrapper:after {
  content: "";
  display: table;
}

.colWrapper:after {
  clear: both;
}

.col2 {
  float: left;
  margin-left: 6%;
  width: 47%;
  margin-bottom: 1em !important;
}

.v65-col2 {
  margin-bottom: 1em !important;
}

.col2:first-child {
  float: left;
  margin-left: 0%;
  width: 47%;
}

.col22 {
  float: left;
  margin-left: 6%;
  width: 29%;
}

.col22:first-child {
  margin-left: 0;
  width: 65%;
}

.col3 {
  float: left;
  margin-left: 5%;
  width: 30%;
}

.col3:first-child {
  float: left;
  margin-left: 0%;
  width: 30%;
}

.col4 {
  float: left;
  margin-left: 3%;
  width: 22.7%;
}

.col4:first-child {
  margin-left: 0;
}

@media screen and (max-width: 850px) {
  .col4 {
    margin: 0 2% 3em;
    width: 46%;
  }

  .col4:first-child {
    margin-left: 2%;
  }
}
@media screen and (max-width: 580px) {
  .col2 {
    float: none;
    margin-left: 0;
    margin-bottom: 5rem !important;
    width: 100%;
  }
    
@media screen and (max-width: 580px) {
  .v65-col2 {
    margin-bottom: 4rem !important;

}
    }

  .col2:first-child {
    float: none;
    width: 100%;
  }
    
    div.v65-shippingInformation.v65-checkoutSection button {
        margin: 10px !important;
        width: 100% !important;
    }

@media screen and (max-width: 767px) {    
  .col22,
.col22:first-child {
    float: none;
    margin: 0em;
    width: 100%;
    }
}
@media screen and (max-width: 767px) {    
    .v65-col2Right, .v65-col2Right:first-child, .v65-col2Left, .v65-col2Left:first-child {
       margin: 0em !important; 
    }
}

  .col3 {
    float: none;
    margin-left: 0;
    margin-bottom: 1.5em;
    width: 100%;
  }

  .col3:first-child {
    float: none;
    width: 100%;
  }

  .col4,
.col4:first-child {
    float: none;
    margin: 0 0 2em;
    width: 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;
}

div#pagePhotoGallery {
  margin: 0 auto;
}

.v65-clubProductImage {
    Max-Height: 400px;
}

.customLinks > a:hover, .customLinks > a:focus, .customLinks > a:active {
  text-decoration: none;
}

.pageLinks {
  -ms-behavior: url(backgroundsize.min.htc);
  behavior: url(backgroundsize.min.htc);
  text-align: center;
  text-decoration: none;
  position: relative;
}
.pageLinks.fullWidthYes {
  float: left;
  padding: 4em 5%;
  width: 85%;
}
@media screen and (min-width: 1300px) {
  .pageLinks.fullWidthYes {
    padding: 7em 7%;
    width: 86%;
  }
}
@media screen and (max-width: 767px) {
  .pageLinks.fullWidthYes {
    float: none;
  }
}
.pageLinks.fullWidthNo {
  float: left;
  padding: 4em 5%;
  width: 40%;
}
@media screen and (min-width: 1300px) {
  .pageLinks.fullWidthNo {
    padding: 7em 7%;
    width: 36%;
  }
}
@media screen and (max-width: 767px) {
  .pageLinks.fullWidthNo {
    float: none;
    padding: 5em 5%;
    width: 90%;
  }
}
@media screen and (min-width: 581px) {
  .pageLinks:hover .overlay, .pageLinks:active .overlay, .pageLinks:focus .overlay {
    background: url(../images/image-overlay-darken.png);
    background: rgba(0, 0, 0, 0.7);
  }
}
.pageLinks a, .pageLinks p, .pageLinks h1, .pageLinks h2, .pageLinks h3, .pageLinks h4, .pageLinks h5, .pageLinks h6 {
  color: #fff;
  position: relative;
}
.pageLinks a:hover, .pageLinks a:focus, .pageLinks a:active, .pageLinks p:hover, .pageLinks p:focus, .pageLinks p:active, .pageLinks h1:hover, .pageLinks h1:focus, .pageLinks h1:active, .pageLinks h2:hover, .pageLinks h2:focus, .pageLinks h2:active, .pageLinks h3:hover, .pageLinks h3:focus, .pageLinks h3:active, .pageLinks h4:hover, .pageLinks h4:focus, .pageLinks h4:active, .pageLinks h5:hover, .pageLinks h5:focus, .pageLinks h5:active, .pageLinks h6:hover, .pageLinks h6:focus, .pageLinks h6:active {
  text-decoration: none;
}
.pageLinks h1 {
  font-size: 2.25em;
}
@media screen and (min-width: 1001px) {
  .pageLinks h1 {
    font-size: 1.75em;
  }
}
.pageLinks .imageButton {
  border: 2px solid #fff;
  color: #fff;
  display: inline-block;
  font-family: "Libre Baskerville", serif;
  padding: 7px 40px;
  position: relative;
  width: auto;
}
.pageLinks .imageButton:hover, .pageLinks .imageButton:focus, .pageLinks .imageButton:active {
  background-color: #fff;
  color: #000;
}

.nivo-controlNav a:hover {
  color: transparent;
}

/* List */
.v65-calendarList-Month {
  border-bottom: 1px solid #eee;
  font-family: "Libre Baskerville", serif;
  font-size: 16px;
  display: none;
}

.v65-calendarList-Event {
    max-width: 1280px !important;
    margin-bottom: 4em;
}

.v65-calendarList-Event .v65-title {
    margin: 0em 0em .25em 0em;
    max-width: 1280px !important;
}

.v65-calendarList-Event strong {
  font-weight:;
  display: ;
}
.v65-calendarList-Event .v65-calendarList-Time {
  display: block;
}

#v65-CalendarEventTable {
    font-family: monospace;
}

@media screen and (max-width: 650px) {
.v65-calendarList-Event .v65-calendarList-Time {
  display: block;
  font-size: 1.05em;
  font-family: monospace;
    }
}

.v65-calendarList-Event .group {
    margin-left: 0px !important;
}

.v65-calendarList-Event {
    font-family: monospace;
}

.v65-calendarList-Event .v65-calendarList-Description {
    font-family: "Libre Baskerville", serif;
}

/* Block */
#v65-CalendarTable {
  border-color: #eeeeee;
  color: #e0e0e0;
}
#v65-CalendarTable th {
    background-color: #d4d3cc;
    border-color: #222;
    border: 1px solid #222;
    color: #000;
    font-family: "Libre Baskerville", serif;
    font-weight: 300;
    padding: 5px 0;
}
#v65-CalendarTable td {
    border-color: #999;
    background: #eeede7;
    padding: 8px;
    border: 1px solid #999;
    border-left: 1px solid #999;
    border-right: 1px solid;
}
#v65-CalendarTable .v65-CalendarDay {
  border: 0;
  color: #222;
  font-family: "Libre Baskerville", serif;
  font-size: 1em;
}

.v65-CalendarDay {
    float: right;
    width: 15px;
    height: 30px;
    padding: 0 18px 4px 4px;
    border-left: 1px solid #999;
    border-bottom: 1px solid #999;
    text-align: right;
    font-size: .917em;
    color: #3b5171;
    clear: both;
}

#v65-CalendarTable .v65-CalendarOffMonthDays {
  background-color: #f8f7f1;
}
#v65-CalendarTable .v65-CalendarToDay {
  background-color: #eeede7;
}
@media screen and (max-width: 580px) {
  #v65-CalendarTable .v65-CalendarEvent {
    padding: 0;
  }
}
@media screen and (max-width: 580px) {
  #v65-CalendarTable .v65-CalendarEvent a {
    background-color: #cdcac647;
    color: #fff;
    height: auto;
    width: auto;
    font-size: .7em;
    color: #222;
    padding: 0.6em 0.6em;
  }
}

.v65-product-addToCart-originalPrice {
    color: #222;
}

.v65-CalendarEvent {
    clear: both;
    padding: 0px 0px 8px 0px;
    font-size: .9em;
    background: #daae9847;
    padding: 0.6em 0.6em;
    margin: .8em 0.4em 0.4em 0.4em;
    border: 1px solid #222;
    border-radius: 0.5em;
}

.v65-CalendarEvent a:hover {
    color: #666;
}

.v65-CalendarEvent:hover {
    background: ;
}

#v65-CalendarTable td {
    height: ;
}



/* Drilldown */
.eventWrapper h1 {
  position: relative;
  text-align: left;
  margin: 1em 0em 0.25em 0em;
  max-width: 1280px !important;
}
.eventWrapper h1:after {
  border-bottom: 1px solid #eee;
  content: "";
  height: 1px;
  margin: 0 15%;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70%;
  display: none;
}
.eventWrapper strong {
  font-weight:;
}

.backLink {
  font-family: "Libre Baskerville", serif;
  font-size: 1em;
  border-bottom: 1px solid;
  text-transform: lowercase;
}

/* ----- 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%;
  }
}

#v65-fieldset-billingInfo {
    width: auto !important;
}

#v65-fieldset-wholesalerInfo, #v65-fieldset-billingInfo, #v65-fieldset-shippingOptions, #v65-fieldset-shippingInfo, #v65-fieldset-paymentMethod, #v65-fieldset-sourceCode, #v65-fieldset-usernamePassword, #v65-fieldset-gift {
    width: auto !important;
}

.v65-productGroup-teaser {
  width: 100%;
}

.v65-productGroup-product:first-child {
  margin-left: 0;
}

@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;
}
@media screen and (min-width: 600px) and (max-width: 750px) {
  .v65-productGroup .v65-clear.productGroup-3Up-rowClear {
    display: block;
  }
}

@media screen and (min-width: 581px) and (max-width: 600px) {
  .v65-product3Up {
    float: none;
    margin: 1em auto;
    width: 50%;
  }
}
@media screen and (max-width: 600px) {
  .v65-product3Up .v65-last {
    margin: auto;
    padding: auto;
    border: 0;
  }
}

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

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

.v65-product2Up .v65-product-photo {
  margin: 0 15px;
}

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

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

.v65-product1Up .v65-product-infoWrapper {
    float: left;
    width: 65%;
    padding-left: 25px;
}

.homepageProductGroup .v65-product-photo {
  margin: 0 15px 0 0;
}

.v65-paging, .v65-pagingBottom {
  border-bottom: none;
  border: none;
}

.v65-paging {
    margin-top: 6rem;
}

.v65-club {
  margin: 30px 0;
}

.v65-clubTeaser {
    margin-bottom: 80px;
    border-bottom: none;
    padding: 0;
}

.v65-product-quickView {
  background-color: #f8f7f1;
  border: none;
  color: #fff;
  -ms-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  font-family: "Libre Baskerville", serif;
  margin-left: -52px;
  padding: 0.75em 1em;
}
.v65-product-quickView:hover, .v65-product-quickView:active, .v65-product-quickView:focus {
  background-color: #1d394b;
  color: #fff;
}

.v65-quickView {
  border: 1px solid #ccc;
  -ms-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.v65-quickView .v65-quickView-close {
  top: 10px;
  right: 10px;
}
.v65-quickView .v65-quickView-close a {
  background-color: #162b39;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  font-family: "Libre Baskerville", serif;
  padding: 4px 14px;
}
.v65-quickView .v65-quickView-close a:hover, .v65-quickView .v65-quickView-close a:active, .v65-quickView .v65-quickView-close a:focus {
  background-color: #1d394b;
}
.v65-quickView .v65-quickViewContent .v65-product-photoWrapper {
  width: 25%;
  margin-right: 2%;
}
.v65-quickView .v65-quickViewContent .v65-quickView-right-content {
  width: 70%;
}
.v65-quickView .v65-quickViewContent .v65-product-tabs .last a {
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.v65-quickView .v65-quickViewContent .v65-product-tabs li a {
  border-color: #eeeeee;
  font-weight: 300;
}
.v65-quickView .v65-quickViewContent li.v65-product-tabs-active a {
  font-style: italic;
}
@media screen and (max-width: 767px) {
  .v65-quickView .v65-quickViewContent li.v65-product-tabs-active a {
    height: 44px;
    line-height: 44px;
  }
}
.v65-quickView .v65-quickViewContent .v65-product-tabRightcol {
  float: none;
  width: 100%;
}
.v65-quickView .v65-quickViewContent .v65-wine-specs .v65-product-attributeLabel {
  text-align: right;
  width: 47%;
}

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

.v65-product-addToCart-price {
    font-size: 2em;
    font-weight: normal;
}

@media screen and (max-width: 580px) {
    .v65-product-addToCart-button button {
    height: 3em !important;
    }
}

.v65-product-addToCart-button {
    display: none;
}

section .v65-product-addToCart-price {
    font-size: 1em;
}

@media screen and (min-width: 601px) {
  .v65-product2Up {
    width: 46%;
  }
}
.v65-product2Up .v65-product-photo {
  float: left;
  margin: 0 15px .5em 0;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 520px) {
  .v65-product2Up .v65-product-photo {
    float: none;
  }
}
@media screen and (max-width: 681px) {
.v65-product-photo {
    margin-top: 40px !important;
    }
}

@media screen and (max-width: 580px) {
div.v65-product-addToCart-button > button {
    width: 100% !important;
    }
}


.v65-product2Up .v65-product-addToCart-priceWrapper {
  display: block;
  margin-bottom: 0.5em;
}

.v65-productList {
  font-family: "Libre Baskerville", serif;
}
.v65-productList th {
  background-color: #f8f7f1;
  font-size: 1.2em;
  font-weight: normal;
}
.v65-productList tr.alternatRow {
  background-color: #f8f7f1;
}
.v65-productList tr.alternatRow:hover, .v65-productList tr.alternatRow:active, .v65-productList tr.alternatRow:focus {
  background-color: #f8f7f1;
}
.v65-productList tr:hover, .v65-productList tr:active, .v65-productList tr:focus {
  background-color: #eeeeee;
}
.v65-productList .v65-product-addToCart-quantity input {
  margin-bottom: 0.5em;
}

.v65-product-addToCart-quantity{
    display: none;
}

.v65-product-availability, .v65-product-inventoryMessage {
  color: #222222;
}

.v65-product-attributeLabel,
.v65-wine-specs .v65-product-attributeLabel,
.v65-product-reviewStats strong {
  font-weight: 300;
}

.v65-product-reviewStats {
    display: none;
}

.v65-product-drilldownLink {
    display: contents !important;
}

.v65-product-drilldownLink a {
    text-decoration: underline !important;
}

.v65-productWrapper h1 {
  text-align: left;
  width: 100%;
}

.v65-productWrapper {
  padding-top: ;
  margin: auto;
  padding: 0em;
}

@media screen and (min-width: 1200px) {
.v65-productWrapper {
  padding-top: 12rem !important;
    }
}

@media screen and (min-width: 680px) {
.v65-productWrapper {
  padding-top: 6rem !important;
    }
}


@media screen and (min-width: 1150px) {
    div.v65-product-leftCol {
    width: 45% !important;
    }
}

@media screen and (min-width: 1150px) {
    div.v65-product-rightCol {
    width: 40% !important;
    float: left !important;
    margin-right: 0px;
    margin-left: 0px;
    }
}

.productDetails {
  float: left;
  padding: 2em 0;
  margin: 2em 0;
  width: 100%;
}

@media screen and (min-width: 681px) {
  .v65-wine-profile,
.v65-wine-specs {
    float: left;
  }
}

@media screen and (min-width: 681px) {
  .v65-wine-specs {
    width: 60%;
    display: none;
  }
}
@media screen and (max-width: 680px) {
  .v65-wine-specs {
display: none;
  }
}
.v65-wine-specs .v65-product-attributeLabel {
  text-align: left;
  width: auto;
}

.v65-wine-profile {
  margin-bottom: 0;
}
@media screen and (min-width: 681px) {
  .v65-wine-profile {
    width: 56%;
  }
}
@media screen and (max-width: 680px) {
  .v65-wine-profile {
    padding: 1em;
  }
}

/*label.v65-quantity-label{
	display: block;
}

input.v65-quantity-box, input#v65-quantity-box{
	margin-top:1rem;
}*/
#v65-cartTable {
  font-family: "Libre Baskerville", serif;
}
@media screen and (max-width: 580px) {
  #v65-cartTable {
    font-size: 0.9em;
  }
}

.v65-product-volumeBasePricing{
    font-size: 1em;
}

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

td.v65-cartItemDescription {
  font-family: "Libre Baskerville", serif;
}
td.v65-cartItemDescription a {
  color: #000;
}

td.v65-cartItemDescription strong {
  color: #000;
  font-family: "Libre Baskerville", serif;
  font-size: 1em;
  font-weight: 300;
}
@media screen and (max-width: 400px) {
  td.v65-cartItemDescription strong {
    font-size: 1em;
  }
}

@media screen and (max-width: 400px) {
  span.v65-cartItemDescription-sku .small {
    font-size: 0.75em;
  }
}

#v65-modalCartTable td.left {
    padding-left: 0px !important;
}

#v65-cartTable th {
  background-color: #fff;
  border-bottom: 2px solid #eeeeee;
  border-top: 1px solid #eeeeee;
  font-weight: 400;
}

#v65-cartTable td {
  padding: 1em 0em;
}
@media screen and (max-width: 400px) {
  #v65-cartTable td {
    padding: 1em 0;
  }
}

.v65-cartItem td {
  border-top: 1px solid #eeeeee;
}

#v65-cartSubtotal td {
  background-color: #fff;
  border-top: 2px solid #eeeeee;
  font-weight: 400;
  padding: 1em 0;
}

.v65-cartTax td {
  background-color: #fff;
  border-bottom: 1px solid #eeeeee;
  padding: 1em 0 !important;
}

#v65-cartTotal td {
  background-color: #fff;
  border-bottom: 1px solid #eeeeee;
  padding: 1em 0.3em;
}

td.v65-cartItemPrice,
td.v65-cartItemTotal,
#v65-cartTable .v65-cartItemInStock,
.v65-cartSubtotal-6,
.v65-cartTotal-6,
.v65-cartTotal-5,
.v65-cartSubtotal-5,
.v65-cartSubtotal-6,
.v65-cartSubtotal-5,
.v65-cartTax-5 {
  color: #000;
  font-weight: 300;
}

#v65-modalCartBody {
  background-color: #fff;
  font-family: "Libre Baskerville", serif;
  padding: 1em 2em 1em 2em;
  max-width: ;
  font-size: 1em !important;
}

@media screen and (min-width: 581px) {
#v65-modalCartBody {
  width: 440px !important;
  font-size: 1em !important;
    }
}

@media screen and (min-width: 900px) {
#v65-modalCartBody {
  width: 660px !important;
  font-size: 1em !important;
    }
}


#v65-modalCartTable tr {
    width: 100% !important;
}

@media screen and (min-width: 580px) {
#v65-modalCartBody > p {
    padding: 12px 0px 12px 0px;
    }
}

#v65-modalCartBody p.right {
    margin-bottom: 0px !important;
}

#v65-modalCartDropdown {
  border: 1px solid #d4d4d4;
  width: auto !important;
}

#v65-modalCartTable th {
  background-color: #fff;
  border-bottom: 1px solid #ccc !important;
  border: 0;
  padding: 12px 0em 12px 0em;
  font-family: "Libre Baskerville", serif;
  font-weight: 300;
  font-size: 1rem !important;
}

#v65-modalCartTable tr {
    width: 100% !important;
}

#v65-modalCartTable strong {
  font-family: "Libre Baskerville", serif;
  font-weight: 300;
}

#v65-modalCartTableSubtotal td {
  background-color: #fff;
  border-bottom: 1px solid #ccc !important;
  border-top: 1px solid #ccc !important;
}

#v65-modalCartTable td {
  border: 0;
  font-size: 1rem !important;
  font-family: "Libre Baskerville", serif;
  padding: 12px 0px 12px 6px;
}

#v65-modalCartTable td.center.bold {
    border-bottom: none !important;
}

#v65-modalCartTable td.center.bold {
  font-weight: 300;
}

#v65-modalCartTableSubtotal td {
  font-weight: 300;
}

#v65-checkoutFormWrapper strong, #v65-checkoutFormWrapper .bold {
  font-weight: normal;
}

.v65-product-addToCart-priceWrapper {
  font-size: 1rem;
}

#v65-pointsGainedOnOrder {
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc;
  margin: 0.5em 0 1em;
  font-size: 1em;
  padding: 0.5em 0;
}
#v65-pointsGainedOnOrder p {
  margin: 0;
}

#v65-checkoutCartSummaryMini,
#v65-checkCartSummaryMoreOptions {
  float: none;
  width: 100%;
}
#v65-checkoutCartSummaryMini td,
#v65-checkCartSummaryMoreOptions td {
  font-size: 13px;
}

#v65-couponFormWrapper div,
#v65-giftCardFormWrapper div,
#v65-loyaltyPointsFormWrapper div {
  font-family: "Libre Baskerville", serif;
  font-size: 12px;
}

#v65-loyaltyPointsFormWrapper div.v65-loyaltyPointsInputBox,
#v65-loyaltyPointsFormWrapper div.v65-loyaltyPointsDollarValue {
  padding: 0 0 10px 0;
  margin-right: 3%;
}
@media screen and (max-width: 450px) {
  #v65-loyaltyPointsFormWrapper div.v65-loyaltyPointsInputBox,
#v65-loyaltyPointsFormWrapper div.v65-loyaltyPointsDollarValue {
    width: 47%;
  }
}

@media screen and (max-width: 450px) {
  #v65-loyaltyPointsFormWrapper button.modalBtn {
    clear: left;
    display: block;
  }
}
#v65-loyaltyPointsFormWrapper input {
  box-sizing: border-box;
  width: 100%;
}

@media screen and (orientation: landscape) and (max-device-width: 700px) {
  #v65-modalContentWrapper {
    left: 0%;
    top: 0%;
    margin: 0;
    width: 100%;
    border: none;
  }
    
    .v65-modalContentWrapper {
    border: 2px solid #222 !important;
    background-color: #f8f7f1 !important;
    }
    
    .v65-modalContent {
    padding: 18px;
    background-color: #f8f7f1;
    margin: 0;
    overflow: auto;
    overflow-y: auto !important;
    border: 2px solid;
    }

  #v65-modalContent p {
    font-size: .8em;
  }

  
#v65-modalContainer {
    overflow-y: auto !important;
    overflow: auto !important;
    }
    
#v65-modalContent p {
    font-size: .75em;
    line-height: 1.25em;
}    
    

  .v65-form {
    width: 50%;
    float: left;
    margin-right: 2%;
    
  }

  .v65-form input[type=text], .v65-form input[type=password] {
    width: 90% !important;
  }
}
label.v65-quantity-label {
  display: inline;
}

input.v65-quantity-box, input#v65-quantity-box, #v65-subsku-quantity-box {
    margin-top: .5rem;
    border-radius: 50px;
    min-width: 6rem;
    max-width: 100%;
    min-height: 3rem;
}

.v65-subskulabel {
  display: block;
}

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

/*   ===================================================================================================
     5. Blog
======================================================================================================== */
@media screen and (min-width: 581px) {
  .blogContent {
    float: left;
  }
}
@media screen and (min-width: 768px) {
  .blogContent {
    padding: 4% 4% 0 0;
    width: 75%;
  }
}
.blogContent .v65-product-pagination, .blogContent .v65-Paging {
  width: 100%;
}

.v65-avatar img {
  border: 0;
  -ms-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.v65-blogPostWrapper {
  border-bottom: 1px solid #eee;
  margin-bottom: 3em;
}

.v65-blogPost {
  margin-left: 0;
  padding-bottom: 5px;
}
.v65-blogPost .v65-blogPostDate {
  color: #5d5d5d;
  font-family: "Libre Baskerville", serif;
  text-align: center;
}
.v65-blogPost .v65-blogPostDate a {
  color: #5d5d5d;
  font-weight: bold;
}
.v65-blogPost h1 {
  letter-spacing: 0;
  margin-bottom: 2em;
  text-align: center;
}
@media screen and (min-width: 581px) {
  .v65-blogPost h1 {
    padding: 0 2em;
  }
}
.v65-blogPost h2 {
  margin-bottom: 2em;
  text-align: center;
}
@media screen and (min-width: 581px) {
  .v65-blogPost h2 {
    padding: 0 2em;
  }
}

@media screen and (min-width: 581px) {
  .blogFilterWrapper {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .blogFilterWrapper {
    float: right;
    padding-top: 7%;
    width: 20%;
  }
}
.blogFilterWrapper ul {
  list-style: none;
  padding: 0;
}
.blogFilterWrapper li {
  font-size: 11px;
  margin: 0 0 0 10px;
}
.blogFilterWrapper h5 {
  font-family: "Libre Baskerville", serif;
}
.blogFilterWrapper strong, .blogFilterWrapper .v65-recentEntriesTitle {
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .blogFilterWrapper .blogFilter {
    float: left;
    width: 49%;
  }
}

@media screen and (max-width: 580px), (min-width: 768px) {
  .blogFilterLeft {
    padding-right: 4%;
  }
}

.v65-blogFooterDate,
.v65-blogFooterComments,
.v65-blogFooterLink {
  color: #5d5d5d;
  font-size: 1.1em;
}
.v65-blogFooterDate img,
.v65-blogFooterComments img,
.v65-blogFooterLink img {
  display: none;
}

.v65-blogFooterDate:before,
.v65-blogFooterLink:before,
.v65-blogFooterComments:before {
  font-family: "icomoon";
}

.v65-blogFooterDate:before {
  content: "";
}

.v65-blogFooterLink:before {
  content: "";
}

.v65-blogFooterComments:before {
  content: "";
}

/*   ===================================================================================================
     6. Buttons
======================================================================================================== */
button {
  font-family: "Libre Baskerville", serif;
}
button span {
  padding: 0 1.5em;
}
@media screen and (max-width: 580px) {
  button span {
    padding: 0 0.7em;
  }
}
@media screen and (min-width: 581px) {
  button {
    line-height: 3rem;
  }
}
@media screen and (max-width: 580px) {
  button {
    min-height: 3rem;
    line-height: 3rem;
    height: 3em;
  }
}

@media screen and (min-width: 581px) {
button.defaultBtn, button.modalBtn, button.largeBtn {
    height: 3em !important;
    }
}

button.defaultBtn, button.modalBtn, button.largeBtn {
  background: #222;
  font-family: "Libre Baskerville", serif;
  font-size: 1rem;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  border-radius: 50px;
  min-height: 3rem;
  margin: 10px 0px 10px 0px;
}

button.defaultBtn span, button.modalBtn span, button.largeBtn span {
  background: none;
  height: auto;
  line-height: inherit;
  font-weight: normal !important;
}
button.defaultBtn:hover, button.defaultBtn:active, button.modalBtn:hover, button.modalBtn:active, button.largeBtn:hover, button.largeBtn:active {
  background: #555;
}
@media screen and (min-width: 581px) {
  button.modalBtn, button.altModalBtn {
    height: 2em;
    line-height: inherit;
  }
}
button.altBtn, button.altModalBtn, button.altLargeBtn {
  background: #555555;
  font-family: "Libre Baskerville", serif;
  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: #434343;
}

#v65-loginForm button {
    height: 3em !important;
}

a span {
  padding: ;
  height: auto;
  line-height: inherit;
}

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

@media screen and (max-width: 580px) {
#v65-modalContentHeader a.modalLinkBtnW {
    max-width: 96%;
    }
}


a.linkBtn, a.largeLinkBtn {
  background: #222;
  font-family: "Libre Baskerville", serif;
  font-size: 1em !important;
  font-style: normal !important;
  text-decoration: none;
  vertical-align: middle;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  border-radius: 50px;
  height: 3rem;
  line-height: 3rem;
  padding: 0 2rem;
  margin: 1.5rem 0rem 1rem 0rem;
  color: #fff;
}

a.linkBtnW, a.largeLinkBtnW {
  background: #f8f7f1;
  font-family: "Libre Baskerville", serif;
  font-size: 1em !important;
  font-style: normal !important;
  text-decoration: none;
  vertical-align: middle;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  border-radius: 50px;
  height: 3rem;
  line-height: 3rem;
  padding: 1rem 2rem;
  margin: 1rem 0rem 1rem 0rem;
  color: #222;
}

a.modalLinkBtn {
  background: #222;
  font-family: "Libre Baskerville", serif;
  text-decoration: none;
  vertical-align: middle;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  border-radius: 50px;
  height: 3rem;
  line-height: 3rem;
  padding: 0 2rem;
}
a.linkBtn span, a.modalLinkBtn span, a.largeLinkBtn span {
  background: none;
  height: auto;
  line-height: inherit;
}

a.linkBtn:hover, a.linkBtn:active, a.modalLinkBtn:hover, a.modalLinkBtn:active, a.largeLinkBtn:hover, a.largeLinkBtn:active {
  background: #555555;
}
a.linkAltBtn {
  background: #555555;
  font-family: "Libre Baskerville", serif;
  text-decoration: none;
  vertical-align: middle;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  border-radius: 50px;
  height: 1.5rem;
  line-height: 1.5rem;
  padding: 0 1.25rem;
}
a.linkAltBtn span {
  background: none;
  height: auto;
  line-height: inherit;
}
a.linkAltBtn:hover, a.linkAltBtn:active {
  background: #434343;
}
a.modalLinkBtn {
  min-width: auto;
  height: 2rem;
  line-height: 2rem;
  padding: 0 1.5rem;
}

a.modalLinkBtnW {
  min-width: auto;
  height: 2rem;
  line-height: 2rem;
  padding: 0 1.5rem;
}

#v65-modalCartTable img {
    display: none !important;
}

a.modalLinkAltBtn {
    height: 2em;
    line-height: 2rem;
    background-color: #222;
    font-size: 1em;
    border-radius: 50px;
    color: #fff !important;
    height: 2rem;
    padding: 0 1.5rem;
}

a.modalLinkAltBtn:hover {
    height: 2em;
    line-height: 2rem;
    background-color: #999
    font-size: 1em;
    border-radius: 50px;
    color: #fff !important;
    height: 2rem;
    padding: 0 1.5rem;
}

a.modalLinkAltBtn span {
    color: #fff !important;
    font-size: .8em;
    height: auto;
}

a.modalLinkAltBtn span:hover {
    color: #fff !important;
    font-size: .8em;
    height: auto;
}

@media screen and (max-width: 960px) {
button.mobileMenu.icon-mobile {
  height: 1.2em;
  background: none;
  position: fixed;
  left: 26px;
  top: 36px;
  margin-top: 40px;
    }
}

@media screen and (max-width: 580px) {
button.mobileMenu.icon-mobile {
  height: 1.2em;
  background: none;
  position: fixed;
  left: 32px;
  top: 16px;
  margin-top: 40px;
    }
}
/* Cart Buttons */
#v65-cartHeader button.defaultBtn, #v65-cartHeader button.modalBtn, #v65-cartHeader button.largeBtn, td.v65-cartItemAmount button.defaultBtn, td.v65-cartItemAmount button.modalBtn, td.v65-cartItemAmount button.largeBtn {
  background: #ae9934;
}
#v65-cartHeader button.defaultBtn:hover, #v65-cartHeader button.defaultBtn:active, #v65-cartHeader button.modalBtn:hover, #v65-cartHeader button.modalBtn:active, #v65-cartHeader button.largeBtn:hover, #v65-cartHeader button.largeBtn:active, td.v65-cartItemAmount button.defaultBtn:hover, td.v65-cartItemAmount button.defaultBtn:active, td.v65-cartItemAmount button.modalBtn:hover, td.v65-cartItemAmount button.modalBtn:active, td.v65-cartItemAmount button.largeBtn:hover, td.v65-cartItemAmount button.largeBtn:active {
  background: #93812c;
}

/*   ===================================================================================================
     7. Footer
======================================================================================================== */
footer {
  text-align: center;
  width: 100%;
  background-color: #222;
  margin-top: auto;
}
footer ul {
  list-style: none;
  padding: 0;
}
@media screen and (min-width: 768px) {
  footer ul {
    margin-bottom: 0.5em;
  }
}
@media screen and (max-width: 767px) {
  footer li {
    line-height: 32px;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  footer li {
    display: inline;
  }
}
@media screen and (max-width: 767px) {
  footer li:first-child {
    border: 0;
  }
}
footer li a {
    display: inline-block;
    font-size: 1rem;
    position: relative;
    font-family: "Libre Baskerville", serif;
    padding: 0em 1em;
}
@media screen and (max-width: 767px) {
  footer li a {
    width: 100%;
  }
}
footer .subscribeSection {
  background-color: #191919;
  padding: 4rem 0rem 1rem 0rem;
  display: ;
}

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

footer .subscribeSection h1 {
  color: #fff;
}

footer .v65-pod {
    color: #eee !important;
}

footer .subscribeSection div#v65-subscribeWidget {
  color: #fff;
}
footer .subscribeSection div#v65-subscribeWidget form {
  display: -webkit-box;
  display: -ms-flexbox;

  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
}
footer .subscribeSection div#v65-subscribeWidget form button {
  margin-left: 4px;
}
footer #v65-subscribeWidget input {
  background-color: transparent;
  color: white;
}
@media screen and (min-width: 420px) {
  footer #v65-subscribeWidget input {
    width: 300px;
    margin-right: 20px;
  }
}
footer .v65-socialMediaLinks {
  background-color: #191919;
  padding: 4em 0em 0em 0em !important;
  display: none;
}
footer .v65-socialMediaLinks a {
  color: #fff;
  font-size: 1em;
}
footer .v65-socialMediaLinks a:hover, footer .v65-socialMediaLinks a:focus, footer .v65-socialMediaLinks a:active {
  color: #ccc;
  text-decoration: none;
}
footer .v65-socialMediaLinks ul {
  margin-bottom: 0;
}
footer .v65-socialMediaLinks li {
  border: 0;
  display: inline-block;
  font-size: 2em;
  padding: 0.2em 0.5em;
  margin: 0 !important;
}
footer .footerBottom {
  color: #C3C3C3;
  font-family: "Libre Baskerville", serif;
  padding-bottom: 1em;
}
footer .footerBottom nav {
}

@media screen and (max-width: 580px) {
    footer .footerBottom a {
  color: #999;
  font-size: 1em !important;
    }
}
    
    
footer .footerBottom a {
  color: #999;
  font-size: 1em;
}
footer .footerBottom a:hover, footer .footerBottom a:focus, footer .footerBottom a:active {
  color: #fff;
  text-decoration: none;
}
footer .legal {
  color: #999;
  font-size: 0.75em;
  font-family: "Libre Baskerville", serif;
  display: ;
}
footer .legal li {
  border: 0;
  display: none;
}
footer .legal a {
  color: #949494;
}
footer .legal a:hover {
  color: #d4d4d4;
}
/*# sourceMappingURL=screen.min.css.map */



/*CUSTOM ADDED CSS*/
.v65-productAddToCart-drilldown {
    margin-bottom: 2.5em;
}

fieldset {

}

.v65-product-subtitle.v65-subtitle {
    font-size: 1rem;
    line-height: 2rem;
    letter-spacing: 0;
    padding-top: 1rem;
    text-transform: none;
    max-width: 800px;
    
}

@media screen and (min-width: 1150px) {
    .v65-product-description {
        max-width: 420px !important;
    }
}

@media screen and (min-width: 1150px) {
    .v65-product-description p {
   -moz-break-inside: avoid-column;
	-webkit-break-inside: avoid-column;
	break-inside: avoid-column;
	-moz-column-fill: balance;
	-webkit-column-fill: balance;
	column-fill: balance;
    }
}

.v65-product-description p {

    }

.v65-wine-vintage .v65-product-attribute {

}

.v65-wine-specs-title.v65-title {
    font-size: 1.8rem;
    padding-bottom: 2rem;
}

.v65-product-attributeLabel {
    font-size: 1rem;
    text-transform: uppercase
}

.v65-product-attributeValue {
    font-size: 1rem;
}

.v65-home {
    display: ;
  }

@media screen and (min-width: 1000px) {
article.page h1 {
    font-size: 4.25rem;
    line-height: 5rem;
    margin: .75em 0em .75em 0em;
    text-align: left;
    max-width: 1200px;
    text-transform: lowercase;
    }
}

article.page h1 {
    text-transform: lowercase;
    }

input[type=checkbox] {
    vertical-align: middle !important;
}


#v65-memberFormWrapper input[type=checkbox] {
margin: 0.3em 0.6em 0 0em !important;
}

#v65-memberFormWrapper input:not([type="checkbox"]) {
    min-width: 95% !important;
    color: #999;
    background-color: #f8f7f1;
    border: 1px solid #222;
}

.v65-form textarea, .v65-form select {
    height: 40px;
    max-height: ;
    font-family: "Libre Baskerville", serif;
    border: 1px solid #222 !important;
    color: #222;
    border-radius: none;
    background-color: #f8f7f1;
    width: 600px !important;
    max-width: 94%;
    padding: 0px 0px 0px 12px;
    border-radius: 0px !important;
    min-width: 95%;
}

@media screen and (max-width: 899px) {
    .v65-form textarea, .v65-form select { 
    width: 300px !important;
    }
}

.v65-form .v65-clubChoices-select {
    width: 80px !important;
    padding: 0px 0px 0px 12px;
    border-radius: 0px !important;
}

@media screen and (max-width: 581px) {
    .v65-form textarea, .v65-form select { 
    max-width: 92% !important;
    }
}

.v65-form select#shipMemberID {
    width: 400px;
}


@media screen and (min-width: 1151px) {
    .v65-form textarea#Notes, textarea#GiftMessage  {
    width: 800px !important;
    height: 200px !important;
    }
}

@media screen and (max-width: 1150px) {
    .v65-form textarea#Notes, textarea#GiftMessage  {
    width: 600px !important;
    height: 100px !important;
    max-width: 92% !important;
    }
}

#v65-memberFormWrapper div {
    padding: 0px 0px 12px 0px;
}

#v65-memberFormWrapper {
    margin-top: 2rem;
}


#v65-LoginFormWrapper fieldset {
    border: none;
}

#v65-LoginFormWrapper legend {
    font-size: 2rem;
    padding-bottom: 20px;
}

#v65-memberFormWrapper legend {
    font-size: 1.75rem;
    padding-bottom: 1rem;
    letter-spacing: 0px !important;
}

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


.wrapper.v65-product-group {
  display: flex;
  justify-content: center;
     
}

.slick-pause {
    display: none !important;
}

.slick-slide img {
    margin-top: 120px;
    height: 100% !important;
}

label.v65-emailSubscribeWidgetLabel {
    display: ;
}

.v65-podTitle {
text-align: center !important;
margin-bottom: -1rem !important; 
}

#v65-modalCartDropdown .modalLinkBtn {
    display: inline-block;
    text-align: center;
    width: auto;
    font-size: 1em;
}

.pageContent h1 h2 h3 p {
    width: 80%;
}

.HeaderImage {
    margin: 120px 0px 120px 0px !important;
}

.v65-memberClubDescription {
    padding-left: 0px !important;
}

#v65-memberAddressBook {
    margin-bottom: 3rem;
}

#v65-memberAddressBook td {
    padding: 10px 10px;
    font-size: .75rem;
}

#v65-memberAddressBook th {
    text-align: left;
    padding: 10px 10px;
    font-size: .75rem;
}

#v65-memberOrders td, #v65-memberOrders .orderDateRow {
    padding: 10px 0px;
}

@media screen and (min-width: 767px) {
    .v65-col2Right {
    width: 34%;
    }
}

.v65-col2 img, .v65-col2Right img, .v65-col2Left img, .v65-col3 img, .v65-col4 img {
}

@media screen and (min-width: 1150px) {
.v65-col2Left {
    column-count: 2;
    column-gap: 4em;
    }
}

@media screen and (min-width: 767px) {
    .v65-col2Right:first-child {
    width: 60% !important;
    }
}

.v65-col2Right {

}

.headerimage{
    padding-bottom: 2em;
    margin-top: 40px;
}

@media screen and (max-width: 580px) {
    .headerimage  {
    padding-bottom: 0em !important;
    margin-top: 40px;
    }
}

div.v65-product-title.v65-title a {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.page .v65-product-addToCart form {
display:;
}

.v65-product-addToCart form {
    display:;
}

div.v65-product-relatedProducts-product {
    text-align: left !important;
    width: 100% !important;
}

.v65-product-photo {
    text-align: left !important;
    margin: 0px 0px 12px 0px;
    overflow: hidden;
}		

div.v65-product-relatedProducts-title.v65-title {
    font-size: 3rem !important;
    line-height: 3.75rem !important;
    margin-bottom: 1rem;
    position: absolute;
    margin: -72px 8px;
}

div.v65-product-relatedProducts.v65-group {
    display: ;
}

.v65-form fieldset {
    display: block;
    padding: 0;
    margin: 1em 0 1em 0;
    border: none;
}

#v65-memberFormWrapper fieldset {
    border: none !important;
}

#v65-memberFormWrapper span {
    display: contents !important;
}

#v65-memberFormWrapper > form > button {
    min-width: 220px;
}


.v65-form legend {
    font-size: 1.75em !important;
    padding: .25em 0em .25em 0em;
}

@media screen and (min-width: 900px) {
.v65-form input[type=text], .v65-form input[type=password], .v65-form input[type=username] {
    width: 600px !important;
    max-width: 94% !important;
    }
}


.v65-form input[type=text], .v65-form input[type=password], .v65-form input[type=username] {
    background-color: #f8f7f1;
    border: solid 1px #222;
    }

@media screen and (max-width: 899px) {
.v65-form input[type=text], .v65-form input[type=password], .v65-form input[type=username] {
    width: 300px !important;
    max-width: 94% !important;
    }
}

@media screen and (max-width: 580px) {
    input[type=text], input[type=password], input[type=username], input[type=tel], input[type=email] {
        border: 1px solid #eee;
        line-height: 2.5em;
        height: 2.5em;
    }
}

@media screen and (max-width: 580px){
#v65-loginForm input[type=text] {
    width: 95% !important;
    margin: auto !important;
    }
}

.v65-form {
    width: auto !important;
}

.v65-form label{
    font-size: ;
    color: #222;
    margin-bottom: .25em;
}

.v65-form button[type=submit] {
    min-width: 160px;
    color: #fff !important;
}

.v65-form button[type=submit] {
    margin-top: 10px !important;
}

.centertext {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

#strengthMeter {
    display: none;
}

.v65-form fieldset div {
  padding: 8px 0px 8px 0px;
}

section div.v65-product-attributeLabel {
    display: none;
}

section input.v65-quantity-box, input#v65-quantity-box, #v65-subsku-quantity-box, label.v65-quantity-label {
    display: none;
}

section div.v65-product-addToCart > form > fieldset > div.v65-product-addToCart-button > button {
    display: none;
}

.v65-product-relatedProducts .v65-product-photo img {
    width: 100% !important;
    max-width: 100% !important;
}

div.v65-product-relatedProducts-product {
    text-align: left !important;
    width: 42% !important;
    padding: 10px;
}

div.v65-product-relatedProducts button.defaultBtn {
    display: none;
}

div.v65-product-relatedProducts button.defaultBtn {
    display: none;
}

div.v65-product-relatedProducts .v65-quantity-box {
    display: none;
}

div.v65-product-relatedProducts .v65-product-addToCart-price {
    font-size: 1em;
}

#v65-cartHeaderQty {
    border-top: none;
}

.slick-dots {
    margin: 0px auto 12px auto !important;
}

@media screen and (max-width: 581px) {
    .slick-dots {
        display: none !important;
    }
}

@media screen and (min-width: 961px) {
    section.content.homepageContent.v65-group > div > p.headerimage {
    padding-bottom: 0em !important;
    padding-top: 40px !important;
    }
}

section.content.homepageContent.v65-group > div > p.headerimage {
    padding-bottom: 0em !important;
    padding-top: 0px;
}


.v65-calendarList-Event .v65-title {
    font-size: 4em;
    line-height: 1.25em;
    }

@media screen and (max-width: 767px) {
.v65-calendarList-Event .v65-title {
    font-size: 2em;
    line-height: 1.2em;
    }
}

.v65-calendarList-Event {
    padding-left: 0px !important;
}

span.v65-calendarList-Title.v65-title br {
    display: none;
} 

#v65-loginForm fieldset button span {
    display: block;
}

.v65-login, .v65-logout {
    display: ;
}

@media screen and (max-width: 580px) {
.v65-yourAccount, .v65-editProfile {
    display: none !important;
    }
}

#v65-cartHeaderItem {
    visibility: hidden;
}

@media screen and (max-width: 580px) {
#v65-modalCart #v65-toggleModalCart {
    margin: 1.25em 2.4em 0em 0em;
    box-sizing: border-box;
    display: inline-block;
    line-height: 1.2em;
    text-align: center;
    vertical-align: middle;
    width: 25% !important;
    font-size: .75em;
    }
}

@media screen and (max-width: 960px) {
#v65-modalCart #v65-toggleModalCart {
    margin: ;
    box-sizing: border-box;
    display: inline-block;
    line-height: 1.2em;
    text-align: center;
    vertical-align: middle;
    width: 40%;
    font-size: .75em;
    }
}

v65-cartHeaderDescription {
    font-size: 1em;
}

@media screen and (max-width: 580px) {
    #v65-toggleModalCart {
        
    }
}


/*
*
* ==========================================
* CUSTOM UTIL CLASSES
* ==========================================
*
*/
/* Horizontal line */
.collapsible-link::before {
  content: '';
  width: 14px;
  height: 2px;
  background: #333;
  position: absolute;
  top: calc(50% - 1px);
  right: 1rem;
  display: block;
  transition: all 0.3s;
}

/* Vertical line */
.collapsible-link::after {
  content: '';
  width: 2px;
  height: 14px;
  background: #333;
  position: absolute;
  top: calc(50% - 7px);
  right: calc(1rem + 6px);
  display: block;
  transition: all 0.3s;
}

.collapsible-link[aria-expanded='true']::after {
  transform: rotate(90deg) translateX(-1px);
}

.collapsible-link[aria-expanded='true']::before {
  transform: rotate(180deg);
}

#accordionExample {
    background-color: rgba(0,0,0,0) !important;
    background: rgba(0,0,0,0) !important;
}

#accordionExample .card {
    background-color: rgba(0,0,0,0) !important;
    background: rgba(0,0,0,0) !important;
    border: none;
    border-bottom: 1px solid #222;
    border-radius: 0px !important;
}

#accordionExample .bg-white {
    background-color: rgba(0,0,0,0) !important;
    background: rgba(0,0,0,0) !important;
}

.shadow {
    box-shadow: none !important;
}

#accordionExample .text-uppercase {
    text-transform: none !important;
    font-weight: 300 !important;
    font-size: 2em;
    line-height: 1.5em;
    margin: 24px 0px 24px 0px;
    padding: 0em 2em 0em 0em;
}

#accordionExample .shadow-sm {
    box-shadow: none !important;
}

@media (min-width: 992px) {
.col-lg-9 {
   max-width: 100% !important;
   padding-right: 0px !important;
   padding-left: 0px !important;
    }
}

@media (max-width: 991px) {
.col-lg-9 {
   max-width: 100% !important;
   padding-right: 0px !important;
   padding-left: 0px !important;
    }
}

.v65-product-description .row {
    display: block !important;
    margin-right: 0px !important;
    margin-left: 0px !important;
}

.row {
    display: inline-block;
    margin-left: 0px;
    width: 100%;
}

.accordion>.card .card-header {
    padding: 0px;
}

.p-5 {
    padding: 0em 3em 2.5em 0em !important;
}

#mainContent > div > div > div.v65-product-rightCol > div.v65-product-description > div > div {
    padding-right: 0px !important;
    padding-left: 0px !important;
}



/*   ===================================================================================================
     8. Accordian Bootstrap
======================================================================================================== */
.panel-group {
  margin-bottom: 0;
}
.panel-group .panel {
  border-radius: 0;
  box-shadow: none;
  border-bottom: 1px solid #222;
  padding: .5em 0em 1em 0em;
}
.panel-group .panel .panel-heading {
  padding: ;
}
.panel-group .panel .panel-heading h4 a {
  background: #f8f7f1;
  color: #222;
  display: block;
  font-size: 1.5em;
  line-height: 1.5em;
  font-weight: normal;
  text-align: left;
  padding: 1.5em 0em .5em 0em;
  text-decoration: none;
  transition: 0.15s all ease-in-out;
}

.panel-group .panel .panel-heading h4 a:hover {
  color: #999;
}

.panel-group .panel .panel-heading h4 a:hover, .panel-group .panel .panel-heading h4 a:not(.collapsed) {
  background: #f8f7f1;
  transition: 0.15s all ease-in-out;
  text-align: left;
}
.panel-group .panel .panel-heading h4 a:not(.collapsed) i:before {
  content: "";
}

.panel-group .panel .panel-heading h4 a i {
  color: #222;
}

.panel-group .panel .panel-heading h4 a {
  transition: 0.15s all ease-in-out
        
        &:hover, &:not(.collapsed)
          background: #fff
          transition: 0.15s all ease-in-out
        
        &:not(.collapsed) i:before
          content: "\f068"
        
        i
          color: #999
}

.panel-group .panel .panel-body {
  padding-top: 0;
}
.panel-group .panel .panel-heading + .panel-collapse > .list-group,
.panel-group .panel .panel-heading + .panel-collapse > .panel-body {
  border-top: none;
}
.panel-group .panel + .panel {
  border-top: none;
  margin-top: 0;
  padding: 0em 0em 1em 0em;
}
.container {
    padding-right: 0px;
    padding-left: 0px;
    max-width: 900px;
}




/*   ===================================================================================================
     8. Accordian
======================================================================================================== */

.v65-clubChoicesProductTitle {
    font-size: 1rem;
    padding-bottom: 0px !important;
}

.v65-clubChoicesProduct {
    float: none;
        width: 50%;
    padding: .5em !important;
}

.v65-clubProductImageWrapper {
    height: auto !important ;
    width: 320px !important;
}

#v65-fieldset-choices div.v65-clubChoicesProductsWrapper em {
    font-size: 1rem;
}

.v65-form fieldset div.v65-clubChoices-title, .v65-clubChoices-title {
    font-size: 3rem;
    line-height: 4rem;
    padding: 0em 0em .5em 0em;
    text-transform: lowercase;
}

element.style {
    font-size: 1em !important;
}

#v65-fieldset-choices div.v65-clubChoicesProductsWrapper {
    font-size: 1rem !important;
}

.v65-price v65-salePrice {
    font-size: 1.25rem !important;
}

.v65-clubSubtotalWrapper {
    font-size: 1.25rem !important;
    font-weight: normal;
    border: 1px solid #222;
    padding: 1em !important;
}

.clubSubtotal {
    font-weight: bold;
}

.clubSavings {
    color: #999 !important;
}

div.v65-clubSummary {
    padding: 1.5em 1.5em !important;
}

#v65-fieldset-choices > div > div.v65-clubChoicesDescription {
    font-size: 1rem !important;
    display: table;
    padding: 2em 1em 0.5em 1em !important;
}

#v65-fieldset-choices > div > div.v65-clubSelectedItemCountWrapper {
    font-size: 1.25rem !important;
    font-weight: normal;
    border: 1px solid #222;
    padding: 1em !important;
    margin: 0em 0em 2em 0em;
}

#v65-checkBilling legend {
    letter-spacing: 0px;
    text-transform: lowercase;
}

#v65-fieldset-choices div.v65-clubChoicesProductsWrapper span.v65-price.v65-salePrice {
    color: #222 !important;
}

@media screen and (min-width: 580px) {
#v65-checkBilling {
    padding: 2em 2em !important;
    }
}

#v65-checkBilling {
    padding: 1em 1.5em 2em 1.5em;
    margin-top: 4em;
    border: 1px solid #222;
    width: 900px !important;
    max-width: 100%
}

div.v65-productAddToCart-drilldown fieldset .v65-product-addToCart-button {
    display: none;
}

div.v65-productAddToCart-drilldown fieldset .v65-quantity-box {
    display: none;
}

.v65-productWrapper .v65-product-rightCol .v65-product-teaser {
    margin-bottom: 0em;
}

@media screen and (max-width: 580px) {
    .v65-productWrapper .v65-product-addToCart .v65-addToCart {
    border-top: none;
    border-bottom: none;
    }
}

@media screen and (max-width: 850px) {
    #v65-CalendarWrapper {
        display: none !important;
    }
}



.vs-add-to-cart .vs-add-to-cart-select select {
    color: #222;
    background-color: #fff0 !important;
    background-image: var(--vs-atc-select-background-image, url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27%3e%3cpath fill=%27none%27 stroke=%27%23343a40%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%272%27 d=%27m2 5 6 6 6-6%27/%3e%3c/svg%3e"));
    background-repeat: no-repeat;
    background-position: var(--vs-atc-select-background-position, right 0.75rem center);
    background-size: var(--vs-atc-select-background-size, 16px 12px);
    border-width: var(--vs-atc-select-border-width, 1px);
    border-style: var(--vs-atc-select-border-style, solid);
    border-color: #222 !important;
    box-shadow: none;
    transition: var(--vs-atc-select-transition, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out);
    appearance: none;
    border-radius: 4em !important;
    width: 8em !important;
    height: 3em !important;
    cursor: pointer;
    
    /* Focus */
  --vs-atc-select-focus-color: #222;
  --vs-atc-select-focus-background-color: #fff0;
  --vs-atc-select-focus-border-color: #222;
  --vs-atc-select-focus-box-shadow: none;
}
    
    
.vs-add-to-cart .vs-add-to-cart-button {
    padding: var(--vs-atc-button-padding-y, 0.375rem) var(--vs-atc-button-padding-x, 0.75rem);
    font-family: var(--vs-atc-button-font-family, inherit);
    font-size: var(--vs-atc-button-font-size, 1rem);
    font-weight: var(--vs-atc-button-font-weight, 500);
    line-height: var(--vs-atc-button-line-height, 1.5);
    color: var(--vs-atc-button-color, #ffffff);
    text-align: center;
    text-decoration: none;
    white-space: var(--vs-atc-button-white-space, nowrap);
    vertical-align: middle;
    cursor: pointer;
    user-select: none;

    border-radius: 4em !important;
    width: 10em !important;
    height: 3em !important;
    box-shadow: none !important;
    
   
}

.vs-add-to-cart-container {
    padding: 1em 0em 0em 0em;
}

@media screen and (max-width: 680px) {
.vs-add-to-cart-container {
    padding: 1em 0em 1em 0em;
    }
}

.vs-cart-contents {
    font-family: "libre baskerville", serif;
}

.v65-productWrapper .v65-productAddToCart-drilldownActivate {
    background: #fff0;
    border: none;
    opacity: 1;
    margin: 1em 0em 1em 0em;
    position: relative;
    bottom: 0;
    left: 0;
    z-index: 899;
    width: 100%;
    padding: 0em !important;
}

.vs-cart {
    --vs-cart-font-family: "libre baskerville", serif !important;
    --vs-cart-color: #000000;
    --vs-cart-background-color: #ffffff;

    --vs-cart-link-color: #1C6DB0;
    --vs-cart-link-text-decoration: none;
    --vs-cart-link-hover-color: #1C6DB0;
    --vs-cart-link-hover-text-decoration: none;

    --vs-cart-shown-width-max: 400px;
    
    --vs-cart-animation-duration: 0ms;
    --vs-cart-animation-timing-function: ease-in;
    --vs-cart-animation-close-duration: 0ms;
    --vs-cart-animation-close-timing-function: ease-in-out;

    --vs-cart-stage-backdrop-z-index: 1040;
    --vs-cart-stage-backdrop-background-color: rgba(0, 0, 0, 0);
    --vs-cart-stage-z-index: 1045;

    --vs-cart-stage-backdrop-shown-background-color: rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 581px) {
    .v65-productWrapper .v65-productAddToCart-drilldownActivate {
        margin: 1em 0em 6em 0em;
    }
}

.v65-productWrapper .v65-productAddToCart-drilldownActivate .v65-product-addToCart {
    padding: 0em !important;
}

body > footer {
    margin-bottom: 0px !important;
    margin: 0px !important;
}

.v65-footerLegal {
    display: none !important;
}

.v65-vin65Accolade {
    display: none !important;
}

div#tab-shippingBlock {
    display: none !important;
}

a.anchor {
    display: block;
    position: relative;
    top: -300px;
    visibility: hidden;
}


.vs-club-registration {
  --vs-embed-theme: #0d6efd;
  --vs-embed-theme-rgb: 13, 110, 253;
  --vs-embed-theme-hover-opacity: 0.8;

  --bs-body: transparent;
  --bs-body-color: var(--bs-black);
  --bs-heading-color: var(--bs-black);
  --bs-body-font-family: "libre baskerville", serif !important;
  --vs-headings-font-family: "libre baskerville", serif !important;

  --vs-embed-btn-link: var(--vs-embed-theme);
  --vs-embed-btn-link-hover: var(--vs-embed-theme);
  --vs-embed-link-primary: var(--vs-embed-theme);
  --vs-link-decoration: none;
  --vs-link-hover-decoration: underline;

  --vs-radio-selected-background: var(--bs-white);
  --vs-form-control-background-color: var(--bs-white);

  --vs-embed-btn-primary-color: var(--bs-btn-color);
  --vs-embed-btn-primary-bg: var(--bs-btn-bg);
  --vs-embed-btn-primary-border-color: var(--vs-embed-btn-primary-bg);
  --vs-embed-btn-primary-border-radius: var(--bs-btn-border-radius, 2rem);

  --vs-embed-btn-primary-hover-color: var(--bs-btn-hover-color);
  --vs-embed-btn-primary-hover-bg: var(--bs-btn-hover-bg);
  --vs-embed-btn-primary-hover-border-color: var(--bs-btn-hover-border-color);

  --vs-embed-btn-primary-focus-shadow-rgb: none !important;

  --vs-embed-btn-primary-active-color: var(--bs-btn-active-color);
  --vs-embed-btn-primary-active-bg: var(--bs-btn-active-bg);
  --vs-embed-btn-primary-active-border-color: var(--bs-btn-active-border-color);
  --vs-embed-btn-primary-active-shadow: none !important(--bs-btn-active-shadow);

  --vs-embed-btn-primary-disabled-color: var(--bs-btn-disabled-color);
  --vs-embed-btn-primary-disabled-bg: var(--bs-btn-disabled-bg);
  --vs-embed-btn-primary-disabled-border-color: var(--bs-btn-disabled-border-color);

  --vs-alert-primary-color: #000000;
  --vs-alert-primary-bg: #cfe2ff;
  --vs-alert-primary-border-color: var(--vs-alert-primary-bg);
  --vs-alert-primary-icon-bg: var(--vs-embed-theme, #222);
  --vs-alert-primary-icon-fg: #ffffff;
  --bs-alert-margin-bottom: calc(1rem * .5);

  --vs-wells-color: var(--bs-black);
  --vs-wells-heading-color: var(--bs-heading-color, var(--vs-wells-color, #000000));
  --vs-wells-background-color-rgb: 190, 185, 174;
  --vs-wells-bg-opacity: .2;
  --vs-wells-offset-color: var(--bs-body-color);
  --vs-wells-offset-background-color-rgb: 190, 185, 174;
  --vs-wells-offset-bg-opacity: .2;
}

.vs-club-registration {
    scroll-margin-top: 4em !important;
    scroll-padding-top: 4em !important;
}

.well-primary {
    border-top: 8em solid #f8f7f1 !important;
}

v65-colWrapperGroup {
    scroll-margin-top: 4em !important;
    scroll-padding-top: 4em !important;
    
}

div.px-4.py-3.well-primary.rounded {
    border-top: 8em solid #f8f7f1 !important;
}

px-4 py-3 well-primary rounded {
    border-top: 8em solid #f8f7f1 !important;
}

#mainContent > div > div.v65-product2Up.v65-group > div.v65-wine-region.v65-product-attribute > div.v65-product-attributeLabel {
    display: none;
}

.v65-product-attributeValue {
    display: none;
}

.v65-product-actionMessage {
    color: #000;
    margin-bottom: 1em;
    display: contents;
    font-style: italic;
}

/* external css: flickity.css */

* { box-sizing: border-box; }


.carousel {
  background: ;
}

.carousel-cell {
  width: 50%;
  height: 200px;
  margin-right: 10px;
  background: #8C8;
  border-radius: 5px;
  counter-increment: gallery-cell;
}

/* cell number */
.carousel-cell:before {
  display: block;
  text-align: center;
  content: counter(gallery-cell);
  line-height: 200px;
  font-size: 80px;
  color: white;
}

/* position dots in gallery */
.flickity-page-dots {
  bottom: 40px !important;
}
/* white circles */
.flickity-page-dots .dot {
  width: 12px;
  height: 12px;
  opacity: 1;
  background: transparent;
  border: 2px solid white;
}
/* fill-in selected dot */
.flickity-page-dots .dot.is-selected {
  background: white;
}