@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: local(''), url(../fonts/Montserrat-Regular.otf) format("opentype");
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  src: local(''), url(../fonts/Montserrat-Medium.otf) format("opentype");
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  src: local(''), url(../fonts/Montserrat-SemiBold.otf) format("opentype");
}

*, *:before, *:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px;
}

body {
  font-size: 1.7em;
  font-family: 'Montserrat', sans-serif;
  color: #282828;
  letter-spacing: 0.01em;
  background: #b91419;
}
/* ### RESET Styles ### */
h1, h2, h3, h4, h5 {
  font-size: inherit;
  font-weight: normal;
}

strong {
  font-weight: 600;
}

a, button {
  color: inherit;
}

a {
  text-decoration: none;
}

main {
  display: block;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}

button, html [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: button;
}

  button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
  }

  button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
  }

button {
  overflow: visible;
  border: 0;
  font: inherit;
  -webkit-font-smoothing: inherit;
  letter-spacing: inherit;
  background: none;
  cursor: pointer;
}

/* ### globals ### */
ul {
  list-style: none;
}

.btn-link,
[type="submit"] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 20px;
  height: 40px;
  color: #fff;
  background: #b91419;
  border-radius: 6px;
  font-weight: 500;
}

  .btn-link:hover,
  [type="submit"]:hover {
    color: #fff;
  }

  .btn-link + .btn-link {
    margin-top: 44px;
  }

/* ##### HEADER  CONTENT ##### */
.header {
  position: fixed;
  z-index: 10;
  width: 100%;
  height: 101px;
  background: #fff;
  border-bottom: 1px solid #aaa;
  box-shadow: 0 0 8px 4px rgba(0,0,0,.1);
}

  .header a {
    display: block;
  }

.header-wrap {
  position: relative;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1180px;
  height: 100%;
  display: block;
}

  .header-wrap::after {
    content: none;
  }

#logo {
  position: absolute;
  top: 28px;
  right: 20px;
  padding: 10px 0;
}

  #logo img {
    width: 220px;
  }

@media (min-width: 400px) {
  #logo {
    top: 32px;
    padding: 0;
  }

    #logo img {
      width: 288px;
    }
}

#logo img:nth-child(1) {
  display: none;
}

#logo img:nth-child(2) {
  display: block;
}

.hamburger-wrap {
  display: block;
}


.header nav {
  position: fixed;
  z-index: 20;
  top: 101px;
  background: rgba(255,255,255,.8);
  left: -100%;
  width: 100%;
  min-height: 100vh;
  transform: translateX(0);
  transition: transform .15s;
}

.nav-open nav {
  overflow-x: hidden;
  overflow-y: auto;
  min-height: calc(100vh - 101px); /* px = height of fixed header */
  transform: translateX(100%);
  transition: transform .15s;
}

.header nav > ul {
  position: absolute; /* triggers overflow */
  background: #fff;
  white-space: nowrap;
  display: flex;
  flex-wrap: wrap;
}

.top-nav-row,
.bot-nav-row {
  text-align: center;
  font-size: 2rem;
  border-bottom: 1px solid #ccc;
}

.header .hassub {
  border-width: 0;
}

  .header .hassub > a {
    display: none;
  }

.header li ul {
  display: block;
}

.header li li {
  border-bottom: 1px solid #ccc;
}

.langswitch {
  border-width: 0;
}

.header nav > ul > li {
  flex-basis: 100%;
}

.break {
  display: none;
}

.el01 {
  order: 1;
}

.el02 {
  order: 5;
}

.el03 {
  order: 6;
}

.el04 {
  order: 7;
}

.el05 {
  order: 8;
}

.el06 {
  order: 2;
}

.el07 {
  order: 3;
}

.el08 {
  order: 4;
}

.top-nav-row a,
.bot-nav-row a {
  padding: 16px 0;
}

  .top-nav-row a:hover,
  .bot-nav-row a:hover {
    color: #fff;
    background: #b91419;
  }

