@import url("https://fonts.googleapis.com/css?family=Lustria%3A300%2C400%2C500%2C600%2C700%7CRaleway%3A300%2C400%2C500%2C600%2C700&subset=latin-ext&ver=1.0.0");
@font-face {
  font-family: "ion";
  src: url("fonts/ionicons.eot?v=2.0.0");
  src: url("fonts/ionicons.eot?v=2.0.0#iefix") format("embedded-opentype"), url("fonts/ionicons.ttf?v=2.0.0") format("truetype"), url("fonts/ionicons.woff?v=2.0.0") format("woff"), url("fonts/ionicons.svg?v=2.0.0#Ionicons") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "icon-ord";
  src: url("fonts/ElegantIcons.eot");
  src: url("fonts/ElegantIcons.eot?#iefix") format("embedded-opentype"), url("fonts/ElegantIcons.woff") format("woff"), url("fonts/ElegantIcons.ttf") format("truetype"), url("fonts/ElegantIcons.svg#ElegantIcons") format("svg");
  font-weight: normal;
  font-style: normal;
}
:root {
  --primary: #000;
  --primary-text-color: #000;
  --font-color: #000;
  --theme-color: #000;
  --body-font-size: 16px;
  --body-font-family: Raleway;
  --body-font-weight: 400;
  --body-line-height: 1.6;
  --body-background-color: #fff;
  --modal-bg-color: #fff;
  --bg-color: #fff;
  --btn-active-bg-color: #000;
  --box-shadow-primary: none;
  --border-color: #ccc;
  --btn-active-border-color: #000;
  --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: Lustria;
  --btn-font-weight: 400;
  --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: 1px;
  --anounce-color: #ff3333;
  --inputs-text-color: #212529;
  --anchors-color: #000;
  --anchors-hover-color: #000;
  --highlights-color: #000;
  --highlights-font-family: Lustria;
  --highlights-font-weight: 700;
  --highlights-line-height: 1.4;
  --container-max-width: 1300px;
  --popup-text-color: #000;
  --wine-information-alt-row-bg: #eee;
  --overlay-bg-color: transparent;
  --cart-summary-top: 80px;
  --modal-header-color: #fff;
  --group-menu-font-size: 16px;
  --product-title-color: #000;
  --group-item-color: #000;
}

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

.banner {
  display: none;
}

form[action*="/wines"] .banner {
  display: block;
}

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

header p,
footer p {
  margin: 0;
}

.icon-ord {
  font-family: icon-ord;
}

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;
  align-items: center;
  flex-wrap: wrap;
}

.main-navigation {
  width: 100%;
}

.banner {
  display: none;
}
.banner img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
form[action*="/wines"] .banner {
  display: block;
}

.header-main {
  --container-max-width: 300px;
}
@media (min-width: 481px) {
  .header-main {
    --container-max-width: 420px;
  }
}
@media (min-width: 681px) {
  .header-main {
    --container-max-width: 600px;
  }
}
@media (min-width: 769px) {
  .header-main {
    --container-max-width: 768px;
  }
}
@media (min-width: 1025px) {
  .header-main {
    --container-max-width: 100%;
  }
}
@media (min-width: 1201px) {
  .header-main {
    --container-max-width: 100%;
  }
}

.logo-wrap {
  height: 69px;
  display: flex;
  align-items: center;
}

.logo img {
  height: 55px;
}

@media only screen and (max-width: 1024px) {
  .social-nav,
  body:not(.open) .main-navigation {
    display: none;
  }
  .main-menu a {
    text-transform: uppercase;
    padding: 9px 0;
    font-size: 13px;
    line-height: 2em;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    letter-spacing: 0.11em;
    position: relative;
    border-bottom: 1px solid #ebebeb;
  }
  .main-menu > li:last-child > a {
    border-bottom: none;
  }
  .main-menu .sub-menu {
    margin-left: 15px;
  }
  .main-menu .sub-menu a {
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    font-size: 15px;
    line-height: 24px;
  }
  .main-menu .btn-toggle-sub-menu {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 9px 12px 9px 0;
  }
  .main-menu .btn-toggle-sub-menu::after {
    content: "\f3d3";
    font-family: ion;
    font-size: 15px;
    color: #000;
  }
}
@media (min-width: 1025px) {
  .btn-toggle-sub-menu,
  .btn-menu-wrap {
    display: none;
  }
  .header-row {
    padding: 0 50px;
  }
  .logo-wrap {
    height: auto;
  }
  .logo img {
    width: 219.8px;
    height: 90px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .main-navigation {
    width: auto;
    text-align: right;
  }
  .main-menu {
    display: inline-flex;
    justify-content: flex-end;
    height: 90px;
    align-items: center;
  }
  .main-menu .has-child {
    position: relative;
  }
  .main-menu .has-child:not(:hover) .sub-menu {
    display: none;
  }
  .main-menu .sub-menu {
    position: absolute;
    background-color: #000;
    top: 100%;
    left: 0;
    width: 230px;
    padding: 20px 0 19px;
    text-align: left;
  }
  .main-menu .sub-menu a {
    color: #fff;
    letter-spacing: 0;
    font-weight: 400;
    text-transform: none;
    padding: 4px 31px;
    font-size: 15px;
    line-height: 24px;
  }
  .main-menu a {
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    line-height: 2em;
    padding: 0 24px;
    display: inline-block;
    letter-spacing: 0.11em;
  }
  .social-nav {
    display: inline-block;
    text-align: right;
  }
  .social-nav li {
    display: inline-block;
  }
  .social-nav a {
    font-size: 13px;
    margin: 0 5px;
    background-color: #fff;
    width: 44px;
    height: 44px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }
  .social-nav a:hover {
    background-color: rgb(181, 164, 109);
  }
}
.icon-fb::after {
  content: "\e093";
}

.icon-x::after {
  content: "\e094";
}

.icon-ig::after {
  content: "\e09a";
}

footer.footer {
  background-color: #000;
  padding-bottom: 41px;
}

.footer-main {
  padding: 46px 30px;
  text-align: center;
}
.footer-main,
.footer-main a {
  color: #fff;
}

.winery-info {
  font-size: 15px;
  line-height: 26px;
}

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

.footer-social-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 17px;
  padding-bottom: 8px;
  padding-top: 3px;
}
.footer-social-nav a {
  font-size: 13px;
}

.footer-logo {
  padding-bottom: 15px;
  padding-top: 9.2px;
}

.footer-col + .footer-col {
  margin-top: 30px;
}

.footer-col-3 {
  height: 19px;
}

@media (min-width: 681px) {
  .footer-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-inline: -15px;
  }
  .footer-col + .footer-col {
    margin-top: 0;
  }
  .footer-col {
    padding: 10px 15px 0;
  }
  .footer-col-1 {
    text-align: left;
  }
  .footer-social-nav {
    justify-content: flex-start;
  }
  .footer-logo {
    padding-top: 0;
  }
}
@media (min-width: 1025px) {
  footer.footer {
    --container-max-width: 100%;
    padding-bottom: 39px;
  }
  .footer-main {
    padding: 76px 90px;
  }
}/*# sourceMappingURL=ws-style.css.map */