@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;
}

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

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

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

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

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap;
}

/**
 * Set consistent quote types.
 */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0;
}

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

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

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

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

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: 'icomoon';
  src: url("../font/icomoon.eot?-fevmmm");
  src: url("../font/icomoon.eot?#iefix-fevmmm") format("embedded-opentype"), url("../font/icomoon.woff?-fevmmm") format("woff"), url("../font/icomoon.ttf?-fevmmm") format("truetype"), url("../font/icomoon.svg?-fevmmm#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: "\eada";
}

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

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

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

.icon-mail:before {
  content: "\e60d";
}

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

.icon-user:before {
  content: "\e60f";
}

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

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

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

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

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

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

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

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

.icon-gplus:before {
  content: "\e609";
}

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

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

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

.icon-instagram, .icon-facebook, .icon-twitter, .icon-pinterest, .icon-gplus, .icon-youtube, .icon-vimeo, .icon-yelp {
  font-size: 2em;
}

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

/*   ===================================================================================================
     1. Typography - These get copied into the admin.css
======================================================================================================== */
html {
  font-size: 100%;
}

body {
  background-color: #181818;
  color: #181818;
  font-family: "Source Sans Pro", sans-serif;
  -webkit-font-smoothing: antialiased;
  left: 0;
}

h1, h2, h3, h4, h5, h6 {
  color: black;
  font-family: "Gilda Display", serif;
  font-weight: normal;
  margin: 0;
}

h1 {
  font-size: 2.5em;
  line-height: 1;
  margin-bottom: 1em;
}

h2 {
  font-size: 2.2em;
  line-height: 1.3333333333333333;
  margin-bottom: 1em;
}

h3 {
  font-size: 1.7em;
  line-height: 1;
  margin-bottom: 1em;
}

h4 {
  font-size: 1.3em;
  line-height: 1.1428571428571428;
  margin-bottom: 0.5em;
}

h5 {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.2em;
  line-height: 1.3333333333333333;
  margin-bottom: 0.5em;
}

h6 {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.05em;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 0.5em;
}

.v65-product-title {
  border-bottom: 1px solid #d1cbc1;
}

.v65-title {
  color: black;
  font-family: "Gilda Display", serif;
  font-size: 1.5em;
  font-weight: normal;
  line-height: 1;
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
}
.v65-title a {
  color: black;
}
.v65-title a:hover, .v65-title a:active, .v65-title a:focus {
  color: #1e2828;
}

.v65-subtitle {
  color: black;
  font-size: 1.3em;
  font-family: "Gilda Display", serif;
  font-weight: normal;
  line-height: 1;
  margin-bottom: 1em;
}

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

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

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

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

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

form {
  margin-bottom: 1em;
}

legend {
  color: #181818;
}

hr {
  background-color: #181818;
  border: 0;
  color: #181818;
  height: 1px;
}

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

p a {
  font-weight: bold;
}

*:focus {
  outline: 3px solid orange !important;
}

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

/*   ===================================================================================================
     2. Header
======================================================================================================== */
header.primary {
  min-height: 450px;
  position: relative;
  width: 100%;
  z-index: 10;
}
@media screen and (max-width: 580px) {
  header.primary {
    min-height: 320px;
  }
}

.overlay {
  background: url(../images/overlay-image.png);
  background: rgba(0, 0, 0, 0.35);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

#user-tools {
  font-size: 14px;
  font-family: "Gilda Display", serif;
  width: auto;
}
@media screen and (max-width: 900px) {
  #user-tools {
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 581px) {
  #user-tools {
    height: 2.5em;
    line-height: 2.5em;
  }
}
@media screen and (max-width: 580px) {
  #user-tools {
    background-color: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  }
}
#user-tools a {
  color: white;
}
#user-tools a:hover, #user-tools a:active, #user-tools a:focus {
  text-decoration: none;
  color: #cccccb;
}
#user-tools .v65-editProfile, #user-tools .v65-yourAccount,
#user-tools .v65-login, #user-tools .v65-logout {
  border: 0;
}
@media screen and (min-width: 581px) {
  #user-tools .v65-editProfile, #user-tools .v65-yourAccount,
  #user-tools .v65-login, #user-tools .v65-logout {
    margin-top: 9px;
    width: auto;
  }
}
@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 {
    width: 20%;
  }
}
#user-tools #v65-modalCart {
  position: static;
}
@media screen and (min-width: 581px) {
  #user-tools #v65-modalCart {
    display: inline-block;
    padding-left: 1em;
  }
}

.v65-pointsBalance {
  display: inline-block;
  padding-right: 1em;
}
@media screen and (max-width: 580px) {
  .v65-pointsBalance {
    display: none;
  }
}

.v65-logo {
  margin-top: 40px !important;
  overflow: visible;
}
.v65-logo.errorLogo {
  float: none;
}
@media screen and (min-width: 901px) {
  .v65-logo {
    float: left !important;
    margin-bottom: 0 !important;
  }
}
@media screen and (max-width: 900px) {
  .v65-logo {
    clear: both !important;
    margin: 0em auto 1em !important;
  }
}

.v65-logo a {
  color: transparent;
  font-size: 0;
  display: block;
  height: 100%;
}