.top-nav-row .btn-link {
  display: block;
  padding: 16px 0;
  height: auto;
  line-height: 1;
  color: #282828;
  background: #fff;
  border-radius: 0;
  font-weight: 400;
}

  .top-nav-row .btn-link:hover {
    color: #fff;
  }

@media (min-width: 860px) {
  .header {
    position: absolute;
    height: 217px;
    border-width: 0;
    box-shadow: none;
  }

  .header-wrap {
    display: flex;
    justify-content: space-between;
    gap: 0;
  }

    .header-wrap::after {
      content: '';
      position: absolute;
      left: 20px;
      bottom: 0;
      display: block;
      width: calc(100% - 40px);
      height: 1px;
      background: #c8c8c8;
    }

  .header header {
    padding-top: 30px;
    min-width: 210px;
  }

  #logo {
    position: static;
  }

    #logo img {
      width: 210px;
    }

      #logo img:nth-child(1) {
        display: block;
      }

      #logo img:nth-child(2) {
        display: none
      }

  .hamburger-wrap {
    display: none;
  }

  .header nav {
    position: static;
    background: transparent;
    min-height: 0;
    transform: none;
    transition: none;
    padding: 56px 0 0;
    font-weight: 500;
  }

    .header nav > ul {
      position: static;
      justify-content: flex-end;
    }

  .top-nav-row,
  .bot-nav-row {
    text-align: left;
    border-width: 0;
  }

  .header nav > ul > li {
    flex-basis: auto;
  }

    .header nav > ul > li.break {
      display: block;
      flex-basis: 100%;
      height: 64px;
    }

  .el01 {
    order: 1;
  }

  .el02 {
    order: 2;
  }

  .el03 {
    order: 3;
  }

  .el04 {
    order: 4;
  }

  .el05 {
    order: 5;
  }

  .el06 {
    order: 6;
  }

  .el07 {
    order: 7;
  }

  .el08 {
    order: 8;
  }

  .header nav .top-nav-row {
    height: 33px;
    font-size: 14px;
    line-height: 33px;
    color: #6e6e6e;
  }

  .el02 {
    position: relative;
    padding-left: 1px;
  }

    .el02::before {
      content: '';
      position: absolute;
      top: 6px;
      left: 0;
      display: block;
      width: 1px;
      height: 23px;
      background: #c8c8c8;
    }

  .top-nav-row a {
    padding: 0 20px;
  }

    .top-nav-row a:not(.btn-link):hover,
    .bot-nav-row a:hover {
      color: #282828;
      background: transparent;
    }

  .top-nav-row .btn-link {
    display: inline-block;
    padding: 0 20px;
    color: #fff;
    background: #b91419;
    border-radius: 6px;
    font-weight: 500;
    height: 33px;
    line-height: 33px;
  }

    .top-nav-row .btn-link:hover {
    }

  .bot-nav-row {
    margin-right: 26px;
    height: 36px;
    font-size: 1.7rem;
    line-height: 36px;
  }

  .el08 {
    margin-right: 0;
  }

  .header .hassub {
    position: relative;
    border-width: 0;
  }

    .header .hassub > a {
      display: block;
    }

  .bot-nav-row > a {
    position: relative;
    padding: 0 0 0 21px;
  }

  .el06 > a {
  }

  .bot-nav-row > a::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 10px;
    width: 16px;
    height: 16px;
    background: transparent url(../images/arrow_menu_nrm2.gif) center center no-repeat;
    transition: transform .08s ease-in-out;
  }

  .bot-nav-row:hover > a,
  .bot-nav-row > a:hover,
  .subact > a,
  .active > a {
    color: #6e6e6e;
  }

  .bot-nav-row.subact > a::before,
  .bot-nav-row.active > a::before {
    transform: rotate(90deg);
    transition: transform .08s ease-in-out;
  }

  li ul {
    position: absolute;
    top: 43px;
    left: 50%;
    z-index: 15;
    white-space: nowrap;
    font-size: 15px;
    text-align: left;
    letter-spacing: 0.025em;
    border-radius: 6px;
    /* position and animation: */
    opacity: 0;
    transform: translateX(-50%) scale(0, 0);
    transform-origin: center top;
    transition: all .15s;
  }

  .subact ul {
    opacity: 1;
    transform: translateX(-50%) scale(1, 1);
  }

  .header li li:last-child {
    border-width: 0;
  }

  .header li li a {
    background: #fff;
    padding: 6px 28px;
    border: 1px solid #ccc;
    transition: all .05s;
  }

  .header li li:first-child a {
    border-width: 1px 1px 0 1px;
    border-radius: 6px 6px 0 0;
  }

  .header li li:last-child a {
    border-width: 0 1px 1px 1px;
    border-radius: 0 0 6px 6px;
  }

  .header li li a:hover {
    background: #b91419;
    color: #fff;
    border-color: #b91419;
  }
}
/* END @media (min-width: 860px) */
/* ### sticky Header styles ### */
.sticky .header {
  position: fixed;
  height: 101px;
}

  .sticky .header header {
    padding-top: 34px;
  }

