@import url("https://fonts.googleapis.com/css?family=Open%20Sans%3A300%2C400%2C600%2C700%2C800%7CRaleway%3A100%2C200%2C300%2C400%2C500%2C600%2C700%2C800%2C900%7CDroid%20Serif%3A400%2C700%7CLato%7CPlayfair%20Display%7CLato%3A400%2C400i%2C700%7CPlayfair%20Display%3A400%2C700&display=swap");
:root {
  --primary: #000;
  --primary-text-color: #313032;
  --theme-color: #000;
  --body-font-size: 16px;
  --body-font-family: Lato;
  --body-font-weight: 400;
  --body-line-height: 1.3;
  --body-background-color: #fff;
  --modal-bg-color: #fff;
  --bg-color: #fff;
  --btn-active-bg-color: #313032;
  --box-shadow-primary: none;
  --border-color: #ccc;
  --btn-active-border-color: transparent;
  --btn-border-color: transparent;
  --btn-background-color: #000;
  --btn-hover-background-color: #000;
  --btn-text-color: #fff;
  --btn-hover-text-color: #fff;
  --btn-active-color: #fff;
  --btn-font-family: Lato;
  --btn-font-size: 14px;
  --btn-text-transform: uppercase;
  --btn-border: none;
  --btn-padding: 10px 20px;
  --btn-border-radius: 0px;
  --btn-hover-opacity: 1;
  --btn-letter-spacing: 1px;
  --anounce-color: #ff3333;
  --inputs-text-color: #212529;
  --anchors-color: #96671d;
  --anchors-hover-color: #313032;
  --highlights-color: #313032;
  --highlights-font-family: Playfair Display;
  --highlights-font-weight: 400;
  --highlights-line-height: 1.4;
  --container-max-width: 1280px;
  --popup-text-color: #000;
  --wine-information-alt-row-bg: #eee;
  --overlay-bg-color: transparent;
  --cart-summary-top: 10px;
  --modal-header-color: #fff;
  --horizontal-group-menu-size: 16px;
}

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:hover {
  background: var(--btn-hover-background-color);
  color: var(--btn-hover-text-color);
  opacity: var(--btn-hover-opacity);
}

.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);
  font-size: 16px;
}

.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 .fixed-bar {
  transform: translateX(-265px);
}
@media (min-width: 360px) {
  body.open .fixed-bar {
    transform: translateX(-305px);
  }
}
@media (min-width: 375px) {
  body.open .fixed-bar {
    transform: translateX(-320px);
  }
}
@media (min-width: 480px) {
  body.open .fixed-bar {
    transform: translateX(-290px);
  }
}
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%;
}

.logo a {
  display: inline-block;
  padding: 20px 0 20px 20px;
}
@media (min-width: 486px) {
  .logo a {
    padding: 20px 0 10px 10px;
  }
}
@media (min-width: 566px) {
  .logo a {
    padding: 12px 40px;
  }
}
.logo img {
  width: 200px;
}
@media (min-width: 351px) {
  .logo img {
    width: 225px;
  }
}
@media (min-width: 376px) {
  .logo img {
    width: 250px;
  }
}
@media (min-width: 486px) {
  .logo img {
    width: 300px;
  }
}
@media (min-width: 566px) {
  .logo img {
    width: 375px;
  }
}

header {
  --container-max-width: 1320px;
}

@media (max-width: 1042px) {
  .logo-wrap,
  .header-top {
    display: none;
  }
}
.auth-wrapper {
  margin-top: 62px;
}

.fixed-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1040;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  padding-bottom: 1.5px;
  transition: transform 0.5s ease, top 0.5s ease;
}

.fixed-right {
  background-color: #313032;
  display: flex;
  align-items: center;
}
@media (min-width: 821px) {
  .fixed-right {
    padding-left: 25%;
  }
}

.burger {
  padding: 16px 20px;
  margin-left: -10px;
  font-size: 30px;
  line-height: 1;
  color: #fff;
}
.burger.open .fa-bars::before {
  content: "\f00d";
}

