@charset "UTF-8";
:root {
  --primary: #03579b;
  --primary-text-color: #757575;
  --font-color: #757575;
  --theme-color: #03579b;
  --body-font-size: 12.6px;
  --body-font-family: Georgia;
  --body-font-weight: 400;
  --body-line-height: 1.6;
  --body-background-color: #fff;
  --modal-bg-color: #fff;
  --bg-color: #fff;
  --btn-active-bg-color: #03579b;
  --box-shadow-primary: none;
  --border-color: #ccc;
  --btn-active-border-color: #03579b;
  --btn-border-color: transparent;
  --btn-background-color: #03579b;
  --btn-hover-background-color: #03579b;
  --btn-text-color: #e3e3ea;
  --btn-hover-text-color: #e3e3ea;
  --btn-active-color: #e3e3ea;
  --btn-font-family: Georgia;
  --btn-font-size: 11.2px;
  --btn-text-transform: none;
  --btn-border: none;
  --btn-padding: 10px 20px;
  --btn-border-radius: 6px;
  --btn-hover-opacity: 1;
  --btn-letter-spacing: 0;
  --anounce-color: #ff3333;
  --inputs-text-color: #212529;
  --anchors-color: #03579b;
  --anchors-hover-color: #757575;
  --highlights-color: #535353;
  --highlights-font-family: Georgia;
  --highlights-font-weight: 700;
  --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: 10px;
  --modal-header-color: #fff;
  --group-menu-font-size: 16px;
  --product-title-color: #03579b;
  --group-item-color: #03579b;
}

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.has-overlay .ord-overlay {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  background-color: var(--overlay-bg-color);
  width: 100%;
  height: 100%;
}

.logo-wrap {
  text-align: center;
  padding: 10px 0;
}

@media only screen and (max-width: 767px) {
  .header-main {
    display: flex;
    flex-direction: column-reverse;
  }
  .site-navigation {
    background-color: #04042c;
    display: grid;
    grid-template-rows: auto 0fr;
    transition: grid-template-rows 0.3s ease;
  }
  body.open .site-navigation {
    grid-template-rows: auto 1fr;
  }
  .site-navigation,
  .site-navigation .navigation-row {
    overflow: hidden;
  }
  .icon-bars {
    padding: 5px;
    display: inline-block;
  }
  .icon-bars::after {
    line-height: 44px;
    content: "≡";
    display: inline-block;
    font-family: Arial;
    font-size: 36px;
    transform: scale(1.5, 1);
    cursor: pointer;
    text-align: center;
    width: 43px;
    color: #b9b9e6;
  }
  .main-menu li {
    border-bottom: 1px solid rgb(185, 185, 230);
  }
  .main-menu .has-child {
    display: grid;
    grid-template-rows: auto 0fr;
    transition: grid-template-rows 0.3s 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.open > a > button > .icon-toggle::after {
    transform: rotate(180deg);
  }
  .main-menu a {
    display: block;
    padding: 10.8px 54px 11.52px 20px;
    line-height: 19.45px;
    color: #a4a4e4;
    position: relative;
    font-size: 14.4px;
  }
  .main-menu .sub-menu {
    background-color: #fff;
  }
  .main-menu .sub-menu a {
    padding: 10.8px 54px 11.52px 28.8px;
    color: #8c8c8c;
  }
  .main-menu .sub-menu li {
    border-bottom: 1px solid #8c8c8c;
  }
  .main-menu .btn-toggle-sub-menu {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
  }
  .main-menu .icon-toggle::after {
    content: "▼";
    font-family: Helvetica;
    font-size: 14px;
    display: inline-block;
    color: rgb(185, 185, 230);
    line-height: 44px;
  }
}
@media (min-width: 768px) {
  .btn-toggle-sub-menu {
    display: none;
  }
  .logo {
    padding-top: 30px;
  }
  .main-menu {
    display: flex;
    width: 880px;
    max-width: 100%;
    margin: 0 auto;
    border-bottom: 1px solid rgb(221, 221, 221);
    padding: 10px 20px 24px;
    justify-content: center;
  }
  .main-menu > li {
    display: inline-block;
    margin: 1px;
  }
  .main-menu > li:not(:last-child) > a {
    border-right: 1px solid;
  }
  .main-menu .has-child {
    position: relative;
  }
  .main-menu .sub-menu {
    display: none;
    text-align: left;
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    background-color: #fff;
    padding: 10px 0;
  }
  .main-menu .sub-menu a {
    white-space: nowrap;
  }
  .main-menu a {
    line-height: 21px;
    padding: 0 10px;
    color: #535353;
    font-size: 14.4px;
    font-family: Georgia;
    display: inline-block;
  }
  .main-menu a.selected, .main-menu a:hover {
    color: #04042c;
  }
}/*# sourceMappingURL=ws-style.css.map */