@import url("https://fonts.googleapis.com/css?family=Poppins%3A500&ver=6.7.2");
@import url("https://fonts.googleapis.com/css?family=IBM+Plex+Sans%3A300%2C400%2C700%2C500%7CLibre+Baskerville%3A400&ver=6.7.2");
:root {
  --primary: #000;
  --primary-text-color: #393939;
  --font-color: #393939;
  --theme-color: #000;
  --body-font-size: 18px;
  --body-font-family: IBM Plex Sans;
  --body-font-weight: 400;
  --body-line-height: 1.6;
  --body-background-color: #fff;
  --modal-bg-color: #fff;
  --bg-color: #fff;
  --btn-active-bg-color: #77062c;
  --box-shadow-primary: none;
  --border-color: #ccc;
  --btn-active-border-color: #000;
  --btn-border-color: transparent;
  --btn-background-color: #000;
  --btn-hover-background-color: #77062c;
  --btn-text-color: #fff;
  --btn-hover-text-color: #fff;
  --btn-active-color: #fff;
  --btn-font-family: IBM Plex Sans;
  --btn-font-size: 18px;
  --btn-text-transform: none;
  --btn-border: none;
  --btn-padding: 10px 20px;
  --btn-border-radius: 0px;
  --btn-hover-opacity: 1;
  --btn-letter-spacing: 0;
  --anounce-color: #77062c;
  --inputs-text-color: #212529;
  --anchors-color: #000;
  --anchors-hover-color: #77062c;
  --highlights-color: #000;
  --highlights-font-family: Libre Baskerville;
  --highlights-font-weight: 400;
  --highlights-line-height: 1.4;
  --container-max-width: 1300px;
  --popup-text-color: #000;
  --wine-information-alt-row-bg: #eee;
  --overlay-bg-color: rgba(0, 0, 0, 0.75);
  --cart-summary-top: 10px;
  --modal-header-color: #fff;
  --group-menu-font-size: 18px;
  --product-title-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);
}

.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 {
  --logo-width: 240px;
}

.logo {
  margin: 5px 20px;
}

.logo img {
  width: var(--logo-width);
}

@media only screen and (max-width: 768px) {
  .header-top {
    display: none;
  }
  .logo-wrap {
    padding-top: 2px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .burger {
    font-size: 30px;
    margin: 20px;
  }
  .site-navigation {
    position: fixed;
    top: 0;
    right: 0;
    background-color: #fff;
    overflow-y: auto;
    z-index: 1040;
    max-width: 300px;
    width: 100%;
    height: 100%;
    transform: translateX(100%);
    transition: transform 0.5s ease;
  }
  .main-menu {
    text-align: center;
    padding-top: 45px;
  }
  .main-menu li {
    margin: 10px 11px 5px;
    line-height: 28.8px;
    font-size: 18px;
    font-family: Poppins;
  }
  .main-menu a {
    color: #393939;
  }
  .btn-close-menu {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1040;
    padding: 20px;
    font-size: 20px;
    height: 68.8px;
    line-height: 28.8px;
  }
  .secondary-nav-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .secondary-nav-mobile .nav-item {
    margin: 20px 20px 10px;
  }
  .secondary-nav-mobile .nav-item + .nav-item {
    margin: 5px 20px 5px 5px;
  }
  .secondary-nav-mobile a {
    background-color: #000;
    color: #fff;
    padding: 12px 24px;
    line-height: 28.8px;
    display: inline-flex;
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-weight: 500;
  }
  .contact-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .contact-nav .contact-item {
    margin: 10px 20px 5px;
  }
  .contact-nav .item-with-text a {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
  }
  .contact-nav .item-with-text a .icon-holder {
    font-size: 20px;
    width: 20px;
  }
  .contact-nav .instagram-item {
    font-size: 30px;
    line-height: 1;
    margin: 15px 20px;
  }
  .contact-nav .icon-holder {
    color: rgb(119, 6, 44);
  }
}
.footer-bottom {
  padding: 10px 0 0;
  text-align: center;
  overflow: hidden;
}

.footer-logo {
  margin: 5px 15px 10px;
}
.footer-logo img {
  width: 240px;
}

.footer-top {
  padding: 15px 0 17px;
  border-top: 1px solid transparent;
}

.footer-col {
  text-align: left;
  overflow: hidden;
}
.footer-col .contact-nav {
  margin: 5px 20px;
  font-family: "IBM Plex Sans";
  align-items: flex-start;
  color: #393939;
  font-size: 18px;
  line-height: 28.8px;
}
.footer-col .contact-nav li,
.footer-col .contact-nav a {
  display: flex;
}
.footer-col .contact-nav li:first-child {
  padding-bottom: 10px;
}
.footer-col .icon-holder {
  font-size: 20px;
  margin-right: 20px;
}
.footer-col .icon-holder span {
  line-height: 28.8px;
  display: inline-block;
}
.footer-col a .icon-holder {
  color: #77062c;
}
.footer-col .icon-holder {
  width: 20px;
  text-align: center;
}
.footer-col .fa-clock {
  color: #393939;
}

.footer-middle {
  background-color: #f3f3f3;
  border-top: 3px solid rgba(132, 132, 132, 0.16);
  padding: 22px 0 20px;
}

.footer-nav {
  overflow: hidden;
}

.footer-list {
  margin: -2px 20px 5px;
}
.footer-list li {
  border-top: 1px solid transparent;
}
.footer-list a {
  color: #4d4d4d;
}

.social-nav {
  margin: 10px 20px 5px;
}
.social-nav a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  font-size: 30px;
  color: #77062c;
}

