@font-face {
  font-family: Alice;
  src: url(fonts/alice.woff2);
}
@font-face {
  font-family: Lato;
  src: url(fonts/lato.woff2);
}
:root {
  --primary: #222;
  --primary-text-color: #4c292d;
  --font-color: #4c292d;
  --theme-color: #222;
  --body-font-size: 18px;
  --body-font-family: Lato;
  --body-font-weight: 400;
  --body-line-height: 1.6;
  --body-background-color: #fff;
  --modal-bg-color: #fff;
  --bg-color: #fff;
  --btn-active-bg-color: #4c292d;
  --box-shadow-primary: none;
  --border-color: #ccc;
  --btn-active-border-color: #4c292d;
  --btn-border-color: transparent;
  --btn-background-color: #4c292d;
  --btn-hover-background-color: #4c292d;
  --btn-text-color: #fff;
  --btn-hover-text-color: #fff;
  --btn-active-color: #fff;
  --btn-font-family: Lato;
  --btn-font-size: 16px;
  --btn-text-transform: uppercase;
  --btn-border: none;
  --btn-padding: 10px 20px;
  --btn-border-radius: 0px;
  --btn-hover-opacity: 1;
  --btn-letter-spacing: 0;
  --anounce-color: #ff3333;
  --inputs-text-color: #212529;
  --anchors-color: #000;
  --anchors-hover-color: #4c292d;
  --highlights-color: #4c292d;
  --highlights-font-family: Alice;
  --highlights-font-weight: 400;
  --highlights-line-height: 1.4;
  --container-max-width: 1360px;
  --popup-text-color: #000;
  --wine-information-alt-row-bg: #eee;
  --overlay-bg-color: transparent;
  --cart-summary-top: 10px;
  --modal-header-color: #fff;
  --group-menu-font-size: 20px;
  --product-title-color: #000;
  --group-item-color: #000;
  --btn-line-color: #fff;
  --btn-line-width: 22px;
  --btn-open-line-color: #4c292d;
}

body {
  font-size: var(--body-font-size);
  font-family: var(--body-font-family);
  line-height: var(--body-line-height);
  font-weight: var(--body-font-weight);
  background-color: var(--body-background-color);
}

a {
  color: var(--anchors-color);
}

a:hover {
  color: var(--anchors-hover-color);
}

button {
  background-color: transparent;
  padding: 0;
  border: 0;
  cursor: pointer;
}

img {
  max-width: 100%;
}

body,
.ui-widget-content {
  color: var(--primary-text-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--highlights-color);
  font-family: var(--highlights-font-family);
  line-height: var(--highlights-line-height);
  font-weight: var(--highlights-font-weight);
}

.btn {
  font-family: var(--btn-font-family);
  font-size: var(--btn-font-size);
  line-height: 20px;
  text-transform: var(--btn-text-transform);
  background: var(--btn-background-color);
  color: var(--btn-text-color);
  border: var(--btn-border);
  letter-spacing: var(--btn-letter-spacing);
  border-radius: var(--btn-border-radius);
  padding: var(--btn-padding);
}

.btn:focus,
.btn:hover {
  background: var(--btn-hover-background-color);
  color: var(--btn-hover-text-color);
  opacity: var(--btn-hover-opacity);
  border-color: var(--btn-hover-background-color);
}

.ord-container,
#pageContent {
  margin: 0 auto;
  max-width: var(--container-max-width);
}

#authStatus a:hover {
  text-decoration: none;
}

.ui-widget-header,
.activeCart .cartHeader,
.shop-left-menu .menu-header,
#accountContent .header,
#checkout .header,
#basket .header,
.bootstrapWizard li.complete .step,
.bootstrapWizard li.active .step,
.bootstrapWizard li.active.complete .step,
#tabs-product .ui-tabs-nav a {
  background: var(--theme-color);
}

#tabs-product .tabs-container a.btn {
  color: var(--btn-text-color);
}

#tabs-product .tabs-container a.btn:hover {
  color: var(--btn-hover-text-color);
}

.txt,
.txtbig,
.ddl,
.select_box select,
input[type=text],
input[type=password],
select,
textarea {
  color: var(--inputs-text-color);
}

.popup h1,
.popup h2,
.popup h3,
.popup h4,
.popup h5,
.popup h6 {
  color: var(--popup-text-color);
}

header p,
footer p {
  margin: 0;
}