/*   ===================================================================================================
     4. Navigation
======================================================================================================== */
/* ----- a. Main Menu ----- */
.mainMenu {
  font-size: 13px;
  position: relative;
  z-index: 101;
}
@media screen and (min-width: 901px) {
  .mainMenu {
    clear: right;
    float: right;
    height: 24px;
    margin: 70px 0 30px;
    min-width: 520px;
  }
}
@media screen and (max-width: 900px) {
  .mainMenu {
    width: 90%;
    margin: 20px auto;
  }
}
@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: 52px;
    left: -100%;
    background-color: #0b0b0b;
    height: 94%;
    height: -moz-calc(100% - 52px);
    height: -webkit-calc(100% - 52px);
    height: calc(100% - 52px);
    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: all 0.25s;
  }
}
.mainMenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
@media screen and (min-width: 901px) {
  .mainMenu ul {
    text-align: right;
  }
}
@media screen and (max-width: 900px) {
  .mainMenu ul {
    text-align: center;
  }
}
.mainMenu ul ul {
  border: 1px solid #cccccb;
  background: white;
  display: none;
  font-size: 12px;
  left: -10px;
  position: absolute;
  top: 32px;
  width: 180px;
}
@media screen and (max-width: 580px) {
  .mainMenu ul ul {
    background-color: #0b0b0b;
    border: 0;
    display: block;
    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 (min-width: 768px) and (max-width: 819px) {
  .mainMenu li {
    margin: 0 0 0 23px;
  }
}
@media screen and (min-width: 820px) {
  .mainMenu li {
    margin: 0 0 0 23px;
  }
}
@media screen and (max-width: 580px) {
  .mainMenu li {
    border-bottom: 1px solid #181818;
    display: block;
    margin: 0;
    padding: 4px 15px;
    text-align: left;
  }
}
@media screen and (max-width: 580px) {
  .mainMenu li:first-child {
    border-top: 1px solid #181818;
    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: 180px;
}
@media screen and (max-width: 580px) {
  .mainMenu li li {
    border-bottom: 0;
    border-top: 1px solid #181818;
    padding: 9px 0;
    width: 100%;
  }
}
.mainMenu li li a {
  border-bottom: 1px solid #f8f8f8;
  color: black;
  display: block;
  height: 32px;
  line-height: 32px;
  margin: 0;
  padding: 0 0 0 10px;
  text-align: left;
  text-transform: none;
  width: 98%;
}
.mainMenu li li a:hover {
  color: #716655;
}
.mainMenu li li a.v65-selected {
  color: black;
}
@media screen and (max-width: 580px) {
  .mainMenu li li a.v65-selected {
    color: #fff;
  }
}
@media screen and (max-width: 580px) {
  .mainMenu li li a {
    border-bottom: 0;
    color: #fff;
  }
  .mainMenu li li a:hover {
    color: #cccccb;
  }
}
.mainMenu a {
  color: white;
  display: inline-block;
  font-family: "Gilda Display", serif;
  font-size: 16.5px;
  margin: 0;
  padding: 0;
  position: relative;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .mainMenu a {
    height: 44px;
    line-height: 44px;
  }
}
@media screen and (min-width: 768px) {
  .mainMenu a {
    height: 32px;
    line-height: 32px;
  }
}
.mainMenu a:hover {
  color: #cccccb;
  text-decoration: none;
}
.mainMenu .v65-pageAParent {
  color: white;
}
@media screen and (max-width: 950px) {
  .mainMenu .v65-home {
    display: none;
  }
}
.mainMenu .v65-selected {
  color: white;
}
.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;
  }
}

.mobileMenu {
  color: #fff;
  display: none;
  float: left;
  font-size: 2.5em;
  padding: 8px 0 0 8px;
  position: relative;
  width: 11%;
  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);
}

.mobileBody {
  position: fixed;
}

.subMenu {
  margin-bottom: 0;
  margin-top: 4em;
  font-family: "Gilda Display", serif;
  font-size: 1.1em;
}
@media screen and (min-width: 768px) {
  .subMenu {
    float: left;
    margin-right: 4%;
    padding-right: 2%;
    width: 17.5%;
  }
}
.subMenu h3 {
  display: none;
}
.subMenu ul {
  list-style: none;
  margin-bottom: 0;
  padding: 0;
}
.subMenu ul ul {
  margin-top: -0.3em;
}
.subMenu li {
  line-height: 1.4;
  padding: 6px 0;
}
@media screen and (max-width: 767px) {
  .subMenu li {
    border-top: 1px solid #cccccb;
    line-height: 44px;
    text-align: center;
  }
}
.subMenu li li {
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .subMenu li li {
    line-height: 42px;
  }
}
.subMenu li li a {
  color: #7b7b7b;
  font-size: 0.95em;
}
.subMenu a {
  color: black;
  display: inline-block;
  line-height: 1.5;
  width: 100%;
}
.subMenu a:hover, .subMenu a:focus, .subMenu a:active {
  color: #716655;
}
.subMenu .v65-pageAParent {
  color: black;
}
.subMenu .v65-leftSelected {
  color: black;
  font-style: italic;
}

/*   ===================================================================================================
     4. Content
======================================================================================================== */
#v65-modalContentHeader {
  background: black;
}

.content {
  background: white;
  padding: 4em 0;
  position: relative;
}

.wrapper {
  max-width: 1200px;
  padding: 0 20px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 360px) {
  .wrapper {
    padding: 0 10px;
  }
}

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

header .wrapper,
.homepageMiddleContent .wrapper {
  position: relative;
  z-index: 3;
}

.homepageMiddleContent .wrapper {
  max-width: 800px;
}

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

.checkoutPage header {
  min-height: initial;
}
.checkoutPage .logo {
  float: none;
  margin: 1em auto;
}