.map-icon {
  padding-left: 19px;
}
.map-icon a {
  padding-right: 5px;
  padding-top: 7px;
  font-size: 30px;
  display: inline-block;
  height: 48px;
  color: #fff;
}
@media (min-width: 566px) {
  .map-icon a {
    padding-top: 6px;
  }
}

.site-navigation {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1040;
  width: 265px;
  background-color: #313032;
  max-width: 95%;
  height: 100%;
  overflow-y: auto;
  transition: transform 0.5s ease;
  transform: translateX(100%);
}
@media (min-width: 360px) {
  .site-navigation {
    width: 305px;
  }
}
@media (min-width: 375px) {
  .site-navigation {
    width: 320px;
  }
}
@media (min-width: 480px) {
  .site-navigation {
    width: 290px;
  }
}

.main-menu {
  font-size: 13px;
  line-height: 1.3em;
}
.main-menu > .has-child {
  display: grid;
  grid-template-rows: auto 0fr;
  transition: grid-template-rows 0.5s ease;
}
.main-menu > .has-child,
.main-menu > .has-child ul {
  overflow: hidden;
}
.main-menu > .has-child.open {
  grid-template-rows: auto 1fr;
}
.main-menu > .has-child > a {
  position: relative;
}
.main-menu > .has-child.open .fa-angle-down {
  transform: rotate(180deg);
}
.main-menu .sub-menu {
  background-color: #201f21;
}
.main-menu .sub-menu a {
  font-size: 14px;
}
.main-menu .btn-toggle-sub-menu {
  width: 50px;
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 20px;
  background-color: #201f21;
  z-index: 1041;
  bottom: 0;
  color: #fff;
  font-size: 13px;
}
.main-menu a {
  display: block;
  position: relative;
  padding: 15px 25px;
  line-height: 1.6;
  color: #fff;
  font-size: 16px;
  font-family: Lato;
  text-transform: uppercase;
}
.main-menu a.gold-text {
  color: #be9e6d;
}

.nav-info {
  padding: 0 30px;
}
.nav-info .winery-address {
  color: #fff;
  font-size: 13px;
  line-height: 1.3em;
  text-transform: uppercase;
  margin-top: 15px;
}

.nav-phone-no {
  display: inline-block;
  padding-top: 10px;
  font-size: 13px;
  line-height: 1.3em;
  color: #be9e6d;
}

.nav-separator {
  margin-top: 12px;
  width: 60px;
  height: 1px;
  background-color: #be9e6d;
}

.header-top {
  background: linear-gradient(to right, #96671d, #313032);
}
.header-top .header-row {
  display: grid;
  height: 26px;
  align-items: center;
  grid-template-columns: 69% 31%;
}
.header-top .winery-info-nav {
  padding-left: 20px;
  background-color: #96671d;
  font-size: 12px;
  height: 26px;
  text-transform: uppercase;
  line-height: 26px;
}
.header-top .winery-info-nav,
.header-top .winery-info-nav a {
  color: #fff;
}
.header-top .winery-site-nav {
  background-color: #313032;
  padding-left: 10px;
  padding-right: 20px;
}
.header-top .winery-site-nav a {
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
  padding: 0 10px;
  font-size: 15px;
}

.header-main {
  display: none;
  background-color: #f5f5f5;
}
@media (min-width: 1041px) {
  .header-main {
    display: block;
  }
}
.header-main .header-row {
  padding: 20px;
  display: flex;
  justify-content: space-between;
}
.header-main .main-menu {
  display: flex;
  gap: 25px;
}
.header-main .main-menu a {
  font-size: 16px;
  display: block;
  color: #313032;
  text-transform: uppercase;
  padding: 2px 0 0;
  position: relative;
}
.header-main .main-menu a::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #96671d;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.header-main .main-menu a:hover {
  color: #96671d;
}
.header-main .main-menu a:hover::before {
  opacity: 1;
}
.header-main .logo a {
  padding: 0;
}
.header-main .logo img {
  width: 370px;
}
@media (min-width: 1171px) {
  .header-main .logo img {
    width: 495px;
  }
}

