@font-face {
  font-family: baskerville;
  src: url(fonts/baskerville.woff);
}
@font-face {
  font-family: baskerville;
  src: url(fonts/baskerville-500.woff);
  font-weight: 500;
}
@font-face {
  font-family: sweet-sans-pro;
  src: url(fonts/sweet-sans-pro.woff);
}
:root {
  --primary: #4f5255;
  --primary-text-color: #000;
  --font-color: #000;
  --theme-color: #4f5255;
  --body-font-size: 20px;
  --body-font-family: Baskerville;
  --body-font-weight: 400;
  --body-line-height: 1.6em;
  --body-background-color: #fff;
  --modal-bg-color: #fff;
  --bg-color: #fff;
  --btn-active-bg-color: #fff;
  --box-shadow-primary: none;
  --border-color: #ccc;
  --btn-active-border-color: #4f5255;
  --btn-border-color: transparent;
  --btn-background-color: #4f5255;
  --btn-hover-background-color: #fff;
  --btn-text-color: #efe9e1;
  --btn-hover-text-color: #4f5255;
  --btn-active-color: #4f5255;
  --btn-font-family: sweet-sans-pro;
  --btn-font-weight: 700;
  --btn-font-size: 12px;
  --btn-text-transform: uppercase;
  --btn-border: 1px solid #4f5255;
  --btn-padding: 10px 20px;
  --btn-border-radius: 0px;
  --btn-hover-opacity: 1;
  --btn-letter-spacing: 0.5px;
  --anounce-color: #ff3333;
  --inputs-text-color: #212529;
  --anchors-color: #4f5255;
  --anchors-hover-color: #000;
  --highlights-color: #000;
  --highlights-font-family: Baskerville;
  --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: transparent;
  --cart-summary-top: 100px;
  --modal-header-color: #fff;
  --group-menu-font-size: 20px;
  --product-title-color: #4f5255;
  --group-item-color: #4f5255;
}

:root[data-theme=dark] {
  --primary-text-color: #c4c4c4;
  --font-color: var(--primary-text-color);
  --theme-color: #1e1e1e;
  --primary: var(--theme-color);
  --bg-color: #121212;
  --body-background-color: var(--bg-color);
  --modal-bg-color: var(--bg-color);
  --box-shadow-primary: none;
  --border-color: #2e2e2e;
  --btn-active-border-color: var(--border-color);
  --btn-border-color: transparent;
  --btn-background-color: #2e2e2e;
  --btn-active-bg-color: var(--btn-background-color);
  --btn-hover-background-color: var(--btn-background-color);
  --btn-text-color: var(--font-color);
  --btn-hover-text-color: var(--font-color);
  --btn-active-color: var(--font-color);
  --btn-border: 0;
  --inputs-text-color: var(--primary-text-color);
  --anchors-color: var(--primary-text-color);
  --anchors-hover-color: #fff;
  --highlights-color: var(--font-color);
  --popup-text-color: var(--font-color);
  --wine-information-alt-row-bg: #1e1e1e;
  --overlay-bg-color: transparent;
  --modal-header-color: #121212;
  --product-title-color: #fff;
  --group-item-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: var(--btn-font-weight);
}

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

.btn-toggle-theme {
  display: none;
  z-index: 9;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 20px;
  width: 30px;
  height: 30px;
  position: fixed;
  background: var(--theme-color);
  color: var(--modal-header-color);
  border-radius: 50%;
  overflow: hidden;
}
.btn-toggle-theme .button-content {
  display: grid;
  grid-template-columns: 30px 30px;
  transition: transform 0.3s ease;
}
.btn-toggle-theme .button-content span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.btn-toggle-theme.open .button-content {
  transform: translateX(-100%);
}

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

.header-row {
  display: flex;
  justify-content: space-between;
}

.header-main {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  background-color: #fff;
  width: 100%;
  height: 94px;
}

.logo {
  padding-top: 5px;
}
.logo img {
  width: 288px;
  height: 78px;
}

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

.mobile-shop-nav {
  display: none;
  justify-content: center;
  align-items: center;
  font-family: sweet-sans-pro;
  font-size: 13px;
  gap: 0.6rem;
  text-transform: uppercase;
}
.mobile-shop-nav a {
  margin: 0 5px;
  font-size: 22px;
}
.mobile-shop-nav,
.mobile-shop-nav a {
  color: #000;
}