.homepageProductGroup {
  margin: 0 0 2em;
  width: 100%;
  margin: 0 auto;
}
.homepageProductGroup .v65-productGroup-products {
  text-align: left;
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
  text-align: right;
}
@media screen and (max-width: 960px) {
  .homepageProductGroup .v65-productGroup-products {
    width: 70%;
  }
}
@media screen and (max-width: 610px) {
  .homepageProductGroup .v65-productGroup-products {
    width: 100%;
  }
}
.homepageProductGroup .v65-productGroup-title {
  display: none;
  color: black;
  font-family: "Gilda Display", serif;
  font-size: 2em;
  text-align: center;
  line-height: 1.2;
  margin: 0.25em 0 1.5em;
}
.homepageProductGroup .v65-productGroup-teaser {
  float: none;
  margin: 0;
  width: 100%;
}
.homepageProductGroup .v65-productGroup-product {
  margin: 0 0 4em;
  margin-top: 3em;
  width: 100%;
}
.homepageProductGroup .v65-productGroup-product .v65-product-title {
  border: 0;
}
.homepageProductGroup .v65-productGroup-product .v65-title {
  font-size: 2.4em;
  margin: 1.2em 0 0.5em;
}
@media screen and (max-width: 850px) {
  .homepageProductGroup .v65-productGroup-product .v65-title {
    font-size: 1.7em;
  }
}
@media screen and (max-width: 520px) {
  .homepageProductGroup .v65-productGroup-product .productDescription {
    text-align: left;
  }
}
.homepageProductGroup .v65-product-photo {
  margin: 0 5%;
  float: right;
  width: auto;
}
@media screen and (max-width: 520px) {
  .homepageProductGroup .v65-product-photo {
    width: 90%;
    float: none;
  }
}

.homepageMiddleContent {
  color: white !important;
  padding: 9em 0;
}
@media screen and (max-width: 580px) {
  .homepageMiddleContent {
    padding: 2em;
  }
}
.homepageMiddleContent h1, .homepageMiddleContent h2, .homepageMiddleContent h3, .homepageMiddleContent h4, .homepageMiddleContent h5, .homepageMiddleContent h6, .homepageMiddleContent blockquote {
  color: white;
}
.homepageMiddleContent a {
  color: #cccccb;
}
.homepageMiddleContent a:hover, .homepageMiddleContent a:active, .homepageMiddleContent a:focus {
  color: white;
}
.homepageMiddleContent p {
  font-size: 18px;
}

.homepageFeatures {
  margin: 5% 0;
}
.homepageFeatures .feature {
  float: left;
  text-align: center;
  width: 29%;
  margin: 3% 2%;
}
@media screen and (max-width: 700px) {
  .homepageFeatures .feature {
    float: none;
    margin: 0 auto;
    padding: 4em 0;
    width: 70%;
  }
}
@media screen and (max-width: 400px) {
  .homepageFeatures .feature {
    width: 90%;
  }
}
.homepageFeatures .feature img {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  max-width: 80%;
  margin-bottom: 20px;
}
.homepageFeatures .feature h2 {
  font-size: 2em;
  margin: 0;
  padding: 0.2em 0 0.5em;
}
.homepageFeatures .feature p {
  margin-bottom: 2em;
}
.homepageFeatures .feature.subscribeFeature {
  display: none;
}
@media screen and (min-width: 701px) and (max-width: 820px) {
  .homepageFeatures .feature.subscribeFeature #v65-subscribeWidget input {
    width: 125px;
  }
}
@media screen and (max-width: 700px) {
  .homepageFeatures .feature.subscribeFeature #v65-subscribeWidget input {
    width: 150px;
  }
}
@media screen and (max-width: 460px) {
  .homepageFeatures .feature.subscribeFeature #v65-subscribeWidget input {
    width: 58%;
  }
}
@media screen and (min-width: 701px) and (max-width: 820px) {
  .homepageFeatures .feature.subscribeFeature .defaultBtn {
    width: 125px;
    margin-top: 3px;
  }
}
@media screen and (max-width: 460px) {
  .homepageFeatures .feature.subscribeFeature .defaultBtn {
    width: 40%;
  }
}
@media screen and (max-width: 460px) {
  .homepageFeatures .feature.subscribeFeature .defaultBtn span {
    padding: 0 1em;
  }
}

.homepageFeatures.v65-group h2 a {
  color: #000;
}

.backToTop {
  background: #555;
  background: rgba(0, 0, 0, 0.68);
  bottom: 1em;
  color: white;
  display: none;
  height: 5em;
  line-height: 5em;
  position: fixed;
  right: 1em;
  text-align: center;
  text-decoration: none;
  width: 5em;
  z-index: 1000;
}
.backToTop i.icon-up-bold {
  padding: 0 5px;
}

@media screen and (min-width: 768px) {
  .page {
    float: right;
    width: 75%;
  }
}

.colWrapper {
  margin-bottom: 2em;
  width: 100%;
}

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

.colWrapper:after {
  clear: both;
}

.col2 {
  float: left;
  margin-left: 6%;
  width: 47%;
}

.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: 1.5em;
    width: 100%;
  }

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

  .col22,
  .col22:first-child {
    float: none;
    margin: 0 0 2em;
    width: 100%;
  }

  .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 {
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto;
}

legend {
  font-family: "Gilda Display", serif;
}

.v65-form fieldset {
  border-color: #ececec;
}