.sticky #logo img:nth-child(1) {
  display: none;
}

.sticky #logo img:nth-child(2) {
  display: block
}

.sticky .header nav {
  padding: 11px 0 0;
}

  .sticky .header nav > ul {
  }

.sticky .header ul > li {
}

.sticky .langswitch {
  display: none;
}

.sticky .header nav > ul > li.break {
  width: 0;
  height: 11px;
}

.sticky .bot-nav-row {
  height: 33px;
  line-height: 33px;
}

.sticky .bot-nav-row {
  font-size: 14px;
}

  .sticky .bot-nav-row > a {
    padding-left: 16px;
  }

    .sticky .bot-nav-row > a::before {
      top: 11px;
      width: 10px;
      height: 10px;
      background-size: 10px;
    }

  .sticky .bot-nav-row ul {
    padding-top: 0px;
    font-size: 14px;
  }

  .sticky .bot-nav-row > ul li a {
    padding: 4px 16px;
  }

@media (min-width: 1150px) {
  .sticky .header nav {
    padding: 34px 0 0;
  }

    .sticky .header nav ul {
      flex-wrap: nowrap;
    }

    .sticky .header nav > ul > li.break {
      max-width: 20px;
      height: 33px;
    }
}

/* ##### MAIN CONTENT ##### */
.main {
  padding: 101px 0 60px;
  width: 100%;
  background: #fff;
}

  .main p {
    line-height: 31px;
  }

    .main p + p {
      padding-top: 1em;
    }

    .main p a {
      font-weight: 500;
    }

  .main .content a:not(.btn-link):hover {
    color: #b91419;
  }

main {
  margin: 0 auto;
  padding: 0;
  max-width: 1180px;
}