body.open {
  overflow: hidden;
}
body.open .burger {
  background-color: #fff;
}
body.open .main-navigation {
  transform: translate(0);
  opacity: 1;
  visibility: visible;
}
body .ord-overlay {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  background-color: var(--overlay-bg-color);
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

body.open.has-overlay .ord-overlay {
  opacity: 1;
  visibility: visible;
}

.logo-wrap {
  display: grid;
  align-items: center;
  padding: 12px 10px 13px;
  grid-template-columns: 65px 1fr 65px;
}

@media only screen and (max-width: 1023px) {
  .nav-logo,
  .navigation-controls {
    display: none;
  }
  .main-navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1039;
    visibility: hidden;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(-100%);
    background-color: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  }
  .main-menu {
    padding-top: 107px;
  }
  .main-menu a {
    line-height: 56px;
    display: block;
    text-align: center;
    font-size: 18px;
    font-family: Lato;
    text-transform: uppercase;
  }
  .logo img {
    width: 168px;
    height: 46px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  /* square space btn menu start */
  .burger {
    position: relative;
    display: inline-flex;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #4c292d;
    z-index: 1040;
  }
  .burger .burger-text,
  .burger svg {
    display: none;
  }
  .burger-box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
  }
  .burger-inner {
    position: relative;
    width: var(--btn-line-width);
    height: 100%;
  }
  .burger-inner .top-bun,
  .burger-inner .patty,
  .burger-inner .bottom-bun {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 2px;
    transition: transform 250ms cubic-bezier(0.2, 0.6, 0.3, 1), width 250ms cubic-bezier(0.2, 0.6, 0.3, 1);
    will-change: transform, width;
  }
  .burger-inner .patty,
  .burger-inner .top-bun,
  .burger-inner .bottom-bun {
    background-color: var(--btn-line-color);
  }
  .burger-inner .top-bun {
    transform: translatey(-9px);
  }
  .burger-inner .bottom-bun {
    transform: translatey(9px);
  }
  .burger.open .burger-inner .top-bun {
    transform: rotate(-135deg);
  }
  .burger.open .burger-inner .bottom-bun {
    transform: rotate(135deg);
  }
  .burger.open .burger-inner .patty {
    background-color: transparent;
  }
  .burger.open .burger-inner .top-bun,
  .burger.open .burger-inner .bottom-bun {
    background-color: var(--btn-open-line-color);
  }
  /* squarespace btn menu end */
}
@media (min-width: 1024px) {
  header {
    --container-max-width: 100%;
  }
  .btn-menu-wrap {
    padding-left: 70px;
    padding-bottom: 10px;
  }
  .nav-logo {
    padding-left: 22px;
    padding-top: 13px;
    padding-bottom: 37px;
  }
  .nav-logo img {
    width: 250px;
  }
  .main-menu {
    padding-left: 18px;
    padding-bottom: 35px;
  }
  .main-menu a {
    line-height: 45px;
    display: inline-block;
    font-size: 23px;
    color: #fff;
    text-transform: uppercase;
    font-family: Alice;
  }
  .main-menu a:hover, .main-menu a.selected {
    color: #9c8d07;
  }
  .main-navigation {
    transform: translateX(-100%);
    background-color: #4c292d;
    height: 100%;
    overflow-y: auto;
    width: 373px;
    position: fixed;
    top: 0;
    left: 0;
    transition: transform 0.3s ease;
  }
  .burger .burger-text {
    display: inline-block;
    font-family: Alice;
    font-size: 18px;
    color: #4c292d;
    line-height: 26.2px;
    margin-bottom: 2px;
  }
  .burger svg {
    fill: #4c294c;
  }
  .burger .burger-box {
    display: none;
  }
  .logo {
    padding: 0 73px 0 0;
    text-align: center;
  }
  .logo img {
    width: 281px;
    height: 76px;
  }
  .logo-wrap {
    grid-template-columns: 131px 1fr 92px;
    padding: 5px 7px 5px 10px;
  }
  .wine-club-label img {
    width: 92px;
    height: 44px;
  }
  .navigation-controls {
    padding-left: 66px;
  }
  .btn-close-menu {
    border: 1px solid rgba(255, 255, 255, 0.5);
    line-height: 38px;
    color: #fff;
    width: 142px;
    font-family: Alice;
    font-size: 20px;
    text-align: center;
  }
  .btn-close-menu:hover {
    border-color: #000;
    background-color: #000;
  }
}
footer.footer {
  text-align: center;
  padding: 20px 0 10px;
}

.footer-main {
  display: flex;
  flex-direction: column;
}