.nav-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 32px;
}
.nav-top .btn-subscribe {
  padding: 6px 12px;
  font-size: 22px;
  line-height: 35.2px;
  border: none;
}

.social-nav {
  display: none;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
}

@media only screen and (max-width: 789px) {
  .social-nav,
  .mobile-shop-nav {
    display: flex;
  }
  .main-navigation {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1041;
    height: 100vh;
    overflow-y: auto;
    background-color: #efe9e1;
    box-shadow: -6px 0px 10px 1px rgba(0, 0, 0, 0.1);
    width: 82.5%;
  }
  body:not(.open) .main-navigation {
    transform: translateX(100%);
  }
  .main-navigation {
    transition: transform 0.3s ease;
  }
  .shop-nav,
  .header-anounce {
    display: none;
  }
  .btn-menu-wrap {
    margin-right: 20px;
  }
  .btn-close-menu {
    position: absolute;
    top: 25px;
    right: 30px;
  }
  .btn-close-menu img {
    width: 30px;
    height: 30px;
  }
  .nav-log {
    padding: 24px;
    text-align: center;
  }
  .nav-log img {
    height: 62px;
    width: 269px;
  }
  .main-menu {
    padding-top: 20px;
  }
  .main-menu > li {
    border-top: 1px solid rgb(190, 172, 147);
  }
  .main-menu .has-child {
    background-image: url(Images/mobile-nav-closed.png);
    background-position: 92% 0;
    background-repeat: no-repeat;
  }
  .main-menu a {
    font-family: sweet-sans-pro;
    font-size: 25px;
    padding: 24px 38px;
    text-transform: uppercase;
    line-height: 36px;
    display: block;
    font-weight: 700;
  }
  .main-menu .has-child:not(.open) .sub-menu {
    display: none;
  }
  .main-menu .sub-menu {
    padding: 0 38px;
    border-top: 1px solid #beac93;
  }
  .main-menu .sub-menu li {
    background-image: url(Images/mobile-nav-right.png);
    background-repeat: no-repeat;
    background-position: 98% 0;
  }
  .main-menu .sub-menu li + li {
    border-top: 1px solid #beac93;
  }
}
@media (min-width: 556px) {
  :root {
    --cart-summary-top: 130px;
  }
  .header-anounce {
    display: block;
    text-align: center;
    background-color: #bea58a;
    padding: 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 15px;
  }
  .header-anounce,
  .header-anounce a {
    color: #efe9e1;
  }
  .header-anounce a {
    text-decoration: underline;
  }
}
@media (min-width: 605px) {
  .burger {
    position: relative;
    top: 45px;
  }
  .burger img {
    width: 52px;
  }
  .header-main {
    height: auto;
  }
  .header-row {
    position: relative;
  }
  .shop-nav {
    display: inline-flex;
    align-items: flex-end;
    position: absolute;
    z-index: 1040;
    right: 40px;
    top: 15px;
  }
  .shop-nav .login-link {
    text-transform: uppercase;
    font-family: sweet-sans-pro;
    padding: 0 10px 0 5px;
    margin: 0 0 9px;
    font-size: 12px;
    line-height: 1;
  }
  .shop-nav .cart-link {
    display: inline-flex;
    align-items: center;
  }
  .shop-nav .cart-counter {
    margin: 0 0 0 -3px;
    min-width: 20px;
    text-align: center;
    height: 20px;
    border-radius: 20px;
    color: #fff;
    line-height: 20px;
    background-color: #000;
    font-family: baskerville;
    display: inline-block;
    vertical-align: text-bottom;
    padding: 0 5px;
    font-size: 13px;
  }
  .shop-nav svg {
    stroke: #000;
    width: 20px;
    height: 22px;
    margin-left: 5px;
  }
}
@media (min-width: 790px) {
  .nav-log,
  .nav-top,
  .btn-close-wrap,
  .btn-menu-wrap {
    display: none;
  }
  .shop-nav {
    top: 37px;
  }
  .logo {
    padding-top: 0;
  }
  .header-main {
    --container-max-width: 100%;
  }
  .main-menu {
    display: flex;
    gap: 15px;
    position: absolute;
    left: 0;
    width: 100%;
    justify-content: center;
    align-items: center;
    bottom: 0;
  }
  .main-menu .has-child {
    position: relative;
  }
  .main-menu .has-child:hover .sub-menu {
    display: block;
  }
  .main-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    padding: 0 22px 28px 22px;
    left: 0;
    z-index: 1040;
    background-color: #fff;
    border: 1px solid #bea58a;
    border-top: 0;
  }
  .main-menu .sub-menu li {
    padding-bottom: 5px;
  }
  .main-menu .sub-menu a {
    line-height: 25px;
    padding: 0;
  }
  .main-menu a {
    font-size: 10px;
    text-transform: uppercase;
    display: inline-block;
    padding-bottom: 35px;
    line-height: 1.5;
    font-family: sweet-sans-pro;
    font-weight: 700;
    letter-spacing: 2px;
    white-space: nowrap;
  }
  .main-menu a:hover {
    color: #bea58a;
    text-decoration: underline;
  }
}
.cart-counter {
  opacity: 0;
}