#v65-checkoutCartSummaryWrapper #v65-checkoutCartSummaryMini,
#v65-checkoutCartSummaryWrapper #v65-checkCartSummaryMoreOptions {
  width: 100%;
}

input[type=email], input[type=password], input[type=tel], input[type=text], input[type=username], input[type='number'] {
  height: 2.6em;
}
@media screen and (max-width: 580px) {
  input[type=email], input[type=password], input[type=tel], input[type=text], input[type=username], input[type='number'] {
    height: 4em;
    line-height: 4em;
    min-width: 3em;
  }
}

#v65-CalendarTable {
  border-color: #e0e0e0;
  color: #e0e0e0;
}
#v65-CalendarTable th {
  background-color: #ebebeb;
  border-color: #e5e5e5;
  color: #2c2c2c;
  font-family: "Gilda Display", serif;
  font-weight: 300;
  padding: 5px 0;
}
#v65-CalendarTable td {
  border-color: #e0e0e0;
}
#v65-CalendarTable .v65-CalendarDay {
  border: 0;
  color: #88173a;
  font-family: "Gilda Display", serif;
  font-size: 0.95em;
}
#v65-CalendarTable .v65-CalendarOffMonthDays {
  background-color: #F7F7F7;
}
#v65-CalendarTable .v65-CalendarToDay {
  background-color: #EEEEEE;
}
@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: #5f8080;
    color: #fff;
    height: 2.3em;
    width: auto;
  }
}

.v65-calendarList-Month {
  font-family: "Gilda Display", serif;
  border-color: #e5e5e5;
  margin: 0 0 1.5em;
}

.v65-calendarList-Event .v65-title {
  border: 0;
  display: block;
  margin-bottom: -0.7em;
  padding-bottom: 0;
}

.v65-calendarList-Event strong {
  font-family: "Gilda Display", serif;
  font-weight: normal;
  font-size: 1.2em;
  display: block;
  margin-top: 0.7em;
}
.v65-calendarList-Event .v65-calendarList-Description {
  margin: 15px 0;
}

.eventDescriptionTitle {
  border-top: 1px solid #cccccb;
  font-family: "Gilda Display", serif;
  font-style: normal;
  font-size: 1.5em;
  margin-top: 50px;
  padding: 15px;
}

.eventDrilldownWrapper {
  border-top: 3px solid #86a5a5;
  margin: 0 1% 1em;
  padding: 1.5em 15px;
  position: relative;
  width: 98%;
}
.eventDrilldownWrapper .backLink {
  font-family: "Gilda Display", serif;
  font-size: 1.3em;
  position: absolute;
  top: -30px;
}

#v65-CalendarEventTable {
  width: 100%;
}
#v65-CalendarEventTable tr {
  height: 5em;
  float: left;
  width: 50%;
}
@media screen and (max-width: 580px) {
  #v65-CalendarEventTable tr {
    width: 100%;
    float: none;
  }
}
#v65-CalendarEventTable td {
  font-family: "Gilda Display", serif;
  font-size: 1.3em;
  font-weight: normal;
  margin-bottom: 0em;
  text-align: left;
}
#v65-CalendarEventTable td strong,
#v65-CalendarEventTable td {
  float: none;
  display: block;
  text-align: left;
  width: 100%;
}
#v65-CalendarEventTable td strong {
  color: #727272;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 0.8em;
  font-weight: normal;
}

