/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
.hvr-bounce-to-bottom {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-bounce-to-bottom:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #dc724c;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-bounce-to-bottom:hover,
.hvr-bounce-to-bottom:focus,
.hvr-bounce-to-bottom:active {
  color: white !important;
}
.hvr-bounce-to-bottom:hover:before,
.hvr-bounce-to-bottom:focus:before,
.hvr-bounce-to-bottom:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.page.messages {
  max-width: 80%;
  left: 10%;
  position: fixed;
  top: 170px;
  display: flex;
  justify-content: center;
  width: 100%;
  z-index: 9999999999;
}
.page.messages .message {
  border: 1px solid;
  border-radius: 8px;
  box-shadow: 0 10px 10px -9px;
}
.message.success {
  animation: css 0s 2.9s forwards;
  background: #caecd9;
  border: 1px solid #249658 !important;
  border-radius: 8px;
  color: #FFFFFF;
  padding: 20px 20px 20px 50px;
  box-sizing: border-box;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  color: #49474a;
  position: relative;
  display: flex;
}
.message.success > *:first-child:before {
  background-image: url(../images/msg-success.svg);
  background-repeat: no-repeat;
  background-position-x: center;
  background-size: contain;
  display: block;
  position: absolute;
  content: '';
  height: 32px;
  width: 32px;
  top: 16px;
  left: 12px;
}
.message.success a {
  text-decoration: underline;
}
.progress-message {
  display: block;
  height: 6px;
  width: 0%;
  z-index: 999;
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 0px 0px 0px 8px;
  animation: fillProgress 3s linear forwards;
}
.progress-message.success {
  background-color: #249658;
}
.progress-message.error {
  background-color: #ED4545;
}
.progress-message.warning {
  background-color: #FFD748;
}
.progress-message.info {
  background-color: #0D6EDF;
}
.message.info,
.message.notice {
  animation: css 0s 3s forwards;
  background: #d7e8fb;
  border: 1px solid #0d6edf !important;
  border-radius: 8px;
  padding: 20px 20px 20px 50px;
  box-sizing: border-box;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  color: #49474a;
  position: relative;
}
.message.info a,
.message.notice a {
  text-decoration: underline;
  color: #49474a;
}
.message.error {
  animation: css 0s 2.9s forwards;
  background: #f9dada;
  border: 1px solid #ed4545 !important;
  border-radius: 8px;
  padding: 20px 20px 20px 50px;
  box-sizing: border-box;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  color: #49474a;
  position: relative;
  display: flex;
}
.message.error a {
  text-decoration: underline;
  color: #49474a;
}
.message.incomplete-pallet {
  background: #f9dada;
  border: 1px solid #ed4545 !important;
  border-radius: 8px;
  padding: 20px 16px;
  box-sizing: border-box;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  color: #49474a;
  position: relative;
  display: flex;
  font-family: 'GeneralSans', sans-serif;
  margin-bottom: 20px;
}
.message.incomplete-pallet .warning-message {
  display: flex;
  align-items: center;
  gap: 12px;
}
.message.incomplete-pallet > *:first-child:before {
  background-image: url(../images/msg-error.svg);
  background-repeat: no-repeat;
  background-position-x: center;
  background-size: contain;
  display: block;
  content: '';
  height: 32px;
  width: 32px;
}
.message.warning {
  animation: css 0s 2.9s forwards;
  background: #fbf4da;
  border: 1px solid #ffd748 !important;
  border-radius: 8px;
  padding: 20px 20px 20px 50px;
  box-sizing: border-box;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  color: #49474a;
  position: relative;
  display: flex;
}
.message.warning a {
  text-decoration: underline;
}
.message.error:not(.notfound),
.message.notice:not(.notfound) {
  animation: css 0s 3s forwards;
  border-radius: 8px;
  font-weight: 600;
  padding: 20px 20px 20px 50px;
  box-sizing: border-box;
}
@keyframes css {
  to {
    visibility: hidden;
    pointer-events: none;
    height: 0;
    width: 0;
  }
}
@keyframes fillProgress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
.message.error.cart.item {
  animation: unset !important;
}
body:not(.cms-home, .cms-pure-local, .cms-creative-series, .cms-about-us, .cms-sustainability, .cms-malting-process, .cms-root-revival) .header .logo.white,
body:not(.cms-home, .cms-pure-local, .cms-creative-series, .cms-about-us, .cms-sustainability, .cms-malting-process, .cms-root-revival) .search-custom .logo.white {
  display: none !important;
}
body:not(.cms-home, .cms-pure-local, .cms-creative-series, .cms-about-us, .cms-sustainability, .cms-malting-process, .cms-root-revival) .header .bt-menu .icon,
body:not(.cms-home, .cms-pure-local, .cms-creative-series, .cms-about-us, .cms-sustainability, .cms-malting-process, .cms-root-revival) .search-custom .bt-menu .icon {
  background: rgba(0, 0, 0, 0.05) !important;
  color: #000000 !important;
}
body:not(.cms-home, .cms-pure-local, .cms-creative-series, .cms-about-us, .cms-sustainability, .cms-malting-process, .cms-root-revival) .header .bt-menu .icon:hover,
body:not(.cms-home, .cms-pure-local, .cms-creative-series, .cms-about-us, .cms-sustainability, .cms-malting-process, .cms-root-revival) .search-custom .bt-menu .icon:hover {
  background: #1d3a84 !important;
  color: #ffffff !important;
}
body:not(.cms-home, .cms-pure-local, .cms-creative-series, .cms-about-us, .cms-sustainability, .cms-malting-process, .cms-root-revival) .header.content .myaccount .search__icon:before,
body:not(.cms-home, .cms-pure-local, .cms-creative-series, .cms-about-us, .cms-sustainability, .cms-malting-process, .cms-root-revival) .search-custom.content .myaccount .search__icon:before {
  background-image: url('../images/header/search-blue.svg');
}
body:not(.cms-home, .cms-pure-local, .cms-creative-series, .cms-about-us, .cms-sustainability, .cms-malting-process, .cms-root-revival) .header.content .myaccount .minicart-wrapper .showcart:before,
body:not(.cms-home, .cms-pure-local, .cms-creative-series, .cms-about-us, .cms-sustainability, .cms-malting-process, .cms-root-revival) .search-custom.content .myaccount .minicart-wrapper .showcart:before {
  background-image: url('../images/header/cart-blue.svg');
}
body:not(.cms-home, .cms-pure-local, .cms-creative-series, .cms-about-us, .cms-sustainability, .cms-malting-process, .cms-root-revival) .header.content .myaccount .account__text:before,
body:not(.cms-home, .cms-pure-local, .cms-creative-series, .cms-about-us, .cms-sustainability, .cms-malting-process, .cms-root-revival) .search-custom.content .myaccount .account__text:before {
  background-image: url('../images/header/user-blue.svg');
}
body.cms-home header .logo.color,
body.cms-pure-local header .logo.color,
body.cms-creative-series header .logo.color,
body.cms-about-us header .logo.color,
body.cms-sustainability header .logo.color,
body.cms-malting-process header .logo.color,
body.cms-root-revival header .logo.color {
  display: none !important;
}
body.active,
body.visible {
  overflow-y: hidden;
  max-height: 100vh;
}
body.active::before,
body.visible::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  opacity: .4;
  background: black;
  position: fixed;
  z-index: 9;
}
.page-main {
  max-width: unset !important;
}
.cms-no-route .page-title-wrapper,
.full-row-empty-search .page-title-wrapper {
  display: none;
}
.cms-no-route__title,
.full-row-empty-search__title {
  font-family: 'PaulSmalt-Special', sans-serif;
  font-weight: 600;
  color: #102134;
}
.cms-no-route__text,
.full-row-empty-search__text {
  font-family: 'GeneralSans', sans-serif;
  color: #49474a;
  font-weight: 300;
  margin-bottom: 0;
}
.cms-no-route__description,
.full-row-empty-search__description {
  margin-bottom: 32px;
}
.full-row-empty-search__background {
  border-radius: 16px;
}
.cms-terms-and-conditions .breadcrumbs,
.cms-data-privacy-policy .breadcrumbs,
.cms-legal-notice .breadcrumbs,
.cms-privacy-policy-cookie-restriction-mode .breadcrumbs {
  display: none;
}
.cms-terms-and-conditions .cms-content__item,
.cms-data-privacy-policy .cms-content__item,
.cms-legal-notice .cms-content__item,
.cms-privacy-policy-cookie-restriction-mode .cms-content__item {
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e5e1e6;
}
.cms-terms-and-conditions .cms-content__title,
.cms-data-privacy-policy .cms-content__title,
.cms-legal-notice .cms-content__title,
.cms-privacy-policy-cookie-restriction-mode .cms-content__title {
  font-family: 'PaulSmalt-Special', sans-serif;
  font-weight: 600;
  color: #102134;
  margin-bottom: 0;
  text-transform: uppercase;
}
.cms-terms-and-conditions .cms-content__subtitle,
.cms-data-privacy-policy .cms-content__subtitle,
.cms-legal-notice .cms-content__subtitle,
.cms-privacy-policy-cookie-restriction-mode .cms-content__subtitle {
  font-family: 'GeneralSans', sans-serif;
  font-weight: 500;
  color: #102134;
  margin-bottom: 32px;
  font-size: 24px;
  line-height: 32px;
}
.cms-terms-and-conditions .cms-content__description,
.cms-data-privacy-policy .cms-content__description,
.cms-legal-notice .cms-content__description,
.cms-privacy-policy-cookie-restriction-mode .cms-content__description {
  font-family: 'GeneralSans', sans-serif;
  font-weight: 300;
  color: #49474a;
  letter-spacing: .2px;
  margin-bottom: 0;
}
.cms-terms-and-conditions .cms-content__table,
.cms-data-privacy-policy .cms-content__table,
.cms-legal-notice .cms-content__table,
.cms-privacy-policy-cookie-restriction-mode .cms-content__table {
  margin-bottom: 20px;
}
.cms-terms-and-conditions .cms-content__table tr,
.cms-data-privacy-policy .cms-content__table tr,
.cms-legal-notice .cms-content__table tr,
.cms-privacy-policy-cookie-restriction-mode .cms-content__table tr {
  border-bottom: 1px solid #e5e1e6;
}
.cms-pure-local .page-title-wrapper,
.cms-creative-series .page-title-wrapper,
.cms-about-us .page-title-wrapper,
.cms-sustainability .page-title-wrapper,
.cms-malting-process .page-title-wrapper,
.cms-root-revival .page-title-wrapper,
.cms-pure-local .breadcrumbs,
.cms-creative-series .breadcrumbs,
.cms-about-us .breadcrumbs,
.cms-sustainability .breadcrumbs,
.cms-malting-process .breadcrumbs,
.cms-root-revival .breadcrumbs {
  display: none;
}
.cms-pure-local .jarallax,
.cms-creative-series .jarallax,
.cms-about-us .jarallax,
.cms-sustainability .jarallax,
.cms-malting-process .jarallax,
.cms-root-revival .jarallax {
  z-index: -1 !important;
}
.cms-pure-local .page-header,
.cms-creative-series .page-header,
.cms-about-us .page-header,
.cms-sustainability .page-header,
.cms-malting-process .page-header,
.cms-root-revival .page-header {
  position: absolute;
  z-index: 9;
  width: 100%;
  margin-bottom: 0 !important;
}
.cms-pure-local .column.main,
.cms-creative-series .column.main,
.cms-about-us .column.main,
.cms-sustainability .column.main,
.cms-malting-process .column.main,
.cms-root-revival .column.main {
  padding-bottom: 0;
}
.cms-pure-local .hero,
.cms-creative-series .hero,
.cms-about-us .hero,
.cms-sustainability .hero,
.cms-malting-process .hero,
.cms-root-revival .hero {
  width: 100%;
  min-height: 100vh;
  padding-top: 10rem;
  z-index: -1;
  width: 100vw !important;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.cms-pure-local .hero__content,
.cms-creative-series .hero__content,
.cms-about-us .hero__content,
.cms-sustainability .hero__content,
.cms-malting-process .hero__content,
.cms-root-revival .hero__content {
  z-index: 3;
  width: 100%;
  align-items: center;
}
.cms-pure-local .hero__title,
.cms-creative-series .hero__title,
.cms-about-us .hero__title,
.cms-sustainability .hero__title,
.cms-malting-process .hero__title,
.cms-root-revival .hero__title {
  width: 100%;
}
.cms-pure-local .hero__title h1,
.cms-creative-series .hero__title h1,
.cms-about-us .hero__title h1,
.cms-sustainability .hero__title h1,
.cms-malting-process .hero__title h1,
.cms-root-revival .hero__title h1 {
  font-family: 'PaulSmalt-Special', sans-serif;
  font-weight: 600;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #ffffff;
}
.cms-pure-local .hero__title h5,
.cms-creative-series .hero__title h5,
.cms-about-us .hero__title h5,
.cms-sustainability .hero__title h5,
.cms-malting-process .hero__title h5,
.cms-root-revival .hero__title h5 {
  font-family: 'GeneralSans', sans-serif;
  font-weight: 400;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #ffffff;
  font-size: 18px;
  line-height: 24px;
}
.cms-pure-local .hero__subtitles,
.cms-creative-series .hero__subtitles,
.cms-about-us .hero__subtitles,
.cms-sustainability .hero__subtitles,
.cms-malting-process .hero__subtitles,
.cms-root-revival .hero__subtitles {
  width: 100%;
}
.cms-pure-local .hero__subtitle,
.cms-creative-series .hero__subtitle,
.cms-about-us .hero__subtitle,
.cms-sustainability .hero__subtitle,
.cms-malting-process .hero__subtitle,
.cms-root-revival .hero__subtitle {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.cms-pure-local .hero__subtitle-text,
.cms-creative-series .hero__subtitle-text,
.cms-about-us .hero__subtitle-text,
.cms-sustainability .hero__subtitle-text,
.cms-malting-process .hero__subtitle-text,
.cms-root-revival .hero__subtitle-text {
  color: #f3eff4;
  font-family: 'GeneralSans', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.2px;
  vertical-align: middle;
}
.cms-pure-local .hero::before,
.cms-creative-series .hero::before,
.cms-about-us .hero::before,
.cms-sustainability .hero::before,
.cms-malting-process .hero::before,
.cms-root-revival .hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), linear-gradient(204.58deg, rgba(0, 0, 0, 0) 41.21%, rgba(0, 0, 0, 0.38) 70.23999999999999%);
  z-index: 1;
}
.cms-pure-local .bt-two-words__title,
.cms-creative-series .bt-two-words__title,
.cms-about-us .bt-two-words__title,
.cms-sustainability .bt-two-words__title,
.cms-malting-process .bt-two-words__title,
.cms-root-revival .bt-two-words__title {
  font-family: 'GeneralSans', sans-serif;
  font-weight: 600;
  letter-spacing: 0px;
  text-align: center;
  text-transform: uppercase;
}
.cms-pure-local .bt-two-words__subtitle,
.cms-creative-series .bt-two-words__subtitle,
.cms-about-us .bt-two-words__subtitle,
.cms-sustainability .bt-two-words__subtitle,
.cms-malting-process .bt-two-words__subtitle,
.cms-root-revival .bt-two-words__subtitle {
  font-family: 'GeneralSans', sans-serif;
  font-weight: 300;
  letter-spacing: 0.2px;
  text-align: center;
  font-size: 18px;
  line-height: 24px;
}
.cms-pure-local .bt-marquee,
.cms-creative-series .bt-marquee,
.cms-about-us .bt-marquee,
.cms-sustainability .bt-marquee,
.cms-malting-process .bt-marquee,
.cms-root-revival .bt-marquee {
  padding: 68px 0;
}
.cms-pure-local .bt-marquee .obscure,
.cms-creative-series .bt-marquee .obscure,
.cms-about-us .bt-marquee .obscure,
.cms-sustainability .bt-marquee .obscure,
.cms-malting-process .bt-marquee .obscure,
.cms-root-revival .bt-marquee .obscure {
  font-family: 'GeneralSans', sans-serif;
  font-weight: 400;
  text-align: left;
  color: #333333;
}
.cms-pure-local .bt-marquee ul,
.cms-creative-series .bt-marquee ul,
.cms-about-us .bt-marquee ul,
.cms-sustainability .bt-marquee ul,
.cms-malting-process .bt-marquee ul,
.cms-root-revival .bt-marquee ul,
.cms-pure-local .bt-marquee li,
.cms-creative-series .bt-marquee li,
.cms-about-us .bt-marquee li,
.cms-sustainability .bt-marquee li,
.cms-malting-process .bt-marquee li,
.cms-root-revival .bt-marquee li {
  margin-bottom: 0;
}
.cms-pure-local .bt-keyfocus,
.cms-creative-series .bt-keyfocus,
.cms-about-us .bt-keyfocus,
.cms-sustainability .bt-keyfocus,
.cms-malting-process .bt-keyfocus,
.cms-root-revival .bt-keyfocus {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 60px;
  min-height: 908px;
  margin: 40px 36px;
  position: relative;
}
.cms-pure-local .bt-keyfocus__title,
.cms-creative-series .bt-keyfocus__title,
.cms-about-us .bt-keyfocus__title,
.cms-sustainability .bt-keyfocus__title,
.cms-malting-process .bt-keyfocus__title,
.cms-root-revival .bt-keyfocus__title {
  font-family: 'PaulSmalt-Special', sans-serif;
  font-weight: 600;
  text-align: left;
  color: #ffffff;
  z-index: 2;
  position: relative;
}
.cms-pure-local .bt-keyfocus__item,
.cms-creative-series .bt-keyfocus__item,
.cms-about-us .bt-keyfocus__item,
.cms-sustainability .bt-keyfocus__item,
.cms-malting-process .bt-keyfocus__item,
.cms-root-revival .bt-keyfocus__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}
.cms-pure-local .bt-keyfocus__item-img,
.cms-creative-series .bt-keyfocus__item-img,
.cms-about-us .bt-keyfocus__item-img,
.cms-sustainability .bt-keyfocus__item-img,
.cms-malting-process .bt-keyfocus__item-img,
.cms-root-revival .bt-keyfocus__item-img {
  z-index: 2;
  position: relative;
}
.cms-pure-local .bt-keyfocus__item-img.--care,
.cms-creative-series .bt-keyfocus__item-img.--care,
.cms-about-us .bt-keyfocus__item-img.--care,
.cms-sustainability .bt-keyfocus__item-img.--care,
.cms-malting-process .bt-keyfocus__item-img.--care,
.cms-root-revival .bt-keyfocus__item-img.--care {
  max-width: 56px;
}
.cms-pure-local .bt-keyfocus__item-img.--experiment,
.cms-creative-series .bt-keyfocus__item-img.--experiment,
.cms-about-us .bt-keyfocus__item-img.--experiment,
.cms-sustainability .bt-keyfocus__item-img.--experiment,
.cms-malting-process .bt-keyfocus__item-img.--experiment,
.cms-root-revival .bt-keyfocus__item-img.--experiment {
  max-width: 40px;
}
.cms-pure-local .bt-keyfocus__item-img.--wheat,
.cms-creative-series .bt-keyfocus__item-img.--wheat,
.cms-about-us .bt-keyfocus__item-img.--wheat,
.cms-sustainability .bt-keyfocus__item-img.--wheat,
.cms-malting-process .bt-keyfocus__item-img.--wheat,
.cms-root-revival .bt-keyfocus__item-img.--wheat {
  max-width: 22px;
}
.cms-pure-local .bt-keyfocus__item-title,
.cms-creative-series .bt-keyfocus__item-title,
.cms-about-us .bt-keyfocus__item-title,
.cms-sustainability .bt-keyfocus__item-title,
.cms-malting-process .bt-keyfocus__item-title,
.cms-root-revival .bt-keyfocus__item-title {
  font-family: 'GeneralSans', sans-serif;
  font-weight: 500;
  text-align: left;
  color: #ffffff;
  z-index: 2;
  position: relative;
}
.cms-pure-local .bt-keyfocus__item-description,
.cms-creative-series .bt-keyfocus__item-description,
.cms-about-us .bt-keyfocus__item-description,
.cms-sustainability .bt-keyfocus__item-description,
.cms-malting-process .bt-keyfocus__item-description,
.cms-root-revival .bt-keyfocus__item-description {
  font-family: 'GeneralSans', sans-serif;
  font-weight: 300;
  letter-spacing: 0.20000000298023224px;
  text-align: left;
  color: #ffffff;
  z-index: 2;
  position: relative;
}
.cms-pure-local .bt-keyfocus::before,
.cms-creative-series .bt-keyfocus::before,
.cms-about-us .bt-keyfocus::before,
.cms-sustainability .bt-keyfocus::before,
.cms-malting-process .bt-keyfocus::before,
.cms-root-revival .bt-keyfocus::before {
  background: rgba(0, 0, 0, 0.2);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
  border-radius: 16px;
}
.cms-pure-local .bt-photo .bt-photo-card__subtitle,
.cms-creative-series .bt-photo .bt-photo-card__subtitle,
.cms-about-us .bt-photo .bt-photo-card__subtitle,
.cms-sustainability .bt-photo .bt-photo-card__subtitle,
.cms-malting-process .bt-photo .bt-photo-card__subtitle,
.cms-root-revival .bt-photo .bt-photo-card__subtitle {
  font-family: 'GeneralSans', sans-serif;
  font-weight: 300;
  letter-spacing: 0.20000000298023224px;
  text-align: left;
  color: #e73726;
}
.cms-pure-local .bt-photo .bt-photo-card__title,
.cms-creative-series .bt-photo .bt-photo-card__title,
.cms-about-us .bt-photo .bt-photo-card__title,
.cms-sustainability .bt-photo .bt-photo-card__title,
.cms-malting-process .bt-photo .bt-photo-card__title,
.cms-root-revival .bt-photo .bt-photo-card__title {
  font-family: 'PaulSmalt-Special', sans-serif;
  font-weight: 600;
  text-align: left;
  color: #102134;
  margin-bottom: 20px;
}
.cms-pure-local .bt-photo .bt-photo-card__description,
.cms-creative-series .bt-photo .bt-photo-card__description,
.cms-about-us .bt-photo .bt-photo-card__description,
.cms-sustainability .bt-photo .bt-photo-card__description,
.cms-malting-process .bt-photo .bt-photo-card__description,
.cms-root-revival .bt-photo .bt-photo-card__description {
  font-family: 'GeneralSans', sans-serif;
  font-weight: 300;
  letter-spacing: 0.20000000298023224px;
  text-align: left;
  color: #49474a;
  margin-bottom: 32px;
}
.cms-pure-local .bt-card-banner,
.cms-creative-series .bt-card-banner,
.cms-about-us .bt-card-banner,
.cms-sustainability .bt-card-banner,
.cms-malting-process .bt-card-banner,
.cms-root-revival .bt-card-banner {
  border-radius: 16px;
  margin: 40px 0;
}
.cms-pure-local .bt-card-banner .button__transparent,
.cms-creative-series .bt-card-banner .button__transparent,
.cms-about-us .bt-card-banner .button__transparent,
.cms-sustainability .bt-card-banner .button__transparent,
.cms-malting-process .bt-card-banner .button__transparent,
.cms-root-revival .bt-card-banner .button__transparent,
.cms-pure-local .bt-card-banner .button__alternative,
.cms-creative-series .bt-card-banner .button__alternative,
.cms-about-us .bt-card-banner .button__alternative,
.cms-sustainability .bt-card-banner .button__alternative,
.cms-malting-process .bt-card-banner .button__alternative,
.cms-root-revival .bt-card-banner .button__alternative,
.cms-pure-local .bt-card-banner .button__primary,
.cms-creative-series .bt-card-banner .button__primary,
.cms-about-us .bt-card-banner .button__primary,
.cms-sustainability .bt-card-banner .button__primary,
.cms-malting-process .bt-card-banner .button__primary,
.cms-root-revival .bt-card-banner .button__primary,
.cms-pure-local .bt-card-banner .button__secundary,
.cms-creative-series .bt-card-banner .button__secundary,
.cms-about-us .bt-card-banner .button__secundary,
.cms-sustainability .bt-card-banner .button__secundary,
.cms-malting-process .bt-card-banner .button__secundary,
.cms-root-revival .bt-card-banner .button__secundary,
.cms-pure-local .bt-card-banner .button__white,
.cms-creative-series .bt-card-banner .button__white,
.cms-about-us .bt-card-banner .button__white,
.cms-sustainability .bt-card-banner .button__white,
.cms-malting-process .bt-card-banner .button__white,
.cms-root-revival .bt-card-banner .button__white {
  display: block;
}
.cms-pure-local .bt-card-banner-big__title,
.cms-creative-series .bt-card-banner-big__title,
.cms-about-us .bt-card-banner-big__title,
.cms-sustainability .bt-card-banner-big__title,
.cms-malting-process .bt-card-banner-big__title,
.cms-root-revival .bt-card-banner-big__title,
.cms-pure-local .bt-card-banner-medium__title,
.cms-creative-series .bt-card-banner-medium__title,
.cms-about-us .bt-card-banner-medium__title,
.cms-sustainability .bt-card-banner-medium__title,
.cms-malting-process .bt-card-banner-medium__title,
.cms-root-revival .bt-card-banner-medium__title {
  font-family: 'PaulSmalt-Special', sans-serif;
  font-weight: 600;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #ffffff;
}
.cms-pure-local .bt-card-banner-big__subtitle,
.cms-creative-series .bt-card-banner-big__subtitle,
.cms-about-us .bt-card-banner-big__subtitle,
.cms-sustainability .bt-card-banner-big__subtitle,
.cms-malting-process .bt-card-banner-big__subtitle,
.cms-root-revival .bt-card-banner-big__subtitle,
.cms-pure-local .bt-card-banner-medium__subtitle,
.cms-creative-series .bt-card-banner-medium__subtitle,
.cms-about-us .bt-card-banner-medium__subtitle,
.cms-sustainability .bt-card-banner-medium__subtitle,
.cms-malting-process .bt-card-banner-medium__subtitle,
.cms-root-revival .bt-card-banner-medium__subtitle {
  font-family: 'GeneralSans', sans-serif;
  font-weight: 300;
  letter-spacing: 0.2px;
  vertical-align: middle;
  color: #ffffff;
}
.cms-pure-local .bt-card-banner-big__text,
.cms-creative-series .bt-card-banner-big__text,
.cms-about-us .bt-card-banner-big__text,
.cms-sustainability .bt-card-banner-big__text,
.cms-malting-process .bt-card-banner-big__text,
.cms-root-revival .bt-card-banner-big__text,
.cms-pure-local .bt-card-banner-medium__text,
.cms-creative-series .bt-card-banner-medium__text,
.cms-about-us .bt-card-banner-medium__text,
.cms-sustainability .bt-card-banner-medium__text,
.cms-malting-process .bt-card-banner-medium__text,
.cms-root-revival .bt-card-banner-medium__text {
  font-family: 'GeneralSans', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.2px;
  vertical-align: middle;
  color: #ffffff;
}
.cms-pure-local .bt-card-banner-big-center__title,
.cms-creative-series .bt-card-banner-big-center__title,
.cms-about-us .bt-card-banner-big-center__title,
.cms-sustainability .bt-card-banner-big-center__title,
.cms-malting-process .bt-card-banner-big-center__title,
.cms-root-revival .bt-card-banner-big-center__title {
  font-family: 'GeneralSans', sans-serif;
  font-weight: 600;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #ffffff;
}
.cms-pure-local .bt-card-banner-big-center__subtitle,
.cms-creative-series .bt-card-banner-big-center__subtitle,
.cms-about-us .bt-card-banner-big-center__subtitle,
.cms-sustainability .bt-card-banner-big-center__subtitle,
.cms-malting-process .bt-card-banner-big-center__subtitle,
.cms-root-revival .bt-card-banner-big-center__subtitle {
  font-family: 'GeneralSans', sans-serif;
  font-weight: 300;
  letter-spacing: 0.2px;
  vertical-align: middle;
  color: #ffffff;
}
.cms-pure-local .bt-card-banner-big-center__text,
.cms-creative-series .bt-card-banner-big-center__text,
.cms-about-us .bt-card-banner-big-center__text,
.cms-sustainability .bt-card-banner-big-center__text,
.cms-malting-process .bt-card-banner-big-center__text,
.cms-root-revival .bt-card-banner-big-center__text {
  font-family: 'GeneralSans', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.2px;
  vertical-align: middle;
  color: #ffffff;
}
.cms-pure-local .bt-card-two__title,
.cms-creative-series .bt-card-two__title,
.cms-about-us .bt-card-two__title,
.cms-sustainability .bt-card-two__title,
.cms-malting-process .bt-card-two__title,
.cms-root-revival .bt-card-two__title {
  font-family: 'PaulSmalt-Special', sans-serif;
  font-weight: 600;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #102134;
}
.cms-pure-local .bt-card-two__subtitle,
.cms-creative-series .bt-card-two__subtitle,
.cms-about-us .bt-card-two__subtitle,
.cms-sustainability .bt-card-two__subtitle,
.cms-malting-process .bt-card-two__subtitle,
.cms-root-revival .bt-card-two__subtitle {
  font-family: 'GeneralSans', sans-serif;
  font-weight: 300;
  letter-spacing: 0.2px;
  vertical-align: middle;
  color: #102134;
}
.cms-pure-local .bt-video-card,
.cms-creative-series .bt-video-card,
.cms-about-us .bt-video-card,
.cms-sustainability .bt-video-card,
.cms-malting-process .bt-video-card,
.cms-root-revival .bt-video-card {
  border-radius: 16px;
  background-color: rgba(16, 33, 52, 0.98) !important;
}
.cms-pure-local .bt-video-card__content-title,
.cms-creative-series .bt-video-card__content-title,
.cms-about-us .bt-video-card__content-title,
.cms-sustainability .bt-video-card__content-title,
.cms-malting-process .bt-video-card__content-title,
.cms-root-revival .bt-video-card__content-title {
  font-family: 'GeneralSans', sans-serif;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
  margin-bottom: 20px;
}
.cms-pure-local .bt-video-card__content-subtitle,
.cms-creative-series .bt-video-card__content-subtitle,
.cms-about-us .bt-video-card__content-subtitle,
.cms-sustainability .bt-video-card__content-subtitle,
.cms-malting-process .bt-video-card__content-subtitle,
.cms-root-revival .bt-video-card__content-subtitle {
  font-family: 'GeneralSans', sans-serif;
  font-weight: 200;
  letter-spacing: 0.20000000298023224px;
  text-align: center;
  color: #ffffff;
}
.cms-pure-local .bt-video-card__content-description,
.cms-creative-series .bt-video-card__content-description,
.cms-about-us .bt-video-card__content-description,
.cms-sustainability .bt-video-card__content-description,
.cms-malting-process .bt-video-card__content-description,
.cms-root-revival .bt-video-card__content-description {
  font-family: 'GeneralSans', sans-serif;
  font-weight: 200;
  letter-spacing: 0.20000000298023224px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 32px;
  max-width: 420px;
}
.cms-pure-local .bt-video-card__button,
.cms-creative-series .bt-video-card__button,
.cms-about-us .bt-video-card__button,
.cms-sustainability .bt-video-card__button,
.cms-malting-process .bt-video-card__button,
.cms-root-revival .bt-video-card__button {
  background-color: transparent;
  border: 0;
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 12px 24px;
  border-radius: 100px;
  cursor: pointer;
  font-family: 'GeneralSans', sans-serif;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 20px !important;
  text-align: center;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cms-pure-local .bt-video-card__button::before,
.cms-creative-series .bt-video-card__button::before,
.cms-about-us .bt-video-card__button::before,
.cms-sustainability .bt-video-card__button::before,
.cms-malting-process .bt-video-card__button::before,
.cms-root-revival .bt-video-card__button::before {
  content: '';
  background: #e73726;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  transition: 0.2s ease-out;
}
.cms-pure-local .bt-video-card__button:hover::before,
.cms-creative-series .bt-video-card__button:hover::before,
.cms-about-us .bt-video-card__button:hover::before,
.cms-sustainability .bt-video-card__button:hover::before,
.cms-malting-process .bt-video-card__button:hover::before,
.cms-root-revival .bt-video-card__button:hover::before {
  left: 0;
}
.cms-pure-local .bt-video-card__button span,
.cms-creative-series .bt-video-card__button span,
.cms-about-us .bt-video-card__button span,
.cms-sustainability .bt-video-card__button span,
.cms-malting-process .bt-video-card__button span,
.cms-root-revival .bt-video-card__button span {
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
.cms-pure-local .bt-video-card__button:hover,
.cms-creative-series .bt-video-card__button:hover,
.cms-about-us .bt-video-card__button:hover,
.cms-sustainability .bt-video-card__button:hover,
.cms-malting-process .bt-video-card__button:hover,
.cms-root-revival .bt-video-card__button:hover {
  border: 1px solid #e73726;
}
.cms-pure-local .bt-video-card__button:hover span,
.cms-creative-series .bt-video-card__button:hover span,
.cms-about-us .bt-video-card__button:hover span,
.cms-sustainability .bt-video-card__button:hover span,
.cms-malting-process .bt-video-card__button:hover span,
.cms-root-revival .bt-video-card__button:hover span {
  color: #ffffff;
}
.cms-pure-local .bt-video-card iframe,
.cms-creative-series .bt-video-card iframe,
.cms-about-us .bt-video-card iframe,
.cms-sustainability .bt-video-card iframe,
.cms-malting-process .bt-video-card iframe,
.cms-root-revival .bt-video-card iframe {
  border-radius: 16px;
}
.cms-pure-local .bt-legend-card,
.cms-creative-series .bt-legend-card,
.cms-about-us .bt-legend-card,
.cms-sustainability .bt-legend-card,
.cms-malting-process .bt-legend-card,
.cms-root-revival .bt-legend-card {
  padding: 120px 130px;
}
.cms-pure-local .bt-legend-card__title,
.cms-creative-series .bt-legend-card__title,
.cms-about-us .bt-legend-card__title,
.cms-sustainability .bt-legend-card__title,
.cms-malting-process .bt-legend-card__title,
.cms-root-revival .bt-legend-card__title {
  font-family: 'GeneralSans', sans-serif;
  font-size: 40px;
  font-weight: 200;
  line-height: 44px;
  text-align: center;
  margin-bottom: 40px;
}
.cms-pure-local .bt-legend-card__button,
.cms-creative-series .bt-legend-card__button,
.cms-about-us .bt-legend-card__button,
.cms-sustainability .bt-legend-card__button,
.cms-malting-process .bt-legend-card__button,
.cms-root-revival .bt-legend-card__button {
  background-color: #ffffff;
  border: 0;
  color: #102134;
  border: 1px solid #102134;
  padding: 12px 24px;
  border-radius: 100px;
  cursor: pointer;
  font-family: 'GeneralSans', sans-serif;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 20px !important;
  text-align: center;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cms-pure-local .bt-legend-card__button::before,
.cms-creative-series .bt-legend-card__button::before,
.cms-about-us .bt-legend-card__button::before,
.cms-sustainability .bt-legend-card__button::before,
.cms-malting-process .bt-legend-card__button::before,
.cms-root-revival .bt-legend-card__button::before {
  content: '';
  background: #e73726;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  transition: 0.2s ease-out;
}
.cms-pure-local .bt-legend-card__button:hover::before,
.cms-creative-series .bt-legend-card__button:hover::before,
.cms-about-us .bt-legend-card__button:hover::before,
.cms-sustainability .bt-legend-card__button:hover::before,
.cms-malting-process .bt-legend-card__button:hover::before,
.cms-root-revival .bt-legend-card__button:hover::before {
  left: 0;
}
.cms-pure-local .bt-legend-card__button span,
.cms-creative-series .bt-legend-card__button span,
.cms-about-us .bt-legend-card__button span,
.cms-sustainability .bt-legend-card__button span,
.cms-malting-process .bt-legend-card__button span,
.cms-root-revival .bt-legend-card__button span {
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
.cms-pure-local .bt-legend-card__button:hover,
.cms-creative-series .bt-legend-card__button:hover,
.cms-about-us .bt-legend-card__button:hover,
.cms-sustainability .bt-legend-card__button:hover,
.cms-malting-process .bt-legend-card__button:hover,
.cms-root-revival .bt-legend-card__button:hover {
  border: 1px solid #e73726;
}
.cms-pure-local .bt-legend-card__button:hover span,
.cms-creative-series .bt-legend-card__button:hover span,
.cms-about-us .bt-legend-card__button:hover span,
.cms-sustainability .bt-legend-card__button:hover span,
.cms-malting-process .bt-legend-card__button:hover span,
.cms-root-revival .bt-legend-card__button:hover span {
  color: #ffffff;
}
.cms-pure-local .bt-photo-card__soldout,
.cms-creative-series .bt-photo-card__soldout,
.cms-about-us .bt-photo-card__soldout,
.cms-sustainability .bt-photo-card__soldout,
.cms-malting-process .bt-photo-card__soldout,
.cms-root-revival .bt-photo-card__soldout {
  font-family: 'GeneralSans', sans-serif;
  font-weight: 400;
  letter-spacing: 0.20000000298023224px;
  text-align: left;
  color: #102134;
  font-size: 16px;
}
.cms-pure-local .bt-review,
.cms-creative-series .bt-review,
.cms-about-us .bt-review,
.cms-sustainability .bt-review,
.cms-malting-process .bt-review,
.cms-root-revival .bt-review {
  border-radius: 16px;
  margin-bottom: 60px;
}
.cms-pure-local .bt-review__starts,
.cms-creative-series .bt-review__starts,
.cms-about-us .bt-review__starts,
.cms-sustainability .bt-review__starts,
.cms-malting-process .bt-review__starts,
.cms-root-revival .bt-review__starts {
  max-width: 160px;
  margin-bottom: 27px;
}
.cms-pure-local .bt-review__title,
.cms-creative-series .bt-review__title,
.cms-about-us .bt-review__title,
.cms-sustainability .bt-review__title,
.cms-malting-process .bt-review__title,
.cms-root-revival .bt-review__title {
  font-family: 'GeneralSans', sans-serif;
  font-weight: 200;
  text-align: center;
  margin-bottom: 27px;
}
.cms-pure-local .bt-review__title.--white,
.cms-creative-series .bt-review__title.--white,
.cms-about-us .bt-review__title.--white,
.cms-sustainability .bt-review__title.--white,
.cms-malting-process .bt-review__title.--white,
.cms-root-revival .bt-review__title.--white {
  color: #ffffff;
}
.cms-pure-local .bt-review__title.--black,
.cms-creative-series .bt-review__title.--black,
.cms-about-us .bt-review__title.--black,
.cms-sustainability .bt-review__title.--black,
.cms-malting-process .bt-review__title.--black,
.cms-root-revival .bt-review__title.--black {
  color: #49474a;
}
.cms-pure-local .bt-review__autor,
.cms-creative-series .bt-review__autor,
.cms-about-us .bt-review__autor,
.cms-sustainability .bt-review__autor,
.cms-malting-process .bt-review__autor,
.cms-root-revival .bt-review__autor {
  font-family: 'GeneralSans', sans-serif;
  font-weight: 400;
  text-align: center;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 8px;
}
.cms-pure-local .bt-review__autor.--white,
.cms-creative-series .bt-review__autor.--white,
.cms-about-us .bt-review__autor.--white,
.cms-sustainability .bt-review__autor.--white,
.cms-malting-process .bt-review__autor.--white,
.cms-root-revival .bt-review__autor.--white {
  color: #ffffff;
}
.cms-pure-local .bt-review__autor.--black,
.cms-creative-series .bt-review__autor.--black,
.cms-about-us .bt-review__autor.--black,
.cms-sustainability .bt-review__autor.--black,
.cms-malting-process .bt-review__autor.--black,
.cms-root-revival .bt-review__autor.--black {
  color: #49474a;
}
.cms-pure-local .bt-review__company,
.cms-creative-series .bt-review__company,
.cms-about-us .bt-review__company,
.cms-sustainability .bt-review__company,
.cms-malting-process .bt-review__company,
.cms-root-revival .bt-review__company {
  font-family: 'GeneralSans', sans-serif;
  font-weight: 400;
  text-align: center;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 16px;
}
.cms-pure-local .bt-review__company.--white,
.cms-creative-series .bt-review__company.--white,
.cms-about-us .bt-review__company.--white,
.cms-sustainability .bt-review__company.--white,
.cms-malting-process .bt-review__company.--white,
.cms-root-revival .bt-review__company.--white {
  color: #ffffff;
}
.cms-pure-local .bt-review__company.--black,
.cms-creative-series .bt-review__company.--black,
.cms-about-us .bt-review__company.--black,
.cms-sustainability .bt-review__company.--black,
.cms-malting-process .bt-review__company.--black,
.cms-root-revival .bt-review__company.--black {
  color: #49474a;
}
.cms-pure-local .bt-review__logo,
.cms-creative-series .bt-review__logo,
.cms-about-us .bt-review__logo,
.cms-sustainability .bt-review__logo,
.cms-malting-process .bt-review__logo,
.cms-root-revival .bt-review__logo {
  width: 62px;
  height: 62px;
}
.cms-pure-local .bt-accordion .accordion-body,
.cms-creative-series .bt-accordion .accordion-body,
.cms-about-us .bt-accordion .accordion-body,
.cms-sustainability .bt-accordion .accordion-body,
.cms-malting-process .bt-accordion .accordion-body,
.cms-root-revival .bt-accordion .accordion-body {
  font-size: 16px;
  font-family: 'GeneralSans', sans-serif;
  font-weight: 300;
  line-height: 18px;
}
.cms-pure-local .text-align-justify,
.cms-creative-series .text-align-justify,
.cms-about-us .text-align-justify,
.cms-sustainability .text-align-justify,
.cms-malting-process .text-align-justify,
.cms-root-revival .text-align-justify {
  text-align: justify !important;
}
.cms-coa .breadcrumbs {
  display: none;
}
.cms-coa .main-title h1 {
  color: #ffffff;
  font-family: 'GeneralSans', sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 44px;
  text-align: left;
  margin-bottom: 20px;
}
.cms-coa .main-content .texts h3 {
  font-family: 'GeneralSans', sans-serif;
  color: #102134;
}
.cms-coa .main-content .texts p {
  color: #102134;
}
.cms-coa .main-content .texts .btn-container a {
  background: #102134;
  color: #ffffff;
  border-radius: 30px;
  padding: 12px 50px;
  transition: .3s;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
}
.cms-coa .main-content .texts .btn-container a:hover {
  border: 2px solid #102134;
  color: #102134;
  background: #fcf8f3;
}
.cms-coa .main-content .main-info .content-info {
  background: #ffffff;
}
.cms-coa .main-content .main-info .content-info .top-title .titles-left h2 {
  text-transform: uppercase;
  font-family: 'GeneralSans', sans-serif;
  color: #102134;
}
.cms-coa .main-content .main-info .content-info .top-title .titles-left h3 {
  color: #102134;
}
.cms-coa .main-content .main-info .content-info .certification-info h3 {
  color: #102134;
  font-weight: 900;
}
.cms-coa .main-content .main-info .content-info .certification-info .item {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 45px;
}
.cms-coa .main-content .main-info .content-info .certification-info .item .tooltip-custom {
  position: absolute;
  left: -10px;
  top: 0;
  display: flex;
  width: 30px;
  height: 30px;
  box-shadow: 0px 0px 8px #d8d8d8;
  border-radius: 6px;
  padding: 5px;
  font-style: normal;
}
.cms-coa .main-content .main-info .content-info .certification-info .item .tooltip-custom .tooltiptext {
  position: absolute;
  left: 0;
  top: 50px;
  background: white;
  width: 300px;
  box-shadow: 0px 0px 8px #d8d8d8;
  border-radius: 6px;
  padding: 20px;
}
.cms-coa .main-content .main-info .content-info .certification-info .item .tooltip-custom .tooltiptext h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  text-align: left;
  color: #102134;
}
.cms-coa .main-content .main-info .content-info .certification-info .item .tooltip-custom .tooltiptext p {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
  color: #102134;
}
.cms-coa .main-content .main-info .content-info .certification-info .item .tooltip-custom:hover {
  background: #102134;
}
.cms-coa .main-content .main-info .content-info .certification-info .item .tooltip-custom:hover .tooltiptext {
  display: flex !important;
}
.cms-coa .main-content .main-info .content-info .table-1 .item {
  display: flex;
  flex-direction: column;
  position: relative;
}
.cms-coa .main-content .main-info .content-info .table-1 .item .tooltip-custom {
  display: flex;
  width: 30px;
  height: 30px;
  box-shadow: 0px 0px 8px #d8d8d8;
  border-radius: 6px;
  padding: 5px;
}
.cms-coa .main-content .main-info .content-info .table-1 .item .tooltip-custom .tooltiptext {
  flex-direction: column;
  position: absolute;
  left: 50px;
  top: -50px;
  background: white;
  width: 300px;
  box-shadow: 0px 0px 8px #d8d8d8;
  border-radius: 6px;
  padding: 20px;
}
.cms-coa .main-content .main-info .content-info .table-1 .item .tooltip-custom .tooltiptext h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  text-align: left;
  color: #102134;
}
.cms-coa .main-content .main-info .content-info .table-1 .item .tooltip-custom .tooltiptext p {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
  color: #102134;
}
.cms-coa .main-content .main-info .content-info .table-1 .item .tooltip-custom:hover {
  background: #102134;
}
.cms-coa .main-content .main-info .content-info .table-1 .item .tooltip-custom:hover .tooltiptext {
  display: flex !important;
}
.cms-coa .main-content .main-info .content-info .table-1 .tftable {
  /* Última columna = 1/3 */
  /* Columnas del medio se reparten el tercio restante */
}
.cms-coa .main-content .main-info .content-info .table-1 .tftable .table-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .25rem;
}
.cms-coa .main-content .main-info .content-info .table-1 .tftable .table-header .table-cell {
  background: #102134;
  color: #ffffff;
}
.cms-coa .main-content .main-info .content-info .table-1 .tftable .table-header .table-cell:first-child {
  background: #102134;
}
.cms-coa .main-content .main-info .content-info .table-1 .tftable .table-row {
  display: flex;
}
.cms-coa .main-content .main-info .content-info .table-1 .tftable .table-cell {
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.cms-coa .main-content .main-info .content-info .table-1 .tftable .table-cell:first-child {
  flex: 0 0 33.33%;
}
.cms-coa .main-content .main-info .content-info .table-1 .tftable .table-cell:last-child {
  flex: 0 0 33.33%;
}
.cms-coa .main-content .main-info .content-info .table-1 .tftable .table-cell:not(:first-child):not(:last-child) {
  flex: 1;
  text-align: center;
  /* todas iguales */
}
.cms-cookie-settings .breadcrumbs {
  display: none;
}
.cms-cookie-settings .amgdprcookie-btn {
  height: 36px;
  border-radius: 20px;
  border: none;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cms-cookie-settings .amgdprcookie-btn:last-child {
  background-color: #ffffff !important;
  color: #102134 !important;
  border: 1px solid #102134 !important;
}
.cms-cookie-settings .amgdprcookie-main-wrapper {
  margin-top: 40px;
}
.cms-cookie-settings .amgdprcookie-main-wrapper .amgdprcookie-top .amgdprcookie-head {
  color: #102134;
  font-family: 'GeneralSans', sans-serif;
  font-size: 25px;
  text-transform: uppercase;
}
.cms-cookie-settings .amgdprcookie-main-wrapper .amgdprcookie-top .amgdprcookie-btn-wrapper .amgdprcookie-btn {
  padding: 13px 35px;
  font-size: 18px;
  box-shadow: none;
  background: #102134;
}
.cms-cookie-settings .amgdprcookie-main-wrapper .amgdprcookie-cookie-container {
  box-shadow: none;
  margin-bottom: 0;
}
.cms-cookie-settings .amgdprcookie-main-wrapper .amgdprcookie-cookie-container .amgdprcookie-header .amgdprcookie-caption {
  color: #102134;
}
.cms-cookie-settings .amgdprcookie-main-wrapper .amgdprcookie-cookie-container .amgdprcookie-header .amgdprcookie-input:checked:not([disabled]) + .amgdprcookie-label {
  background: #102134;
}
.cms-cookie-settings .amgdprcookie-main-wrapper .amgdprcookie-cookie-container .amgdprcookie-header .amgdprcookie-input.disabled + .amgdprcookie-label {
  background: #102134;
  opacity: .7;
}
.cms-cookie-settings .amgdprcookie-main-wrapper .amgdprcookie-cookie-container .amgdprcookie-options-wrapper .amgdprcookie-options {
  color: #102134;
  background: none;
  padding-right: 40px;
}
.cms-cookie-settings .amgdprcookie-main-wrapper .amgdprcookie-cookie-container .amgdprcookie-options-wrapper .amgdprcookie-options:hover {
  color: #102134;
}
.cms-cookie-settings .amgdprcookie-main-wrapper .amgdprcookie-cookie-container .amgdprcookie-options-wrapper .amgdprcookie-options:before,
.cms-cookie-settings .amgdprcookie-main-wrapper .amgdprcookie-cookie-container .amgdprcookie-options-wrapper .amgdprcookie-options:after {
  background: #102134;
}
.cms-cookie-settings .amgdprcookie-main-wrapper .amgdprcookie-cookie-container .amgdprcookie-options-wrapper .amgdprcookie-table .amgdprcookie-title {
  color: #102134;
}
.full-width {
  width: 100vw !important;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
@media screen and (min-resolution: 1.25dppx) {
  .menu-custom__content ul {
    padding: 60px 28px;
  }
  .menu-custom__content ul li {
    margin-bottom: 4px;
  }
  .menu-custom__content ul a {
    font-size: 1.1rem;
    line-height: 32px;
  }
  .menu-custom__actions a {
    font-size: 1.1rem;
    line-height: 32px;
  }
}
@media screen and (min-resolution: 1.5dppx) {
  .menu-custom__content ul {
    padding: 50px 24px;
  }
  .menu-custom__content ul li {
    margin-bottom: 10px;
  }
  .menu-custom__content ul a {
    font-size: 1rem;
    line-height: 28px;
  }
  .menu-custom__actions a {
    font-size: 1rem;
    line-height: 28px;
  }
  .menu-custom__title {
    padding: 20px 20px;
  }
}
@media screen and (min-resolution: 2dppx) {
  .menu-custom__content ul {
    padding: 40px 20px;
  }
  .menu-custom__content ul li {
    margin-bottom: 16px;
  }
  .menu-custom__content ul a {
    font-size: 0.9rem;
    line-height: 24px;
  }
  .menu-custom__actions a {
    font-size: 1.5rem;
    line-height: 24px;
  }
  .menu-custom__title {
    padding: 16px 16px;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1400px) {
  .menu-custom__content ul {
    padding: 60px 30px;
  }
  .menu-custom__content ul a {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1400px) and (max-width: 1600px) {
  .menu-custom__content ul {
    padding: 50px 28px;
  }
  .menu-custom__content ul a {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1600px) {
  .menu-custom__content ul {
    padding: 40px 26px;
  }
  .menu-custom__content ul a {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 1200px) {
  .menu-custom__content ul {
    padding: 70px 32px;
  }
  .menu-custom__content ul a {
    font-size: 1.3rem !important;
  }
  .menu-custom__actions a {
    font-size: 1.3rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .menu-custom__content ul {
    padding: 60px 28px;
  }
  .menu-custom__content ul a {
    font-size: 1.1rem !important;
  }
  .menu-custom__actions a {
    font-size: 1.1rem !important;
  }
}
@media screen and (max-width: 800px) {
  .menu-custom__content ul {
    padding: 50px 24px;
  }
  .menu-custom__content ul a {
    font-size: 1rem;
  }
  .menu-custom__actions a {
    font-size: 1rem;
  }
}
/* Marquee styles */
.marquee {
  --gap: 1rem;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
  width: 100vw !important;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.marquee__content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  list-style: none;
  animation: scroll 45s linear infinite;
}
.marquee--hover-pause:hover .marquee__content {
  animation-play-state: paused;
}
.marquee--fit-content {
  max-width: fit-content;
}
.marquee--pos-absolute__content:last-child {
  position: absolute;
  top: 0;
  left: 0;
  animation-name: scroll-abs;
}
@media (prefers-reduced-motion: reduce) {
  .marquee__content {
    animation-play-state: paused !important;
  }
}
/* Marquee animation */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc((-100% - var(--gap))));
  }
}
/* --- Variables Globales --- */
:root {
  --container-fluid-margin: 20px;
  --container-fluid-sm-margin: 10px;
  --box-padding: var(--container-fluid-margin);
  --site-header-height: 65px;
  --site-header-spacer-height: 95px;
}
/* Responsive variables */
@media (min-width: 768px) {
  :root {
    --container-fluid-margin: 32px;
    --container-fluid-sm-margin: 16px;
    --box-padding: 30px;
  }
}
@media (min-width: 1024px) {
  :root {
    --container-fluid-margin: 40px;
    --container-fluid-sm-margin: 20px;
    --site-header-height: 90px;
    --site-header-spacer-height: 125px;
    --box-padding: 56px;
  }
}
/* End Responsive variables */
@keyframes bounce {
  0% {
    transform: translate3d(0px, 0%, 0px);
  }
  50% {
    transform: translate3d(0px, -1.75%, 0px);
  }
  100% {
    transform: translate3d(0px, 0%, 0px);
  }
}
/* --- End Clases utilitarias --- */
.bt-featured-brands {
  /* --- Clases utilitarias --- */
}
.bt-featured-brands *,
.bt-featured-brands :after,
.bt-featured-brands :before {
  box-sizing: border-box;
}
.bt-featured-brands .t-0 {
  top: 0;
}
.bt-featured-brands .l-0 {
  left: 0;
}
.bt-featured-brands .h-100 {
  height: 100%;
}
.bt-featured-brands .box {
  display: block;
  position: relative;
}
.bt-featured-brands .box:before {
  content: "";
  display: block;
}
.bt-featured-brands .box > .box-content {
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}
.bt-featured-brands .t-md-0 {
  top: 0;
}
.bt-featured-brands .r-md-100 {
  right: 100%;
}
.bt-featured-brands .vw-100 {
  width: 100vw;
}
.bt-featured-brands .h-md-100 {
  height: 100%;
}
.bt-featured-brands__slide__media,
.bt-featured-brands__slide__panel {
  background-color: #F9F7FB;
  border-radius: 16px;
}
.bt-featured-brands__slide__panel {
  display: flex;
  flex-direction: column;
}
.bt-featured-brands__slide__panel:last-child {
  margin-bottom: 0;
}
.bt-featured-brands__slide__mask {
  position: absolute;
  top: 0;
  left: 0;
}
.bt-featured-brands__slide__mask:hover {
  animation: bounce 0.8s ease-in-out;
}
.bt-featured-brands__slide__img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}
.bt-featured-brands__slide__text {
  --self-delay: 100ms;
  line-height: 1.375;
}
.bt-featured-brands__slide__title {
  font-family: 'PaulSmalt-Special', sans-serif;
  font-weight: 700;
  text-align: left;
  color: #102134;
}
.bt-featured-brands__slide__subtitle {
  font-family: 'GeneralSans', sans-serif;
  font-weight: 300;
  letter-spacing: 0.2px;
  text-align: left;
  color: #49474A;
  text-transform: uppercase;
  --self-delay: 0ms;
}
.bt-featured-brands__slide__addtocart {
  border: 1px solid #102134;
  text-transform: uppercase;
}
.bt-featured-brands__slide__link {
  --self-delay: 150ms;
}
.bt-featured-brands__items {
  grid-gap: 20px;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.bt-featured-brands__nav {
  grid-gap: 12px;
  display: flex;
}
.bt-featured-brands__header {
  margin-bottom: 38px;
}
.bt-featured-brands__title {
  font-family: 'PaulSmalt-Special', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 44px;
  text-align: left;
  color: #102134;
  text-transform: uppercase;
}
.bt-featured-brands__viewall {
  text-transform: uppercase;
  font-family: 'GeneralSans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  margin-right: 24px;
  color: #0d6edf !important;
  transition: color ease-in-out 0.4s;
}
.bt-featured-brands__viewall:hover {
  color: #102134 !important;
}
.swiper-slide {
  transition: transform 0.3s ease, opacity 0.3s ease;
  will-change: transform, opacity;
  --index: 0;
  cursor: pointer;
}
body {
  font-family: 'GeneralSans', sans-serif;
}
@media (min-width: 768px) {
  .bt-featured-brands__slider {
    padding-left: 36px;
    width: 100vw !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
  .bt-featured-brands__slider .swiper-wrapper {
    grid-gap: 16px;
  }
  .bt-featured-brands__slide {
    flex: 0 0 294px;
    isolation: isolate;
    transform: translateZ(0);
    width: 294px;
    will-change: transform;
    z-index: 1;
    --index: 0;
    flex: 0 0 calc((100vw - 51px));
    flex: 0 0 calc((100vw - var(--container-fluid-margin)*2 - 11px));
    width: calc((100vw - 51px));
    width: calc((100vw - var(--container-fluid-margin)*2 - 11px));
    position: relative;
  }
  .bt-featured-brands__slide__figure {
    transition: transform 0.4s ease-in-out;
    display: flex;
    justify-content: center;
  }
  .bt-featured-brands__slide__caption {
    position: absolute;
    bottom: 30px;
    font-family: 'GeneralSans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.2px;
    text-align: left;
    width: 75%;
    color: #102134;
  }
  .bt-featured-brands__slide__title {
    font-size: 40px;
    line-height: 44px;
  }
  .bt-featured-brands__slide__subtitle {
    font-size: 18px;
    line-height: 24px;
  }
  .bt-featured-brands__slide__media {
    user-select: none;
    margin-bottom: 0;
    margin-left: -20px;
  }
  .bt-featured-brands__slide__media::before {
    padding-top: 170.5%;
  }
  .bt-featured-brands__slide__panel {
    align-items: start;
    justify-content: center;
    margin-top: 0;
    position: absolute;
  }
  .bt-featured-brands__slide.active .bt-featured-brands__slide__caption {
    opacity: 0;
  }
  .bt-featured-brands__slide:first-child__link,
  .bt-featured-brands__slide:first-child__subtitle,
  .bt-featured-brands__slide:first-child__text,
  .bt-featured-brands__slide:first-child__title {
    opacity: .001;
    transform: translate3d(0, 60px, 0);
  }
  .bt-featured-brands__header {
    width: 100vw !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 0 36px;
  }
}
@media (min-width: 1200px) {
  .bt-featured-brands__slider .swiper-wrapper {
    grid-gap: 20px;
  }
  .bt-featured-brands__slide {
    flex: 0 0 364px;
    min-width: 364px;
  }
  .bt-featured-brands__slide__panel {
    padding: 50px 40px;
    width: 328px;
  }
  .bt-featured-brands__slide__subtitle {
    line-height: 1.2;
  }
  .bt-featured-brands__slide__title {
    line-height: .96875;
  }
  .bt-featured-brands__slide__text {
    line-height: 1.33333333;
  }
  .bt-featured-brands__slide__panel::first-child {
    opacity: 1;
  }
  .bt-featured-brands__slide__panel:not(:first-child) {
    opacity: 0;
  }
}
@media (max-width: 767.98px) {
  .bt-featured-brands__slide__panel {
    margin-top: -20px;
    padding: 20px !important;
  }
  .bt-featured-brands__slide__media:before {
    padding-top: 120.05960265%;
  }
  .bt-featured-brands__slide__title {
    width: 100%;
    font-size: 24px;
    line-height: 28px;
  }
  .bt-featured-brands__slide__subtitle {
    font-size: 14px;
    line-height: 18px;
  }
  .bt-featured-brands__header {
    flex-direction: column;
  }
}
div.mage-error {
  font-size: .75rem;
}
select.selected {
  color: #424242 !important;
}
.label::after {
  margin: 0;
  color: #222222 !important;
}
.ui-datepicker {
  border-radius: 16px;
  background-color: #f1f1f1;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  border-color: transparent #102134 transparent transparent;
}
.ui-datepicker-current {
  border-radius: 100px;
  background-color: #102134;
  color: #ffffff;
}
.ui-datepicker-close {
  border-radius: 100px;
  color: #102134;
  border: 1px solid #102134;
}
@keyframes hs_pulse {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  20% {
    opacity: 0.6;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}
.cms-about-us .bt-map {
  position: relative;
}
.cms-about-us .bt-map__svg {
  max-width: 100%;
}
.cms-about-us .bt-tooltip {
  display: flex;
  min-width: 167px;
  padding: 6px 12px;
  gap: 12px;
  align-items: center;
  background: #f9f7fb;
  border-radius: 16px;
  border: 1px solid #c9c5ca;
}
.cms-about-us .bt-tooltip__wrapper {
  position: relative;
}
.cms-about-us .bt-tooltip__logo {
  width: auto;
  height: auto;
}
.cms-about-us .bt-tooltip__logo img {
  min-width: 45px;
  max-width: 45px;
  min-height: 45px;
  max-height: 45px;
}
.cms-about-us .bt-tooltip__title {
  font-family: 'GeneralSans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: .2px;
  color: #49474a;
  margin: 0;
}
.cms-about-us .country {
  position: absolute;
  background: #FFB612;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  border: 4px solid #fff;
  cursor: pointer;
}
.cms-about-us .country .bt-tooltip {
  position: absolute;
  transition: all 0.5s ease;
}
.cms-about-us .country .bt-tooltip.invisible {
  opacity: 0;
}
.cms-about-us .country.usa {
  top: 44%;
  left: 17%;
}
.cms-about-us .country.usa .bt-tooltip {
  top: -80px;
  left: -100px;
}
.cms-about-us .country.arg {
  bottom: 100px;
  left: 29%;
}
.cms-about-us .country.arg .bt-tooltip {
  left: 25px;
  top: -25px;
}
.cms-about-us .country.aus {
  bottom: 112px;
  right: 12%;
}
.cms-about-us .country.aus .bt-tooltip {
  right: -60px;
  top: -80px;
  min-width: 225px;
}
.cms-about-us .country.fra {
  left: 46%;
  top: 49%;
}
.cms-about-us .country.fra .bt-tooltip {
  top: 25px;
  left: -80px;
  min-width: 180px;
}
.cms-about-us .country.bel {
  left: 48%;
  top: 45%;
}
.cms-about-us .country.bel .bt-tooltip {
  top: -45px;
  left: 30px;
}
.cms-about-us .country.ing {
  left: 45%;
  top: 39%;
}
.cms-about-us .country.ing .bt-tooltip {
  top: -65px;
  left: -90px;
}
.cms-about-us .country.cro {
  left: 51%;
  top: 48%;
}
.cms-about-us .country.cro .bt-tooltip {
  top: -10px;
  left: 40px;
  min-width: 200px;
}
.cms-about-us .country.irl {
  left: 43%;
  top: 44%;
}
.cms-about-us .country.irl .bt-tooltip {
  left: -180px;
  top: -25px;
}
.cms-about-us .ox-hotspot__item.-pulse:before {
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  content: ' ' !important;
  left: 50%;
  top: 50%;
  opacity: 0;
  margin-top: -10px;
  margin-left: -10px;
  background-color: #f7e4b6;
  animation: hs_pulse 2s ease infinite;
}
.cms-about-us .ox-hotspot__item:hover {
  z-index: 2;
  transform: scale(1);
  transition: .3s;
}
.cms-about-us .ox-hotspot__item:hover .ox-hotspot__tooltip {
  transition: all 0.3s ease;
  opacity: 1;
  visibility: visible;
  top: -10px;
}
.cms-about-us .bt-accordion .flag {
  gap: 12px;
  margin-top: 12px;
}
.accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M9.99935 0.526672V19.1933M0.666016 9.86001H19.3327' stroke='%23333' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e") !important;
  width: 20px;
  height: 20px;
  background-size: 20px;
}
.accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg width='16' height='2' viewBox='0 0 16 2' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1 1H15' stroke='%23333' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e") !important;
  width: 16px;
  height: 2px;
  background-size: 16px 2px;
}
.accordion .accordion-item {
  border: 1px solid rgba(0, 0, 0, 0.125);
  margin-bottom: 8px;
  border-radius: 12px;
}
.accordion .accordion-button {
  padding: 24px 20px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 12px;
  background-color: #ffffff !important;
}
.accordion .accordion-button:not(.collapsed) {
  color: #49474a;
  background-color: #e7f1ff;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}
.accordion .accordion-button:focus {
  box-shadow: none !important;
}
.accordion .accordion-body {
  padding: 20px;
  background-color: #fff;
  border-radius: 12px;
}
.accordion-item {
  border-radius: 12px !important;
  border: 1px solid #808080;
}
.ecloud-gallery-container {
  width: 100%;
  background: white;
  position: fixed;
  top: 0;
  z-index: 9999;
  max-width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100vh;
  padding: 36px;
}
.ecloud-image-gallery .item {
  aspect-ratio: 0.87301587;
}
.ecloud-image-gallery .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.cookie-div {
  display: flex;
  justify-content: center;
}
.cookie-div #m-cookienotice {
  width: 100%;
  padding: 0.75rem 1.25rem 0.75rem 1.5625rem;
  display: flex;
  justify-content: center !important;
  align-items: center !important;
}
.cookie-div .m-message-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 0;
}
.cookie-div .m-button {
  margin-top: 0 !important;
  height: 36px;
  border-radius: 20px !important;
  padding: 8px 20px !important;
  font-size: 14px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-weight: 400;
}
.cookie-div .m-button.m-more-info {
  border: 1px solid #102134 !important;
}
.cookie-div .m-button.m-decline {
  display: none !important;
}
.cookie-div .title {
  display: none;
}
.cookie-div .m-actions {
  padding-right: 0 !important;
  display: flex !important;
  flex-direction: column;
  gap: 10px;
}
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
/*
    @_button-width: @button-primary__width,
    @_button-margin: @button-primary__margin,
    @_button-gradient-color-start: @button-primary__gradient-color-start,
    @_button-gradient-color-end: @button-primary__gradient-color-end,
    @_button-color-hover: @button-primary__hover__color,
    @_button-border-hover: @button-primary__hover__border,
    @_button-gradient-color-start-hover: @button-primary__hover__gradient-color-start,
    @_button-gradient-color-end-hover: @button-primary__hover__gradient-color-end,
    @_button-color-active: @button-primary__active__color,
    @_button-gradient-color-start-active: @button-primary__active__gradient-color-start,
    @_button-gradient-color-end-active: @button-primary__active__gradient-color-end,
    @_button-gradient: @button-primary__gradient,
    @_button-gradient-direction: @button-primary__gradient-direction
*/
.page-print .logo {
  display: block;
  float: none;
  text-align: left;
}
@media print {
  * {
    -webkit-filter: none !important;
    background: transparent !important;
    color: #000000 !important;
    filter: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline !important;
  }
  pre,
  blockquote {
    border: 1px solid #999999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  .table-wrapper table {
    width: 100%;
    table-layout: fixed;
  }
  .table-wrapper table td {
    width: auto;
  }
  .table-wrapper table > tfoot > tr:first-child {
    border-top: 1px solid #999999;
  }
  .box,
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 1cm;
  }
  .block-content,
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  .block-content {
    page-break-before: avoid;
  }
  .block-title,
  h2,
  h3 {
    page-break-after: avoid;
  }
  .nav-toggle {
    display: none !important;
  }
  .sidebar,
  .nav-sections,
  .header.content > *[class],
  .panel.wrapper > *[class],
  .footer.content > *[class] {
    display: none;
  }
  .logo,
  .footer .copyright {
    display: block !important;
    margin: 10px 0;
  }
  .order-details-items .order-items .order-gift-message:not(.expanded-content) {
    height: auto;
    visibility: visible;
  }
  .column.main {
    float: none !important;
    width: 100% !important;
  }
  .breadcrumbs {
    margin: 0 auto;
    text-align: right;
  }
  .footer.content {
    padding: 0;
  }
  .hidden-print {
    display: none !important;
  }
}
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
.form-discount .g-recaptcha {
  margin-top: 50px !important;
}
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
.login-container .g-recaptcha,
.form-login .g-recaptcha,
.form-edit-account .g-recaptcha {
  margin-bottom: 10px !important;
}
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
.required-captcha.checkbox {
  position: absolute;
  display: block;
  visibility: visible;
  overflow: hidden;
  opacity: 0;
  width: 1px;
  height: 1px;
}
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
.block.newsletter .field-recaptcha .field .control:before {
  content: none;
}
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
.review-form .field-recaptcha {
  margin-bottom: 10px;
}
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
.form.send.friend .g-recaptcha {
  margin-top: 40px;
}
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
.product-info-stock-sku .configurable-variation-qty {
  display: none;
}
@keyframes loading {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(359.9deg);
  }
}
.-am-blocked {
  pointer-events: none;
}
._amcheckout-selectable-container {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
}
._amcheckout-selectable-item {
  display: block;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 0 20px;
  width: 100%;
  border: 1px solid #f9f9f9;
  border-radius: 2px;
  background: #f9f9f9;
  cursor: pointer;
}
._amcheckout-selectable-item:not(:last-of-type) {
  margin-bottom: 15px;
}
._amcheckout-selectable-item:hover {
  box-shadow: 0 2px 8px rgba(56, 77, 108, 0.4);
}
._amcheckout-selectable-item.-selected {
  border-color: #1979c3;
}
@media all and (min-width: 1024px) {
  ._amcheckout-selectable-item:nth-last-child(-n + 2) {
    margin-bottom: 0;
  }
}
form[id='co-shipping-method-form'] div.field.choice.item {
  padding: 8px;
}
.contract_selector_container {
  position: fixed;
  top: 0;
  right: -100%;
  background: #ffffff;
  z-index: 9;
  height: var(--doc-height);
  display: flex;
  justify-content: center;
  padding: 32px 40px;
  transition: 0.5s ease-out;
}
.contract_selector_container.active {
  right: 0;
}
.contract-selector {
  height: 100%;
}
.contract-selector__title {
  font-family: 'GeneralSans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #102134;
}
.contract-selector__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.contract-selector__confirmation {
  align-items: center;
  justify-content: center;
}
.contract-selector__confirmation-title {
  font-family: 'GeneralSans', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0px;
  text-align: center;
  color: #102134;
}
.contract-selector__confirmation-subtitle {
  font-family: 'GeneralSans', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.2px;
  text-align: center;
  color: #49474a;
}
.contract-selector__confirmation-actions {
  width: 100%;
  position: absolute;
  bottom: 0;
}
.contract-selector__subtitle {
  font-family: 'GeneralSans', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.2px;
  vertical-align: middle;
  color: #49474a;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.contract-selector__subtitle::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background-image: url('../images/alert-triangle.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.contract-selector__options {
  margin-top: 32px;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contract-selector__actions {
  background-color: #ffffff;
  z-index: 99;
  display: flex;
  justify-content: end;
  gap: 20px;
}
.contract-selector__section-title {
  font-family: 'GeneralSans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #49474a;
  margin-bottom: 0px;
}
.contract-selector__section-subtitle {
  font-family: 'GeneralSans', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.2px;
  vertical-align: middle;
  color: #49474a;
  margin-bottom: 12px;
}
.contract-selector__option-address {
  font-family: 'GeneralSans', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.2px;
  vertical-align: middle;
  width: 100%;
  max-width: 90%;
  color: #49474a;
  margin-left: 30px;
}
.contract-selector__option {
  padding: 24px 32px;
  border: 1px solid #c9c5ca;
  border-radius: 16px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  flex-wrap: wrap;
}
.contract-selector__option input,
.contract-selector__option label {
  margin: 0;
}
.contract-selector__option input {
  width: 16px;
  height: 16px;
}
.contract-selector__option label {
  font-family: 'GeneralSans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.2px;
  vertical-align: middle;
  color: #49474a;
  max-width: 100%;
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contract-selector__option-details {
  position: relative;
  cursor: pointer;
}
.contract-selector__option-details .contract-selector__option-details-tooltip {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  position: absolute;
  top: -20px;
  left: -215px;
  min-width: 200px;
  min-height: 100px;
  color: #282728;
  background: #ffffff;
  padding: 12px;
  border-radius: 16px;
  z-index: 100;
  border: 1px solid #c9c5ca;
  font-family: 'GeneralSans', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contract-selector__option-details .contract-selector__option-quantity {
  border-top: 1px solid #c9c5ca;
  padding-top: 8px;
}
.contract-selector__option-details:hover .contract-selector__option-details-tooltip {
  opacity: 1;
}
.contract-selector__option.selected {
  border-color: #e73726;
}
.contract-selector__address {
  font-family: 'GeneralSans', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.2px;
  color: #49474a;
  width: 100%;
}
.contract-selector__current {
  font-family: 'GeneralSans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.2px;
  padding: 6px 12px;
  background: #e73726;
  color: #ffffff;
  border-radius: 16px;
  margin-left: 30px;
}
.contract-selector__close {
  position: sticky;
  top: 32px;
  cursor: pointer;
}
.contract-selector__close:hover .contract-top-header__tooltip-text {
  opacity: .8;
}
.contract-selector__confirmation-inner {
  justify-content: center;
  height: 100%;
}
.contract-selector .section-title {
  margin-bottom: 12px;
}
.contract-selector.active {
  right: 0 !important;
}
.contract-selector .contract-selector__list.address-list,
.contract-selector .contract-selector__list.contract-list {
  overflow-y: auto;
  margin-bottom: 16px;
  position: relative;
}
.contract-selector .contract-selector__list.address-list:after,
.contract-selector .contract-selector__list.contract-list:after {
  content: "";
  position: sticky;
  display: block;
  height: 40px;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
}
.contract-selector .contract-content,
.contract-selector .contract-selector__confirmation {
  display: none !important;
  opacity: 0;
  transition: visibility 0.3s ease-in-out;
}
.contract-selector .contract-content.show,
.contract-selector .contract-selector__confirmation.show {
  display: block !important;
  height: 100%;
  opacity: 1;
}
.contract-selector .contract-selector__option {
  position: relative;
}
.contract-top-header {
  background: #282728;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  font-family: 'GeneralSans', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  vertical-align: middle;
  gap: 20px;
}
.contract-top-header__title-text {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
}
.contract-top-header__title-text.loading {
  background: red;
  height: 20px;
  width: 20px;
}
.contract-top-header__actions-button {
  color: #618dff;
  cursor: pointer;
}
.contract-top-header__tooltip-text {
  background: #282728;
  padding: 10px;
  color: #ffffff;
  font-family: 'GeneralSans', sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0px;
  border-radius: 16px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.contract-selector-alert .modal-title {
  display: none;
}
.contract-selector-alert .modal-inner-wrap {
  width: 30%;
}
.contract-selector-alert .modal-footer {
  justify-content: center;
}
.contract-error-modal .modal-inner-wrap {
  min-height: 150px;
  gap: 16px;
}
.contract-information {
  margin-bottom: 24px;
  display: flex;
  gap: 8px;
}
.contract-information__title {
  font-family: 'GeneralSans', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #102134;
}
.contract-information__title-number {
  text-transform: lowercase;
}
.contract-information__tooltip {
  position: relative;
}
.contract-information__tooltip-text {
  position: absolute;
  background: #282728;
  padding: 10px;
  color: #ffffff;
  font-family: 'GeneralSans', sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0px;
  border-radius: 16px;
  width: 278px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.contract-information__tooltip:hover .contract-information__tooltip-text {
  opacity: 1;
}
.catalog-product-view .contract-top-header {
  order: 0;
}
.catalog-product-view .page-header {
  order: 1;
}
.catalog-product-view #maincontent {
  order: 2;
}
.catalog-product-view .page-main-details {
  order: 3;
}
.catalog-product-view .page-footer {
  order: 4;
}
/**
 * Mageplaza
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Mageplaza.com license that is
 * available through the world-wide-web at this URL:
 * https://www.mageplaza.com/LICENSE.txt
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade this extension to newer
 * version in the future.
 *
 * @category    Mageplaza
 * @package     Mageplaza_Blog
 * @copyright   Copyright (c) Mageplaza (https://www.mageplaza.com/)
 * @license     https://www.mageplaza.com/LICENSE.txt
 */
.mp-blog-view a,
.mp-sidebar a {
  text-decoration: none;
}
.mp-blog-rss {
  text-align: right;
}
.mp-post-info {
  color: #999999;
  font-size: 10px;
  line-height: 18px;
  margin: 0;
}
.mp-post-info span {
  color: #6f6f6f;
}
.post-item-wraper {
  border: 1px solid #eee;
}
.post-item-wraper:hover {
  border: 1px solid #eee;
  box-shadow: 3px 3px 4px 0 rgba(0, 0, 0, 0.3);
}
.post-info-wraper {
  padding: 20px 15px 10px 15px;
}
.post-list-item {
  margin-bottom: 20px;
}
.post-short-description {
  max-width: 100%;
}
.post-short-description p {
  max-width: 100%;
}
.post-post_content {
  margin: 10px 0 10px 0;
}
@media (min-width: 768px) {
  .post-sharing-button {
    text-align: center;
  }
}
@media (min-width: 768px) {
  #sharing .share-col-left {
    float: left;
    width: 20%;
  }
}
.about-admin h4.admin-title {
  width: 215px;
  float: left;
}
.block-blog-related {
  margin-top: 35px;
}
.block-blog-related .related-content-container {
  padding: 0 10px;
}
.block-blog-related .related-content-container .author-content-image {
  float: left;
  width: 135px;
}
.block-blog-related .related-content-container .author-content-information {
  float: left;
  padding-left: 20px;
  width: calc(100% - 155px);
}
.block-blog-related .related-content-container .author-content-information .author-name {
  font-size: 20px;
}
#post-reviews {
  margin-top: 50px;
}
a.mp-relate-link {
  background: #f55567;
  color: #0a0a0a;
}
a.mp-relate-link img.img-responsive {
  margin: 0 auto;
  height: 200px;
  display: block;
}
.menu-archives {
  list-style: none;
  padding-left: 8px;
}
.menu-archives a.list-archives {
  color: inherit;
}
.author-image {
  text-align: center;
}
.author-image img.img-responsive {
  border: none;
  padding-right: 7px;
  padding-left: 7px;
  margin-top: 15px;
  margin-bottom: 20px;
}
.tab-content {
  border: 1px solid #ddd;
  border-top: none;
}
.pager {
  text-align: center;
}
.pager span.toolbar-number {
  display: none;
}
.block-title p {
  font-size: 18px;
  font-weight: 300;
}
.mp-sidebar {
  margin-bottom: 25px;
}
.mp-sidebar .block-content {
  padding-left: 10px;
}
.mp-sidebar .data.item.title {
  cursor: pointer;
}
.mp-sidebar .product.data.items > .item.content {
  padding: 20px 0 20px 10px !important;
}
.sidebar-tags {
  margin-bottom: 15px;
}
a.label.label-default.tags-list {
  background: #fff;
  border: 1px solid #bbb;
  color: inherit;
  font-weight: normal;
  font-size: 100%;
  border-radius: 1px;
  display: inline-block;
  margin-bottom: 5px;
  padding: 10px;
  margin-right: 5px;
}
ul.menu-categories li.category-item {
  list-style: none;
}
ul.menu-categories .category-level3 {
  display: none;
  padding-left: 15px;
}
ul.menu-categories .category-level4 {
  display: none;
  padding-left: 30px;
}
ul.menu-categories a.list-categories {
  color: inherit;
  margin-left: 8px;
}
ul.menu-categories i {
  cursor: pointer;
}
h2.list-title {
  margin-bottom: 30px;
}
.list-post-tabs {
  padding: 5px 10px 5px 0;
}
.list-post-tabs:hover {
  background-color: #eee;
}
.list-post-tabs .post-left {
  float: left;
  width: 25%;
}
.list-post-tabs .post-right {
  float: left;
  width: 75%;
  padding-left: 10px;
  box-sizing: border-box;
}
.list-post-tabs .post-right span {
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}
.list-post-tabs .post-right span.create-at {
  font-size: 12px;
}
.tab-pane.fade {
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
}
.fa.fa-angle-right {
  font-size: larger;
}
.sidebar .mpblog-search {
  float: none !important;
  padding: 0 !important;
  margin-bottom: 15px !important;
  width: 100%;
}
.autocomplete-suggestions {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #ddd;
  background: #FFF;
  cursor: default;
  overflow: auto;
  -webkit-box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64);
  -moz-box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64);
  box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64);
  border-top: 0;
  padding: 10px 0;
  overflow-x: hidden;
}
.autocomplete-suggestions strong {
  font-weight: bold;
  color: #000;
}
.autocomplete-suggestion {
  padding: 2px 5px;
  border-bottom: 1px solid #eee;
}
.autocomplete-suggestion:last-child {
  border-bottom: none;
}
.autocomplete-suggestion .mpblog-suggestion {
  display: block;
}
.autocomplete-suggestion .mpblog-suggestion:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.autocomplete-suggestion .mpblog-suggestion .mpblog-suggestion-left,
.autocomplete-suggestion .mpblog-suggestion .mpblog-suggestion-right {
  float: left;
  padding: 5px 10px;
}
.autocomplete-suggestion .mpblog-suggestion .mpblog-suggestion-left {
  max-width: 25%;
}
.autocomplete-suggestion .mpblog-suggestion .mpblog-suggestion-right.image-visible {
  max-width: calc(75% - 40px);
}
.autocomplete-no-suggestion {
  padding: 2px 5px;
}
.autocomplete-selected {
  background: #F0F0F0;
}
.autocomplete-group {
  padding: 2px 5px;
  font-weight: bold;
  font-size: 16px;
  color: #000;
  display: block;
  border-bottom: 1px solid #000;
}
.mpblog-product-des {
  color: #333333;
}
.mpblog-product-des p {
  margin: 0;
  font-size: 12px;
}
.mpblog-search {
  position: relative;
}
.mpblog-search button.action.search {
  display: inline-block;
  background: none !important;
  -moz-box-sizing: content-box;
  border: 0;
  box-shadow: none;
  line-height: inherit;
  margin: 0;
  padding: 0;
  text-shadow: none;
  font-weight: 400;
  position: absolute;
  right: 10px;
  top: 2px;
  z-index: 1;
}
.mpblog-search button.action.search :before {
  -webkit-font-smoothing: antialiased;
  color: #8f8f8f;
}
.mpblog-search button.action.search span {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.mpblog-search label[for="mpblog-search-box"] {
  display: none;
}
/* style comment */
textarea.default-cmt__content__cmt-block__cmt-box__cmt-input {
  overflow: hidden !important;
  resize: none;
  min-height: 80px;
  border-radius: 4px;
  margin-bottom: 15px;
}
.default-cmt__content__cmt-block__guest-box {
  margin-bottom: 20px;
}
.show-cmt__cmt-row.is-reply {
  padding-left: 50px !important;
}
.default-cmt__content__cmt-block__cmt-box__cmt-btn {
  float: right;
}
.default-cmt__content__cmt-block__cmt-box__cmt-btn .default-cmt_loading {
  display: inline-block;
  width: 20px;
  vertical-align: middle;
  margin-right: 5px;
}
.cmt-row__reply-row {
  margin-top: 10px;
}
.default-cmt__cmt-login {
  float: right;
  margin-top: 20px;
  margin-bottom: 10px;
}
div.default-cmt__content__cmt-content {
  width: 100%;
  margin-top: 50px;
  float: left;
}
ul.default-cmt__content__cmt-content {
  list-style: none !important;
}
.cmt-row__cmt-content {
  font-size: 13px;
}
.cmt-row__cmt-interactions {
  font-size: 13px;
}
.cmt-row__cmt-content p {
  margin: 3px 0 !important;
}
.interactions__btn-actions {
  display: inline-block;
  margin-right: 10px;
}
a.interactions__btn-actions.action {
  cursor: pointer;
}
.interactions__cmt-createdat {
  display: inline-block;
  color: #999;
  font-size: 13px;
}
.cmt-row.reply-row {
  margin-bottom: 0 !important;
}
.reply-form__form-input {
  margin-bottom: 0 !important;
  position: relative;
}
.reply-form__form-input .default-cmt_loading {
  width: 20px;
  position: absolute;
  top: 5px;
  right: 5px;
}
.default-cmt__content__cmt-row.reply-row {
  margin-top: 0 !important;
}
li.default-cmt__content__cmt-content__cmt-row.cmt-row.reply-row {
  margin-top: 5px;
  padding-bottom: 0;
}
li.default-cmt__content__cmt-content__cmt-row.cmt-row {
  margin-top: 5px;
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-top: 1px solid #f5f5f5;
}
.default-cmt__content__cmt-content ul:first-child {
  padding-left: 5px !important;
}
/* end style comment */
.widget-title {
  margin-bottom: 20px;
}
.author-social img.img-responsive {
  float: left;
  margin-top: 15px;
  margin-left: 15px;
  height: 25px;
  width: 25px;
}
.share-col-right {
  display: inline-block;
}
/*post view css*/
.page-layout-1column .column.main {
  width: 100% !important;
}
/* Footer Copyright */
.mp-footer {
  margin-top: 50px;
  font-size: 8px !important;
  display: block;
  clear: both;
  float: right;
  text-transform: inherit;
}
.mp-footer h3 {
  margin-top: 50px;
  font-size: 8px !important;
  display: block;
  clear: both;
  float: right;
  text-transform: inherit;
}
.mp-footer-links-light {
  color: #E8E8E8 !important;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}
.mp-footer-links-light a {
  color: #E8E8E8 !important;
}
.post-image {
  min-height: 250px;
  position: relative;
}
.post-image img.img-responsive {
  max-height: 100%;
  max-width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  border: none;
}
.mpblog-post-view .post-view-image {
  text-align: center;
}
.post-item-wraper {
  padding: 10px !important;
}
@media only screen and (min-width: 600px) {
  .post-item-list .post-image {
    min-width: 250px;
    display: table-cell;
  }
  .post-item-list .post-info-wraper {
    display: table-cell;
    vertical-align: top;
  }
}
.post-info-wraper {
  display: table-cell;
  vertical-align: top;
}
.post-info-wraper h2.mp-post-title {
  margin-top: 0;
}
.post-list-content .limiter {
  display: block !important;
}
/** Yourstore theme */
.mpblog-etheme-yourstore .post-list-container,
.mpblog-etheme-yourstore .post-view,
.mpblog-etheme-yourstore .mp-blog-rss {
  width: 85%;
  margin: auto;
}
.mpblog-etheme-yourstore .block-blog-related {
  border-bottom: solid 1px #dfdfdf;
}
@media (min-width: 768px) {
  .mpblog-etheme-yourstore .page-layout-2columns-right .post-list-content {
    border-right: solid 1px #dfdfdf;
  }
  .mpblog-etheme-yourstore .page-layout-2columns-left .post-list-content {
    border-left: solid 1px #dfdfdf;
  }
}
@media (min-width: 1024px) {
  .mpblog-etheme-yourstore .products-same-post li {
    height: 400px;
    width: 24.5% !important;
  }
}
@media (min-width: 1440px) {
  .mpblog-etheme-yourstore .products-same-post li {
    height: 500px;
    width: 16.67% !important;
  }
}
@media all and (min-width: 640px) {
  .post-list-content .products-grid .product-item {
    width: 48%;
  }
}
@media all and (max-width: 640px) {
  .post-list-content .products-grid .product-item {
    width: 98%;
  }
}
/* mageplaza end blog style */
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
*/
@media only screen and (min-device-width: 320px) and (max-device-width: 780px) and (orientation: landscape) {
  .product-video {
    height: 100%;
    width: 81%;
  }
}
.file-uploader-area {
  position: relative;
}
.file-uploader-area input[type='file'] {
  cursor: pointer;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  visibility: hidden;
  width: 0;
}
.file-uploader-area input[type='file']:focus + .file-uploader-button {
  box-shadow: 0 0 0 1px #006bb4;
}
.file-uploader-area input[type='file']:disabled + .file-uploader-button {
  cursor: default;
  opacity: .5;
  pointer-events: none;
}
.file-uploader-summary {
  display: inline-block;
  vertical-align: top;
}
.file-uploader-button {
  background: #eeeeee;
  border: 1px solid #cccccc;
  box-sizing: border-box;
  color: #333333;
  cursor: pointer;
  display: inline-block;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.6rem;
  margin: 0;
  padding: 7px 15px;
  vertical-align: middle;
}
.file-uploader-button._is-dragover {
  background: #d4d4d4;
  border: 1px solid #006bb4;
}
.file-uploader-spinner {
  background-image: url('../images/loader-1.gif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 15px;
  display: none;
  height: 30px;
  margin-left: 10px;
  vertical-align: top;
  width: 15px;
}
.file-uploader-preview .action-remove {
  bottom: 4px;
  cursor: pointer;
  display: block;
  height: 27px;
  left: 6px;
  padding: 2px;
  position: absolute;
  text-decoration: none;
  width: 25px;
  z-index: 2;
}
.file-uploader-preview .action-remove > span {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.file-uploader-preview .action-remove:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.6rem;
  line-height: inherit;
  color: #514943;
  content: '\e604';
  font-family: 'luma-icons';
  vertical-align: middle;
  display: inline-block;
  font-weight: normal;
  overflow: hidden;
  speak: none;
  text-align: center;
}
.file-uploader-preview .action-remove:hover:before {
  color: #736963;
}
.file-uploader-preview:hover .preview-image img,
.file-uploader-preview:hover .preview-link:before {
  opacity: 0.7;
}
.file-uploader-preview .preview-link {
  display: block;
  height: 100%;
}
.file-uploader-preview .preview-image img {
  bottom: 0;
  left: 0;
  margin: auto;
  max-height: 100%;
  max-width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.file-uploader-preview .preview-video {
  display: inline-block;
  text-decoration: none;
}
.file-uploader-preview .preview-video:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 4rem;
  line-height: inherit;
  color: #cccccc;
  content: '\e626';
  font-family: 'luma-icons';
  vertical-align: middle;
  display: inline-block;
  font-weight: normal;
  overflow: hidden;
  speak: none;
  text-align: center;
}
.file-uploader-preview .preview-video:hover:before {
  color: #cccccc;
}
.file-uploader-preview .preview-video:before {
  left: 0;
  margin-top: -2rem;
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 2;
}
.file-uploader-preview .preview-document {
  display: inline-block;
  text-decoration: none;
}
.file-uploader-preview .preview-document:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 7rem;
  line-height: inherit;
  color: #cccccc;
  content: '\e626';
  font-family: 'luma-icons';
  vertical-align: middle;
  display: inline-block;
  font-weight: normal;
  overflow: hidden;
  speak: none;
  text-align: center;
}
.file-uploader-preview .preview-document:hover:before {
  color: #cccccc;
}
.file-uploader-preview .preview-document:before {
  left: 0;
  margin-top: -3.5rem;
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 2;
}
.file-uploader-preview,
.file-uploader-placeholder {
  background: #ffffff;
  border: 1px solid #cacaca;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 150px;
  line-height: 1;
  margin: 10px 25px 10px 0;
  overflow: hidden;
  position: relative;
  width: 150px;
}
.file-uploader._loading .file-uploader-spinner {
  display: inline-block;
}
.file-uploader .admin__field-note,
.file-uploader .admin__field-error {
  margin-bottom: 10px;
}
.file-uploader .file-uploader-filename {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 150px;
  word-break: break-all;
}
.file-uploader .file-uploader-filename:first-child {
  margin-bottom: 10px;
}
.file-uploader .file-uploader-meta {
  color: #9e9e9e;
}
.file-uploader .admin__field-fallback-reset {
  margin-left: 10px;
}
._keyfocus .file-uploader .action-remove:focus {
  box-shadow: 0 0 0 1px #006bb4;
}
.file-uploader-placeholder.placeholder-document {
  display: inline-block;
  text-decoration: none;
}
.file-uploader-placeholder.placeholder-document:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 5rem;
  line-height: inherit;
  color: #cccccc;
  content: '\e626';
  font-family: 'luma-icons';
  vertical-align: middle;
  display: inline-block;
  font-weight: normal;
  overflow: hidden;
  speak: none;
  text-align: center;
}
.file-uploader-placeholder.placeholder-document:hover:before {
  color: #cccccc;
}
.file-uploader-placeholder.placeholder-document:before {
  left: 0;
  position: absolute;
  right: 0;
  top: 20px;
  z-index: 2;
}
.file-uploader-placeholder.placeholder-image {
  display: inline-block;
  text-decoration: none;
}
.file-uploader-placeholder.placeholder-image:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 5rem;
  line-height: inherit;
  color: #cccccc;
  content: '\e626';
  font-family: 'luma-icons';
  vertical-align: middle;
  display: inline-block;
  font-weight: normal;
  overflow: hidden;
  speak: none;
  text-align: center;
}
.file-uploader-placeholder.placeholder-image:hover:before {
  color: #cccccc;
}
.file-uploader-placeholder.placeholder-image:before {
  left: 0;
  position: absolute;
  right: 0;
  top: 20px;
  z-index: 2;
}
.file-uploader-placeholder.placeholder-video {
  display: inline-block;
  text-decoration: none;
}
.file-uploader-placeholder.placeholder-video:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 3rem;
  line-height: inherit;
  color: #cccccc;
  content: '\e626';
  font-family: 'luma-icons';
  vertical-align: middle;
  display: inline-block;
  font-weight: normal;
  overflow: hidden;
  speak: none;
  text-align: center;
}
.file-uploader-placeholder.placeholder-video:hover:before {
  color: #cccccc;
}
.file-uploader-placeholder.placeholder-video:before {
  left: 0;
  position: absolute;
  right: 0;
  top: 30px;
  z-index: 2;
}
.file-uploader-placeholder-text {
  bottom: 0;
  color: #008bdb;
  font-size: 1.1rem;
  left: 0;
  line-height: 1.42857143;
  margin-bottom: 15%;
  padding: 0 20px;
  position: absolute;
  right: 0;
  text-align: center;
}
.data-grid-file-uploader {
  min-width: 7rem;
}
.data-grid-file-uploader._loading .file-uploader-spinner {
  display: block;
}
.data-grid-file-uploader._loading .file-uploader-button:before {
  display: none;
}
.data-grid-file-uploader .file-uploader-image {
  background: transparent;
  bottom: 0;
  left: 0;
  margin: auto;
  max-height: 100%;
  max-width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.data-grid-file-uploader .file-uploader-image + .file-uploader-area .file-uploader-button:before {
  display: none;
}
.data-grid-file-uploader .file-uploader-area {
  z-index: 2;
}
.data-grid-file-uploader .file-uploader-spinner {
  height: 100%;
  margin: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.data-grid-file-uploader .file-uploader-button {
  height: 48px;
  text-align: center;
  display: block;
  text-decoration: none;
}
.data-grid-file-uploader .file-uploader-button > span {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.data-grid-file-uploader .file-uploader-button:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.3rem;
  line-height: 48px;
  color: #8a837f;
  content: '\e626';
  font-family: 'luma-icons';
  vertical-align: middle;
  display: inline-block;
  font-weight: normal;
  overflow: hidden;
  speak: none;
  text-align: center;
}
.data-grid-file-uploader .file-uploader-button:hover:before {
  color: #666666;
}
.data-grid-file-uploader .action-select-wrap {
  float: left;
}
.data-grid-file-uploader .action-select-wrap .action-select {
  border: 1px solid #cacaca;
  display: block;
  height: 5rem;
  margin-left: -1px;
  padding: 0;
  width: 2rem;
}
.data-grid-file-uploader .action-select-wrap .action-select:after {
  border-color: #8a837f transparent transparent transparent;
  left: 50%;
  margin: 0 0 0 -5px;
}
.data-grid-file-uploader .action-select-wrap .action-select:hover:after {
  border-color: #666666 transparent transparent transparent;
}
.data-grid-file-uploader .action-select-wrap .action-select > span {
  display: none;
}
.data-grid-file-uploader .action-select-wrap .action-menu {
  left: 4rem;
  right: auto;
  z-index: 2;
}
.data-grid-file-uploader-inner {
  border: 1px solid #cacaca;
  float: left;
  height: 5rem;
  position: relative;
  width: 5rem;
}
@media only screen and (max-width: 1024px) {
  .field-tooltip .field-tooltip-content {
    left: auto;
    right: -10px;
    top: 40px;
  }
  .field-tooltip .field-tooltip-content::before,
  .field-tooltip .field-tooltip-content::after {
    border: 10px solid transparent;
    height: 0;
    left: auto;
    margin-top: -21px;
    right: 10px;
    top: 0;
    width: 0;
  }
  .field-tooltip .field-tooltip-content::before {
    border-bottom-color: #999999;
  }
  .field-tooltip .field-tooltip-content::after {
    border-bottom-color: #f4f4f4;
    top: 1px;
  }
}
@media only screen and (max-width: 1024px) {
  .opc-block-summary .product-item .product-item-inner {
    display: block;
  }
  .opc-block-summary .product-item .product-item-name-block {
    display: block;
    text-align: left;
  }
  .opc-block-summary .product-item .subtotal {
    display: block;
    text-align: left;
  }
}
#registrant-options .item .control table .col.qty .input-qty {
  display: none;
}
@media all and (min-width: 1024px), print {
  .abs-product-options-list-desktop dt,
  .block-giftregistry-shared .item-options dt {
    clear: left;
    float: left;
    margin: 0 10px 5px 0;
  }
  .block-giftregistry-shared .item-options dt:after {
    content: ': ';
  }
  .abs-product-options-list-desktop dd,
  .block-giftregistry-shared .item-options dd {
    display: inline-block;
    float: left;
    margin: 0 0 5px;
    word-break: break-all;
  }
  .abs-button-desktop {
    width: auto;
  }
  .abs-blocks-2columns,
  .abs-discount-block-desktop .block,
  .column .block-addbysku .block-content .box,
  .login-container .block,
  .account .column.main .block:not(.widget) .block-content .box,
  .form-address-edit > .fieldset,
  .form-edit-account .fieldset,
  .storecredit .block,
  .paypal-review-discount .block,
  .cart-discount .block {
    width: 48%;
  }
  .abs-discount-block-desktop .block:nth-child(1),
  .column .block-addbysku .block-content .box:nth-child(1),
  .login-container .block:nth-child(1),
  .account .column.main .block:not(.widget) .block-content .box:nth-child(1),
  .form-address-edit > .fieldset:nth-child(1),
  .form-edit-account .fieldset:nth-child(1),
  .storecredit .block:nth-child(1),
  .paypal-review-discount .block:nth-child(1),
  .cart-discount .block:nth-child(1) {
    clear: left;
    float: left;
  }
  .abs-discount-block-desktop .block:nth-child(2),
  .column .block-addbysku .block-content .box:nth-child(2),
  .login-container .block:nth-child(2),
  .account .column.main .block:not(.widget) .block-content .box:nth-child(2),
  .form-address-edit > .fieldset:nth-child(2),
  .form-edit-account .fieldset:nth-child(2),
  .storecredit .block:nth-child(2),
  .paypal-review-discount .block:nth-child(2),
  .cart-discount .block:nth-child(2) {
    float: right;
  }
  .abs-discount-block-desktop .block:nth-child(2) + *,
  .column .block-addbysku .block-content .box:nth-child(2) + *,
  .login-container .block:nth-child(2) + *,
  .account .column.main .block:not(.widget) .block-content .box:nth-child(2) + *,
  .form-address-edit > .fieldset:nth-child(2) + *,
  .form-edit-account .fieldset:nth-child(2) + *,
  .storecredit .block:nth-child(2) + *,
  .paypal-review-discount .block:nth-child(2) + *,
  .cart-discount .block:nth-child(2) + * {
    clear: both;
  }
  .abs-margin-for-blocks-and-widgets-desktop,
  .page-main .block,
  .customer-review .product-details {
    margin-bottom: 50px;
  }
  .abs-reset-left-margin-desktop,
  .column.main .paypal-review .actions-toolbar,
  .column.main .block-giftregistry-shared-items .actions-toolbar {
    margin-left: 0;
  }
  .abs-action-remove-desktop,
  .abs-add-fields-desktop .fieldset .additional .action.remove,
  .form-giftregistry-share .fieldset .additional .action.remove,
  .form-giftregistry-edit .fieldset .additional .action.remove,
  .form-create-return .fieldset .additional .action.remove,
  .form.send.friend .fieldset .additional .action.remove {
    margin-left: 90%;
  }
  .abs-add-fields-desktop .fieldset .field .control,
  .form-giftregistry-share .fieldset .field .control,
  .form-giftregistry-edit .fieldset .field .control,
  .form-create-return .fieldset .field .control,
  .form.send.friend .fieldset .field .control {
    width: auto;
  }
  .abs-margin-for-forms-desktop,
  .fieldset .legend {
    margin-left: 25.8%;
  }
  .abs-visually-hidden-desktop,
  .modes-label,
  .block-search .label,
  .block-collapsible-nav .title {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .abs-add-clearfix-desktop:before,
  .abs-add-clearfix-desktop:after,
  .paypal-review .block-content:before,
  .paypal-review .block-content:after,
  .paypal-review-discount:before,
  .paypal-review-discount:after,
  .order-review-form:before,
  .order-review-form:after,
  .block-cart-failed .block-content:before,
  .block-cart-failed .block-content:after,
  .column .block-addbysku .block-content:before,
  .column .block-addbysku .block-content:after,
  .cart-container:before,
  .cart-container:after,
  .login-container:before,
  .login-container:after,
  .account .page-title-wrapper:before,
  .account .page-title-wrapper:after,
  .account .column.main .block:not(.widget) .block-content:before,
  .account .column.main .block:not(.widget) .block-content:after,
  .block-addresses-list .items.addresses:before,
  .block-addresses-list .items.addresses:after,
  .block-giftregistry-shared .item-options:before,
  .block-giftregistry-shared .item-options:after,
  .data.table .gift-wrapping .nested:before,
  .data.table .gift-wrapping .nested:after,
  .data.table .gift-wrapping .content:before,
  .data.table .gift-wrapping .content:after,
  .block-wishlist-management:before,
  .block-wishlist-management:after,
  .magento-rma-guest-returns .column.main .block.block-order-details-view:before,
  .magento-rma-guest-returns .column.main .block.block-order-details-view:after,
  .order-links:before,
  .order-links:after,
  .account .column.main .block.block-order-details-view:before,
  .account .column.main .block.block-order-details-view:after,
  [class^='sales-guest-'] .column.main .block.block-order-details-view:before,
  [class^='sales-guest-'] .column.main .block.block-order-details-view:after,
  .sales-guest-view .column.main .block.block-order-details-view:before,
  .sales-guest-view .column.main .block.block-order-details-view:after,
  .page-header .header.panel:before,
  .page-header .header.panel:after,
  .header.content:before,
  .header.content:after {
    content: '';
    display: table;
  }
  .abs-add-clearfix-desktop:after,
  .paypal-review .block-content:after,
  .paypal-review-discount:after,
  .order-review-form:after,
  .block-cart-failed .block-content:after,
  .column .block-addbysku .block-content:after,
  .cart-container:after,
  .login-container:after,
  .account .page-title-wrapper:after,
  .account .column.main .block:not(.widget) .block-content:after,
  .block-addresses-list .items.addresses:after,
  .block-giftregistry-shared .item-options:after,
  .data.table .gift-wrapping .nested:after,
  .data.table .gift-wrapping .content:after,
  .block-wishlist-management:after,
  .magento-rma-guest-returns .column.main .block.block-order-details-view:after,
  .order-links:after,
  .account .column.main .block.block-order-details-view:after,
  [class^='sales-guest-'] .column.main .block.block-order-details-view:after,
  .sales-guest-view .column.main .block.block-order-details-view:after,
  .page-header .header.panel:after,
  .header.content:after {
    clear: both;
  }
  .abs-add-box-sizing-desktop,
  .abs-shopping-cart-items-desktop,
  .column.main,
  .sidebar-main,
  .sidebar-additional,
  .bundle-options-container .block-bundle-summary,
  .block.crosssell,
  .magento-rma-guest-returns .column.main .block.block-order-details-view .block-content:not(.widget) .box,
  .account .column.main .block.block-order-details-view .block-content:not(.widget) .box,
  [class^='sales-guest-'] .column.main .block.block-order-details-view .block-content:not(.widget) .box,
  .sales-guest-view .column.main .block.block-order-details-view .block-content:not(.widget) .box,
  .block-cart-failed,
  .cart-container .form-cart,
  .cart-container .cart-gift-item {
    box-sizing: border-box;
  }
  .abs-add-box-sizing-desktop-m,
  .opc-wrapper {
    box-sizing: border-box;
  }
  .abs-revert-field-type-desktop .fieldset > .field,
  .abs-revert-field-type-desktop .fieldset .fields > .field {
    margin: 0 0 20px;
  }
  .abs-revert-field-type-desktop .fieldset > .field:not(.choice) > .label,
  .abs-revert-field-type-desktop .fieldset .fields > .field:not(.choice) > .label {
    box-sizing: content-box;
    float: none;
    width: auto;
    text-align: left;
    padding: 0;
  }
  .abs-revert-field-type-desktop .fieldset > .field:not(.choice) > .control,
  .abs-revert-field-type-desktop .fieldset .fields > .field:not(.choice) > .control {
    float: none;
    width: auto;
  }
  .abs-revert-field-type-desktop .fieldset > .field > .label,
  .abs-revert-field-type-desktop .fieldset .fields > .field > .label {
    margin: 0 0 8px;
    display: inline-block;
  }
  .abs-revert-field-type-desktop .fieldset > .field.choice:before,
  .abs-revert-field-type-desktop .fieldset .fields > .field.choice:before,
  .abs-revert-field-type-desktop .fieldset > .field.no-label:before,
  .abs-revert-field-type-desktop .fieldset .fields > .field.no-label:before {
    display: none;
  }
  .abs-form-field-column-2 .fieldset .field,
  .form-giftregistry-share .fieldset .field,
  .form-giftregistry-edit .fieldset .field,
  .form-create-return .fieldset .field,
  .form.send.friend .fieldset .field {
    padding: 0 12px 0 0;
    box-sizing: border-box;
    display: inline-block;
    width: 50%;
    vertical-align: top;
  }
  .abs-form-field-column-2 .fieldset .field + .fieldset,
  .form-giftregistry-share .fieldset .field + .fieldset,
  .form-giftregistry-edit .fieldset .field + .fieldset,
  .form-create-return .fieldset .field + .fieldset,
  .form.send.friend .fieldset .field + .fieldset {
    clear: both;
  }
  .form-giftregistry-share .fieldset .field:nth-last-child(1),
  .form-giftregistry-share .fieldset .field:nth-last-child(2),
  .form-giftregistry-edit .fieldset .field:nth-last-child(1),
  .form-giftregistry-edit .fieldset .field:nth-last-child(2),
  .form-create-return .fieldset .field:nth-last-child(1),
  .form-create-return .fieldset .field:nth-last-child(2),
  .form.send.friend .fieldset .field:nth-last-child(1),
  .form.send.friend .fieldset .field:nth-last-child(2) {
    margin-bottom: 0;
  }
  .abs-form-field-column-2 .fieldset .field .field,
  .form-giftregistry-share .fieldset .field .field,
  .form-giftregistry-edit .fieldset .field .field,
  .form-create-return .fieldset .field .field,
  .form.send.friend .fieldset .field .field {
    padding: 0;
    width: 100%;
  }
  .abs-form-field-revert-column-1 {
    width: 100%;
  }
  .abs-forms-general-desktop,
  .form.search.advanced,
  .form-giftcard-redeem,
  .form-giftregistry-create {
    max-width: 500px;
  }
  .abs-forms-general-desktop .legend,
  .form.search.advanced .legend,
  .form-giftcard-redeem .legend,
  .form-giftregistry-create .legend {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .abs-forms-general-desktop .legend + br,
  .form.search.advanced .legend + br,
  .form-giftcard-redeem .legend + br,
  .form-giftregistry-create .legend + br {
    display: none;
  }
  .abs-revert-side-paddings,
  .checkout-cart-index .page-title-wrapper,
  .cart-summary .block .content,
  .cart-empty {
    padding-left: 0;
    padding-right: 0;
  }
  .abs-account-block-font-size,
  .block-addresses-list address,
  .box-billing-address .box-content,
  .box-shipping-address .box-content,
  .box-address-billing .box-content,
  .box-address-shipping .box-content,
  .box-information .box-content,
  .block-balance-giftcard .block-content,
  .block-reviews-dashboard .product-name {
    font-size: 1.6rem;
  }
  .abs-account-table-margin-desktop,
  .table-wrapper.balance-history,
  .table-wrapper.reward-history,
  .table-wrapper.orders-recent {
    margin-top: -25px;
  }
  .abs-action-print,
  .order-actions-toolbar .action.print {
    display: inline-block;
    text-decoration: none;
  }
  .abs-action-print:before,
  .order-actions-toolbar .action.print:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    line-height: 16px;
    color: inherit;
    content: '\e624';
    font-family: 'luma-icons';
    margin: 0 4px 0 0;
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .order-actions-toolbar .action.print:hover {
    text-decoration: underline;
  }
  .abs-no-display-desktop,
  .opc-estimated-wrapper,
  .sidebar .block.widget .pager .item:not(.pages-item-next):not(.pages-item-previous) {
    display: none;
  }
  .abs-status-desktop,
  .return-status,
  .order-status {
    margin-top: 6px;
    padding: 5px 10px;
  }
  .abs-title-orders-desktop .page-main .page-title-wrapper .order-date,
  .magento-rma-returns-returns .page-main .page-title-wrapper .order-date,
  .magento-rma-returns-view .page-main .page-title-wrapper .order-date,
  .account .page-main .page-title-wrapper .order-date,
  [class^='sales-guest-'] .page-main .page-title-wrapper .order-date,
  .sales-guest-view .page-main .page-title-wrapper .order-date {
    margin: -14px 0 18px;
  }
  .abs-table-bordered-desktop {
    border: none;
  }
  .abs-table-bordered-desktop > thead > tr > th,
  .abs-table-bordered-desktop > tbody > tr > th,
  .abs-table-bordered-desktop > tfoot > tr > th,
  .abs-table-bordered-desktop > thead > tr > td,
  .abs-table-bordered-desktop > tbody > tr > td,
  .abs-table-bordered-desktop > tfoot > tr > td {
    border: none;
  }
  .abs-table-bordered-desktop > thead > tr > th,
  .abs-table-bordered-desktop > thead > tr > td {
    border-bottom: 1px solid #cccccc;
  }
  .abs-pager-toolbar,
  .account .toolbar,
  .toolbar-giftregistry-results,
  .toolbar-wishlist-results {
    position: relative;
  }
  .abs-pager-toolbar .toolbar-amount,
  .abs-pager-toolbar .limiter,
  .account .toolbar .toolbar-amount,
  .account .toolbar .limiter,
  .toolbar-giftregistry-results .toolbar-amount,
  .toolbar-giftregistry-results .limiter,
  .toolbar-wishlist-results .toolbar-amount,
  .toolbar-wishlist-results .limiter {
    position: relative;
    z-index: 1;
  }
  .abs-pager-toolbar .limiter,
  .account .toolbar .limiter,
  .toolbar-giftregistry-results .limiter,
  .toolbar-wishlist-results .limiter {
    display: inline-block;
    float: right;
  }
  .abs-pager-toolbar .toolbar-amount,
  .account .toolbar .toolbar-amount,
  .toolbar-giftregistry-results .toolbar-amount,
  .toolbar-wishlist-results .toolbar-amount {
    line-height: 30px;
    padding: 0;
  }
  .abs-pager-toolbar .pages,
  .account .toolbar .pages,
  .toolbar-giftregistry-results .pages,
  .toolbar-wishlist-results .pages {
    position: absolute;
    width: 100%;
    z-index: 0;
  }
  .abs-shopping-cart-items-desktop,
  .block-cart-failed,
  .cart-container .form-cart,
  .cart-container .cart-gift-item {
    width: 75%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
    padding-right: 4%;
    position: relative;
  }
  .abs-discount-block-desktop .block > .title,
  .paypal-review-discount .block > .title,
  .cart-discount .block > .title {
    border: 0;
    padding: 0 0 10px;
  }
  .abs-discount-block-desktop .block > .title strong,
  .paypal-review-discount .block > .title strong,
  .cart-discount .block > .title strong {
    font-size: 1.6rem;
  }
  .abs-discount-block-desktop .block .content,
  .paypal-review-discount .block .content,
  .cart-discount .block .content {
    padding: 0 0 20px;
  }
  .abs-discount-block-desktop .actions-toolbar .secondary,
  .paypal-review-discount .actions-toolbar .secondary,
  .cart-discount .actions-toolbar .secondary {
    bottom: -30px;
    left: 0;
    position: absolute;
  }
  .navigation,
  .breadcrumbs,
  .page-header .header.panel,
  .header.content,
  .footer.content,
  .page-wrapper > .widget,
  .page-wrapper > .page-bottom,
  .block.category.event,
  .top-container,
  .page-main {
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    max-width: 1280px;
    padding-left: 20px;
    padding-right: 20px;
    width: auto;
  }
  .page-main {
    width: 100%;
  }
  .columns {
    display: block;
  }
  .column.main {
    min-height: 300px;
  }
  .page-layout-1column .column.main {
    width: 100%;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .page-layout-3columns .column.main {
    width: 58.33333333%;
    display: inline-block;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .page-layout-2columns-left .column.main {
    width: 79.16666667%;
    float: right;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .page-layout-2columns-right .column.main {
    width: 79.16666667%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .sidebar-main {
    padding-right: 2%;
  }
  .page-layout-3columns .sidebar-main {
    width: 20.83333333%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .page-layout-2columns-left .sidebar-main {
    width: 20.83333333%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .page-layout-2columns-right .sidebar-main {
    width: 20.83333333%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .page-layout-2columns-right .sidebar-main {
    padding-left: 2%;
    padding-right: 0;
  }
  .sidebar-additional {
    clear: right;
    padding-left: 2%;
  }
  .page-layout-3columns .sidebar-additional {
    width: 20.83333333%;
    float: right;
    -ms-flex-order: 3;
    -webkit-order: 3;
    order: 3;
  }
  .page-layout-2columns-left .sidebar-additional {
    width: 20.83333333%;
    float: right;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .page-layout-2columns-right .sidebar-additional {
    width: 20.83333333%;
    float: right;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .page-layout-2columns-left .main {
    padding-left: 2%;
  }
  .page-layout-2columns-left .sidebar-additional {
    clear: left;
    float: left;
    padding-left: 0;
  }
  .panel.header {
    padding: 10px 20px;
  }
  .nav-toggle {
    display: none;
  }
  .nav-sections {
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-bottom: 25px;
  }
  .nav-sections-item-title {
    display: none;
  }
  .nav-sections-item-content > * {
    display: none;
  }
  .nav-sections-item-content > .navigation {
    display: block;
  }
  .navigation {
    background: #f0f0f0;
    font-weight: 700;
    height: inherit;
    left: auto;
    overflow: inherit;
    padding: 0;
    position: relative;
    top: 0;
    width: 100%;
    z-index: 3;
  }
  .navigation:empty {
    display: none;
  }
  .navigation ul {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    position: relative;
  }
  .navigation li.level0 {
    border-top: none;
  }
  .navigation li.level1 {
    position: relative;
  }
  .navigation .level0 {
    margin: 0 10px 0 0;
    display: inline-block;
    position: relative;
  }
  .navigation .level0:last-child {
    margin-right: 0;
    padding-right: 0;
  }
  .navigation .level0:hover:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 100%;
    width: 10px;
    height: calc(100% + 3px);
    z-index: 1;
  }
  .navigation .level0 > .level-top {
    color: #575757;
    line-height: 47px;
    padding: 0 12px;
    text-decoration: none;
    box-sizing: border-box;
    position: relative;
    display: inline-block;
  }
  .navigation .level0 > .level-top:hover,
  .navigation .level0 > .level-top.ui-state-focus {
    color: #333333;
    text-decoration: none;
  }
  .navigation .level0.active > .level-top,
  .navigation .level0.has-active > .level-top {
    border-color: #222222;
    border-style: solid;
    border-width: 0 0 3px;
    color: #333333;
    text-decoration: none;
    display: inline-block;
  }
  .navigation .level0.parent:hover > .submenu {
    overflow: visible !important;
  }
  .navigation .level0.parent > .level-top {
    padding-right: 20px;
  }
  .navigation .level0.parent > .level-top > .ui-menu-icon {
    position: absolute;
    right: 0;
    display: inline-block;
    text-decoration: none;
  }
  .navigation .level0.parent > .level-top > .ui-menu-icon > span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .navigation .level0.parent > .level-top > .ui-menu-icon:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 12px;
    line-height: 20px;
    color: inherit;
    content: '\e622';
    font-family: 'luma-icons';
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .navigation .level0 .submenu {
    background: #ffffff;
    border: 1px solid #cccccc;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.19);
    font-weight: 400;
    min-width: 230px;
    padding: 0;
    display: none;
    left: 0;
    margin: 0 !important;
    position: absolute;
    z-index: 1;
    margin-top: 11px;
  }
  .navigation .level0 .submenu > ul {
    margin-top: 11px;
  }
  .navigation .level0 .submenu > ul:before,
  .navigation .level0 .submenu > ul:after {
    content: '';
    display: block;
    overflow: hidden;
    position: absolute;
  }
  .navigation .level0 .submenu > ul:before {
    color: #ffffff;
    left: 20px;
    top: -20px;
    border: 10px solid transparent;
    height: 0;
    width: 0;
    border-bottom-color: #ffffff;
    z-index: 4;
  }
  .navigation .level0 .submenu > ul:after {
    border: 11px solid transparent;
    height: 0;
    width: 0;
    border-bottom-color: #cccccc;
    color: #cccccc;
    left: 19px;
    top: -22px;
    z-index: 3;
  }
  .navigation .level0 .submenu:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 4px;
    left: 0;
    top: -4px;
    z-index: 1;
  }
  .navigation .level0 .submenu a {
    display: block;
    line-height: inherit;
    color: #575757;
    padding: 8px 20px;
  }
  .navigation .level0 .submenu a:hover,
  .navigation .level0 .submenu a.ui-state-focus {
    background: #e8e8e8;
    color: #333333;
    text-decoration: none;
  }
  .navigation .level0 .submenu .active > a {
    border-color: #222222;
    border-style: solid;
    border-width: 0 0 0 3px;
    color: #333333;
  }
  .navigation .level0 .submenu .submenu {
    top: -1px !important;
    left: 100% !important;
  }
  .navigation .level0 .submenu .submenu-reverse {
    left: auto !important;
    right: 100%;
  }
  .navigation .level0 .submenu li {
    margin: 0;
    position: relative;
  }
  .navigation .level0 .submenu li.parent > a > .ui-menu-icon {
    position: absolute;
    right: 3px;
    display: inline-block;
    text-decoration: none;
  }
  .navigation .level0 .submenu li.parent > a > .ui-menu-icon > span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .navigation .level0 .submenu li.parent > a > .ui-menu-icon:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 12px;
    line-height: 20px;
    color: inherit;
    content: '\e608';
    font-family: 'luma-icons';
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .navigation .level0.more {
    position: relative;
    display: inline-block;
    text-decoration: none;
  }
  .navigation .level0.more:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 26px;
    line-height: inherit;
    color: inherit;
    content: '\e607';
    font-family: 'luma-icons';
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .navigation .level0.more:before {
    display: none;
  }
  .navigation .level0.more:after {
    cursor: pointer;
    padding: 8px 12px;
    position: relative;
    z-index: 1;
  }
  .navigation .level0.more:hover > .submenu {
    overflow: visible !important;
  }
  .navigation .level0.more li {
    display: block;
  }
  .panel.header .links,
  .panel.header .switcher {
    display: inline-block;
  }
  .fieldset > .field {
    margin: 0 0 29px;
  }
  .product.data.items {
    position: relative;
    z-index: 1;
    border-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }
  .product.data.items:before,
  .product.data.items:after {
    content: '';
    display: table;
  }
  .product.data.items:after {
    clear: both;
  }
  .product.data.items > .item.title {
    float: left;
    width: auto;
  }
  .product.data.items > .item.title > .switch {
    height: 20px;
    display: block;
    position: relative;
    z-index: 2;
  }
  .product.data.items > .item.content {
    margin-top: 20px;
    box-sizing: border-box;
    float: right;
    margin-left: -100%;
    width: 100%;
  }
  .product.data.items > .item.content:before,
  .product.data.items > .item.content:after {
    content: '';
    display: table;
  }
  .product.data.items > .item.content:after {
    clear: both;
  }
  .product.data.items > .item.content.active {
    display: block;
  }
  .product.data.items > .item.title {
    margin: 0 -1px 0 0;
  }
  .product.data.items > .item.title > .switch {
    font-weight: 400;
    line-height: 40px;
    font-size: 1.4rem;
    color: #6d6d6d;
    text-decoration: none;
    background: #f6f6f6;
    border: 1px solid #cccccc;
    border-bottom: none;
    height: 40px;
    padding: 1px 35px 1px 35px;
  }
  .product.data.items > .item.title > .switch:visited {
    color: #6d6d6d;
    text-decoration: none;
  }
  .product.data.items > .item.title > .switch:hover {
    color: #6d6d6d;
    text-decoration: none;
  }
  .product.data.items > .item.title > .switch:active {
    color: #010101;
    text-decoration: none;
  }
  .product.data.items > .item.title:not(.disabled) > .switch:focus,
  .product.data.items > .item.title:not(.disabled) > .switch:hover {
    background: #ffffff;
  }
  .product.data.items > .item.title:not(.disabled) > .switch:active,
  .product.data.items > .item.title.active > .switch,
  .product.data.items > .item.title.active > .switch:focus,
  .product.data.items > .item.title.active > .switch:hover {
    background: #ffffff;
    color: #010101;
    text-decoration: none;
  }
  .product.data.items > .item.title.active > .switch,
  .product.data.items > .item.title.active > .switch:focus,
  .product.data.items > .item.title.active > .switch:hover {
    padding-bottom: 2px;
  }
  .product.data.items > .item.content {
    background: #ffffff;
    margin-top: 43px;
    padding: 35px 35px 35px 35px;
    border: 1px solid #cccccc;
  }
  .product.data.items .item.title a:after {
    display: none;
  }
  .actions-toolbar {
    text-align: left;
  }
  .actions-toolbar:before,
  .actions-toolbar:after {
    content: '';
    display: table;
  }
  .actions-toolbar:after {
    clear: both;
  }
  .actions-toolbar .primary {
    float: left;
  }
  .actions-toolbar .primary,
  .actions-toolbar .secondary {
    display: inline-block;
  }
  .actions-toolbar .primary a.action,
  .actions-toolbar .secondary a.action {
    display: inline-block;
  }
  .actions-toolbar .primary .action {
    margin: 0 15px 0 0;
  }
  .actions-toolbar .secondary a.action {
    margin-top: 6px;
  }
  .actions-toolbar > .primary,
  .actions-toolbar > .secondary {
    margin-bottom: 0;
  }
  .actions-toolbar > .primary .action,
  .actions-toolbar > .secondary .action {
    margin-bottom: 0;
    width: auto;
  }
  .modal-footer {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
  }
  .modal-popup.confirm._show .modal-inner-wrap {
    max-width: 379px;
  }
  .cms-home .hero {
    align-items: center;
    margin-bottom: 90px;
  }
  .cms-home .hero__content {
    display: flex;
    max-width: 1300px;
    padding-bottom: 56px;
    flex-direction: column;
  }
  .cms-home .hero__col-1 {
    width: 80%;
  }
  .cms-home .hero__col-2 {
    flex-direction: column;
    justify-content: flex-end;
    width: 20%;
  }
  .cms-home .hero__title {
    padding-top: 140px;
  }
  .cms-home .hero__subtitles {
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 24px;
    padding-bottom: 24px;
  }
  .cms-home .bt-keyfocus {
    padding: 100px 60px;
    min-height: 908px;
    margin: 40px 36px;
  }
  .cms-home .bt-keyfocus__title {
    font-size: 60px;
    line-height: 64px;
    text-align: left;
    position: sticky;
    top: 10px;
  }
  .cms-home .bt-keyfocus__item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
  }
  .cms-home .bt-keyfocus__item-img.--care {
    max-width: 56px;
  }
  .cms-home .bt-keyfocus__item-img.--experiment {
    max-width: 40px;
  }
  .cms-home .bt-keyfocus__item-img.--wheat {
    max-width: 22px;
  }
  .cms-home .bt-keyfocus__item-title {
    font-size: 32px;
    line-height: 40px;
  }
  .cms-home .bt-keyfocus__item-description {
    font-size: 18px;
    line-height: 24px;
  }
  .cms-home .bt-marquee .obscure {
    font-size: 60px;
    line-height: 74px;
  }
  .cms-home .bt-photo .bt-photo-card {
    margin: 210px 36px;
  }
  .cms-home .bt-photo .bt-photo-card__subtitle {
    font-size: 18px;
    line-height: 24px;
  }
  .cms-home .bt-photo .bt-photo-card__title {
    font-size: 82px;
    line-height: 88px;
  }
  .cms-home .bt-photo .bt-photo-card__description {
    font-size: 18px;
    line-height: 24px;
  }
  .cms-home .bt-photo .bt-photo-card__button {
    max-width: 153px;
  }
  .cms-home .bt-photo .bt-photo-card__img {
    max-width: 380px;
  }
  .cms-home .bt-photo .bt-photo-card__img.--under {
    position: absolute;
    left: 35%;
    top: 35%;
  }
  .cms-home .bt-photo .bt-photo-card__img.--on {
    z-index: 2;
  }
  .cms-home .bt-video-card {
    padding: 100px 232px;
  }
  .cms-home .bt-video-card__content-title {
    font-size: 70px;
    line-height: 64px;
  }
  .cms-home .bt-video-card__content-subtitle {
    font-size: 18px;
    line-height: 24px;
  }
  .cms-home .bt-video-card__content-description {
    font-size: 16px;
    line-height: 24px;
  }
  .cms-home .bt-video-card__button {
    max-width: 300px;
  }
  .cms-home .bt-news {
    padding: 100px 36px;
  }
  .cms-home .bt-news .bt-blog .widget-news {
    font-size: 40px;
    line-height: 44px;
  }
  .cms-home .bt-news .bt-blog .widget-navigation a {
    font-size: 16px;
    line-height: 24px;
  }
  .cms-home .bt-news .bt-blog .bt-blog-carousel .post-info-wraper .post-link-title {
    font-size: 32px;
    line-height: 40px;
  }
  .cms-home .bt-news .bt-newsletter {
    padding: 100px 36px;
  }
  .cms-home .bt-news .bt-newsletter__img {
    max-width: 320px;
  }
  .cms-home .bt-news .bt-newsletter__title {
    font-size: 60px;
    line-height: 64px;
  }
  .cms-home .bt-news .bt-newsletter__col1 {
    max-width: 44%;
  }
  .table-wrapper tr td.col.status span {
    width: 50px;
    height: 20px;
    min-width: 96px;
  }
  .account .column.main {
    padding-left: 0 !important;
  }
  .sales-order-view .order-block__progress {
    width: 750px;
    margin: 10px 0;
  }
  .sales-order-view .order-block__progress:before {
    display: block;
    height: 2px;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-1px);
  }
  #maincontent {
    padding: 0 36px!important;
  }
  .cms-no-route__content,
  .full-row-empty-search__content {
    padding: 60px 52px;
  }
  .cms-no-route__title,
  .full-row-empty-search__title {
    font-size: 84px;
    line-height: 88px;
  }
  .cms-no-route__text,
  .full-row-empty-search__text {
    font-size: 16px;
    line-height: 24px;
  }
  .cms-no-route__button,
  .full-row-empty-search__button {
    max-width: 180px;
  }
  .full-row-empty-search {
    display: flex;
    width: 100vw;
    position: relative;
    left: 35.2%;
    right: 0%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
  }
  .full-row-empty-search .pagebuilder-column-group {
    margin-inline: 36px;
  }
  .full-row-empty-search__col1 {
    padding: 60px 0 60px 52px;
  }
  .full-row-empty-search__background {
    background: linear-gradient(199.79deg, #f9f7fb 28.66%, #ededed 100.9%);
  }
  .full-row-empty-search .pagebuilder-column-line {
    background-image: url('../images/bags-transparent.png');
    background-position: right bottom;
    background-size: contain;
    background-repeat: no-repeat;
    background-attachment: scroll;
    align-self: stretch;
  }
  .cms-terms-and-conditions .cms-content,
  .cms-data-privacy-policy .cms-content,
  .cms-legal-notice .cms-content,
  .cms-privacy-policy-cookie-restriction-mode .cms-content {
    padding-inline: 36px;
    margin-top: 60px;
  }
  .cms-terms-and-conditions .cms-content__title,
  .cms-data-privacy-policy .cms-content__title,
  .cms-legal-notice .cms-content__title,
  .cms-privacy-policy-cookie-restriction-mode .cms-content__title {
    font-size: 70px;
    line-height: 78px;
    position: sticky;
    top: 20px;
  }
  .cms-terms-and-conditions .cms-content__description,
  .cms-data-privacy-policy .cms-content__description,
  .cms-legal-notice .cms-content__description,
  .cms-privacy-policy-cookie-restriction-mode .cms-content__description {
    font-size: 16px;
    line-height: 24px;
  }
  .cms-pure-local .hero,
  .cms-creative-series .hero,
  .cms-about-us .hero,
  .cms-sustainability .hero,
  .cms-malting-process .hero,
  .cms-root-revival .hero {
    align-items: center;
    max-height: 800px;
    margin-bottom: 0;
  }
  .cms-pure-local .hero__content,
  .cms-creative-series .hero__content,
  .cms-about-us .hero__content,
  .cms-sustainability .hero__content,
  .cms-malting-process .hero__content,
  .cms-root-revival .hero__content {
    display: flex;
    padding-inline: 36px;
    padding-bottom: 56px;
    flex-direction: column;
  }
  .cms-pure-local .hero__title,
  .cms-creative-series .hero__title,
  .cms-about-us .hero__title,
  .cms-sustainability .hero__title,
  .cms-malting-process .hero__title,
  .cms-root-revival .hero__title {
    padding-top: 140px;
  }
  .cms-pure-local .hero__title h1,
  .cms-creative-series .hero__title h1,
  .cms-about-us .hero__title h1,
  .cms-sustainability .hero__title h1,
  .cms-malting-process .hero__title h1,
  .cms-root-revival .hero__title h1 {
    font-size: 84px;
    line-height: 88px;
  }
  .cms-pure-local .hero__subtitles,
  .cms-creative-series .hero__subtitles,
  .cms-about-us .hero__subtitles,
  .cms-sustainability .hero__subtitles,
  .cms-malting-process .hero__subtitles,
  .cms-root-revival .hero__subtitles {
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 24px;
    padding-bottom: 24px;
  }
  .cms-pure-local .hero__subtitle-text,
  .cms-creative-series .hero__subtitle-text,
  .cms-about-us .hero__subtitle-text,
  .cms-sustainability .hero__subtitle-text,
  .cms-malting-process .hero__subtitle-text,
  .cms-root-revival .hero__subtitle-text {
    max-width: 566px;
  }
  .cms-pure-local .bt-two-words__title,
  .cms-creative-series .bt-two-words__title,
  .cms-about-us .bt-two-words__title,
  .cms-sustainability .bt-two-words__title,
  .cms-malting-process .bt-two-words__title,
  .cms-root-revival .bt-two-words__title {
    font-size: 60px;
    line-height: 64px;
  }
  .cms-pure-local .bt-two-words__row,
  .cms-creative-series .bt-two-words__row,
  .cms-about-us .bt-two-words__row,
  .cms-sustainability .bt-two-words__row,
  .cms-malting-process .bt-two-words__row,
  .cms-root-revival .bt-two-words__row {
    justify-content: space-evenly;
    margin-top: 112px;
    margin-bottom: 92px;
  }
  .cms-pure-local .bt-keyfocus,
  .cms-creative-series .bt-keyfocus,
  .cms-about-us .bt-keyfocus,
  .cms-sustainability .bt-keyfocus,
  .cms-malting-process .bt-keyfocus,
  .cms-root-revival .bt-keyfocus {
    padding: 100px 60px;
    min-height: 908px;
    margin: 40px 36px;
  }
  .cms-pure-local .bt-keyfocus__title,
  .cms-creative-series .bt-keyfocus__title,
  .cms-about-us .bt-keyfocus__title,
  .cms-sustainability .bt-keyfocus__title,
  .cms-malting-process .bt-keyfocus__title,
  .cms-root-revival .bt-keyfocus__title {
    font-size: 60px;
    line-height: 64px;
    text-align: left;
    position: sticky;
    top: 10px;
  }
  .cms-pure-local .bt-keyfocus__item,
  .cms-creative-series .bt-keyfocus__item,
  .cms-about-us .bt-keyfocus__item,
  .cms-sustainability .bt-keyfocus__item,
  .cms-malting-process .bt-keyfocus__item,
  .cms-root-revival .bt-keyfocus__item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
  }
  .cms-pure-local .bt-keyfocus__item-img.--care,
  .cms-creative-series .bt-keyfocus__item-img.--care,
  .cms-about-us .bt-keyfocus__item-img.--care,
  .cms-sustainability .bt-keyfocus__item-img.--care,
  .cms-malting-process .bt-keyfocus__item-img.--care,
  .cms-root-revival .bt-keyfocus__item-img.--care {
    max-width: 56px;
  }
  .cms-pure-local .bt-keyfocus__item-img.--experiment,
  .cms-creative-series .bt-keyfocus__item-img.--experiment,
  .cms-about-us .bt-keyfocus__item-img.--experiment,
  .cms-sustainability .bt-keyfocus__item-img.--experiment,
  .cms-malting-process .bt-keyfocus__item-img.--experiment,
  .cms-root-revival .bt-keyfocus__item-img.--experiment {
    max-width: 40px;
  }
  .cms-pure-local .bt-keyfocus__item-img.--wheat,
  .cms-creative-series .bt-keyfocus__item-img.--wheat,
  .cms-about-us .bt-keyfocus__item-img.--wheat,
  .cms-sustainability .bt-keyfocus__item-img.--wheat,
  .cms-malting-process .bt-keyfocus__item-img.--wheat,
  .cms-root-revival .bt-keyfocus__item-img.--wheat {
    max-width: 22px;
  }
  .cms-pure-local .bt-keyfocus__item-title,
  .cms-creative-series .bt-keyfocus__item-title,
  .cms-about-us .bt-keyfocus__item-title,
  .cms-sustainability .bt-keyfocus__item-title,
  .cms-malting-process .bt-keyfocus__item-title,
  .cms-root-revival .bt-keyfocus__item-title {
    font-size: 32px;
    line-height: 40px;
  }
  .cms-pure-local .bt-keyfocus__item-description,
  .cms-creative-series .bt-keyfocus__item-description,
  .cms-about-us .bt-keyfocus__item-description,
  .cms-sustainability .bt-keyfocus__item-description,
  .cms-malting-process .bt-keyfocus__item-description,
  .cms-root-revival .bt-keyfocus__item-description {
    font-size: 18px;
    line-height: 24px;
  }
  .cms-pure-local .bt-marquee .obscure,
  .cms-creative-series .bt-marquee .obscure,
  .cms-about-us .bt-marquee .obscure,
  .cms-sustainability .bt-marquee .obscure,
  .cms-malting-process .bt-marquee .obscure,
  .cms-root-revival .bt-marquee .obscure {
    font-size: 60px;
    line-height: 74px;
  }
  .cms-pure-local .bt-photo,
  .cms-creative-series .bt-photo,
  .cms-about-us .bt-photo,
  .cms-sustainability .bt-photo,
  .cms-malting-process .bt-photo,
  .cms-root-revival .bt-photo {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cms-pure-local .bt-photo .bt-photo-card,
  .cms-creative-series .bt-photo .bt-photo-card,
  .cms-about-us .bt-photo .bt-photo-card,
  .cms-sustainability .bt-photo .bt-photo-card,
  .cms-malting-process .bt-photo .bt-photo-card,
  .cms-root-revival .bt-photo .bt-photo-card {
    max-width: 1440px;
    width: 100%;
  }
  .cms-pure-local .bt-photo .bt-photo-card__subtitle,
  .cms-creative-series .bt-photo .bt-photo-card__subtitle,
  .cms-about-us .bt-photo .bt-photo-card__subtitle,
  .cms-sustainability .bt-photo .bt-photo-card__subtitle,
  .cms-malting-process .bt-photo .bt-photo-card__subtitle,
  .cms-root-revival .bt-photo .bt-photo-card__subtitle {
    font-size: 18px;
    line-height: 24px;
  }
  .cms-pure-local .bt-photo .bt-photo-card__title,
  .cms-creative-series .bt-photo .bt-photo-card__title,
  .cms-about-us .bt-photo .bt-photo-card__title,
  .cms-sustainability .bt-photo .bt-photo-card__title,
  .cms-malting-process .bt-photo .bt-photo-card__title,
  .cms-root-revival .bt-photo .bt-photo-card__title {
    font-size: 48px;
    line-height: 52px;
  }
  .cms-pure-local .bt-photo .bt-photo-card__description,
  .cms-creative-series .bt-photo .bt-photo-card__description,
  .cms-about-us .bt-photo .bt-photo-card__description,
  .cms-sustainability .bt-photo .bt-photo-card__description,
  .cms-malting-process .bt-photo .bt-photo-card__description,
  .cms-root-revival .bt-photo .bt-photo-card__description {
    font-size: 18px;
    line-height: 24px;
  }
  .cms-pure-local .bt-photo .bt-photo-card__img,
  .cms-creative-series .bt-photo .bt-photo-card__img,
  .cms-about-us .bt-photo .bt-photo-card__img,
  .cms-sustainability .bt-photo .bt-photo-card__img,
  .cms-malting-process .bt-photo .bt-photo-card__img,
  .cms-root-revival .bt-photo .bt-photo-card__img {
    max-width: 380px;
  }
  .cms-pure-local .bt-photo .bt-photo-card__img.--under,
  .cms-creative-series .bt-photo .bt-photo-card__img.--under,
  .cms-about-us .bt-photo .bt-photo-card__img.--under,
  .cms-sustainability .bt-photo .bt-photo-card__img.--under,
  .cms-malting-process .bt-photo .bt-photo-card__img.--under,
  .cms-root-revival .bt-photo .bt-photo-card__img.--under {
    position: absolute;
    left: 35%;
    top: 35%;
  }
  .cms-pure-local .bt-photo .bt-photo-card__img.--on,
  .cms-creative-series .bt-photo .bt-photo-card__img.--on,
  .cms-about-us .bt-photo .bt-photo-card__img.--on,
  .cms-sustainability .bt-photo .bt-photo-card__img.--on,
  .cms-malting-process .bt-photo .bt-photo-card__img.--on,
  .cms-root-revival .bt-photo .bt-photo-card__img.--on {
    z-index: 2;
  }
  .cms-pure-local .bt-video-card,
  .cms-creative-series .bt-video-card,
  .cms-about-us .bt-video-card,
  .cms-sustainability .bt-video-card,
  .cms-malting-process .bt-video-card,
  .cms-root-revival .bt-video-card {
    padding: 80px 104px;
  }
  .cms-pure-local .bt-video-card__content-title,
  .cms-creative-series .bt-video-card__content-title,
  .cms-about-us .bt-video-card__content-title,
  .cms-sustainability .bt-video-card__content-title,
  .cms-malting-process .bt-video-card__content-title,
  .cms-root-revival .bt-video-card__content-title {
    font-size: 70px;
    line-height: 64px;
    margin-bottom: 60px;
  }
  .cms-pure-local .bt-video-card__content-subtitle,
  .cms-creative-series .bt-video-card__content-subtitle,
  .cms-about-us .bt-video-card__content-subtitle,
  .cms-sustainability .bt-video-card__content-subtitle,
  .cms-malting-process .bt-video-card__content-subtitle,
  .cms-root-revival .bt-video-card__content-subtitle {
    font-size: 18px;
    line-height: 24px;
  }
  .cms-pure-local .bt-video-card__content-description,
  .cms-creative-series .bt-video-card__content-description,
  .cms-about-us .bt-video-card__content-description,
  .cms-sustainability .bt-video-card__content-description,
  .cms-malting-process .bt-video-card__content-description,
  .cms-root-revival .bt-video-card__content-description {
    font-size: 16px;
    line-height: 24px;
  }
  .cms-pure-local .bt-video-card__button,
  .cms-creative-series .bt-video-card__button,
  .cms-about-us .bt-video-card__button,
  .cms-sustainability .bt-video-card__button,
  .cms-malting-process .bt-video-card__button,
  .cms-root-revival .bt-video-card__button {
    max-width: 300px;
  }
  .cms-pure-local .bt-card-banner,
  .cms-creative-series .bt-card-banner,
  .cms-about-us .bt-card-banner,
  .cms-sustainability .bt-card-banner,
  .cms-malting-process .bt-card-banner,
  .cms-root-revival .bt-card-banner {
    padding: 80px 52px 80px 40px;
  }
  .cms-pure-local .bt-card-banner-big__title,
  .cms-creative-series .bt-card-banner-big__title,
  .cms-about-us .bt-card-banner-big__title,
  .cms-sustainability .bt-card-banner-big__title,
  .cms-malting-process .bt-card-banner-big__title,
  .cms-root-revival .bt-card-banner-big__title {
    font-size: 84px;
    line-height: 88px;
    max-width: 680px;
  }
  .cms-pure-local .bt-card-banner-big__subtitle,
  .cms-creative-series .bt-card-banner-big__subtitle,
  .cms-about-us .bt-card-banner-big__subtitle,
  .cms-sustainability .bt-card-banner-big__subtitle,
  .cms-malting-process .bt-card-banner-big__subtitle,
  .cms-root-revival .bt-card-banner-big__subtitle {
    font-size: 18px;
    line-height: 24px;
  }
  .cms-pure-local .bt-card-banner-big .button__alternative,
  .cms-creative-series .bt-card-banner-big .button__alternative,
  .cms-about-us .bt-card-banner-big .button__alternative,
  .cms-sustainability .bt-card-banner-big .button__alternative,
  .cms-malting-process .bt-card-banner-big .button__alternative,
  .cms-root-revival .bt-card-banner-big .button__alternative,
  .cms-pure-local .bt-card-banner-big .button__transparent,
  .cms-creative-series .bt-card-banner-big .button__transparent,
  .cms-about-us .bt-card-banner-big .button__transparent,
  .cms-sustainability .bt-card-banner-big .button__transparent,
  .cms-malting-process .bt-card-banner-big .button__transparent,
  .cms-root-revival .bt-card-banner-big .button__transparent,
  .cms-pure-local .bt-card-banner-big .button__white,
  .cms-creative-series .bt-card-banner-big .button__white,
  .cms-about-us .bt-card-banner-big .button__white,
  .cms-sustainability .bt-card-banner-big .button__white,
  .cms-malting-process .bt-card-banner-big .button__white,
  .cms-root-revival .bt-card-banner-big .button__white {
    display: inline-block;
  }
  .cms-pure-local .bt-card-banner-big-center__title,
  .cms-creative-series .bt-card-banner-big-center__title,
  .cms-about-us .bt-card-banner-big-center__title,
  .cms-sustainability .bt-card-banner-big-center__title,
  .cms-malting-process .bt-card-banner-big-center__title,
  .cms-root-revival .bt-card-banner-big-center__title {
    font-size: 60px;
    line-height: 64px;
    max-width: 780px;
  }
  .cms-pure-local .bt-card-banner-big-center__text,
  .cms-creative-series .bt-card-banner-big-center__text,
  .cms-about-us .bt-card-banner-big-center__text,
  .cms-sustainability .bt-card-banner-big-center__text,
  .cms-malting-process .bt-card-banner-big-center__text,
  .cms-root-revival .bt-card-banner-big-center__text {
    font-size: 48px;
    line-height: 52px;
    max-width: 904px;
  }
  .cms-pure-local .bt-card-banner-big-center__subtitle,
  .cms-creative-series .bt-card-banner-big-center__subtitle,
  .cms-about-us .bt-card-banner-big-center__subtitle,
  .cms-sustainability .bt-card-banner-big-center__subtitle,
  .cms-malting-process .bt-card-banner-big-center__subtitle,
  .cms-root-revival .bt-card-banner-big-center__subtitle {
    font-size: 18px;
    line-height: 24px;
  }
  .cms-pure-local .bt-card-banner-big-center .button__alternative,
  .cms-creative-series .bt-card-banner-big-center .button__alternative,
  .cms-about-us .bt-card-banner-big-center .button__alternative,
  .cms-sustainability .bt-card-banner-big-center .button__alternative,
  .cms-malting-process .bt-card-banner-big-center .button__alternative,
  .cms-root-revival .bt-card-banner-big-center .button__alternative,
  .cms-pure-local .bt-card-banner-big-center .button__transparent,
  .cms-creative-series .bt-card-banner-big-center .button__transparent,
  .cms-about-us .bt-card-banner-big-center .button__transparent,
  .cms-sustainability .bt-card-banner-big-center .button__transparent,
  .cms-malting-process .bt-card-banner-big-center .button__transparent,
  .cms-root-revival .bt-card-banner-big-center .button__transparent,
  .cms-pure-local .bt-card-banner-big-center .button__white,
  .cms-creative-series .bt-card-banner-big-center .button__white,
  .cms-about-us .bt-card-banner-big-center .button__white,
  .cms-sustainability .bt-card-banner-big-center .button__white,
  .cms-malting-process .bt-card-banner-big-center .button__white,
  .cms-root-revival .bt-card-banner-big-center .button__white {
    display: inline-block;
  }
  .cms-pure-local .bt-card-banner-medium__title,
  .cms-creative-series .bt-card-banner-medium__title,
  .cms-about-us .bt-card-banner-medium__title,
  .cms-sustainability .bt-card-banner-medium__title,
  .cms-malting-process .bt-card-banner-medium__title,
  .cms-root-revival .bt-card-banner-medium__title {
    font-size: 48px;
    line-height: 52px;
    max-width: 680px;
  }
  .cms-pure-local .bt-card-banner-medium__subtitle,
  .cms-creative-series .bt-card-banner-medium__subtitle,
  .cms-about-us .bt-card-banner-medium__subtitle,
  .cms-sustainability .bt-card-banner-medium__subtitle,
  .cms-malting-process .bt-card-banner-medium__subtitle,
  .cms-root-revival .bt-card-banner-medium__subtitle {
    font-size: 18px;
    line-height: 24px;
  }
  .cms-pure-local .bt-card-banner-medium__text,
  .cms-creative-series .bt-card-banner-medium__text,
  .cms-about-us .bt-card-banner-medium__text,
  .cms-sustainability .bt-card-banner-medium__text,
  .cms-malting-process .bt-card-banner-medium__text,
  .cms-root-revival .bt-card-banner-medium__text {
    max-width: 600px;
  }
  .cms-pure-local .bt-card-two__title,
  .cms-creative-series .bt-card-two__title,
  .cms-about-us .bt-card-two__title,
  .cms-sustainability .bt-card-two__title,
  .cms-malting-process .bt-card-two__title,
  .cms-root-revival .bt-card-two__title {
    font-size: 84px;
    line-height: 88px;
    max-width: 1000px;
  }
  .cms-pure-local .bt-card-two__subtitle,
  .cms-creative-series .bt-card-two__subtitle,
  .cms-about-us .bt-card-two__subtitle,
  .cms-sustainability .bt-card-two__subtitle,
  .cms-malting-process .bt-card-two__subtitle,
  .cms-root-revival .bt-card-two__subtitle {
    font-size: 18px;
    line-height: 24px;
  }
  .cms-pure-local .bt-review__title,
  .cms-creative-series .bt-review__title,
  .cms-about-us .bt-review__title,
  .cms-sustainability .bt-review__title,
  .cms-malting-process .bt-review__title,
  .cms-root-revival .bt-review__title {
    font-size: 32px;
    line-height: 40px;
  }
  .cms-pure-local .bt-review__autor,
  .cms-creative-series .bt-review__autor,
  .cms-about-us .bt-review__autor,
  .cms-sustainability .bt-review__autor,
  .cms-malting-process .bt-review__autor,
  .cms-root-revival .bt-review__autor {
    font-size: 20px;
    line-height: 24px;
  }
  .cms-pure-local .bt-review__company,
  .cms-creative-series .bt-review__company,
  .cms-about-us .bt-review__company,
  .cms-sustainability .bt-review__company,
  .cms-malting-process .bt-review__company,
  .cms-root-revival .bt-review__company {
    font-size: 20px;
    line-height: 24px;
  }
  .cms-pure-local .bt-photo-card {
    margin: 100px 36px;
    padding: 0 36px;
  }
  .cms-pure-local .bt-card-banner-big__title {
    margin-bottom: 32px;
  }
  .cms-pure-local .bt-card-two {
    margin-top: 90px;
  }
  .cms-pure-local .bt-card-banner-big .bt-card-banner-big__text {
    max-width: 600px;
  }
  .cms-pure-local .position-70 {
    top: -70px;
  }
  .cms-creative-series .hero__title h1 {
    max-width: 500px;
  }
  .cms-creative-series .bt-card-banner-big__text {
    max-width: 680px;
  }
  .cms-creative-series .bt-review {
    min-height: 488px;
  }
  .cms-creative-series .bt-card-banner-big {
    aspect-ratio: 2;
  }
  .cms-creative-series .bt-card-banner__text,
  .cms-about-us .bt-card-banner__text,
  .cms-sustainability .bt-card-banner__text,
  .cms-malting-process .bt-card-banner__text,
  .cms-root-revival .bt-card-banner__text {
    max-width: 600px;
  }
  .cms-creative-series .bt-photo img,
  .cms-about-us .bt-photo img,
  .cms-sustainability .bt-photo img,
  .cms-malting-process .bt-photo img,
  .cms-root-revival .bt-photo img {
    max-height: 533px;
  }
  .cms-creative-series .bt-photo-card,
  .cms-about-us .bt-photo-card,
  .cms-sustainability .bt-photo-card,
  .cms-malting-process .bt-photo-card,
  .cms-root-revival .bt-photo-card {
    padding: 100px 36px;
  }
  .cms-creative-series .bt-photo-card .button__primary,
  .cms-about-us .bt-photo-card .button__primary,
  .cms-sustainability .bt-photo-card .button__primary,
  .cms-malting-process .bt-photo-card .button__primary,
  .cms-root-revival .bt-photo-card .button__primary {
    display: inline-block;
  }
  .cms-creative-series .bt-card-two,
  .cms-about-us .bt-card-two,
  .cms-sustainability .bt-card-two,
  .cms-malting-process .bt-card-two,
  .cms-root-revival .bt-card-two {
    margin: 80px 0 60px;
  }
  .cms-creative-series .bt-review,
  .cms-about-us .bt-review,
  .cms-sustainability .bt-review,
  .cms-malting-process .bt-review,
  .cms-root-revival .bt-review {
    padding: 80px 150px;
    justify-content: center !important;
    aspect-ratio: 2;
  }
  .cms-coa .main-title h1 {
    font-size: 84px;
    line-height: 88px;
  }
  .cms-coa .main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cms-coa .main-content .texts {
    width: 100%;
  }
  .cms-coa .main-content .texts .title-certif h3 {
    font-size: 23px;
    margin-top: 52px;
    max-width: 300px;
  }
  .cms-coa .main-content .texts .title-certif h3.mobile {
    display: none;
  }
  .cms-coa .main-content .texts p {
    font-size: 22px;
    width: 40%;
  }
  .cms-coa .main-content .texts .btn-container {
    width: 92%;
  }
  .cms-coa .main-content .texts .btn-container .btn-access {
    width: 20%;
    margin-top: 80px;
    text-align: center;
  }
  .cms-coa .main-content .main-info {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .cms-coa .main-content .main-info .content-info {
    margin-top: 80px;
    box-shadow: 0px 6px 25px 0px #0000001C;
    padding: 40px;
    max-width: 1260px;
  }
  .cms-coa .main-content .main-info .content-info .top-title {
    display: flex;
    justify-content: space-between;
  }
  .cms-coa .main-content .main-info .content-info .top-title .titles-left h2 {
    font-size: 38px;
  }
  .cms-coa .main-content .main-info .content-info .certification-info {
    display: flex;
    flex-wrap: wrap;
    margin-left: -47px;
  }
  .cms-coa .main-content .main-info .content-info .certification-info h3 {
    font-size: 16px;
  }
  .cms-coa .main-content .main-info .content-info .certification-info .column4,
  .cms-coa .main-content .main-info .content-info .certification-info .column2,
  .cms-coa .main-content .main-info .content-info .certification-info .column3 {
    flex-direction: column;
    width: 25%;
    margin-bottom: 40px;
  }
  .cms-coa .main-content .main-info .content-info .certification-info .column1 {
    display: flex;
    width: 100%;
  }
  .cms-coa .main-content .main-info .content-info .certification-info .column1 .item {
    width: 45%;
  }
  .cms-coa .main-content .main-info .content-info .certification-info .column1 .item:first-child {
    margin-bottom: 58px;
  }
  .cms-coa .main-content .main-info .content-info .certification-info .column1 .item:last-child {
    margin-left: 33%;
  }
  .cms-coa .main-content .main-info .content-info .certification-info .column1 .item:last-child p {
    max-width: 270px;
  }
  .cms-coa .main-content .main-info .content-info .certification-info .item {
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .cms-coa .main-content .main-info .content-info .certification-info .item .tooltip-custom {
    position: absolute;
    left: -2px;
    top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    box-shadow: 0px 0px 8px #d8d8d8;
    border-radius: 6px;
    background: #ffffff;
  }
  .cms-coa .main-content .main-info .content-info .certification-info .item .tooltip-custom img {
    width: 80%;
  }
  .cms-coa .main-content .main-info .content-info .certification-info .item .tooltip-custom .tooltiptext {
    position: absolute;
    left: 50px;
    top: -50px;
    background: white;
    width: 300px;
    box-shadow: 0px 0px 8px #d8d8d8;
    border-radius: 6px;
    padding: 20px;
    flex-direction: column;
  }
  .cms-coa .main-content .main-info .content-info .certification-info .item .tooltip-custom .tooltiptext:before {
    display: inline-block;
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid white;
    position: absolute;
    top: -18px;
    left: 0;
  }
  .cms-coa .main-content .main-info .content-info .certification-info .item .tooltip-custom:hover {
    background: #102134;
  }
  .cms-coa .main-content .main-info .content-info .certification-info .item .tooltip-custom:hover .tooltiptext {
    display: flex !important;
    z-index: 9;
  }
  .cms-coa .main-content .main-info .content-info .certification-info .item .tooltip-custom:hover img {
    filter: brightness(2.5);
  }
  .cms-coa .main-content .main-info .content-info .table-1 .item .tooltip-custom .tooltiptext {
    position: absolute;
    top: 50px;
  }
  .cms-coa .main-content .main-info .content-info .table-1 .item .tooltip-custom .tooltiptext:before {
    display: inline-block;
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid white;
    position: absolute;
    top: -18px;
    left: 0;
  }
  .cms-coa .main-content .main-info .content-info .table-1 .data-table {
    font-size: 12px;
  }
  .cms-coa .main-content .main-info .content-info .table-1 .data-table .table-header .header-cell {
    padding: 8px 12px;
    font-size: 14px;
  }
  .cms-coa .main-content .main-info .content-info .table-1 .data-table .table-subheader .subheader-cell {
    padding: 8px 12px;
    font-size: 12px;
  }
  .cms-coa .main-content .main-info .content-info .table-1 .data-table .table-row .table-cell {
    padding: 8px 12px;
    font-size: 12px;
  }
  .products-upsell .product-items {
    display: flex;
    overflow-x: auto;
    margin-left: 24px;
  }
  .products-upsell .product-item {
    min-width: 390px;
  }
  .widget.grid .product-items {
    display: flex;
    overflow-x: auto;
    margin-left: 24px;
  }
  .widget.grid .product-item {
    min-width: 450px;
  }
  .product-item .product-item-name,
  .product-item .product.name a {
    font-size: 16px;
    line-height: 24px;
  }
  .product-item .price-box .special-price .price,
  .product-item .price-box .price-final_price .price {
    font-size: 24px;
  }
  .product-item .price-box .old-price .price {
    font-size: 20px;
  }
  .panel.header {
    max-width: 1300px !important;
  }
  .page-header {
    margin-bottom: 32px !important;
  }
  .header.content,
  .search-custom.content {
    max-width: unset;
    padding: 28px 36px !important;
  }
  .header.content .menu,
  .search-custom.content .menu {
    width: 20%;
    margin-bottom: 0;
    cursor: pointer;
  }
  .header.content .block-search,
  .search-custom.content .block-search {
    width: 100%;
    display: none;
  }
  .header.content .logo,
  .search-custom.content .logo {
    margin: 0;
  }
  .header.content .logo .logo-mobile,
  .search-custom.content .logo .logo-mobile {
    display: none;
  }
  .header.content .logo img,
  .search-custom.content .logo img {
    object-fit: contain;
  }
  .header.content .myaccount,
  .search-custom.content .myaccount {
    width: 20%;
  }
  .header .nav-sections,
  .search-custom .nav-sections {
    margin-bottom: 0;
  }
  .header .nav-sections .navigation,
  .search-custom .nav-sections .navigation {
    background: #ffffff !important;
  }
  .header .nav-sections .navigation .level-top,
  .search-custom .nav-sections .navigation .level-top {
    font-family: 'GeneralSans', sans-serif;
    font-size: 1.125rem;
    line-height: 1.5rem;
    font-weight: 300;
    color: #393839;
  }
  .header .showcart .counter.qty,
  .search-custom .showcart .counter.qty,
  .header .showcart-custom .counter.qty,
  .search-custom .showcart-custom .counter.qty {
    top: -16px;
    left: 18px;
  }
  .search-custom__middle {
    padding: 16px 36px;
  }
  .search-custom__actions .search__icon:before {
    content: '' !important;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
    min-width: 20px;
    box-sizing: content-box;
  }
  .search-custom__actions .account:before {
    content: '' !important;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
    min-width: 20px;
    box-sizing: content-box;
  }
  .search-custom__actions .showcart:before,
  .search-custom__actions .showcart-custom:before {
    content: '' !important;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
    min-width: 20px;
    box-sizing: content-box;
  }
  .search-custom .block-search .input-text {
    font-size: 32px;
  }
  .search-custom .block-search .action.search {
    right: 0;
    bottom: 0;
  }
  .search-custom .block-search .input-text {
    height: 60px;
  }
  .search-custom .block-search .search-autocomplete {
    top: 80px;
    padding: 0px 36px 24px;
  }
  .search-custom .field.search {
    display: flex;
    align-items: center;
  }
  .search-custom .search-autocomplete li {
    font-size: 32px;
    line-height: 40px;
    font-weight: 300;
    border: 0;
  }
  .search-custom .label {
    position: unset !important;
  }
  .search-custom .control {
    flex: 2;
  }
  .search-custom .actions .action.search {
    position: unset !important;
  }
  .footer {
    padding: 56px 35px 0;
  }
  .footer__top {
    padding-bottom: 56px;
    margin-bottom: 72px;
  }
  .footer__middle {
    padding-bottom: 100px;
    margin-bottom: 92px;
    display: flex;
    justify-content: center;
  }
  .footer__middle > div {
    max-width: 1440px;
    width: 100%;
  }
  .footer__middle-title {
    margin-bottom: 24px;
  }
  .footer__bottom-items {
    gap: 70px !important;
    margin-bottom: 92px;
  }
  .footer__bottom a:visited,
  .footer__bottom .alink:visited {
    /* color: #1d327b; */
    text-decoration: none;
  }
  .footer__copyright {
    padding: 50px 36px;
  }
  .footer__copyright .copyright-block {
    gap: 2%;
  }
  .footer__copyright .copyright-block .footer__copyright-col:nth-child(1) {
    flex: 1.5;
  }
  .footer__copyright .copyright-block .footer__copyright-col:nth-child(2) {
    flex: 1;
  }
  .footer__copyright .copyright-block .footer__copyright-col:nth-child(3) {
    flex: 1;
    text-align: right;
  }
  .block-minicart {
    width: 680px !important;
  }
  .minicart-items {
    max-height: calc(var(--doc-height) - 490px);
    overflow-y: auto;
  }
  .menu-custom__title {
    padding: 28px 26px;
  }
  .menu-custom__content ul {
    padding: 28px 36px;
  }
  .menu-custom__content ul a {
    font-size: 1.5rem;
  }
  .menu-custom__close {
    position: absolute;
    left: 36px;
  }
  .menu-custom__actions {
    padding: 0 36px 36px;
  }
  .contact-index-index .page-main {
    max-width: unset;
    padding: 0 24px;
  }
  .contact-index-index .page-main .contact {
    padding: 0 24px 24px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    row-gap: 60px;
  }
  .contact-index-index .page-main .contact__video {
    padding: 32px;
    width: 49%;
    flex: 0 0 auto;
  }
  .contact-index-index .page-main .contact__video .video {
    height: 653px;
    max-width: 95%;
  }
  .contact-index-index .page-main .contact__video .video::before {
    font-size: 82px;
    line-height: 82px;
    padding: 32px 24px 0;
  }
  .contact-index-index .page-main .contact__video .video::after {
    font-size: 16px;
    line-height: 16px;
    padding: 0 24px;
  }
  .contact-index-index .page-main .contact__form {
    width: 49%;
    flex: 0 0 auto;
    padding: 32px;
  }
  .contact-index-index .page-main .contact__form .fieldset {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .contact-index-index .page-main .contact__form .fieldset .name,
  .contact-index-index .page-main .contact__form .fieldset .lastname,
  .contact-index-index .page-main .contact__form .fieldset .email,
  .contact-index-index .page-main .contact__form .fieldset .brewery {
    width: 47%;
  }
  .contact-index-index .page-main .contact__form .fieldset .subject,
  .contact-index-index .page-main .contact__form .fieldset .comment {
    width: 100%;
  }
  .contact-index-index .page-main .contact__form .actions-toolbar {
    display: flex;
    justify-content: end;
  }
  .contact-index-index .page-main .contact__form .actions-toolbar .button__subalternative {
    margin: 0;
  }
  .contact-index-index .page-main .contact__form .action.submit.primary {
    margin: 0;
  }
  .contracts-pages-listing .contracts__table {
    padding: 20px 32px;
  }
  .contracts-pages-details .contracts-details__wrapper {
    padding: 32px;
  }
  .contracts-pages-details .contracts-details__subtitle {
    width: 60%;
  }
  .contracts-pages-details .contracts-details__label.hidden {
    visibility: hidden;
    margin: 0;
  }
  .contracts-pages-details .contracts-details__downloader {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: end;
  }
  .contracts-pages-details .contracts-products {
    margin-top: 40px;
  }
  .helpdesk-ticket-index .hdmx__tickets-table-wrapper,
  .helpdesk-ticket-create .hdmx__tickets-table-wrapper,
  .helpdesk-ticket-view .hdmx__tickets-table-wrapper {
    padding: 24px 32px;
  }
  .helpdesk-ticket-index .hdmx-ticket__wrapper,
  .helpdesk-ticket-create .hdmx-ticket__wrapper,
  .helpdesk-ticket-view .hdmx-ticket__wrapper {
    padding: 24px 32px;
  }
  .helpdesk-ticket-create .hdmx-ticket__form .fields.group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0;
  }
  .helpdesk-ticket-create .hdmx-ticket__form .fields.group .field.custom {
    flex-direction: column;
  }
  .helpdesk-ticket-create .hdmx-ticket__form .fields.group .field.custom,
  .helpdesk-ticket-create .hdmx-ticket__form .fields.group .field.message,
  .helpdesk-ticket-create .hdmx-ticket__form .fields.group .field.order {
    width: 48%;
    padding: 0;
  }
  .helpdesk-ticket-create .hdmx-ticket__form .fields.group .field.files {
    padding-right: 0;
  }
  .helpdesk-ticket-create .actions-toolbar {
    display: flex;
    justify-content: end;
    gap: 16px;
  }
  .helpdesk-ticket-create .actions-toolbar .action {
    display: flex;
    align-items: center;
  }
  .sales-order-view .column.main {
    padding-left: 0 !important;
  }
  .sales-order-view .column.main .page-title-wrapper {
    align-items: self-start;
    flex-direction: column-reverse;
  }
  .sales-order-view .column.main .page-title-wrapper,
  .sales-order-view .column.main .block-order-details-comments,
  .sales-order-view .column.main .order-details-items,
  .sales-order-view .column.main .block-order-details-view .box {
    padding: 32px;
  }
  .sales-order-view .sidebar .nav.item.current.orders a::before {
    display: none !important;
  }
  .sales-order-view .block-order-details-view .block-content {
    justify-content: space-between;
  }
  .sales-order-view .block-order-details-view .block-content .box {
    width: 48% !important;
  }
  .sales-order-view .table-order-items {
    display: flex;
    flex-direction: column;
  }
  .sales-order-view .table-order-items thead .col.name {
    line-height: 10px;
  }
  .sales-order-view .table-order-items thead,
  .sales-order-view .table-order-items tbody,
  .sales-order-view .table-order-items thead tr,
  .sales-order-view .table-order-items tbody tr {
    display: flex;
    width: 100%;
    border: none !important;
  }
  .sales-order-view .table-order-items tfoot {
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
  }
  .sales-order-view .table-order-items tfoot tr {
    display: flex;
    justify-content: end;
    align-items: center;
    width: 30%;
    justify-content: space-between;
  }
  .sales-order-view .order-actions-toolbar {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
  }
  .sales-order-view .order-actions-toolbar .actions {
    display: flex;
    margin-top: 32px;
    gap: 12px;
  }
  .sales-order-view .order-actions-toolbar .print {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .sales-order-view .order-actions-toolbar .print::before {
    display: none;
  }
  .accounting-pages-payments .table-wrapper td::before {
    font-size: 14px;
    line-height: 14px;
  }
  .accounting-pages-newpayments .field.date {
    top: 5px;
  }
  .accounting-pages-newpayments .field.date .input {
    top: 3px;
  }
  .accounting-pages-newpayments .footer-form {
    margin-top: 32px;
    gap: 100px;
  }
  .customer-account-edit .form-container {
    padding: 24px 32px;
  }
  .customer-account-edit .fieldset {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .customer-account-edit .fieldset .field {
    width: 48%;
  }
  .customer-account-edit .fieldset .field .actions-toolbar {
    float: right;
  }
  .customer-account-edit .actions-toolbar {
    display: flex;
    justify-content: flex-end;
  }
  .customer-address-index .column.main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0;
  }
  .customer-address-index .page-title-wrapper {
    margin-bottom: 32px;
    width: 40%;
    order: 0;
  }
  .customer-address-index .actions-toolbar {
    width: auto;
    order: 1;
    margin-bottom: 32px;
  }
  .customer-address-index .block-addresses-list {
    width: 100% !important;
    order: 3;
    margin-top: 20px !important;
  }
  .customer-address-index .block-addresses-default {
    order: 2;
    width: 100%;
  }
  .customer-address-index .block-addresses-default .box {
    padding: 32px;
  }
  .customer-address-index .form-address-edit,
  .customer-address-index .form-address-add {
    display: flex;
    flex-wrap: wrap;
    column-gap: 32px;
  }
  .customer-address-index .form-address-edit .field-name-firstname,
  .customer-address-index .form-address-add .field-name-firstname,
  .customer-address-index .form-address-edit .field-name-lastname,
  .customer-address-index .form-address-add .field-name-lastname,
  .customer-address-index .form-address-edit .company,
  .customer-address-index .form-address-add .company,
  .customer-address-index .form-address-edit .telephone,
  .customer-address-index .form-address-add .telephone,
  .customer-address-index .form-address-edit .street,
  .customer-address-index .form-address-add .street,
  .customer-address-index .form-address-edit .city,
  .customer-address-index .form-address-add .city,
  .customer-address-index .form-address-edit .zip,
  .customer-address-index .form-address-add .zip,
  .customer-address-index .form-address-edit .region,
  .customer-address-index .form-address-add .region,
  .customer-address-index .form-address-edit .billing,
  .customer-address-index .form-address-add .billing,
  .customer-address-index .form-address-edit .shipping,
  .customer-address-index .form-address-add .shipping,
  .customer-address-index .form-address-edit .country,
  .customer-address-index .form-address-add .country,
  .customer-address-index .form-address-edit .states,
  .customer-address-index .form-address-add .states {
    flex: 0 0 calc(50% - 16px);
  }
  .customer-address-index .form-address-edit .fieldset,
  .customer-address-index .form-address-add .fieldset {
    display: flex;
    flex-wrap: wrap;
    column-gap: 32px;
  }
  .customer-address-index #ajaxresponse,
  .customer-address-index #new-address {
    right: -800px;
    width: 800px;
  }
  .customer-address-index #ajaxresponse .block-title,
  .customer-address-index #new-address .block-title {
    padding: 0 40px;
  }
  .customer-address-index #ajaxresponse .close-panel,
  .customer-address-index #new-address .close-panel {
    padding: 32px 40px 0;
  }
  .customer-address-index #ajaxresponse form,
  .customer-address-index #new-address form {
    padding: 40px;
  }
  .checkout-onepage-success .checkout-success,
  .checkout-onepage-success .checkout-fail {
    margin-bottom: 80px;
    margin-top: 30px;
  }
  .amlocator-index-index .amlocator__banner h1 {
    font-size: 84px;
    line-height: 88px;
    max-width: 700px;
  }
  .amlocator-index-index .amlocator-map-container {
    height: auto !important;
    max-height: unset !important;
    flex-direction: row !important;
  }
  .amlocator-index-index .amlocator-search-container {
    margin-bottom: 0 !important;
    padding: 52px 32px;
  }
  .amlocator-index-index .amlocator-search-container .amlocator-block {
    margin-bottom: 32px !important;
    overflow: hidden;
  }
  .amlocator-index-index .amlocator-search-container__title {
    font-size: 40px;
    line-height: 44px;
    margin-bottom: 60px;
  }
  .amlocator-index-index .amlocator-block.-storelist {
    -webkit-box-flex: auto !important;
    flex: auto !important;
    margin-top: 40px;
    margin-bottom: 80px;
  }
  .amlocator-index-index .amlocator-block.-storelist .amlocator-wrapper {
    padding: 32px 24px;
  }
  .amlocator-index-index .amlocator-block.-map {
    max-height: 500px !important;
  }
  .amlocator-index-index .amlocator-extra-content__title {
    font-size: 32px;
    line-height: 40px;
    max-width: 476px;
  }
  .amlocator-index-index .amlocator-extra-content__content {
    font-size: 24px;
    line-height: 32px;
  }
  .amlocator-index-index .amlocator-extra-content.--top {
    margin-bottom: 80px;
  }
  .amlocator-index-index .amlocator-extra-content.--bottom {
    margin-bottom: 120px;
  }
  .amlocator-index-index .amlocator-table {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr 1fr 1fr;
    row-gap: 10px;
  }
  .amlocator-index-index .amlocator-table .row {
    display: contents;
  }
  .amlocator-index-index .amlocator-table .row > div {
    padding: 12px;
    border-bottom: 1px solid #eee;
  }
  .amlocator-index-index .button__register {
    display: inline-block;
    margin-top: 32px;
  }
  .amlocator-index-index .amlocator__banner {
    margin-bottom: 80px;
  }
  .amlocator-index-index .amlocator-store-information {
    overflow-x: hidden;
  }
  .amlocator-index-index .amlocator-store-desc {
    overflow-x: hidden;
  }
  .m-message-container {
    max-width: 630px;
    margin-right: 80px;
  }
  .modal-popup.modal-slide .modal-footer {
    border-top: 1px solid #c1c1c1;
    text-align: right;
  }
  /**
     * @codingStandardsIgnoreStart
     */
  #store-selector .form-continue .actions-toolbar > .primary {
    float: right;
  }
  #store-selector .form-continue .actions-toolbar .action.primary {
    margin: 0;
  }
  .pagebuilder-mobile-only {
    display: none !important;
  }
  .checkout-index-index .opc-wrapper.am-opc-wrapper .shipping-address-item {
    width: 50%;
  }
  #checkout.am-checkout.-modern.-layout-1column .authentication-wrapper {
    min-width: 300px;
  }
  .amcheckout-main-container.-modern .amcheckout-step-container .amcheckout-form-login .amcheckout-email .amcheckout-wrapper {
    -webkit-box-flex: inherit;
    -ms-flex: inherit;
    flex: inherit;
    width: calc(50% - 7px);
  }
  .amcheckout-main-container.-modern .amcheckout-step-container .amcheckout-delivery-date .field.date,
  .amcheckout-main-container.-modern .amcheckout-step-container .amcheckout-delivery-date .field.timepicker {
    width: 50%;
  }
  .amcheckout-main-container.-modern .amcheckout-step-container .amcheckout-delivery-date .field.date {
    padding-right: 10px;
  }
  .amcheckout-main-container.-modern .amcheckout-step-container .amcheckout-delivery-date .field.timepicker {
    padding-left: 10px;
  }
  .amcheckout-main-container.-modern .amcheckout-step-container .amcheckout-summary-container .amcheckout-title {
    background: #eee;
    color: #363636;
  }
  .amcheckout-main-container.-modern .amcheckout-step-container .amcheckout-summary-container .amcheckout-title > .amcheckout-icon {
    background: none;
  }
  .amcheckout-main-container.-modern .amcheckout-step-container .amcheckout-summary-container .subtotal {
    width: 15%;
  }
  .amcheckout-main-container.-modern .amcheckout-step-container .amcheckout-summary-container .table-totals {
    margin-left: auto;
    width: 40%;
  }
  .amcheckout-main-container.-modern .amcheckout-step-container .amcheckout-additional-options .amcheckout-checkboxes,
  .amcheckout-main-container.-modern .amcheckout-step-container .amcheckout-additional-options .amcheckout-comment {
    display: inline-block;
    vertical-align: top;
  }
  .amcheckout-main-container.-modern .amcheckout-step-container .amcheckout-additional-options .amcheckout-checkboxes {
    box-sizing: border-box;
    padding-right: 10px;
    width: 35%;
  }
  .amcheckout-main-container.-modern .amcheckout-step-container .amcheckout-additional-options .amcheckout-comment {
    width: 65%;
  }
  .amcheckout-main-container.-modern .amcheckout-step-container .checkout-payment-method .payment-option-title {
    border: none;
  }
  .checkout-index-index:not(.amasty-jet-theme) .amcheckout-main-container.-modern.-layout-1column .amcheckout-summary-container .details-qty {
    max-width: 20%;
  }
  .amcheckout-main-container.-modern.-layout-2columns {
    position: relative;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-column {
    margin: 0;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-column.-main {
    float: left;
    width: calc(100% - (380px + 60px));
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-column.-sidebar {
    float: right;
    width: 380px;
    transition: all .3s ease;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-column.-sidebar.-sticky {
    overflow: auto;
    max-height: 100vh;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-step-container.-summary,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container.-summary {
    background: #fff;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-step-container.-summary > .checkout-payment-method .actions-toolbar,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container.-summary > .checkout-payment-method .actions-toolbar {
    margin-bottom: 20px;
    text-align: center;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-step-container.-summary > .checkout-payment-method .actions-toolbar .amasty.checkout,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container.-summary > .checkout-payment-method .actions-toolbar .amasty.checkout {
    float: none;
    width: 70%;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-step-container .amcheckout-summary-container,
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-step-container .amcheckout-summary-container .amcheckout-title,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-summary-container,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-summary-container .amcheckout-title,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-additional-options,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-additional-options .amcheckout-title {
    background: #f9f9f9;
    cursor: default;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-step-container .amcheckout-summary-container .product-item-name,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-summary-container .product-item-name,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-additional-options .product-item-name {
    width: 100%;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-step-container .amcheckout-summary-container .subtotal,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-summary-container .subtotal,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-additional-options .subtotal {
    width: auto;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-step-container .amcheckout-summary-container .table-totals,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-summary-container .table-totals,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-additional-options .table-totals {
    margin-left: 0;
    width: 100%;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-step-container .amcheckout-additional-options {
    background: #fff;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-step-container .amcheckout-additional-options .amcheckout-checkboxes,
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-step-container .amcheckout-additional-options .amcheckout-comment {
    display: block;
    width: 100%;
  }
  .amcheckout-sticky-stopper {
    display: block;
    visibility: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 0;
  }
  .amcheckout-main-container.-modern.-layout-3columns {
    display: flex;
    justify-content: space-between;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-column {
    width: 32%;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-title {
    cursor: default;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-form-login .amcheckout-email .amcheckout-wrapper,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .form-login .amcheckout-email .amcheckout-wrapper {
    flex: auto;
    width: inherit;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-form-login .amcheckout-password,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .form-login .amcheckout-password {
    width: 100%;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-shipping-address .shipping-address-item,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-shipping-address .shipping-address-details {
    width: 100%;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-shipping-address .shipping-address-item:not(:last-of-type),
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-shipping-address .shipping-address-details:not(:last-of-type) {
    margin-bottom: 10px;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-shipping-methods {
    min-width: inherit;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-shipping-methods .amcheckout-method {
    width: 100%;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-shipping-methods .amcheckout-method:not(:last-of-type) {
    margin-bottom: 10px;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .billing-address-details {
    width: 100%;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-payment-methods .payment-method:not(:last-of-type) {
    margin-bottom: 10px;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-delivery-date .field.date .control {
    position: relative;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-delivery-date .field.date .input-text._has-datepicker {
    width: 100%;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-delivery-date .field.date ._has-datepicker ~ .ui-datepicker-trigger {
    position: absolute;
    top: 7px;
    right: 7px;
    margin: 0;
  }
  .amlocator-main-container .amlocator-search-container {
    width: 33%;
  }
  .amlocator-main-container .amlocator-search-container .amlocator-block {
    margin-bottom: 0;
    text-align: center;
    margin-bottom: 5px;
  }
  .amlocator-main-container .amlocator-search-container .amlocator-block.-separator {
    display: none;
  }
  .amlocator-main-container .amlocator-map-container {
    height: 100vh;
    max-height: 800px;
  }
  .amlocator-main-container .amlocator-map-container .amlocator-block.-filter {
    width: 33%;
  }
  .amlocator-main-container .amlocator-map-container .amlocator-block.-map {
    width: 67%;
    height: 80vh;
    max-height: 800px;
    padding-left: 15px;
  }
  .amlocator-main-container .amlocator-map-container .amlocator-block.-storelist {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    order: inherit;
    width: 33%;
  }
  .amlocator-main-container .amlocator-map-container .amlocator-map {
    height: 100%;
  }
  .amlocator-main-container .amlocator-map-container .amlocator-map button {
    top: 0 !important;
    right: 0 !important;
  }
  .amlocator-main-container .amlocator-store-list .amlocator-wrapper {
    max-height: inherit;
  }
  .amlocator-main-container .amlocator-filters-container .amlocator-content {
    display: block;
  }
  .amlocator-main-container .amlocator-filters-container .amlocator-hidden-filter {
    display: none;
  }
  .amlocator-location-main .amlocator-location-container {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .amlocator-location-main .amlocator-location-container > .amlocator-column.-left,
  .amlocator-location-main .amlocator-location-container .amlocator-block.-grey {
    background: #fbfbfb;
  }
  .amlocator-location-main .amlocator-location-container > .amlocator-column.-left {
    width: 33%;
  }
  .amlocator-location-main .amlocator-location-container > .amlocator-column.-right {
    display: block;
    padding-left: 15px;
    width: 67%;
  }
  .amlocator-location-main .amlocator-location-container .amlocator-block.-map {
    height: 60vh;
  }
  .amlocator-location-main .amlocator-location-container .amlocator-location-reviews .amlocator-wrapper {
    margin-right: auto;
  }
  .amlocator-location-main .amlocator-location-container .amlocator-attributes-wrapper .amlocator-collapse-title {
    display: none;
  }
  .amlocator-location-main .amlocator-location-attribute {
    width: 50%;
    margin-bottom: 10px;
  }
  .amlocator-location-main .amlocator-location-attribute:not(:first-of-type) {
    margin-top: 0;
  }
  .amlocator-location-main .amlocator-location-attribute:nth-of-type(odd) {
    float: left;
  }
  .amlocator-location-main .amlocator-location-attribute:nth-of-type(even) {
    float: right;
  }
  .amlocator-attributes-container {
    display: block;
  }
  .amlocator-popup-overlay .amlocator-review-popup {
    width: 30%;
    min-width: 330px;
  }
  .amlocator-popup-overlay .field.review-field-ratings .control {
    width: inherit;
  }
  .contract-selector {
    width: 600px;
  }
  .contract-selector__options {
    height: 450px;
  }
  .contract-selector__actions {
    position: absolute;
    bottom: 0;
    width: 100%;
  }
  .contract-selector__inner {
    position: absolute;
    top: 0;
    width: 100%;
  }
  .contract-selector .contract-selector__list.address-list,
  .contract-selector .contract-selector__list.contract-list {
    max-height: 160px;
  }
  .contract-information__tooltip-text {
    left: 14px;
    top: 20px;
  }
  .contract-top-header__tooltip-text {
    position: absolute;
    top: 20px;
    left: 14px;
    width: 278px;
  }
  .contract-top-header__tooltip-wrapper {
    position: relative;
  }
  .contract-top-header__tooltip-wrapper:hover .contract-top-header__tooltip-text {
    opacity: 1;
  }
  .modal-custom-home .modal-inner-wrap {
    width: 844px;
    height: 532px;
  }
  .modal-custom-home .modal-inner-wrap .popup-content .column {
    width: 50%;
  }
  .mp-sidebar .data.item.title {
    width: 50% !important;
    margin: 0 !important;
  }
  .mp-sidebar .data.item.title .data.switch {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .mp-sidebar .data.item.title .data.switch div {
    width: fit-content;
    margin: auto;
  }
  .mp-sidebar #tab-label-popular .data.switch {
    border-right: 0 !important;
  }
  .hdmx__contact-button {
    top: 50%;
  }
  .hdmx__contact-button.hdmx__contact-button-left {
    margin-top: 75px;
    transform-origin: top left;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    left: 0;
  }
  .hdmx__contact-button.hdmx__contact-button-right {
    margin-top: -150px;
    transform-origin: bottom right;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    right: 0;
  }
  .hdmx__contact-popup {
    position: fixed;
    top: 7rem;
    left: 50%;
  }
  .hdmx__contact-popup .hdmx__wrapper {
    width: 650px;
    left: -50%;
    overflow: auto;
    max-height: 100vh;
  }
  .hdmx__contact-popup .hdmx__wrapper .max-attachment-size {
    margin-top: 10px;
  }
  .hdmx__contact-form .fieldset .group-2 .field,
  .hdmx__contact-form .fieldset .group-3 .field {
    width: 100%;
  }
  .hdmx__contact-form .fieldset .group-3 {
    margin-bottom: 2%;
  }
  .block-category-event.block:last-child {
    margin-bottom: 30px;
    padding: 10px 0 30px;
  }
  .block-category-event .block-title {
    margin: 0;
  }
  .block-category-event .block-title strong {
    font-size: 2.4rem;
  }
  .block-category-event .ticker li {
    display: none;
    margin: 0 50px;
  }
  .block-category-event .ticker .value {
    font-size: 6rem;
  }
  .block-category-event .ticker .label {
    font-size: 1.4rem;
    text-transform: none;
  }
  .block-category-event .dates .date {
    font-size: 5rem;
  }
  .block-category-event .dates .start {
    padding-right: 50px;
  }
  .block-category-event .dates .start:after {
    font-size: 5rem;
    right: 10px;
  }
  .contact-index-index .column:not(.sidebar-additional) .form.contact {
    min-width: 600px;
  }
  .paypal-review .paypal-review-title {
    border-bottom: 1px solid #cccccc;
  }
  .paypal-review .block-content .box-order-shipping-address,
  .paypal-review .block-content .box-order-shipping-method,
  .paypal-review .block-content .box-order-shipping-method + .box-order-billing-address {
    box-sizing: border-box;
    float: left;
    width: 33%;
  }
  .paypal-review .block-content .box-order-shipping-address {
    padding: 0 5%;
    width: 34%;
  }
  .paypal-review .table-paypal-review-items .col.price,
  .paypal-review .table-paypal-review-items .col.qty {
    text-align: center;
  }
  .paypal-review .table-paypal-review-items .col.item {
    width: 60%;
  }
  .paypal-review .col.subtotal,
  .paypal-review .mark,
  .paypal-review .amount {
    text-align: right;
  }
  .paypal-review-discount {
    border-top: 1px solid #cccccc;
  }
  .paypal-review-discount .block {
    margin-bottom: 15px;
  }
  .paypal-review-discount .block.giftcard.active {
    padding-bottom: 40px;
  }
  .paypal-review-discount .block .title:after {
    display: inline;
    margin-left: 10px;
    position: static;
  }
  .paypal-review-discount .block .content {
    padding-bottom: 0;
  }
  .order-review-form .actions-toolbar > .primary {
    float: right;
  }
  .order-review-form .action.primary {
    margin-right: 0;
  }
  .block-cart-failed .secondary .action {
    margin: 0;
  }
  .block-cart-failed .actions.primary {
    float: right;
  }
  .bundle-actions .action.primary.customize {
    width: auto;
  }
  .bundle-options-container .legend.title {
    font-size: 40px;
  }
  .bundle-options-container .bundle-options-wrapper,
  .bundle-options-container .product-options-wrapper {
    float: left;
    width: 57%;
  }
  .bundle-options-container .block-bundle-summary {
    float: right;
    margin-top: 66px;
    padding: 10px 20px;
    position: relative;
    width: 40%;
  }
  .bundle-options-container .block-bundle-summary .price-box .price-wrapper,
  .bundle-options-container .block-bundle-summary .price-box .price-wrapper > .price {
    color: #575757;
    font-size: 36px;
    font-weight: 600;
    line-height: 36px;
  }
  .bundle-options-container .block-bundle-summary .price-container .weee {
    color: #575757;
  }
  .bundle-options-container .block-bundle-summary .price-container .weee .price {
    font-size: 1.2rem;
    font-weight: 700;
  }
  .bundle-options-container .block-bundle-summary .price-including-tax + .price-excluding-tax .price {
    font-size: 1.4rem;
    line-height: 16px;
  }
  .bundle-options-container .block-bundle-summary .box-tocart .action.primary {
    margin-right: 1%;
    width: auto;
  }
  .bundle-options-container .block-bundle-summary .product-addto-links {
    text-align: left;
  }
  .page-layout-2columns-left .bundle-options-container .bundle-options-wrapper,
  .page-layout-2columns-left .bundle-options-container .block-bundle-summary,
  .page-layout-2columns-right .bundle-options-container .bundle-options-wrapper,
  .page-layout-2columns-right .bundle-options-container .block-bundle-summary,
  .page-layout-3columns .bundle-options-container .bundle-options-wrapper,
  .page-layout-3columns .bundle-options-container .block-bundle-summary {
    width: 48%;
  }
  #warning-quantity-div {
    width: 480px;
    top: 114px;
    bottom: unset;
    right: -800px;
    border-radius: 14px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    padding-bottom: 15px;
  }
  #warning-quantity-div.show {
    bottom: unset;
    right: 0;
    transition: 2s;
  }
  #warning-quantity-div .required-info {
    max-width: 250px;
    margin: 0;
  }
  #warning-quantity-div .required-info strong {
    font-size: 18px;
    padding-top: 5px;
    padding-bottom: 15px;
  }
  #warning-quantity-div .required-info .warning-message {
    padding-top: 5px;
    font-size: 14px;
  }
  #warning-quantity-div .cart-info .icon-cart {
    justify-content: flex-end;
    display: flex;
    padding-top: 8px;
  }
  #warning-quantity-div .cart-info .icon-cart img {
    padding-left: 8px;
  }
  #warning-quantity-div .cart-info .actual-cart-price {
    font-size: 18px;
    font-weight: normal;
  }
  #warning-quantity-div .cart-info .benefict {
    font-size: 14px !important;
  }
  .img-zoom-lens {
    position: absolute;
    border: 1px solid #102134;
    /*set the size of the lens:*/
    width: 121px;
    height: 121px;
    border-radius: 4px;
  }
  .img-zoom-result {
    z-index: 999999;
    right: -300px;
    top: 0;
    bottom: 0;
    margin: auto;
    box-shadow: 0px 10px 32px -12px rgba(0, 0, 0, 0.14);
    background: white;
    border-radius: 16px;
    width: 270px;
    height: 250px;
    padding: 10px;
    position: absolute;
    display: none;
    pointer-events: none;
    background-repeat: no-repeat;
  }
  .catalog-category-view .page-main,
  .catalogsearch-result-index .page-main {
    max-width: unset;
    padding-inline: 36px;
  }
  .catalog-category-view .list-headings,
  .catalogsearch-result-index .list-headings {
    border-bottom: 1px solid #102134;
    padding-bottom: 10px;
  }
  .catalog-category-view .toolbar.toolbar-products,
  .catalogsearch-result-index .toolbar.toolbar-products {
    margin-left: 0;
  }
  .catalog-category-view .grid .product-item-info .origin-brand,
  .catalogsearch-result-index .grid .product-item-info .origin-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .catalog-category-view .grid .product-item-info .origin-brand .theme-product-label span,
  .catalogsearch-result-index .grid .product-item-info .origin-brand .theme-product-label span {
    padding: 6px 12px;
    font-size: 14px;
  }
  .catalog-category-view .products.list.items.product-items,
  .catalogsearch-result-index .products.list.items.product-items {
    padding-left: 0;
  }
  .catalog-category-view .product-items .product-item-info,
  .catalogsearch-result-index .product-items .product-item-info {
    padding: 48px 0;
    border-radius: 16px;
  }
  .catalog-category-view .product-items .product-item .product-image-container,
  .catalogsearch-result-index .product-items .product-item .product-image-container {
    width: 250px !important;
  }
  .catalog-category-view .product-items .product-item .product-image-container .product-image-wrapper .product-image-photo,
  .catalogsearch-result-index .product-items .product-item .product-image-container .product-image-wrapper .product-image-photo {
    overflow: hidden;
    width: 210px;
    height: 230px;
    object-fit: contain;
  }
  .catalog-category-view .product-items .product-item .product-image-container .product-image-wrapper .product-image-photo.loader,
  .catalogsearch-result-index .product-items .product-item .product-image-container .product-image-wrapper .product-image-photo.loader {
    border: 4px solid red;
  }
  .catalog-category-view .product-items .product-item .product-item-photo,
  .catalogsearch-result-index .product-items .product-item .product-item-photo {
    display: flex;
    align-items: center;
  }
  .catalog-category-view .columns .toolbar-top,
  .catalogsearch-result-index .columns .toolbar-top {
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 9;
    padding-top: 10px;
  }
  .catalog-category-view .columns .sidebar,
  .catalogsearch-result-index .columns .sidebar {
    position: sticky;
    top: 10px;
  }
  .catalog-category-view.not-logged-in .list.products-list .list-headings .col.col3,
  .catalogsearch-result-index.not-logged-in .list.products-list .list-headings .col.col3 {
    width: 44%;
  }
  .catalog-category-view.not-logged-in .list.products-list .product-item-details .col.col3,
  .catalogsearch-result-index.not-logged-in .list.products-list .product-item-details .col.col3 {
    width: 44%;
  }
  .catalog-category-view .product-item-inner,
  .catalogsearch-result-index .product-item-inner {
    gap: 32px;
  }
  .catalogsearch-result-index .breadcrumbs {
    margin-top: 115px !important;
    margin-bottom: 0 !important;
  }
  .page-products .columns {
    padding-top: 0;
    position: relative;
    z-index: 1;
  }
  .toolbar-amount {
    display: block;
    float: left;
    position: static;
  }
  .products.wrapper ~ .toolbar .pages {
    float: left;
    margin-bottom: 0;
  }
  .modes {
    display: inline-block;
    float: left;
    margin-right: 20px;
  }
  .products.wrapper ~ .toolbar .modes {
    display: none;
  }
  .modes-mode {
    background-color: #f0f0f0;
    box-shadow: inset 0 1px 0 0 #ffffff, inset 0 -1px 0 0 rgba(204, 204, 204, 0.3);
    color: #5e5e5e;
    border: 1px solid #cccccc;
    border-right: 0;
    float: left;
    font-weight: 400;
    line-height: 1;
    padding: 7px 10px;
    text-align: center;
    display: inline-block;
    text-decoration: none;
  }
  .modes-label + .modes-mode {
    border-radius: 3px 0 0 3px;
  }
  .modes-mode:hover {
    color: #5e5e5e;
    background: #ebebeb;
  }
  .modes-mode:last-child {
    border-radius: 0 3px 3px 0;
    border-right: 1px solid #cccccc;
  }
  .modes-mode.active {
    box-shadow: inset 0 1px 0 0 rgba(204, 204, 204, 0.8), inset 0 -1px 0 0 rgba(204, 204, 204, 0.3);
    background: #dedede;
    color: #9e9e9e;
  }
  .modes-mode > span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .modes-mode:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    line-height: inherit;
    color: #7d7d7d;
    content: '\e60d';
    font-family: 'luma-icons';
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .modes-mode:hover:before {
    color: #7d7d7d;
  }
  .page-products .sorter {
    position: static;
  }
  .mode-list:before {
    content: '\e60b';
  }
  .products.wrapper ~ .toolbar .limiter {
    display: block;
    float: right;
  }
  .product-info-main .page-title-wrapper h1 {
    margin-bottom: 15px;
  }
  .product-info-main .product-add-form {
    padding-top: 20px;
  }
  .box-tocart .action.tocart {
    margin-bottom: 0;
    margin-right: 1%;
    width: 49%;
  }
  .product-social-links {
    text-align: left;
  }
  .product-options-bottom .price-box .price-container,
  .product-info-price .price-box .price-container {
    font-size: 21px;
  }
  .product-options-bottom .price-box .price-container .price,
  .product-info-price .price-box .price-container .price {
    font-size: 36px;
    line-height: 36px;
  }
  .product-options-bottom .price-box .price-including-tax + .price-excluding-tax .price,
  .product-info-price .price-box .price-including-tax + .price-excluding-tax .price {
    font-size: 1.4rem;
    line-height: 16px;
  }
  .product-info-main {
    float: right;
  }
  .product.media {
    float: left;
    margin-bottom: 25px;
  }
  .page-layout-1column .product-info-main {
    width: 40%;
  }
  .page-layout-1column .product.media {
    width: 57%;
  }
  .page-layout-2columns-left .product-info-main,
  .page-layout-2columns-right .product-info-main,
  .page-layout-3columns .product-info-main {
    width: 48%;
  }
  .page-layout-2columns-left .product.media,
  .page-layout-2columns-right .product.media,
  .page-layout-3columns .product.media {
    width: 50%;
  }
  .product-add-form .product-options-wrapper .field .control {
    width: 80%;
  }
  .sidebar .product-items .product-item-info .product-item-photo {
    float: left;
    left: auto;
    margin: 0 10px 10px 0;
    position: relative;
    top: auto;
  }
  .sidebar .product-items .product-item-details {
    margin: 0;
  }
  .sidebar .product-items .product-item-actions {
    clear: left;
  }
  .catalog-category-view.page-layout-1column .column.main {
    min-height: inherit;
  }
  .compare.wrapper {
    float: right;
    margin: 0;
    padding: 0;
    list-style: none none;
  }
  .compare.wrapper .action.compare {
    line-height: 40px;
    color: #333333;
    text-decoration: none;
  }
  .compare.wrapper .action.compare:visited {
    color: #333333;
    text-decoration: none;
  }
  .compare.wrapper .action.compare:hover {
    color: #333333;
    text-decoration: underline;
  }
  .compare.wrapper .action.compare:active {
    color: #333333;
    text-decoration: underline;
  }
  .compare.wrapper .counter.qty {
    color: #7d7d7d;
  }
  .compare.wrapper .counter.qty:before {
    content: '(';
  }
  .compare.wrapper .counter.qty:after {
    content: ')';
  }
  .box-tocart .paypal:first-of-type {
    margin-top: 13px;
  }
  .block-search {
    float: right;
    padding-left: 15px;
    position: relative;
    width: 250px;
    z-index: 4;
  }
  .block-search .control {
    border-top: 0;
    margin: 0;
    padding: 0;
  }
  .block-search input {
    margin: 0;
    padding-right: 35px;
    position: static;
  }
  .block-search input::-webkit-input-placeholder {
    color: #575757;
  }
  .block-search input:-moz-placeholder {
    color: #575757;
  }
  .block-search input::-moz-placeholder {
    color: #575757;
  }
  .block-search input:-ms-input-placeholder {
    color: #575757;
  }
  .block-search .action.search {
    display: inline-block;
    background-image: none;
    background: none;
    -moz-box-sizing: content-box;
    border: 0;
    box-shadow: none;
    line-height: inherit;
    margin: 0;
    padding: 0;
    text-decoration: none;
    text-shadow: none;
    font-weight: 400;
    position: absolute;
    right: 10px;
    top: 0;
    z-index: 1;
  }
  .block-search .action.search > span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .block-search .action.search:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    line-height: 32px;
    color: #757575;
    content: '\e615';
    font-family: 'luma-icons';
    margin: 0;
    vertical-align: top;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .block-search .action.search:hover:before {
    color: #333333;
  }
  .block-search .action.search:active:before {
    color: inherit;
  }
  .block-search .action.search:focus,
  .block-search .action.search:active {
    background: none;
    border: none;
  }
  .block-search .action.search:hover {
    background: none;
    border: none;
  }
  .block-search .action.search.disabled,
  .block-search .action.search[disabled],
  fieldset[disabled] .block-search .action.search {
    pointer-events: none;
    opacity: 0.5;
  }
  .block-search .action.search:focus:before {
    color: #333333;
  }
  .search-autocomplete {
    margin-top: 0;
  }
  .checkout-cart-index .page-main {
    padding-left: 15px;
    padding-right: 15px;
  }
  .cart-container .form-cart .actions.main {
    text-align: right;
  }
  .cart-container .widget {
    float: left;
  }
  .cart-container .widget.block {
    margin-bottom: 20px;
  }
  .cart-summary {
    width: 25%;
    float: right;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
    padding: 1px 20px 25px;
    position: relative;
  }
  .cart-summary > .title {
    display: block;
  }
  .cart-summary .fieldset .actions-toolbar {
    margin-left: 0;
  }
  .cart-summary .fieldset .actions-toolbar > .secondary {
    float: none;
  }
  .cart-summary .block > .title {
    padding-left: 0;
  }
  .cart-summary .block > .title:after {
    right: 3px;
  }
  .cart-summary .block .fieldset .field {
    margin: 0 0 20px;
    margin: 0 0 10px;
  }
  .cart-summary .block .fieldset .field:not(.choice) > .label {
    box-sizing: content-box;
    float: none;
    width: auto;
    text-align: left;
    padding: 0;
  }
  .cart-summary .block .fieldset .field:not(.choice) > .control {
    float: none;
    width: auto;
  }
  .cart-summary .block .fieldset .field > .label {
    margin: 0 0 8px;
    display: inline-block;
  }
  .cart-summary .block .fieldset .field.choice:before,
  .cart-summary .block .fieldset .field.no-label:before {
    display: none;
  }
  .cart-summary .checkout-methods-items {
    padding: 0;
  }
  .cart.table-wrapper .items {
    min-width: 100%;
    width: auto;
  }
  .cart.table-wrapper tbody td {
    padding-top: 20px;
  }
  .cart.table-wrapper .item .col.item {
    padding: 20px 8px 20px 0;
  }
  .cart.table-wrapper .item-actions td {
    padding: 0;
  }
  .cart.table-wrapper .product-item-photo {
    display: table-cell;
    max-width: 100%;
    padding-right: 20px;
    position: static;
    vertical-align: top;
    width: 1%;
  }
  .cart.table-wrapper .product-item-details {
    display: table-cell;
    padding-bottom: 35px;
    vertical-align: top;
    white-space: normal;
    width: 99%;
  }
  .cart-products-toolbar {
    margin: 2px 0 0;
  }
  .cart-products-toolbar .toolbar-amount {
    line-height: 30px;
    margin: 0;
  }
  .cart-products-toolbar .pages {
    float: right;
  }
  .cart-products-toolbar .pages .item:last-child {
    margin-right: 0;
  }
  .cart.table-wrapper .cart-products-toolbar + .cart thead tr th.col {
    padding-bottom: 10px;
    padding-top: 10px;
  }
  .cart.table-wrapper .cart + .cart-products-toolbar {
    margin-top: 25px;
  }
  .cart-discount {
    width: 75%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
    border: 0;
    box-sizing: border-box;
    padding-right: 4%;
  }
  .cart-discount .block .title:after {
    display: inline;
    margin-left: 10px;
    position: static;
  }
  .cart-discount .block.discount {
    width: auto;
  }
  .cart-discount .block .actions-toolbar {
    width: auto;
  }
  .block.crosssell {
    width: 75%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
    padding: 0 4% 0 0;
  }
  .block.crosssell .products-grid .product-item {
    width: 25%;
  }
  .minicart-wrapper {
    margin-left: 13px;
  }
  .minicart-wrapper .block-minicart {
    width: 390px;
  }
  .minilist .action.delete:before,
  .minicart-wrapper .action.edit:before {
    font-size: 16px;
    line-height: inherit;
  }
  .opc-wrapper {
    width: 66.66666667%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
    padding-right: 30px;
  }
  .checkout-onepage-success .print {
    display: block;
    float: right;
    margin: 23px 0 0;
  }
  .opc-progress-bar {
    margin: 0 0 20px;
    counter-reset: i;
    display: block;
    font-size: 0;
  }
  .opc-progress-bar-item {
    margin: 0 0 10px;
    width: 185px;
    display: inline-block;
    position: relative;
    text-align: center;
    vertical-align: top;
  }
  .opc-progress-bar-item:before {
    background: #e4e4e4;
    border: 1px solid #cccccc;
    top: 19px;
    transition: background 0.3s;
    content: '';
    height: 7px;
    left: 0;
    position: absolute;
    width: 100%;
  }
  .opc-progress-bar-item:first-child:before {
    border-radius: 6px 0 0 6px;
  }
  .opc-progress-bar-item:last-child:before {
    border-radius: 0 6px 6px 0;
  }
  .opc-progress-bar-item > span {
    display: inline-block;
    padding-top: 45px;
    width: 100%;
    word-wrap: break-word;
    color: #808080;
    font-weight: 300;
    font-size: 1.8rem;
  }
  .opc-progress-bar-item > span:before,
  .opc-progress-bar-item > span:after {
    background: #e4e4e4;
    border: 1px solid #cccccc;
    height: 38px;
    margin-left: -19px;
    transition: background 0.3s;
    width: 38px;
    border-radius: 50%;
    content: '';
    left: 50%;
    position: absolute;
    top: 0;
  }
  .opc-progress-bar-item > span:after {
    background: #ffffff;
    height: 26px;
    margin-left: -13px;
    top: 6px;
    width: 26px;
    content: counter(i);
    counter-increment: i;
    color: #333333;
    font-weight: 600;
    font-size: 1.8rem;
  }
  .opc-progress-bar-item._complete {
    cursor: pointer;
  }
  .opc-progress-bar-item._complete:hover:before {
    background: #d7d7d7;
  }
  .opc-progress-bar-item._complete:hover > span:before {
    background: #d7d7d7;
  }
  .opc-progress-bar-item._complete > span {
    color: #0d6edf;
  }
  .opc-progress-bar-item._complete > span:after {
    font-family: 'luma-icons';
    content: '\e610';
  }
  .opc-progress-bar-item._active:before {
    background: #222222;
    border-color: #222222;
  }
  .opc-progress-bar-item._active > span {
    color: #333333;
    font-weight: 600;
  }
  .opc-progress-bar-item._active > span:before {
    background: #222222;
    border-color: #222222;
  }
  .opc-progress-bar-item._active > span:after {
    border-color: #222222;
    content: '\e610';
    font-family: 'luma-icons';
  }
  .checkout-index-index .modal-popup .form-shipping-address {
    max-width: 500px;
  }
  .checkout-index-index .modal-popup .modal-footer .action-save-address {
    float: right;
    margin: 0 0 0 20px;
  }
  .checkout-index-index .modal-popup .modal-inner-wrap {
    margin-left: -400px;
    width: 800px;
    left: 50%;
  }
  .checkout-shipping-method .actions-toolbar > .primary {
    float: right;
  }
  .checkout-shipping-method .actions-toolbar .action.primary {
    margin: 0;
  }
  .checkout-shipping-method .actions-toolbar .action.primary.button {
    margin-top: 2px;
  }
  .opc-wrapper .form-login,
  .opc-wrapper .form-shipping-address {
    max-width: 500px;
  }
  .opc-wrapper .form-login {
    border-bottom: 1px solid #cccccc;
    padding-bottom: 20px;
  }
  .table-checkout-shipping-method {
    width: auto;
  }
  .opc-wrapper .shipping-address-item {
    width: 33.33333333%;
  }
  .opc-wrapper .shipping-address-item:before {
    background: #cccccc;
    height: calc(100% - 20px);
    content: '';
    left: 0;
    position: absolute;
    top: 0;
    width: 1px;
  }
  .opc-wrapper .shipping-address-item:nth-child(3n + 1):before {
    display: none;
  }
  .opc-wrapper .shipping-address-item.selected-item:before {
    display: none;
  }
  .opc-wrapper .shipping-address-item.selected-item + .shipping-address-item:before {
    display: none;
  }
  .table-checkout-shipping-method {
    min-width: 500px;
  }
  .opc-sidebar {
    margin: 46px 0 20px;
    width: 16.66666667%;
    float: right;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .opc-summary-wrapper .modal-header .action-close {
    display: none;
  }
  .authentication-dropdown {
    background-color: #ffffff;
    border: 1px solid #aeaeae;
    -webkit-transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
    -webkit-transition: -webkit-transform linear 0.1s, visibility 0s linear 0.1s;
    position: absolute;
    text-align: left;
    top: 100%;
    transform: scale(1, 0);
    transform-origin: 0 0;
    transition: transform linear .1s, visibility 0s linear .1s;
    visibility: hidden;
    width: 100%;
  }
  .authentication-dropdown._show {
    z-index: 100;
    -webkit-transform: scale(1, 1);
    -webkit-transition: -webkit-transform linear 0.1s, visibility 0s linear 0s;
    transform: scale(1, 1);
    transition: transform linear .1s, visibility 0s linear 0s;
    visibility: visible;
  }
  .authentication-wrapper {
    width: 16.66666667%;
    text-align: right;
  }
  .block-authentication .block-title {
    font-size: 2.6rem;
    border-bottom: 0;
    margin-bottom: 25px;
  }
  .block-authentication .actions-toolbar > .primary {
    display: inline;
    float: right;
    margin-right: 0;
  }
  .block-authentication .actions-toolbar > .primary .action {
    margin-right: 0;
  }
  .block-authentication .actions-toolbar > .secondary {
    float: left;
    margin-right: 2rem;
    padding-top: 1rem;
  }
  .popup-authentication .modal-inner-wrap {
    min-width: 1024px;
    width: 60%;
  }
  .popup-authentication .block-authentication {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    border-top: 1px solid #c1c1c1;
  }
  .popup-authentication .block[class],
  .popup-authentication .form-login,
  .popup-authentication .fieldset,
  .popup-authentication .block-content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-grow: 1;
    flex-grow: 1;
  }
  .popup-authentication .block[class] {
    box-sizing: border-box;
    float: left;
    padding: 10px 30px 0 0;
    width: 50%;
  }
  .popup-authentication .block[class] + .block {
    border-left: 1px solid #c1c1c1;
    border-top: 0;
    margin: 0;
    padding: 10px 0 0 40px;
  }
  .popup-authentication .block[class] + .block:before {
    left: 0;
    top: 50%;
  }
  .popup-authentication .actions-toolbar {
    margin-bottom: 0;
    margin-top: auto;
  }
  .checkout-payment-method .actions-toolbar .primary {
    float: right;
    margin: 0;
  }
  .checkout-payment-method .fieldset > .field-select-billing > .control {
    float: none;
    width: 100%;
  }
  .checkout-billing-address .action-update {
    float: right;
  }
  .checkout-billing-address .actions-toolbar .action-cancel {
    margin: 6px 20px 0 0;
  }
  .checkout-payment-method .payment-option-title {
    padding-left: 22px;
  }
  .checkout-payment-method .payment-option-content .payment-option-inner + .actions-toolbar {
    margin-left: 0;
  }
  .login-container .block.login .actions-toolbar > .primary {
    margin-bottom: 0;
    margin-right: 30px;
  }
  .login-container .block.login .actions-toolbar > .secondary {
    float: left;
  }
  .login-container .fieldset > .field > .control {
    width: 80%;
  }
  .form-create-account .fieldset-fullname .fields {
    display: table;
    width: 100%;
  }
  .form-create-account .fieldset-fullname .fields .field {
    display: table-cell;
  }
  .form-create-account .fieldset-fullname .fields .field + .field {
    padding-left: 10px;
  }
  .form-create-account .fieldset-fullname .field-name-prefix,
  .form-create-account .fieldset-fullname .field-name-suffix {
    width: 50px;
  }
  .form.password.reset,
  .form.send.confirmation,
  .form.password.forget,
  .form.create.account,
  .form.search.advanced,
  .form.form-orders-search {
    min-width: 600px;
    width: 50%;
  }
  .account.page-layout-2columns-left .sidebar-main,
  .account.page-layout-2columns-left .sidebar-additional {
    width: 22.3%;
  }
  .account.page-layout-2columns-left .column.main {
    width: 77.7%;
  }
  .account.page-layout-2columns-left .sidebar-main .block {
    margin-bottom: 0;
  }
  .account .data.table {
    margin-bottom: 0;
  }
  .account .data.table .col.actions {
    white-space: nowrap;
  }
  .block-addresses-list .items.addresses {
    font-size: 0;
  }
  .block-addresses-list .items.addresses > .item {
    display: inline-block;
    font-size: 14px;
    margin-bottom: 20px;
    vertical-align: top;
    width: 48%;
  }
  .block-addresses-list .items.addresses > .item:nth-last-child(1),
  .block-addresses-list .items.addresses > .item:nth-last-child(2) {
    margin-bottom: 0;
  }
  .block-addresses-list .items.addresses > .item:nth-child(even) {
    margin-left: 4%;
  }
  .form-edit-account .fieldset .fieldset {
    margin-bottom: 20px;
    width: 100%;
  }
  .control.captcha-image .captcha-img {
    margin: 0 10px 10px 0;
  }
  .storecredit .block-balance-history {
    width: 100%;
  }
  .table-balance-history .col {
    width: 25%;
  }
  .page-product-downloadable .product-options-wrapper {
    float: left;
    width: 55%;
  }
  .page-product-downloadable .product-options-bottom {
    float: right;
    width: 40%;
  }
  .page-product-giftcard .product-info-main .price-box .price-container.price-final {
    font-size: 21px;
  }
  .page-product-giftcard .product-info-main .price-box .price-container.price-final .price {
    font-size: 36px;
    line-height: 36px;
  }
  .page-product-giftcard .product-info-main .product-info-stock-sku {
    padding-bottom: 0;
  }
  .page-product-giftcard .product-info-main .product-reviews-summary {
    float: none;
  }
  .page-product-giftcard .product-add-form {
    margin-top: -20px;
  }
  .page-product-giftcard .product-add-form .field:not(.text) {
    margin: 0 0 20px;
    padding: 0 12px 0 0;
    box-sizing: border-box;
    display: inline-block;
    width: 50%;
    vertical-align: top;
  }
  .page-product-giftcard .product-add-form .field:not(.text) > .label {
    margin: 0 0 8px;
    display: inline-block;
  }
  .page-product-giftcard .product-add-form .field:not(.text):last-child {
    margin-bottom: 0;
  }
  .page-product-giftcard .product-add-form .field:not(.text) + .fieldset {
    clear: both;
  }
  .page-product-giftcard .product-add-form .field:not(.text) > .label {
    font-weight: 600;
  }
  .page-product-giftcard .product-add-form .field:not(.text) > .label + br {
    display: none;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .choice input {
    vertical-align: top;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .fields.group:before,
  .page-product-giftcard .product-add-form .field:not(.text) .fields.group:after {
    content: '';
    display: table;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .fields.group:after {
    clear: both;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .fields.group .field {
    box-sizing: border-box;
    float: left;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .fields.group.group-2 .field {
    width: 50% !important;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .fields.group.group-3 .field {
    width: 33.3% !important;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .fields.group.group-4 .field {
    width: 25% !important;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .fields.group.group-5 .field {
    width: 20% !important;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .addon {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding: 0;
    width: 100%;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .addon textarea,
  .page-product-giftcard .product-add-form .field:not(.text) .addon select,
  .page-product-giftcard .product-add-form .field:not(.text) .addon input {
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    display: inline-block;
    margin: 0;
    width: auto;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .addon .addbefore,
  .page-product-giftcard .product-add-form .field:not(.text) .addon .addafter {
    background: #ffffff;
    background-clip: padding-box;
    border: 1px solid #c9c5ca;
    border-radius: 1px;
    color: #444444;
    font-family: inherit;
    font-size: 12px;
    height: 40px;
    line-height: 1.42857143;
    padding: 0 18px;
    vertical-align: baseline;
    width: 100%;
    box-sizing: border-box;
    -ms-flex-order: 3;
    -webkit-order: 3;
    order: 3;
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
    width: auto;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .addon .addbefore:disabled,
  .page-product-giftcard .product-add-form .field:not(.text) .addon .addafter:disabled {
    opacity: 0.5;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .addon .addbefore::-moz-placeholder,
  .page-product-giftcard .product-add-form .field:not(.text) .addon .addafter::-moz-placeholder {
    color: #575757;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .addon .addbefore::-webkit-input-placeholder,
  .page-product-giftcard .product-add-form .field:not(.text) .addon .addafter::-webkit-input-placeholder {
    color: #575757;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .addon .addbefore:-ms-input-placeholder,
  .page-product-giftcard .product-add-form .field:not(.text) .addon .addafter:-ms-input-placeholder {
    color: #575757;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .addon .addbefore {
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .additional {
    margin-top: 10px;
  }
  .page-product-giftcard .product-add-form .field:not(.text).required > .label:after,
  .page-product-giftcard .product-add-form .field:not(.text)._required > .label:after {
    content: '*';
    color: #e02b27;
    font-size: 1.6rem;
    margin: 0 0 0 5px;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .note {
    font-size: 1.6rem;
    margin: 3px 0 0;
    padding: 0;
    display: inline-block;
    text-decoration: none;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .note:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 32px;
    line-height: 16px;
    font-family: 'luma-icons';
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .page-product-giftcard .product-add-form .field:not(.text):nth-child(odd) {
    padding-right: 25px;
  }
  .page-product-giftcard .product-add-form .field:not(.text):nth-child(even) {
    padding-right: 0;
  }
  .page-product-giftcard .product-add-form .product-options-wrapper .field:not(.date) > .control {
    width: auto;
  }
  .gift-options {
    position: relative;
    z-index: 1;
  }
  .gift-options .actions-toolbar {
    clear: both;
    padding: 0;
    position: static;
  }
  .gift-options .actions-toolbar .secondary {
    float: right;
  }
  .gift-options .actions-toolbar .secondary .action {
    float: right;
    margin-left: 20px;
    margin-right: 0;
  }
  .gift-options .actions-toolbar .secondary .action-cancel {
    display: block;
    float: left;
    margin-top: 6px;
  }
  .gift-options .actions-toolbar:nth-child(3):before {
    border-left: 1px solid #c1c1c1;
    bottom: 5rem;
    content: '';
    display: block;
    left: 50%;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 0;
  }
  .gift-options-title {
    font-weight: 300;
    font-size: 1.8rem;
  }
  .gift-item-block .title {
    font-size: 1.6rem;
    padding: 20px 0;
  }
  .item-gift td {
    padding-left: 0;
    padding-right: 0;
  }
  .cart.table-wrapper .gift-options .actions-toolbar {
    clear: both;
    padding: 0;
    position: static;
  }
  .cart .action-gift {
    float: left;
  }
  .cart-container .cart-gift-item {
    margin-bottom: 20px;
  }
  .cart-container .cart-gift-item .gift-options,
  .cart-container .cart-gift-item .gift-summary {
    padding-bottom: 20px;
  }
  .form-giftregistry-share .fieldset .field,
  .form-giftregistry-edit .fieldset .field {
    width: 45%;
  }
  .form-giftregistry-edit .fieldset.shipping_address .fieldset {
    margin-top: 20px;
  }
  .table-giftregistry .col.create {
    white-space: nowrap;
  }
  .table-giftregistry .col.message {
    width: 40%;
  }
  .table-giftregistry .col.actions {
    width: 30%;
  }
  .table-giftregistry-items .col.note {
    width: 30%;
  }
  .account .data.table.table-giftregistry-items > thead > tr > th,
  .account .data.table.table-giftregistry-items > tbody > tr > th,
  .account .data.table.table-giftregistry-items > tfoot > tr > th,
  .account .data.table.table-giftregistry-items > thead > tr > td,
  .account .data.table.table-giftregistry-items > tbody > tr > td,
  .account .data.table.table-giftregistry-items > tfoot > tr > td {
    border-top: 1px solid #cccccc;
  }
  .account .data.table.table-giftregistry-items > caption + thead > tr:first-child > th,
  .account .data.table.table-giftregistry-items > colgroup + thead > tr:first-child > th,
  .account .data.table.table-giftregistry-items > thead:first-child > tr:first-child > th,
  .account .data.table.table-giftregistry-items > caption + thead > tr:first-child > td,
  .account .data.table.table-giftregistry-items > colgroup + thead > tr:first-child > td,
  .account .data.table.table-giftregistry-items > thead:first-child > tr:first-child > td {
    border-top: 0;
  }
  .account .data.table.table-giftregistry-items > tbody + tbody {
    border-top: 1px solid #cccccc;
  }
  .account .data.table.table-giftregistry-items th {
    border-bottom: 0;
  }
  .account .data.table.table-giftregistry-items > tbody > tr:nth-child(even) > td,
  .account .data.table.table-giftregistry-items > tbody > tr:nth-child(even) > th {
    background: none;
  }
  .form-giftregistry-search .fieldset {
    margin-bottom: 29px;
  }
  .form-giftregistry-search .fieldset .field.name,
  .form-giftregistry-search .fieldset .field.lastname {
    padding: 0 12px 0 0;
    box-sizing: border-box;
    display: inline-block;
    width: 50%;
    vertical-align: top;
    margin-bottom: auto;
  }
  .form-giftregistry-search .fieldset .field.name + .fieldset,
  .form-giftregistry-search .fieldset .field.lastname + .fieldset {
    clear: both;
  }
  .form-giftregistry-search .fieldset .field.lastname {
    padding: 0;
  }
  .block-giftregistry-shared-items .item {
    border-bottom: 1px solid #cccccc;
    border-top: 0;
  }
  .block-giftregistry-shared-items .product-item-photo {
    display: table-cell;
    max-width: 100%;
    padding: 0 20px 0 0;
    vertical-align: top;
    width: 1%;
  }
  .block-giftregistry-shared-items .product-item-details {
    display: table-cell;
    vertical-align: top;
    width: 99%;
    word-break: normal;
  }
  .block-giftregistry-shared-items .col.product {
    width: 48%;
  }
  .block-giftregistry-shared-items .col:not(.product) {
    text-align: center;
  }
  .block-giftregistry-shared-items .col.price {
    padding-top: 17px;
  }
  .block-giftregistry-shared-items .input-text.qty {
    margin-top: -4px;
  }
  .gift-options-cart-item .gift-wrapping,
  .cart-gift-item .gift-wrapping {
    box-sizing: border-box;
    float: left;
    padding-right: 20px;
    width: 50%;
  }
  .gift-options-cart-item .gift-wrapping + .gift-message,
  .cart-gift-item .gift-wrapping + .gift-message {
    border-left: 1px solid #c1c1c1;
    box-sizing: border-box;
    float: left;
    padding-left: 4.5rem;
    width: 50%;
  }
  .gift-options-cart-item .gift-summary .regular-price,
  .cart-gift-item .gift-summary .regular-price {
    white-space: nowrap;
  }
  .gift-options-cart-item .gift-wrapping-name,
  .cart-gift-item .gift-wrapping-name {
    padding-right: 20px;
  }
  .order-options .gift-wrapping,
  .table-order-review .gift-wrapping {
    max-width: 50%;
  }
  .page-product-grouped .product-info-price {
    float: none;
  }
  .page-product-grouped .minimal-price {
    margin-top: -8px;
  }
  .box-tocart .action.instant-purchase {
    margin-bottom: 0;
    margin-right: 1%;
    width: 49%;
  }
  .table-invitations .col {
    width: 50%;
  }
  .filter.block {
    margin-bottom: 40px;
  }
  .filter-title {
    display: none;
  }
  .filter-content .item {
    margin: 10px 0;
  }
  .filter-actions {
    margin-bottom: 30px;
  }
  .filter.active .filter-options,
  .filter-options {
    background: transparent;
    clear: both;
    display: block;
    overflow: initial;
    position: static;
  }
  .filter-subtitle {
    display: block;
    position: static;
  }
  .page-layout-1column .toolbar-products {
    position: absolute;
    top: 0;
    width: 100%;
  }
  .page-layout-1column .products ~ .toolbar-products {
    position: static;
  }
  .page-layout-1column.page-with-filter .column.main {
    padding-top: 45px;
    position: relative;
    z-index: 1;
  }
  .page-layout-1column .filter.block {
    border-top: 1px solid #cccccc;
  }
  .page-layout-1column .filter-content {
    margin-top: 10px;
  }
  .page-layout-1column .filter-subtitle {
    display: none;
  }
  .page-layout-1column .filter-options-item {
    border: 0;
    display: inline-block;
    margin-right: 25px;
    position: relative;
  }
  .page-layout-1column .filter-options-item.active {
    z-index: 2;
  }
  .page-layout-1column .filter-options-item.active .filter-options-content {
    visibility: visible;
  }
  .page-layout-1column .filter-options-item.active:hover {
    z-index: 3;
  }
  .page-layout-1column .filter-options-item.active:after,
  .page-layout-1column .filter-options-item.active:before {
    border: 8px solid transparent;
    height: 0;
    width: 0;
    border-bottom-color: #000000;
    bottom: -1px;
    content: '';
    display: block;
    left: 5px;
    position: absolute;
    z-index: 3;
  }
  .page-layout-1column .filter-options-item.active:after {
    border-bottom-color: #ffffff;
    margin-top: 2px;
    z-index: 4;
  }
  .page-layout-1column .filter-options-title {
    padding: 0 20px 0 0;
  }
  .page-layout-1column .filter-options-title:after {
    right: 2px;
    top: 3px;
    z-index: 3;
  }
  .page-layout-1column .filter-options-content {
    background: #ffffff;
    -webkit-box-shadow: 0 3px 5px 0 rgba(50, 50, 50, 0.75);
    -moz-box-shadow: 0 3px 5px 0 rgba(50, 50, 50, 0.75);
    -ms-box-shadow: 0 3px 5px 0 rgba(50, 50, 50, 0.75);
    box-shadow: 0 3px 5px 0 rgba(50, 50, 50, 0.75);
    border: 1px solid #cccccc;
    padding: 5px 0;
    position: absolute;
    top: 100%;
    visibility: hidden;
    width: 180px;
    z-index: 2;
  }
  .page-layout-1column .filter-options-content .item {
    margin: 0;
    padding: 5px;
  }
  .page-layout-1column .filter-options-content .item a {
    margin-left: 0;
  }
  .page-layout-1column .filter-options-content .item:hover {
    background-color: #e8e8e8;
  }
  .page-layout-1column .filter-current {
    display: inline;
    line-height: 35px;
  }
  .page-layout-1column .filter-current-subtitle {
    color: #7d7d7d;
    display: inline;
    font-size: 14px;
    font-weight: normal;
    padding: 0;
  }
  .page-layout-1column .filter-current-subtitle:after {
    content: ':';
  }
  .page-layout-1column .filter-current .item,
  .page-layout-1column .filter-current .items {
    display: inline;
  }
  .page-layout-1column .filter-current .item {
    margin-right: 25px;
    white-space: nowrap;
  }
  .page-layout-1column .filter-current .action.remove {
    line-height: normal;
  }
  .page-layout-1column .filter-actions {
    display: inline;
    white-space: nowrap;
  }
  .page-layout-1column .filter-actions ~ .filter-options {
    margin-top: 25px;
  }
  .wishlist.window.popup {
    bottom: auto;
    top: 20%;
    left: 50%;
    margin-left: -212px;
    width: 380px;
    right: auto;
  }
  .block-wishlist-management {
    margin-bottom: 20px;
  }
  .block-wishlist-management .wishlist-select {
    border-bottom: 1px solid #e8e8e8;
    display: table;
    margin-bottom: 15px;
    width: 100%;
  }
  .block-wishlist-management .wishlist-select .wishlist-name {
    display: table-cell;
    margin-right: 10px;
    padding: 5px 10px 10px;
    vertical-align: top;
    white-space: nowrap;
    width: 5%;
  }
  .block-wishlist-management .wishlist-select-items {
    display: table-cell;
    padding-right: 160px;
    vertical-align: top;
  }
  .block-wishlist-management .wishlist-select-items .item {
    display: inline-block;
    margin-right: 10px;
    padding: 5px 10px 10px;
  }
  .block-wishlist-management .wishlist-select-items .item:last-child {
    margin-right: 0;
  }
  .block-wishlist-management .wishlist-select-items .current {
    border-bottom: 3px solid #222222;
    font-weight: 600;
  }
  .block-wishlist-management .wishlist-select .wishlist-name-current {
    display: none;
  }
  .block-wishlist-management .wishlist-add.item {
    position: absolute;
    right: 0;
    top: 0;
  }
  .block-wishlist-management .wishlist-title strong {
    font-size: 4rem;
  }
  .block-wishlist-management .wishlist-info {
    float: left;
  }
  .block-wishlist-management .wishlist-toolbar {
    float: right;
  }
  .block-wishlist-info-items .product-item-photo {
    margin-left: 0;
  }
  .products-grid.wishlist .product-item-checkbox {
    float: left;
  }
  .products-grid.wishlist .product-item-checkbox + .product-item-name {
    margin-left: 25px;
  }
  .block.newsletter {
    max-width: 44%;
    width: max-content;
  }
  .block.newsletter .field.newsletter {
    max-width: 220px;
  }
  .block.newsletter .form.subscribe > .field,
  .block.newsletter .form.subscribe > .actions {
    float: left;
  }
  .product-reviews-summary {
    margin-bottom: 15px;
  }
  .products.wrapper.list .product-reviews-summary {
    margin: 0;
  }
  .product-reviews-summary .reviews-actions {
    font-size: 14px;
    margin-top: 3px;
  }
  .form-create-return .fieldset .field {
    width: 45%;
  }
  .magento-rma-guest-returns .column.main .block.block-order-details-view .block-content:not(.widget) .box {
    clear: none;
    float: left;
    width: 25%;
  }
  .block-returns-tracking .block-title .action {
    margin: 0 0 0 30px;
  }
  .block-returns-tracking .block-title .actions-track {
    float: right;
    margin-top: 12px;
  }
  .order-links .item {
    float: left;
    margin: 0 -1px 0 0;
  }
  .order-links .item a {
    padding: 1px 20px;
  }
  .order-links .item strong {
    border-bottom: 0;
    margin-bottom: -1px;
    padding: 1px 20px 2px 20px;
  }
  .order-actions-toolbar .action.print {
    display: block;
    float: right;
  }
  .account .column.main .block.block-order-details-view .block-content:not(.widget) .box,
  [class^='sales-guest-'] .column.main .block.block-order-details-view .block-content:not(.widget) .box,
  .sales-guest-view .column.main .block.block-order-details-view .block-content:not(.widget) .box {
    clear: none;
    float: left;
    width: 25%;
  }
  .block-order-details-comments {
    margin: 0 0 60px;
  }
  .block-order-details-comments .comment-date {
    clear: left;
    float: left;
    margin-right: 50px;
    max-width: 90px;
  }
  .block-order-details-comments .comment-content {
    overflow: hidden;
  }
  .order-details-items {
    margin-top: -1px;
    padding: 25px;
  }
  .order-details-items .col.price {
    text-align: center;
  }
  .order-details-items .col.subtotal {
    text-align: right;
  }
  .order-details-items tbody td {
    padding-bottom: 20px;
    padding-top: 20px;
  }
  .order-details-items tfoot .amount,
  .order-details-items tfoot .mark {
    text-align: right;
  }
  .order-details-items.ordered .order-title {
    display: none;
  }
  .order-pager-wrapper .order-pager-wrapper-top {
    padding-left: 0;
    padding-right: 0;
  }
  .order-pager-wrapper .toolbar-amount {
    position: relative;
  }
  .order-pager-wrapper .pages {
    float: right;
  }
  .table-order-items tbody .col.label,
  .table-order-items tbody .col.value {
    padding-left: 0;
  }
  .table-order-items.invoice .col.qty,
  .table-order-items.shipment .col.qty {
    text-align: center;
  }
  .table-order-items.creditmemo .col.qty,
  .table-order-items.creditmemo .col.discount,
  .table-order-items.creditmemo .col.subtotal {
    text-align: center;
  }
  .table-order-items.creditmemo .col.total {
    text-align: right;
  }
  .order-links .item {
    margin: 0 -1px 0 0;
  }
  .order-links .item a {
    padding: 1px 35px;
  }
  .order-links .item strong {
    padding: 1px 35px 2px 35px;
  }
  .form.send.friend {
    width: 60%;
  }
  .form.send.friend .fieldset .field {
    width: 45%;
  }
  .form.send.friend .fieldset .field.text {
    width: 90%;
  }
  .my-credit-cards .card-type img {
    display: block;
  }
  .products-grid.wishlist .product-item-info:hover .product-item-inner {
    display: block;
  }
  .products-grid.wishlist .product-item-tooltip {
    display: inline-block;
  }
  .products-grid.wishlist .product-item-actions {
    margin: 10px 0 0;
  }
  .products-grid.wishlist .product-item-actions > * {
    display: inline-block;
    margin-bottom: 7px;
    margin-top: 7px;
  }
  .products-grid.wishlist .product-item .fieldset {
    display: table;
  }
  .products-grid.wishlist .product-item .fieldset .field.qty,
  .products-grid.wishlist .product-item .fieldset .product-item-actions {
    display: table-cell;
    vertical-align: bottom;
  }
  .products-grid.wishlist .product-item .fieldset .field.qty {
    padding-right: 10px;
  }
  .products-grid.wishlist .product-item .box-tocart .actions-primary {
    margin: 0;
  }
  .products-grid.wishlist .product-item .box-tocart .stock {
    margin: 20px 0 0;
  }
  .products-grid.wishlist .product-item .tocart {
    width: auto;
  }
  .wishlist-index-index .product-item-info {
    width: auto;
  }
  .wishlist-index-index .product-item-inner {
    background: #ffffff;
    border: 1px solid #bbbbbb;
    box-shadow: 3px 4px 4px 0 rgba(0, 0, 0, 0.3);
    border-top: none;
    left: 0;
    margin: 9px 0 0 -1px;
    padding: 0 9px 9px;
    position: absolute;
    right: -1px;
    z-index: 2;
  }
  .wishlist-index-index .product-item-inner .comment-box {
    margin-top: -18px;
  }
  .wishlist-index-index .products-grid .product-items {
    margin: 0;
  }
  .wishlist-index-index .products-grid .product-item {
    margin-bottom: 20px;
    margin-left: calc((100% - 4 * 24.439%) / 3);
    padding: 0;
    width: 24.439%;
  }
  .wishlist-index-index .products-grid .product-item:nth-child(4n + 1) {
    margin-left: 0;
  }
  .customer-account-create .page-header {
    position: fixed;
    width: 100%;
  }
  .customer-account-create .page-main {
    margin-top: 100px;
  }
  .customer-account-create .page-main .top-header {
    padding: 40px;
    justify-content: space-between;
  }
  .customer-account-create .page-main .top-header .inner-cont {
    width: 60%;
  }
  .customer-account-create .page-main .top-header .inner-cont h2 {
    font-size: 40px;
    width: 30%;
  }
  .customer-account-create .page-main .top-header .progress-bar {
    height: auto;
    width: 30%;
  }
  .customer-account-create .page-main .top-header .progress-bar h3 {
    font-size: 24px;
  }
  .customer-account-create .page-main .top-header .progress-bar .progressbar {
    max-width: 250px;
  }
  .customer-account-create .page-main .top-header .progress-bar .progressbar li {
    font-size: 15px;
  }
  .customer-account-create .page-main .top-header .progress-bar .progressbar li span {
    width: 33px;
    height: 33px;
    margin: 0 auto 0 auto;
  }
  .customer-account-create .page-main .top-header .progress-bar .progressbar li:after {
    width: 100%;
    height: 3px;
    content: '';
    position: absolute;
    background: #b0c0dd;
    top: 14px;
    left: -50%;
    z-index: 1;
    transition: .3s;
  }
  .customer-account-create .page-main .top-header .progress-bar .progressbar li:first-child:after {
    content: none;
  }
  .customer-account-create .page-main .form.create.account {
    width: 100%;
    margin: 0 auto;
    max-width: 904px;
  }
  .customer-account-create .page-main .form.create.account .fieldset .legend span {
    font-size: 22px;
  }
  .customer-account-create .page-main .form.create.account .fieldset .field {
    width: 46%;
    float: left;
  }
  .customer-account-create .page-main .form.create.account .fieldset .field label {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    letter-spacing: .2px;
  }
  .customer-account-create .page-main .form.create.account .fieldset .field input {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: .2px;
  }
  .customer-account-create .page-main .form.create.account .fieldset .field.country label,
  .customer-account-create .page-main .form.create.account .fieldset .field.region label {
    font-size: 14px;
  }
  .customer-account-create .page-main .form.create.account .fieldset .field.country select,
  .customer-account-create .page-main .form.create.account .fieldset .field.region select {
    font-size: 16px;
    cursor: pointer;
  }
  .customer-account-create .page-main .form.create.account .fieldset .field:nth-child(odd) {
    float: right;
  }
  .customer-account-create .page-main .form.create.account a.btn.continue,
  .customer-account-create .page-main .form.create.account .actions-toolbar .submit {
    max-width: 200px;
  }
  .customer-account-create .page-main .form.create.account .step-three .fieldset {
    width: 46%;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
  }
  .customer-account-create .page-main .form.create.account .step-three .fieldset .field {
    width: 100%;
  }
  .customer-account-create .page-main .form.create.account .step-three .fieldset.create.info {
    float: left;
  }
  .customer-account-create .page-main .form.create.account .step-three .fieldset.create.account {
    float: right;
  }
  .customer-account-create .page-main .form.create.account .step-one .field.confirmation,
  .customer-account-create .page-main .form.create.account .step-two .field.confirmation {
    margin-bottom: 0;
  }
  .customer-account-create .page-main .form.create.account .step-one .div-to-continue,
  .customer-account-create .page-main .form.create.account .step-two .div-to-continue {
    display: flex;
    width: 100%;
    align-items: center;
    margin: 20px 0;
  }
  .customer-account-create .page-main .form.create.account .step-one .div-to-continue .button__register,
  .customer-account-create .page-main .form.create.account .step-two .div-to-continue .button__register {
    min-width: 200px;
    text-transform: uppercase;
  }
  .customer-account-create .page-main .form.create.account .step-three .fieldset.create.info {
    width: 100%;
    flex-wrap: wrap;
    flex-direction: row !important;
    justify-content: space-between;
  }
  .customer-account-create .page-main .form.create.account .step-three .fieldset.create.info .field.annual_production_in_hectoliters,
  .customer-account-create .page-main .form.create.account .step-three .fieldset.create.info .field.hectoliters_per_brew,
  .customer-account-create .page-main .form.create.account .step-three .fieldset.create.info .field.main_malt_type,
  .customer-account-create .page-main .form.create.account .step-three .fieldset.create.info .field.frequency_of_order,
  .customer-account-create .page-main .form.create.account .step-three .fieldset.create.info .field.annual_volume_in_hectoliters,
  .customer-account-create .page-main .form.create.account .step-three .fieldset.create.info .field.annual_base_malt_volume_in_kgs,
  .customer-account-create .page-main .form.create.account .step-three .fieldset.create.info .field.annual_speciality_malt_volume_in_kgs,
  .customer-account-create .page-main .form.create.account .step-three .fieldset.create.info .field.malt_volume_per_brew_in_kg {
    width: 45% !important;
  }
  .customer-account-create .page-main .form.create.account .step-three .actions-toolbar {
    display: flex;
    align-items: center;
    width: 100%;
  }
  .customer-account-create .page-main .form.create.account .step-three .actions-toolbar .primary {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-right: 0;
  }
  .customer-account-create .page-main .form.create.account .step-three .actions-toolbar .primary span {
    width: 100%;
  }
  .customer-account-create .page-main .form.create.account .step-two .fieldset {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    justify-content: space-between;
  }
  .customer-account-create .page-main .form.create.account .step-two .fieldset .field {
    width: calc(50% - 16px);
  }
  .customer-account-create .page-main .log-in {
    width: 100%;
    margin: 0 auto;
  }
  .customer-account-create .page-main .log-in p {
    margin-bottom: 0;
  }
  .cms-success-registration .top-header {
    padding: 40px;
    justify-content: space-between;
  }
  .cms-success-registration .top-header .inner-cont {
    width: 100%;
  }
  .cms-success-registration .top-header .inner-cont h2 {
    font-size: 40px;
    width: 100%;
  }
  .cms-success-registration .subtitle {
    max-width: 520px;
    margin-bottom: 60px;
  }
  html,
  body {
    height: 100%;
  }
  .navigation ul {
    padding: 0 8px;
  }
  .page-header {
    border: 0;
    margin-bottom: 0;
  }
  .page-header .panel.wrapper {
    border-bottom: 1px solid #e8e8e8;
    background-color: #6e716e;
  }
  .page-header .header.panel {
    padding-bottom: 10px;
    padding-top: 10px;
  }
  .page-header .switcher {
    float: right;
    margin-left: 15px;
    margin-right: -6px;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .page-main > .page-title-wrapper .page-title {
    display: inline-block;
  }
  .page-main > .page-title-wrapper .page-title + .action {
    float: right;
    margin-top: 20px;
  }
  .customer-welcome {
    display: inline-block;
    position: relative;
  }
  .customer-welcome:before,
  .customer-welcome:after {
    content: '';
    display: table;
  }
  .customer-welcome:after {
    clear: both;
  }
  .customer-welcome .action.switch {
    padding: 0;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
  }
  .customer-welcome .action.switch > span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .customer-welcome .action.switch:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 10px;
    line-height: 22px;
    color: inherit;
    content: '\e622';
    font-family: 'luma-icons';
    margin: 0;
    vertical-align: top;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .customer-welcome .action.switch:hover:after {
    color: inherit;
  }
  .customer-welcome .action.switch:active:after {
    color: inherit;
  }
  .customer-welcome .action.switch.active {
    display: inline-block;
    text-decoration: none;
  }
  .customer-welcome .action.switch.active > span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .customer-welcome .action.switch.active:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 10px;
    line-height: 22px;
    color: inherit;
    content: '\e621';
    font-family: 'luma-icons';
    margin: 0;
    vertical-align: top;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .customer-welcome .action.switch.active:hover:after {
    color: inherit;
  }
  .customer-welcome .action.switch.active:active:after {
    color: inherit;
  }
  .customer-welcome ul {
    margin: 0;
    padding: 0;
    list-style: none none;
    background: #ffffff;
    border: none;
    margin-top: 4px;
    min-width: 100%;
    z-index: 101;
    box-sizing: border-box;
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.15);
  }
  .customer-welcome ul li {
    margin: 0;
    padding: 0;
  }
  .customer-welcome ul li:hover {
    background: #e8e8e8;
    cursor: pointer;
  }
  .customer-welcome ul:before,
  .customer-welcome ul:after {
    border-bottom-style: solid;
    content: '';
    display: block;
    height: 0;
    position: absolute;
    width: 0;
  }
  .customer-welcome ul:before {
    border: 6px solid;
    border-color: transparent transparent #ffffff transparent;
    z-index: 99;
  }
  .customer-welcome ul:after {
    border: 7px solid;
    border-color: transparent transparent #bbbbbb transparent;
    z-index: 98;
  }
  .customer-welcome ul:before {
    right: 10px;
    top: -12px;
  }
  .customer-welcome ul:after {
    right: 9px;
    top: -14px;
  }
  .customer-welcome.active {
    overflow: visible;
  }
  .customer-welcome.active ul {
    display: block;
  }
  .customer-welcome li a {
    color: #333333;
    text-decoration: none;
    display: block;
    line-height: 1.4;
    padding: 8px;
  }
  .customer-welcome li a:visited {
    color: #333333;
    text-decoration: none;
  }
  .customer-welcome li a:hover {
    color: #333333;
    text-decoration: none;
  }
  .customer-welcome li a:active {
    color: #333333;
    text-decoration: none;
  }
  .customer-welcome .customer-name {
    cursor: pointer;
  }
  .customer-welcome .customer-menu {
    display: none;
  }
  .customer-welcome .action.switch {
    background-image: none;
    background: none;
    -moz-box-sizing: content-box;
    border: 0;
    box-shadow: none;
    line-height: inherit;
    margin: 0;
    padding: 0;
    text-decoration: none;
    text-shadow: none;
    font-weight: 400;
    color: #ffffff;
  }
  .customer-welcome .action.switch:focus,
  .customer-welcome .action.switch:active {
    background: none;
    border: none;
  }
  .customer-welcome .action.switch:hover {
    background: none;
    border: none;
  }
  .customer-welcome .action.switch.disabled,
  .customer-welcome .action.switch[disabled],
  fieldset[disabled] .customer-welcome .action.switch {
    pointer-events: none;
    opacity: 0.5;
  }
  .customer-welcome .header.links {
    min-width: 175px;
    z-index: 1000;
  }
  .customer-welcome.active .action.switch:after {
    content: '\e621';
  }
  .customer-welcome.active .customer-menu {
    display: block;
  }
  .customer-welcome .greet {
    display: none;
  }
  .header.panel > .header.links {
    margin: 0;
    padding: 0;
    list-style: none none;
    float: right;
    margin-left: auto;
  }
  .header.panel > .header.links > li {
    display: inline-block;
    vertical-align: top;
  }
  .header.panel > .header.links > li {
    margin: 0 0 0 15px;
  }
  .header.panel > .header.links > li.welcome,
  .header.panel > .header.links > li > a {
    display: inline-block;
    line-height: 1.4;
  }
  .header.panel > .header.links > li.welcome a {
    color: #ffffff;
    padding-left: 5px;
  }
  .header.panel > .header.links > .authorization-link:after {
    content: attr(data-label);
    display: inline-block;
    margin: 0 -5px 0 5px;
  }
  .header.panel > .header.links > .authorization-link:last-child:after {
    display: none;
  }
  .header.panel > .header.links > .customer-welcome + .authorization-link {
    display: none;
  }
  .header.content {
    padding: 30px 20px 0;
  }
  .logo {
    margin: -8px auto 25px 0;
  }
  .logo img {
    max-height: inherit;
  }
  .page-wrapper {
    margin: 0;
    position: relative;
    transition: margin 0.3s ease-out 0s;
  }
  .page-wrapper > .breadcrumbs,
  .page-wrapper > .top-container,
  .page-wrapper > .widget {
    box-sizing: border-box;
    width: 100%;
  }
  .page-footer {
    margin-top: auto;
  }
  .page-footer .switcher .options ul.dropdown {
    bottom: -10px;
    left: 100%;
    margin: 0 0 0 20px;
    top: auto;
  }
  .page-footer .switcher .options ul.dropdown:before,
  .page-footer .switcher .options ul.dropdown:after {
    bottom: 13px;
    left: auto;
    right: 100%;
    top: auto;
  }
  .page-footer .switcher .options ul.dropdown:before {
    border-color: transparent #ffffff transparent transparent;
  }
  .page-footer .switcher .options ul.dropdown:after {
    border-color: transparent #bbbbbb transparent transparent;
    margin: 0 0 -1px -1px;
  }
  .footer.content {
    border-top: none;
  }
  .footer.content .block {
    float: right;
  }
  .footer.content ul {
    padding-right: 50px;
  }
  .footer.content .switcher.store {
    display: block;
    margin: 0;
  }
  .footer.content .links {
    display: inline-block;
    padding-right: 50px;
    vertical-align: top;
  }
  .footer.content .links li {
    background: transparent;
    border: none;
    font-size: 14px;
    margin: 0 0 8px;
    padding: 0;
  }
  .footer.content .links a,
  .footer.content .links strong {
    display: inline;
  }
  .block.widget .products-grid .product-item {
    width: 33.33333333%;
  }
  .sidebar .block.widget .products-grid .product-item {
    margin-left: 0;
    width: 100%;
  }
  .sidebar .block.widget .products-grid .product-item .actions-secondary {
    display: block;
    padding: 10px 0;
  }
  .page-layout-1column .block.widget .products-grid .product-item {
    margin-left: 2%;
    width: calc((100% - 6%) / 4);
  }
  .page-layout-1column .block.widget .products-grid .product-item:nth-child(3n + 1) {
    margin-left: 2%;
  }
  .page-layout-1column .block.widget .products-grid .product-item:nth-child(4n + 1) {
    margin-left: 0;
  }
  .page-layout-3columns .block.widget .products-grid .product-item {
    width: 50%;
  }
  .sidebar .block.widget .pager .pages-item-next {
    padding: 0;
  }
  .sidebar .block.widget .pager .pages-item-next .action {
    margin: 0;
  }
  .block.widget .products-grid .product-item {
    width: 20%;
  }
  .page-layout-1column .block.widget .products-grid .product-item {
    margin-left: 2%;
    width: calc((100% - 8%) / 5);
  }
  .page-layout-1column .block.widget .products-grid .product-item:nth-child(4n + 1) {
    margin-left: 2%;
  }
  .page-layout-1column .block.widget .products-grid .product-item:nth-child(5n + 1) {
    margin-left: 0;
  }
  .page-layout-3columns .block.widget .products-grid .product-item {
    width: 25%;
  }
  .block.widget .products-grid .product-items {
    margin: 0;
  }
  .block.widget .products-grid .product-item {
    margin-left: calc((100% - 4 * 24.439%) / 3);
    padding: 0;
    width: 24.439%;
  }
  .block.widget .products-grid .product-item:nth-child(4n + 1) {
    margin-left: 0;
  }
  .checkout-index-index .column.main {
    margin-bottom: 50px;
  }
  .checkout-index-index .column.main #checkout .amcheckout-main-container {
    display: flex;
    gap: 140px;
  }
  .checkout-index-index .column.main #checkout .amcheckout-main-container .amcheckout-column.-main {
    width: auto;
    flex: 2;
  }
  .checkout-index-index .column.main #checkout .amcheckout-main-container .amcheckout-column.-main .amcheckout-step-container > li {
    padding: 24px;
  }
  .checkout-index-index .column.main #checkout .amcheckout-main-container .amcheckout-column.-sidebar {
    width: auto;
    flex: 1;
    position: static !important;
  }
  .checkout-index-index .column.main #checkout .amcheckout-main-container .amcheckout-column.-sidebar .amcheckout-step-container.-summary {
    padding: 24px;
    border: 1px solid #b0c0dd;
    border-radius: 16px;
  }
  .checkout-index-index .column.main .checkout-comments {
    margin-top: 24px;
  }
  .account .page-main {
    padding-inline: 0;
  }
  .account ul.nav .item.myaccount a,
  .account ul.nav .item.myaccount strong {
    font-size: 21px;
    color: #49474a;
    font-weight: 300;
    margin-top: -6px;
    letter-spacing: -0.02em;
    padding: 0 0 0 5px;
    line-height: 1;
    margin-bottom: 20px;
  }
  .account ul.nav .item.myaccount a:before,
  .account ul.nav .item.myaccount strong:before {
    display: none;
  }
  .account .header__middle {
    margin-top: 24px;
  }
  .account .column.main {
    margin-bottom: 80px;
  }
  .account .sidebar {
    margin-bottom: 120px;
  }
  .account .sidebar .block-collapsible-nav .title {
    margin-bottom: 13px;
  }
  .account .sidebar .block-collapsible-nav .title strong {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 500;
    line-height: 24px;
    font-size: 20px;
  }
  .account .table-wrapper {
    border: 0;
  }
  .account.page-layout-2columns-left .sidebar-main,
  .account.page-layout-2columns-left .sidebar-additional {
    background-color: #ffffff;
    width: 25%;
    padding: 36px;
    border: 1px solid #b0c0dd;
    border-radius: 16px;
  }
  .account.page-layout-2columns-left .column.main {
    width: 72%;
  }
  .account .sidebar-main ul.nav.items .link.authorization-link {
    padding: 20px 10px 0;
    border-top: 1px solid #00000026;
    margin: 20px -10px 0;
  }
  .account .block-addresses-default .block-content .box {
    width: calc(50% - 15px) !important;
  }
  .account.customerarea-pages-account .column.main {
    padding: 24px;
  }
  .account.customerarea-pages-account .block-dashboard-orders .block-content .table-wrapper.orders-recent {
    overflow: auto;
    padding: 20px 27px 30px;
  }
  .account.customer-address-form .column.main {
    padding: 24px;
  }
  .account.customer-address-form .column.main .field {
    width: 50%;
  }
  .account.customer-account-index .column.main {
    padding: 24px;
  }
  .account.sales-order-history .column.main {
    padding-left: 0;
  }
  .account.sales-order-history .orders-history {
    padding: 24px 32px;
  }
  .account.sales-order-history .orders-history .history tr td.actions {
    justify-content: center;
  }
  .account.sales-order-history .orders-history .history tr td.status span {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: nowrap;
    line-height: 12px;
    text-align: center;
  }
  .account.sales-order-history .account-sald {
    padding: 0 24px 0 0;
  }
  .catalog-product-view.page-layout-1column .columns .column.main {
    margin-bottom: 0;
  }
  .catalog-product-view.page-layout-1column .product.media {
    width: 100%;
    max-width: 300px;
    clear: both;
    margin: 30px auto;
    order: -1;
  }
  .catalog-product-view .product-info-header {
    order: -1;
  }
  .catalog-product-view .product-info-header .product.attribute.manufacturer {
    font-size: 16px;
  }
  .catalog-product-view .product-info-header .page-title-wrapper .page-title {
    font-size: 60px;
  }
  .catalog-product-view .product-info-main {
    width: 100%;
  }
  .catalog-product-view .product-info-main .product-media-buy {
    display: flex;
    justify-content: center;
    padding: 80px;
    max-width: 1280px;
    margin: 0 auto;
    background-color: #f9f7fb;
    border-radius: 16px;
    margin-bottom: 40px;
  }
  .catalog-product-view .product-info-main .product-media-buy .product.media {
    width: 50%;
    margin: 0;
    max-width: unset;
    display: block;
    margin-top: -20px;
  }
  .catalog-product-view .product-info-main .product-media-buy .product.media .gallery-placeholder {
    margin: auto;
  }
  .catalog-product-view .product-info-main .product-media-buy .product-info-header {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 460px;
    margin: 0 auto;
    margin-top: 15px;
  }
  .catalog-product-view .product-info-main .product-kind-section {
    padding: 70px 15px 10px;
    width: 100vw;
    left: 50%;
    position: relative;
    transform: translateX(-50%);
    display: none;
  }
  .catalog-product-view .product-info-main .product-kind-section .attribute.group .value {
    font-size: 21px;
  }
  .catalog-product-view .product-info-main .product-kind-section .attribute.group .attribute.contribution_flavors_aroma .value {
    font-size: 16px;
  }
  .catalog-product-view .product-info-main .product-featured-attributes-container {
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0px;
    width: 100%;
    left: 0;
    position: relative;
  }
  .catalog-product-view .product-info-main .product-featured-attributes-container .product-featured-attributes {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
  }
  .catalog-product-view .product-info-main .product-featured-attributes-container .product-featured-attributes > .attribute:last-child:after {
    display: none;
  }
  .catalog-product-view .product-info-main .product-featured-attributes-container .product-featured-attributes > .attribute strong,
  .catalog-product-view .product-info-main .product-featured-attributes-container .product-featured-attributes > .attribute .value {
    font-size: 14px;
  }
  .catalog-product-view .product-info-main .product-featured-attributes-container .product-featured-attributes > .attribute strong {
    font-weight: 400;
  }
  .catalog-product-view .product-info-main .registertobuy_container .registertobuy {
    margin: 0;
    padding: 0;
  }
  .catalog-product-view .product-info-main .registertobuy_container .registertobuy h4 {
    font-size: 21px;
  }
  .catalog-product-view .product-info-main .registertobuy_container .registertobuy p {
    font-size: 14px;
    margin-bottom: 32px;
  }
  .catalog-product-view .product-info-main .registertobuy_container .registertobuy .cta_container {
    width: 100%;
  }
  .catalog-product-view .product-info-main .registertobuy_container .registertobuy .cta_container > div {
    padding: 0px;
  }
  .catalog-product-view .product-info-main .techspecs_section {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    padding-bottom: 20px;
  }
  .catalog-product-view .product-info-main .techspecs_section .techspecs_container {
    display: flex;
    max-width: 1334px;
    margin: 0 auto;
    padding: 0 25px;
  }
  .catalog-product-view .product-info-main .banner_container .desktop-banner {
    display: flex;
  }
  .catalog-product-view .product-info-main .banner_container .mobile-banner {
    display: none;
  }
  .catalog-product-view .product-info-main .flavorwheel_container {
    width: 50%;
    float: left;
  }
  .catalog-product-view .product-info-main .flavorwheel_container .flavorwheel {
    padding-top: 60px;
  }
  .catalog-product-view .product-info-main .flavorwheel_container .flavorwheel h4 {
    font-size: 32px;
  }
  .catalog-product-view .product-info-main .flavorwheel_container .flavorwheel img {
    max-width: 450px;
  }
  .catalog-product-view .product-info-main .product-specifications-container {
    width: 50%;
    float: left;
    padding: 0 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .catalog-product-view .product-info-main .product-specifications-container h4 {
    width: 100%;
  }
  .catalog-product-view .product-info-main .product-specifications-container .pdp_specifications__values {
    padding: 60px 0;
  }
  .catalog-product-view .product-info-main .description_container {
    width: 100%;
    max-width: 1280px;
    margin: auto;
    position: relative;
    background: rgba(97, 141, 255, 0.06);
    border: 0.5px solid #1d3a84;
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 32px;
  }
  .catalog-product-view .product-info-main .description_container .product.attribute.description {
    max-width: 1240px;
    margin: 0 auto;
    padding: 50px 25px;
    display: none;
  }
  .catalog-product-view .product-info-main .description_container .product.attribute.description > strong {
    font-size: 21px;
  }
  .catalog-product-view .product-info-main .description_container .product.attribute.description > .value p {
    font-size: 16px;
  }
  .catalog-product-view .product-info-main .description_container .product.attribute.description.active {
    display: block;
  }
  .catalog-product-view .product-info-main .product-info-price .price-box span.price {
    font-size: 40px;
  }
  .catalog-product-view .product-info-main .product-info-price .old-price .price {
    font-size: 18px !important;
    margin-top: 2px;
    display: inline-block;
  }
  .catalog-product-view .product-info-main .product-options-wrapper {
    min-width: 320px;
  }
  .catalog-product-view .block.related {
    margin-top: 50px;
    padding-inline: 16px;
  }
  .catalog-product-view .block.related .block-title.title {
    margin: 30px auto;
    margin-bottom: 40px;
    margin-top: 0;
  }
  .catalog-product-view .block.related .block-title.title strong {
    font-size: 40px;
    color: #102134;
    font-weight: 700;
  }
  .catalog-product-view .block.related ol.list.product-items li.item.product {
    padding: 40px;
  }
  .catalog-product-view .block.related ol.list.product-items li.item.product .product-item-info {
    width: 100%;
  }
  .catalog-product-view .block.related ol.list.product-items li.item.product .product-item-info .product-item-details {
    padding-right: 0px;
    max-width: none;
    width: 100%;
  }
  .catalog-product-view .block.related ol.list.product-items li.item.product .product-item-info .product-item-details .technical-contribution-uses {
    max-width: unset;
  }
  .catalog-product-view .block.related ol.list.product-items li.item.product .product-item-info .product-item-details .product-item-name a {
    font-size: 16px;
  }
  .catalog-product-view .block.related ol.list.product-items li.item.product .product-item-info .product-item-details .related_shortDescription {
    font-size: 14px;
  }
  .catalog-product-view .block.related ol.list.product-items li.item.product .product-item-info a.viewMoreBtn {
    position: absolute;
    top: 0;
    right: 0;
  }
  .catalog-product-view .block.related ol.list.product-items li.item.product .product-item-info .login-to-see {
    font-size: 16px;
    text-transform: uppercase;
    color: #102134;
    margin-top: 15px;
    display: flex;
    text-decoration: none;
    transition: .3s;
    outline: none;
  }
  .catalog-product-view .block.related ol.list.product-items li.item.product .product-item-info .login-to-see:hover {
    opacity: .8;
  }
  .catalog-product-view .block.related ol.list.product-items li.item.product .product-item-info .secondary-addto-links {
    display: none;
  }
  .catalog-product-view .block.related ol.list.product-items li.item.product .product-item-info .box-tocart {
    width: 100%;
  }
  .catalog-product-view .block.related ol.list.product-items li.item.product .product-item-info .box-tocart .fieldset {
    display: flex;
    align-items: center;
    flex-direction: row;
  }
  .catalog-product-view .block.related ol.list.product-items li.item.product .product-item-info .box-tocart .fieldset .field {
    display: flex;
    margin: 0;
    margin-right: 15px;
  }
  .catalog-product-view .block.related ol.list.product-items li.item.product .product-item-info .box-tocart .fieldset .field .control {
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 16px;
    color: #49474a;
    border: 1px solid #49474a;
    box-sizing: border-box;
    border-radius: 24px;
    height: 50px;
    padding: 0 15px;
  }
  .catalog-product-view .block.related ol.list.product-items li.item.product .product-item-info .box-tocart .fieldset .field .control input {
    background: none;
    border: none;
    max-width: 25px;
    padding: 0;
    text-align: center;
    margin: 0 10px;
    font-size: 16px;
    font-weight: normal;
  }
  .catalog-product-view .block.related ol.list.product-items li.item.product .product-item-info .box-tocart .fieldset .field .control input:focus {
    border: none;
    outline: none;
  }
  .catalog-product-view .block.related ol.list.product-items li.item.product .product-item-info .box-tocart .fieldset .field .control .minusQty {
    font-size: 35px;
    line-height: 1;
    padding-bottom: 5px;
    color: #102134;
    font-weight: 100;
    cursor: pointer;
    transition: .2s;
    width: 15px;
    display: flex;
    justify-content: flex-end;
  }
  .catalog-product-view .block.related ol.list.product-items li.item.product .product-item-info .box-tocart .fieldset .field .control .plusQty {
    font-size: 25px;
    color: #102134;
    font-weight: 100;
    line-height: 1;
    cursor: pointer;
    transition: .2s;
  }
  .catalog-product-view .block.related ol.list.product-items li.item.product .product-item-info .box-tocart .fieldset .actions button {
    background: none;
    border: 1px solid #102134;
    color: #102134;
    border-radius: 24px;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    width: 160px;
    border-radius: 100px;
    outline: none;
    transition: .3s;
    padding: 16px 0px;
  }
  .catalog-product-view .block.related ol.list.product-items li.item.product .product-item-info .box-tocart .fieldset .actions button:hover {
    color: #102134;
  }
  .catalog-product-view .block.related ol.list.product-items li.item.product .product-item-info .box-tocart .fieldset .actions .hideprice_text {
    text-align: center;
    max-width: 120px;
    margin: auto;
  }
  .catalog-product-view .block.related ol.list.product-items li.item.product .product-item-info .box-tocart .fieldset .actions .hideprice_text a {
    color: #102134;
    font-family: 'PaulSmalt-Special', sans-serif;
    text-transform: uppercase;
    border-bottom: 2px solid;
    text-decoration: none;
    font-size: 13px;
  }
  .catalog-product-view .block.related ol.list.product-items li.item.product .product-item-info .box-tocart .fieldset .actions .hideprice_text:hover {
    opacity: .8;
  }
  .catalog-product-view .block.related .owl-nav {
    z-index: 9;
  }
  .catalog-product-view .block.related .owl-nav .owl-prev,
  .catalog-product-view .block.related .owl-nav .owl-next {
    z-index: 9;
    border: none;
    position: absolute;
    top: 30%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transition: .3s;
    cursor: pointer;
    color: transparent;
    width: 40px;
    height: 40px;
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Old versions of Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
                                                supported by Chrome, Edge, Opera and Firefox */
    background: white;
    border: 1px solid #F3EFF4;
    border-radius: 100%;
  }
  .catalog-product-view .block.related .owl-nav .owl-prev:hover,
  .catalog-product-view .block.related .owl-nav .owl-next:hover {
    opacity: .8;
  }
  .catalog-product-view .block.related .owl-nav .owl-prev:before,
  .catalog-product-view .block.related .owl-nav .owl-next:before {
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: url('../images/CaretRight.svg');
    background-size: 65%;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
    content: '';
    color: #e73726;
  }
  .catalog-product-view .block.related .owl-nav .owl-prev {
    left: -40px;
  }
  .catalog-product-view .block.related .owl-nav .owl-prev:hover {
    opacity: .6;
  }
  .catalog-product-view .block.related .owl-nav .owl-prev:before {
    transform: rotate(180deg);
  }
  .catalog-product-view .block.related .owl-nav .owl-next {
    right: -40px;
  }
  .catalog-product-view .block.related .owl-nav .owl-next:hover {
    opacity: .6;
  }
  .catalog-product-view .block.related .price-box .price {
    font-size: 19px;
  }
  .catalog-product-view .block.related .product-item-photo .product-image-container {
    width: 25vw !important;
    max-width: 125px;
  }
  .catalog-product-view .bt-blog .widget-news {
    font-size: 40px;
    line-height: 44px;
  }
  .catalog-product-view .bt-blog .widget-navigation {
    display: none !important;
  }
  .catalog-product-view .bt-blog .widget-navigation a {
    font-size: 16px;
    line-height: 24px;
  }
  .catalog-product-view .bt-blog .bt-blog-carousel .post-info-wraper .post-link-title {
    font-size: 32px;
    line-height: 40px;
  }
  .page-layout-recetas .back {
    height: 70px;
  }
  .page-layout-recetas .back a {
    font-size: 20px;
    line-height: 23px;
  }
  .page-layout-recetas main.receta {
    overflow-x: hidden;
    display: flex;
    position: sticky;
    top: 145px;
    background: #F3E0CF;
  }
  .page-layout-recetas main.receta section {
    min-width: calc((100vw - 200px));
    min-height: calc((100vh - 145px));
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .page-layout-recetas main.receta section.cerveza {
    min-width: calc((100vw - 100px));
  }
  .page-layout-recetas main.receta section.cerveza .initial-desc {
    width: calc((100% - 100px));
  }
  .page-layout-recetas main.receta section.cerveza .initial-desc .container {
    max-width: 750px;
    height: 100%;
  }
  .page-layout-recetas main.receta section.cerveza .initial-desc .container .block-text {
    margin-bottom: 45px;
  }
  .page-layout-recetas main.receta section.cerveza .initial-desc .container .block-text .name {
    padding-bottom: 30px;
    padding-right: 50px;
  }
  .page-layout-recetas main.receta section.cerveza .initial-desc .container .block-text .name h1 {
    font-size: 34px;
    line-height: 42px;
  }
  .page-layout-recetas main.receta section.cerveza .initial-desc .container .block-text .descrip {
    padding-left: 20px;
    padding-bottom: 20px;
    box-sizing: border-box;
  }
  .page-layout-recetas main.receta section.cerveza .initial-desc .container .block-text .descrip b,
  .page-layout-recetas main.receta section.cerveza .initial-desc .container .block-text .descrip .init-attributes {
    font-size: 22px;
    line-height: 26px;
  }
  .page-layout-recetas main.receta section.cerveza .initial-desc .container .long-description {
    font-size: 20px;
    line-height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    min-height: 120px;
    max-height: 120px;
  }
  .page-layout-recetas main.receta section.cerveza .initial-desc .container .first-download {
    justify-content: flex-end;
  }
  .page-layout-recetas main.receta section.cerveza .initial-desc .container .first-download a.download.btn {
    margin-top: 12px;
  }
  .page-layout-recetas main.receta section.ingredientes .container {
    padding-left: 40px;
  }
  .page-layout-recetas main.receta section.ingredientes .container h3 {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 40px;
  }
  .page-layout-recetas main.receta section.ingredientes .container .attributes > div {
    width: 50%;
    padding-right: 80px;
  }
  .page-layout-recetas main.receta section.ingredientes .container .attributes > div .maltas-granos {
    max-height: 100px;
    overflow-y: auto;
    padding: 20px;
    scrollbar-color: #e73726 #f3e0cf;
  }
  .page-layout-recetas main.receta section.ingredientes .container .attributes > div .maltas-granos::-webkit-scrollbar {
    width: 6px;
  }
  .page-layout-recetas main.receta section.ingredientes .container .attributes > div .maltas-granos::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px #e73726;
  }
  .page-layout-recetas main.receta section.ingredientes .container .attributes > div .maltas-granos::-webkit-scrollbar-thumb {
    background-color: #e73726;
    outline: 2px solid #e73726;
    border-radius: 30px;
  }
  .page-layout-recetas main.receta section.ingredientes .container .attributes > div h4 {
    font-size: 22px;
    line-height: 26px;
  }
  .page-layout-recetas main.receta section.ingredientes .container .attributes > div .list .item .label a span {
    font-weight: normal;
    padding: 0;
    width: 50%;
  }
  .page-layout-recetas main.receta section.info-proceso .container {
    padding-left: 40px;
  }
  .page-layout-recetas main.receta section.info-proceso .container h3 {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 40px;
  }
  .page-layout-recetas main.receta section.info-proceso .container .attributes > div {
    width: 50%;
    padding-right: 80px;
  }
  .page-layout-recetas main.receta section.info-proceso .container .attributes > div h4 {
    font-size: 22px;
    line-height: 26px;
  }
  .page-layout-recetas main.receta section.info-proceso .container .attributes > div .list .item .label span {
    padding-left: 40px;
  }
  .page-layout-recetas main.receta section.info-proceso .container .tips h4 {
    font-size: 22px;
    line-height: 26px;
  }
  .page-layout-recetas main.receta section.info-proceso .container .tips .text {
    width: 80%;
  }
  .page-layout-recetas .sabias-que .container {
    padding-top: 30px;
    padding-bottom: 60px;
  }
  .page-layout-recetas .sabias-que .container h4 {
    font-size: 24px;
    line-height: 28px;
  }
  .page-layout-recetas .sabias-que .container .text {
    font-size: 20px;
    line-height: 30px;
  }
  .checkout-cart-index .breadcrumbs,
  .checkout-cart-index .currentPageSection,
  .checkout-cart-index .page-main {
    padding: 0 40px;
  }
  .checkout-cart-index .main-title {
    font-size: 40px;
    line-height: 44px;
  }
  .checkout-cart-index .input-text.qty.cart {
    padding: 0 6px !important;
  }
  .cart.table-wrapper .product-image-wrapper {
    width: 56px;
  }
  .cart.table-wrapper .product-item-photo {
    max-width: 56px;
    width: 56px;
  }
  .cart.table-wrapper .product-item-details {
    padding-left: 0;
    padding-bottom: 0;
    width: 240px;
    vertical-align: middle;
  }
  .cart.table-wrapper .product-item-name {
    padding: 0 40px 0 0;
    margin: 0;
  }
  .cart.table-wrapper .cart .item {
    display: flex;
    margin-top: -1px;
    border-top: 1px solid #E5E1E6;
    border-bottom: 1px solid #E5E1E6;
  }
  .cart.table-wrapper .cart .item:first-of-type {
    border-top: none;
  }
  .cart.table-wrapper .item-info {
    display: flex;
    justify-content: flex-start;
    flex: auto;
    padding-right: 50px;
  }
  .cart.table-wrapper .item .col {
    padding: 10px;
    padding: 15px 11px 15px;
  }
  .cart.table-wrapper .item .col.item {
    display: flex;
    align-items: center;
    padding: 15px 11px 15px;
    padding-left: 0;
    min-height: auto;
  }
  .cart.table-wrapper .item .col.price {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 34%;
    justify-content: center;
    padding: 15px 11px 15px;
    display: none;
  }
  .cart.table-wrapper .item .col.price .price {
    font-size: 16px;
  }
  .cart.table-wrapper .item .col.price .minicart-old-price .price {
    text-decoration: line-through;
    color: #102134;
    font-size: 13px;
  }
  .cart.table-wrapper .item .col.price .units {
    font-size: 12px;
    color: #102134;
  }
  .cart.table-wrapper .item .col.qty {
    display: flex;
    align-items: center;
    padding: 15px 11px 15px;
    justify-content: flex-end;
    width: auto;
    margin: 0 0 0 auto;
  }
  .cart.table-wrapper .item .col.qty .field.qty {
    max-width: 125px;
    min-width: 125px;
  }
  .cart.table-wrapper .item .col.qty .field.qty .control {
    height: 48px;
    padding: 0 10px;
  }
  .cart.table-wrapper .item .col.qty .field.qty .control input.qty {
    height: 48px;
  }
  .cart.table-wrapper .item .col.qty .field.qty .control #plusQty {
    font-size: 21px;
    top: 0;
    margin-right: 2px;
    right: 13px;
  }
  .cart.table-wrapper .item .col.qty .field.qty .control #minusQty {
    left: 13px;
  }
  .cart.table-wrapper .item .col.subtotal {
    display: flex;
    align-items: center;
    width: auto;
    justify-content: center;
    padding: 0;
    width: 140px;
    flex-direction: column;
    margin-left: 30px;
  }
  .cart.table-wrapper .item .col.subtotal .price {
    font-size: 18px;
  }
  .cart.table-wrapper .item .col.subtotal .promo-label {
    background: #102134;
    color: #ffffff;
    text-align: center;
    padding: 6px 8px;
    margin: 10px 0;
    border-radius: 100px;
    font-size: 10px;
  }
  .cart.table-wrapper .item .col.subtotal .promo-label.empty {
    display: none;
  }
  .cart.table-wrapper tr.item-actions td .actions-toolbar {
    justify-content: center;
    width: 50px;
  }
  .cart.table-wrapper .col.subtotal .price-excluding-tax,
  .cart.table-wrapper .item-actions .action.action-delete {
    position: relative;
    top: -8px;
  }
  .cart.table-wrapper .col.qty .field.qty .control {
    position: relative;
    top: -4px;
  }
  .abs-shopping-cart-items-desktop,
  .block-cart-failed,
  .cart-container .form-cart,
  .cart-container .cart-gift-item,
  .block-cart-failed,
  .cart-container .form-cart,
  .cart-container .cart-gift-item {
    width: 62%;
    padding-right: 2%;
  }
  .cart-summary {
    width: 32%;
    margin-right: 0%;
    padding: 24px;
  }
  .cart-summary .summary.title {
    font-size: 24px;
    line-height: 32px;
  }
  .block.crosssell {
    padding-top: 80px;
    padding-bottom: 80px;
    width: 100vw;
    left: 50%;
    position: relative;
    transform: translateX(-50%);
    margin-top: 20px;
    background: white;
    margin-bottom: 0 !important;
  }
  .block.crosssell .block-title.title {
    max-width: 1240px;
    margin: 30px auto;
    margin-bottom: 40px;
    margin-top: 0;
  }
  .block.crosssell .block-title.title strong {
    font-size: 40px;
    color: #102134;
  }
  .block.crosssell .products-grid .product-item {
    width: 100%;
    max-width: 800px;
    margin: auto;
  }
  .block.crosssell .block-content {
    max-width: 1240px;
    margin: 0 auto;
  }
  .block.crosssell ol.list.product-items .product-image-container {
    width: 17vw !important;
  }
  .block.crosssell ol.list.product-items li.item.product .product-item-info {
    width: 100%;
    padding: 32px;
  }
  .block.crosssell ol.list.product-items li.item.product .product-item-info .product-item-details {
    padding-right: 0px;
    max-width: none;
    width: 100%;
    gap: 16px;
  }
  .block.crosssell ol.list.product-items li.item.product .product-item-info .product-item-details .technical-contribution-uses {
    max-width: unset;
  }
  .block.crosssell ol.list.product-items li.item.product .product-item-info .product-item-details .field.choice {
    display: none;
  }
  .block.crosssell ol.list.product-items li.item.product .product-item-info .product-item-details .product-item-name a {
    font-size: 20px;
  }
  .block.crosssell ol.list.product-items li.item.product .product-item-info .product-item-details .related_shortDescription {
    font-size: 14px;
  }
  .block.crosssell ol.list.product-items li.item.product .product-item-info a.viewMoreBtn {
    position: absolute;
    top: 0;
    right: 0;
  }
  .block.crosssell ol.list.product-items li.item.product .product-item-info .login-to-see {
    font-size: 16px;
    text-transform: uppercase;
    color: #102134;
    margin-top: 15px;
    display: flex;
    text-decoration: none;
    transition: .3s;
    outline: none;
  }
  .block.crosssell ol.list.product-items li.item.product .product-item-info .login-to-see:hover {
    opacity: .8;
  }
  .block.crosssell ol.list.product-items li.item.product .product-item-info .secondary-addto-links {
    display: none;
  }
  .block.crosssell ol.list.product-items li.item.product .product-item-info .box-tocart {
    width: 100%;
    margin-bottom: 0;
  }
  .block.crosssell ol.list.product-items li.item.product .product-item-info .box-tocart .fieldset {
    display: flex;
    align-items: center;
    flex-direction: row;
    margin-bottom: 0;
  }
  .block.crosssell ol.list.product-items li.item.product .product-item-info .box-tocart .fieldset .field {
    display: flex;
    margin: 0;
    margin-right: 15px;
  }
  .block.crosssell ol.list.product-items li.item.product .product-item-info .box-tocart .fieldset .field .control {
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #49474a;
    border: 1px solid #aeaaae;
    box-sizing: border-box;
    border-radius: 24px;
    height: 48px;
    padding: 0 10px;
  }
  .block.crosssell ol.list.product-items li.item.product .product-item-info .box-tocart .fieldset .field .control input {
    background: none;
    border: none;
    max-width: 25px;
    padding: 0;
    text-align: center;
    margin: 0 10px;
    font-size: 16px;
    font-weight: bold;
  }
  .block.crosssell ol.list.product-items li.item.product .product-item-info .box-tocart .fieldset .field .control input:focus {
    border: none;
    outline: none;
  }
  .block.crosssell ol.list.product-items li.item.product .product-item-info .box-tocart .fieldset .field .control .minusQty {
    font-size: 35px;
    line-height: 1;
    padding-bottom: 5px;
    color: #102134;
    font-weight: 400;
    cursor: pointer;
    transition: .2s;
    width: 15px;
    display: flex;
    justify-content: flex-end;
  }
  .block.crosssell ol.list.product-items li.item.product .product-item-info .box-tocart .fieldset .field .control .plusQty {
    font-size: 25px;
    color: #102134;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
    transition: .2s;
  }
  .block.crosssell ol.list.product-items li.item.product .product-item-info .box-tocart .fieldset .actions {
    flex: 1;
  }
  .block.crosssell ol.list.product-items li.item.product .product-item-info .box-tocart .fieldset .actions button {
    width: 100%;
  }
  .block.crosssell ol.list.product-items li.item.product .product-item-info .box-tocart .fieldset .actions .hideprice_text {
    text-align: center;
    max-width: 120px;
    margin: auto;
  }
  .block.crosssell ol.list.product-items li.item.product .product-item-info .box-tocart .fieldset .actions .hideprice_text a {
    color: #102134;
    font-family: 'PaulSmalt-Special', sans-serif;
    text-transform: uppercase;
    border-bottom: 2px solid;
    text-decoration: none;
    font-size: 13px;
  }
  .block.crosssell ol.list.product-items li.item.product .product-item-info .box-tocart .fieldset .actions .hideprice_text:hover {
    opacity: .8;
  }
  .block.crosssell .owl-nav {
    display: none;
  }
  .block.crosssell .price-box .price {
    font-size: 19px;
  }
  .cart-empty {
    padding-top: 84px;
    padding-bottom: 160px;
  }
  .return-shop {
    width: 280px;
  }
  .customer-account-login .page-main,
  .customer-account-forgotpassword .page-main,
  .customer-account-create .page-main,
  .customer-account-createpassword .page-main {
    max-width: unset;
    padding: 24px;
  }
  .customer-account-login .login,
  .customer-account-forgotpassword .login,
  .customer-account-create .login,
  .customer-account-createpassword .login,
  .customer-account-login .forgetpassword,
  .customer-account-forgotpassword .forgetpassword,
  .customer-account-create .forgetpassword,
  .customer-account-createpassword .forgetpassword,
  .customer-account-login .resetforgottenpassword,
  .customer-account-forgotpassword .resetforgottenpassword,
  .customer-account-create .resetforgottenpassword,
  .customer-account-createpassword .resetforgottenpassword {
    padding: 0 110px;
    display: flex;
    gap: 88px;
    align-items: center;
  }
  .customer-account-login .login__video,
  .customer-account-forgotpassword .login__video,
  .customer-account-create .login__video,
  .customer-account-createpassword .login__video,
  .customer-account-login .forgetpassword__video,
  .customer-account-forgotpassword .forgetpassword__video,
  .customer-account-create .forgetpassword__video,
  .customer-account-createpassword .forgetpassword__video,
  .customer-account-login .resetforgottenpassword__video,
  .customer-account-forgotpassword .resetforgottenpassword__video,
  .customer-account-create .resetforgottenpassword__video,
  .customer-account-createpassword .resetforgottenpassword__video {
    width: 60%;
  }
  .customer-account-login .login__form,
  .customer-account-forgotpassword .login__form,
  .customer-account-create .login__form,
  .customer-account-createpassword .login__form,
  .customer-account-login .forgetpassword__form,
  .customer-account-forgotpassword .forgetpassword__form,
  .customer-account-create .forgetpassword__form,
  .customer-account-createpassword .forgetpassword__form,
  .customer-account-login .resetforgottenpassword__form,
  .customer-account-forgotpassword .resetforgottenpassword__form,
  .customer-account-create .resetforgottenpassword__form,
  .customer-account-createpassword .resetforgottenpassword__form {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    width: 35%;
  }
  .customer-account-login .login__container,
  .customer-account-forgotpassword .login__container,
  .customer-account-create .login__container,
  .customer-account-createpassword .login__container,
  .customer-account-login .forgetpassword__container,
  .customer-account-forgotpassword .forgetpassword__container,
  .customer-account-create .forgetpassword__container,
  .customer-account-createpassword .forgetpassword__container,
  .customer-account-login .resetforgottenpassword__container,
  .customer-account-forgotpassword .resetforgottenpassword__container,
  .customer-account-create .resetforgottenpassword__container,
  .customer-account-createpassword .resetforgottenpassword__container {
    width: 100%;
  }
  .customer-account-login .forgetpassword__form,
  .customer-account-forgotpassword .forgetpassword__form,
  .customer-account-create .forgetpassword__form,
  .customer-account-createpassword .forgetpassword__form,
  .customer-account-login .resetforgottenpassword__form,
  .customer-account-forgotpassword .resetforgottenpassword__form,
  .customer-account-create .resetforgottenpassword__form,
  .customer-account-createpassword .resetforgottenpassword__form {
    width: 35%;
  }
  .customer-account-login .forgetpassword__video,
  .customer-account-forgotpassword .forgetpassword__video,
  .customer-account-create .forgetpassword__video,
  .customer-account-createpassword .forgetpassword__video,
  .customer-account-login .resetforgottenpassword__video,
  .customer-account-forgotpassword .resetforgottenpassword__video,
  .customer-account-create .resetforgottenpassword__video,
  .customer-account-createpassword .resetforgottenpassword__video {
    width: 60% !important;
  }
  .customer-account-login .forgetpassword__form,
  .customer-account-forgotpassword .forgetpassword__form,
  .customer-account-create .forgetpassword__form,
  .customer-account-createpassword .forgetpassword__form,
  .customer-account-login .resetforgottenpassword__form,
  .customer-account-forgotpassword .resetforgottenpassword__form,
  .customer-account-create .resetforgottenpassword__form,
  .customer-account-createpassword .resetforgottenpassword__form {
    flex-direction: column;
  }
  .customer-account-login .login__content,
  .customer-account-forgotpassword .login__content,
  .customer-account-create .login__content,
  .customer-account-createpassword .login__content {
    max-width: 376px;
  }
  .customer-account-create .register {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .customer-account-create .register__title {
    font-size: 32px;
  }
  .customer-account-create .register__subtitle {
    margin-bottom: 32px !important;
  }
  .customer-account-create .register__img {
    width: 32%;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    height: 92vh;
  }
  .customer-account-create .register__form {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    width: 62%;
  }
  .customer-account-create .register__back {
    left: 24px;
    top: 24px;
  }
  .customer-account-create .register__actions {
    bottom: 0;
  }
  .customer-account-create .register__actions::after {
    min-height: 32px;
  }
  .customer-account-create .register .fieldset {
    overflow-y: auto;
    max-height: calc(var(--doc-height) - 200px);
  }
  .customer-account-create .register .fieldset.address .region {
    width: 100%;
  }
  .customer-account-create .register .fieldset.address .city {
    width: 100%;
  }
  .customer-account-create .register .fieldset.address .zip {
    width: 100%;
  }
  .customer-account-create .register .fieldset.address .street {
    width: 100%;
  }
  .customer-account-create .register .fieldset.address .telephone {
    width: 100%;
  }
  .customer-account-create .register .fieldset.address .alternative-phone {
    width: 100%;
  }
  .customer-account-create .register .fieldset.address .email {
    width: 100%;
  }
  .customer-account-create .register .fieldset.address .password {
    width: 48%;
  }
  .customer-account-create .register .fieldset.address .confirmation {
    width: 48%;
  }
  .customer-account-create .register .fieldset.references .field {
    width: 48%;
  }
  .customer-account-create .register .form-step {
    height: 92vh;
  }
  .customer-account-create .register .next-btn {
    float: right;
    width: 50% !important;
  }
  .progress-container {
    top: 140px;
  }
  .mpblog-post-index .post-list-content .post-list-body,
  .mpblog-category-view .post-list-content .post-list-body {
    flex-wrap: wrap;
  }
  .mpblog-post-index .post-list-content .post-list-body .post-list-item .post-info-wraper .mp-post-title a,
  .mpblog-category-view .post-list-content .post-list-body .post-list-item .post-info-wraper .mp-post-title a {
    font-size: 32px !important;
    font-weight: 400 !important;
    line-height: 40px;
    text-align: left;
    color: #49474a !important;
    margin-bottom: 8px;
    overflow: hidden;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    text-overflow: ellipsis;
  }
  .mpblog-post-index #maincontent .top-header h2,
  .mpblog-category-view #maincontent .top-header h2 {
    margin: 0;
    text-align: center;
    display: block;
    font-size: 46px;
  }
  .mpblog-post-index .top-header,
  .mpblog-category-view .top-header {
    margin-bottom: 60px;
  }
  .mpblog-post-index .post-list-body {
    display: flex;
    max-width: unset;
    justify-content: space-between;
    margin-bottom: 60px;
  }
  .mpblog-post-index .mp-6 {
    width: calc(50% - 16px);
    padding: 0;
  }
  .mpblog-post-view .column.main {
    width: 100%;
  }
  .mpblog-post-view .mp-blog-view {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .mpblog-post-view .post-view {
    max-width: 800px;
  }
  .mpblog-post-view .mp-post-info {
    max-width: 800px;
    width: 100%;
  }
  .mpblog-post-view .post-view-image .img-responsive {
    max-height: 360px !important;
  }
  .mpblog-post-view .post-post_content {
    max-width: 680px;
  }
  .mpblog-post-view .block-blog-related.products-same-post .product-item-info {
    justify-content: space-between;
  }
  .mpblog-post-view .block-blog-related.products-same-post .product-image-container {
    width: 25vw !important;
    max-width: 236px;
  }
  .mpblog-post-view .wrapperTitle {
    margin-top: 62px;
  }
  .mpblog-post-view .wrapperTitle h1 {
    font-size: 48px;
    line-height: 56px;
  }
  .mpblog-post-view .block-blog-title-actions {
    display: none !important;
  }
  .mpblog-post-view .block-blog-related.topic-list {
    padding: 0 36px;
  }
  .blog-header {
    left: 18px;
  }
}
@media all and (min-width: 1024px), print {
  .abs-product-options-list-desktop dt,
  .block-giftregistry-shared .item-options dt {
    clear: left;
    float: left;
    margin: 0 10px 5px 0;
  }
  .block-giftregistry-shared .item-options dt:after {
    content: ': ';
  }
  .abs-product-options-list-desktop dd,
  .block-giftregistry-shared .item-options dd {
    display: inline-block;
    float: left;
    margin: 0 0 5px;
    word-break: break-all;
  }
  .abs-button-desktop {
    width: auto;
  }
  .abs-blocks-2columns,
  .abs-discount-block-desktop .block,
  .column .block-addbysku .block-content .box,
  .login-container .block,
  .account .column.main .block:not(.widget) .block-content .box,
  .form-address-edit > .fieldset,
  .form-edit-account .fieldset,
  .storecredit .block,
  .paypal-review-discount .block,
  .cart-discount .block {
    width: 48%;
  }
  .abs-discount-block-desktop .block:nth-child(1),
  .column .block-addbysku .block-content .box:nth-child(1),
  .login-container .block:nth-child(1),
  .account .column.main .block:not(.widget) .block-content .box:nth-child(1),
  .form-address-edit > .fieldset:nth-child(1),
  .form-edit-account .fieldset:nth-child(1),
  .storecredit .block:nth-child(1),
  .paypal-review-discount .block:nth-child(1),
  .cart-discount .block:nth-child(1) {
    clear: left;
    float: left;
  }
  .abs-discount-block-desktop .block:nth-child(2),
  .column .block-addbysku .block-content .box:nth-child(2),
  .login-container .block:nth-child(2),
  .account .column.main .block:not(.widget) .block-content .box:nth-child(2),
  .form-address-edit > .fieldset:nth-child(2),
  .form-edit-account .fieldset:nth-child(2),
  .storecredit .block:nth-child(2),
  .paypal-review-discount .block:nth-child(2),
  .cart-discount .block:nth-child(2) {
    float: right;
  }
  .abs-discount-block-desktop .block:nth-child(2) + *,
  .column .block-addbysku .block-content .box:nth-child(2) + *,
  .login-container .block:nth-child(2) + *,
  .account .column.main .block:not(.widget) .block-content .box:nth-child(2) + *,
  .form-address-edit > .fieldset:nth-child(2) + *,
  .form-edit-account .fieldset:nth-child(2) + *,
  .storecredit .block:nth-child(2) + *,
  .paypal-review-discount .block:nth-child(2) + *,
  .cart-discount .block:nth-child(2) + * {
    clear: both;
  }
  .abs-margin-for-blocks-and-widgets-desktop,
  .page-main .block,
  .customer-review .product-details {
    margin-bottom: 50px;
  }
  .abs-reset-left-margin-desktop,
  .column.main .paypal-review .actions-toolbar,
  .column.main .block-giftregistry-shared-items .actions-toolbar {
    margin-left: 0;
  }
  .abs-action-remove-desktop,
  .abs-add-fields-desktop .fieldset .additional .action.remove,
  .form-giftregistry-share .fieldset .additional .action.remove,
  .form-giftregistry-edit .fieldset .additional .action.remove,
  .form-create-return .fieldset .additional .action.remove,
  .form.send.friend .fieldset .additional .action.remove {
    margin-left: 90%;
  }
  .abs-add-fields-desktop .fieldset .field .control,
  .form-giftregistry-share .fieldset .field .control,
  .form-giftregistry-edit .fieldset .field .control,
  .form-create-return .fieldset .field .control,
  .form.send.friend .fieldset .field .control {
    width: auto;
  }
  .abs-margin-for-forms-desktop,
  .fieldset .legend {
    margin-left: 25.8%;
  }
  .abs-visually-hidden-desktop,
  .modes-label,
  .block-search .label,
  .block-collapsible-nav .title {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .abs-add-clearfix-desktop:before,
  .abs-add-clearfix-desktop:after,
  .paypal-review .block-content:before,
  .paypal-review .block-content:after,
  .paypal-review-discount:before,
  .paypal-review-discount:after,
  .order-review-form:before,
  .order-review-form:after,
  .block-cart-failed .block-content:before,
  .block-cart-failed .block-content:after,
  .column .block-addbysku .block-content:before,
  .column .block-addbysku .block-content:after,
  .cart-container:before,
  .cart-container:after,
  .login-container:before,
  .login-container:after,
  .account .page-title-wrapper:before,
  .account .page-title-wrapper:after,
  .account .column.main .block:not(.widget) .block-content:before,
  .account .column.main .block:not(.widget) .block-content:after,
  .block-addresses-list .items.addresses:before,
  .block-addresses-list .items.addresses:after,
  .block-giftregistry-shared .item-options:before,
  .block-giftregistry-shared .item-options:after,
  .data.table .gift-wrapping .nested:before,
  .data.table .gift-wrapping .nested:after,
  .data.table .gift-wrapping .content:before,
  .data.table .gift-wrapping .content:after,
  .block-wishlist-management:before,
  .block-wishlist-management:after,
  .magento-rma-guest-returns .column.main .block.block-order-details-view:before,
  .magento-rma-guest-returns .column.main .block.block-order-details-view:after,
  .order-links:before,
  .order-links:after,
  .account .column.main .block.block-order-details-view:before,
  .account .column.main .block.block-order-details-view:after,
  [class^='sales-guest-'] .column.main .block.block-order-details-view:before,
  [class^='sales-guest-'] .column.main .block.block-order-details-view:after,
  .sales-guest-view .column.main .block.block-order-details-view:before,
  .sales-guest-view .column.main .block.block-order-details-view:after,
  .page-header .header.panel:before,
  .page-header .header.panel:after,
  .header.content:before,
  .header.content:after {
    content: '';
    display: table;
  }
  .abs-add-clearfix-desktop:after,
  .paypal-review .block-content:after,
  .paypal-review-discount:after,
  .order-review-form:after,
  .block-cart-failed .block-content:after,
  .column .block-addbysku .block-content:after,
  .cart-container:after,
  .login-container:after,
  .account .page-title-wrapper:after,
  .account .column.main .block:not(.widget) .block-content:after,
  .block-addresses-list .items.addresses:after,
  .block-giftregistry-shared .item-options:after,
  .data.table .gift-wrapping .nested:after,
  .data.table .gift-wrapping .content:after,
  .block-wishlist-management:after,
  .magento-rma-guest-returns .column.main .block.block-order-details-view:after,
  .order-links:after,
  .account .column.main .block.block-order-details-view:after,
  [class^='sales-guest-'] .column.main .block.block-order-details-view:after,
  .sales-guest-view .column.main .block.block-order-details-view:after,
  .page-header .header.panel:after,
  .header.content:after {
    clear: both;
  }
  .abs-add-box-sizing-desktop,
  .abs-shopping-cart-items-desktop,
  .column.main,
  .sidebar-main,
  .sidebar-additional,
  .bundle-options-container .block-bundle-summary,
  .block.crosssell,
  .magento-rma-guest-returns .column.main .block.block-order-details-view .block-content:not(.widget) .box,
  .account .column.main .block.block-order-details-view .block-content:not(.widget) .box,
  [class^='sales-guest-'] .column.main .block.block-order-details-view .block-content:not(.widget) .box,
  .sales-guest-view .column.main .block.block-order-details-view .block-content:not(.widget) .box,
  .block-cart-failed,
  .cart-container .form-cart,
  .cart-container .cart-gift-item {
    box-sizing: border-box;
  }
  .abs-add-box-sizing-desktop-m,
  .opc-wrapper {
    box-sizing: border-box;
  }
  .abs-revert-field-type-desktop .fieldset > .field,
  .abs-revert-field-type-desktop .fieldset .fields > .field {
    margin: 0 0 20px;
  }
  .abs-revert-field-type-desktop .fieldset > .field:not(.choice) > .label,
  .abs-revert-field-type-desktop .fieldset .fields > .field:not(.choice) > .label {
    box-sizing: content-box;
    float: none;
    width: auto;
    text-align: left;
    padding: 0;
  }
  .abs-revert-field-type-desktop .fieldset > .field:not(.choice) > .control,
  .abs-revert-field-type-desktop .fieldset .fields > .field:not(.choice) > .control {
    float: none;
    width: auto;
  }
  .abs-revert-field-type-desktop .fieldset > .field > .label,
  .abs-revert-field-type-desktop .fieldset .fields > .field > .label {
    margin: 0 0 8px;
    display: inline-block;
  }
  .abs-revert-field-type-desktop .fieldset > .field.choice:before,
  .abs-revert-field-type-desktop .fieldset .fields > .field.choice:before,
  .abs-revert-field-type-desktop .fieldset > .field.no-label:before,
  .abs-revert-field-type-desktop .fieldset .fields > .field.no-label:before {
    display: none;
  }
  .abs-form-field-column-2 .fieldset .field,
  .form-giftregistry-share .fieldset .field,
  .form-giftregistry-edit .fieldset .field,
  .form-create-return .fieldset .field,
  .form.send.friend .fieldset .field {
    padding: 0 12px 0 0;
    box-sizing: border-box;
    display: inline-block;
    width: 50%;
    vertical-align: top;
  }
  .abs-form-field-column-2 .fieldset .field + .fieldset,
  .form-giftregistry-share .fieldset .field + .fieldset,
  .form-giftregistry-edit .fieldset .field + .fieldset,
  .form-create-return .fieldset .field + .fieldset,
  .form.send.friend .fieldset .field + .fieldset {
    clear: both;
  }
  .form-giftregistry-share .fieldset .field:nth-last-child(1),
  .form-giftregistry-share .fieldset .field:nth-last-child(2),
  .form-giftregistry-edit .fieldset .field:nth-last-child(1),
  .form-giftregistry-edit .fieldset .field:nth-last-child(2),
  .form-create-return .fieldset .field:nth-last-child(1),
  .form-create-return .fieldset .field:nth-last-child(2),
  .form.send.friend .fieldset .field:nth-last-child(1),
  .form.send.friend .fieldset .field:nth-last-child(2) {
    margin-bottom: 0;
  }
  .abs-form-field-column-2 .fieldset .field .field,
  .form-giftregistry-share .fieldset .field .field,
  .form-giftregistry-edit .fieldset .field .field,
  .form-create-return .fieldset .field .field,
  .form.send.friend .fieldset .field .field {
    padding: 0;
    width: 100%;
  }
  .abs-form-field-revert-column-1 {
    width: 100%;
  }
  .abs-forms-general-desktop,
  .form.search.advanced,
  .form-giftcard-redeem,
  .form-giftregistry-create {
    max-width: 500px;
  }
  .abs-forms-general-desktop .legend,
  .form.search.advanced .legend,
  .form-giftcard-redeem .legend,
  .form-giftregistry-create .legend {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .abs-forms-general-desktop .legend + br,
  .form.search.advanced .legend + br,
  .form-giftcard-redeem .legend + br,
  .form-giftregistry-create .legend + br {
    display: none;
  }
  .abs-revert-side-paddings,
  .checkout-cart-index .page-title-wrapper,
  .cart-summary .block .content,
  .cart-empty {
    padding-left: 0;
    padding-right: 0;
  }
  .abs-account-block-font-size,
  .block-addresses-list address,
  .box-billing-address .box-content,
  .box-shipping-address .box-content,
  .box-address-billing .box-content,
  .box-address-shipping .box-content,
  .box-information .box-content,
  .block-balance-giftcard .block-content,
  .block-reviews-dashboard .product-name {
    font-size: 1.6rem;
  }
  .abs-account-table-margin-desktop,
  .table-wrapper.balance-history,
  .table-wrapper.reward-history,
  .table-wrapper.orders-recent {
    margin-top: -25px;
  }
  .abs-action-print,
  .order-actions-toolbar .action.print {
    display: inline-block;
    text-decoration: none;
  }
  .abs-action-print:before,
  .order-actions-toolbar .action.print:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    line-height: 16px;
    color: inherit;
    content: '\e624';
    font-family: 'luma-icons';
    margin: 0 4px 0 0;
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .order-actions-toolbar .action.print:hover {
    text-decoration: underline;
  }
  .abs-no-display-desktop,
  .opc-estimated-wrapper,
  .sidebar .block.widget .pager .item:not(.pages-item-next):not(.pages-item-previous) {
    display: none;
  }
  .abs-status-desktop,
  .return-status,
  .order-status {
    margin-top: 6px;
    padding: 5px 10px;
  }
  .abs-title-orders-desktop .page-main .page-title-wrapper .order-date,
  .magento-rma-returns-returns .page-main .page-title-wrapper .order-date,
  .magento-rma-returns-view .page-main .page-title-wrapper .order-date,
  .account .page-main .page-title-wrapper .order-date,
  [class^='sales-guest-'] .page-main .page-title-wrapper .order-date,
  .sales-guest-view .page-main .page-title-wrapper .order-date {
    margin: -14px 0 18px;
  }
  .abs-table-bordered-desktop {
    border: none;
  }
  .abs-table-bordered-desktop > thead > tr > th,
  .abs-table-bordered-desktop > tbody > tr > th,
  .abs-table-bordered-desktop > tfoot > tr > th,
  .abs-table-bordered-desktop > thead > tr > td,
  .abs-table-bordered-desktop > tbody > tr > td,
  .abs-table-bordered-desktop > tfoot > tr > td {
    border: none;
  }
  .abs-table-bordered-desktop > thead > tr > th,
  .abs-table-bordered-desktop > thead > tr > td {
    border-bottom: 1px solid #cccccc;
  }
  .abs-pager-toolbar,
  .account .toolbar,
  .toolbar-giftregistry-results,
  .toolbar-wishlist-results {
    position: relative;
  }
  .abs-pager-toolbar .toolbar-amount,
  .abs-pager-toolbar .limiter,
  .account .toolbar .toolbar-amount,
  .account .toolbar .limiter,
  .toolbar-giftregistry-results .toolbar-amount,
  .toolbar-giftregistry-results .limiter,
  .toolbar-wishlist-results .toolbar-amount,
  .toolbar-wishlist-results .limiter {
    position: relative;
    z-index: 1;
  }
  .abs-pager-toolbar .limiter,
  .account .toolbar .limiter,
  .toolbar-giftregistry-results .limiter,
  .toolbar-wishlist-results .limiter {
    display: inline-block;
    float: right;
  }
  .abs-pager-toolbar .toolbar-amount,
  .account .toolbar .toolbar-amount,
  .toolbar-giftregistry-results .toolbar-amount,
  .toolbar-wishlist-results .toolbar-amount {
    line-height: 30px;
    padding: 0;
  }
  .abs-pager-toolbar .pages,
  .account .toolbar .pages,
  .toolbar-giftregistry-results .pages,
  .toolbar-wishlist-results .pages {
    position: absolute;
    width: 100%;
    z-index: 0;
  }
  .abs-shopping-cart-items-desktop,
  .block-cart-failed,
  .cart-container .form-cart,
  .cart-container .cart-gift-item {
    width: 75%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
    padding-right: 4%;
    position: relative;
  }
  .abs-discount-block-desktop .block > .title,
  .paypal-review-discount .block > .title,
  .cart-discount .block > .title {
    border: 0;
    padding: 0 0 10px;
  }
  .abs-discount-block-desktop .block > .title strong,
  .paypal-review-discount .block > .title strong,
  .cart-discount .block > .title strong {
    font-size: 1.6rem;
  }
  .abs-discount-block-desktop .block .content,
  .paypal-review-discount .block .content,
  .cart-discount .block .content {
    padding: 0 0 20px;
  }
  .abs-discount-block-desktop .actions-toolbar .secondary,
  .paypal-review-discount .actions-toolbar .secondary,
  .cart-discount .actions-toolbar .secondary {
    bottom: -30px;
    left: 0;
    position: absolute;
  }
  .navigation,
  .breadcrumbs,
  .page-header .header.panel,
  .header.content,
  .footer.content,
  .page-wrapper > .widget,
  .page-wrapper > .page-bottom,
  .block.category.event,
  .top-container,
  .page-main {
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    max-width: 1280px;
    padding-left: 20px;
    padding-right: 20px;
    width: auto;
  }
  .page-main {
    width: 100%;
  }
  .columns {
    display: block;
  }
  .column.main {
    min-height: 300px;
  }
  .page-layout-1column .column.main {
    width: 100%;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .page-layout-3columns .column.main {
    width: 58.33333333%;
    display: inline-block;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .page-layout-2columns-left .column.main {
    width: 79.16666667%;
    float: right;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .page-layout-2columns-right .column.main {
    width: 79.16666667%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .sidebar-main {
    padding-right: 2%;
  }
  .page-layout-3columns .sidebar-main {
    width: 20.83333333%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .page-layout-2columns-left .sidebar-main {
    width: 20.83333333%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .page-layout-2columns-right .sidebar-main {
    width: 20.83333333%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .page-layout-2columns-right .sidebar-main {
    padding-left: 2%;
    padding-right: 0;
  }
  .sidebar-additional {
    clear: right;
    padding-left: 2%;
  }
  .page-layout-3columns .sidebar-additional {
    width: 20.83333333%;
    float: right;
    -ms-flex-order: 3;
    -webkit-order: 3;
    order: 3;
  }
  .page-layout-2columns-left .sidebar-additional {
    width: 20.83333333%;
    float: right;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .page-layout-2columns-right .sidebar-additional {
    width: 20.83333333%;
    float: right;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .page-layout-2columns-left .main {
    padding-left: 2%;
  }
  .page-layout-2columns-left .sidebar-additional {
    clear: left;
    float: left;
    padding-left: 0;
  }
  .panel.header {
    padding: 10px 20px;
  }
  .nav-toggle {
    display: none;
  }
  .nav-sections {
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-bottom: 25px;
  }
  .nav-sections-item-title {
    display: none;
  }
  .nav-sections-item-content > * {
    display: none;
  }
  .nav-sections-item-content > .navigation {
    display: block;
  }
  .navigation {
    background: #f0f0f0;
    font-weight: 700;
    height: inherit;
    left: auto;
    overflow: inherit;
    padding: 0;
    position: relative;
    top: 0;
    width: 100%;
    z-index: 3;
  }
  .navigation:empty {
    display: none;
  }
  .navigation ul {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    position: relative;
  }
  .navigation li.level0 {
    border-top: none;
  }
  .navigation li.level1 {
    position: relative;
  }
  .navigation .level0 {
    margin: 0 10px 0 0;
    display: inline-block;
    position: relative;
  }
  .navigation .level0:last-child {
    margin-right: 0;
    padding-right: 0;
  }
  .navigation .level0:hover:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 100%;
    width: 10px;
    height: calc(100% + 3px);
    z-index: 1;
  }
  .navigation .level0 > .level-top {
    color: #575757;
    line-height: 47px;
    padding: 0 12px;
    text-decoration: none;
    box-sizing: border-box;
    position: relative;
    display: inline-block;
  }
  .navigation .level0 > .level-top:hover,
  .navigation .level0 > .level-top.ui-state-focus {
    color: #333333;
    text-decoration: none;
  }
  .navigation .level0.active > .level-top,
  .navigation .level0.has-active > .level-top {
    border-color: #222222;
    border-style: solid;
    border-width: 0 0 3px;
    color: #333333;
    text-decoration: none;
    display: inline-block;
  }
  .navigation .level0.parent:hover > .submenu {
    overflow: visible !important;
  }
  .navigation .level0.parent > .level-top {
    padding-right: 20px;
  }
  .navigation .level0.parent > .level-top > .ui-menu-icon {
    position: absolute;
    right: 0;
    display: inline-block;
    text-decoration: none;
  }
  .navigation .level0.parent > .level-top > .ui-menu-icon > span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .navigation .level0.parent > .level-top > .ui-menu-icon:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 12px;
    line-height: 20px;
    color: inherit;
    content: '\e622';
    font-family: 'luma-icons';
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .navigation .level0 .submenu {
    background: #ffffff;
    border: 1px solid #cccccc;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.19);
    font-weight: 400;
    min-width: 230px;
    padding: 0;
    display: none;
    left: 0;
    margin: 0 !important;
    position: absolute;
    z-index: 1;
    margin-top: 11px;
  }
  .navigation .level0 .submenu > ul {
    margin-top: 11px;
  }
  .navigation .level0 .submenu > ul:before,
  .navigation .level0 .submenu > ul:after {
    content: '';
    display: block;
    overflow: hidden;
    position: absolute;
  }
  .navigation .level0 .submenu > ul:before {
    color: #ffffff;
    left: 20px;
    top: -20px;
    border: 10px solid transparent;
    height: 0;
    width: 0;
    border-bottom-color: #ffffff;
    z-index: 4;
  }
  .navigation .level0 .submenu > ul:after {
    border: 11px solid transparent;
    height: 0;
    width: 0;
    border-bottom-color: #cccccc;
    color: #cccccc;
    left: 19px;
    top: -22px;
    z-index: 3;
  }
  .navigation .level0 .submenu:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 4px;
    left: 0;
    top: -4px;
    z-index: 1;
  }
  .navigation .level0 .submenu a {
    display: block;
    line-height: inherit;
    color: #575757;
    padding: 8px 20px;
  }
  .navigation .level0 .submenu a:hover,
  .navigation .level0 .submenu a.ui-state-focus {
    background: #e8e8e8;
    color: #333333;
    text-decoration: none;
  }
  .navigation .level0 .submenu .active > a {
    border-color: #222222;
    border-style: solid;
    border-width: 0 0 0 3px;
    color: #333333;
  }
  .navigation .level0 .submenu .submenu {
    top: -1px !important;
    left: 100% !important;
  }
  .navigation .level0 .submenu .submenu-reverse {
    left: auto !important;
    right: 100%;
  }
  .navigation .level0 .submenu li {
    margin: 0;
    position: relative;
  }
  .navigation .level0 .submenu li.parent > a > .ui-menu-icon {
    position: absolute;
    right: 3px;
    display: inline-block;
    text-decoration: none;
  }
  .navigation .level0 .submenu li.parent > a > .ui-menu-icon > span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .navigation .level0 .submenu li.parent > a > .ui-menu-icon:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 12px;
    line-height: 20px;
    color: inherit;
    content: '\e608';
    font-family: 'luma-icons';
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .navigation .level0.more {
    position: relative;
    display: inline-block;
    text-decoration: none;
  }
  .navigation .level0.more:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 26px;
    line-height: inherit;
    color: inherit;
    content: '\e607';
    font-family: 'luma-icons';
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .navigation .level0.more:before {
    display: none;
  }
  .navigation .level0.more:after {
    cursor: pointer;
    padding: 8px 12px;
    position: relative;
    z-index: 1;
  }
  .navigation .level0.more:hover > .submenu {
    overflow: visible !important;
  }
  .navigation .level0.more li {
    display: block;
  }
  .panel.header .links,
  .panel.header .switcher {
    display: inline-block;
  }
  .fieldset > .field {
    margin: 0 0 29px;
  }
  .product.data.items {
    position: relative;
    z-index: 1;
    border-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }
  .product.data.items:before,
  .product.data.items:after {
    content: '';
    display: table;
  }
  .product.data.items:after {
    clear: both;
  }
  .product.data.items > .item.title {
    float: left;
    width: auto;
  }
  .product.data.items > .item.title > .switch {
    height: 20px;
    display: block;
    position: relative;
    z-index: 2;
  }
  .product.data.items > .item.content {
    margin-top: 20px;
    box-sizing: border-box;
    float: right;
    margin-left: -100%;
    width: 100%;
  }
  .product.data.items > .item.content:before,
  .product.data.items > .item.content:after {
    content: '';
    display: table;
  }
  .product.data.items > .item.content:after {
    clear: both;
  }
  .product.data.items > .item.content.active {
    display: block;
  }
  .product.data.items > .item.title {
    margin: 0 -1px 0 0;
  }
  .product.data.items > .item.title > .switch {
    font-weight: 400;
    line-height: 40px;
    font-size: 1.4rem;
    color: #6d6d6d;
    text-decoration: none;
    background: #f6f6f6;
    border: 1px solid #cccccc;
    border-bottom: none;
    height: 40px;
    padding: 1px 35px 1px 35px;
  }
  .product.data.items > .item.title > .switch:visited {
    color: #6d6d6d;
    text-decoration: none;
  }
  .product.data.items > .item.title > .switch:hover {
    color: #6d6d6d;
    text-decoration: none;
  }
  .product.data.items > .item.title > .switch:active {
    color: #010101;
    text-decoration: none;
  }
  .product.data.items > .item.title:not(.disabled) > .switch:focus,
  .product.data.items > .item.title:not(.disabled) > .switch:hover {
    background: #ffffff;
  }
  .product.data.items > .item.title:not(.disabled) > .switch:active,
  .product.data.items > .item.title.active > .switch,
  .product.data.items > .item.title.active > .switch:focus,
  .product.data.items > .item.title.active > .switch:hover {
    background: #ffffff;
    color: #010101;
    text-decoration: none;
  }
  .product.data.items > .item.title.active > .switch,
  .product.data.items > .item.title.active > .switch:focus,
  .product.data.items > .item.title.active > .switch:hover {
    padding-bottom: 2px;
  }
  .product.data.items > .item.content {
    background: #ffffff;
    margin-top: 43px;
    padding: 35px 35px 35px 35px;
    border: 1px solid #cccccc;
  }
  .product.data.items .item.title a:after {
    display: none;
  }
  .actions-toolbar {
    text-align: left;
  }
  .actions-toolbar:before,
  .actions-toolbar:after {
    content: '';
    display: table;
  }
  .actions-toolbar:after {
    clear: both;
  }
  .actions-toolbar .primary {
    float: left;
  }
  .actions-toolbar .primary,
  .actions-toolbar .secondary {
    display: inline-block;
  }
  .actions-toolbar .primary a.action,
  .actions-toolbar .secondary a.action {
    display: inline-block;
  }
  .actions-toolbar .primary .action {
    margin: 0 15px 0 0;
  }
  .actions-toolbar .secondary a.action {
    margin-top: 6px;
  }
  .actions-toolbar > .primary,
  .actions-toolbar > .secondary {
    margin-bottom: 0;
  }
  .actions-toolbar > .primary .action,
  .actions-toolbar > .secondary .action {
    margin-bottom: 0;
    width: auto;
  }
  .modal-footer {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
  }
  .modal-popup.confirm._show .modal-inner-wrap {
    max-width: 379px;
  }
  .cms-home .hero {
    align-items: center;
    margin-bottom: 90px;
  }
  .cms-home .hero__content {
    display: flex;
    max-width: 1300px;
    padding-bottom: 56px;
    flex-direction: column;
  }
  .cms-home .hero__col-1 {
    width: 80%;
  }
  .cms-home .hero__col-2 {
    flex-direction: column;
    justify-content: flex-end;
    width: 20%;
  }
  .cms-home .hero__title {
    padding-top: 140px;
  }
  .cms-home .hero__subtitles {
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 24px;
    padding-bottom: 24px;
  }
  .cms-home .bt-keyfocus {
    padding: 100px 60px;
    min-height: 908px;
    margin: 40px 36px;
  }
  .cms-home .bt-keyfocus__title {
    font-size: 60px;
    line-height: 64px;
    text-align: left;
    position: sticky;
    top: 10px;
  }
  .cms-home .bt-keyfocus__item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
  }
  .cms-home .bt-keyfocus__item-img.--care {
    max-width: 56px;
  }
  .cms-home .bt-keyfocus__item-img.--experiment {
    max-width: 40px;
  }
  .cms-home .bt-keyfocus__item-img.--wheat {
    max-width: 22px;
  }
  .cms-home .bt-keyfocus__item-title {
    font-size: 32px;
    line-height: 40px;
  }
  .cms-home .bt-keyfocus__item-description {
    font-size: 18px;
    line-height: 24px;
  }
  .cms-home .bt-marquee .obscure {
    font-size: 60px;
    line-height: 74px;
  }
  .cms-home .bt-photo .bt-photo-card {
    margin: 210px 36px;
  }
  .cms-home .bt-photo .bt-photo-card__subtitle {
    font-size: 18px;
    line-height: 24px;
  }
  .cms-home .bt-photo .bt-photo-card__title {
    font-size: 82px;
    line-height: 88px;
  }
  .cms-home .bt-photo .bt-photo-card__description {
    font-size: 18px;
    line-height: 24px;
  }
  .cms-home .bt-photo .bt-photo-card__button {
    max-width: 153px;
  }
  .cms-home .bt-photo .bt-photo-card__img {
    max-width: 380px;
  }
  .cms-home .bt-photo .bt-photo-card__img.--under {
    position: absolute;
    left: 35%;
    top: 35%;
  }
  .cms-home .bt-photo .bt-photo-card__img.--on {
    z-index: 2;
  }
  .cms-home .bt-video-card {
    padding: 100px 232px;
  }
  .cms-home .bt-video-card__content-title {
    font-size: 70px;
    line-height: 64px;
  }
  .cms-home .bt-video-card__content-subtitle {
    font-size: 18px;
    line-height: 24px;
  }
  .cms-home .bt-video-card__content-description {
    font-size: 16px;
    line-height: 24px;
  }
  .cms-home .bt-video-card__button {
    max-width: 300px;
  }
  .cms-home .bt-news {
    padding: 100px 36px;
  }
  .cms-home .bt-news .bt-blog .widget-news {
    font-size: 40px;
    line-height: 44px;
  }
  .cms-home .bt-news .bt-blog .widget-navigation a {
    font-size: 16px;
    line-height: 24px;
  }
  .cms-home .bt-news .bt-blog .bt-blog-carousel .post-info-wraper .post-link-title {
    font-size: 32px;
    line-height: 40px;
  }
  .cms-home .bt-news .bt-newsletter {
    padding: 100px 36px;
  }
  .cms-home .bt-news .bt-newsletter__img {
    max-width: 320px;
  }
  .cms-home .bt-news .bt-newsletter__title {
    font-size: 60px;
    line-height: 64px;
  }
  .cms-home .bt-news .bt-newsletter__col1 {
    max-width: 44%;
  }
  .table-wrapper tr td.col.status span {
    width: 50px;
    height: 20px;
    min-width: 96px;
  }
  .account .column.main {
    padding-left: 0 !important;
  }
  .sales-order-view .order-block__progress {
    width: 750px;
    margin: 10px 0;
  }
  .sales-order-view .order-block__progress:before {
    display: block;
    height: 2px;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-1px);
  }
  #maincontent {
    padding: 0 36px!important;
  }
  .cms-no-route__content,
  .full-row-empty-search__content {
    padding: 60px 52px;
  }
  .cms-no-route__title,
  .full-row-empty-search__title {
    font-size: 84px;
    line-height: 88px;
  }
  .cms-no-route__text,
  .full-row-empty-search__text {
    font-size: 16px;
    line-height: 24px;
  }
  .cms-no-route__button,
  .full-row-empty-search__button {
    max-width: 180px;
  }
  .full-row-empty-search {
    display: flex;
    width: 100vw;
    position: relative;
    left: 35.2%;
    right: 0%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
  }
  .full-row-empty-search .pagebuilder-column-group {
    margin-inline: 36px;
  }
  .full-row-empty-search__col1 {
    padding: 60px 0 60px 52px;
  }
  .full-row-empty-search__background {
    background: linear-gradient(199.79deg, #f9f7fb 28.66%, #ededed 100.9%);
  }
  .full-row-empty-search .pagebuilder-column-line {
    background-image: url('../images/bags-transparent.png');
    background-position: right bottom;
    background-size: contain;
    background-repeat: no-repeat;
    background-attachment: scroll;
    align-self: stretch;
  }
  .cms-terms-and-conditions .cms-content,
  .cms-data-privacy-policy .cms-content,
  .cms-legal-notice .cms-content,
  .cms-privacy-policy-cookie-restriction-mode .cms-content {
    padding-inline: 36px;
    margin-top: 60px;
  }
  .cms-terms-and-conditions .cms-content__title,
  .cms-data-privacy-policy .cms-content__title,
  .cms-legal-notice .cms-content__title,
  .cms-privacy-policy-cookie-restriction-mode .cms-content__title {
    font-size: 70px;
    line-height: 78px;
    position: sticky;
    top: 20px;
  }
  .cms-terms-and-conditions .cms-content__description,
  .cms-data-privacy-policy .cms-content__description,
  .cms-legal-notice .cms-content__description,
  .cms-privacy-policy-cookie-restriction-mode .cms-content__description {
    font-size: 16px;
    line-height: 24px;
  }
  .cms-pure-local .hero,
  .cms-creative-series .hero,
  .cms-about-us .hero,
  .cms-sustainability .hero,
  .cms-malting-process .hero,
  .cms-root-revival .hero {
    align-items: center;
    max-height: 800px;
    margin-bottom: 0;
  }
  .cms-pure-local .hero__content,
  .cms-creative-series .hero__content,
  .cms-about-us .hero__content,
  .cms-sustainability .hero__content,
  .cms-malting-process .hero__content,
  .cms-root-revival .hero__content {
    display: flex;
    padding-inline: 36px;
    padding-bottom: 56px;
    flex-direction: column;
  }
  .cms-pure-local .hero__title,
  .cms-creative-series .hero__title,
  .cms-about-us .hero__title,
  .cms-sustainability .hero__title,
  .cms-malting-process .hero__title,
  .cms-root-revival .hero__title {
    padding-top: 140px;
  }
  .cms-pure-local .hero__title h1,
  .cms-creative-series .hero__title h1,
  .cms-about-us .hero__title h1,
  .cms-sustainability .hero__title h1,
  .cms-malting-process .hero__title h1,
  .cms-root-revival .hero__title h1 {
    font-size: 84px;
    line-height: 88px;
  }
  .cms-pure-local .hero__subtitles,
  .cms-creative-series .hero__subtitles,
  .cms-about-us .hero__subtitles,
  .cms-sustainability .hero__subtitles,
  .cms-malting-process .hero__subtitles,
  .cms-root-revival .hero__subtitles {
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 24px;
    padding-bottom: 24px;
  }
  .cms-pure-local .hero__subtitle-text,
  .cms-creative-series .hero__subtitle-text,
  .cms-about-us .hero__subtitle-text,
  .cms-sustainability .hero__subtitle-text,
  .cms-malting-process .hero__subtitle-text,
  .cms-root-revival .hero__subtitle-text {
    max-width: 566px;
  }
  .cms-pure-local .bt-two-words__title,
  .cms-creative-series .bt-two-words__title,
  .cms-about-us .bt-two-words__title,
  .cms-sustainability .bt-two-words__title,
  .cms-malting-process .bt-two-words__title,
  .cms-root-revival .bt-two-words__title {
    font-size: 60px;
    line-height: 64px;
  }
  .cms-pure-local .bt-two-words__row,
  .cms-creative-series .bt-two-words__row,
  .cms-about-us .bt-two-words__row,
  .cms-sustainability .bt-two-words__row,
  .cms-malting-process .bt-two-words__row,
  .cms-root-revival .bt-two-words__row {
    justify-content: space-evenly;
    margin-top: 112px;
    margin-bottom: 92px;
  }
  .cms-pure-local .bt-keyfocus,
  .cms-creative-series .bt-keyfocus,
  .cms-about-us .bt-keyfocus,
  .cms-sustainability .bt-keyfocus,
  .cms-malting-process .bt-keyfocus,
  .cms-root-revival .bt-keyfocus {
    padding: 100px 60px;
    min-height: 908px;
    margin: 40px 36px;
  }
  .cms-pure-local .bt-keyfocus__title,
  .cms-creative-series .bt-keyfocus__title,
  .cms-about-us .bt-keyfocus__title,
  .cms-sustainability .bt-keyfocus__title,
  .cms-malting-process .bt-keyfocus__title,
  .cms-root-revival .bt-keyfocus__title {
    font-size: 60px;
    line-height: 64px;
    text-align: left;
    position: sticky;
    top: 10px;
  }
  .cms-pure-local .bt-keyfocus__item,
  .cms-creative-series .bt-keyfocus__item,
  .cms-about-us .bt-keyfocus__item,
  .cms-sustainability .bt-keyfocus__item,
  .cms-malting-process .bt-keyfocus__item,
  .cms-root-revival .bt-keyfocus__item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
  }
  .cms-pure-local .bt-keyfocus__item-img.--care,
  .cms-creative-series .bt-keyfocus__item-img.--care,
  .cms-about-us .bt-keyfocus__item-img.--care,
  .cms-sustainability .bt-keyfocus__item-img.--care,
  .cms-malting-process .bt-keyfocus__item-img.--care,
  .cms-root-revival .bt-keyfocus__item-img.--care {
    max-width: 56px;
  }
  .cms-pure-local .bt-keyfocus__item-img.--experiment,
  .cms-creative-series .bt-keyfocus__item-img.--experiment,
  .cms-about-us .bt-keyfocus__item-img.--experiment,
  .cms-sustainability .bt-keyfocus__item-img.--experiment,
  .cms-malting-process .bt-keyfocus__item-img.--experiment,
  .cms-root-revival .bt-keyfocus__item-img.--experiment {
    max-width: 40px;
  }
  .cms-pure-local .bt-keyfocus__item-img.--wheat,
  .cms-creative-series .bt-keyfocus__item-img.--wheat,
  .cms-about-us .bt-keyfocus__item-img.--wheat,
  .cms-sustainability .bt-keyfocus__item-img.--wheat,
  .cms-malting-process .bt-keyfocus__item-img.--wheat,
  .cms-root-revival .bt-keyfocus__item-img.--wheat {
    max-width: 22px;
  }
  .cms-pure-local .bt-keyfocus__item-title,
  .cms-creative-series .bt-keyfocus__item-title,
  .cms-about-us .bt-keyfocus__item-title,
  .cms-sustainability .bt-keyfocus__item-title,
  .cms-malting-process .bt-keyfocus__item-title,
  .cms-root-revival .bt-keyfocus__item-title {
    font-size: 32px;
    line-height: 40px;
  }
  .cms-pure-local .bt-keyfocus__item-description,
  .cms-creative-series .bt-keyfocus__item-description,
  .cms-about-us .bt-keyfocus__item-description,
  .cms-sustainability .bt-keyfocus__item-description,
  .cms-malting-process .bt-keyfocus__item-description,
  .cms-root-revival .bt-keyfocus__item-description {
    font-size: 18px;
    line-height: 24px;
  }
  .cms-pure-local .bt-marquee .obscure,
  .cms-creative-series .bt-marquee .obscure,
  .cms-about-us .bt-marquee .obscure,
  .cms-sustainability .bt-marquee .obscure,
  .cms-malting-process .bt-marquee .obscure,
  .cms-root-revival .bt-marquee .obscure {
    font-size: 60px;
    line-height: 74px;
  }
  .cms-pure-local .bt-photo,
  .cms-creative-series .bt-photo,
  .cms-about-us .bt-photo,
  .cms-sustainability .bt-photo,
  .cms-malting-process .bt-photo,
  .cms-root-revival .bt-photo {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cms-pure-local .bt-photo .bt-photo-card,
  .cms-creative-series .bt-photo .bt-photo-card,
  .cms-about-us .bt-photo .bt-photo-card,
  .cms-sustainability .bt-photo .bt-photo-card,
  .cms-malting-process .bt-photo .bt-photo-card,
  .cms-root-revival .bt-photo .bt-photo-card {
    max-width: 1440px;
    width: 100%;
  }
  .cms-pure-local .bt-photo .bt-photo-card__subtitle,
  .cms-creative-series .bt-photo .bt-photo-card__subtitle,
  .cms-about-us .bt-photo .bt-photo-card__subtitle,
  .cms-sustainability .bt-photo .bt-photo-card__subtitle,
  .cms-malting-process .bt-photo .bt-photo-card__subtitle,
  .cms-root-revival .bt-photo .bt-photo-card__subtitle {
    font-size: 18px;
    line-height: 24px;
  }
  .cms-pure-local .bt-photo .bt-photo-card__title,
  .cms-creative-series .bt-photo .bt-photo-card__title,
  .cms-about-us .bt-photo .bt-photo-card__title,
  .cms-sustainability .bt-photo .bt-photo-card__title,
  .cms-malting-process .bt-photo .bt-photo-card__title,
  .cms-root-revival .bt-photo .bt-photo-card__title {
    font-size: 48px;
    line-height: 52px;
  }
  .cms-pure-local .bt-photo .bt-photo-card__description,
  .cms-creative-series .bt-photo .bt-photo-card__description,
  .cms-about-us .bt-photo .bt-photo-card__description,
  .cms-sustainability .bt-photo .bt-photo-card__description,
  .cms-malting-process .bt-photo .bt-photo-card__description,
  .cms-root-revival .bt-photo .bt-photo-card__description {
    font-size: 18px;
    line-height: 24px;
  }
  .cms-pure-local .bt-photo .bt-photo-card__img,
  .cms-creative-series .bt-photo .bt-photo-card__img,
  .cms-about-us .bt-photo .bt-photo-card__img,
  .cms-sustainability .bt-photo .bt-photo-card__img,
  .cms-malting-process .bt-photo .bt-photo-card__img,
  .cms-root-revival .bt-photo .bt-photo-card__img {
    max-width: 380px;
  }
  .cms-pure-local .bt-photo .bt-photo-card__img.--under,
  .cms-creative-series .bt-photo .bt-photo-card__img.--under,
  .cms-about-us .bt-photo .bt-photo-card__img.--under,
  .cms-sustainability .bt-photo .bt-photo-card__img.--under,
  .cms-malting-process .bt-photo .bt-photo-card__img.--under,
  .cms-root-revival .bt-photo .bt-photo-card__img.--under {
    position: absolute;
    left: 35%;
    top: 35%;
  }
  .cms-pure-local .bt-photo .bt-photo-card__img.--on,
  .cms-creative-series .bt-photo .bt-photo-card__img.--on,
  .cms-about-us .bt-photo .bt-photo-card__img.--on,
  .cms-sustainability .bt-photo .bt-photo-card__img.--on,
  .cms-malting-process .bt-photo .bt-photo-card__img.--on,
  .cms-root-revival .bt-photo .bt-photo-card__img.--on {
    z-index: 2;
  }
  .cms-pure-local .bt-video-card,
  .cms-creative-series .bt-video-card,
  .cms-about-us .bt-video-card,
  .cms-sustainability .bt-video-card,
  .cms-malting-process .bt-video-card,
  .cms-root-revival .bt-video-card {
    padding: 80px 104px;
  }
  .cms-pure-local .bt-video-card__content-title,
  .cms-creative-series .bt-video-card__content-title,
  .cms-about-us .bt-video-card__content-title,
  .cms-sustainability .bt-video-card__content-title,
  .cms-malting-process .bt-video-card__content-title,
  .cms-root-revival .bt-video-card__content-title {
    font-size: 70px;
    line-height: 64px;
    margin-bottom: 60px;
  }
  .cms-pure-local .bt-video-card__content-subtitle,
  .cms-creative-series .bt-video-card__content-subtitle,
  .cms-about-us .bt-video-card__content-subtitle,
  .cms-sustainability .bt-video-card__content-subtitle,
  .cms-malting-process .bt-video-card__content-subtitle,
  .cms-root-revival .bt-video-card__content-subtitle {
    font-size: 18px;
    line-height: 24px;
  }
  .cms-pure-local .bt-video-card__content-description,
  .cms-creative-series .bt-video-card__content-description,
  .cms-about-us .bt-video-card__content-description,
  .cms-sustainability .bt-video-card__content-description,
  .cms-malting-process .bt-video-card__content-description,
  .cms-root-revival .bt-video-card__content-description {
    font-size: 16px;
    line-height: 24px;
  }
  .cms-pure-local .bt-video-card__button,
  .cms-creative-series .bt-video-card__button,
  .cms-about-us .bt-video-card__button,
  .cms-sustainability .bt-video-card__button,
  .cms-malting-process .bt-video-card__button,
  .cms-root-revival .bt-video-card__button {
    max-width: 300px;
  }
  .cms-pure-local .bt-card-banner,
  .cms-creative-series .bt-card-banner,
  .cms-about-us .bt-card-banner,
  .cms-sustainability .bt-card-banner,
  .cms-malting-process .bt-card-banner,
  .cms-root-revival .bt-card-banner {
    padding: 80px 52px 80px 40px;
  }
  .cms-pure-local .bt-card-banner-big__title,
  .cms-creative-series .bt-card-banner-big__title,
  .cms-about-us .bt-card-banner-big__title,
  .cms-sustainability .bt-card-banner-big__title,
  .cms-malting-process .bt-card-banner-big__title,
  .cms-root-revival .bt-card-banner-big__title {
    font-size: 84px;
    line-height: 88px;
    max-width: 680px;
  }
  .cms-pure-local .bt-card-banner-big__subtitle,
  .cms-creative-series .bt-card-banner-big__subtitle,
  .cms-about-us .bt-card-banner-big__subtitle,
  .cms-sustainability .bt-card-banner-big__subtitle,
  .cms-malting-process .bt-card-banner-big__subtitle,
  .cms-root-revival .bt-card-banner-big__subtitle {
    font-size: 18px;
    line-height: 24px;
  }
  .cms-pure-local .bt-card-banner-big .button__alternative,
  .cms-creative-series .bt-card-banner-big .button__alternative,
  .cms-about-us .bt-card-banner-big .button__alternative,
  .cms-sustainability .bt-card-banner-big .button__alternative,
  .cms-malting-process .bt-card-banner-big .button__alternative,
  .cms-root-revival .bt-card-banner-big .button__alternative,
  .cms-pure-local .bt-card-banner-big .button__transparent,
  .cms-creative-series .bt-card-banner-big .button__transparent,
  .cms-about-us .bt-card-banner-big .button__transparent,
  .cms-sustainability .bt-card-banner-big .button__transparent,
  .cms-malting-process .bt-card-banner-big .button__transparent,
  .cms-root-revival .bt-card-banner-big .button__transparent,
  .cms-pure-local .bt-card-banner-big .button__white,
  .cms-creative-series .bt-card-banner-big .button__white,
  .cms-about-us .bt-card-banner-big .button__white,
  .cms-sustainability .bt-card-banner-big .button__white,
  .cms-malting-process .bt-card-banner-big .button__white,
  .cms-root-revival .bt-card-banner-big .button__white {
    display: inline-block;
  }
  .cms-pure-local .bt-card-banner-big-center__title,
  .cms-creative-series .bt-card-banner-big-center__title,
  .cms-about-us .bt-card-banner-big-center__title,
  .cms-sustainability .bt-card-banner-big-center__title,
  .cms-malting-process .bt-card-banner-big-center__title,
  .cms-root-revival .bt-card-banner-big-center__title {
    font-size: 60px;
    line-height: 64px;
    max-width: 780px;
  }
  .cms-pure-local .bt-card-banner-big-center__text,
  .cms-creative-series .bt-card-banner-big-center__text,
  .cms-about-us .bt-card-banner-big-center__text,
  .cms-sustainability .bt-card-banner-big-center__text,
  .cms-malting-process .bt-card-banner-big-center__text,
  .cms-root-revival .bt-card-banner-big-center__text {
    font-size: 48px;
    line-height: 52px;
    max-width: 904px;
  }
  .cms-pure-local .bt-card-banner-big-center__subtitle,
  .cms-creative-series .bt-card-banner-big-center__subtitle,
  .cms-about-us .bt-card-banner-big-center__subtitle,
  .cms-sustainability .bt-card-banner-big-center__subtitle,
  .cms-malting-process .bt-card-banner-big-center__subtitle,
  .cms-root-revival .bt-card-banner-big-center__subtitle {
    font-size: 18px;
    line-height: 24px;
  }
  .cms-pure-local .bt-card-banner-big-center .button__alternative,
  .cms-creative-series .bt-card-banner-big-center .button__alternative,
  .cms-about-us .bt-card-banner-big-center .button__alternative,
  .cms-sustainability .bt-card-banner-big-center .button__alternative,
  .cms-malting-process .bt-card-banner-big-center .button__alternative,
  .cms-root-revival .bt-card-banner-big-center .button__alternative,
  .cms-pure-local .bt-card-banner-big-center .button__transparent,
  .cms-creative-series .bt-card-banner-big-center .button__transparent,
  .cms-about-us .bt-card-banner-big-center .button__transparent,
  .cms-sustainability .bt-card-banner-big-center .button__transparent,
  .cms-malting-process .bt-card-banner-big-center .button__transparent,
  .cms-root-revival .bt-card-banner-big-center .button__transparent,
  .cms-pure-local .bt-card-banner-big-center .button__white,
  .cms-creative-series .bt-card-banner-big-center .button__white,
  .cms-about-us .bt-card-banner-big-center .button__white,
  .cms-sustainability .bt-card-banner-big-center .button__white,
  .cms-malting-process .bt-card-banner-big-center .button__white,
  .cms-root-revival .bt-card-banner-big-center .button__white {
    display: inline-block;
  }
  .cms-pure-local .bt-card-banner-medium__title,
  .cms-creative-series .bt-card-banner-medium__title,
  .cms-about-us .bt-card-banner-medium__title,
  .cms-sustainability .bt-card-banner-medium__title,
  .cms-malting-process .bt-card-banner-medium__title,
  .cms-root-revival .bt-card-banner-medium__title {
    font-size: 48px;
    line-height: 52px;
    max-width: 680px;
  }
  .cms-pure-local .bt-card-banner-medium__subtitle,
  .cms-creative-series .bt-card-banner-medium__subtitle,
  .cms-about-us .bt-card-banner-medium__subtitle,
  .cms-sustainability .bt-card-banner-medium__subtitle,
  .cms-malting-process .bt-card-banner-medium__subtitle,
  .cms-root-revival .bt-card-banner-medium__subtitle {
    font-size: 18px;
    line-height: 24px;
  }
  .cms-pure-local .bt-card-banner-medium__text,
  .cms-creative-series .bt-card-banner-medium__text,
  .cms-about-us .bt-card-banner-medium__text,
  .cms-sustainability .bt-card-banner-medium__text,
  .cms-malting-process .bt-card-banner-medium__text,
  .cms-root-revival .bt-card-banner-medium__text {
    max-width: 600px;
  }
  .cms-pure-local .bt-card-two__title,
  .cms-creative-series .bt-card-two__title,
  .cms-about-us .bt-card-two__title,
  .cms-sustainability .bt-card-two__title,
  .cms-malting-process .bt-card-two__title,
  .cms-root-revival .bt-card-two__title {
    font-size: 84px;
    line-height: 88px;
    max-width: 1000px;
  }
  .cms-pure-local .bt-card-two__subtitle,
  .cms-creative-series .bt-card-two__subtitle,
  .cms-about-us .bt-card-two__subtitle,
  .cms-sustainability .bt-card-two__subtitle,
  .cms-malting-process .bt-card-two__subtitle,
  .cms-root-revival .bt-card-two__subtitle {
    font-size: 18px;
    line-height: 24px;
  }
  .cms-pure-local .bt-review__title,
  .cms-creative-series .bt-review__title,
  .cms-about-us .bt-review__title,
  .cms-sustainability .bt-review__title,
  .cms-malting-process .bt-review__title,
  .cms-root-revival .bt-review__title {
    font-size: 32px;
    line-height: 40px;
  }
  .cms-pure-local .bt-review__autor,
  .cms-creative-series .bt-review__autor,
  .cms-about-us .bt-review__autor,
  .cms-sustainability .bt-review__autor,
  .cms-malting-process .bt-review__autor,
  .cms-root-revival .bt-review__autor {
    font-size: 20px;
    line-height: 24px;
  }
  .cms-pure-local .bt-review__company,
  .cms-creative-series .bt-review__company,
  .cms-about-us .bt-review__company,
  .cms-sustainability .bt-review__company,
  .cms-malting-process .bt-review__company,
  .cms-root-revival .bt-review__company {
    font-size: 20px;
    line-height: 24px;
  }
  .cms-pure-local .bt-photo-card {
    margin: 100px 36px;
    padding: 0 36px;
  }
  .cms-pure-local .bt-card-banner-big__title {
    margin-bottom: 32px;
  }
  .cms-pure-local .bt-card-two {
    margin-top: 90px;
  }
  .cms-pure-local .bt-card-banner-big .bt-card-banner-big__text {
    max-width: 600px;
  }
  .cms-pure-local .position-70 {
    top: -70px;
  }
  .cms-creative-series .hero__title h1 {
    max-width: 500px;
  }
  .cms-creative-series .bt-card-banner-big__text {
    max-width: 680px;
  }
  .cms-creative-series .bt-review {
    min-height: 488px;
  }
  .cms-creative-series .bt-card-banner-big {
    aspect-ratio: 2;
  }
  .cms-creative-series .bt-card-banner__text,
  .cms-about-us .bt-card-banner__text,
  .cms-sustainability .bt-card-banner__text,
  .cms-malting-process .bt-card-banner__text,
  .cms-root-revival .bt-card-banner__text {
    max-width: 600px;
  }
  .cms-creative-series .bt-photo img,
  .cms-about-us .bt-photo img,
  .cms-sustainability .bt-photo img,
  .cms-malting-process .bt-photo img,
  .cms-root-revival .bt-photo img {
    max-height: 533px;
  }
  .cms-creative-series .bt-photo-card,
  .cms-about-us .bt-photo-card,
  .cms-sustainability .bt-photo-card,
  .cms-malting-process .bt-photo-card,
  .cms-root-revival .bt-photo-card {
    padding: 100px 36px;
  }
  .cms-creative-series .bt-photo-card .button__primary,
  .cms-about-us .bt-photo-card .button__primary,
  .cms-sustainability .bt-photo-card .button__primary,
  .cms-malting-process .bt-photo-card .button__primary,
  .cms-root-revival .bt-photo-card .button__primary {
    display: inline-block;
  }
  .cms-creative-series .bt-card-two,
  .cms-about-us .bt-card-two,
  .cms-sustainability .bt-card-two,
  .cms-malting-process .bt-card-two,
  .cms-root-revival .bt-card-two {
    margin: 80px 0 60px;
  }
  .cms-creative-series .bt-review,
  .cms-about-us .bt-review,
  .cms-sustainability .bt-review,
  .cms-malting-process .bt-review,
  .cms-root-revival .bt-review {
    padding: 80px 150px;
    justify-content: center !important;
    aspect-ratio: 2;
  }
  .cms-coa .main-title h1 {
    font-size: 84px;
    line-height: 88px;
  }
  .cms-coa .main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cms-coa .main-content .texts {
    width: 100%;
  }
  .cms-coa .main-content .texts .title-certif h3 {
    font-size: 23px;
    margin-top: 52px;
    max-width: 300px;
  }
  .cms-coa .main-content .texts .title-certif h3.mobile {
    display: none;
  }
  .cms-coa .main-content .texts p {
    font-size: 22px;
    width: 40%;
  }
  .cms-coa .main-content .texts .btn-container {
    width: 92%;
  }
  .cms-coa .main-content .texts .btn-container .btn-access {
    width: 20%;
    margin-top: 80px;
    text-align: center;
  }
  .cms-coa .main-content .main-info {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .cms-coa .main-content .main-info .content-info {
    margin-top: 80px;
    box-shadow: 0px 6px 25px 0px #0000001C;
    padding: 40px;
    max-width: 1260px;
  }
  .cms-coa .main-content .main-info .content-info .top-title {
    display: flex;
    justify-content: space-between;
  }
  .cms-coa .main-content .main-info .content-info .top-title .titles-left h2 {
    font-size: 38px;
  }
  .cms-coa .main-content .main-info .content-info .certification-info {
    display: flex;
    flex-wrap: wrap;
    margin-left: -47px;
  }
  .cms-coa .main-content .main-info .content-info .certification-info h3 {
    font-size: 16px;
  }
  .cms-coa .main-content .main-info .content-info .certification-info .column4,
  .cms-coa .main-content .main-info .content-info .certification-info .column2,
  .cms-coa .main-content .main-info .content-info .certification-info .column3 {
    flex-direction: column;
    width: 25%;
    margin-bottom: 40px;
  }
  .cms-coa .main-content .main-info .content-info .certification-info .column1 {
    display: flex;
    width: 100%;
  }
  .cms-coa .main-content .main-info .content-info .certification-info .column1 .item {
    width: 45%;
  }
  .cms-coa .main-content .main-info .content-info .certification-info .column1 .item:first-child {
    margin-bottom: 58px;
  }
  .cms-coa .main-content .main-info .content-info .certification-info .column1 .item:last-child {
    margin-left: 33%;
  }
  .cms-coa .main-content .main-info .content-info .certification-info .column1 .item:last-child p {
    max-width: 270px;
  }
  .cms-coa .main-content .main-info .content-info .certification-info .item {
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .cms-coa .main-content .main-info .content-info .certification-info .item .tooltip-custom {
    position: absolute;
    left: -2px;
    top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    box-shadow: 0px 0px 8px #d8d8d8;
    border-radius: 6px;
    background: #ffffff;
  }
  .cms-coa .main-content .main-info .content-info .certification-info .item .tooltip-custom img {
    width: 80%;
  }
  .cms-coa .main-content .main-info .content-info .certification-info .item .tooltip-custom .tooltiptext {
    position: absolute;
    left: 50px;
    top: -50px;
    background: white;
    width: 300px;
    box-shadow: 0px 0px 8px #d8d8d8;
    border-radius: 6px;
    padding: 20px;
    flex-direction: column;
  }
  .cms-coa .main-content .main-info .content-info .certification-info .item .tooltip-custom .tooltiptext:before {
    display: inline-block;
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid white;
    position: absolute;
    top: -18px;
    left: 0;
  }
  .cms-coa .main-content .main-info .content-info .certification-info .item .tooltip-custom:hover {
    background: #102134;
  }
  .cms-coa .main-content .main-info .content-info .certification-info .item .tooltip-custom:hover .tooltiptext {
    display: flex !important;
    z-index: 9;
  }
  .cms-coa .main-content .main-info .content-info .certification-info .item .tooltip-custom:hover img {
    filter: brightness(2.5);
  }
  .cms-coa .main-content .main-info .content-info .table-1 .item .tooltip-custom .tooltiptext {
    position: absolute;
    top: 50px;
  }
  .cms-coa .main-content .main-info .content-info .table-1 .item .tooltip-custom .tooltiptext:before {
    display: inline-block;
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid white;
    position: absolute;
    top: -18px;
    left: 0;
  }
  .cms-coa .main-content .main-info .content-info .table-1 .data-table {
    font-size: 12px;
  }
  .cms-coa .main-content .main-info .content-info .table-1 .data-table .table-header .header-cell {
    padding: 8px 12px;
    font-size: 14px;
  }
  .cms-coa .main-content .main-info .content-info .table-1 .data-table .table-subheader .subheader-cell {
    padding: 8px 12px;
    font-size: 12px;
  }
  .cms-coa .main-content .main-info .content-info .table-1 .data-table .table-row .table-cell {
    padding: 8px 12px;
    font-size: 12px;
  }
  .products-upsell .product-items {
    display: flex;
    overflow-x: auto;
    margin-left: 24px;
  }
  .products-upsell .product-item {
    min-width: 390px;
  }
  .widget.grid .product-items {
    display: flex;
    overflow-x: auto;
    margin-left: 24px;
  }
  .widget.grid .product-item {
    min-width: 450px;
  }
  .product-item .product-item-name,
  .product-item .product.name a {
    font-size: 16px;
    line-height: 24px;
  }
  .product-item .price-box .special-price .price,
  .product-item .price-box .price-final_price .price {
    font-size: 24px;
  }
  .product-item .price-box .old-price .price {
    font-size: 20px;
  }
  .panel.header {
    max-width: 1300px !important;
  }
  .page-header {
    margin-bottom: 32px !important;
  }
  .header.content,
  .search-custom.content {
    max-width: unset;
    padding: 28px 36px !important;
  }
  .header.content .menu,
  .search-custom.content .menu {
    width: 20%;
    margin-bottom: 0;
    cursor: pointer;
  }
  .header.content .block-search,
  .search-custom.content .block-search {
    width: 100%;
    display: none;
  }
  .header.content .logo,
  .search-custom.content .logo {
    margin: 0;
  }
  .header.content .logo .logo-mobile,
  .search-custom.content .logo .logo-mobile {
    display: none;
  }
  .header.content .logo img,
  .search-custom.content .logo img {
    object-fit: contain;
  }
  .header.content .myaccount,
  .search-custom.content .myaccount {
    width: 20%;
  }
  .header .nav-sections,
  .search-custom .nav-sections {
    margin-bottom: 0;
  }
  .header .nav-sections .navigation,
  .search-custom .nav-sections .navigation {
    background: #ffffff !important;
  }
  .header .nav-sections .navigation .level-top,
  .search-custom .nav-sections .navigation .level-top {
    font-family: 'GeneralSans', sans-serif;
    font-size: 1.125rem;
    line-height: 1.5rem;
    font-weight: 300;
    color: #393839;
  }
  .header .showcart .counter.qty,
  .search-custom .showcart .counter.qty,
  .header .showcart-custom .counter.qty,
  .search-custom .showcart-custom .counter.qty {
    top: -16px;
    left: 18px;
  }
  .search-custom__middle {
    padding: 16px 36px;
  }
  .search-custom__actions .search__icon:before {
    content: '' !important;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
    min-width: 20px;
    box-sizing: content-box;
  }
  .search-custom__actions .account:before {
    content: '' !important;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
    min-width: 20px;
    box-sizing: content-box;
  }
  .search-custom__actions .showcart:before,
  .search-custom__actions .showcart-custom:before {
    content: '' !important;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
    min-width: 20px;
    box-sizing: content-box;
  }
  .search-custom .block-search .input-text {
    font-size: 32px;
  }
  .search-custom .block-search .action.search {
    right: 0;
    bottom: 0;
  }
  .search-custom .block-search .input-text {
    height: 60px;
  }
  .search-custom .block-search .search-autocomplete {
    top: 80px;
    padding: 0px 36px 24px;
  }
  .search-custom .field.search {
    display: flex;
    align-items: center;
  }
  .search-custom .search-autocomplete li {
    font-size: 32px;
    line-height: 40px;
    font-weight: 300;
    border: 0;
  }
  .search-custom .label {
    position: unset !important;
  }
  .search-custom .control {
    flex: 2;
  }
  .search-custom .actions .action.search {
    position: unset !important;
  }
  .footer {
    padding: 56px 35px 0;
  }
  .footer__top {
    padding-bottom: 56px;
    margin-bottom: 72px;
  }
  .footer__middle {
    padding-bottom: 100px;
    margin-bottom: 92px;
    display: flex;
    justify-content: center;
  }
  .footer__middle > div {
    max-width: 1440px;
    width: 100%;
  }
  .footer__middle-title {
    margin-bottom: 24px;
  }
  .footer__bottom-items {
    gap: 70px !important;
    margin-bottom: 92px;
  }
  .footer__bottom a:visited,
  .footer__bottom .alink:visited {
    /* color: #1d327b; */
    text-decoration: none;
  }
  .footer__copyright {
    padding: 50px 36px;
  }
  .footer__copyright .copyright-block {
    gap: 2%;
  }
  .footer__copyright .copyright-block .footer__copyright-col:nth-child(1) {
    flex: 1.5;
  }
  .footer__copyright .copyright-block .footer__copyright-col:nth-child(2) {
    flex: 1;
  }
  .footer__copyright .copyright-block .footer__copyright-col:nth-child(3) {
    flex: 1;
    text-align: right;
  }
  .block-minicart {
    width: 680px !important;
  }
  .minicart-items {
    max-height: calc(var(--doc-height) - 490px);
    overflow-y: auto;
  }
  .menu-custom__title {
    padding: 28px 26px;
  }
  .menu-custom__content ul {
    padding: 28px 36px;
  }
  .menu-custom__content ul a {
    font-size: 1.5rem;
  }
  .menu-custom__close {
    position: absolute;
    left: 36px;
  }
  .menu-custom__actions {
    padding: 0 36px 36px;
  }
  .contact-index-index .page-main {
    max-width: unset;
    padding: 0 24px;
  }
  .contact-index-index .page-main .contact {
    padding: 0 24px 24px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    row-gap: 60px;
  }
  .contact-index-index .page-main .contact__video {
    padding: 32px;
    width: 49%;
    flex: 0 0 auto;
  }
  .contact-index-index .page-main .contact__video .video {
    height: 653px;
    max-width: 95%;
  }
  .contact-index-index .page-main .contact__video .video::before {
    font-size: 82px;
    line-height: 82px;
    padding: 32px 24px 0;
  }
  .contact-index-index .page-main .contact__video .video::after {
    font-size: 16px;
    line-height: 16px;
    padding: 0 24px;
  }
  .contact-index-index .page-main .contact__form {
    width: 49%;
    flex: 0 0 auto;
    padding: 32px;
  }
  .contact-index-index .page-main .contact__form .fieldset {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .contact-index-index .page-main .contact__form .fieldset .name,
  .contact-index-index .page-main .contact__form .fieldset .lastname,
  .contact-index-index .page-main .contact__form .fieldset .email,
  .contact-index-index .page-main .contact__form .fieldset .brewery {
    width: 47%;
  }
  .contact-index-index .page-main .contact__form .fieldset .subject,
  .contact-index-index .page-main .contact__form .fieldset .comment {
    width: 100%;
  }
  .contact-index-index .page-main .contact__form .actions-toolbar {
    display: flex;
    justify-content: end;
  }
  .contact-index-index .page-main .contact__form .actions-toolbar .button__subalternative {
    margin: 0;
  }
  .contact-index-index .page-main .contact__form .action.submit.primary {
    margin: 0;
  }
  .contracts-pages-listing .contracts__table {
    padding: 20px 32px;
  }
  .contracts-pages-details .contracts-details__wrapper {
    padding: 32px;
  }
  .contracts-pages-details .contracts-details__subtitle {
    width: 60%;
  }
  .contracts-pages-details .contracts-details__label.hidden {
    visibility: hidden;
    margin: 0;
  }
  .contracts-pages-details .contracts-details__downloader {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: end;
  }
  .contracts-pages-details .contracts-products {
    margin-top: 40px;
  }
  .helpdesk-ticket-index .hdmx__tickets-table-wrapper,
  .helpdesk-ticket-create .hdmx__tickets-table-wrapper,
  .helpdesk-ticket-view .hdmx__tickets-table-wrapper {
    padding: 24px 32px;
  }
  .helpdesk-ticket-index .hdmx-ticket__wrapper,
  .helpdesk-ticket-create .hdmx-ticket__wrapper,
  .helpdesk-ticket-view .hdmx-ticket__wrapper {
    padding: 24px 32px;
  }
  .helpdesk-ticket-create .hdmx-ticket__form .fields.group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0;
  }
  .helpdesk-ticket-create .hdmx-ticket__form .fields.group .field.custom {
    flex-direction: column;
  }
  .helpdesk-ticket-create .hdmx-ticket__form .fields.group .field.custom,
  .helpdesk-ticket-create .hdmx-ticket__form .fields.group .field.message,
  .helpdesk-ticket-create .hdmx-ticket__form .fields.group .field.order {
    width: 48%;
    padding: 0;
  }
  .helpdesk-ticket-create .hdmx-ticket__form .fields.group .field.files {
    padding-right: 0;
  }
  .helpdesk-ticket-create .actions-toolbar {
    display: flex;
    justify-content: end;
    gap: 16px;
  }
  .helpdesk-ticket-create .actions-toolbar .action {
    display: flex;
    align-items: center;
  }
  .sales-order-view .column.main {
    padding-left: 0 !important;
  }
  .sales-order-view .column.main .page-title-wrapper {
    align-items: self-start;
    flex-direction: column-reverse;
  }
  .sales-order-view .column.main .page-title-wrapper,
  .sales-order-view .column.main .block-order-details-comments,
  .sales-order-view .column.main .order-details-items,
  .sales-order-view .column.main .block-order-details-view .box {
    padding: 32px;
  }
  .sales-order-view .sidebar .nav.item.current.orders a::before {
    display: none !important;
  }
  .sales-order-view .block-order-details-view .block-content {
    justify-content: space-between;
  }
  .sales-order-view .block-order-details-view .block-content .box {
    width: 48% !important;
  }
  .sales-order-view .table-order-items {
    display: flex;
    flex-direction: column;
  }
  .sales-order-view .table-order-items thead .col.name {
    line-height: 10px;
  }
  .sales-order-view .table-order-items thead,
  .sales-order-view .table-order-items tbody,
  .sales-order-view .table-order-items thead tr,
  .sales-order-view .table-order-items tbody tr {
    display: flex;
    width: 100%;
    border: none !important;
  }
  .sales-order-view .table-order-items tfoot {
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
  }
  .sales-order-view .table-order-items tfoot tr {
    display: flex;
    justify-content: end;
    align-items: center;
    width: 30%;
    justify-content: space-between;
  }
  .sales-order-view .order-actions-toolbar {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
  }
  .sales-order-view .order-actions-toolbar .actions {
    display: flex;
    margin-top: 32px;
    gap: 12px;
  }
  .sales-order-view .order-actions-toolbar .print {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .sales-order-view .order-actions-toolbar .print::before {
    display: none;
  }
  .accounting-pages-payments .table-wrapper td::before {
    font-size: 14px;
    line-height: 14px;
  }
  .accounting-pages-newpayments .field.date {
    top: 5px;
  }
  .accounting-pages-newpayments .field.date .input {
    top: 3px;
  }
  .accounting-pages-newpayments .footer-form {
    margin-top: 32px;
    gap: 100px;
  }
  .customer-account-edit .form-container {
    padding: 24px 32px;
  }
  .customer-account-edit .fieldset {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .customer-account-edit .fieldset .field {
    width: 48%;
  }
  .customer-account-edit .fieldset .field .actions-toolbar {
    float: right;
  }
  .customer-account-edit .actions-toolbar {
    display: flex;
    justify-content: flex-end;
  }
  .customer-address-index .column.main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0;
  }
  .customer-address-index .page-title-wrapper {
    margin-bottom: 32px;
    width: 40%;
    order: 0;
  }
  .customer-address-index .actions-toolbar {
    width: auto;
    order: 1;
    margin-bottom: 32px;
  }
  .customer-address-index .block-addresses-list {
    width: 100% !important;
    order: 3;
    margin-top: 20px !important;
  }
  .customer-address-index .block-addresses-default {
    order: 2;
    width: 100%;
  }
  .customer-address-index .block-addresses-default .box {
    padding: 32px;
  }
  .customer-address-index .form-address-edit,
  .customer-address-index .form-address-add {
    display: flex;
    flex-wrap: wrap;
    column-gap: 32px;
  }
  .customer-address-index .form-address-edit .field-name-firstname,
  .customer-address-index .form-address-add .field-name-firstname,
  .customer-address-index .form-address-edit .field-name-lastname,
  .customer-address-index .form-address-add .field-name-lastname,
  .customer-address-index .form-address-edit .company,
  .customer-address-index .form-address-add .company,
  .customer-address-index .form-address-edit .telephone,
  .customer-address-index .form-address-add .telephone,
  .customer-address-index .form-address-edit .street,
  .customer-address-index .form-address-add .street,
  .customer-address-index .form-address-edit .city,
  .customer-address-index .form-address-add .city,
  .customer-address-index .form-address-edit .zip,
  .customer-address-index .form-address-add .zip,
  .customer-address-index .form-address-edit .region,
  .customer-address-index .form-address-add .region,
  .customer-address-index .form-address-edit .billing,
  .customer-address-index .form-address-add .billing,
  .customer-address-index .form-address-edit .shipping,
  .customer-address-index .form-address-add .shipping,
  .customer-address-index .form-address-edit .country,
  .customer-address-index .form-address-add .country,
  .customer-address-index .form-address-edit .states,
  .customer-address-index .form-address-add .states {
    flex: 0 0 calc(50% - 16px);
  }
  .customer-address-index .form-address-edit .fieldset,
  .customer-address-index .form-address-add .fieldset {
    display: flex;
    flex-wrap: wrap;
    column-gap: 32px;
  }
  .customer-address-index #ajaxresponse,
  .customer-address-index #new-address {
    right: -800px;
    width: 800px;
  }
  .customer-address-index #ajaxresponse .block-title,
  .customer-address-index #new-address .block-title {
    padding: 0 40px;
  }
  .customer-address-index #ajaxresponse .close-panel,
  .customer-address-index #new-address .close-panel {
    padding: 32px 40px 0;
  }
  .customer-address-index #ajaxresponse form,
  .customer-address-index #new-address form {
    padding: 40px;
  }
  .checkout-onepage-success .checkout-success,
  .checkout-onepage-success .checkout-fail {
    margin-bottom: 80px;
    margin-top: 30px;
  }
  .amlocator-index-index .amlocator__banner h1 {
    font-size: 84px;
    line-height: 88px;
    max-width: 700px;
  }
  .amlocator-index-index .amlocator-map-container {
    height: auto !important;
    max-height: unset !important;
    flex-direction: row !important;
  }
  .amlocator-index-index .amlocator-search-container {
    margin-bottom: 0 !important;
    padding: 52px 32px;
  }
  .amlocator-index-index .amlocator-search-container .amlocator-block {
    margin-bottom: 32px !important;
    overflow: hidden;
  }
  .amlocator-index-index .amlocator-search-container__title {
    font-size: 40px;
    line-height: 44px;
    margin-bottom: 60px;
  }
  .amlocator-index-index .amlocator-block.-storelist {
    -webkit-box-flex: auto !important;
    flex: auto !important;
    margin-top: 40px;
    margin-bottom: 80px;
  }
  .amlocator-index-index .amlocator-block.-storelist .amlocator-wrapper {
    padding: 32px 24px;
  }
  .amlocator-index-index .amlocator-block.-map {
    max-height: 500px !important;
  }
  .amlocator-index-index .amlocator-extra-content__title {
    font-size: 32px;
    line-height: 40px;
    max-width: 476px;
  }
  .amlocator-index-index .amlocator-extra-content__content {
    font-size: 24px;
    line-height: 32px;
  }
  .amlocator-index-index .amlocator-extra-content.--top {
    margin-bottom: 80px;
  }
  .amlocator-index-index .amlocator-extra-content.--bottom {
    margin-bottom: 120px;
  }
  .amlocator-index-index .amlocator-table {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr 1fr 1fr;
    row-gap: 10px;
  }
  .amlocator-index-index .amlocator-table .row {
    display: contents;
  }
  .amlocator-index-index .amlocator-table .row > div {
    padding: 12px;
    border-bottom: 1px solid #eee;
  }
  .amlocator-index-index .button__register {
    display: inline-block;
    margin-top: 32px;
  }
  .amlocator-index-index .amlocator__banner {
    margin-bottom: 80px;
  }
  .amlocator-index-index .amlocator-store-information {
    overflow-x: hidden;
  }
  .amlocator-index-index .amlocator-store-desc {
    overflow-x: hidden;
  }
  .m-message-container {
    max-width: 630px;
    margin-right: 80px;
  }
  .modal-popup.modal-slide .modal-footer {
    border-top: 1px solid #c1c1c1;
    text-align: right;
  }
  /**
     * @codingStandardsIgnoreStart
     */
  #store-selector .form-continue .actions-toolbar > .primary {
    float: right;
  }
  #store-selector .form-continue .actions-toolbar .action.primary {
    margin: 0;
  }
  .pagebuilder-mobile-only {
    display: none !important;
  }
  .checkout-index-index .opc-wrapper.am-opc-wrapper .shipping-address-item {
    width: 50%;
  }
  #checkout.am-checkout.-modern.-layout-1column .authentication-wrapper {
    min-width: 300px;
  }
  .amcheckout-main-container.-modern .amcheckout-step-container .amcheckout-form-login .amcheckout-email .amcheckout-wrapper {
    -webkit-box-flex: inherit;
    -ms-flex: inherit;
    flex: inherit;
    width: calc(50% - 7px);
  }
  .amcheckout-main-container.-modern .amcheckout-step-container .amcheckout-delivery-date .field.date,
  .amcheckout-main-container.-modern .amcheckout-step-container .amcheckout-delivery-date .field.timepicker {
    width: 50%;
  }
  .amcheckout-main-container.-modern .amcheckout-step-container .amcheckout-delivery-date .field.date {
    padding-right: 10px;
  }
  .amcheckout-main-container.-modern .amcheckout-step-container .amcheckout-delivery-date .field.timepicker {
    padding-left: 10px;
  }
  .amcheckout-main-container.-modern .amcheckout-step-container .amcheckout-summary-container .amcheckout-title {
    background: #eee;
    color: #363636;
  }
  .amcheckout-main-container.-modern .amcheckout-step-container .amcheckout-summary-container .amcheckout-title > .amcheckout-icon {
    background: none;
  }
  .amcheckout-main-container.-modern .amcheckout-step-container .amcheckout-summary-container .subtotal {
    width: 15%;
  }
  .amcheckout-main-container.-modern .amcheckout-step-container .amcheckout-summary-container .table-totals {
    margin-left: auto;
    width: 40%;
  }
  .amcheckout-main-container.-modern .amcheckout-step-container .amcheckout-additional-options .amcheckout-checkboxes,
  .amcheckout-main-container.-modern .amcheckout-step-container .amcheckout-additional-options .amcheckout-comment {
    display: inline-block;
    vertical-align: top;
  }
  .amcheckout-main-container.-modern .amcheckout-step-container .amcheckout-additional-options .amcheckout-checkboxes {
    box-sizing: border-box;
    padding-right: 10px;
    width: 35%;
  }
  .amcheckout-main-container.-modern .amcheckout-step-container .amcheckout-additional-options .amcheckout-comment {
    width: 65%;
  }
  .amcheckout-main-container.-modern .amcheckout-step-container .checkout-payment-method .payment-option-title {
    border: none;
  }
  .checkout-index-index:not(.amasty-jet-theme) .amcheckout-main-container.-modern.-layout-1column .amcheckout-summary-container .details-qty {
    max-width: 20%;
  }
  .amcheckout-main-container.-modern.-layout-2columns {
    position: relative;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-column {
    margin: 0;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-column.-main {
    float: left;
    width: calc(100% - (380px + 60px));
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-column.-sidebar {
    float: right;
    width: 380px;
    transition: all .3s ease;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-column.-sidebar.-sticky {
    overflow: auto;
    max-height: 100vh;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-step-container.-summary,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container.-summary {
    background: #fff;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-step-container.-summary > .checkout-payment-method .actions-toolbar,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container.-summary > .checkout-payment-method .actions-toolbar {
    margin-bottom: 20px;
    text-align: center;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-step-container.-summary > .checkout-payment-method .actions-toolbar .amasty.checkout,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container.-summary > .checkout-payment-method .actions-toolbar .amasty.checkout {
    float: none;
    width: 70%;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-step-container .amcheckout-summary-container,
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-step-container .amcheckout-summary-container .amcheckout-title,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-summary-container,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-summary-container .amcheckout-title,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-additional-options,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-additional-options .amcheckout-title {
    background: #f9f9f9;
    cursor: default;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-step-container .amcheckout-summary-container .product-item-name,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-summary-container .product-item-name,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-additional-options .product-item-name {
    width: 100%;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-step-container .amcheckout-summary-container .subtotal,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-summary-container .subtotal,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-additional-options .subtotal {
    width: auto;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-step-container .amcheckout-summary-container .table-totals,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-summary-container .table-totals,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-additional-options .table-totals {
    margin-left: 0;
    width: 100%;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-step-container .amcheckout-additional-options {
    background: #fff;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-step-container .amcheckout-additional-options .amcheckout-checkboxes,
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-step-container .amcheckout-additional-options .amcheckout-comment {
    display: block;
    width: 100%;
  }
  .amcheckout-sticky-stopper {
    display: block;
    visibility: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 0;
  }
  .amcheckout-main-container.-modern.-layout-3columns {
    display: flex;
    justify-content: space-between;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-column {
    width: 32%;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-title {
    cursor: default;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-form-login .amcheckout-email .amcheckout-wrapper,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .form-login .amcheckout-email .amcheckout-wrapper {
    flex: auto;
    width: inherit;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-form-login .amcheckout-password,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .form-login .amcheckout-password {
    width: 100%;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-shipping-address .shipping-address-item,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-shipping-address .shipping-address-details {
    width: 100%;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-shipping-address .shipping-address-item:not(:last-of-type),
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-shipping-address .shipping-address-details:not(:last-of-type) {
    margin-bottom: 10px;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-shipping-methods {
    min-width: inherit;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-shipping-methods .amcheckout-method {
    width: 100%;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-shipping-methods .amcheckout-method:not(:last-of-type) {
    margin-bottom: 10px;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .billing-address-details {
    width: 100%;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-payment-methods .payment-method:not(:last-of-type) {
    margin-bottom: 10px;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-delivery-date .field.date .control {
    position: relative;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-delivery-date .field.date .input-text._has-datepicker {
    width: 100%;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-delivery-date .field.date ._has-datepicker ~ .ui-datepicker-trigger {
    position: absolute;
    top: 7px;
    right: 7px;
    margin: 0;
  }
  .amlocator-main-container .amlocator-search-container {
    width: 33%;
  }
  .amlocator-main-container .amlocator-search-container .amlocator-block {
    margin-bottom: 0;
    text-align: center;
    margin-bottom: 5px;
  }
  .amlocator-main-container .amlocator-search-container .amlocator-block.-separator {
    display: none;
  }
  .amlocator-main-container .amlocator-map-container {
    height: 100vh;
    max-height: 800px;
  }
  .amlocator-main-container .amlocator-map-container .amlocator-block.-filter {
    width: 33%;
  }
  .amlocator-main-container .amlocator-map-container .amlocator-block.-map {
    width: 67%;
    height: 80vh;
    max-height: 800px;
    padding-left: 15px;
  }
  .amlocator-main-container .amlocator-map-container .amlocator-block.-storelist {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    order: inherit;
    width: 33%;
  }
  .amlocator-main-container .amlocator-map-container .amlocator-map {
    height: 100%;
  }
  .amlocator-main-container .amlocator-map-container .amlocator-map button {
    top: 0 !important;
    right: 0 !important;
  }
  .amlocator-main-container .amlocator-store-list .amlocator-wrapper {
    max-height: inherit;
  }
  .amlocator-main-container .amlocator-filters-container .amlocator-content {
    display: block;
  }
  .amlocator-main-container .amlocator-filters-container .amlocator-hidden-filter {
    display: none;
  }
  .amlocator-location-main .amlocator-location-container {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .amlocator-location-main .amlocator-location-container > .amlocator-column.-left,
  .amlocator-location-main .amlocator-location-container .amlocator-block.-grey {
    background: #fbfbfb;
  }
  .amlocator-location-main .amlocator-location-container > .amlocator-column.-left {
    width: 33%;
  }
  .amlocator-location-main .amlocator-location-container > .amlocator-column.-right {
    display: block;
    padding-left: 15px;
    width: 67%;
  }
  .amlocator-location-main .amlocator-location-container .amlocator-block.-map {
    height: 60vh;
  }
  .amlocator-location-main .amlocator-location-container .amlocator-location-reviews .amlocator-wrapper {
    margin-right: auto;
  }
  .amlocator-location-main .amlocator-location-container .amlocator-attributes-wrapper .amlocator-collapse-title {
    display: none;
  }
  .amlocator-location-main .amlocator-location-attribute {
    width: 50%;
    margin-bottom: 10px;
  }
  .amlocator-location-main .amlocator-location-attribute:not(:first-of-type) {
    margin-top: 0;
  }
  .amlocator-location-main .amlocator-location-attribute:nth-of-type(odd) {
    float: left;
  }
  .amlocator-location-main .amlocator-location-attribute:nth-of-type(even) {
    float: right;
  }
  .amlocator-attributes-container {
    display: block;
  }
  .amlocator-popup-overlay .amlocator-review-popup {
    width: 30%;
    min-width: 330px;
  }
  .amlocator-popup-overlay .field.review-field-ratings .control {
    width: inherit;
  }
  .contract-selector {
    width: 600px;
  }
  .contract-selector__options {
    height: 450px;
  }
  .contract-selector__actions {
    position: absolute;
    bottom: 0;
    width: 100%;
  }
  .contract-selector__inner {
    position: absolute;
    top: 0;
    width: 100%;
  }
  .contract-selector .contract-selector__list.address-list,
  .contract-selector .contract-selector__list.contract-list {
    max-height: 160px;
  }
  .contract-information__tooltip-text {
    left: 14px;
    top: 20px;
  }
  .contract-top-header__tooltip-text {
    position: absolute;
    top: 20px;
    left: 14px;
    width: 278px;
  }
  .contract-top-header__tooltip-wrapper {
    position: relative;
  }
  .contract-top-header__tooltip-wrapper:hover .contract-top-header__tooltip-text {
    opacity: 1;
  }
  .modal-custom-home .modal-inner-wrap {
    width: 844px;
    height: 532px;
  }
  .modal-custom-home .modal-inner-wrap .popup-content .column {
    width: 50%;
  }
  .mp-sidebar .data.item.title {
    width: 50% !important;
    margin: 0 !important;
  }
  .mp-sidebar .data.item.title .data.switch {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .mp-sidebar .data.item.title .data.switch div {
    width: fit-content;
    margin: auto;
  }
  .mp-sidebar #tab-label-popular .data.switch {
    border-right: 0 !important;
  }
  .hdmx__contact-button {
    top: 50%;
  }
  .hdmx__contact-button.hdmx__contact-button-left {
    margin-top: 75px;
    transform-origin: top left;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    left: 0;
  }
  .hdmx__contact-button.hdmx__contact-button-right {
    margin-top: -150px;
    transform-origin: bottom right;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    right: 0;
  }
  .hdmx__contact-popup {
    position: fixed;
    top: 7rem;
    left: 50%;
  }
  .hdmx__contact-popup .hdmx__wrapper {
    width: 650px;
    left: -50%;
    overflow: auto;
    max-height: 100vh;
  }
  .hdmx__contact-popup .hdmx__wrapper .max-attachment-size {
    margin-top: 10px;
  }
  .hdmx__contact-form .fieldset .group-2 .field,
  .hdmx__contact-form .fieldset .group-3 .field {
    width: 100%;
  }
  .hdmx__contact-form .fieldset .group-3 {
    margin-bottom: 2%;
  }
  .block-category-event.block:last-child {
    margin-bottom: 30px;
    padding: 10px 0 30px;
  }
  .block-category-event .block-title {
    margin: 0;
  }
  .block-category-event .block-title strong {
    font-size: 2.4rem;
  }
  .block-category-event .ticker li {
    display: none;
    margin: 0 50px;
  }
  .block-category-event .ticker .value {
    font-size: 6rem;
  }
  .block-category-event .ticker .label {
    font-size: 1.4rem;
    text-transform: none;
  }
  .block-category-event .dates .date {
    font-size: 5rem;
  }
  .block-category-event .dates .start {
    padding-right: 50px;
  }
  .block-category-event .dates .start:after {
    font-size: 5rem;
    right: 10px;
  }
  .contact-index-index .column:not(.sidebar-additional) .form.contact {
    min-width: 600px;
  }
  .paypal-review .paypal-review-title {
    border-bottom: 1px solid #cccccc;
  }
  .paypal-review .block-content .box-order-shipping-address,
  .paypal-review .block-content .box-order-shipping-method,
  .paypal-review .block-content .box-order-shipping-method + .box-order-billing-address {
    box-sizing: border-box;
    float: left;
    width: 33%;
  }
  .paypal-review .block-content .box-order-shipping-address {
    padding: 0 5%;
    width: 34%;
  }
  .paypal-review .table-paypal-review-items .col.price,
  .paypal-review .table-paypal-review-items .col.qty {
    text-align: center;
  }
  .paypal-review .table-paypal-review-items .col.item {
    width: 60%;
  }
  .paypal-review .col.subtotal,
  .paypal-review .mark,
  .paypal-review .amount {
    text-align: right;
  }
  .paypal-review-discount {
    border-top: 1px solid #cccccc;
  }
  .paypal-review-discount .block {
    margin-bottom: 15px;
  }
  .paypal-review-discount .block.giftcard.active {
    padding-bottom: 40px;
  }
  .paypal-review-discount .block .title:after {
    display: inline;
    margin-left: 10px;
    position: static;
  }
  .paypal-review-discount .block .content {
    padding-bottom: 0;
  }
  .order-review-form .actions-toolbar > .primary {
    float: right;
  }
  .order-review-form .action.primary {
    margin-right: 0;
  }
  .block-cart-failed .secondary .action {
    margin: 0;
  }
  .block-cart-failed .actions.primary {
    float: right;
  }
  .bundle-actions .action.primary.customize {
    width: auto;
  }
  .bundle-options-container .legend.title {
    font-size: 40px;
  }
  .bundle-options-container .bundle-options-wrapper,
  .bundle-options-container .product-options-wrapper {
    float: left;
    width: 57%;
  }
  .bundle-options-container .block-bundle-summary {
    float: right;
    margin-top: 66px;
    padding: 10px 20px;
    position: relative;
    width: 40%;
  }
  .bundle-options-container .block-bundle-summary .price-box .price-wrapper,
  .bundle-options-container .block-bundle-summary .price-box .price-wrapper > .price {
    color: #575757;
    font-size: 36px;
    font-weight: 600;
    line-height: 36px;
  }
  .bundle-options-container .block-bundle-summary .price-container .weee {
    color: #575757;
  }
  .bundle-options-container .block-bundle-summary .price-container .weee .price {
    font-size: 1.2rem;
    font-weight: 700;
  }
  .bundle-options-container .block-bundle-summary .price-including-tax + .price-excluding-tax .price {
    font-size: 1.4rem;
    line-height: 16px;
  }
  .bundle-options-container .block-bundle-summary .box-tocart .action.primary {
    margin-right: 1%;
    width: auto;
  }
  .bundle-options-container .block-bundle-summary .product-addto-links {
    text-align: left;
  }
  .page-layout-2columns-left .bundle-options-container .bundle-options-wrapper,
  .page-layout-2columns-left .bundle-options-container .block-bundle-summary,
  .page-layout-2columns-right .bundle-options-container .bundle-options-wrapper,
  .page-layout-2columns-right .bundle-options-container .block-bundle-summary,
  .page-layout-3columns .bundle-options-container .bundle-options-wrapper,
  .page-layout-3columns .bundle-options-container .block-bundle-summary {
    width: 48%;
  }
  #warning-quantity-div {
    width: 480px;
    top: 114px;
    bottom: unset;
    right: -800px;
    border-radius: 14px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    padding-bottom: 15px;
  }
  #warning-quantity-div.show {
    bottom: unset;
    right: 0;
    transition: 2s;
  }
  #warning-quantity-div .required-info {
    max-width: 250px;
    margin: 0;
  }
  #warning-quantity-div .required-info strong {
    font-size: 18px;
    padding-top: 5px;
    padding-bottom: 15px;
  }
  #warning-quantity-div .required-info .warning-message {
    padding-top: 5px;
    font-size: 14px;
  }
  #warning-quantity-div .cart-info .icon-cart {
    justify-content: flex-end;
    display: flex;
    padding-top: 8px;
  }
  #warning-quantity-div .cart-info .icon-cart img {
    padding-left: 8px;
  }
  #warning-quantity-div .cart-info .actual-cart-price {
    font-size: 18px;
    font-weight: normal;
  }
  #warning-quantity-div .cart-info .benefict {
    font-size: 14px !important;
  }
  .img-zoom-lens {
    position: absolute;
    border: 1px solid #102134;
    /*set the size of the lens:*/
    width: 121px;
    height: 121px;
    border-radius: 4px;
  }
  .img-zoom-result {
    z-index: 999999;
    right: -300px;
    top: 0;
    bottom: 0;
    margin: auto;
    box-shadow: 0px 10px 32px -12px rgba(0, 0, 0, 0.14);
    background: white;
    border-radius: 16px;
    width: 270px;
    height: 250px;
    padding: 10px;
    position: absolute;
    display: none;
    pointer-events: none;
    background-repeat: no-repeat;
  }
  .catalog-category-view .page-main,
  .catalogsearch-result-index .page-main {
    max-width: unset;
    padding-inline: 36px;
  }
  .catalog-category-view .list-headings,
  .catalogsearch-result-index .list-headings {
    border-bottom: 1px solid #102134;
    padding-bottom: 10px;
  }
  .catalog-category-view .toolbar.toolbar-products,
  .catalogsearch-result-index .toolbar.toolbar-products {
    margin-left: 0;
  }
  .catalog-category-view .grid .product-item-info .origin-brand,
  .catalogsearch-result-index .grid .product-item-info .origin-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .catalog-category-view .grid .product-item-info .origin-brand .theme-product-label span,
  .catalogsearch-result-index .grid .product-item-info .origin-brand .theme-product-label span {
    padding: 6px 12px;
    font-size: 14px;
  }
  .catalog-category-view .products.list.items.product-items,
  .catalogsearch-result-index .products.list.items.product-items {
    padding-left: 0;
  }
  .catalog-category-view .product-items .product-item-info,
  .catalogsearch-result-index .product-items .product-item-info {
    padding: 48px 0;
    border-radius: 16px;
  }
  .catalog-category-view .product-items .product-item .product-image-container,
  .catalogsearch-result-index .product-items .product-item .product-image-container {
    width: 250px !important;
  }
  .catalog-category-view .product-items .product-item .product-image-container .product-image-wrapper .product-image-photo,
  .catalogsearch-result-index .product-items .product-item .product-image-container .product-image-wrapper .product-image-photo {
    overflow: hidden;
    width: 210px;
    height: 230px;
    object-fit: contain;
  }
  .catalog-category-view .product-items .product-item .product-image-container .product-image-wrapper .product-image-photo.loader,
  .catalogsearch-result-index .product-items .product-item .product-image-container .product-image-wrapper .product-image-photo.loader {
    border: 4px solid red;
  }
  .catalog-category-view .product-items .product-item .product-item-photo,
  .catalogsearch-result-index .product-items .product-item .product-item-photo {
    display: flex;
    align-items: center;
  }
  .catalog-category-view .columns .toolbar-top,
  .catalogsearch-result-index .columns .toolbar-top {
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 9;
    padding-top: 10px;
  }
  .catalog-category-view .columns .sidebar,
  .catalogsearch-result-index .columns .sidebar {
    position: sticky;
    top: 10px;
  }
  .catalog-category-view.not-logged-in .list.products-list .list-headings .col.col3,
  .catalogsearch-result-index.not-logged-in .list.products-list .list-headings .col.col3 {
    width: 44%;
  }
  .catalog-category-view.not-logged-in .list.products-list .product-item-details .col.col3,
  .catalogsearch-result-index.not-logged-in .list.products-list .product-item-details .col.col3 {
    width: 44%;
  }
  .catalog-category-view .product-item-inner,
  .catalogsearch-result-index .product-item-inner {
    gap: 32px;
  }
  .catalogsearch-result-index .breadcrumbs {
    margin-top: 115px !important;
    margin-bottom: 0 !important;
  }
  .page-products .columns {
    padding-top: 0;
    position: relative;
    z-index: 1;
  }
  .toolbar-amount {
    display: block;
    float: left;
    position: static;
  }
  .products.wrapper ~ .toolbar .pages {
    float: left;
    margin-bottom: 0;
  }
  .modes {
    display: inline-block;
    float: left;
    margin-right: 20px;
  }
  .products.wrapper ~ .toolbar .modes {
    display: none;
  }
  .modes-mode {
    background-color: #f0f0f0;
    box-shadow: inset 0 1px 0 0 #ffffff, inset 0 -1px 0 0 rgba(204, 204, 204, 0.3);
    color: #5e5e5e;
    border: 1px solid #cccccc;
    border-right: 0;
    float: left;
    font-weight: 400;
    line-height: 1;
    padding: 7px 10px;
    text-align: center;
    display: inline-block;
    text-decoration: none;
  }
  .modes-label + .modes-mode {
    border-radius: 3px 0 0 3px;
  }
  .modes-mode:hover {
    color: #5e5e5e;
    background: #ebebeb;
  }
  .modes-mode:last-child {
    border-radius: 0 3px 3px 0;
    border-right: 1px solid #cccccc;
  }
  .modes-mode.active {
    box-shadow: inset 0 1px 0 0 rgba(204, 204, 204, 0.8), inset 0 -1px 0 0 rgba(204, 204, 204, 0.3);
    background: #dedede;
    color: #9e9e9e;
  }
  .modes-mode > span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .modes-mode:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    line-height: inherit;
    color: #7d7d7d;
    content: '\e60d';
    font-family: 'luma-icons';
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .modes-mode:hover:before {
    color: #7d7d7d;
  }
  .page-products .sorter {
    position: static;
  }
  .mode-list:before {
    content: '\e60b';
  }
  .products.wrapper ~ .toolbar .limiter {
    display: block;
    float: right;
  }
  .product-info-main .page-title-wrapper h1 {
    margin-bottom: 15px;
  }
  .product-info-main .product-add-form {
    padding-top: 20px;
  }
  .box-tocart .action.tocart {
    margin-bottom: 0;
    margin-right: 1%;
    width: 49%;
  }
  .product-social-links {
    text-align: left;
  }
  .product-options-bottom .price-box .price-container,
  .product-info-price .price-box .price-container {
    font-size: 21px;
  }
  .product-options-bottom .price-box .price-container .price,
  .product-info-price .price-box .price-container .price {
    font-size: 36px;
    line-height: 36px;
  }
  .product-options-bottom .price-box .price-including-tax + .price-excluding-tax .price,
  .product-info-price .price-box .price-including-tax + .price-excluding-tax .price {
    font-size: 1.4rem;
    line-height: 16px;
  }
  .product-info-main {
    float: right;
  }
  .product.media {
    float: left;
    margin-bottom: 25px;
  }
  .page-layout-1column .product-info-main {
    width: 40%;
  }
  .page-layout-1column .product.media {
    width: 57%;
  }
  .page-layout-2columns-left .product-info-main,
  .page-layout-2columns-right .product-info-main,
  .page-layout-3columns .product-info-main {
    width: 48%;
  }
  .page-layout-2columns-left .product.media,
  .page-layout-2columns-right .product.media,
  .page-layout-3columns .product.media {
    width: 50%;
  }
  .product-add-form .product-options-wrapper .field .control {
    width: 80%;
  }
  .sidebar .product-items .product-item-info .product-item-photo {
    float: left;
    left: auto;
    margin: 0 10px 10px 0;
    position: relative;
    top: auto;
  }
  .sidebar .product-items .product-item-details {
    margin: 0;
  }
  .sidebar .product-items .product-item-actions {
    clear: left;
  }
  .catalog-category-view.page-layout-1column .column.main {
    min-height: inherit;
  }
  .compare.wrapper {
    float: right;
    margin: 0;
    padding: 0;
    list-style: none none;
  }
  .compare.wrapper .action.compare {
    line-height: 40px;
    color: #333333;
    text-decoration: none;
  }
  .compare.wrapper .action.compare:visited {
    color: #333333;
    text-decoration: none;
  }
  .compare.wrapper .action.compare:hover {
    color: #333333;
    text-decoration: underline;
  }
  .compare.wrapper .action.compare:active {
    color: #333333;
    text-decoration: underline;
  }
  .compare.wrapper .counter.qty {
    color: #7d7d7d;
  }
  .compare.wrapper .counter.qty:before {
    content: '(';
  }
  .compare.wrapper .counter.qty:after {
    content: ')';
  }
  .box-tocart .paypal:first-of-type {
    margin-top: 13px;
  }
  .block-search {
    float: right;
    padding-left: 15px;
    position: relative;
    width: 250px;
    z-index: 4;
  }
  .block-search .control {
    border-top: 0;
    margin: 0;
    padding: 0;
  }
  .block-search input {
    margin: 0;
    padding-right: 35px;
    position: static;
  }
  .block-search input::-webkit-input-placeholder {
    color: #575757;
  }
  .block-search input:-moz-placeholder {
    color: #575757;
  }
  .block-search input::-moz-placeholder {
    color: #575757;
  }
  .block-search input:-ms-input-placeholder {
    color: #575757;
  }
  .block-search .action.search {
    display: inline-block;
    background-image: none;
    background: none;
    -moz-box-sizing: content-box;
    border: 0;
    box-shadow: none;
    line-height: inherit;
    margin: 0;
    padding: 0;
    text-decoration: none;
    text-shadow: none;
    font-weight: 400;
    position: absolute;
    right: 10px;
    top: 0;
    z-index: 1;
  }
  .block-search .action.search > span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .block-search .action.search:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    line-height: 32px;
    color: #757575;
    content: '\e615';
    font-family: 'luma-icons';
    margin: 0;
    vertical-align: top;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .block-search .action.search:hover:before {
    color: #333333;
  }
  .block-search .action.search:active:before {
    color: inherit;
  }
  .block-search .action.search:focus,
  .block-search .action.search:active {
    background: none;
    border: none;
  }
  .block-search .action.search:hover {
    background: none;
    border: none;
  }
  .block-search .action.search.disabled,
  .block-search .action.search[disabled],
  fieldset[disabled] .block-search .action.search {
    pointer-events: none;
    opacity: 0.5;
  }
  .block-search .action.search:focus:before {
    color: #333333;
  }
  .search-autocomplete {
    margin-top: 0;
  }
  .checkout-cart-index .page-main {
    padding-left: 15px;
    padding-right: 15px;
  }
  .cart-container .form-cart .actions.main {
    text-align: right;
  }
  .cart-container .widget {
    float: left;
  }
  .cart-container .widget.block {
    margin-bottom: 20px;
  }
  .cart-summary {
    width: 25%;
    float: right;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
    padding: 1px 20px 25px;
    position: relative;
  }
  .cart-summary > .title {
    display: block;
  }
  .cart-summary .fieldset .actions-toolbar {
    margin-left: 0;
  }
  .cart-summary .fieldset .actions-toolbar > .secondary {
    float: none;
  }
  .cart-summary .block > .title {
    padding-left: 0;
  }
  .cart-summary .block > .title:after {
    right: 3px;
  }
  .cart-summary .block .fieldset .field {
    margin: 0 0 20px;
    margin: 0 0 10px;
  }
  .cart-summary .block .fieldset .field:not(.choice) > .label {
    box-sizing: content-box;
    float: none;
    width: auto;
    text-align: left;
    padding: 0;
  }
  .cart-summary .block .fieldset .field:not(.choice) > .control {
    float: none;
    width: auto;
  }
  .cart-summary .block .fieldset .field > .label {
    margin: 0 0 8px;
    display: inline-block;
  }
  .cart-summary .block .fieldset .field.choice:before,
  .cart-summary .block .fieldset .field.no-label:before {
    display: none;
  }
  .cart-summary .checkout-methods-items {
    padding: 0;
  }
  .cart.table-wrapper .items {
    min-width: 100%;
    width: auto;
  }
  .cart.table-wrapper tbody td {
    padding-top: 20px;
  }
  .cart.table-wrapper .item .col.item {
    padding: 20px 8px 20px 0;
  }
  .cart.table-wrapper .item-actions td {
    padding: 0;
  }
  .cart.table-wrapper .product-item-photo {
    display: table-cell;
    max-width: 100%;
    padding-right: 20px;
    position: static;
    vertical-align: top;
    width: 1%;
  }
  .cart.table-wrapper .product-item-details {
    display: table-cell;
    padding-bottom: 35px;
    vertical-align: top;
    white-space: normal;
    width: 99%;
  }
  .cart-products-toolbar {
    margin: 2px 0 0;
  }
  .cart-products-toolbar .toolbar-amount {
    line-height: 30px;
    margin: 0;
  }
  .cart-products-toolbar .pages {
    float: right;
  }
  .cart-products-toolbar .pages .item:last-child {
    margin-right: 0;
  }
  .cart.table-wrapper .cart-products-toolbar + .cart thead tr th.col {
    padding-bottom: 10px;
    padding-top: 10px;
  }
  .cart.table-wrapper .cart + .cart-products-toolbar {
    margin-top: 25px;
  }
  .cart-discount {
    width: 75%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
    border: 0;
    box-sizing: border-box;
    padding-right: 4%;
  }
  .cart-discount .block .title:after {
    display: inline;
    margin-left: 10px;
    position: static;
  }
  .cart-discount .block.discount {
    width: auto;
  }
  .cart-discount .block .actions-toolbar {
    width: auto;
  }
  .block.crosssell {
    width: 75%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
    padding: 0 4% 0 0;
  }
  .block.crosssell .products-grid .product-item {
    width: 25%;
  }
  .minicart-wrapper {
    margin-left: 13px;
  }
  .minicart-wrapper .block-minicart {
    width: 390px;
  }
  .minilist .action.delete:before,
  .minicart-wrapper .action.edit:before {
    font-size: 16px;
    line-height: inherit;
  }
  .opc-wrapper {
    width: 66.66666667%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
    padding-right: 30px;
  }
  .checkout-onepage-success .print {
    display: block;
    float: right;
    margin: 23px 0 0;
  }
  .opc-progress-bar {
    margin: 0 0 20px;
    counter-reset: i;
    display: block;
    font-size: 0;
  }
  .opc-progress-bar-item {
    margin: 0 0 10px;
    width: 185px;
    display: inline-block;
    position: relative;
    text-align: center;
    vertical-align: top;
  }
  .opc-progress-bar-item:before {
    background: #e4e4e4;
    border: 1px solid #cccccc;
    top: 19px;
    transition: background 0.3s;
    content: '';
    height: 7px;
    left: 0;
    position: absolute;
    width: 100%;
  }
  .opc-progress-bar-item:first-child:before {
    border-radius: 6px 0 0 6px;
  }
  .opc-progress-bar-item:last-child:before {
    border-radius: 0 6px 6px 0;
  }
  .opc-progress-bar-item > span {
    display: inline-block;
    padding-top: 45px;
    width: 100%;
    word-wrap: break-word;
    color: #808080;
    font-weight: 300;
    font-size: 1.8rem;
  }
  .opc-progress-bar-item > span:before,
  .opc-progress-bar-item > span:after {
    background: #e4e4e4;
    border: 1px solid #cccccc;
    height: 38px;
    margin-left: -19px;
    transition: background 0.3s;
    width: 38px;
    border-radius: 50%;
    content: '';
    left: 50%;
    position: absolute;
    top: 0;
  }
  .opc-progress-bar-item > span:after {
    background: #ffffff;
    height: 26px;
    margin-left: -13px;
    top: 6px;
    width: 26px;
    content: counter(i);
    counter-increment: i;
    color: #333333;
    font-weight: 600;
    font-size: 1.8rem;
  }
  .opc-progress-bar-item._complete {
    cursor: pointer;
  }
  .opc-progress-bar-item._complete:hover:before {
    background: #d7d7d7;
  }
  .opc-progress-bar-item._complete:hover > span:before {
    background: #d7d7d7;
  }
  .opc-progress-bar-item._complete > span {
    color: #0d6edf;
  }
  .opc-progress-bar-item._complete > span:after {
    font-family: 'luma-icons';
    content: '\e610';
  }
  .opc-progress-bar-item._active:before {
    background: #222222;
    border-color: #222222;
  }
  .opc-progress-bar-item._active > span {
    color: #333333;
    font-weight: 600;
  }
  .opc-progress-bar-item._active > span:before {
    background: #222222;
    border-color: #222222;
  }
  .opc-progress-bar-item._active > span:after {
    border-color: #222222;
    content: '\e610';
    font-family: 'luma-icons';
  }
  .checkout-index-index .modal-popup .form-shipping-address {
    max-width: 500px;
  }
  .checkout-index-index .modal-popup .modal-footer .action-save-address {
    float: right;
    margin: 0 0 0 20px;
  }
  .checkout-index-index .modal-popup .modal-inner-wrap {
    margin-left: -400px;
    width: 800px;
    left: 50%;
  }
  .checkout-shipping-method .actions-toolbar > .primary {
    float: right;
  }
  .checkout-shipping-method .actions-toolbar .action.primary {
    margin: 0;
  }
  .checkout-shipping-method .actions-toolbar .action.primary.button {
    margin-top: 2px;
  }
  .opc-wrapper .form-login,
  .opc-wrapper .form-shipping-address {
    max-width: 500px;
  }
  .opc-wrapper .form-login {
    border-bottom: 1px solid #cccccc;
    padding-bottom: 20px;
  }
  .table-checkout-shipping-method {
    width: auto;
  }
  .opc-wrapper .shipping-address-item {
    width: 33.33333333%;
  }
  .opc-wrapper .shipping-address-item:before {
    background: #cccccc;
    height: calc(100% - 20px);
    content: '';
    left: 0;
    position: absolute;
    top: 0;
    width: 1px;
  }
  .opc-wrapper .shipping-address-item:nth-child(3n + 1):before {
    display: none;
  }
  .opc-wrapper .shipping-address-item.selected-item:before {
    display: none;
  }
  .opc-wrapper .shipping-address-item.selected-item + .shipping-address-item:before {
    display: none;
  }
  .table-checkout-shipping-method {
    min-width: 500px;
  }
  .opc-sidebar {
    margin: 46px 0 20px;
    width: 16.66666667%;
    float: right;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .opc-summary-wrapper .modal-header .action-close {
    display: none;
  }
  .authentication-dropdown {
    background-color: #ffffff;
    border: 1px solid #aeaeae;
    -webkit-transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
    -webkit-transition: -webkit-transform linear 0.1s, visibility 0s linear 0.1s;
    position: absolute;
    text-align: left;
    top: 100%;
    transform: scale(1, 0);
    transform-origin: 0 0;
    transition: transform linear .1s, visibility 0s linear .1s;
    visibility: hidden;
    width: 100%;
  }
  .authentication-dropdown._show {
    z-index: 100;
    -webkit-transform: scale(1, 1);
    -webkit-transition: -webkit-transform linear 0.1s, visibility 0s linear 0s;
    transform: scale(1, 1);
    transition: transform linear .1s, visibility 0s linear 0s;
    visibility: visible;
  }
  .authentication-wrapper {
    width: 16.66666667%;
    text-align: right;
  }
  .block-authentication .block-title {
    font-size: 2.6rem;
    border-bottom: 0;
    margin-bottom: 25px;
  }
  .block-authentication .actions-toolbar > .primary {
    display: inline;
    float: right;
    margin-right: 0;
  }
  .block-authentication .actions-toolbar > .primary .action {
    margin-right: 0;
  }
  .block-authentication .actions-toolbar > .secondary {
    float: left;
    margin-right: 2rem;
    padding-top: 1rem;
  }
  .popup-authentication .modal-inner-wrap {
    min-width: 1024px;
    width: 60%;
  }
  .popup-authentication .block-authentication {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    border-top: 1px solid #c1c1c1;
  }
  .popup-authentication .block[class],
  .popup-authentication .form-login,
  .popup-authentication .fieldset,
  .popup-authentication .block-content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-grow: 1;
    flex-grow: 1;
  }
  .popup-authentication .block[class] {
    box-sizing: border-box;
    float: left;
    padding: 10px 30px 0 0;
    width: 50%;
  }
  .popup-authentication .block[class] + .block {
    border-left: 1px solid #c1c1c1;
    border-top: 0;
    margin: 0;
    padding: 10px 0 0 40px;
  }
  .popup-authentication .block[class] + .block:before {
    left: 0;
    top: 50%;
  }
  .popup-authentication .actions-toolbar {
    margin-bottom: 0;
    margin-top: auto;
  }
  .checkout-payment-method .actions-toolbar .primary {
    float: right;
    margin: 0;
  }
  .checkout-payment-method .fieldset > .field-select-billing > .control {
    float: none;
    width: 100%;
  }
  .checkout-billing-address .action-update {
    float: right;
  }
  .checkout-billing-address .actions-toolbar .action-cancel {
    margin: 6px 20px 0 0;
  }
  .checkout-payment-method .payment-option-title {
    padding-left: 22px;
  }
  .checkout-payment-method .payment-option-content .payment-option-inner + .actions-toolbar {
    margin-left: 0;
  }
  .login-container .block.login .actions-toolbar > .primary {
    margin-bottom: 0;
    margin-right: 30px;
  }
  .login-container .block.login .actions-toolbar > .secondary {
    float: left;
  }
  .login-container .fieldset > .field > .control {
    width: 80%;
  }
  .form-create-account .fieldset-fullname .fields {
    display: table;
    width: 100%;
  }
  .form-create-account .fieldset-fullname .fields .field {
    display: table-cell;
  }
  .form-create-account .fieldset-fullname .fields .field + .field {
    padding-left: 10px;
  }
  .form-create-account .fieldset-fullname .field-name-prefix,
  .form-create-account .fieldset-fullname .field-name-suffix {
    width: 50px;
  }
  .form.password.reset,
  .form.send.confirmation,
  .form.password.forget,
  .form.create.account,
  .form.search.advanced,
  .form.form-orders-search {
    min-width: 600px;
    width: 50%;
  }
  .account.page-layout-2columns-left .sidebar-main,
  .account.page-layout-2columns-left .sidebar-additional {
    width: 22.3%;
  }
  .account.page-layout-2columns-left .column.main {
    width: 77.7%;
  }
  .account.page-layout-2columns-left .sidebar-main .block {
    margin-bottom: 0;
  }
  .account .data.table {
    margin-bottom: 0;
  }
  .account .data.table .col.actions {
    white-space: nowrap;
  }
  .block-addresses-list .items.addresses {
    font-size: 0;
  }
  .block-addresses-list .items.addresses > .item {
    display: inline-block;
    font-size: 14px;
    margin-bottom: 20px;
    vertical-align: top;
    width: 48%;
  }
  .block-addresses-list .items.addresses > .item:nth-last-child(1),
  .block-addresses-list .items.addresses > .item:nth-last-child(2) {
    margin-bottom: 0;
  }
  .block-addresses-list .items.addresses > .item:nth-child(even) {
    margin-left: 4%;
  }
  .form-edit-account .fieldset .fieldset {
    margin-bottom: 20px;
    width: 100%;
  }
  .control.captcha-image .captcha-img {
    margin: 0 10px 10px 0;
  }
  .storecredit .block-balance-history {
    width: 100%;
  }
  .table-balance-history .col {
    width: 25%;
  }
  .page-product-downloadable .product-options-wrapper {
    float: left;
    width: 55%;
  }
  .page-product-downloadable .product-options-bottom {
    float: right;
    width: 40%;
  }
  .page-product-giftcard .product-info-main .price-box .price-container.price-final {
    font-size: 21px;
  }
  .page-product-giftcard .product-info-main .price-box .price-container.price-final .price {
    font-size: 36px;
    line-height: 36px;
  }
  .page-product-giftcard .product-info-main .product-info-stock-sku {
    padding-bottom: 0;
  }
  .page-product-giftcard .product-info-main .product-reviews-summary {
    float: none;
  }
  .page-product-giftcard .product-add-form {
    margin-top: -20px;
  }
  .page-product-giftcard .product-add-form .field:not(.text) {
    margin: 0 0 20px;
    padding: 0 12px 0 0;
    box-sizing: border-box;
    display: inline-block;
    width: 50%;
    vertical-align: top;
  }
  .page-product-giftcard .product-add-form .field:not(.text) > .label {
    margin: 0 0 8px;
    display: inline-block;
  }
  .page-product-giftcard .product-add-form .field:not(.text):last-child {
    margin-bottom: 0;
  }
  .page-product-giftcard .product-add-form .field:not(.text) + .fieldset {
    clear: both;
  }
  .page-product-giftcard .product-add-form .field:not(.text) > .label {
    font-weight: 600;
  }
  .page-product-giftcard .product-add-form .field:not(.text) > .label + br {
    display: none;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .choice input {
    vertical-align: top;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .fields.group:before,
  .page-product-giftcard .product-add-form .field:not(.text) .fields.group:after {
    content: '';
    display: table;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .fields.group:after {
    clear: both;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .fields.group .field {
    box-sizing: border-box;
    float: left;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .fields.group.group-2 .field {
    width: 50% !important;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .fields.group.group-3 .field {
    width: 33.3% !important;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .fields.group.group-4 .field {
    width: 25% !important;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .fields.group.group-5 .field {
    width: 20% !important;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .addon {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding: 0;
    width: 100%;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .addon textarea,
  .page-product-giftcard .product-add-form .field:not(.text) .addon select,
  .page-product-giftcard .product-add-form .field:not(.text) .addon input {
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    display: inline-block;
    margin: 0;
    width: auto;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .addon .addbefore,
  .page-product-giftcard .product-add-form .field:not(.text) .addon .addafter {
    background: #ffffff;
    background-clip: padding-box;
    border: 1px solid #c9c5ca;
    border-radius: 1px;
    color: #444444;
    font-family: inherit;
    font-size: 12px;
    height: 40px;
    line-height: 1.42857143;
    padding: 0 18px;
    vertical-align: baseline;
    width: 100%;
    box-sizing: border-box;
    -ms-flex-order: 3;
    -webkit-order: 3;
    order: 3;
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
    width: auto;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .addon .addbefore:disabled,
  .page-product-giftcard .product-add-form .field:not(.text) .addon .addafter:disabled {
    opacity: 0.5;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .addon .addbefore::-moz-placeholder,
  .page-product-giftcard .product-add-form .field:not(.text) .addon .addafter::-moz-placeholder {
    color: #575757;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .addon .addbefore::-webkit-input-placeholder,
  .page-product-giftcard .product-add-form .field:not(.text) .addon .addafter::-webkit-input-placeholder {
    color: #575757;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .addon .addbefore:-ms-input-placeholder,
  .page-product-giftcard .product-add-form .field:not(.text) .addon .addafter:-ms-input-placeholder {
    color: #575757;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .addon .addbefore {
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .additional {
    margin-top: 10px;
  }
  .page-product-giftcard .product-add-form .field:not(.text).required > .label:after,
  .page-product-giftcard .product-add-form .field:not(.text)._required > .label:after {
    content: '*';
    color: #e02b27;
    font-size: 1.6rem;
    margin: 0 0 0 5px;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .note {
    font-size: 1.6rem;
    margin: 3px 0 0;
    padding: 0;
    display: inline-block;
    text-decoration: none;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .note:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 32px;
    line-height: 16px;
    font-family: 'luma-icons';
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .page-product-giftcard .product-add-form .field:not(.text):nth-child(odd) {
    padding-right: 25px;
  }
  .page-product-giftcard .product-add-form .field:not(.text):nth-child(even) {
    padding-right: 0;
  }
  .page-product-giftcard .product-add-form .product-options-wrapper .field:not(.date) > .control {
    width: auto;
  }
  .gift-options {
    position: relative;
    z-index: 1;
  }
  .gift-options .actions-toolbar {
    clear: both;
    padding: 0;
    position: static;
  }
  .gift-options .actions-toolbar .secondary {
    float: right;
  }
  .gift-options .actions-toolbar .secondary .action {
    float: right;
    margin-left: 20px;
    margin-right: 0;
  }
  .gift-options .actions-toolbar .secondary .action-cancel {
    display: block;
    float: left;
    margin-top: 6px;
  }
  .gift-options .actions-toolbar:nth-child(3):before {
    border-left: 1px solid #c1c1c1;
    bottom: 5rem;
    content: '';
    display: block;
    left: 50%;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 0;
  }
  .gift-options-title {
    font-weight: 300;
    font-size: 1.8rem;
  }
  .gift-item-block .title {
    font-size: 1.6rem;
    padding: 20px 0;
  }
  .item-gift td {
    padding-left: 0;
    padding-right: 0;
  }
  .cart.table-wrapper .gift-options .actions-toolbar {
    clear: both;
    padding: 0;
    position: static;
  }
  .cart .action-gift {
    float: left;
  }
  .cart-container .cart-gift-item {
    margin-bottom: 20px;
  }
  .cart-container .cart-gift-item .gift-options,
  .cart-container .cart-gift-item .gift-summary {
    padding-bottom: 20px;
  }
  .form-giftregistry-share .fieldset .field,
  .form-giftregistry-edit .fieldset .field {
    width: 45%;
  }
  .form-giftregistry-edit .fieldset.shipping_address .fieldset {
    margin-top: 20px;
  }
  .table-giftregistry .col.create {
    white-space: nowrap;
  }
  .table-giftregistry .col.message {
    width: 40%;
  }
  .table-giftregistry .col.actions {
    width: 30%;
  }
  .table-giftregistry-items .col.note {
    width: 30%;
  }
  .account .data.table.table-giftregistry-items > thead > tr > th,
  .account .data.table.table-giftregistry-items > tbody > tr > th,
  .account .data.table.table-giftregistry-items > tfoot > tr > th,
  .account .data.table.table-giftregistry-items > thead > tr > td,
  .account .data.table.table-giftregistry-items > tbody > tr > td,
  .account .data.table.table-giftregistry-items > tfoot > tr > td {
    border-top: 1px solid #cccccc;
  }
  .account .data.table.table-giftregistry-items > caption + thead > tr:first-child > th,
  .account .data.table.table-giftregistry-items > colgroup + thead > tr:first-child > th,
  .account .data.table.table-giftregistry-items > thead:first-child > tr:first-child > th,
  .account .data.table.table-giftregistry-items > caption + thead > tr:first-child > td,
  .account .data.table.table-giftregistry-items > colgroup + thead > tr:first-child > td,
  .account .data.table.table-giftregistry-items > thead:first-child > tr:first-child > td {
    border-top: 0;
  }
  .account .data.table.table-giftregistry-items > tbody + tbody {
    border-top: 1px solid #cccccc;
  }
  .account .data.table.table-giftregistry-items th {
    border-bottom: 0;
  }
  .account .data.table.table-giftregistry-items > tbody > tr:nth-child(even) > td,
  .account .data.table.table-giftregistry-items > tbody > tr:nth-child(even) > th {
    background: none;
  }
  .form-giftregistry-search .fieldset {
    margin-bottom: 29px;
  }
  .form-giftregistry-search .fieldset .field.name,
  .form-giftregistry-search .fieldset .field.lastname {
    padding: 0 12px 0 0;
    box-sizing: border-box;
    display: inline-block;
    width: 50%;
    vertical-align: top;
    margin-bottom: auto;
  }
  .form-giftregistry-search .fieldset .field.name + .fieldset,
  .form-giftregistry-search .fieldset .field.lastname + .fieldset {
    clear: both;
  }
  .form-giftregistry-search .fieldset .field.lastname {
    padding: 0;
  }
  .block-giftregistry-shared-items .item {
    border-bottom: 1px solid #cccccc;
    border-top: 0;
  }
  .block-giftregistry-shared-items .product-item-photo {
    display: table-cell;
    max-width: 100%;
    padding: 0 20px 0 0;
    vertical-align: top;
    width: 1%;
  }
  .block-giftregistry-shared-items .product-item-details {
    display: table-cell;
    vertical-align: top;
    width: 99%;
    word-break: normal;
  }
  .block-giftregistry-shared-items .col.product {
    width: 48%;
  }
  .block-giftregistry-shared-items .col:not(.product) {
    text-align: center;
  }
  .block-giftregistry-shared-items .col.price {
    padding-top: 17px;
  }
  .block-giftregistry-shared-items .input-text.qty {
    margin-top: -4px;
  }
  .gift-options-cart-item .gift-wrapping,
  .cart-gift-item .gift-wrapping {
    box-sizing: border-box;
    float: left;
    padding-right: 20px;
    width: 50%;
  }
  .gift-options-cart-item .gift-wrapping + .gift-message,
  .cart-gift-item .gift-wrapping + .gift-message {
    border-left: 1px solid #c1c1c1;
    box-sizing: border-box;
    float: left;
    padding-left: 4.5rem;
    width: 50%;
  }
  .gift-options-cart-item .gift-summary .regular-price,
  .cart-gift-item .gift-summary .regular-price {
    white-space: nowrap;
  }
  .gift-options-cart-item .gift-wrapping-name,
  .cart-gift-item .gift-wrapping-name {
    padding-right: 20px;
  }
  .order-options .gift-wrapping,
  .table-order-review .gift-wrapping {
    max-width: 50%;
  }
  .page-product-grouped .product-info-price {
    float: none;
  }
  .page-product-grouped .minimal-price {
    margin-top: -8px;
  }
  .box-tocart .action.instant-purchase {
    margin-bottom: 0;
    margin-right: 1%;
    width: 49%;
  }
  .table-invitations .col {
    width: 50%;
  }
  .filter.block {
    margin-bottom: 40px;
  }
  .filter-title {
    display: none;
  }
  .filter-content .item {
    margin: 10px 0;
  }
  .filter-actions {
    margin-bottom: 30px;
  }
  .filter.active .filter-options,
  .filter-options {
    background: transparent;
    clear: both;
    display: block;
    overflow: initial;
    position: static;
  }
  .filter-subtitle {
    display: block;
    position: static;
  }
  .page-layout-1column .toolbar-products {
    position: absolute;
    top: 0;
    width: 100%;
  }
  .page-layout-1column .products ~ .toolbar-products {
    position: static;
  }
  .page-layout-1column.page-with-filter .column.main {
    padding-top: 45px;
    position: relative;
    z-index: 1;
  }
  .page-layout-1column .filter.block {
    border-top: 1px solid #cccccc;
  }
  .page-layout-1column .filter-content {
    margin-top: 10px;
  }
  .page-layout-1column .filter-subtitle {
    display: none;
  }
  .page-layout-1column .filter-options-item {
    border: 0;
    display: inline-block;
    margin-right: 25px;
    position: relative;
  }
  .page-layout-1column .filter-options-item.active {
    z-index: 2;
  }
  .page-layout-1column .filter-options-item.active .filter-options-content {
    visibility: visible;
  }
  .page-layout-1column .filter-options-item.active:hover {
    z-index: 3;
  }
  .page-layout-1column .filter-options-item.active:after,
  .page-layout-1column .filter-options-item.active:before {
    border: 8px solid transparent;
    height: 0;
    width: 0;
    border-bottom-color: #000000;
    bottom: -1px;
    content: '';
    display: block;
    left: 5px;
    position: absolute;
    z-index: 3;
  }
  .page-layout-1column .filter-options-item.active:after {
    border-bottom-color: #ffffff;
    margin-top: 2px;
    z-index: 4;
  }
  .page-layout-1column .filter-options-title {
    padding: 0 20px 0 0;
  }
  .page-layout-1column .filter-options-title:after {
    right: 2px;
    top: 3px;
    z-index: 3;
  }
  .page-layout-1column .filter-options-content {
    background: #ffffff;
    -webkit-box-shadow: 0 3px 5px 0 rgba(50, 50, 50, 0.75);
    -moz-box-shadow: 0 3px 5px 0 rgba(50, 50, 50, 0.75);
    -ms-box-shadow: 0 3px 5px 0 rgba(50, 50, 50, 0.75);
    box-shadow: 0 3px 5px 0 rgba(50, 50, 50, 0.75);
    border: 1px solid #cccccc;
    padding: 5px 0;
    position: absolute;
    top: 100%;
    visibility: hidden;
    width: 180px;
    z-index: 2;
  }
  .page-layout-1column .filter-options-content .item {
    margin: 0;
    padding: 5px;
  }
  .page-layout-1column .filter-options-content .item a {
    margin-left: 0;
  }
  .page-layout-1column .filter-options-content .item:hover {
    background-color: #e8e8e8;
  }
  .page-layout-1column .filter-current {
    display: inline;
    line-height: 35px;
  }
  .page-layout-1column .filter-current-subtitle {
    color: #7d7d7d;
    display: inline;
    font-size: 14px;
    font-weight: normal;
    padding: 0;
  }
  .page-layout-1column .filter-current-subtitle:after {
    content: ':';
  }
  .page-layout-1column .filter-current .item,
  .page-layout-1column .filter-current .items {
    display: inline;
  }
  .page-layout-1column .filter-current .item {
    margin-right: 25px;
    white-space: nowrap;
  }
  .page-layout-1column .filter-current .action.remove {
    line-height: normal;
  }
  .page-layout-1column .filter-actions {
    display: inline;
    white-space: nowrap;
  }
  .page-layout-1column .filter-actions ~ .filter-options {
    margin-top: 25px;
  }
  .wishlist.window.popup {
    bottom: auto;
    top: 20%;
    left: 50%;
    margin-left: -212px;
    width: 380px;
    right: auto;
  }
  .block-wishlist-management {
    margin-bottom: 20px;
  }
  .block-wishlist-management .wishlist-select {
    border-bottom: 1px solid #e8e8e8;
    display: table;
    margin-bottom: 15px;
    width: 100%;
  }
  .block-wishlist-management .wishlist-select .wishlist-name {
    display: table-cell;
    margin-right: 10px;
    padding: 5px 10px 10px;
    vertical-align: top;
    white-space: nowrap;
    width: 5%;
  }
  .block-wishlist-management .wishlist-select-items {
    display: table-cell;
    padding-right: 160px;
    vertical-align: top;
  }
  .block-wishlist-management .wishlist-select-items .item {
    display: inline-block;
    margin-right: 10px;
    padding: 5px 10px 10px;
  }
  .block-wishlist-management .wishlist-select-items .item:last-child {
    margin-right: 0;
  }
  .block-wishlist-management .wishlist-select-items .current {
    border-bottom: 3px solid #222222;
    font-weight: 600;
  }
  .block-wishlist-management .wishlist-select .wishlist-name-current {
    display: none;
  }
  .block-wishlist-management .wishlist-add.item {
    position: absolute;
    right: 0;
    top: 0;
  }
  .block-wishlist-management .wishlist-title strong {
    font-size: 4rem;
  }
  .block-wishlist-management .wishlist-info {
    float: left;
  }
  .block-wishlist-management .wishlist-toolbar {
    float: right;
  }
  .block-wishlist-info-items .product-item-photo {
    margin-left: 0;
  }
  .products-grid.wishlist .product-item-checkbox {
    float: left;
  }
  .products-grid.wishlist .product-item-checkbox + .product-item-name {
    margin-left: 25px;
  }
  .block.newsletter {
    max-width: 44%;
    width: max-content;
  }
  .block.newsletter .field.newsletter {
    max-width: 220px;
  }
  .block.newsletter .form.subscribe > .field,
  .block.newsletter .form.subscribe > .actions {
    float: left;
  }
  .product-reviews-summary {
    margin-bottom: 15px;
  }
  .products.wrapper.list .product-reviews-summary {
    margin: 0;
  }
  .product-reviews-summary .reviews-actions {
    font-size: 14px;
    margin-top: 3px;
  }
  .form-create-return .fieldset .field {
    width: 45%;
  }
  .magento-rma-guest-returns .column.main .block.block-order-details-view .block-content:not(.widget) .box {
    clear: none;
    float: left;
    width: 25%;
  }
  .block-returns-tracking .block-title .action {
    margin: 0 0 0 30px;
  }
  .block-returns-tracking .block-title .actions-track {
    float: right;
    margin-top: 12px;
  }
  .order-links .item {
    float: left;
    margin: 0 -1px 0 0;
  }
  .order-links .item a {
    padding: 1px 20px;
  }
  .order-links .item strong {
    border-bottom: 0;
    margin-bottom: -1px;
    padding: 1px 20px 2px 20px;
  }
  .order-actions-toolbar .action.print {
    display: block;
    float: right;
  }
  .account .column.main .block.block-order-details-view .block-content:not(.widget) .box,
  [class^='sales-guest-'] .column.main .block.block-order-details-view .block-content:not(.widget) .box,
  .sales-guest-view .column.main .block.block-order-details-view .block-content:not(.widget) .box {
    clear: none;
    float: left;
    width: 25%;
  }
  .block-order-details-comments {
    margin: 0 0 60px;
  }
  .block-order-details-comments .comment-date {
    clear: left;
    float: left;
    margin-right: 50px;
    max-width: 90px;
  }
  .block-order-details-comments .comment-content {
    overflow: hidden;
  }
  .order-details-items {
    margin-top: -1px;
    padding: 25px;
  }
  .order-details-items .col.price {
    text-align: center;
  }
  .order-details-items .col.subtotal {
    text-align: right;
  }
  .order-details-items tbody td {
    padding-bottom: 20px;
    padding-top: 20px;
  }
  .order-details-items tfoot .amount,
  .order-details-items tfoot .mark {
    text-align: right;
  }
  .order-details-items.ordered .order-title {
    display: none;
  }
  .order-pager-wrapper .order-pager-wrapper-top {
    padding-left: 0;
    padding-right: 0;
  }
  .order-pager-wrapper .toolbar-amount {
    position: relative;
  }
  .order-pager-wrapper .pages {
    float: right;
  }
  .table-order-items tbody .col.label,
  .table-order-items tbody .col.value {
    padding-left: 0;
  }
  .table-order-items.invoice .col.qty,
  .table-order-items.shipment .col.qty {
    text-align: center;
  }
  .table-order-items.creditmemo .col.qty,
  .table-order-items.creditmemo .col.discount,
  .table-order-items.creditmemo .col.subtotal {
    text-align: center;
  }
  .table-order-items.creditmemo .col.total {
    text-align: right;
  }
  .order-links .item {
    margin: 0 -1px 0 0;
  }
  .order-links .item a {
    padding: 1px 35px;
  }
  .order-links .item strong {
    padding: 1px 35px 2px 35px;
  }
  .form.send.friend {
    width: 60%;
  }
  .form.send.friend .fieldset .field {
    width: 45%;
  }
  .form.send.friend .fieldset .field.text {
    width: 90%;
  }
  .my-credit-cards .card-type img {
    display: block;
  }
  .products-grid.wishlist .product-item-info:hover .product-item-inner {
    display: block;
  }
  .products-grid.wishlist .product-item-tooltip {
    display: inline-block;
  }
  .products-grid.wishlist .product-item-actions {
    margin: 10px 0 0;
  }
  .products-grid.wishlist .product-item-actions > * {
    display: inline-block;
    margin-bottom: 7px;
    margin-top: 7px;
  }
  .products-grid.wishlist .product-item .fieldset {
    display: table;
  }
  .products-grid.wishlist .product-item .fieldset .field.qty,
  .products-grid.wishlist .product-item .fieldset .product-item-actions {
    display: table-cell;
    vertical-align: bottom;
  }
  .products-grid.wishlist .product-item .fieldset .field.qty {
    padding-right: 10px;
  }
  .products-grid.wishlist .product-item .box-tocart .actions-primary {
    margin: 0;
  }
  .products-grid.wishlist .product-item .box-tocart .stock {
    margin: 20px 0 0;
  }
  .products-grid.wishlist .product-item .tocart {
    width: auto;
  }
  .wishlist-index-index .product-item-info {
    width: auto;
  }
  .wishlist-index-index .product-item-inner {
    background: #ffffff;
    border: 1px solid #bbbbbb;
    box-shadow: 3px 4px 4px 0 rgba(0, 0, 0, 0.3);
    border-top: none;
    left: 0;
    margin: 9px 0 0 -1px;
    padding: 0 9px 9px;
    position: absolute;
    right: -1px;
    z-index: 2;
  }
  .wishlist-index-index .product-item-inner .comment-box {
    margin-top: -18px;
  }
  .wishlist-index-index .products-grid .product-items {
    margin: 0;
  }
  .wishlist-index-index .products-grid .product-item {
    margin-bottom: 20px;
    margin-left: calc((100% - 4 * 24.439%) / 3);
    padding: 0;
    width: 24.439%;
  }
  .wishlist-index-index .products-grid .product-item:nth-child(4n + 1) {
    margin-left: 0;
  }
  .customer-account-create .page-header {
    position: fixed;
    width: 100%;
  }
  .customer-account-create .page-main {
    margin-top: 100px;
  }
  .customer-account-create .page-main .top-header {
    padding: 40px;
    justify-content: space-between;
  }
  .customer-account-create .page-main .top-header .inner-cont {
    width: 60%;
  }
  .customer-account-create .page-main .top-header .inner-cont h2 {
    font-size: 40px;
    width: 30%;
  }
  .customer-account-create .page-main .top-header .progress-bar {
    height: auto;
    width: 30%;
  }
  .customer-account-create .page-main .top-header .progress-bar h3 {
    font-size: 24px;
  }
  .customer-account-create .page-main .top-header .progress-bar .progressbar {
    max-width: 250px;
  }
  .customer-account-create .page-main .top-header .progress-bar .progressbar li {
    font-size: 15px;
  }
  .customer-account-create .page-main .top-header .progress-bar .progressbar li span {
    width: 33px;
    height: 33px;
    margin: 0 auto 0 auto;
  }
  .customer-account-create .page-main .top-header .progress-bar .progressbar li:after {
    width: 100%;
    height: 3px;
    content: '';
    position: absolute;
    background: #b0c0dd;
    top: 14px;
    left: -50%;
    z-index: 1;
    transition: .3s;
  }
  .customer-account-create .page-main .top-header .progress-bar .progressbar li:first-child:after {
    content: none;
  }
  .customer-account-create .page-main .form.create.account {
    width: 100%;
    margin: 0 auto;
    max-width: 904px;
  }
  .customer-account-create .page-main .form.create.account .fieldset .legend span {
    font-size: 22px;
  }
  .customer-account-create .page-main .form.create.account .fieldset .field {
    width: 46%;
    float: left;
  }
  .customer-account-create .page-main .form.create.account .fieldset .field label {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    letter-spacing: .2px;
  }
  .customer-account-create .page-main .form.create.account .fieldset .field input {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: .2px;
  }
  .customer-account-create .page-main .form.create.account .fieldset .field.country label,
  .customer-account-create .page-main .form.create.account .fieldset .field.region label {
    font-size: 14px;
  }
  .customer-account-create .page-main .form.create.account .fieldset .field.country select,
  .customer-account-create .page-main .form.create.account .fieldset .field.region select {
    font-size: 16px;
    cursor: pointer;
  }
  .customer-account-create .page-main .form.create.account .fieldset .field:nth-child(odd) {
    float: right;
  }
  .customer-account-create .page-main .form.create.account a.btn.continue,
  .customer-account-create .page-main .form.create.account .actions-toolbar .submit {
    max-width: 200px;
  }
  .customer-account-create .page-main .form.create.account .step-three .fieldset {
    width: 46%;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
  }
  .customer-account-create .page-main .form.create.account .step-three .fieldset .field {
    width: 100%;
  }
  .customer-account-create .page-main .form.create.account .step-three .fieldset.create.info {
    float: left;
  }
  .customer-account-create .page-main .form.create.account .step-three .fieldset.create.account {
    float: right;
  }
  .customer-account-create .page-main .form.create.account .step-one .field.confirmation,
  .customer-account-create .page-main .form.create.account .step-two .field.confirmation {
    margin-bottom: 0;
  }
  .customer-account-create .page-main .form.create.account .step-one .div-to-continue,
  .customer-account-create .page-main .form.create.account .step-two .div-to-continue {
    display: flex;
    width: 100%;
    align-items: center;
    margin: 20px 0;
  }
  .customer-account-create .page-main .form.create.account .step-one .div-to-continue .button__register,
  .customer-account-create .page-main .form.create.account .step-two .div-to-continue .button__register {
    min-width: 200px;
    text-transform: uppercase;
  }
  .customer-account-create .page-main .form.create.account .step-three .fieldset.create.info {
    width: 100%;
    flex-wrap: wrap;
    flex-direction: row !important;
    justify-content: space-between;
  }
  .customer-account-create .page-main .form.create.account .step-three .fieldset.create.info .field.annual_production_in_hectoliters,
  .customer-account-create .page-main .form.create.account .step-three .fieldset.create.info .field.hectoliters_per_brew,
  .customer-account-create .page-main .form.create.account .step-three .fieldset.create.info .field.main_malt_type,
  .customer-account-create .page-main .form.create.account .step-three .fieldset.create.info .field.frequency_of_order,
  .customer-account-create .page-main .form.create.account .step-three .fieldset.create.info .field.annual_volume_in_hectoliters,
  .customer-account-create .page-main .form.create.account .step-three .fieldset.create.info .field.annual_base_malt_volume_in_kgs,
  .customer-account-create .page-main .form.create.account .step-three .fieldset.create.info .field.annual_speciality_malt_volume_in_kgs,
  .customer-account-create .page-main .form.create.account .step-three .fieldset.create.info .field.malt_volume_per_brew_in_kg {
    width: 45% !important;
  }
  .customer-account-create .page-main .form.create.account .step-three .actions-toolbar {
    display: flex;
    align-items: center;
    width: 100%;
  }
  .customer-account-create .page-main .form.create.account .step-three .actions-toolbar .primary {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-right: 0;
  }
  .customer-account-create .page-main .form.create.account .step-three .actions-toolbar .primary span {
    width: 100%;
  }
  .customer-account-create .page-main .form.create.account .step-two .fieldset {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    justify-content: space-between;
  }
  .customer-account-create .page-main .form.create.account .step-two .fieldset .field {
    width: calc(50% - 16px);
  }
  .customer-account-create .page-main .log-in {
    width: 100%;
    margin: 0 auto;
  }
  .customer-account-create .page-main .log-in p {
    margin-bottom: 0;
  }
  .cms-success-registration .top-header {
    padding: 40px;
    justify-content: space-between;
  }
  .cms-success-registration .top-header .inner-cont {
    width: 100%;
  }
  .cms-success-registration .top-header .inner-cont h2 {
    font-size: 40px;
    width: 100%;
  }
  .cms-success-registration .subtitle {
    max-width: 520px;
    margin-bottom: 60px;
  }
  html,
  body {
    height: 100%;
  }
  .navigation ul {
    padding: 0 8px;
  }
  .page-header {
    border: 0;
    margin-bottom: 0;
  }
  .page-header .panel.wrapper {
    border-bottom: 1px solid #e8e8e8;
    background-color: #6e716e;
  }
  .page-header .header.panel {
    padding-bottom: 10px;
    padding-top: 10px;
  }
  .page-header .switcher {
    float: right;
    margin-left: 15px;
    margin-right: -6px;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .page-main > .page-title-wrapper .page-title {
    display: inline-block;
  }
  .page-main > .page-title-wrapper .page-title + .action {
    float: right;
    margin-top: 20px;
  }
  .customer-welcome {
    display: inline-block;
    position: relative;
  }
  .customer-welcome:before,
  .customer-welcome:after {
    content: '';
    display: table;
  }
  .customer-welcome:after {
    clear: both;
  }
  .customer-welcome .action.switch {
    padding: 0;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
  }
  .customer-welcome .action.switch > span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .customer-welcome .action.switch:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 10px;
    line-height: 22px;
    color: inherit;
    content: '\e622';
    font-family: 'luma-icons';
    margin: 0;
    vertical-align: top;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .customer-welcome .action.switch:hover:after {
    color: inherit;
  }
  .customer-welcome .action.switch:active:after {
    color: inherit;
  }
  .customer-welcome .action.switch.active {
    display: inline-block;
    text-decoration: none;
  }
  .customer-welcome .action.switch.active > span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .customer-welcome .action.switch.active:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 10px;
    line-height: 22px;
    color: inherit;
    content: '\e621';
    font-family: 'luma-icons';
    margin: 0;
    vertical-align: top;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .customer-welcome .action.switch.active:hover:after {
    color: inherit;
  }
  .customer-welcome .action.switch.active:active:after {
    color: inherit;
  }
  .customer-welcome ul {
    margin: 0;
    padding: 0;
    list-style: none none;
    background: #ffffff;
    border: none;
    margin-top: 4px;
    min-width: 100%;
    z-index: 101;
    box-sizing: border-box;
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.15);
  }
  .customer-welcome ul li {
    margin: 0;
    padding: 0;
  }
  .customer-welcome ul li:hover {
    background: #e8e8e8;
    cursor: pointer;
  }
  .customer-welcome ul:before,
  .customer-welcome ul:after {
    border-bottom-style: solid;
    content: '';
    display: block;
    height: 0;
    position: absolute;
    width: 0;
  }
  .customer-welcome ul:before {
    border: 6px solid;
    border-color: transparent transparent #ffffff transparent;
    z-index: 99;
  }
  .customer-welcome ul:after {
    border: 7px solid;
    border-color: transparent transparent #bbbbbb transparent;
    z-index: 98;
  }
  .customer-welcome ul:before {
    right: 10px;
    top: -12px;
  }
  .customer-welcome ul:after {
    right: 9px;
    top: -14px;
  }
  .customer-welcome.active {
    overflow: visible;
  }
  .customer-welcome.active ul {
    display: block;
  }
  .customer-welcome li a {
    color: #333333;
    text-decoration: none;
    display: block;
    line-height: 1.4;
    padding: 8px;
  }
  .customer-welcome li a:visited {
    color: #333333;
    text-decoration: none;
  }
  .customer-welcome li a:hover {
    color: #333333;
    text-decoration: none;
  }
  .customer-welcome li a:active {
    color: #333333;
    text-decoration: none;
  }
  .customer-welcome .customer-name {
    cursor: pointer;
  }
  .customer-welcome .customer-menu {
    display: none;
  }
  .customer-welcome .action.switch {
    background-image: none;
    background: none;
    -moz-box-sizing: content-box;
    border: 0;
    box-shadow: none;
    line-height: inherit;
    margin: 0;
    padding: 0;
    text-decoration: none;
    text-shadow: none;
    font-weight: 400;
    color: #ffffff;
  }
  .customer-welcome .action.switch:focus,
  .customer-welcome .action.switch:active {
    background: none;
    border: none;
  }
  .customer-welcome .action.switch:hover {
    background: none;
    border: none;
  }
  .customer-welcome .action.switch.disabled,
  .customer-welcome .action.switch[disabled],
  fieldset[disabled] .customer-welcome .action.switch {
    pointer-events: none;
    opacity: 0.5;
  }
  .customer-welcome .header.links {
    min-width: 175px;
    z-index: 1000;
  }
  .customer-welcome.active .action.switch:after {
    content: '\e621';
  }
  .customer-welcome.active .customer-menu {
    display: block;
  }
  .customer-welcome .greet {
    display: none;
  }
  .header.panel > .header.links {
    margin: 0;
    padding: 0;
    list-style: none none;
    float: right;
    margin-left: auto;
  }
  .header.panel > .header.links > li {
    display: inline-block;
    vertical-align: top;
  }
  .header.panel > .header.links > li {
    margin: 0 0 0 15px;
  }
  .header.panel > .header.links > li.welcome,
  .header.panel > .header.links > li > a {
    display: inline-block;
    line-height: 1.4;
  }
  .header.panel > .header.links > li.welcome a {
    color: #ffffff;
    padding-left: 5px;
  }
  .header.panel > .header.links > .authorization-link:after {
    content: attr(data-label);
    display: inline-block;
    margin: 0 -5px 0 5px;
  }
  .header.panel > .header.links > .authorization-link:last-child:after {
    display: none;
  }
  .header.panel > .header.links > .customer-welcome + .authorization-link {
    display: none;
  }
  .header.content {
    padding: 30px 20px 0;
  }
  .logo {
    margin: -8px auto 25px 0;
  }
  .logo img {
    max-height: inherit;
  }
  .page-wrapper {
    margin: 0;
    position: relative;
    transition: margin 0.3s ease-out 0s;
  }
  .page-wrapper > .breadcrumbs,
  .page-wrapper > .top-container,
  .page-wrapper > .widget {
    box-sizing: border-box;
    width: 100%;
  }
  .page-footer {
    margin-top: auto;
  }
  .page-footer .switcher .options ul.dropdown {
    bottom: -10px;
    left: 100%;
    margin: 0 0 0 20px;
    top: auto;
  }
  .page-footer .switcher .options ul.dropdown:before,
  .page-footer .switcher .options ul.dropdown:after {
    bottom: 13px;
    left: auto;
    right: 100%;
    top: auto;
  }
  .page-footer .switcher .options ul.dropdown:before {
    border-color: transparent #ffffff transparent transparent;
  }
  .page-footer .switcher .options ul.dropdown:after {
    border-color: transparent #bbbbbb transparent transparent;
    margin: 0 0 -1px -1px;
  }
  .footer.content {
    border-top: none;
  }
  .footer.content .block {
    float: right;
  }
  .footer.content ul {
    padding-right: 50px;
  }
  .footer.content .switcher.store {
    display: block;
    margin: 0;
  }
  .footer.content .links {
    display: inline-block;
    padding-right: 50px;
    vertical-align: top;
  }
  .footer.content .links li {
    background: transparent;
    border: none;
    font-size: 14px;
    margin: 0 0 8px;
    padding: 0;
  }
  .footer.content .links a,
  .footer.content .links strong {
    display: inline;
  }
  .block.widget .products-grid .product-item {
    width: 33.33333333%;
  }
  .sidebar .block.widget .products-grid .product-item {
    margin-left: 0;
    width: 100%;
  }
  .sidebar .block.widget .products-grid .product-item .actions-secondary {
    display: block;
    padding: 10px 0;
  }
  .page-layout-1column .block.widget .products-grid .product-item {
    margin-left: 2%;
    width: calc((100% - 6%) / 4);
  }
  .page-layout-1column .block.widget .products-grid .product-item:nth-child(3n + 1) {
    margin-left: 2%;
  }
  .page-layout-1column .block.widget .products-grid .product-item:nth-child(4n + 1) {
    margin-left: 0;
  }
  .page-layout-3columns .block.widget .products-grid .product-item {
    width: 50%;
  }
  .sidebar .block.widget .pager .pages-item-next {
    padding: 0;
  }
  .sidebar .block.widget .pager .pages-item-next .action {
    margin: 0;
  }
  .block.widget .products-grid .product-item {
    width: 20%;
  }
  .page-layout-1column .block.widget .products-grid .product-item {
    margin-left: 2%;
    width: calc((100% - 8%) / 5);
  }
  .page-layout-1column .block.widget .products-grid .product-item:nth-child(4n + 1) {
    margin-left: 2%;
  }
  .page-layout-1column .block.widget .products-grid .product-item:nth-child(5n + 1) {
    margin-left: 0;
  }
  .page-layout-3columns .block.widget .products-grid .product-item {
    width: 25%;
  }
  .block.widget .products-grid .product-items {
    margin: 0;
  }
  .block.widget .products-grid .product-item {
    margin-left: calc((100% - 4 * 24.439%) / 3);
    padding: 0;
    width: 24.439%;
  }
  .block.widget .products-grid .product-item:nth-child(4n + 1) {
    margin-left: 0;
  }
  .checkout-index-index .column.main {
    margin-bottom: 50px;
  }
  .checkout-index-index .column.main #checkout .amcheckout-main-container {
    display: flex;
    gap: 140px;
  }
  .checkout-index-index .column.main #checkout .amcheckout-main-container .amcheckout-column.-main {
    width: auto;
    flex: 2;
  }
  .checkout-index-index .column.main #checkout .amcheckout-main-container .amcheckout-column.-main .amcheckout-step-container > li {
    padding: 24px;
  }
  .checkout-index-index .column.main #checkout .amcheckout-main-container .amcheckout-column.-sidebar {
    width: auto;
    flex: 1;
    position: static !important;
  }
  .checkout-index-index .column.main #checkout .amcheckout-main-container .amcheckout-column.-sidebar .amcheckout-step-container.-summary {
    padding: 24px;
    border: 1px solid #b0c0dd;
    border-radius: 16px;
  }
  .checkout-index-index .column.main .checkout-comments {
    margin-top: 24px;
  }
  .account .page-main {
    padding-inline: 0;
  }
  .account ul.nav .item.myaccount a,
  .account ul.nav .item.myaccount strong {
    font-size: 21px;
    color: #49474a;
    font-weight: 300;
    margin-top: -6px;
    letter-spacing: -0.02em;
    padding: 0 0 0 5px;
    line-height: 1;
    margin-bottom: 20px;
  }
  .account ul.nav .item.myaccount a:before,
  .account ul.nav .item.myaccount strong:before {
    display: none;
  }
  .account .header__middle {
    margin-top: 24px;
  }
  .account .column.main {
    margin-bottom: 80px;
  }
  .account .sidebar {
    margin-bottom: 120px;
  }
  .account .sidebar .block-collapsible-nav .title {
    margin-bottom: 13px;
  }
  .account .sidebar .block-collapsible-nav .title strong {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 500;
    line-height: 24px;
    font-size: 20px;
  }
  .account .table-wrapper {
    border: 0;
  }
  .account.page-layout-2columns-left .sidebar-main,
  .account.page-layout-2columns-left .sidebar-additional {
    background-color: #ffffff;
    width: 25%;
    padding: 36px;
    border: 1px solid #b0c0dd;
    border-radius: 16px;
  }
  .account.page-layout-2columns-left .column.main {
    width: 72%;
  }
  .account .sidebar-main ul.nav.items .link.authorization-link {
    padding: 20px 10px 0;
    border-top: 1px solid #00000026;
    margin: 20px -10px 0;
  }
  .account .block-addresses-default .block-content .box {
    width: calc(50% - 15px) !important;
  }
  .account.customerarea-pages-account .column.main {
    padding: 24px;
  }
  .account.customerarea-pages-account .block-dashboard-orders .block-content .table-wrapper.orders-recent {
    overflow: auto;
    padding: 20px 27px 30px;
  }
  .account.customer-address-form .column.main {
    padding: 24px;
  }
  .account.customer-address-form .column.main .field {
    width: 50%;
  }
  .account.customer-account-index .column.main {
    padding: 24px;
  }
  .account.sales-order-history .column.main {
    padding-left: 0;
  }
  .account.sales-order-history .orders-history {
    padding: 24px 32px;
  }
  .account.sales-order-history .orders-history .history tr td.actions {
    justify-content: center;
  }
  .account.sales-order-history .orders-history .history tr td.status span {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: nowrap;
    line-height: 12px;
    text-align: center;
  }
  .account.sales-order-history .account-sald {
    padding: 0 24px 0 0;
  }
  .catalog-product-view.page-layout-1column .columns .column.main {
    margin-bottom: 0;
  }
  .catalog-product-view.page-layout-1column .product.media {
    width: 100%;
    max-width: 300px;
    clear: both;
    margin: 30px auto;
    order: -1;
  }
  .catalog-product-view .product-info-header {
    order: -1;
  }
  .catalog-product-view .product-info-header .product.attribute.manufacturer {
    font-size: 16px;
  }
  .catalog-product-view .product-info-header .page-title-wrapper .page-title {
    font-size: 60px;
  }
  .catalog-product-view .product-info-main {
    width: 100%;
  }
  .catalog-product-view .product-info-main .product-media-buy {
    display: flex;
    justify-content: center;
    padding: 80px;
    max-width: 1280px;
    margin: 0 auto;
    background-color: #f9f7fb;
    border-radius: 16px;
    margin-bottom: 40px;
  }
  .catalog-product-view .product-info-main .product-media-buy .product.media {
    width: 50%;
    margin: 0;
    max-width: unset;
    display: block;
    margin-top: -20px;
  }
  .catalog-product-view .product-info-main .product-media-buy .product.media .gallery-placeholder {
    margin: auto;
  }
  .catalog-product-view .product-info-main .product-media-buy .product-info-header {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 460px;
    margin: 0 auto;
    margin-top: 15px;
  }
  .catalog-product-view .product-info-main .product-kind-section {
    padding: 70px 15px 10px;
    width: 100vw;
    left: 50%;
    position: relative;
    transform: translateX(-50%);
    display: none;
  }
  .catalog-product-view .product-info-main .product-kind-section .attribute.group .value {
    font-size: 21px;
  }
  .catalog-product-view .product-info-main .product-kind-section .attribute.group .attribute.contribution_flavors_aroma .value {
    font-size: 16px;
  }
  .catalog-product-view .product-info-main .product-featured-attributes-container {
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0px;
    width: 100%;
    left: 0;
    position: relative;
  }
  .catalog-product-view .product-info-main .product-featured-attributes-container .product-featured-attributes {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
  }
  .catalog-product-view .product-info-main .product-featured-attributes-container .product-featured-attributes > .attribute:last-child:after {
    display: none;
  }
  .catalog-product-view .product-info-main .product-featured-attributes-container .product-featured-attributes > .attribute strong,
  .catalog-product-view .product-info-main .product-featured-attributes-container .product-featured-attributes > .attribute .value {
    font-size: 14px;
  }
  .catalog-product-view .product-info-main .product-featured-attributes-container .product-featured-attributes > .attribute strong {
    font-weight: 400;
  }
  .catalog-product-view .product-info-main .registertobuy_container .registertobuy {
    margin: 0;
    padding: 0;
  }
  .catalog-product-view .product-info-main .registertobuy_container .registertobuy h4 {
    font-size: 21px;
  }
  .catalog-product-view .product-info-main .registertobuy_container .registertobuy p {
    font-size: 14px;
    margin-bottom: 32px;
  }
  .catalog-product-view .product-info-main .registertobuy_container .registertobuy .cta_container {
    width: 100%;
  }
  .catalog-product-view .product-info-main .registertobuy_container .registertobuy .cta_container > div {
    padding: 0px;
  }
  .catalog-product-view .product-info-main .techspecs_section {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    padding-bottom: 20px;
  }
  .catalog-product-view .product-info-main .techspecs_section .techspecs_container {
    display: flex;
    max-width: 1334px;
    margin: 0 auto;
    padding: 0 25px;
  }
  .catalog-product-view .product-info-main .banner_container .desktop-banner {
    display: flex;
  }
  .catalog-product-view .product-info-main .banner_container .mobile-banner {
    display: none;
  }
  .catalog-product-view .product-info-main .flavorwheel_container {
    width: 50%;
    float: left;
  }
  .catalog-product-view .product-info-main .flavorwheel_container .flavorwheel {
    padding-top: 60px;
  }
  .catalog-product-view .product-info-main .flavorwheel_container .flavorwheel h4 {
    font-size: 32px;
  }
  .catalog-product-view .product-info-main .flavorwheel_container .flavorwheel img {
    max-width: 450px;
  }
  .catalog-product-view .product-info-main .product-specifications-container {
    width: 50%;
    float: left;
    padding: 0 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .catalog-product-view .product-info-main .product-specifications-container h4 {
    width: 100%;
  }
  .catalog-product-view .product-info-main .product-specifications-container .pdp_specifications__values {
    padding: 60px 0;
  }
  .catalog-product-view .product-info-main .description_container {
    width: 100%;
    max-width: 1280px;
    margin: auto;
    position: relative;
    background: rgba(97, 141, 255, 0.06);
    border: 0.5px solid #1d3a84;
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 32px;
  }
  .catalog-product-view .product-info-main .description_container .product.attribute.description {
    max-width: 1240px;
    margin: 0 auto;
    padding: 50px 25px;
    display: none;
  }
  .catalog-product-view .product-info-main .description_container .product.attribute.description > strong {
    font-size: 21px;
  }
  .catalog-product-view .product-info-main .description_container .product.attribute.description > .value p {
    font-size: 16px;
  }
  .catalog-product-view .product-info-main .description_container .product.attribute.description.active {
    display: block;
  }
  .catalog-product-view .product-info-main .product-info-price .price-box span.price {
    font-size: 40px;
  }
  .catalog-product-view .product-info-main .product-info-price .old-price .price {
    font-size: 18px !important;
    margin-top: 2px;
    display: inline-block;
  }
  .catalog-product-view .product-info-main .product-options-wrapper {
    min-width: 320px;
  }
  .catalog-product-view .block.related {
    margin-top: 50px;
    padding-inline: 16px;
  }
  .catalog-product-view .block.related .block-title.title {
    margin: 30px auto;
    margin-bottom: 40px;
    margin-top: 0;
  }
  .catalog-product-view .block.related .block-title.title strong {
    font-size: 40px;
    color: #102134;
    font-weight: 700;
  }
  .catalog-product-view .block.related ol.list.product-items li.item.product {
    padding: 40px;
  }
  .catalog-product-view .block.related ol.list.product-items li.item.product .product-item-info {
    width: 100%;
  }
  .catalog-product-view .block.related ol.list.product-items li.item.product .product-item-info .product-item-details {
    padding-right: 0px;
    max-width: none;
    width: 100%;
  }
  .catalog-product-view .block.related ol.list.product-items li.item.product .product-item-info .product-item-details .technical-contribution-uses {
    max-width: unset;
  }
  .catalog-product-view .block.related ol.list.product-items li.item.product .product-item-info .product-item-details .product-item-name a {
    font-size: 16px;
  }
  .catalog-product-view .block.related ol.list.product-items li.item.product .product-item-info .product-item-details .related_shortDescription {
    font-size: 14px;
  }
  .catalog-product-view .block.related ol.list.product-items li.item.product .product-item-info a.viewMoreBtn {
    position: absolute;
    top: 0;
    right: 0;
  }
  .catalog-product-view .block.related ol.list.product-items li.item.product .product-item-info .login-to-see {
    font-size: 16px;
    text-transform: uppercase;
    color: #102134;
    margin-top: 15px;
    display: flex;
    text-decoration: none;
    transition: .3s;
    outline: none;
  }
  .catalog-product-view .block.related ol.list.product-items li.item.product .product-item-info .login-to-see:hover {
    opacity: .8;
  }
  .catalog-product-view .block.related ol.list.product-items li.item.product .product-item-info .secondary-addto-links {
    display: none;
  }
  .catalog-product-view .block.related ol.list.product-items li.item.product .product-item-info .box-tocart {
    width: 100%;
  }
  .catalog-product-view .block.related ol.list.product-items li.item.product .product-item-info .box-tocart .fieldset {
    display: flex;
    align-items: center;
    flex-direction: row;
  }
  .catalog-product-view .block.related ol.list.product-items li.item.product .product-item-info .box-tocart .fieldset .field {
    display: flex;
    margin: 0;
    margin-right: 15px;
  }
  .catalog-product-view .block.related ol.list.product-items li.item.product .product-item-info .box-tocart .fieldset .field .control {
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 16px;
    color: #49474a;
    border: 1px solid #49474a;
    box-sizing: border-box;
    border-radius: 24px;
    height: 50px;
    padding: 0 15px;
  }
  .catalog-product-view .block.related ol.list.product-items li.item.product .product-item-info .box-tocart .fieldset .field .control input {
    background: none;
    border: none;
    max-width: 25px;
    padding: 0;
    text-align: center;
    margin: 0 10px;
    font-size: 16px;
    font-weight: normal;
  }
  .catalog-product-view .block.related ol.list.product-items li.item.product .product-item-info .box-tocart .fieldset .field .control input:focus {
    border: none;
    outline: none;
  }
  .catalog-product-view .block.related ol.list.product-items li.item.product .product-item-info .box-tocart .fieldset .field .control .minusQty {
    font-size: 35px;
    line-height: 1;
    padding-bottom: 5px;
    color: #102134;
    font-weight: 100;
    cursor: pointer;
    transition: .2s;
    width: 15px;
    display: flex;
    justify-content: flex-end;
  }
  .catalog-product-view .block.related ol.list.product-items li.item.product .product-item-info .box-tocart .fieldset .field .control .plusQty {
    font-size: 25px;
    color: #102134;
    font-weight: 100;
    line-height: 1;
    cursor: pointer;
    transition: .2s;
  }
  .catalog-product-view .block.related ol.list.product-items li.item.product .product-item-info .box-tocart .fieldset .actions button {
    background: none;
    border: 1px solid #102134;
    color: #102134;
    border-radius: 24px;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    width: 160px;
    border-radius: 100px;
    outline: none;
    transition: .3s;
    padding: 16px 0px;
  }
  .catalog-product-view .block.related ol.list.product-items li.item.product .product-item-info .box-tocart .fieldset .actions button:hover {
    color: #102134;
  }
  .catalog-product-view .block.related ol.list.product-items li.item.product .product-item-info .box-tocart .fieldset .actions .hideprice_text {
    text-align: center;
    max-width: 120px;
    margin: auto;
  }
  .catalog-product-view .block.related ol.list.product-items li.item.product .product-item-info .box-tocart .fieldset .actions .hideprice_text a {
    color: #102134;
    font-family: 'PaulSmalt-Special', sans-serif;
    text-transform: uppercase;
    border-bottom: 2px solid;
    text-decoration: none;
    font-size: 13px;
  }
  .catalog-product-view .block.related ol.list.product-items li.item.product .product-item-info .box-tocart .fieldset .actions .hideprice_text:hover {
    opacity: .8;
  }
  .catalog-product-view .block.related .owl-nav {
    z-index: 9;
  }
  .catalog-product-view .block.related .owl-nav .owl-prev,
  .catalog-product-view .block.related .owl-nav .owl-next {
    z-index: 9;
    border: none;
    position: absolute;
    top: 30%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transition: .3s;
    cursor: pointer;
    color: transparent;
    width: 40px;
    height: 40px;
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Old versions of Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
                                                supported by Chrome, Edge, Opera and Firefox */
    background: white;
    border: 1px solid #F3EFF4;
    border-radius: 100%;
  }
  .catalog-product-view .block.related .owl-nav .owl-prev:hover,
  .catalog-product-view .block.related .owl-nav .owl-next:hover {
    opacity: .8;
  }
  .catalog-product-view .block.related .owl-nav .owl-prev:before,
  .catalog-product-view .block.related .owl-nav .owl-next:before {
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: url('../images/CaretRight.svg');
    background-size: 65%;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
    content: '';
    color: #e73726;
  }
  .catalog-product-view .block.related .owl-nav .owl-prev {
    left: -40px;
  }
  .catalog-product-view .block.related .owl-nav .owl-prev:hover {
    opacity: .6;
  }
  .catalog-product-view .block.related .owl-nav .owl-prev:before {
    transform: rotate(180deg);
  }
  .catalog-product-view .block.related .owl-nav .owl-next {
    right: -40px;
  }
  .catalog-product-view .block.related .owl-nav .owl-next:hover {
    opacity: .6;
  }
  .catalog-product-view .block.related .price-box .price {
    font-size: 19px;
  }
  .catalog-product-view .block.related .product-item-photo .product-image-container {
    width: 25vw !important;
    max-width: 125px;
  }
  .catalog-product-view .bt-blog .widget-news {
    font-size: 40px;
    line-height: 44px;
  }
  .catalog-product-view .bt-blog .widget-navigation {
    display: none !important;
  }
  .catalog-product-view .bt-blog .widget-navigation a {
    font-size: 16px;
    line-height: 24px;
  }
  .catalog-product-view .bt-blog .bt-blog-carousel .post-info-wraper .post-link-title {
    font-size: 32px;
    line-height: 40px;
  }
  .page-layout-recetas .back {
    height: 70px;
  }
  .page-layout-recetas .back a {
    font-size: 20px;
    line-height: 23px;
  }
  .page-layout-recetas main.receta {
    overflow-x: hidden;
    display: flex;
    position: sticky;
    top: 145px;
    background: #F3E0CF;
  }
  .page-layout-recetas main.receta section {
    min-width: calc((100vw - 200px));
    min-height: calc((100vh - 145px));
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .page-layout-recetas main.receta section.cerveza {
    min-width: calc((100vw - 100px));
  }
  .page-layout-recetas main.receta section.cerveza .initial-desc {
    width: calc((100% - 100px));
  }
  .page-layout-recetas main.receta section.cerveza .initial-desc .container {
    max-width: 750px;
    height: 100%;
  }
  .page-layout-recetas main.receta section.cerveza .initial-desc .container .block-text {
    margin-bottom: 45px;
  }
  .page-layout-recetas main.receta section.cerveza .initial-desc .container .block-text .name {
    padding-bottom: 30px;
    padding-right: 50px;
  }
  .page-layout-recetas main.receta section.cerveza .initial-desc .container .block-text .name h1 {
    font-size: 34px;
    line-height: 42px;
  }
  .page-layout-recetas main.receta section.cerveza .initial-desc .container .block-text .descrip {
    padding-left: 20px;
    padding-bottom: 20px;
    box-sizing: border-box;
  }
  .page-layout-recetas main.receta section.cerveza .initial-desc .container .block-text .descrip b,
  .page-layout-recetas main.receta section.cerveza .initial-desc .container .block-text .descrip .init-attributes {
    font-size: 22px;
    line-height: 26px;
  }
  .page-layout-recetas main.receta section.cerveza .initial-desc .container .long-description {
    font-size: 20px;
    line-height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    min-height: 120px;
    max-height: 120px;
  }
  .page-layout-recetas main.receta section.cerveza .initial-desc .container .first-download {
    justify-content: flex-end;
  }
  .page-layout-recetas main.receta section.cerveza .initial-desc .container .first-download a.download.btn {
    margin-top: 12px;
  }
  .page-layout-recetas main.receta section.ingredientes .container {
    padding-left: 40px;
  }
  .page-layout-recetas main.receta section.ingredientes .container h3 {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 40px;
  }
  .page-layout-recetas main.receta section.ingredientes .container .attributes > div {
    width: 50%;
    padding-right: 80px;
  }
  .page-layout-recetas main.receta section.ingredientes .container .attributes > div .maltas-granos {
    max-height: 100px;
    overflow-y: auto;
    padding: 20px;
    scrollbar-color: #e73726 #f3e0cf;
  }
  .page-layout-recetas main.receta section.ingredientes .container .attributes > div .maltas-granos::-webkit-scrollbar {
    width: 6px;
  }
  .page-layout-recetas main.receta section.ingredientes .container .attributes > div .maltas-granos::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px #e73726;
  }
  .page-layout-recetas main.receta section.ingredientes .container .attributes > div .maltas-granos::-webkit-scrollbar-thumb {
    background-color: #e73726;
    outline: 2px solid #e73726;
    border-radius: 30px;
  }
  .page-layout-recetas main.receta section.ingredientes .container .attributes > div h4 {
    font-size: 22px;
    line-height: 26px;
  }
  .page-layout-recetas main.receta section.ingredientes .container .attributes > div .list .item .label a span {
    font-weight: normal;
    padding: 0;
    width: 50%;
  }
  .page-layout-recetas main.receta section.info-proceso .container {
    padding-left: 40px;
  }
  .page-layout-recetas main.receta section.info-proceso .container h3 {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 40px;
  }
  .page-layout-recetas main.receta section.info-proceso .container .attributes > div {
    width: 50%;
    padding-right: 80px;
  }
  .page-layout-recetas main.receta section.info-proceso .container .attributes > div h4 {
    font-size: 22px;
    line-height: 26px;
  }
  .page-layout-recetas main.receta section.info-proceso .container .attributes > div .list .item .label span {
    padding-left: 40px;
  }
  .page-layout-recetas main.receta section.info-proceso .container .tips h4 {
    font-size: 22px;
    line-height: 26px;
  }
  .page-layout-recetas main.receta section.info-proceso .container .tips .text {
    width: 80%;
  }
  .page-layout-recetas .sabias-que .container {
    padding-top: 30px;
    padding-bottom: 60px;
  }
  .page-layout-recetas .sabias-que .container h4 {
    font-size: 24px;
    line-height: 28px;
  }
  .page-layout-recetas .sabias-que .container .text {
    font-size: 20px;
    line-height: 30px;
  }
  .checkout-cart-index .breadcrumbs,
  .checkout-cart-index .currentPageSection,
  .checkout-cart-index .page-main {
    padding: 0 40px;
  }
  .checkout-cart-index .main-title {
    font-size: 40px;
    line-height: 44px;
  }
  .checkout-cart-index .input-text.qty.cart {
    padding: 0 6px !important;
  }
  .cart.table-wrapper .product-image-wrapper {
    width: 56px;
  }
  .cart.table-wrapper .product-item-photo {
    max-width: 56px;
    width: 56px;
  }
  .cart.table-wrapper .product-item-details {
    padding-left: 0;
    padding-bottom: 0;
    width: 240px;
    vertical-align: middle;
  }
  .cart.table-wrapper .product-item-name {
    padding: 0 40px 0 0;
    margin: 0;
  }
  .cart.table-wrapper .cart .item {
    display: flex;
    margin-top: -1px;
    border-top: 1px solid #E5E1E6;
    border-bottom: 1px solid #E5E1E6;
  }
  .cart.table-wrapper .cart .item:first-of-type {
    border-top: none;
  }
  .cart.table-wrapper .item-info {
    display: flex;
    justify-content: flex-start;
    flex: auto;
    padding-right: 50px;
  }
  .cart.table-wrapper .item .col {
    padding: 10px;
    padding: 15px 11px 15px;
  }
  .cart.table-wrapper .item .col.item {
    display: flex;
    align-items: center;
    padding: 15px 11px 15px;
    padding-left: 0;
    min-height: auto;
  }
  .cart.table-wrapper .item .col.price {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 34%;
    justify-content: center;
    padding: 15px 11px 15px;
    display: none;
  }
  .cart.table-wrapper .item .col.price .price {
    font-size: 16px;
  }
  .cart.table-wrapper .item .col.price .minicart-old-price .price {
    text-decoration: line-through;
    color: #102134;
    font-size: 13px;
  }
  .cart.table-wrapper .item .col.price .units {
    font-size: 12px;
    color: #102134;
  }
  .cart.table-wrapper .item .col.qty {
    display: flex;
    align-items: center;
    padding: 15px 11px 15px;
    justify-content: flex-end;
    width: auto;
    margin: 0 0 0 auto;
  }
  .cart.table-wrapper .item .col.qty .field.qty {
    max-width: 125px;
    min-width: 125px;
  }
  .cart.table-wrapper .item .col.qty .field.qty .control {
    height: 48px;
    padding: 0 10px;
  }
  .cart.table-wrapper .item .col.qty .field.qty .control input.qty {
    height: 48px;
  }
  .cart.table-wrapper .item .col.qty .field.qty .control #plusQty {
    font-size: 21px;
    top: 0;
    margin-right: 2px;
    right: 13px;
  }
  .cart.table-wrapper .item .col.qty .field.qty .control #minusQty {
    left: 13px;
  }
  .cart.table-wrapper .item .col.subtotal {
    display: flex;
    align-items: center;
    width: auto;
    justify-content: center;
    padding: 0;
    width: 140px;
    flex-direction: column;
    margin-left: 30px;
  }
  .cart.table-wrapper .item .col.subtotal .price {
    font-size: 18px;
  }
  .cart.table-wrapper .item .col.subtotal .promo-label {
    background: #102134;
    color: #ffffff;
    text-align: center;
    padding: 6px 8px;
    margin: 10px 0;
    border-radius: 100px;
    font-size: 10px;
  }
  .cart.table-wrapper .item .col.subtotal .promo-label.empty {
    display: none;
  }
  .cart.table-wrapper tr.item-actions td .actions-toolbar {
    justify-content: center;
    width: 50px;
  }
  .cart.table-wrapper .col.subtotal .price-excluding-tax,
  .cart.table-wrapper .item-actions .action.action-delete {
    position: relative;
    top: -8px;
  }
  .cart.table-wrapper .col.qty .field.qty .control {
    position: relative;
    top: -4px;
  }
  .abs-shopping-cart-items-desktop,
  .block-cart-failed,
  .cart-container .form-cart,
  .cart-container .cart-gift-item,
  .block-cart-failed,
  .cart-container .form-cart,
  .cart-container .cart-gift-item {
    width: 62%;
    padding-right: 2%;
  }
  .cart-summary {
    width: 32%;
    margin-right: 0%;
    padding: 24px;
  }
  .cart-summary .summary.title {
    font-size: 24px;
    line-height: 32px;
  }
  .block.crosssell {
    padding-top: 80px;
    padding-bottom: 80px;
    width: 100vw;
    left: 50%;
    position: relative;
    transform: translateX(-50%);
    margin-top: 20px;
    background: white;
    margin-bottom: 0 !important;
  }
  .block.crosssell .block-title.title {
    max-width: 1240px;
    margin: 30px auto;
    margin-bottom: 40px;
    margin-top: 0;
  }
  .block.crosssell .block-title.title strong {
    font-size: 40px;
    color: #102134;
  }
  .block.crosssell .products-grid .product-item {
    width: 100%;
    max-width: 800px;
    margin: auto;
  }
  .block.crosssell .block-content {
    max-width: 1240px;
    margin: 0 auto;
  }
  .block.crosssell ol.list.product-items .product-image-container {
    width: 17vw !important;
  }
  .block.crosssell ol.list.product-items li.item.product .product-item-info {
    width: 100%;
    padding: 32px;
  }
  .block.crosssell ol.list.product-items li.item.product .product-item-info .product-item-details {
    padding-right: 0px;
    max-width: none;
    width: 100%;
    gap: 16px;
  }
  .block.crosssell ol.list.product-items li.item.product .product-item-info .product-item-details .technical-contribution-uses {
    max-width: unset;
  }
  .block.crosssell ol.list.product-items li.item.product .product-item-info .product-item-details .field.choice {
    display: none;
  }
  .block.crosssell ol.list.product-items li.item.product .product-item-info .product-item-details .product-item-name a {
    font-size: 20px;
  }
  .block.crosssell ol.list.product-items li.item.product .product-item-info .product-item-details .related_shortDescription {
    font-size: 14px;
  }
  .block.crosssell ol.list.product-items li.item.product .product-item-info a.viewMoreBtn {
    position: absolute;
    top: 0;
    right: 0;
  }
  .block.crosssell ol.list.product-items li.item.product .product-item-info .login-to-see {
    font-size: 16px;
    text-transform: uppercase;
    color: #102134;
    margin-top: 15px;
    display: flex;
    text-decoration: none;
    transition: .3s;
    outline: none;
  }
  .block.crosssell ol.list.product-items li.item.product .product-item-info .login-to-see:hover {
    opacity: .8;
  }
  .block.crosssell ol.list.product-items li.item.product .product-item-info .secondary-addto-links {
    display: none;
  }
  .block.crosssell ol.list.product-items li.item.product .product-item-info .box-tocart {
    width: 100%;
    margin-bottom: 0;
  }
  .block.crosssell ol.list.product-items li.item.product .product-item-info .box-tocart .fieldset {
    display: flex;
    align-items: center;
    flex-direction: row;
    margin-bottom: 0;
  }
  .block.crosssell ol.list.product-items li.item.product .product-item-info .box-tocart .fieldset .field {
    display: flex;
    margin: 0;
    margin-right: 15px;
  }
  .block.crosssell ol.list.product-items li.item.product .product-item-info .box-tocart .fieldset .field .control {
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #49474a;
    border: 1px solid #aeaaae;
    box-sizing: border-box;
    border-radius: 24px;
    height: 48px;
    padding: 0 10px;
  }
  .block.crosssell ol.list.product-items li.item.product .product-item-info .box-tocart .fieldset .field .control input {
    background: none;
    border: none;
    max-width: 25px;
    padding: 0;
    text-align: center;
    margin: 0 10px;
    font-size: 16px;
    font-weight: bold;
  }
  .block.crosssell ol.list.product-items li.item.product .product-item-info .box-tocart .fieldset .field .control input:focus {
    border: none;
    outline: none;
  }
  .block.crosssell ol.list.product-items li.item.product .product-item-info .box-tocart .fieldset .field .control .minusQty {
    font-size: 35px;
    line-height: 1;
    padding-bottom: 5px;
    color: #102134;
    font-weight: 400;
    cursor: pointer;
    transition: .2s;
    width: 15px;
    display: flex;
    justify-content: flex-end;
  }
  .block.crosssell ol.list.product-items li.item.product .product-item-info .box-tocart .fieldset .field .control .plusQty {
    font-size: 25px;
    color: #102134;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
    transition: .2s;
  }
  .block.crosssell ol.list.product-items li.item.product .product-item-info .box-tocart .fieldset .actions {
    flex: 1;
  }
  .block.crosssell ol.list.product-items li.item.product .product-item-info .box-tocart .fieldset .actions button {
    width: 100%;
  }
  .block.crosssell ol.list.product-items li.item.product .product-item-info .box-tocart .fieldset .actions .hideprice_text {
    text-align: center;
    max-width: 120px;
    margin: auto;
  }
  .block.crosssell ol.list.product-items li.item.product .product-item-info .box-tocart .fieldset .actions .hideprice_text a {
    color: #102134;
    font-family: 'PaulSmalt-Special', sans-serif;
    text-transform: uppercase;
    border-bottom: 2px solid;
    text-decoration: none;
    font-size: 13px;
  }
  .block.crosssell ol.list.product-items li.item.product .product-item-info .box-tocart .fieldset .actions .hideprice_text:hover {
    opacity: .8;
  }
  .block.crosssell .owl-nav {
    display: none;
  }
  .block.crosssell .price-box .price {
    font-size: 19px;
  }
  .cart-empty {
    padding-top: 84px;
    padding-bottom: 160px;
  }
  .return-shop {
    width: 280px;
  }
  .customer-account-login .page-main,
  .customer-account-forgotpassword .page-main,
  .customer-account-create .page-main,
  .customer-account-createpassword .page-main {
    max-width: unset;
    padding: 24px;
  }
  .customer-account-login .login,
  .customer-account-forgotpassword .login,
  .customer-account-create .login,
  .customer-account-createpassword .login,
  .customer-account-login .forgetpassword,
  .customer-account-forgotpassword .forgetpassword,
  .customer-account-create .forgetpassword,
  .customer-account-createpassword .forgetpassword,
  .customer-account-login .resetforgottenpassword,
  .customer-account-forgotpassword .resetforgottenpassword,
  .customer-account-create .resetforgottenpassword,
  .customer-account-createpassword .resetforgottenpassword {
    padding: 0 110px;
    display: flex;
    gap: 88px;
    align-items: center;
  }
  .customer-account-login .login__video,
  .customer-account-forgotpassword .login__video,
  .customer-account-create .login__video,
  .customer-account-createpassword .login__video,
  .customer-account-login .forgetpassword__video,
  .customer-account-forgotpassword .forgetpassword__video,
  .customer-account-create .forgetpassword__video,
  .customer-account-createpassword .forgetpassword__video,
  .customer-account-login .resetforgottenpassword__video,
  .customer-account-forgotpassword .resetforgottenpassword__video,
  .customer-account-create .resetforgottenpassword__video,
  .customer-account-createpassword .resetforgottenpassword__video {
    width: 60%;
  }
  .customer-account-login .login__form,
  .customer-account-forgotpassword .login__form,
  .customer-account-create .login__form,
  .customer-account-createpassword .login__form,
  .customer-account-login .forgetpassword__form,
  .customer-account-forgotpassword .forgetpassword__form,
  .customer-account-create .forgetpassword__form,
  .customer-account-createpassword .forgetpassword__form,
  .customer-account-login .resetforgottenpassword__form,
  .customer-account-forgotpassword .resetforgottenpassword__form,
  .customer-account-create .resetforgottenpassword__form,
  .customer-account-createpassword .resetforgottenpassword__form {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    width: 35%;
  }
  .customer-account-login .login__container,
  .customer-account-forgotpassword .login__container,
  .customer-account-create .login__container,
  .customer-account-createpassword .login__container,
  .customer-account-login .forgetpassword__container,
  .customer-account-forgotpassword .forgetpassword__container,
  .customer-account-create .forgetpassword__container,
  .customer-account-createpassword .forgetpassword__container,
  .customer-account-login .resetforgottenpassword__container,
  .customer-account-forgotpassword .resetforgottenpassword__container,
  .customer-account-create .resetforgottenpassword__container,
  .customer-account-createpassword .resetforgottenpassword__container {
    width: 100%;
  }
  .customer-account-login .forgetpassword__form,
  .customer-account-forgotpassword .forgetpassword__form,
  .customer-account-create .forgetpassword__form,
  .customer-account-createpassword .forgetpassword__form,
  .customer-account-login .resetforgottenpassword__form,
  .customer-account-forgotpassword .resetforgottenpassword__form,
  .customer-account-create .resetforgottenpassword__form,
  .customer-account-createpassword .resetforgottenpassword__form {
    width: 35%;
  }
  .customer-account-login .forgetpassword__video,
  .customer-account-forgotpassword .forgetpassword__video,
  .customer-account-create .forgetpassword__video,
  .customer-account-createpassword .forgetpassword__video,
  .customer-account-login .resetforgottenpassword__video,
  .customer-account-forgotpassword .resetforgottenpassword__video,
  .customer-account-create .resetforgottenpassword__video,
  .customer-account-createpassword .resetforgottenpassword__video {
    width: 60% !important;
  }
  .customer-account-login .forgetpassword__form,
  .customer-account-forgotpassword .forgetpassword__form,
  .customer-account-create .forgetpassword__form,
  .customer-account-createpassword .forgetpassword__form,
  .customer-account-login .resetforgottenpassword__form,
  .customer-account-forgotpassword .resetforgottenpassword__form,
  .customer-account-create .resetforgottenpassword__form,
  .customer-account-createpassword .resetforgottenpassword__form {
    flex-direction: column;
  }
  .customer-account-login .login__content,
  .customer-account-forgotpassword .login__content,
  .customer-account-create .login__content,
  .customer-account-createpassword .login__content {
    max-width: 376px;
  }
  .customer-account-create .register {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .customer-account-create .register__title {
    font-size: 32px;
  }
  .customer-account-create .register__subtitle {
    margin-bottom: 32px !important;
  }
  .customer-account-create .register__img {
    width: 32%;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    height: 92vh;
  }
  .customer-account-create .register__form {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    width: 62%;
  }
  .customer-account-create .register__back {
    left: 24px;
    top: 24px;
  }
  .customer-account-create .register__actions {
    bottom: 0;
  }
  .customer-account-create .register__actions::after {
    min-height: 32px;
  }
  .customer-account-create .register .fieldset {
    overflow-y: auto;
    max-height: calc(var(--doc-height) - 200px);
  }
  .customer-account-create .register .fieldset.address .region {
    width: 100%;
  }
  .customer-account-create .register .fieldset.address .city {
    width: 100%;
  }
  .customer-account-create .register .fieldset.address .zip {
    width: 100%;
  }
  .customer-account-create .register .fieldset.address .street {
    width: 100%;
  }
  .customer-account-create .register .fieldset.address .telephone {
    width: 100%;
  }
  .customer-account-create .register .fieldset.address .alternative-phone {
    width: 100%;
  }
  .customer-account-create .register .fieldset.address .email {
    width: 100%;
  }
  .customer-account-create .register .fieldset.address .password {
    width: 48%;
  }
  .customer-account-create .register .fieldset.address .confirmation {
    width: 48%;
  }
  .customer-account-create .register .fieldset.references .field {
    width: 48%;
  }
  .customer-account-create .register .form-step {
    height: 92vh;
  }
  .customer-account-create .register .next-btn {
    float: right;
    width: 50% !important;
  }
  .progress-container {
    top: 140px;
  }
  .mpblog-post-index .post-list-content .post-list-body,
  .mpblog-category-view .post-list-content .post-list-body {
    flex-wrap: wrap;
  }
  .mpblog-post-index .post-list-content .post-list-body .post-list-item .post-info-wraper .mp-post-title a,
  .mpblog-category-view .post-list-content .post-list-body .post-list-item .post-info-wraper .mp-post-title a {
    font-size: 32px !important;
    font-weight: 400 !important;
    line-height: 40px;
    text-align: left;
    color: #49474a !important;
    margin-bottom: 8px;
    overflow: hidden;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    text-overflow: ellipsis;
  }
  .mpblog-post-index #maincontent .top-header h2,
  .mpblog-category-view #maincontent .top-header h2 {
    margin: 0;
    text-align: center;
    display: block;
    font-size: 46px;
  }
  .mpblog-post-index .top-header,
  .mpblog-category-view .top-header {
    margin-bottom: 60px;
  }
  .mpblog-post-index .post-list-body {
    display: flex;
    max-width: unset;
    justify-content: space-between;
    margin-bottom: 60px;
  }
  .mpblog-post-index .mp-6 {
    width: calc(50% - 16px);
    padding: 0;
  }
  .mpblog-post-view .column.main {
    width: 100%;
  }
  .mpblog-post-view .mp-blog-view {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .mpblog-post-view .post-view {
    max-width: 800px;
  }
  .mpblog-post-view .mp-post-info {
    max-width: 800px;
    width: 100%;
  }
  .mpblog-post-view .post-view-image .img-responsive {
    max-height: 360px !important;
  }
  .mpblog-post-view .post-post_content {
    max-width: 680px;
  }
  .mpblog-post-view .block-blog-related.products-same-post .product-item-info {
    justify-content: space-between;
  }
  .mpblog-post-view .block-blog-related.products-same-post .product-image-container {
    width: 25vw !important;
    max-width: 236px;
  }
  .mpblog-post-view .wrapperTitle {
    margin-top: 62px;
  }
  .mpblog-post-view .wrapperTitle h1 {
    font-size: 48px;
    line-height: 56px;
  }
  .mpblog-post-view .block-blog-title-actions {
    display: none !important;
  }
  .mpblog-post-view .block-blog-related.topic-list {
    padding: 0 36px;
  }
  .blog-header {
    left: 18px;
  }
}
@media all and (min-width: 1440px), print {
  .menu-custom__content ul li {
    margin-bottom: .5rem !important;
  }
  .menu-custom__content ul a {
    font-size: 1.3rem;
    line-height: 1.5rem;
  }
  .menu-custom__actions span {
    font-size: 1.3rem;
    line-height: 1.5rem;
  }
  .amlocator-schedule-table .amlocator-cell.-time {
    padding-right: 7%;
    text-align: right;
  }
  .sidebar .product-items .product-item-info .product-item-photo {
    float: none;
    left: 0;
    margin: 0;
    position: absolute;
    top: 0;
  }
  .sidebar .product-items .product-item-details {
    margin-left: 85px;
  }
}
@media all and (max-width: 1579px) {
  .field-tooltip .field-tooltip-content {
    right: -10px;
    top: 40px;
    left: auto;
  }
}
@media all and (min-width: 1440px) {
  .menu-custom__content ul li {
    margin-bottom: .5rem !important;
  }
  .menu-custom__content ul a {
    font-size: 1.3rem;
    line-height: 1.5rem;
  }
  .menu-custom__actions span {
    font-size: 1.3rem;
    line-height: 1.5rem;
  }
  .amlocator-schedule-table .amlocator-cell.-time {
    padding-right: 7%;
    text-align: right;
  }
  .sidebar .product-items .product-item-info .product-item-photo {
    float: none;
    left: 0;
    margin: 0;
    position: absolute;
    top: 0;
  }
  .sidebar .product-items .product-item-details {
    margin-left: 85px;
  }
}
@media all and (max-width: 1439px) {
  .field-tooltip .field-tooltip-content {
    right: -10px;
    top: 40px;
    left: auto;
  }
}
@media all and (max-width: 1279px) {
  .field-tooltip .field-tooltip-content {
    right: -10px;
    top: 40px;
    left: auto;
  }
}
body.cms-home .header__main-category,
body.cms-about-us .header__main-category,
body.cms-sustainability .header__main-category,
body.cms-malting-process .header__main-category,
body.cms-root-revival .header__main-category {
  color: #ffffff;
}
.footer__boortmalt-legend {
  top: 45%;
}
@media (max-width: 1024px) {
  .checkout-index-index .modal-popup {
    left: 0 !important;
  }
  .checkout-index-index .modal-popup .modal-inner-wrap {
    border-radius: 0 !important;
  }
  .checkout-index-index .modal-popup .modal-footer {
    flex-direction: column-reverse !important;
  }
  .checkout-index-index .modal-popup .modal-footer .action-save-address {
    margin-top: 15px;
    max-width: 320px;
  }
  .checkout-index-index #maincontent {
    padding: 16px;
  }
  .checkout-index-index #maincontent h1 {
    padding: 0;
    margin-bottom: 24px;
  }
  .checkout-index-index #maincontent .block-heading {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .checkout-index-index #maincontent .block-heading .progress-checkout {
    right: unset;
    gap: 12px;
  }
  .checkout-index-index #maincontent .block-heading .progress-checkout .progress-step span {
    margin: 0;
  }
  .checkout-index-index #maincontent .amcheckout-step-container > li {
    border: 0 !important;
  }
  .checkout-index-index #maincontent .actions-buttons {
    flex-direction: column-reverse !important;
    gap: 20px;
    margin-bottom: 60px;
  }
  .checkout-index-index #maincontent .checkout-payment-method .step-title {
    padding: 0;
  }
  .checkout-index-index .tax-msg {
    padding: 15px;
    display: block;
    font-size: 13px;
    padding-right: 70px;
    padding-left: 70px;
    text-align: center;
    display: none;
  }
  .checkout-index-index .column.main {
    margin-bottom: 80px;
  }
  .checkout-index-index .column.main #checkout {
    margin-top: 0;
  }
  .checkout-index-index .column.main #checkout .opc-estimated-wrapper {
    background: #ebebeb;
    border-bottom: none;
    border-top: none;
    display: none;
  }
  .checkout-index-index .column.main #checkout .opc-estimated-wrapper .estimated-block {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .checkout-index-index .column.main #checkout .opc-estimated-wrapper .estimated-block span {
    font-family: 'PaulSmalt-Special', sans-serif;
    text-transform: uppercase;
    font-size: 16px;
  }
  .checkout-index-index .column.main #checkout .amcheckout-main-container .-modern .amcheckout-block:not(:first-of-type) {
    margin-top: 0;
  }
  .checkout-index-index .column.main #checkout .amcheckout-main-container .amcheckout-column.-main {
    width: 100%;
  }
  .checkout-index-index .column.main #checkout .amcheckout-main-container .amcheckout-column.-main #shipping .shipping-address-items .shipping-address-item .action-select-shipping-item {
    float: left !important;
  }
  .checkout-index-index .column.main #checkout .amcheckout-main-container .amcheckout-column.-main #checkout-step-shipping_method .amcheckout-items .amcheckout-method {
    flex-wrap: wrap;
  }
  .checkout-index-index .column.main #checkout .amcheckout-main-container .amcheckout-column.-main #checkout-step-shipping_method .amcheckout-items .amcheckout-method .col-method {
    white-space: unset;
  }
  .checkout-index-index .column.main #checkout .amcheckout-main-container .amcheckout-column.-main #checkout-step-shipping_method .amcheckout-items .amcheckout-method .col-comment {
    position: absolute;
    right: 0;
    width: auto;
  }
  .checkout-index-index .column.main #checkout .amcheckout-main-container .amcheckout-column.-main #checkout-step-shipping_method .amcheckout-items .amcheckout-method .col-carrier {
    display: none;
  }
  .checkout-index-index .column.main #checkout .amcheckout-main-container .amcheckout-column.-sidebar {
    width: 100%;
    margin-top: 0;
    border: 0 !important;
  }
  .checkout-index-index .column.main #checkout .amcheckout-main-container .amcheckout-column.-sidebar .amcheckout-title .amcheckout-icon {
    display: none;
  }
  .checkout-index-index .column.main #checkout .amcheckout-main-container .amcheckout-column.-sidebar .amcheckout-content {
    display: block !important;
    height: auto !important;
  }
  .checkout-index-index .column.main #checkout .amcheckout-main-container .amcheckout-column.-sidebar .amcheckout-content .items-in-cart .minicart-items .product-item-name-block {
    margin-right: 10px;
  }
  .checkout-index-index .column.main #checkout .amcheckout-main-container .amcheckout-column.-sidebar .amcheckout-content .items-in-cart .minicart-items .subtotal .cart-price .price {
    font-size: 15px;
  }
  .checkout-index-index .column.main #checkout .amcheckout-main-container .amcheckout-column.-sidebar .checkout-payment-method #discount-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .checkout-index-index .column.main #checkout .amcheckout-main-container .amcheckout-column.-sidebar .checkout-payment-method #discount-form .payment-option-inner {
    width: 100%;
  }
  .checkout-index-index .column.main #checkout .amcheckout-main-container .amcheckout-column.-sidebar .checkout-payment-method #discount-form .payment-option-inner .field {
    display: flex;
    justify-content: center;
  }
  .checkout-index-index .column.main #checkout .amcheckout-main-container .amcheckout-column.-sidebar .checkout-payment-method #discount-form .payment-option-inner .field .control {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .checkout-index-index .column.main #checkout .amcheckout-main-container .amcheckout-column.-sidebar .checkout-payment-method #discount-form .payment-option-inner .field .control input {
    text-align: center;
    max-width: 320px;
  }
  .checkout-index-index .column.main #checkout .amcheckout-main-container .amcheckout-column.-sidebar .checkout-payment-method #discount-form .actions-toolbar {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .checkout-index-index .column.main #checkout .amcheckout-main-container .amcheckout-column.-sidebar .checkout-payment-method.submit .actions-toolbar {
    display: flex;
    justify-content: center;
    margin-top: 15px;
  }
  .checkout-index-index .column.main #checkout .amcheckout-step-container.-summary .amcheckout-summary-container {
    position: relative;
  }
  .checkout-index-index .column.main #checkout .amcheckout-step-container.-summary .amcheckout-summary-container .step-title.amcheckout-title {
    display: flex;
    width: 100%;
  }
  .checkout-index-index .column.main #checkout .amcheckout-step-container.-summary .action.-back {
    margin-top: 20px;
  }
  .checkout-index-index .column.main #checkout .amcheckout-step-container.-summary .action.-back.hide {
    display: none;
  }
  .checkout-index-index .column.main .checkout-comments {
    margin-bottom: 24px;
  }
  .checkout-index-index .amcheckout-title {
    font-size: 24px !important;
  }
}
@media (max-width: 1024px) {
  .amgdprcookie-bar-container {
    padding: 12px;
  }
  .amgdprcookie-bar-container .content {
    flex-direction: column;
  }
  .amgdprcookie-bar-container .content .amgdprcookie-policy {
    margin: 0 !important;
    width: 100% !important;
  }
  .amgdprcookie-bar-container .content .actions {
    flex-direction: row !important;
    width: 100%;
    justify-content: space-around;
  }
}
.section_title_style {
  font-size: 21px;
  color: #49474a;
  font-weight: 300;
}
.action.multicheckout {
  display: none;
}