@media (min-width: 1280px) {
  .header-row {
    height: 90px;
  }
  .main-menu {
    gap: 35px;
  }
  .main-menu a {
    font-size: 12px;
  }
}
.footer-newsletter {
  text-align: center;
  margin: 50px auto 80px;
  padding: 50px 5% 0;
  max-width: 1170px;
}

.newsletter-content {
  border: 1px solid #bea58a;
  border-width: 1px 0;
  padding: 40px 0;
}
.newsletter-content h3 {
  font-size: 32px;
  text-transform: uppercase;
  line-height: 42px;
  letter-spacing: 3.8px;
  font-weight: 400;
  margin: 0 0 10px;
}
.newsletter-content p {
  margin-bottom: 15px;
  font-size: 30px;
  line-height: 1.6em;
}
.newsletter-content .btn-subscribe {
  padding: 12px 16px;
  font-size: 20px;
  font-family: sweet-sans-pro;
  margin-top: 10px;
  text-transform: uppercase;
  line-height: 20px;
  border: 1px solid #4f5255;
  font-weight: 400;
}

.footer-main {
  background-color: #efe9e1;
  text-align: center;
  padding: 40px 3%;
}

.footer-col {
  overflow: hidden;
}

.footer-main .ord-container {
  padding: 0 3%;
}

.winery-details {
  font-size: 29px;
  line-height: 36px;
}
.winery-details,
.winery-details a {
  color: #000;
}
.winery-details .phone {
  margin-bottom: 15px;
}

.footer-col-1 {
  display: none;
}

.footer-col-2 {
  margin: 0 2% 20px 0;
}

.footer-logo {
  margin-bottom: 13px;
}

.footer-col-3 {
  font-family: sweet-sans-pro;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 20px;
  padding-top: 40px;
  text-transform: uppercase;
}
.footer-col-3 h4 {
  font-family: baskerville;
  margin: 0 0 20px;
  font-size: 20px;
  line-height: 42px;
  letter-spacing: 3.8px;
}
.footer-col-3 p {
  margin-bottom: 15px;
}

.copyright {
  font-size: 14px;
  line-height: 1.6em;
}
.copyright p + p {
  text-transform: uppercase;
  font-weight: 700;
}
.copyright p + p,
.copyright p + p a {
  color: #000;
}
.copyright p + p a {
  font-family: sweet-sans-pro;
}

@media (min-width: 721px) {
  .footer-main {
    --container-max-width: 1440px;
  }
  .footer-cols {
    display: flex;
    gap: 2%;
  }
  .footer-col {
    width: 32%;
  }
  .footer-col-1 {
    display: block;
  }
  .footer-list {
    text-align: left;
  }
  .footer-list a {
    display: block;
    padding: 11.2px 16px;
    color: #000;
    text-transform: uppercase;
    font-size: 12px;
    font-family: sweet-sans-pro;
    font-weight: 700;
    line-height: 1;
  }
  .footer-col-3 {
    text-align: right;
    font-size: 12px;
    font-family: sweet-sans-pro;
    text-transform: uppercase;
    line-height: 28px;
    justify-self: end;
    width: 25%;
    margin-left: auto;
  }
  .footer-col-3 h4 {
    line-height: 26px;
    font-size: 19px;
  }
  .winery-details {
    font-size: 20px;
    line-height: 28px;
  }
  .copyright {
    font-size: 10px;
  }
  .copyright p + p a {
    font-size: 8px;
  }
  .newsletter-content h3 {
    font-size: 19px;
    line-height: 26px;
  }
  .newsletter-content p {
    font-size: 20px;
  }
  .newsletter-content .btn-subscribe {
    line-height: 1;
    font-size: 12px;
  }
}/*# sourceMappingURL=ws-style.css.map */