.v65-recipe {
  border: 0;
  float: left;
  margin: 1% 1% 4%;
  position: relative;
  width: 30%;
}
@media screen and (max-width: 767px) {
  .v65-recipe {
    margin: 1% 2% 4%;
    width: 46%;
  }
}
@media screen and (max-width: 580px) {
  .v65-recipe {
    width: 96%;
  }
}
.v65-recipe .v65-recipe-photo {
  position: relative;
  width: 100%;
}
.v65-recipe .v65-recipe-photo img {
  width: 100%;
}
.v65-recipe .v65-recipe-date {
  color: #fff;
  background-color: #181818;
  background-color: rgba(0, 0, 0, 0.5);
  font-family: "Gilda Display", serif;
  font-style: normal;
  font-size: 1em;
  text-align: center;
  padding: 7px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.v65-recipe .v65-recipe-title {
  text-align: center;
  padding-top: 10px;
}
.v65-recipe .v65-recipe-info {
  margin: 0;
}

.v65-recipe-drilldown-right {
  float: none;
  width: 100%;
  margin: 0;
}

.v65-recipe-drilldown .v65-recipe-drilldown-photo {
  float: left;
  margin: 0 1% 1em;
  width: 48%;
}
@media screen and (max-width: 767px) {
  .v65-recipe-drilldown .v65-recipe-drilldown-photo {
    float: none;
    margin: 0 0 1em;
    width: 100%;
  }
}
.v65-recipe-drilldown .v65-recipe-drilldown-attributes {
  border-top: 3px solid #86a5a5;
  float: left;
  margin: 0 1% 1em;
  padding: 1.5em 15px;
  width: 48%;
}
@media screen and (max-width: 767px) {
  .v65-recipe-drilldown .v65-recipe-drilldown-attributes {
    float: none;
    margin: 0 0 1em;
    width: 100%;
  }
}
.v65-recipe-drilldown .v65-recipe-drilldown-attributes .v65-recipe-attribute {
  float: left;
  margin-bottom: 2em;
  text-align: left;
  width: 49%;
}
@media screen and (max-width: 580px) {
  .v65-recipe-drilldown .v65-recipe-drilldown-attributes .v65-recipe-attribute {
    width: auto;
    float: none;
  }
}
.v65-recipe-drilldown .v65-recipe-drilldown-attributes .v65-recipe-attribute .v65-recipe-attributeLabel,
.v65-recipe-drilldown .v65-recipe-drilldown-attributes .v65-recipe-attribute .v65-recipe-attributeValue {
  float: none;
  display: block;
  text-align: left;
  width: 100%;
}
.v65-recipe-drilldown .v65-recipe-drilldown-attributes .v65-recipe-attribute .v65-recipe-attributeLabel {
  font-family: "Gilda Display", serif;
  font-weight: normal;
  font-size: 1.3em;
  margin-bottom: 0.25em;
  text-align: left;
}
.v65-recipe-drilldown .v65-recipe-drilldown-attributes .v65-recipe-attribute .v65-recipe-attributeValue {
  color: #7b7b7b;
}
.v65-recipe-drilldown .v65-subtitle {
  font-style: normal;
  font-family: "Gilda Display", serif;
  font-size: 1.5em;
}
.v65-recipe-drilldown .v65-recipe-drilldown-ingredients,
.v65-recipe-drilldown .v65-recipe-drilldown-directions {
  border-top: 1px solid #cccccb;
  padding: 25px 15px 35px;
}
.v65-recipe-drilldown .v65-recipe-drilldown-ingredients ul {
  padding-left: 0;
  -moz-column-count: 2;
  -webkit-column-count: 2;
  column-count: 2;
}
@media screen and (max-width: 580px) {
  .v65-recipe-drilldown .v65-recipe-drilldown-ingredients ul {
    -moz-column-count: 1;
    -webkit-column-count: 1;
    column-count: 1;
  }
}
.v65-recipe-drilldown .v65-recipe-drilldown-ingredients li {
  list-style-type: none;
}
.v65-recipe-drilldown .v65-recipe-drilldown-directions ol {
  padding-left: 17px;
}

.v65-recipe-drilldown-related-products {
  border-top: 1px solid #cccccb;
  padding: 25px 15px 35px;
}

.errorPage header.primary {
  background-color: #cccccb;
  padding-top: 1px;
  min-height: 200px;
}

.nivo-controlNav a {
  text-indent: 100%;
  overflow: hidden;
}

#v65-modalContentHeader {
  padding: 3px 6px 0 0;
}
@media screen and (max-width: 580px) {
  #v65-modalContentHeader {
    padding: 0;
  }
}

.alert {
  margin-bottom: 2em;
}

@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-productGroup {
  margin-bottom: 1em;
}

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

.v65-productGroup-product:first-child {
  margin-left: 0;
}
.v65-productGroup-product .v65-product-addToCart-priceWrapper {
  font-family: "Gilda Display", serif;
  margin-bottom: 15px;
}

@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 (max-width: 720px) {
  .print {
    margin: 0 10px;
  }
}

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

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

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

.v65-product-addToCart-price {
  color: #000;
  font-size: 1.6em;
  font-weight: 300;
}

.v65-product-addToCart-unitDescription {
  color: #000;
  font-size: 1.2em;
  font-weight: 300;
  bottom: auto;
}

.errorPage header.primary {
  background-color: #cccccb;
  padding-top: 1px;
  min-height: 200px;
}

#v65-modalCartBody {
  background-color: white;
}

#v65-modalCartDropdown {
  border: 1px solid #888888;
}

#v65-modalCartTable th {
  background-color: white;
  border-bottom: 1px solid #ccc !important;
  border-top: 1px solid #ccc !important;
  border: 0;
  padding: 7px 2px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
}

#v65-modalCartTable strong {
  font-family: "Gilda Display", serif;
  font-weight: 400;
}

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

#v65-modalCartTable td {
  border: 0;
  font-size: 1em;
  font-family: "Source Sans Pro", sans-serif;
  padding: 7px 1px;
}
#v65-modalCartTable td.center.bold {
  font-weight: 400;
}

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

.v65-clubTeaser {
  margin-bottom: 3em;
  padding: 5px 0;
  border: 0;
}

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

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

#v65-cartTable th {
  background-color: white;
  border-bottom: 2px solid #86a5a5;
  font-weight: 400;
}

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

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

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

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

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

#v65-cartTable .v65-cartItemInStock {
  font-size: 1.1em;
  font-weight: 300;
}

td.v65-cartItemPrice,
td.v65-cartItemTotal {
  color: #5b4e3f;
  font-size: 1.2em;
  font-weight: 300;
}

.v65-cartSubtotal-5,
.v65-cartSubtotal-6 {
  color: #5b4e3f;
}

.v65-cartSubtotal-6,
.v65-cartTotal-6,
.v65-cartTotal-5 {
  font-size: 1.2em;
  font-weight: 300;
}

.v65-cartSubtotal-5,
.v65-cartTax-5 {
  color: #5b4e3f;
  font-size: 1.1em;
}

#v65-cartTotal td {
  font-weight: 400;
}

.v65-paging,
.v65-pagingBottom {
  border: 0;
  margin-bottom: 3em;
}

.v65-product-addToCart-priceWrapper {
  font-family: "Gilda Display", serif;
  margin-bottom: 1em;
}

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

.v65-product-reviewStats {
  margin-bottom: 0.5em;
}
.v65-product-reviewStats a strong {
  font-weight: normal;
}

.v65-subtitle {
  font-family: "Source Sans Pro", sans-serif;
  font-style: italic;
  font-weight: 300;
}

