@font-face {
  font-family: Montserrat;
  src: url(fonts/Montserrat-400.woff);
  font-weight: 400;
}
@font-face {
  font-family: Montserrat;
  src: url(fonts/Montserrat-700.woff);
  font-weight: 700;
}
@font-face {
  font-family: "Cormorant Upright";
  src: url(fonts/CormorantUpright-400.woff);
}
:root {
  --primary: #333;
  --primary-text-color: #000;
  --font-color: #000;
  --theme-color: #333;
  --body-font-size: 16px;
  --body-font-family: Montserrat;
  --body-font-weight: 400;
  --body-line-height: 1.6;
  --body-background-color: #f9f9f9;
  --modal-bg-color: #f9f9f9;
  --bg-color: #f9f9f9;
  --btn-active-bg-color: #36552c;
  --box-shadow-primary: none;
  --border-color: #ccc;
  --btn-active-border-color: #54734a;
  --btn-border-color: transparent;
  --btn-background-color: #54734a;
  --btn-hover-background-color: #36552c;
  --btn-text-color: #fff;
  --btn-hover-text-color: #fff;
  --btn-active-color: #fff;
  --btn-font-family: Montserrat;
  --btn-font-size: 16px;
  --btn-text-transform: none;
  --btn-border: none;
  --btn-padding: 10px 20px;
  --btn-border-radius: 5px;
  --btn-hover-opacity: 1;
  --btn-letter-spacing: 0;
  --anounce-color: #ff3333;
  --inputs-text-color: #212529;
  --anchors-color: #000;
  --anchors-hover-color: #000;
  --highlights-color: #000;
  --highlights-font-family: Cormorant Upright;
  --highlights-font-weight: 400;
  --highlights-line-height: 1.4;
  --container-max-width: 1200px;
  --popup-text-color: #000;
  --wine-information-alt-row-bg: #eee;
  --overlay-bg-color: rgba(0, 0, 0, 0.5);
  --cart-summary-top: 18vw;
  --modal-header-color: #fff;
  --group-menu-font-size: 18px;
  --product-title-color: #000;
  --group-item-color: #000;
  --btn-line-color: #fff;
  --btn-line-width: 32px;
  --btn-open-line-color: #fff;
}

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);
  font-weight: 700;
}

.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 ul a,
#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 .site-navigation {
  transform: translate(0);
}
body.open.has-overlay .ord-overlay {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  background-color: var(--overlay-bg-color);
  width: 100%;
  height: 100%;
}

.header-main {
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1039;
}

.auth-wrapper {
  margin-top: var(--cart-summary-top);
}

.main-menu {
  display: flex;
}
.main-menu a {
  color: #fff;
  padding: 4px 0;
  font-size: 16px;
  line-height: 1;
  display: inline-block;
  margin: 8px 16px;
  font-weight: 700;
  position: relative;
}
.main-menu a::after {
  position: absolute;
  height: 2px;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  width: 100%;
  background-color: #fff;
  transform: scale(0);
  transition: transform 0.3s ease;
}
.main-menu a:hover::after, .main-menu a.selected::after {
  transform: scale(1);
}

.social-nav {
  margin: 24px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.social-nav a {
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.social-nav a:hover {
  opacity: 1;
}
.social-nav img {
  width: 30px;
  height: 30px;
}

.contact-nav,
.contact-nav .contact-item {
  display: flex;
}
.contact-nav .contact-item {
  margin-bottom: 16px;
}
.contact-nav img {
  width: 25px;
  height: 25px;
  margin-right: 8px;
}
.contact-nav a {
  color: #fff;
  text-decoration: underline;
}

@media only screen and (max-width: 1023px) {
  .logo-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
  }
  .logo {
    display: flex;
  }
  .logo a {
    width: 75%;
  }
  .site-navigation {
    padding: 64px 16px 16px;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 325px;
    bottom: 0;
    z-index: 1045;
    background-color: #251716;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .btn-close-menu {
    position: absolute;
    color: #fff;
    font-size: 48px;
    line-height: 1;
    font-family: Montserrat;
    right: 16px;
    top: 16px;
  }
  .main-menu {
    flex-direction: column;
  }
  /* square space btn menu start */
  .burger {
    position: relative;
    display: inline-block;
    cursor: pointer;
  }
  .burger-box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: auto;
  }
  .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: 4px;
    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(-10px);
  }
  .burger-inner .bottom-bun {
    transform: translatey(10px);
  }
  /* squarespace btn menu end */
}
@media (min-width: 640px) {
  :root {
    --cart-summary-top: 10vw;
  }
  .logo-wrap {
    padding: 8px 16px;
  }
  .logo a {
    width: 41.6666666667%;
  }
}
@media (min-width: 1024px) {
  :root {
    --cart-summary-top: 80px;
  }
  .site-navigation .social-nav,
  .contact-nav,
  .btn-close-menu,
  .btn-menu-wrap {
    display: none;
  }
  .header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
  }
  .logo-wrap {
    padding: 0;
  }
  .logo {
    width: 50%;
  }
  .main-menu a {
    margin: 0 16px;
    font-size: 18px;
    white-space: nowrap;
  }
}
footer.footer {
  background-color: rgb(37, 23, 22);
  padding: 48px 10px 0;
}

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

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

.footer-col {
  padding: 10px 0;
}

.footer-col-title {
  margin: 0 0 0.5rem;
  font-size: 26px;
  line-height: 1;
  color: #fff;
}

.winery-hours {
  text-align: center;
  color: #fff;
}
.winery-hours p {
  margin-bottom: 16px;
}

.footer-list {
  line-height: 1;
}
.footer-list a {
  display: inline-block;
  padding: 8px 0;
  color: #fff;
}

.icon-list li {
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
}
.icon-list img {
  width: 25px;
  height: 25px;
  margin-right: 8px;
}
.icon-list a {
  color: #fff;
  text-decoration: underline;
}
.icon-list a:hover {
  text-decoration: none;
}

.footer-separator hr {
  height: 0;
  border: 0;
  border-top: 1px solid rgb(202, 202, 202);
  margin: 20px 0;
}

.policy-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  line-height: 16px;
}
.policy-list li:not(:last-child) {
  border-right: 1px solid #fff;
}
.policy-list a {
  color: #fff;
  padding: 0 16px;
}

.copyright {
  padding: 16px 0;
  color: #fff;
  text-align: center;
}

.credits {
  opacity: 0;
}

@media (min-width: 640px) {
  footer.footer {
    padding: 48px 0 0;
  }
  .footer-content {
    padding: 0 16px;
  }
  .footer-cols {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-col {
    padding: 16px 0;
    width: 50%;
  }
  .footer-col-1 {
    display: flex;
    justify-content: center;
  }
  .footer-col-3 {
    display: flex;
    justify-content: flex-end;
  }
  .footer-col-2 {
    width: 66.6666666667%;
  }
}
@media (min-width: 1024px) {
  .footer-col-2 {
    order: 0;
  }
  .footer-col-2,
  .footer-col-1,
  .footer-col-3 {
    width: auto;
    flex: 1 1 0;
  }
}/*# sourceMappingURL=ws-style.css.map */