.footer-bottom {
  background-color: #f3f3f3;
}

.footer-copyright {
  font-size: 14px;
  color: #000;
}
.footer-copyright p {
  margin-top: 5px;
  margin-bottom: 16px;
}

.footer-credits {
  margin: 0 10px 2px;
}

.credits {
  padding-bottom: 16px;
  margin-top: -5px;
}

.credits {
  opacity: 0;
}

@media (min-width: 769px) {
  .logo-wrap,
  .secondary-nav-mobile,
  .btn-close-menu,
  .btn-menu-wrap {
    display: none;
  }
  footer,
  header {
    --container-max-width: 1760px;
  }
  .secondary-nav-desktop {
    overflow: hidden;
    text-align: right;
  }
  .main-navigation {
    display: flex;
    align-items: center;
  }
  .main-navigation .logo-wrap {
    display: block;
    width: 25%;
  }
  .main-menu {
    padding: 5px;
    width: 34%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    line-height: 25.6px;
  }
  .main-menu li {
    display: inline-block;
    margin: 5px 6px;
  }
  .contact-nav-phone {
    width: 16%;
    flex: 0 1 auto;
  }
  .contact-nav-phone .contact-item {
    margin: 5px 10px;
    text-align: right;
  }
  .contact-nav-phone .icon-holder {
    display: block;
    color: #77062c;
    width: 20px;
    text-align: center;
    margin-right: 20px;
    font-size: 20px;
    margin-left: auto;
    line-height: 28.8px;
  }
  .contact-nav-social {
    width: 4%;
    flex: 1 1 auto;
    text-align: center;
    font-size: 30px;
  }
  .contact-nav-social a {
    color: #77062c;
  }
  .header-top-row {
    display: flex;
  }
  .header-top-row a {
    display: inline-block;
    padding: 12px 24px;
    background-color: #000;
    color: #fff;
    font-size: 18px;
    font-family: "IBM Plex Sans";
    line-height: 28.8px;
    font-weight: 500;
  }
  .nav-secondary-first {
    width: 80%;
    text-align: right;
  }
  .nav-secondary-first a {
    margin: 5px 20px 5px 5px;
  }
  .nav-secondary-second {
    width: 19%;
  }
  .nav-secondary-second a {
    text-align: right;
    margin: 5px 20px 5px 5px;
  }
  .site-navigation {
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    border-bottom: 1px solid rgb(204, 204, 204);
  }
  .header-top {
    padding: 10px 20px 0;
  }
  .footer-row {
    display: flex;
  }
  .footer-top {
    padding: 20px;
    text-align: left;
  }
  .footer-col-1 {
    width: 37%;
  }
  .footer-col-2 {
    width: 35%;
  }
  .footer-col-3 {
    width: 28%;
  }
  .footer-col {
    flex: 0 1 auto;
  }
  .email-holder {
    word-break: break-all;
  }
  .footer-row-top {
    display: flex;
    align-items: center;
  }
  .footer-bottom {
    padding: 10px 20px 0;
  }
  .footer-middle {
    padding: 10px 20px;
    border-top: 1px solid rgba(188, 188, 188, 0.24);
    border-bottom: 1px solid rgba(188, 188, 188, 0.24);
  }
  .footer-middle-row,
  .footer-bottom-row {
    justify-content: space-between;
  }
  .footer-nav {
    flex: 1 1 auto;
    width: 77%;
    height: 50px;
    display: flex;
    align-items: center;
  }
  .footer-middle-row .social-nav {
    flex: 1 1 auto;
    width: 22%;
    text-align: right;
  }
  .footer-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    margin: 0 5px;
    line-height: 18px;
  }
  .footer-list li {
    border: none;
  }
  .footer-list li + li {
    border-left: 1px solid transparent;
  }
  .footer-list a {
    padding: 0 12px;
  }
  .footer-copyright {
    text-align: left;
    width: 50%;
    flex-grow: 0;
  }
  .footer-copyright p {
    margin: 5px 20px 16px;
  }
}
@media (min-width: 1282px) {
  .logo-wrap {
    flex: 1 1 auto;
  }
  .contact-nav-phone .icon-holder {
    display: inline-block;
  }
  .main-menu {
    width: 40%;
  }
}
footer.footer {
  margin-top: 100px;
  border-top: 1px solid #b7b7b7;
}

@media (min-width: 1582px) {
  .main-menu,
  .contact-nav-phone {
    width: 25%;
    flex: 1 1 auto;
  }
  .footer-col-1 {
    width: 37.16%;
  }
  .footer-col-2 {
    width: 43.2%;
  }
  .footer-col-3 {
    width: 19.64%;
  }
}/*# sourceMappingURL=ws-style.css.map */