.v65-professionalReviews .v65-professionalReview {
  background: #bfbfbe;
}

.v65-professionalReviews .v65-product-attributeLabel {
  color: #fff;
}

#v65-navBrand {
  margin-top: 30px;
}
#v65-navBrand span#v65-navBrandTitle {
  font-size: 1.2em;
  display: block;
}

.subMenu #v65-navBrand a {
  width: auto;
}

.drilldownWrapper {
  background-color: #f8f8f8;
  padding: 25px 0;
}

.v65-productWrapper h1 {
  float: none;
  text-align: center;
  margin-top: 1em;
  width: 100%;
}
.v65-productWrapper .v65-product-subtitle {
  font-family: "Source Sans Pro", sans-serif;
  font-style: italic;
  font-weight: 300;
}
.v65-productWrapper .v65-product-leftCol {
  width: 45%;
}
@media screen and (min-width: 580px) and (max-width: 680px) {
  .v65-productWrapper .v65-product-leftCol {
    float: left;
    width: 45%;
  }
}
@media screen and (max-width: 580px) {
  .v65-productWrapper .v65-product-leftCol {
    width: 100%;
  }
}
@media screen and (min-width: 581px) {
  .v65-productWrapper .v65-product-leftCol .v65-product-photo {
    text-align: right;
  }
}
.v65-productWrapper .v65-product-rightCol {
  margin-top: 1em;
  width: 50%;
}
@media screen and (min-width: 580px) and (max-width: 680px) {
  .v65-productWrapper .v65-product-rightCol {
    float: right;
    width: 50%;
  }
}
@media screen and (max-width: 580px) {
  .v65-productWrapper .v65-product-rightCol {
    width: 100%;
  }
}
@media screen and (min-width: 581px) {
  .v65-productWrapper .v65-product-rightCol .v65-product-teaser {
    max-width: 350px;
  }
}
@media screen and (max-width: 580px) {
  .v65-productWrapper .v65-product-rightCol .v65-product-actionMessage,
  .v65-productWrapper .v65-product-rightCol .v65-product-inCompliantStateMessage {
    padding: 10px 0 0 15px;
    margin: 0;
  }
}
.v65-productWrapper .v65-productDrilldown-specs,
.v65-productWrapper .v65-product-relatedProducts {
  float: left;
  width: 100%;
  margin: 40px auto;
}
.v65-productWrapper .productDetails {
  margin: 40px auto 0;
  width: 70%;
  float: right;
}
@media screen and (max-width: 767px) {
  .v65-productWrapper .productDetails {
    width: 100%;
    float: left;
  }
}
.v65-productWrapper .productDetails .v65-title {
  text-align: left;
  margin-bottom: 0.5em;
}
.v65-productWrapper .productDetails .v65-product-description {
  margin-bottom: 40px;
}
.v65-productWrapper .v65-productDrilldown-specs {
  width: 30%;
  float: left;
}
@media screen and (max-width: 767px) {
  .v65-productWrapper .v65-productDrilldown-specs {
    width: 100%;
    float: left;
  }
}
@media screen and (min-width: 851px) {
  .v65-productWrapper .v65-wine-specs .v65-product-attributeLabel,
  .v65-productWrapper .v65-wine-specs .v65-product-attributeValue {
    margin-bottom: 0.5em;
  }
}
.v65-productWrapper .v65-wine-specs .v65-product-attributeLabel {
  width: 49%;
}
.v65-productWrapper .v65-wine-specs .v65-product-attributeValue {
  width: 48%;
}
.v65-productWrapper .v65-product-reviews {
  float: left;
  width: 100%;
  margin: 40px auto 0;
}
.v65-productWrapper .v65-ProductRating {
  float: left;
  width: 100%;
  margin: 0 auto 40px;
}
.v65-productWrapper .v65-title {
  margin-bottom: 1em;
  text-align: center;
}
.v65-productWrapper .v65-wine-profile .v65-product-attributeLabel {
  font-size: 1.2em;
  font-weight: 400;
  margin-bottom: 0.5em;
}
.v65-productWrapper form#v65-addProductReview {
  margin: 0 auto;
}

.v65-product-relatedProducts .v65-product-relatedProducts-product {
  margin: 2%;
  width: 29%;
}
@media screen and (max-width: 750px) {
  .v65-product-relatedProducts .v65-product-relatedProducts-product {
    width: 70%;
    margin: 40px auto;
    float: none;
  }
}
@media screen and (max-width: 580px) {
  .v65-product-relatedProducts .v65-product-relatedProducts-product {
    width: 100%;
  }
}
.v65-product-relatedProducts .v65-product-addToCart .v65-addToCart {
  border-color: #e5e5e5;
  border-top: 0;
  padding-top: 0;
}

.v65-product-quickView {
  margin-left: -39px;
  font-family: "Gilda Display", serif;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  border: 1px solid #8e806b;
}

.v65-quickView {
  border: 1px solid #8e806b;
  -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: #9e1b43;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  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: #721431;
}
.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: #cccccb;
  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;
  }
}

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

.v65-product2Up {
  position: relative;
}
.v65-product2Up .v65-product-photo {
  margin: 0 5%;
  float: none;
  width: 90%;
}
.v65-product2Up .v65-product-quickView {
  top: 55%;
}
.v65-product2Up .v65-product-photo img {
  max-height: 270px;
}