@media (min-width: 1043px) {
  .fixed-bar {
    top: -64px;
  }
  .scroll .fixed-bar {
    top: 0;
  }
  .auth-wrapper {
    margin-top: 0;
  }
}
.footer-col .footer-col-content {
  padding: 5%;
}

.footer-col-1 .footer-col-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  -moz-column-gap: 2%;
       column-gap: 2%;
}

.footer-col-1,
.footer-col-2 {
  height: 430px;
}

.footer-nav {
  width: 48%;
  flex: 1 1 48%;
}

.winery-phone,
.winery-address {
  width: 100%;
  line-height: 24px;
}
.winery-phone a,
.winery-address a {
  color: #313032;
  font-family: "Playfair Display";
}

.footer-logo,
.winery-phone {
  padding-bottom: 15px;
}

.footer-nav a {
  display: block;
  line-height: 24px;
  margin-bottom: 5px;
  text-transform: uppercase;
  color: #313032;
}

.site-utils {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 10px;
       column-gap: 10px;
  padding-top: 15px;
}
.site-utils li:not(:last-child)::after {
  content: " | ";
  margin-left: 10px;
}
.site-utils a {
  color: #313032;
  text-transform: uppercase;
}

.footer-col-2 {
  filter: grayscale(100%);
}

.footer-col-3 {
  background-color: #333;
  color: #fff;
  text-align: center;
}

.newsletter-title {
  font-size: 20px;
  font-family: Lato;
  text-transform: uppercase;
  margin: 0 0 5px;
  line-height: 1.25;
  color: #fff;
  font-weight: 400;
  letter-spacing: 1px;
  position: relative;
}
.newsletter-title::after {
  content: "";
  width: 60px;
  bottom: -10px;
  display: block;
  margin: 0 auto;
  height: 1px;
  position: relative;
  background-color: #96671d;
}

.newsletter-description {
  padding: 20px;
  font-family: "Playfair Display";
  line-height: 1.5em;
}

.newsletter-btn {
  overflow: hidden;
  margin: 16px auto 0;
  padding: 16px 0 10px 0;
  max-width: 370px;
}
@media (min-width: 641px) {
  .newsletter-btn {
    padding-bottom: 0;
    margin-top: 0;
    padding-top: 12px;
  }
}

.btn-subscribe {
  margin-bottom: 16px;
  padding: 9.6px 16px 6.4px;
  display: block;
  text-align: center;
  line-height: 32px;
  text-transform: uppercase;
  color: #fff;
  background-color: #96671d;
}
@media (min-width: 641px) {
  .btn-subscribe {
    display: inline-block;
    margin-bottom: 0;
  }
}
@media (min-width: 642px) {
  .btn-subscribe {
    line-height: 16px;
  }
}

.social-nav {
  padding: 20px 0 7px;
}
.social-nav a {
  color: #fff;
  font-size: 25px;
  line-height: 1;
}
.social-nav i {
  padding: 0 7px;
}

.copyright {
  padding: 15px 20px;
  background-color: #96671d;
  text-align: center;
  line-height: 24px;
  color: #fff;
  text-transform: uppercase;
}
.copyright a {
  color: #fff;
}
@media (max-width: 485px) {
  .copyright a {
    white-space: nowrap;
  }
}

@media (min-width: 721px) {
  .footer-main .footer-row {
    display: flex;
    flex-wrap: wrap;
  }
  .footer-col-3 {
    flex: 1;
  }
  .footer-col-1,
  .footer-col-2 {
    width: 50%;
  }
  .newsletter-btn {
    margin-top: 20px;
  }
}
@media (min-width: 1286px) {
  .footer-col-3,
  .footer-col-1 {
    width: 40%;
  }
  .footer-col-2 {
    width: 20%;
  }
  .footer-col-1,
  .footer-col-2 {
    height: 410px;
  }
  .footer-logo {
    padding-bottom: 21px;
  }
  .footer-logo img {
    width: 495px;
  }
  .footer-col-1 .footer-col-content {
    align-items: flex-end;
  }
  .footer-col-3 {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}/*# sourceMappingURL=ws-style.css.map */

.footer-col-2 .footer-col-content,
.footer-col-2 iframe {
	border: none;
	width: 100%;
	height: 100%;
}