.footer-col-title {
  line-height: 40.6px;
  font-size: 29px;
  font-family: Alice;
  margin: 0;
}

.footer-col-1 {
  padding-top: 20px;
}

.footer-logo {
  padding: 8px 0 10px;
}
.footer-logo img {
  width: 307px;
  height: 85px;
}

.virginia-for-lovers {
  margin-bottom: 10px;
}
.virginia-for-lovers img {
  width: 150px;
  height: 10px;
}

.social-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}
.social-nav img {
  width: 24px;
  height: 24px;
  -o-object-fit: cover;
     object-fit: cover;
}

.louisa-county {
  margin-bottom: 10px;
}
.louisa-county img {
  width: 60px;
  height: 60px;
}

.copyright {
  margin-bottom: 9px;
  line-height: 12.6px;
  font-size: 9px;
}

.winery-address {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 23px;
}
.winery-address p {
  margin-bottom: 5px;
  margin-top: 3px;
}

.address-link {
  font-size: 16px;
  line-height: 22.4px;
}
.address-link a {
  text-decoration: underline;
}

.winery-hours {
  font-size: 20px;
  line-height: 28px;
  margin: 10px 0;
}

.terms-nav {
  line-height: 16.8px;
  font-size: 12px;
  margin-bottom: 20px;
}
.terms-nav p {
  margin-bottom: 10px;
}
.terms-nav a {
  text-decoration: underline;
}

.footer-col-2 {
  order: -1;
}

.winery-contact {
  margin: 0 0 10px;
}

.winery-phone a,
.winery-email a {
  text-decoration: underline;
  color: #4c292d;
}

.footer-col-3 {
  padding-top: 20px;
  height: 413px;
}
.footer-col-3 .footer-col-title:first-child {
  margin-bottom: 4px;
}

.winery-phone {
  font-size: 21px;
  line-height: 29.4px;
  margin-bottom: 1em;
}

.winery-email {
  font-size: 17px;
  line-height: 23.8px;
}

.wine-club-title {
  line-height: 30px;
  font-size: 25px;
  margin-bottom: 10px;
}

.wine-club-logo {
  margin-bottom: 10px;
}
.wine-club-logo img {
  width: 110px;
  height: 51px;
}

.wine-club-info p {
  font-size: 14px;
  line-height: 19.6px;
  margin-bottom: 10px;
}

@media (min-width: 1023px) {
  footer.footer {
    padding: 0;
  }
  .footer-main {
    flex-direction: row;
  }
  .footer-col-title {
    font-size: 23px;
    line-height: 32.2px;
  }
  .footer-col-1 {
    padding-top: 11px;
  }
  .footer-col-1,
  .footer-col-3 {
    flex: 277 1 0%;
  }
  .footer-col-2 {
    flex: 426 1 0%;
    order: 0;
  }
  .address-link {
    font-size: 12px;
    line-height: 16.8px;
  }
  .winery-address {
    margin-bottom: 10px;
  }
  .winery-address,
  .winery-hours {
    font-size: 17px;
    line-height: 23.8px;
  }
  .winery-hours {
    margin-bottom: 16px;
    margin-top: 7px;
  }
  .terms-nav {
    margin-bottom: 13px;
  }
  .terms-nav p {
    margin-bottom: 2px;
  }
  .footer-logo {
    padding: 26px 0;
  }
  .footer-logo img {
    width: 410px;
    height: 113px;
  }
  .virginia-for-lovers {
    margin-bottom: 12px;
    margin-top: 23px;
  }
  .virginia-for-lovers img {
    width: 217px;
    height: 15px;
  }
  .louisa-county img {
    width: 50px;
    height: 50px;
  }
  .copyright {
    line-height: 16.8px;
    font-size: 12px;
  }
  .footer-col-3 {
    padding-top: 6px;
    height: auto;
  }
  .winery-email,
  .winery-phone {
    font-size: 17px;
    line-height: 23.8px;
  }
  .winery-phone {
    margin-bottom: 6px;
  }
  .wine-club-logo {
    margin-bottom: 17px;
  }
  .wine-club-logo img {
    width: 160px;
    height: 74px;
  }
  .winery-contact {
    margin-bottom: 21px;
  }
  .wine-club-title {
    line-height: 28.6px;
    margin-bottom: 10px;
  }
  .wine-club-info p {
    font-size: 12px;
    line-height: 16.8px;
  }
}
.credits {
  opacity: 0;
  visibility: hidden;
}/*# sourceMappingURL=ws-style.css.map */