.v65-product5Up {
  margin: 0 1% 1.5em;
  width: 23%;
}
@media screen and (max-width: 980px) {
  .v65-product5Up {
    width: 31%;
  }
}
@media screen and (max-width: 580px) {
  .v65-product5Up {
    width: 98%;
  }
}
.v65-product5Up .v65-title {
  font-size: 1.2em;
}
.v65-product5Up .v65-subtitle {
  font-size: 1.1em;
}
.v65-product5Up .v65-product-addToCart-price {
  font-size: 1.2em;
}
@media screen and (min-width: 980px) {
  .v65-product5Up .v65-product-addToCart-quantity input[type="text"] {
    margin-bottom: 2px;
    width: 75% !important;
  }
}

.v65-product1UpStore {
  border: 0;
  margin-bottom: 2em;
}
@media screen and (max-width: 580px) {
  .v65-product1UpStore .v65-product-photo {
    width: 100%;
    float: none;
    margin-right: 0;
  }
}
.v65-product1UpStore .v65-product-infoWrapper {
  float: none;
  width: 100%;
}
.v65-product1UpStore .v65-product-commerceWrapper {
  float: right;
  width: 83%;
}
@media screen and (max-width: 580px) {
  .v65-product1UpStore .v65-product-commerceWrapper {
    float: none;
    width: 100%;
  }
}

.v65-productList th {
  display: none;
}
.v65-productList tr {
  border-bottom: 1px solid #8e806b;
}
.v65-productList tr:hover, .v65-productList tr:focus, .v65-productList tr:active {
  background-color: #f2f2f2;
}
.v65-productList tr.alternatRow {
  background-color: #fff;
}
.v65-productList tr.alternatRow:hover, .v65-productList tr.alternatRow:focus, .v65-productList tr.alternatRow:active {
  background-color: #f2f2f2;
}
.v65-productList td {
  border: 0;
  min-width: 320px;
  padding: 25px 5px 0;
}
@media screen and (max-width: 900px) {
  .v65-productList td {
    min-width: 0;
  }
}
@media screen and (max-width: 767px) {
  .v65-productList td {
    display: block;
    margin: 0 auto;
    padding: 15px 0 5px;
    text-align: center;
    width: 75%;
  }
}
.v65-productList td a {
  font-family: "Gilda Display", serif;
  font-size: 1.3em;
}
@media screen and (min-width: 901px) {
  .v65-productList .v65-product-addToCart-priceWrapper {
    display: inline-block;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 580px) {
  .v65-productList .v65-product-addToCart button {
    width: 50%;
  }
}

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

#v65-checkoutCartSummaryMini,
#v65-checkCartSummaryMoreOptions {
  float: none;
  width: 100%;
}

#v65-checkoutCartSummaryMini td {
  font-size: 15px;
}

#v65-checkCartSummaryMoreOptions {
  font-size: 13px;
}

#v65-couponFormWrapper div, #v65-giftCardFormWrapper div, #v65-loyaltyPointsFormWrapper div,
#v65-couponFormWrapper legend, #v65-giftCardFormWrapper legend, #v65-loyaltyPointsFormWrapper legend {
  font-size: 14px;
}

.v65-removeLoyaltyPoints img, .v65-infoTooltip img {
  padding-top: 4px;
  width: 16px;
}

@media screen and (orientation: landscape) and (max-device-width: 700px) {
  #v65-modalContentWrapper {
    left: 0%;
    top: 0%;
    margin: 0;
    width: 100%;
    border: none;
  }

  #v65-modalContent p {
    font-size: 10pt;
  }

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

  .v65-form input[type=text], .v65-form input[type=password] {
    width: 93% !important;
  }
}
/*   ===================================================================================================
     5. Blog
======================================================================================================== */
.blogContent {
  width: 100%;
}

.blogFilterWrapper {
  width: 100%;
}
.blogFilterWrapper ul {
  list-style: none;
  padding: 0;
}
.blogFilterWrapper li {
  font-size: 11px;
  margin: 0;
}
.blogFilterWrapper .blogFilter {
  border-top: 1px solid #cccccb;
  float: left;
  margin-left: 4%;
  padding: 1.2em 0.5em;
  width: 29%;
}
@media screen and (max-width: 700px) {
  .blogFilterWrapper .blogFilter {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-bottom: 2em;
  }
}
.blogFilterWrapper .blogFilter h5 {
  font-family: "Gilda Display", serif;
}
.blogFilterWrapper .blogFilter strong,
.blogFilterWrapper .blogFilter .v65-recentEntriesTitle {
  font-weight: normal;
}

.v65-blogPostWrapper .v65-avatar {
  display: none;
}
.v65-blogPostWrapper .v65-blogPost {
  border-top: 3px solid #9e1b43;
  margin: 0;
  padding: 1.5em 0 3em;
}
.v65-blogPostWrapper .v65-blogPost h1 {
  margin-bottom: 0.2em;
}
.v65-blogPostWrapper .v65-blogPost h2 {
  text-align: center;
  margin-bottom: 0;
}
.v65-blogPostWrapper .v65-blogPost h2 a {
  color: black;
}
.v65-blogPostWrapper .v65-blogPost h2 a:hover, .v65-blogPostWrapper .v65-blogPost h2 a:active, .v65-blogPostWrapper .v65-blogPost h2 a:focus {
  color: #1e2828;
}
.v65-blogPostWrapper .v65-blogPost img.verticalMiddle {
  display: none;
}
.v65-blogPostWrapper .v65-blogPost .v65-blogPostDate {
  margin-bottom: 2em;
  text-align: center;
}