/* ### Startpage: Hero styles ### */
.hero {
  position: relative;
  width: 100%;
  height: 280px;
  border-bottom: 1px solid #aaa;
  background: transparent url(../images/hero_small.jpg) center center no-repeat;
  background-size: cover;
}

  .hero div {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 auto;
    width: 90%;
    max-width: 720px;
    height: 210px;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 8px;
    background: rgba(255,255,255,.6);
  }

    .hero div img {
      display: none;
    }

    .hero div > ul {
      position: relative;
      top: 50%;
      transform: translateY(-50%);
      margin: 0 auto;
      width: 265px;
      max-width: 100%;
    }

      .hero div > ul > li {
        position: relative;
        display: block;
        height: 42px;
      }

        .hero div > ul > li:first-child {
          margin-bottom: 28px;
          z-index: 2;
        }

        .hero div > ul > li > a {
          position: relative;
          display: flex;
          align-items: center;
          font-weight: 500;
          width: 100%;
          height: 100%;
          padding-left: 60px;
          color: #fff;
          background: #b91419;
          border-radius: 6px;
          transition: all .15s;
        }

          .hero div > ul > li > a::before {
            content: '';
            position: absolute;
            top: 0;
            right: 47px;
            display: block;
            width: 1px;
            height: 100%;
            background: #fff;
          }

          .hero div > ul > li > a::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            display: block;
            width: 46px;
            height: 100%;
            background: transparent url(../images/arrow_form-select_14x14.gif) no-repeat center center;
            transition: all 0.15s ease-in-out;
          }

        .hero div > ul > li.subact > a::after {
          transform: rotate(-180deg) translateY(1px);
        }

        .hero div > ul > li > a:hover {
          color: #fff;
        }

    .hero div li ul {
      display: block;
      width: calc(100% - 46px);
      position: absolute;
      z-index: 15;
      top: 42px;
      left: 0;
      margin-top: 4px;
      white-space: nowrap;
      font-size: 14px;
      text-align: left;
      background: #fff;
      border: 1px solid #ccc;
      border-width: 1px;
      border-radius: 6px;
      overflow: hidden;
      opacity: 0;
      transform: scale(0, 0);
      transform-origin: center top;
      transition: all .15s;
    }

    .hero div li.subact ul {
      opacity: 1;
      transform: scale(1, 1);
    }

    .hero div li li {
      border-bottom: 1px solid #ccc;
    }

      .hero div li li:last-child {
        border-width: 0;
      }

    .hero div li ul li a {
      display: flex;
      align-items: center;
      width: 100%;
      height: 42px;
      padding-left: 16px;
    }

      .hero div li ul li a:hover {
        background: #eee;
        color: inherit;
      }

@media (min-width: 470px) {
  .hero div {
    padding: 20px 0;
    display: flex;
    justify-content: space-evenly;
  }

    .hero div img {
      display: block;
      padding: 10px;
    }

    .hero div > ul {
      margin: 0;
      padding-top: 28px;
      top: 0;
      transform: none;
    }
}

@media (min-width: 600px) {
  .hero {
    height: 300px;
    background-image: url(../images/hero_full.jpg);
  }

    .hero div {
    }

      .hero div img {
        padding: 0;
      }
}

@media (min-width: 860px) {
  .main {
    padding: 217px 0 100px;
  }

  main {
    padding: 0 20px;
  }

  .hero {
    height: 320px;
  }

    .hero div {
      padding: 0;
      height: 120px;
      justify-content: center;
      align-items: center;
    }

      .hero div img {
        display: none;
      }

      .hero div > ul {
        padding-top: 0;
        width: auto;
        display: flex;
        gap: 40px;
        align-items: center;
      }

        .hero div > ul > li {
          width: 260px;
        }

          .hero div > ul > li:first-child {
            margin: 0;
          }

}

/* ### main content styles ### */
.content {
  margin: 0 auto;
  padding: 40px 20px 0;
  max-width: 760px;
}

.hero + .content {
  padding-top: 60px;
}

.content-narrow {
  margin: 0 auto;
  max-width: 360px;
  text-align: center;
}


h1, h2 {
  margin: 0 0 40px 0;
  font-weight: 600;
  font-size: 23px;
  line-height: 36px;
  letter-spacing: 0.03em;
  color: #b91419;
  text-align: center;
}

h1 {
  padding: 0 0 40px 0;
  border: 1px solid #ccc;
  border-width: 0 0 1px;
}

.form-wrap + h2 {
}

h1.badge {
  position: relative;
  padding-left: 72px;
  text-align: left;
}

  h1.badge::before {
    display: block;
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 48px;
    height: 48px;
    background: transparent url(../images/Bottle-Haekchen-73x73px.png) center center no-repeat;
    background-size: contain;
  }

@media (min-width: 600px) {
  h1.badge {
    padding-left: 109px;
  }

    h1.badge::before {
      top: 0;
      width: 73px;
      height: 73px;
    }
}