#v65-commentFormWrapper form {
  max-width: 500px;
}

/*   ===================================================================================================
     6. Buttons
======================================================================================================== */
button span {
  padding: 0 1.2em;
}
button.defaultBtn, button.modalBtn, button.largeBtn {
  background-color: #9e1b43;
  font-family: "Gilda Display", serif;
  text-decoration: none;
  vertical-align: middle;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
button.defaultBtn span, button.modalBtn span, button.largeBtn span {
  background: none;
  height: auto;
  line-height: inherit;
}
button.defaultBtn:hover, button.defaultBtn:active, button.modalBtn:hover, button.modalBtn:active, button.largeBtn:hover, button.largeBtn:active {
  background-color: #91193d;
}
button.modalBtn {
  background-color: #af4565;
}
button.modalBtn:hover, button.modalBtn:active {
  background-color: #9d3e5a;
}
@media screen and (min-width: 581px) {
  button.modalBtn, button.altModalBtn {
    height: 2.5em;
    line-height: inherit;
  }
}
button.altBtn, button.altModalBtn, button.altLargeBtn {
  background-color: white;
  border: 1px solid #716f6f;
  font-family: "Gilda Display", 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;
  color: #4a4949;
}
button.altBtn:hover, button.altBtn:active, button.altModalBtn:hover, button.altModalBtn:active, button.altLargeBtn:hover, button.altLargeBtn:active {
  background-color: white;
  border-color: #575656;
}
button.altBtn:hover span, button.altBtn:active span, button.altModalBtn:hover span, button.altModalBtn:active span, button.altLargeBtn:hover span, button.altLargeBtn:active span {
  color: #0a0a0a;
}

@media screen and (max-width: 580px) {
  .defaultBtn {
    height: 4em;
    line-height: 4em;
  }
}
.defaultBtn a {
  background-color: #9e1b43;
  color: white;
  font-family: "Gilda Display", serif;
  padding: 0.6em 2em;
  text-decoration: none;
  vertical-align: middle;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
@media screen and (max-width: 580px) {
  .defaultBtn a {
    padding: 1.3em 4em;
  }
}
.defaultBtn a:hover, .defaultBtn a:active {
  background-color: #91193d;
}

a span {
  padding: 0 1em;
  height: auto;
  line-height: inherit;
}
a.linkBtn, a.modalLinkBtn, a.largeLinkBtn {
  background-color: #9e1b43;
  font-family: "Gilda Display", serif;
  text-decoration: none;
  vertical-align: middle;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a.linkBtn span, a.modalLinkBtn span, a.largeLinkBtn span {
  background: none;
  height: auto;
  line-height: inherit;
}
a.linkBtn:hover, a.linkBtn:active, a.modalLinkBtn:hover, a.modalLinkBtn:active, a.largeLinkBtn:hover, a.largeLinkBtn:active {
  background-color: #91193d;
}
a.linkAltBtn, a.modalLinkAltBtn, a.modalLinkAltBtn {
  background-color: white;
  border: 1px solid #716f6f;
  font-family: "Gilda Display", serif;
  text-decoration: none;
  vertical-align: middle;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a.linkAltBtn span, a.modalLinkAltBtn span, a.modalLinkAltBtn span {
  background: none;
  height: auto;
  line-height: inherit;
  color: #4a4949;
}
a.linkAltBtn:hover, a.linkAltBtn:active, a.modalLinkAltBtn:hover, a.modalLinkAltBtn:active, a.modalLinkAltBtn:hover, a.modalLinkAltBtn:active {
  background-color: white;
  border-color: #575656;
}
a.linkAltBtn:hover span, a.linkAltBtn:active span, a.modalLinkAltBtn:hover span, a.modalLinkAltBtn:active span, a.modalLinkAltBtn:hover span, a.modalLinkAltBtn:active span {
  color: #0a0a0a;
}
a.modalLinkBtn, a.modalLinkAltBtn, a.modalLinkAltBtn {
  min-width: auto;
}

/*   ===================================================================================================
     7. Footer
======================================================================================================== */
footer {
  background-color: #181818;
  color: #cccccb;
  font-family: "Gilda Display", serif;
  padding: 2em 0 1em;
  text-align: center;
  width: 100%;
}
footer nav {
  padding: 1em 0;
  max-width: 800px;
  margin: 0 auto;
}
footer ul {
  list-style: none;
  margin: 0 1em;
  padding: 0;
}
@media screen and (min-width: 768px) {
  footer ul {
    margin-bottom: 0.5em;
  }
}
@media screen and (max-width: 767px) {
  footer li {
    border-top: 1px solid #272727;
    line-height: 44px;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  footer li {
    display: inline;
    padding: 0 5px;
  }
}
footer li a {
  color: #cccccb;
  display: inline-block;
  font-size: 0.917em;
  position: relative;
}
@media screen and (max-width: 767px) {
  footer li a {
    width: 100%;
  }
}
footer li a:hover {
  color: white;
}
footer .v65-socialMediaLinks li {
  border-top: none;
}
footer .legal {
  color: #888888;
  margin-top: 3em;
  font-size: 0.917em;
}
footer .legal .disclaimer {
  display: block;
}
footer .legal li {
  border: 0;
}
@media screen and (max-width: 767px) {
  footer .legal li {
    line-height: 20px;
  }
}
footer .legal li a {
  color: #888888;
}
footer .legal li a:hover {
  color: #a2a2a2;
}
footer a {
  color: #888888;
}