@media (min-width: 860px) {
  h1.badge {
    margin: 0 -30px 40px;
    padding-right: 30px;
    width: 780px;
  }
}

/* ##### FOOTER CONTENT ##### */
.footer {
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  line-height: 34px;
  color: #fff;
  background: #b91419;
}

footer {
  max-width: 1000px;
  margin: 0 auto;
  padding: 49px 49px 40px;
}

  footer > div {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 80px;
  }

.footer p.copy {
  padding-top: 50px;
}

@media (min-width: 768px) {
  footer {
    padding: 49px 20px 40px;
  }

    footer > div {
      gap: 40px;
      justify-content: space-between;
    }
}

.footer h4 {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer p.copy {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
}

/* ### niceSelect jQuery-Plugin styles ### */
.nice-select {
  position: relative;
  display: block;
  width: 100%;
  height: 40px;
  font-family: inherit;
  font-size: 16px;
  font-weight: normal;
  line-height: 40px;
  background-color: #fff;
  border-radius: 6px;
  border: 1px solid #ccc;
  border-right: 40px solid #ccc;
  cursor: pointer;
  outline: none;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

  .nice-select:hover,
  .nice-select:focus {
  }

  .nice-select::before,
  .nice-select::after {
    content: '';
    position: absolute;
    right: -40px;
    top: -1px;
    display: block;
    width: 40px;
    height: 40px;
    pointer-events: none;
  }

  .nice-select::before {
    border-radius: 0 6px 6px 0;
    background: #b91419;
  }

  .nice-select::after {
    background: transparent url(../images/arrow_form-select_14x14.gif) no-repeat center center;
    border-radius: 100%;
    transition: all 0.15s ease-in-out;
  }

  .nice-select.open {
  }

    .nice-select.open::after {
      transform: rotate(-180deg) translateY(1px);
    }

  .nice-select .list {
    position: absolute;
    z-index: 20;
    top: 100%;
    left: 0;
    margin-top: 4px;
    padding: 0;
    min-width: 100%;
    height: auto;
    max-height: 240px;
    overflow: auto;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    pointer-events: none;
    opacity: 0;
    transform: scale(0, 0);
    transform-origin: center top;
    transition: all .15s;
  }

  .nice-select.open .list {
    pointer-events: auto;
    opacity: 1;
    transform: scale(1, 1);
  }

.no-csspointerevents .nice-select .list {
  display: none;
}

.no-csspointerevents .nice-select.open .list {
  display: block;
}

.nice-select .list:hover .option:not(:hover) {
}

.nice-select .option {
  padding: 0 10px;
  line-height: 40px;
  cursor: pointer;
  outline: none;
  border: 1px solid #ccc;
  border-width: 0 0 1px 0;
}

  .nice-select .option:last-child {
    border-width: 0;
  }

  .nice-select .option:hover {
    background: #eee;
  }

  .nice-select .option.selected {
    font-weight: 500;
    background: #eee;
  }

    .nice-select .option.selected:hover {
      background: #eee;
      cursor: default;
    }

  .nice-select .option.disabled,
  .nice-select .option.disabled:hover,
  .nice-select .option.disabled.selected {
    display: none;
    cursor: default;
    font-weight: 400;
    color: #757575;
    background: #fff;
  }

span.current {
  display: block;
  padding: 0 10px;
  width: 100%;
  color: #757575;
}

.langswitch .nice-select {
  width: 100%;
  height: 33px;
  line-height: 33px;
  border-radius: 0;
  border: none;
  border-right: 14px solid #fff;
  background: #fff;
  font-size: 14px;
}

  .langswitch .nice-select:hover,
  .langswitch .nice-select:focus {
  }

  .langswitch .nice-select::before {
    display: none;
  }

  .langswitch .nice-select::after {
    width: 14px;
    height: 32px;
    right: -14px;
    top: 0px;
    background: transparent url(../images/arrow_lang-select_nrm_14x14_2.gif) no-repeat right center;
  }

  .langswitch .nice-select.open::after {
    background-image: url(../images/arrow_lang-select_hov_14x14_2.gif);
    transform: rotate(-180deg) translateY(0px);
  }

  .langswitch .nice-select .list {
    left: auto;
    right: -14px;
    min-width: 150px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
  }

  .langswitch .nice-select .option {
    line-height: 33px;
  }

.langswitch span.current {
  padding: 0 10px 0 20px;
  line-height: 33px;
  color: #6e6e6e;
  font-weight: 500;
}

@media (max-width: 859px) {
  .langswitch .nice-select {
    height: auto;
    line-height: 1;
    border-width: 0;
    padding-bottom: 100px;
  }

  .nice-select:hover,
  .nice-select:focus {
  }

  .langswitch .nice-select::after {
    display: none;
  }

  .langswitch .nice-select.open::after {
    display: none;
  }

  .langswitch span.current {
    display: none;
  }

  .langswitch .nice-select .list,
  .langswitch .nice-select.open .list {
    position: static;
    margin-top: 20px;
    padding: 0;
    min-width: 100%;
    height: auto;
    max-height: none;
    overflow: auto;
    background: #ccc;
    border-width: 0;
    border-radius: 0;
    box-shadow: none;
    pointer-events: auto;
    opacity: 1;
    transform: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1px;
  }

    .langswitch .nice-select .list:hover .option:not(:hover) {
    }

  .langswitch .nice-select .option {
    padding: 0;
    line-height: 1;
    border-width: 0px;
    flex-grow: 1;
    padding: 20px 0;
    width: 33%;
    background: #f2f2f2;
  }

    .langswitch .nice-select .option:hover {
      color: #fff;
      background: #b91419;
    }

    .langswitch .nice-select .option.selected {
      font-size: 14px;
      font-weight: 400;
      background: #d9d9d9;
    }

      .langswitch .nice-select .option.selected:hover {
        color: #282828;
        background: #d9d9d9;
        cursor: default;
      }

    .langswitch .nice-select .option.disabled,
    .langswitch .nice-select .option.disabled:hover,
    .langswitch .nice-select .option.disabled.selected {
      display: none;
      cursor: default;
      font-weight: 400;
      color: #757575;
      background: #fff;
    }
}

/* # HAMBURGER ICON STYLES (see custom.js) # */
.hamburger-wrap {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  line-height: 1;
}

.nav-open .hamburger-wrap {
}

.hamburger {
  position: relative;
  z-index: 10;
  display: block;
  cursor: pointer;
  width: 55px;
  height: 46px;
}

  .hamburger::before,
  .hamburger::after,
  .hamburger span {
    position: absolute;
    left: 10px;
    display: block;
    width: 35px;
    height: .3rem;
    background: #bb1519;
  }

  .hamburger::before {
    top: 10px;
  }

  .hamburger::after {
    bottom: 9px;
  }

  .hamburger::before,
  .hamburger::after {
    content: '';
    transition: transform .15s, top .15s .15s, bottom .15s .15s;
  }

  .hamburger span {
    top: 50%;
    transform: translateY(-50%) scale(1);
    transition: transform .15s .15s;
  }

.nav-open .hamburger::before,
.nav-open .hamburger::after,
.nav-open .hamburger span {
}

.nav-open .hamburger::before {
  top: calc(50% - .15em);
  transform: rotate(45deg);
}

.nav-open .hamburger::after {
  bottom: calc(50% - .15em);
  transform: rotate(-45deg);
}

.nav-open .hamburger::before,
.nav-open .hamburger::after {
  transition: bottom .15s, top .15s, transform .15s .15s;
}

.nav-open .hamburger span {
  transform: translateY(-50%) scale(0);
  transition: transform .1s;
}

input, textarea, select {
  font-family: inherit;
  font-size: 16px;
  color: #333;
  font-weight: 400;
  outline: none;
}

  input::-webkit-input-placeholder,
  input::-moz-placeholder,
  input::placeholder,
  input:placeholder-shown {
    color: #757575;
    opacity: 1;
  }

  input:hover,
  input:focus {
  }

[type="text"],
[type="email"],
[type="tel"],
[type="password"] {
  display: block;
  width: 100%;
  height: 40px;
  padding: 0 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

[type="file"] {
  display: block;
  width: 100%;
}

  [type="file"]:hover,
  [type="file"]:focus {
  }

input::file-selector-button {
  display: block;
  margin-bottom: 4px;
  padding: 0 10px;
  width: 100%;
  height: 40px;
  font-family: 'Montserrat', sans-serif;
  border: 1px solid #ccc;
  border-radius: 6px;
}

[type="radio"],
[type="checkbox"] {
}

textarea {
  display: block;
  width: 100%;
  min-height: 80px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.form-wrap {
  padding: 0 0 60px;
  border: 1px solid #ccc;
  border-width: 0 0 1px;
}

  /* ### styles for: login / register / passwordrecovery / account/ passwordchange / new-wine ### */
  .form-wrap p {
  }

  .form-wrap > :last-child {
    margin-bottom: 0;
  }

form {
}

.field-wrap {
  margin: 0 auto;
  max-width: 360px;
}

form + .field-wrap {
  padding-top: 14px;
}

.field-wrap > p {
  margin-bottom: 20px;
}

  .field-wrap > p:last-child {
    margin: 40px 0 0;
  }

.field-content {
  padding-top: 14px;
  min-height: 40px;
  background: #fff;
}

  .field-content:first-child {
    padding-top: 0px !important;
  }

  .field-content p,
  .field-content label {
    display: inline-block;
    padding: 0 0 12px 30px;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
  }

input[type="checkbox"] + label {
  display: inline-block;
  vertical-align: -1%;
}

.field-content.field-check-radio {
  padding: 31px 0 15px;
  min-height: 0;
}

  .field-content.field-check-radio p:first-child {
    padding: 0 30px 12px 30px;
  }

  .field-content.field-check-radio label {
    padding: 0 0 12px 7px;
  }

    .field-content.field-check-radio label + input {
      margin-left: 30px;
    }

.field-content.field-submit {
  padding-top: 44px;
}

p + .field-content.field-submit {
  padding-top: 19px;
}

.field-content.field-check-radio + .field-content.field-submit {
  padding-top: 5px;
}

label + span.required {
  display: inline-block;
}
/* required-message: */
.field-content input + span,
span.field-validation-valid {
  margin-top: 41px;
  color: #b91419;
  font-size: 13px;
}

.field-content.field-submit ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 44px;
}

.field-content.field-submit li {
  flex-basis: 100%
}

@media (min-width: 470px) {
  .field-content.field-submit li {
    flex-basis: 0
  }
}

/* ##### styles for: SEARCH Input ##### */
/* ##### CMS Wrapper Classes adopted! # */
.search-input {
  margin-bottom: 40px;
}

.search-box {
}

  .search-box form {
  }

  .search-box .field-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 44px;
  }

  .search-box .div-search-box-select,
  .search-box .div-search-box-text,
  .search-box .field-content {
    flex-basis: 100%;
  }

  .search-box .div-search-box-text {
    padding-top: 14px;
  }

    .search-box .div-search-box-text span.search-box-text {
    }

      .search-box .div-search-box-text span.search-box-text.narrow {
      }

    .search-box .div-search-box-text input.search-box-text {
      font-weight: 500;
    }

      .search-box .div-search-box-text input.search-box-text.narrow {
      }

  .search-box .div-search-box-select {
  }

    .search-box .div-search-box-select .search-box-select {
    }

.nice-select.search-box-select .current {
  color: #333;
  font-weight: 500;
}

.search-box .field-content {
  padding-top: 0;
}

  .search-box .field-content.field-submit {
  }

  .search-box .field-content button {
  }

@media (min-width: 600px) {
  .search-box .field-wrap {
  }

  .search-box .div-search-box-select {
  }

  .search-box .div-search-box-text {
  }

  .search-box .field-content {
  }
}

@media (min-width: 769px) {
  .search-box .field-wrap {
  }

  .search-box .div-search-box-text {
  }

  .search-box .field-content {
  }
}

/* ##### styles for: SEARCH Results ##### */
/* ##### CMS Wrapper Classes adopted! ### */
.search-results {
  margin-top: 60px;
  padding: 40px 0 0;
  border: 1px solid #ccc;
  border-width: 1px 0 0;
}

.resultwrap {
}

  .resultwrap h2 {
    margin: 0;
    padding: 0 0 40px;
    border: 1px solid #ccc;
    border-width: 0 0 1px;
  }
/* ### CMS wrapper START ### */
.products-container {
}

.product-grid {
}

.item-grid {
}

.item-box {
}
/* ### CMS wrapper END ##### */
.result-content {
  padding: 40px 0;
  border: 1px solid #ccc;
  border-width: 0 0 1px;
  display: flex;
  gap: 20px;
}

.item-box:last-child .result-content {
  border-width: 0;
}

.result-content-img {
  flex-basis: 30%;
  min-width: 100px;
}

  .result-content-img a {
  }

  .result-content-img img {
    border: 1px solid #f2f2f2;
  }

.result-content-txt {
  max-width: 360px;
  word-break: break-all;
}

  .result-content-txt p.wine-details-wrap {
    max-width: 360px;
  }

/* ### styles for: SEARCH Results Pager ### */
.search-results .pager {
  margin-bottom: -40px;
  padding: 20px 0 0;
  border: 1px solid #ccc;
  border-width: 1px 0 0;
}

  .search-results .pager ul {
    display: flex;
    gap: 4px;
  }

    .search-results .pager ul li {
    }

      .search-results .pager ul li.current-page {
      }

        .search-results .pager ul li.current-page span {
          display: block;
          padding: 4px 8px;
          font-weight: 600;
          color: #000;
        }

      .search-results .pager ul li a {
        display: block;
        padding: 4px 8px;
        cursor: pointer;
        color: #333;
      }

        .search-results .pager ul li a:hover {
        }

      .search-results .pager ul li:first-child > * {
        padding: 4px 8px 4px 0;
      }

      .search-results .pager ul li.previous-page {
      }

        .search-results .pager ul li.previous-page a {
        }

      .search-results .pager ul li.individual-page {
      }

        .search-results .pager ul li.individual-page a {
        }

      .search-results .pager ul li.next-page {
      }

        .search-results .pager ul li.next-page a {
        }

/* ##### password change notification-bar styles ##### */
#bar-notification {
  display: none;
}

.bar-notification-container {
}

.bar-notification {
  position: relative;
  margin: 0 auto;
  padding: 20px;
  max-width: 760px;
}

  .bar-notification.success {
  }

  .bar-notification p {
  }

    .bar-notification p.content {
      display: inline-block;
      margin: 0 12px 0 0;
      padding: 0;
      min-height: 40px;
      max-width: none;
      font-size: 120%;
      color: #fff;
      line-height: 40px;
      font-weight: 500;
    }

  .bar-notification span {
  }

    .bar-notification span.close {
      display: inline-block;
      height: 40px;
      font-size: 120%;
      color: #b91419;
      line-height: 40px;
      background: #fff;
      border-radius: 4px;
      cursor: pointer;
    }

      .bar-notification span.close::after {
        content: 'X';
        padding: 0 12px;
      }


.message-error {
  padding-bottom: 12px;
}

.message-error ul {
  margin-top: -1px;
}
  .message-error ul li, .validation-summary-errors ul li {
    line-height: 31px;
  }
.bottleverificationtooltip {
  color: #b91419;
}
.policy {
  font-weight: 600;
}
#shead {
  position: relative;
  top: -40px;
}
