.cProducersList {
  --border-color: #e3e3e3;
  --link-color: #000;
  --top-producer-size: 190px;
  --top-producer-gap: 20px;
  --top-producer-border-color: var(--border-color);
  --anchor-size: 30px;
  --anchor-column-gap: 16px;
  --anchor-row-gap: 15px;
}
.cProducersList__title {
  font-weight: bold;
}
.cProducersList__top-items {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(var(--top-producer-size),1fr));
  gap: var(--top-producer-gap);
}
.cProducersList__top-link {
  border: 1px solid var(--top-producer-border-color);
  display: flex;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  text-decoration: none;
  color: var(--link-color);
  aspect-ratio: 1 / 1;
}
.cProducersList__top-image {
  vertical-align: top;
  max-width: 100%;
  height: fit-content;
}
.cProducersList__top-name {
  width: 100%;
}
.cProducersList__anchors {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}
.cProducersList__anchors-title {
  font-weight: bold;
}
.cProducersList__anchors-items {
  display: grid;
  grid-template-columns: repeat(auto-fill,var(--anchor-size));
  column-gap: var(--anchor-column-gap);
  row-gap: var(--anchor-row-gap);
}
.cProducersList__anchors-link {
  text-decoration: none;
  text-transform: uppercase;
  color: var(--link-color);
}
.cProducersList__group {
  border-bottom: 1px solid var(--border-color);
}
.cProducersList__group:last-child {
  border: 0;
}
.cProducersList__group-title {
  font-weight: bold;
}
.cProducersList__group-items--rows {
  display: grid;
  grid-template-columns: repeat(4,minmax(200px,1fr));
}
.cProducersList__group-items--columns {
  columns: auto;
  column-width: 200px;
}
.cProducersList__group-items--columns .cProducersList__group-link {
  display: inline-block;
  width: 100%;
}
.cProducersList__group-link {
  text-decoration: none;
  color: var(--link-color);
}
.cProducersList__group-link:hover {
  text-decoration: underline;
}
@keyframes cHintAnimace {
  0% {
    opacity: 0;
    display: block;
  }
  100% {
    opacity: 1;
    display: block;
  }
}
.cHint {
  animation-duration: 1s;
  animation-name: cHintAnimace;
  animation-direction: normal;
  pointer-events: none;
  box-sizing: border-box;
  position: absolute;
  border-radius: 4px;
  background-color: rgba(100,100,100,1);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  padding: 0;
}
.cHint--hidden {
  display: none;
  animation-duration: 0.5s;
  animation-name: cHintAnimace;
  animation-direction: reverse;
}
.cHint__triangle {
  position: absolute;
  background: url('https://i.binargon.cz/cHint/rgba(100,100,100,1)/triangle.svg') no-repeat center center;
  width: 20px;
  height: 10px;
  transform-origin: top center;
}
.cHint__triangle--top {
  left: calc(45%);
  bottom: -10px;
}
.cHint__triangle--right {
  transform: rotate(0.25turn);
  left: -10px;
  top: 50%;
}
.cHint__triangle--bottom {
  transform: rotate(0.5turn);
  left: calc(45%);
  top: 0px;
}
.cHint__triangle--left {
  transform: rotate(-0.25turn);
  right: -10px;
  top: calc(50%);
}
.cHint__content {
  width: min-content;
  padding: 8px 15px;
  margin: 0;
  color: rgba(255,255,255,1);
}
.commonComparsion__main-text {
  margin-bottom: 30px;
  line-height: 20px;
}
.commonComparsion__table-wrapper {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  background-color: #ebf6fc;
}
.commonComparsion__table-inner {
  overflow: auto;
  margin-left: 200px;
  background-color: #fff;
}
@media all and (min-width: 0px) and (max-width: 425px) {
  .commonComparsion__table-inner {
    margin-left: 0;
  }
}
.commonComparsion__scroller {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 15px;
}
.commonComparsion__scroller-item {
  width: 0;
  height: 0;
  border-style: solid;
}
.commonComparsion__scroller-item:hover {
  cursor: pointer;
}
.commonComparsion__scroller-item--previous {
  border-width: 12px 16px 12px 0;
  border-color: transparent #d1d1d1 transparent transparent;
  margin-right: 10px;
}
.commonComparsion__scroller-item--previous:hover {
  border-color: transparent #c1c1c1 transparent transparent;
}
.commonComparsion__scroller-item--next {
  border-color: transparent transparent transparent #d1d1d1;
  border-width: 12px 0 12px 16px;
}
.commonComparsion__scroller-item--next:hover {
  border-color: transparent transparent transparent #c1c1c1;
}
.commonComparsion__table {
  table-layout: fixed;
  width: 100%;
}
.commonComparsion__table-row {
  display: flex;
}
.commonComparsion__table-row:last-child {
  border-bottom: none;
}
.commonComparsion__table-row:hover .commonComparsion__table-col {
  background-color: #ebf6fc;
}
.commonComparsion__table-col {
  position: relative;
  padding: 10px;
  flex: 0 0 250px;
  text-align: center;
  border-top: 1px solid #ddf2ff;
  border-left: 1px solid #ddf2ff;
  background-color: #fff;
}
@media all and (min-width: 0px) and (max-width: 425px) {
  .commonComparsion__table-col {
    padding-top: 48px;
    flex: 0 0 100%;
  }
}
.commonComparsion__table-col--caption {
  position: absolute;
  left: 0;
  width: 200px;
  text-align: right;
  font-weight: 700;
  background-color: #ebf6fc;
  border-left: none;
  text-overflow: ellipsis;
}
@media all and (min-width: 0px) and (max-width: 425px) {
  .commonComparsion__table-col--caption {
    padding: 10px;
    text-align: center;
    width: 100%;
    z-index: 10;
  }
}
.commonComparsion__table-product {
  text-decoration: none;
}
.commonComparsion__table-product-image-wrapper {
  margin-bottom: 15px;
}
.commonComparsion__table-product-name {
  font-weight: 700;
}
.commonComparsion__table-product-name:hover {
  text-decoration: none;
}
.commonComparsion__table-product-sale {
  position: absolute;
  left: 15px;
  top: 15px;
  min-width: 40px;
  height: 40px;
  padding: 11px 5px 0;
  background-color: #ff0000;
  color: #fff;
  text-align: center;
  border-radius: 20px;
  font-weight: 700;
}
@media all and (min-width: 0px) and (max-width: 425px) {
  .commonComparsion__table-product-sale {
    top: 48px;
  }
}
.commonComparsion__table-rating {
  display: flex;
  justify-content: center;
  align-items: center;
}
.commonComparsion__table-rating-stars {
  position: relative;
  width: 128px;
  height: 22px;
  margin-right: 10px;
  background: url("https://i.binargon.cz/common/rgba(229,224,213,1)/stars.svg") no-repeat 0 0;
  background-size: auto 100%;
}
.commonComparsion__table-rating-stars-inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 22px;
  background: url(https://i.binargon.cz/common/stars.svg) no-repeat 0 0;
  background-size: auto 100%;
}
.commonComparsion__table-rating-text {
  font-weight: 700;
  font-size: 16px;
}
.commonComparsion__table-remove {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 15px;
  height: 15px;
  background: url(https://i.binargon.cz/common/close.svg) no-repeat 0 0;
  background-size: 100%;
}
.commonComparsion__table-params {
  margin-bottom: 10px;
}
.commonComparsion__table-params-title {
  margin-bottom: 05px;
  font-weight: 700;
}
.commonComparsion__buttons-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.commonComparsion__buttons-wrapper--margin-bottom {
  margin-bottom: 30px;
}
.commonInternationalMenu {
  display: none;
}
.commonInternationalMenu * {
  box-sizing: border-box !important;
}
.commonInternationalMenu--common-popup-true {
  background-color: #fff;
  display: block;
}
.commonInternationalMenu__languageItem {
  width: 300px;
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 30px;
  text-decoration: none;
  text-transform: uppercase;
  color: #333;
  border-bottom: 1px solid #ccc;
  position: relative;
  transition: 0.4s ease-out background;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonInternationalMenu__languageItem {
    max-width: 100%;
    width: 280px;
    height: 40px;
    padding: 0 10px;
  }
}
.commonInternationalMenu__languageItem:hover {
  background-color: #e0e0e0;
}
.commonInternationalMenu__languageItem--selected {
  background-color: #ccc;
  font-weight: 600;
}
.commonInternationalMenu__languageItem--selected:hover {
  background-color: #ccc;
}
.commonInternationalMenu__languageName {
  font-size: 14px;
  font-family: sans-serif;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonInternationalMenu__languageName {
    font-size: 12px;
    font-weight: 500;
  }
}
.commonInternationalMenu__languageFlag {
  margin-left: auto;
  border: 1px solid #ccc;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonInternationalMenu__languageFlag {
    width: 20px;
  }
}
.commonInternationalMenu__languageFlag--rounded {
  border-radius: 5px;
}
.commonInternationalMenu__languageFlag--circle {
  border-radius: 50%;
}
.commonInternationalMenu__languageRadio {
  width: 17px;
  height: 17px;
  border: 1px solid #ccc;
  box-shadow: 0 0 3px #eee;
  border-radius: 50%;
  margin-left: 15px;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonInternationalMenu__languageRadio {
    width: 14px;
    height: 14px;
    margin-left: 10px;
  }
}
.commonInternationalMenu__languageRadio--selected {
  box-shadow: none;
  border-radius: 0;
  border: 0;
  background-image: url("https://i.binargon.cz/commonInternationalMenu/white/white/10/rgba(255,255,255,0)/ico_tick.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonInternationalMenu__languageRadio--selected {
    background-size: 17px;
  }
}
.commonInternationalMenu__currency {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px;
  width: 300px;
  max-width: 100%;
  background-color: #ccc;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonInternationalMenu__currency {
    padding-bottom: 0;
  }
}
.commonInternationalMenu__currency--flags-true {
  padding-top: 0;
}
.commonInternationalMenu__currencyItem {
  padding: 5px 10px;
  text-decoration: none;
  text-transform: uppercase;
  color: #333;
  margin: 5px;
  transition: 0.4s ease-out background;
  background-color: #fff;
}
.commonInternationalMenu__currencyItem:hover {
  outline: 2px solid #e0e0e0;
}
.commonInternationalMenu__currencyItem--selected {
  font-weight: 600;
  background-color: #ccc;
  border: 0;
  outline: 2px solid #e0e0e0;
}
.commonInternationalMenu__currencyName {
  font-size: 14px;
  font-family: sans-serif;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonInternationalMenu__currencyName {
    font-size: 12px;
  }
}
.commonUserDialog {
  padding: 28px 30px 10px;
}
.commonUserDialog--common-popup-true {
  background-color: #fff;
}
.commonUserDialog__loginForm__title {
  display: block;
  font-size: 24px;
  color: #2c2c2c;
  font-weight: 600;
  padding-bottom: 10px;
}
.commonUserDialog__loginForm__row:nth-of-type(3) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 5px;
  padding-bottom: 20px;
}
.commonUserDialog__loginForm__row--facebook {
  margin: 15px 0;
  border-top: 1px solid #e4e6e9;
}
.commonUserDialog__loginForm__row--seznam,
.commonUserDialog__loginForm__row--google {
  margin: 15px 0;
  display: flex;
  justify-content: center;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonUserDialog__loginForm__row--buttonsWrap {
    flex-direction: column-reverse;
  }
}
.commonUserDialog__loginForm__label {
  font-size: 16px;
  font-weight: 600;
  color: #3e3e3e;
  display: block;
}
.commonUserDialog__loginForm__input {
  border: 1px solid #e4e6e9;
  box-sizing: border-box !important;
  height: 39px;
  margin-top: 8px;
  margin-bottom: 14px;
  padding: 10px 16px;
  width: 340px;
  font-size: 16px;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonUserDialog__loginForm__input {
    width: 100%;
  }
}
.commonUserDialog__loginForm__button {
  min-width: 146px;
  padding: 0 20px;
  height: 46px;
  border: 2px solid #000;
  background-color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  box-sizing: border-box !important;
  outline: none;
  cursor: pointer;
  transition: all 0.2s;
  color: #000;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonUserDialog__loginForm__button {
    max-width: 200px;
  }
}
.commonUserDialog__loginForm__button:hover {
  background-color: #141620;
  color: #fff;
  border-color: #141620;
}
.commonUserDialog__loginForm__forgottenHref {
  font-size: 16px;
  text-decoration: underline;
  color: #3e3e3e;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonUserDialog__loginForm__forgottenHref {
    margin-top: 10px;
  }
}
.commonUserDialog__loginForm__forgottenHref:hover {
  text-decoration: none;
  color: #000;
}
.commonUserDialog__loginForm__facebookButton {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  padding: 8px;
  background-color: #fff;
  color: #3577c8;
  text-decoration: underline;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonUserDialog__loginForm__facebookButton {
    font-size: 14px;
  }
}
.commonUserDialog__loginForm__facebookButton:hover {
  text-decoration: none;
}
.commonUserDialog__loginForm__seznamButton {
  display: flex;
  align-items: center;
  color: #c00;
  border: 2px solid #c00;
  border-radius: 3px;
  width: max-content;
  padding-right: 8px;
  font-size: 16px;
  text-decoration: none;
}
.commonUserDialog__loginForm__seznamButton-icon {
  margin: 8px;
  width: max-content;
}
.commonUserDialog__loginForm__googleButton {
  display: flex;
  align-items: center;
  color: #757575;
  border-radius: 2px;
  width: max-content;
  padding-right: 8px;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 1px 2px #a9a9a9;
}
.commonUserDialog__loginForm__googleButton-icon {
  margin: 8px;
  width: max-content;
}
.commonUserDialog__loginForm__registrationDesc {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: #3e3e3e;
  min-height: 47px;
  background-color: #eff1f4;
  margin: 0 -30px -10px;
}
.commonUserDialog__loginForm__registrationHref {
  color: #3e3e3e;
  text-decoration: underline;
  margin-left: 6px;
}
.commonUserDialog__loginForm__registrationHref:hover {
  text-decoration: none;
  color: #000;
}
.commonUserDialog__account {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  background-color: #ffffff;
  min-width: 200px;
  margin: -18px -20px 0px;
}
.commonUserDialog__account__item {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 50%;
  color: #ffffff;
  font-size: 15px;
  padding: 12px 0;
  text-align: center;
  background-color: #178aef;
  outline: 1px solid #0e6fc5;
}
.commonUserDialog__account__item:hover {
  background-color: #0e6fc5;
}
.commonUserDialog__account__item__icon {
  display: block;
  margin: 0 auto;
  margin-bottom: 6px;
  background-size: contain;
}
.commonUserDialog__loyaltyRewardPrograme {
  color: #fff;
  width: 100%;
  background-color: #178aef;
  outline: 1px solid #0e6fc5;
}
.commonUserDialog__loyaltyRewardPrograme__title {
  text-align: center;
  padding: 15px;
}
.commonUserDialog__loyaltyRewardPrograme__container {
  display: flex;
  flex-wrap: wrap;
}
.commonUserDialog__loyaltyRewardPrograme__item {
  background-color: rgba(255,255,255,0.3);
  flex: 1;
  text-align: center;
  outline: 1px solid #0e6fc5;
  padding: 15px 0;
}
.fancybox-skin {
  padding: 0 !important;
}
.commonMessage {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1001;
}
.commonMessage--visible {
  display: flex;
}
.commonMessage__overlay {
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
}
.commonMessage__container {
  max-width: 100%;
  padding: 30px;
  background-color: #fff;
  position: relative;
  z-index: 10;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonMessage__container {
    margin: 20px;
    padding: 15px;
  }
}
.commonMessage__close {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 20px;
  top: 20px;
}
.commonMessage__close:after {
  display: flex;
  width: 100%;
  height: 100%;
  content: "\2716";
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  cursor: pointer;
  color: #ccc;
}
.commonMessage__text {
  text-align: center;
}
.commonMessage__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
}
.commonMessage__button {
  display: inline-block;
  border-width: 0px;
  background-color: #eee;
  border-radius: 3px;
  padding: 8px 20px;
  font-size: inherit;
  cursor: pointer;
  min-height: 35px;
  text-decoration: none;
  color: #000;
  white-space: nowrap;
}
.commonMessage__button--main {
  background-color: #178aef;
  color: #fff;
}
.commonMessage__button:first-letter {
  text-transform: uppercase;
}
.commonPopUp {
  display: none;
  position: fixed;
  z-index: 100000;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  justify-content: center;
  align-items: center;
}
.commonPopUp--visible {
  display: flex;
}
.commonPopUp__overlay {
  background-color: rgba(0,0,0,0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.commonPopUp__content {
  z-index: 1;
  position: relative;
  max-height: 70vh;
  overflow: auto;
}
.commonPopUp__close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 32px;
  height: 32px;
  opacity: 0.5;
  cursor: pointer;
  z-index: 10;
}
.commonPopUp__close:hover {
  opacity: 1;
}
.commonPopUp__close:before,
.commonPopUp__close:after {
  position: absolute;
  left: 15px;
  content: " ";
  height: 33px;
  width: 2px;
  background-color: #eee;
}
.commonPopUp__close:before {
  transform: rotate(45deg);
}
.commonPopUp__close:after {
  transform: rotate(-45deg);
}
.commonPopUp__dynamic-content {
  background-color: #fff;
  width: 800px;
  max-width: calc(100vw - 30px);
  max-height: calc(100vh - 30px);
  overflow: auto;
  padding: 25px;
}
.cSubmenu {
  --shadow: 0px 0px 16px 0px rgba(16,16,16,0.08);
  --img-width: 115px;
  --img-height: var(--img-width);
  --column-gap: 25px;
  --row-gap: var(--column-gap);
  position: absolute;
  z-index: 1000;
  left: 0;
  display: none;
  width: 100%;
}
.cSubmenu__content {
  background-color: #fff;
  padding: 30px 20px;
  max-height: calc(100vh - 200px);
  overflow: auto;
  box-shadow: var(--shadow);
}
.cSubmenu__grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 25px;
}
.cSubmenu__grid-item {
  display: grid;
  column-gap: 10px;
  grid-template-columns: max-content 1fr;
  grid-template-rows: max-content min-content 1fr;
  grid-template-areas: "image name" "image subcategories" "image all";
}
.cSubmenu__link-image {
  grid-area: image;
}
.cSubmenu__link-name {
  grid-area: name;
  text-decoration: none;
  font-weight: bold;
}
.cSubmenu__link-name:hover {
  text-decoration: underline;
}
.cSubmenu__image {
  width: var(--img-width);
  height: var(--img-height);
  vertical-align: top;
}
.cSubmenu__image--none {
  background-color: rgba(0,0,0,0.05);
}
.cSubmenu__list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  grid-area: subcategories;
}
.cSubmenu__list-link {
  text-decoration: none;
}
.cSubmenu__list-link:hover {
  text-decoration: underline;
}
.cSubmenu__all {
  grid-area: all;
  text-decoration: none;
}
.cSubmenu__all:hover {
  text-decoration: underline;
}
@keyframes commonVariantsImage {
  0% {
    transform: scale(1) translate(0,0);
  }
  100% {
    transform: scale(0.7) translate(0,-30%);
  }
}
.commonVariants__image--chagedToVariantImage {
  animation-name: commonVariantsImage;
  animation-fill-mode: both;
  animation-duration: 0.5s;
  animation-timing-function: linear;
}
.commonVariants__variantImages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.commonVariants__variantLink {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  min-width: 60px;
  min-height: 90px;
  border: 2px solid transparent;
  border-radius: 4px;
  text-decoration: none;
}
.commonVariants__variantLink--moreVariants {
  display: inline-block;
  border: 2px solid transparent;
  border-radius: 4px;
  font-size: 20px;
}
.commonVariants__variantLink:hover {
  border: 2px solid #aaa;
}
.commonVariants__variantImage {
  width: 60px;
  height: 90px;
}
.commonVariants__param {
  display: flex;
  flex-wrap: wrap;
}
.commonVariants__value {
  cursor: default;
  padding: 2px 5px;
}
.commonVariants__value--inStock {
  color: #009e0f;
}
.commonVariants__value--notInStock {
  color: #f00;
}
.commonVariants__value--unavailableCombination {
  opacity: 0.2;
  text-decoration: line-through;
}
.commonVariants__countText {
  margin-left: 3px;
}
.commonNoProducts__explanation {
  margin-bottom: 25px;
  font-size: 30px;
  font-weight: 500;
}
.commonNoProducts__explanation-link {
  color: #178aef;
}
.commonNoProducts__contact {
  background-color: ;
  padding: 25px;
  width: max-content;
  display: grid;
  row-gap: 10px;
}
.commonNoProducts__contact-title {
  font-weight: 600;
  margin-right: 7px;
}
.commonNoProducts__contact-link {
  color: #178aef;
  text-decoration: none;
}
.commonNoProducts__contact-link:hover {
  text-decoration: underline;
}
.commonNoProducts__search-words {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 25px 0;
}
.commonNoProducts__search-words-title {
  font-size: 20px;
}
.commonNoProducts__search-words-button {
  vertical-align: middle;
  border: 1px solid #178aef;
  background-color: #178aef1A;
  height: 40px;
  border-radius: 5px;
  text-decoration: none;
  color: #178aef;
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  display: flex;
  align-items: center;
  column-gap: 7px;
  padding: 0 14px;
  cursor: pointer;
}
.commonNoProducts__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 25px 0;
}
.commonNoProducts__filter {
  border: 1px solid #178aef;
  background-color: #178aef1A;
  height: 40px;
  border-radius: 5px;
  text-decoration: none;
  color: #178aef;
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  display: flex;
  align-items: center;
  column-gap: 7px;
  padding: 0 14px;
}
.commonNoProducts__filter--all {
  color: #e54a4b;
  background-color: transparent;
  border: 0;
}
.commonNoProducts__filter--all .commonNoProducts__filter-icon:before,
.commonNoProducts__filter--all .commonNoProducts__filter-icon:after {
  background-color: #e54a4b;
}
.commonNoProducts__filter-icon {
  position: relative;
  top: 0;
  right: 0;
  display: block;
  width: 16px;
  height: 16px;
  font-size: 0;
}
.commonNoProducts__filter-icon:before,
.commonNoProducts__filter-icon:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 16px;
  background-color: #178aef;
  transform: rotate(45deg) translate(-50%,-50%);
  transform-origin: top left;
  content: "";
}
.commonNoProducts__filter-icon:after {
  transform: rotate(-45deg) translate(-50%,-50%);
}
.commonTree {
  --toggle-width: 10px;
  --toggle-height: 10px;
  --toggle-minus-img: url("https://i.binargon.cz/commonTree/rgba(100,100,100,1)/minus.svg");
  --toggle-plus-img: url("https://i.binargon.cz/commonTree/rgba(100,100,100,1)/plus.svg");
  --toggle-loading-img: url("https://i.binargon.cz/loading/rgba(100,100,100,1)/loading1.svg");
}
/* ODRAZKOVY SEZNAM */
	.commonTree__list {
  padding: 0 0 0 20px;
  margin: 0;
  list-style-type: none;
  width: 100%;
}
.commonTree__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.commonTree__link {
  flex-grow: 1;
  height: 100%;
}
.commonTree__link:hover {
  background-color: #aaa;
}
.commonTree__link--open {
  font-weight: bold;
}
.commonTree__link--selected {
  color: #f0f;
}
.commonTree__toggle {
  display: block;
  width: var(--toggle-width);
  height: var(--toggle-height);
  cursor: pointer;
  background: var(--toggle-plus-img) center center no-repeat;
}
.commonTree__toggle--open {
  background-image: var(--toggle-minus-img);
}
.commonTree__toggle--loading {
  background-image: var(--toggle-loading-img);
}
.cShare {
  border: 0px solid transparent;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cShare--hidden {
  display: none;
}
.cShare__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255,0,255,0.2);
}
.cShare__dialog {
  background-color: #fff;
  width: 400px;
}
.cShare__share {
  display: flex;
  cursor: pointer;
}
.cShare__shareIcon {
  max-width: 45px;
  max-height: 45px;
}
.cWhisperer {
  position: absolute;
  top: 0;
}
.cWhisperer--hidden {
  display: none;
}
.cWhisperer__overlay {
  position: relative;
  background-color: #f0f;
}
.cWhisperer__close {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}
.cWhisperer__close-icon {
  min-width: 20px;
  min-height: 20px;
  background-image: url("https://i.binargon.cz/common/close.svg");
}
.cWhisperer__container {
  position: absolute;
  border: 1px solid #eee;
  background-color: #fff;
}
.cWhisperer__search--hidden {
  display: none;
}
.cWhispererSelectedItem {
  background-color: #f0f;
}
.cWhispererNotFound {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.cWhispererNotFound__search {
  font-style: italic;
}
.cWhispererNotFound__after {
  font-weight: bold;
}
.cWhispererSubmitButton {
  text-align: center;
  padding: 5px;
}
.cWhispererSubmitButton__button {
  display: inline-block;
  padding: 10px;
  border-radius: 10px;
  background: #888;
  color: #fff;
}
.cWhispererProduct {
  display: block;
}
.cWhispererProduct__price-tax-excluded {
  display: none;
}
.cWhispererCategory {
  display: block;
}
.cWhispererProducer {
  display: block;
}
.cWhispererCMS {
  display: block;
}
.cWhispererBlog {
  display: block;
}
.cWhispererDiscussion {
  display: block;
}
.cWhispererHistorieOdeslane {
  display: flex;
  justify-content: space-between;
}
.cHeaderMenuOverlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255,0,255,0.2);
  pointer-events: none;
}
.cHeaderMenuOverlay--hidden {
  display: none;
}
.commonFilterRange {
  --track-height: 15px;
  --track-bg: #eee;
  --track-selected-bg: #f00;
  --thumb-width: 15px;
  --thumb-height: 15px;
  --thumb-radius: 50%;
  --thumb-bg: #000;
  display: grid;
  position: relative;
  grid-template-areas: "min . max" "range range range";
  grid-template-columns: 100px 1fr 100px;
  row-gap: 15px;
}
.commonFilterRange__input--min {
  grid-area: min;
}
.commonFilterRange__input--max {
  grid-area: max;
  text-align: right;
}
.commonFilterRange__range {
  margin: 0;
  background: none;
  font: inherit;
  pointer-events: none;
  grid-area: range;
  height: var(--track-height);
  position: relative;
  z-index: 1;
}
.commonFilterRange__range::-webkit-slider-runnable-track,
.commonFilterRange__range::-webkit-slider-thumb,
.commonFilterRange__range {
  -webkit-appearance: none;
}
.commonFilterRange__range::-webkit-slider-runnable-track,
.commonFilterRange__range::-moz-range-track {
  width: 100%;
  height: 100%;
  background: none;
}
.commonFilterRange__range::-webkit-slider-thumb {
  border: none;
  width: var(--thumb-width);
  height: var(--thumb-height);
  border-radius: var(--thumb-radius);
  background: var(--thumb-bg);
  pointer-events: auto;
  position: relative;
  z-index: 10;
}
.commonFilterRange__range::-moz-range-thumb {
  border: none;
  width: var(--thumb-width);
  height: var(--thumb-height);
  border-radius: var(--thumb-radius);
  background: var(--thumb-bg);
  pointer-events: auto;
  position: relative;
  z-index: 10;
}
.commonFilterRange__track {
  position: relative;
  background-color: var(--track-bg);
  width: auto;
  height: var(--track-height);
  overflow: hidden;
  padding-left: calc(var(--thumb-width) / 2);
  padding-right: calc(var(--thumb-width) / 2);
  grid-area: range;
}
.commonFilterRange__trackSelectedRange {
  background-color: var(--track-selected-bg);
  width: auto;
  height: var(--track-height);
}
@keyframes commonToCart-adding-show {
  0% {
    top: -100px;
  }
  100% {
    top: 0px;
  }
}
@keyframes commonToCart-adding-hide {
  0% {
    top: 0px;
  }
  100% {
    top: -100px;
  }
}
.commonToCart-adding {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 18px;
  z-index: 1000;
  pointer-events: none;
}
.commonToCart-adding__overlay {
  pointer-events: none;
}
.commonToCart-adding__content {
  border-style: solid;
  border-width: 1px;
  border-color: #e0e0e0;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: 0px 8px 14px 0px rgba(0,0,0,0.1);
  padding: 8px 16px;
  font-weight: bold;
  font-size: 16px;
  color: #222225;
  display: flex;
  gap: 15px;
  align-items: center;
  position: relative;
}
.commonToCart-adding__content--show {
  animation-name: commonToCart-adding-show;
  animation-duration: 0.05s;
  animation-timing-function: linear;
}
.commonToCart-adding__content--hide {
  animation-name: commonToCart-adding-hide;
  animation-duration: 0.05s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}
.commonToCart-adding__loading {
  --s-loader-width: 20px;
  --s-loader-height: var(--s-loader-width);
  --s-loader-border-color-trans: rgba(0,0,0,0.3);
  --s-loader-border-color-full: #2c2c2c;
  width: var(--s-loader-width);
  height: var(--s-loader-height);
  border: 3px solid var(--s-loader-border-color-trans);
  border-left-color: var(--s-loader-border-color-full);
  border-radius: 50%;
  background: transparent;
  animation-name: rotate-s-loader;
  animation-iteration-count: infinite;
  animation-duration: 1s;
  animation-timing-function: linear;
  position: relative;
}
@keyframes rotate-s-loader {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.commonToCart-mezikosik {
  position: fixed;
  z-index: 100000;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.commonToCart-mezikosik__overlay {
  background-color: rgba(0,0,0,0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.commonToCart-mezikosik__close {
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url('https://i.binargon.cz/demoeshopkonfi/rgba(0,0,0,1)/ico_cross.svg');
  background-size: 20px;
  right: 10px;
  top: 10px;
}
.commonToCart-mezikosik__content {
  background-color: #fff;
  max-width: 400px;
  padding: 15px;
  width: 100%;
  margin: 15px;
  text-align: center;
  padding: 40px;
}
.commonToCart-mezikosik__button {
  height: 50px;
  border: 0;
  color: #1a1937;
  display: flex;
  margin: auto;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 40px;
  width: max-content;
  min-width: 175px;
  max-width: 100%;
  cursor: pointer;
}
.commonToCart-mezikosik__button--continue {
  background-color: #c1c1c1;
  margin-top: 10px;
}
.commonToCart-mezikosik__button--basket {
  background-color: #ffc500;
  font-weight: bold;
  margin-top: 40px;
}
.commonToCart-mezikosik__header {
  font-weight: bold;
  font-size: 28px;
  line-height: 32px;
  margin-bottom: 10px;
  padding: 0 20px;
}
.commonToCart-mezikosik__name {
  font-size: 20px;
  font-weight: 600;
  margin-top: 20px;
}
.commonToCart-mezikosik__code {
  font-size: 14px;
  color: #888;
}
.commonToCart-mezikosik__price {
  display: none;
}
.commonToCart-mezikosik__priceVat {
  display: none;
}
.commonToCart-mezikosik__graph {
  margin-top: 20px;
}
.commonToCart-mezikosik__graphRange {
  height: 14px;
  margin-bottom: 20px;
  background: #f7f7f7;
}
.commonToCart-mezikosik__graphValue {
  height: 100%;
  background-color: #aac63c;
}
.commonToCart-mezikosik__graphText {
  padding: 10px 0;
  font-size: 15px;
  line-height: 17px;
  margin-bottom: 6px;
}
.commonToCart-mezikosik__graphPrice {
  font-weight: bold;
}
.commonToCart-mezikosik__freeDelivery {
  padding: 10px 0;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
  color: #aac63c;
}
.commonToCart-mezikosik__warning {
  border-radius: 8px;
  padding: 10px;
  background-color: #edcfcf;
  color: #e54a4b;
}
.commonBurger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.commonBurger__icon {
  background: no-repeat url("svg/menu.svg") center center transparent;
  width: 20px;
  height: 20px;
}
.commonBurger__icon--loading {
  background-image: url("https://i.binargon.cz/loading/rgba(100,100,100,1)/loading1.svg");
}
.commonBurger__icon--close {
  background-image: url("https://i.binargon.cz/common/rgba(100,100,100,1)/close.svg");
}
.commonBurger__notification {
  min-width: 16px;
  height: 16px;
  position: absolute;
  background-color: #e23e21;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 11px;
  margin-left: 5px;
  left: 50%;
  top: 0;
}
.commonBurgerMenu {
  box-sizing: border-box;
  position: absolute;
  z-index: 111111;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0px;
}
.commonBurgerMenu--visible {
  display: block;
}
.commonBurgerMenu--hidden {
  display: none;
}
.commonBurgerMenu__overlay {
  position: absolute;
  z-index: 111112;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0px;
  background-color: rgba(0,0,0,0.5);
}
.commonBurgerMenu__overlay--visible {
  display: block;
}
.commonBurgerMenu__overlay--hidden {
  display: none;
}
.commonBurgerMenu__content {
  flex-direction: column;
  position: absolute;
  z-index: 111112;
  top: 0px;
  right: 0px;
  bottom: 0px;
  min-width: 320px;
  max-width: 500px;
  width: 320px;
  background-color: #fff;
}
.commonBurgerMenu__content--visible {
  display: flex;
}
.commonBurgerMenu__content--hidden {
  display: none;
}
.commonBurgerMenu__header {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
  box-shadow: 0px 5px 5px rgba(100,100,100,0.05);
  padding-top: 10px;
  padding-right: 0px;
  padding-bottom: 10px;
  padding-left: 20px;
}
.commonBurgerMenu__header-name {
  flex-grow: 1;
  font-weight: bold;
  font-size: 25px;
}
.commonBurgerMenu__header-close-icon {
  background: no-repeat url("https://i.binargon.cz/demoeshopmaxi/rgba(23,138,239,1)/close.svg") center center;
  background-size: 40%;
  width: 60px;
  height: 60px;
  cursor: pointer;
}
.commonBurgerMenu__scroller {
  flex-grow: 1;
  overflow-y: scroll;
  scroll-behavior: smooth;
}
.commonBurgerMenu__scroller::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: rgba(255,255,255,0);
}
.commonBurgerMenu__scroller::-webkit-scrollbar {
  width: 4px;
}
.commonBurgerMenu__scroller::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: rgba(255,255,255,0);
}
.commonBurgerMenu__scroller:hover::-webkit-scrollbar-track,
.commonBurgerMenu__scroller:hover::-webkit-scrollbar-thumb {
  background-color: rgba(50,50,50,0.3);
}
.commonBurgerMenu__languages {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 15px;
}
.commonBurgerMenu__language {
  display: flex;
  flex-direction: column;
  gap: 2px;
  justify-content: flex-start;
  align-items: center;
  padding: 6px;
}
.commonBurgerMenu__language--selected {
  border: 2px solid #888;
  border-radius: 3px;
}
.commonBurgerMenu__language-flag {
  width: 40px;
  max-height: 40px;
  border: 1px solid #eee;
  border-radius: 3px;
}
.commonBurgerMenu__currencies {
  display: flex;
  gap: 20px;
  padding: 15px;
}
.commonBurgerMenu__currency {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px;
  width: 40px;
  height: 40px;
}
.commonBurgerMenu__currency--selected {
  border: 2px solid #888;
  border-radius: 3px;
}
.commonBurgerMenu__textpages {
  display: flex;
}
.commonBurgerMenu__categories-root--hidden {
  display: none;
}
.commonBurgerMenu__categories {
  padding-left: 20px;
}
.commonBurgerMenu__categories--level-1 {
  padding-left: 0;
}
.commonBurgerMenu__categories--hidden {
  display: none;
}
.commonBurgerMenu__category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-right: 0px;
  padding-bottom: 10px;
  padding-left: 20px;
  font-size: 17px;
}
.commonBurgerMenu__category-link {
  display: flex;
  align-items: center;
  flex-grow: 1;
  color: #222;
}
.commonBurgerMenu__category-image {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-right: 8px;
}
.commonBurgerMenu__category-name {
  display: inline-block;
  flex-grow: 1;
}
.commonBurgerMenu__category-dropdown {
  flex-grow: 0;
  display: inline-block;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: url("https://i.binargon.cz/commonTree/rgba(100,100,100,1)/minus.svg") center center no-repeat;
  background-size: 25%;
}
.commonBurgerMenu__category-dropdown--closed {
  background-image: url("https://i.binargon.cz/commonTree/rgba(100,100,100,1)/plus.svg");
}
.commonBurgerMenu__category-dropdown--loading {
  background-image: url("https://i.binargon.cz/loading/rgba(100,100,100,1)/loading1.svg");
}
.commonBurgerMenu__category--level-1 {
  border-top: 1px solid #f0f0f0;
  font-size: 20px;
}
.commonBurgerMenu__cmsgroups {
  padding-left: 20px;
}
.commonBurgerMenu__cmsgroups--level-1 {
  padding-left: 0;
}
.commonBurgerMenu__cmsgroups--hidden {
  display: none;
}
.commonBurgerMenu__cmsgroup {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-right: 0px;
  padding-bottom: 10px;
  padding-left: 20px;
  font-size: 17px;
}
.commonBurgerMenu__cmsgroup-link {
  display: flex;
  align-items: center;
  flex-grow: 1;
  color: #222;
}
.commonBurgerMenu__cmsgroup-name {
  display: inline-block;
  flex-grow: 1;
}
.commonBurgerMenu__cmsgroup-dropdown {
  flex-grow: 0;
  display: inline-block;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: url("https://i.binargon.cz/commonTree/rgba(100,100,100,1)/minus.svg") center center no-repeat;
  background-size: 25%;
}
.commonBurgerMenu__cmsgroup-dropdown--closed {
  background-image: url("https://i.binargon.cz/commonTree/rgba(100,100,100,1)/plus.svg");
}
.commonBurgerMenu__cmsgroup-dropdown--loading {
  background-image: url("https://i.binargon.cz/loading/rgba(100,100,100,1)/loading1.svg");
}
.commonBurgerMenu__cmsgroup--level-1 {
  border-top: 1px solid #f0f0f0;
  font-size: 20px;
}
.commonBurgerMenu__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  border-top: 1px solid #f0f0f0;
  min-height: 60px;
  padding-top: 10px;
  padding-right: 0px;
  padding-bottom: 10px;
  padding-left: 20px;
}
.commonBurgerMenu__row-text {
  flex-grow: 1;
  font-size: 20px;
  color: #222;
}
.commonBurgerMenu__row-count {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  color: #222;
  flex-grow: 0;
  min-width: 26px;
  height: 26px;
  border-radius: 13px;
  background-color: #eee;
  text-align: center;
  margin-right: 10px;
}
.commonBurgerMenu__row-dropdown {
  flex-grow: 0;
  width: 40px;
  height: 40px;
  background: url("https://i.binargon.cz/commonTree/rgba(100,100,100,1)/plus.svg") center center no-repeat;
  background-size: 25%;
}
.commonBurgerMenu__row-dropdown--open {
  background-image: url("https://i.binargon.cz/commonTree/rgba(100,100,100,1)/minus.svg");
}
.commonBurgerMenu__contacts {
  border-top: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
}
.commonBurgerMenu__contact {
  display: inline-block;
  padding: 15px 0;
  --font-size: 20px;
  color: #222;
}
.commonBurgerMenu__submenu {
  padding-bottom: 10px;
}
.commonBurgerMenu__submenu--hidden {
  display: none;
}
.commonBurgerMenu__link {
  display: block;
  padding-top: 10px;
  padding-right: 0px;
  padding-bottom: 10px;
  padding-left: 20px;
  font-size: 17px;
  color: #222;
}
#js-company,
#js-delivery {
  overflow: visible !important;
}
.commonCheckoutBubble {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.01em;
  background-color: #fe4132;
  border-radius: 0;
  height: 100%;
}
.commonCheckout {
  width: 100%;
  color: #333333;
}
.commonCheckoutButtons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 25px 0;
  align-items: center;
  width: 100%;
}
.commonCheckoutButtons__button {
  padding: 0 20px;
  display: block;
  text-decoration: none;
  font-size: 12px;
  text-transform: uppercase;
  cursor: hand;
  cursor: pointer;
  border: 0;
  transition: 200ms ease all;
}
.commonCheckoutButtons__button--left {
  height: 35px;
  color: #333333;
  background-color: #f5f5f5;
  line-height: 35px;
}
.commonCheckoutButtons__button--left:hover {
  background-color: #dedede;
}
.commonCheckoutButtons__button--right {
  min-height: 50px;
  line-height: 54px;
  background-color: #73ad56;
  color: #ffffff;
  font-size: 24px;
  line-height: initial !important;
  flex-wrap: wrap;
  align-items: center;
  font-weight: 700;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutButtons__button--right {
    font-size: 12px;
    line-height: 50px;
  }
}
.commonCheckoutButtons__button--right:hover {
  background-color: #638e4d;
}
.commonCheckoutButtons__button-row {
  display: block;
  width: 100%;
}
.commonCheckoutButtons__button-row--2 {
  font-size: 12px;
  font-weight: normal;
  text-transform: none;
}
.commonCheckoutCommonBox {
  width: 100%;
  background-color: #f8f9f9;
  border: 1px solid #eaeaea;
  border-bottom: 2px solid #dddddd;
  padding: 20px 30px;
  margin-bottom: 20px;
  font-size: 14px;
}
@media all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutCommonBox {
    padding: 10px;
  }
}
.commonCheckoutCommonBox .specialniDoprava .block2 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  margin: 20px 0;
}
.commonCheckoutCommonBox .specialniDoprava .block2 .radio {
  order: 1;
  margin-right: 5px;
  margin-top: 0;
}
.commonCheckoutCommonBox .specialniDoprava .block2 .logo {
  order: 2;
  margin-right: 5px;
  width: 60px;
  height: 30px;
  padding: 0;
  background-size: 100% auto;
}
@media all and (min-width: 767px) and (max-width: 1279px),all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutCommonBox .specialniDoprava .block2 .logo {
    display: none;
  }
}
.commonCheckoutCommonBox .specialniDoprava .block2 .nazev {
  order: 3;
  flex: 1;
  font-weight: 700;
  position: relative;
}
.commonCheckoutCommonBox .specialniDoprava .block2 .nazev .napoveda {
  color: #999999;
  font-weight: 700;
  margin-left: 3px;
}
.commonCheckoutCommonBox .specialniDoprava .block2 .nazev .textNapovedy {
  background-color: #f8f9f9;
  border: 1px solid #dddddd;
  padding: 5px 10px;
  margin-top: -5px;
  margin-left: 5px;
  font-weight: normal;
  font-size: 13px;
  box-shadow: 0 0 10px rgba(100,100,100,0.5);
}
.commonCheckoutCommonBox .specialniDoprava .block2 .cena {
  order: 4;
  font-weight: 700;
  margin-left: auto;
}
.commonCheckoutCommonBox .specialniDoprava .block2 .popis {
  order: 5;
  width: 100%;
  font-size: 13px;
  padding-left: 18px;
}
.commonCheckoutCommonBox .specialniDoprava .block2 .popis p {
  margin-bottom: 0;
}
.commonCheckoutCommonBox .specialniDoprava .block2 .popis img {
  max-width: 100%;
}
.commonCheckoutCommonBox .specialniDoprava .produkt {
  color: #73ad56;
}
.commonCheckoutCommonBox .block2 label {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  margin: 20px 0;
}
.commonCheckoutCommonBox .block2 label .radio {
  order: 1;
  margin-right: 5px;
  margin-top: 0;
}
.commonCheckoutCommonBox .block2 label .logo {
  order: 2;
  padding: 0;
  margin-right: 5px;
  mix-blend-mode: multiply;
  background-size: contain !important;
}
@media all and (min-width: 767px) and (max-width: 1279px),all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutCommonBox .block2 label .logo {
    display: none;
  }
}
.commonCheckoutCommonBox .block2 label .nazev {
  order: 3;
  flex: 1;
  font-weight: 700;
  position: relative;
}
.commonCheckoutCommonBox .block2 label .nazev .napoveda {
  color: #999999;
  font-weight: 700;
  margin-left: 3px;
}
.commonCheckoutCommonBox .block2 label .nazev .textNapovedy {
  background-color: #f8f9f9;
  border: 1px solid #dddddd;
  padding: 5px 10px;
  margin-top: -5px;
  margin-left: 5px;
  font-weight: normal;
  font-size: 13px;
  box-shadow: 0 0 10px rgba(100,100,100,0.5);
}
.commonCheckoutCommonBox .block2 label .cena {
  order: 4;
  font-weight: 700;
  margin-left: auto;
}
.commonCheckoutCommonBox .block2 label .popis {
  order: 5;
  width: 100%;
  font-size: 13px;
  padding-left: 18px;
}
.commonCheckoutCommonBox .block2 label .popis p {
  margin-bottom: 0;
}
.commonCheckoutCommonBox .block2 label .popis img {
  max-width: 100%;
}
.commonCheckoutCommonBox .block2 .pokladnaLib {
  margin-left: 23px;
}
.commonCheckoutCommonBox .block2 .pokladnaLib a {
  background-color: #73ad56;
  transition: 200ms ease all;
  display: inline-block;
  padding: 5px 10px;
  color: #ffffff;
  text-decoration: none;
}
.commonCheckoutCommonBox .block2 .pokladnaLib a:hover {
  background-color: #638e4d;
}
.commonCheckoutErrors {
  text-align: center;
  padding: 50px 0;
}
.commonCheckoutFreeShipping {
  padding: 20px 0;
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonCheckoutFreeShipping {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutFreeShipping {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0px 25px;
    padding-bottom: 25px;
    width: 100%;
  }
}
.commonCheckoutFreeShipping__container {
  display: flex;
}
@media all and (min-width: 767px) and (max-width: 1279px),all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutFreeShipping__container {
    order: 2;
    align-items: center;
    max-width: 100%;
    padding-top: 15px;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutFreeShipping__container {
    flex-direction: column;
    width: 100%;
  }
}
.commonCheckoutFreeShipping__container-icon {
  margin-right: 15px;
  margin-top: 4px;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutFreeShipping__container-icon {
    margin-right: 0;
    font-size: 27px;
  }
}
.commonCheckoutFreeShipping__container-text {
  width: 430px;
  border-bottom: 4px solid #f1f1f1;
  position: relative;
  font-size: 15px;
  letter-spacing: 0.025em;
  min-height: 28px;
  max-width: 100%;
  padding-bottom: 15px;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutFreeShipping__container-text {
    width: 100%;
    height: auto;
    padding-bottom: 10px;
    text-align: center;
    font-size: 13px;
  }
}
.commonCheckoutFreeShipping__container-progress {
  position: absolute;
  width: 0;
  left: 0;
  bottom: -4px;
  height: 4px;
  background: #000000;
  background: #89b432;
  max-width: 100%;
}
.commonCheckoutFreeShipping__container-progress:before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #89b432;
  position: absolute;
  right: -8px;
  top: -5px;
}
.commonCheckoutFreeShipping__container-progress:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  right: -4px;
  top: -2px;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid #fff;
}
.commonCheckoutFreeShipping__container-free {
  font-weight: bold;
}
.commonCheckoutPersonal,
.commonCheckoutCompany,
.commonCheckoutDelivery {
  background-color: #f8f9f9;
  border: 1px solid #eaeaea;
  border-bottom: 2px solid #dddddd;
  padding: 20px 30px;
  margin-bottom: 20px;
  overflow: hidden;
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonCheckoutPersonal,
  .commonCheckoutCompany,
  .commonCheckoutDelivery {
    padding: 20px 20px;
  }
}
@media all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutPersonal,
  .commonCheckoutCompany,
  .commonCheckoutDelivery {
    padding: 10px;
  }
}
.commonCheckoutPersonal__validation,
.commonCheckoutCompany__validation,
.commonCheckoutDelivery__validation {
  order: 1;
  height: 0;
  opacity: 0;
  overflow: hidden;
  font-size: 12px;
  transition: opacity 0.3s ease-in;
  color: #000;
}
.commonCheckoutPersonal__row,
.commonCheckoutCompany__row,
.commonCheckoutDelivery__row {
  min-height: 50px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 4px;
}
@media all and (min-width: 767px) and (max-width: 1279px),all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutPersonal__row,
  .commonCheckoutCompany__row,
  .commonCheckoutDelivery__row {
    height: auto;
  }
}
@media all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutPersonal__row:last-child,
  .commonCheckoutCompany__row:last-child,
  .commonCheckoutDelivery__row:last-child {
    margin-bottom: 15px;
  }
}
.commonCheckoutPersonal__label,
.commonCheckoutCompany__label,
.commonCheckoutDelivery__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  flex: 1;
  padding-top: 8px;
}
@media all and (min-width: 767px) and (max-width: 1279px),all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutPersonal__label,
  .commonCheckoutCompany__label,
  .commonCheckoutDelivery__label {
    width: 100%;
    margin: 10px 0;
    flex: auto;
    padding-top: 0;
  }
}
.commonCheckoutPersonal__value,
.commonCheckoutCompany__value,
.commonCheckoutDelivery__value {
  flex: 1;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
@media all and (min-width: 767px) and (max-width: 1279px),all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutPersonal__value,
  .commonCheckoutCompany__value,
  .commonCheckoutDelivery__value {
    width: 100%;
    flex: auto;
  }
}
.commonCheckoutPersonal__value__input,
.commonCheckoutPersonal__value__select,
.commonCheckoutCompany__value__input,
.commonCheckoutCompany__value__select,
.commonCheckoutDelivery__value__input,
.commonCheckoutDelivery__value__select {
  width: 100%;
  height: 35px;
  border: 1px solid #dddddd;
  padding: 0 10px;
  order: 2;
}
.commonCheckoutPersonal__value__input:invalid + .commonCheckoutPersonal__validation,
.commonCheckoutPersonal__value__input:invalid + .commonCheckoutCompany__validation,
.commonCheckoutPersonal__value__input:invalid + .commonCheckoutDelivery__validation,
.commonCheckoutPersonal__value__select:invalid + .commonCheckoutPersonal__validation,
.commonCheckoutPersonal__value__select:invalid + .commonCheckoutCompany__validation,
.commonCheckoutPersonal__value__select:invalid + .commonCheckoutDelivery__validation,
.commonCheckoutCompany__value__input:invalid + .commonCheckoutPersonal__validation,
.commonCheckoutCompany__value__input:invalid + .commonCheckoutCompany__validation,
.commonCheckoutCompany__value__input:invalid + .commonCheckoutDelivery__validation,
.commonCheckoutCompany__value__select:invalid + .commonCheckoutPersonal__validation,
.commonCheckoutCompany__value__select:invalid + .commonCheckoutCompany__validation,
.commonCheckoutCompany__value__select:invalid + .commonCheckoutDelivery__validation,
.commonCheckoutDelivery__value__input:invalid + .commonCheckoutPersonal__validation,
.commonCheckoutDelivery__value__input:invalid + .commonCheckoutCompany__validation,
.commonCheckoutDelivery__value__input:invalid + .commonCheckoutDelivery__validation,
.commonCheckoutDelivery__value__select:invalid + .commonCheckoutPersonal__validation,
.commonCheckoutDelivery__value__select:invalid + .commonCheckoutCompany__validation,
.commonCheckoutDelivery__value__select:invalid + .commonCheckoutDelivery__validation {
  opacity: 1;
  overflow: visible;
  height: auto;
  padding-bottom: 3px;
}
.commonCheckoutPersonal__value__input:focus + .commonCheckoutPersonal__validation,
.commonCheckoutPersonal__value__input:focus + .commonCheckoutCompany__validation,
.commonCheckoutPersonal__value__input:focus + .commonCheckoutDelivery__validation,
.commonCheckoutPersonal__value__select:focus + .commonCheckoutPersonal__validation,
.commonCheckoutPersonal__value__select:focus + .commonCheckoutCompany__validation,
.commonCheckoutPersonal__value__select:focus + .commonCheckoutDelivery__validation,
.commonCheckoutCompany__value__input:focus + .commonCheckoutPersonal__validation,
.commonCheckoutCompany__value__input:focus + .commonCheckoutCompany__validation,
.commonCheckoutCompany__value__input:focus + .commonCheckoutDelivery__validation,
.commonCheckoutCompany__value__select:focus + .commonCheckoutPersonal__validation,
.commonCheckoutCompany__value__select:focus + .commonCheckoutCompany__validation,
.commonCheckoutCompany__value__select:focus + .commonCheckoutDelivery__validation,
.commonCheckoutDelivery__value__input:focus + .commonCheckoutPersonal__validation,
.commonCheckoutDelivery__value__input:focus + .commonCheckoutCompany__validation,
.commonCheckoutDelivery__value__input:focus + .commonCheckoutDelivery__validation,
.commonCheckoutDelivery__value__select:focus + .commonCheckoutPersonal__validation,
.commonCheckoutDelivery__value__select:focus + .commonCheckoutCompany__validation,
.commonCheckoutDelivery__value__select:focus + .commonCheckoutDelivery__validation {
  color: #f00;
}
.commonCheckoutPersonal__value__input:read-only,
.commonCheckoutPersonal__value__select--read-only:read-only,
.commonCheckoutCompany__value__input:read-only,
.commonCheckoutCompany__value__select--read-only:read-only,
.commonCheckoutDelivery__value__input:read-only,
.commonCheckoutDelivery__value__select--read-only:read-only {
  opacity: 0.5;
  background-color: #eee;
  cursor: not-allowed;
  pointer-events: none;
}
.commonCheckoutPersonal__value img,
.commonCheckoutCompany__value img,
.commonCheckoutDelivery__value img {
  position: absolute;
  right: -30px;
  top: 11px;
}
@media all and (min-width: 767px) and (max-width: 1279px),all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutPersonal__value img,
  .commonCheckoutCompany__value img,
  .commonCheckoutDelivery__value img {
    right: -22px;
  }
}
.commonCheckoutPersonal__ICDPH,
.commonCheckoutCompany__ICDPH,
.commonCheckoutDelivery__ICDPH {
  order: 3;
  font-weight: bold;
  font-size: 14px;
  text-align: right;
  width: 100%;
  position: absolute;
  bottom: -25px;
}
.commonCheckoutPersonal__checkboxLabel,
.commonCheckoutCompany__checkboxLabel,
.commonCheckoutDelivery__checkboxLabel {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin: 10px 0;
  line-height: 20px;
}
.commonCheckoutPersonal__checkboxLabel__input,
.commonCheckoutCompany__checkboxLabel__input,
.commonCheckoutDelivery__checkboxLabel__input {
  margin-right: 7px;
  vertical-align: top;
  margin-top: 4px;
}
.commonCheckoutStep1__container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.commonCheckoutStep1__container__left,
.commonCheckoutStep1__container__right {
  max-width: calc(50% - 20px);
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutStep1__container__left,
  .commonCheckoutStep1__container__right {
    width: 100%;
    max-width: 100%;
  }
}
.commonCheckoutStep1__deleteAll {
  display: flex;
  justify-content: flex-end;
  padding-top: 5px;
  padding-bottom: 10px;
}
.commonCheckoutStep1__deleteAll-button {
  padding: 0 20px;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: hand;
  cursor: pointer;
  border: 0;
  transition: 200ms ease all;
  height: 30px;
  background-color: #73ad56;
  color: #ffffff;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutStep1__deleteAll-button {
    font-size: 12px;
  }
}
.commonCheckoutStep2__container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutStep2__container {
    max-width: 550px;
  }
}
.commonCheckoutStep2__container__left,
.commonCheckoutStep2__container__right {
  width: calc(50% - 20px);
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutStep2__container__left,
  .commonCheckoutStep2__container__right {
    width: 100%;
  }
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonCheckoutStep2__container__left {
    width: 40%;
  }
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonCheckoutStep2__container__right {
    width: calc(60% - 30px);
  }
}
.commonCheckoutStep2__heading {
  color: #333333;
  font-size: 18px;
  font-weight: 700;
  margin: 20px 0;
  padding-left: 20px;
  border-left: 5px solid #73ad56;
}
.commonCheckoutStep2__note {
  background-color: #f8f9f9;
  border: 1px solid #eaeaea;
  border-bottom: 2px solid #dddddd;
  padding: 20px 30px;
  margin-bottom: 20px;
  width: 100%;
}
@media all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutStep2__note {
    padding: 10px;
  }
}
.commonCheckoutStep2__note__description {
  padding-bottom: 20px;
}
.commonCheckoutStep2__note__textarea {
  border: 1px solid #dddddd;
  padding: 10px;
  max-width: 100%;
  height: 100px;
  width: 100%;
}
.commonCheckoutStep2__terms {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: end;
  background-color: #f8f9f9;
  border: 1px solid #eaeaea;
  border-bottom: 2px solid #dddddd;
  padding: 10px 30px;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
}
@media all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutStep2__terms {
    padding: 10px;
  }
}
.commonCheckoutStep2__terms__checkbox {
  margin-right: 7px;
}
.commonCheckoutStep2__terms__text {
  flex: 1;
}
.commonCheckoutStep2__terms img {
  order: 3;
  margin-top: 2px;
  margin-left: 7px;
}
.commonCheckoutStep3__heading {
  color: #333333;
  font-size: 18px;
  font-weight: 700;
  margin: 20px 0;
  padding-left: 20px;
  border-left: 5px solid #73ad56;
}
.commonCheckoutStep3__container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
  column-gap: 20px;
}
.commonCheckoutStep3__container--terms {
  display: block;
}
.commonCheckoutStep3__container__left,
.commonCheckoutStep3__container__right {
  width: 100%;
  max-width: calc(50% - 20px);
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutStep3__container__left,
  .commonCheckoutStep3__container__right {
    max-width: 100%;
  }
}
.commonCheckoutStep3__box {
  padding: 0 20px;
  font-size: 14px;
  line-height: 25px;
  margin-bottom: 0;
  min-height: 100px;
  background-color: #f8f9f9;
  border: 1px solid #eaeaea;
  border-bottom: 2px solid #dddddd;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutStep3__box {
    margin-bottom: 0;
    min-height: 0;
  }
}
.commonCheckoutStep3__terms,
.commonCheckoutStep3__agreements {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #f8f9f9;
  border: 1px solid #eaeaea;
  border-bottom: 2px solid #dddddd;
  padding: 10px 30px;
  margin-bottom: 20px;
  width: 100%;
  font-size: 14px;
}
@media all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutStep3__terms,
  .commonCheckoutStep3__agreements {
    padding: 10px;
  }
}
.commonCheckoutStep3__terms__checkbox,
.commonCheckoutStep3__agreements__checkbox {
  margin-right: 7px;
}
.commonCheckoutStep3__terms__text,
.commonCheckoutStep3__agreements__text {
  flex: 1;
}
.commonCheckoutStep3__terms img,
.commonCheckoutStep3__agreements img {
  order: 3;
  margin-top: 2px;
  margin-left: 7px;
}
.commonCheckoutStep3__terms {
  font-weight: 600;
}
.commonCheckoutStep3__terms--center {
  text-align: center;
  justify-content: center;
}
.commonCheckoutStep3__terms--right {
  text-align: right;
  justify-content: flex-end;
  margin-bottom: 0;
  margin-top: 15px;
  margin-bottom: -15px;
}
.commonCheckoutStep3__agreements .commonAgreements__row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 5px 0;
}
.commonCheckoutStep3__agreements .commonAgreements__row__checkbox {
  margin-right: 7px;
}
.commonCheckoutStep3__agreements .commonAgreements__row__text {
  flex: 1;
}
.commonCheckoutStep3__agreements .commonAgreements__row__text p {
  margin: 0;
  word-break: break-word;
}
.commonCheckoutStep3__total {
  display: flex;
  justify-content: space-between;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) 	and (max-width: 425px) {
  .commonCheckoutStep3__total {
    display: block;
  }
}
.commonCheckoutStep3__totalPrices {
  text-align: right;
  padding-top: 4px;
}
.commonCheckoutStep3__totalPrices__vatIncluded {
  font-size: 30px;
  font-weight: 700;
  padding: 10px 0;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutStep3__totalPrices__vatIncluded {
    font-size: 25px;
    padding: 5px 0;
  }
}
.commonCheckoutStep3__totalPrices__vatExcluded {
  font-size: 15px;
  font-weight: 600;
  color: #999999;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutStep3__totalPrices__vatExcluded {
    font-size: 13px;
  }
}
.commonCheckoutStep3__notice {
  text-align: right;
  margin-bottom: 25px;
}
.commonCheckoutStep4 {
  text-align: center;
  padding: 50px 0;
}
.commonCheckoutSteps {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  padding: 30px 0 50px;
  justify-content: center;
}
@media all and (min-width: 767px) and (max-width: 1279px),all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutSteps {
    padding-bottom: 20px;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutSteps {
    padding-top: 10px;
  }
}
.commonCheckoutSteps__item {
  width: auto;
  height: 50px;
  color: #fff;
  text-decoration: none;
  line-height: 50px;
  display: flex;
  opacity: 0.6;
  margin: 0 50px;
}
@media all and (min-width: 767px) and (max-width: 1279px),all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutSteps__item {
    line-height: 30px;
  }
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonCheckoutSteps__item {
    margin: 0 20px;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutSteps__item {
    height: 30px;
    margin: 0;
    margin-right: 1px;
  }
}
.commonCheckoutSteps__item--active {
  opacity: 1;
}
.commonCheckoutSteps__item--active .commonCheckoutSteps__item__text {
  display: block;
  margin-right: 15px;
}
.commonCheckoutSteps__item__number {
  width: 50px;
  height: 50px;
  background-color: #73ad56;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}
@media all and (min-width: 767px) and (max-width: 1279px),all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutSteps__item__number {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}
.commonCheckoutSteps__item__text {
  color: #333333;
  font-size: 18px;
  font-weight: 700;
  margin-left: 15px;
}
@media all and (min-width: 767px) and (max-width: 1279px),all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutSteps__item__text {
    font-size: 14px;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutSteps__item__text {
    display: none;
  }
}
.commonCheckoutTable {
  background-color: #f8f9f9;
  border: 1px solid #eaeaea;
  border-bottom: 2px solid #dddddd;
  padding: 25px 20px;
  margin-bottom: 25px;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutTable {
    padding: 0;
    border: 0;
  }
}
.commonCheckoutTable__head {
  text-transform: uppercase;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  font-weight: 700;
  font-size: 14px;
  padding: 10px;
  border-bottom: 1px solid #dddddd;
  column-gap: 20px;
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonCheckoutTable__head {
    font-size: 12px;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutTable__head {
    display: none;
  }
}
.commonCheckoutTable__head__column {
  text-align: right;
}
.commonCheckoutTable__head__column--product {
  flex: 1;
  text-align: left;
}
.commonCheckoutTable__head__column--availability {
  width: 180px;
}
@media all and (min-width: 767px) and (max-width: 1279px),all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutTable__head__column--availability {
    width: 130px;
  }
}
.commonCheckoutTable__head__column--price {
  width: 160px;
  text-align: right;
}
@media all and (min-width: 767px) and (max-width: 1279px),all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutTable__head__column--price {
    width: 100px;
  }
}
.commonCheckoutTable__head__column--amount {
  width: 140px;
  text-align: left;
}
@media all and (min-width: 767px) and (max-width: 1279px),all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutTable__head__column--amount {
    width: 80px;
  }
}
.commonCheckoutTable__head__column--priceVat {
  width: 190px;
}
@media all and (min-width: 767px) and (max-width: 1279px),all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutTable__head__column--priceVat {
    width: 130px;
  }
}
.commonCheckoutTable__head__column--remove {
  width: 80px;
}
.commonCheckoutTable__total,
.commonCheckoutTable__totalTaxExcl {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 27px 10px 0;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutTable__total,
  .commonCheckoutTable__totalTaxExcl {
    padding-bottom: 20px;
    padding-top: 0;
    line-height: 25px;
  }
}
.commonCheckoutTable__total__title,
.commonCheckoutTable__totalTaxExcl__title {
  text-transform: uppercase;
}
.commonCheckoutTable__total__value,
.commonCheckoutTable__totalTaxExcl__value {
  margin-left: 10px;
}
.commonCheckoutTable__totalTaxExcl {
  font-size: 14px;
  color: #555;
}
.commonCheckoutTable__total {
  font-weight: 700;
  font-size: 24px;
}
.commonCheckoutTableProduct,
.commonCheckoutTableService {
  background-color: #ffffff;
  border-bottom: 1px solid #dddddd;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  column-gap: 20px;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutTableProduct,
  .commonCheckoutTableService {
    border: 1px solid #dddddd;
    margin-bottom: 20px;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.commonCheckoutTableProduct__column,
.commonCheckoutTableService__column {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutTableProduct__column,
  .commonCheckoutTableService__column {
    display: block;
    padding: 7px 0;
    position: relative;
    text-align: right;
    width: 100%;
    border-bottom: 1px solid #dddddd;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutTableProduct__column::before,
  .commonCheckoutTableService__column::before {
    content: attr(title);
    position: absolute;
    left: 0;
    color: #333333;
    font-weight: 600;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutTableProduct__column:last-child,
  .commonCheckoutTableService__column:last-child {
    border-bottom: 0;
  }
}
.commonCheckoutTableProduct__column--product,
.commonCheckoutTableService__column--product {
  flex: 1;
  justify-content: flex-start;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutTableProduct__column--product,
  .commonCheckoutTableService__column--product {
    width: 100%;
    flex: auto;
  }
}
.commonCheckoutTableProduct__column--product::before,
.commonCheckoutTableService__column--product::before {
  display: none;
}
.commonCheckoutTableProduct__column--availability,
.commonCheckoutTableService__column--availability {
  width: 180px;
  color: #c03;
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonCheckoutTableProduct__column--availability,
  .commonCheckoutTableService__column--availability {
    width: 130px;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutTableProduct__column--availability,
  .commonCheckoutTableService__column--availability {
    width: 100%;
  }
}
.commonCheckoutTableProduct__column--green,
.commonCheckoutTableService__column--green {
  color: #73ad56;
}
.commonCheckoutTableProduct__column--price,
.commonCheckoutTableService__column--price {
  width: 160px;
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonCheckoutTableProduct__column--price,
  .commonCheckoutTableService__column--price {
    width: 100px;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutTableProduct__column--price,
  .commonCheckoutTableService__column--price {
    width: 100%;
  }
}
.commonCheckoutTableProduct__column--amount,
.commonCheckoutTableService__column--amount {
  width: 160px;
  justify-content: flex-start;
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonCheckoutTableProduct__column--amount,
  .commonCheckoutTableService__column--amount {
    width: 80px;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutTableProduct__column--amount,
  .commonCheckoutTableService__column--amount {
    display: flex;
    width: 100%;
    line-height: 30px;
  }
}
.commonCheckoutTableProduct__column--priceVat,
.commonCheckoutTableService__column--priceVat {
  width: 190px;
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonCheckoutTableProduct__column--priceVat,
  .commonCheckoutTableService__column--priceVat {
    width: 130px;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutTableProduct__column--priceVat,
  .commonCheckoutTableService__column--priceVat {
    width: 100%;
  }
}
.commonCheckoutTableProduct__column--remove,
.commonCheckoutTableService__column--remove {
  width: 80px;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutTableProduct__column--remove,
  .commonCheckoutTableService__column--remove {
    width: 100%;
    border-bottom: 0;
  }
}
.commonCheckoutTableProduct__column__product,
.commonCheckoutTableService__column__product {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.commonCheckoutTableProduct__column__product:hover,
.commonCheckoutTableService__column__product:hover {
  color: #638e4d;
}
.commonCheckoutTableProduct__column__product__image,
.commonCheckoutTableService__column__product__image {
  margin-right: 10px;
}
.commonCheckoutTableProduct__column__product__text,
.commonCheckoutTableService__column__product__text {
  flex: 1;
  overflow: hidden;
}
.commonCheckoutTableProduct__column__product__link,
.commonCheckoutTableService__column__product__link {
  color: inherit;
}
.commonCheckoutTableProduct__column__product__hookedTo,
.commonCheckoutTableService__column__product__hookedTo {
  display: flex;
  gap: 6px;
  font-size: 80%;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutTableProduct__column__product__list,
  .commonCheckoutTableService__column__product__list {
    list-style-type: none;
  }
}
.commonCheckoutTableProduct__column__product__note,
.commonCheckoutTableService__column__product__note {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}
.commonCheckoutTableProduct__column__product__noteInput,
.commonCheckoutTableService__column__product__noteInput {
  height: 35px;
  border: 1px solid #dddddd;
  padding: 0 10px;
}
.commonCheckoutTableProduct__column__product__noteInput--disabled,
.commonCheckoutTableService__column__product__noteInput--disabled {
  border: 0;
  background-color: transparent;
  font-weight: 600;
}
.commonCheckoutTableProduct__column__product__noteButton,
.commonCheckoutTableService__column__product__noteButton {
  height: 35px;
  border: 1px solid #dddddd;
  padding: 0 10px;
}
.commonCheckoutTableProduct__column__amount,
.commonCheckoutTableService__column__amount {
  width: 51px;
  height: 30px;
  border: 1px solid #dddddd;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutTableProduct__column__amount,
  .commonCheckoutTableService__column__amount {
    margin-left: auto;
    width: 70px;
    height: 50px;
  }
}
.commonCheckoutTableProduct__column__amount__input,
.commonCheckoutTableService__column__amount__input {
  height: 100%;
  width: 30px;
  border: 0;
  text-align: center;
  border-right: 1px solid #dddddd;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutTableProduct__column__amount__input,
  .commonCheckoutTableService__column__amount__input {
    width: 40px;
  }
}
.commonCheckoutTableProduct__column__amount__buttons__button,
.commonCheckoutTableService__column__amount__buttons__button {
  height: 14px;
  line-height: 14px;
  width: 18px;
  font-weight: 700;
  text-align: center;
  cursor: hand;
  cursor: pointer;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutTableProduct__column__amount__buttons__button,
  .commonCheckoutTableService__column__amount__buttons__button {
    width: 28px;
    height: 25px;
    line-height: 25px;
    font-size: 16px;
  }
}
.commonCheckoutTableProduct__column__amount__buttons__button--plus,
.commonCheckoutTableService__column__amount__buttons__button--plus {
  border-bottom: 1px solid #dddddd;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutTableProduct__column__amount__buttons__button--minus,
  .commonCheckoutTableService__column__amount__buttons__button--minus {
    height: 23px;
    line-height: 21px;
  }
}
.commonCheckoutTableProduct__column__remove,
.commonCheckoutTableService__column__remove {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  background-color: #fe4132;
  width: 20px;
  height: 20px;
  display: inline-block;
  text-align: center;
  line-height: 20px;
  text-decoration: none;
}
.commonCheckoutTableProduct__column-priceBefore,
.commonCheckoutTableService__column-priceBefore {
  text-decoration: line-through;
  position: absolute;
  margin-top: 40px;
  font-size: 13px;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutTableProduct__column-priceBefore,
  .commonCheckoutTableService__column-priceBefore {
    margin-top: 0;
    position: static;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutTableService__column--availability,
  .commonCheckoutTableService__column--price,
  .commonCheckoutTableService__column--amount,
  .commonCheckoutTableService__column--remove {
    display: none;
  }
}
.commonCheckoutVoucher__summary {
  cursor: pointer;
}
.commonCheckoutVoucher__container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  background-color: #f8f9f9;
  padding: 20px;
  border: 1px solid #dddddd;
  margin-top: 25px;
}
.commonCheckoutVoucher__input {
  flex: 1;
  height: 35px;
  border: 1px solid #dddddd;
  padding: 0 10px;
  outline: 0;
}
@media all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutVoucher__input {
    width: 100%;
  }
}
.commonCheckoutVoucher__button {
  height: 35px;
  border: 0;
  color: #ffffff;
  padding: 0 15px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  background-color: #73ad56;
  transition: 200ms ease all;
  cursor: hand;
  cursor: pointer;
  margin-left: 5px;
}
.commonCheckoutVoucher__button:hover {
  background-color: #638e4d;
}
.commonCheckoutVoucher__list__item__remove {
  color: #ffffff;
  font-size: 14px;
  margin-left: 10px;
  font-weight: 700;
  background-color: #fe4132;
  width: 20px;
  height: 20px;
  display: inline-block;
  text-align: center;
  line-height: 20px;
  text-decoration: none;
}
.commonCheckoutGifts {
  background-color: #f8f9f9;
  border: 1px solid #eaeaea;
  border-bottom: 2px solid #dddddd;
  padding: 20px 30px;
  margin-bottom: 20px;
  overflow: hidden;
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonCheckoutGifts {
    padding: 20px 20px;
  }
}
@media all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutGifts {
    padding: 10px;
  }
}
.commonCheckoutGifts__items__item {
  display: flex;
  align-items: center;
  margin: 10px 0;
}
.commonCheckoutGifts__items__item__input {
  margin-right: 7px;
}
.commonCheckoutGifts__items__item__link__image {
  display: block;
  margin-right: 20px;
  border: 1px solid #eaeaea;
}
.commonCheckoutGifts__items__item__name {
  font-weight: 600;
}
.commonCheckoutImport {
  padding-bottom: 20px;
  text-align: left;
}
.commonCheckoutImport__heading {
  color: #333333;
  font-size: 18px;
  font-weight: 700;
  margin: 20px 0;
  padding-left: 20px;
  border-left: 5px solid #73ad56;
}
.commonCheckoutImport__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutImport__tax {
    width: 100%;
    padding-top: 20px;
  }
}
.commonCheckoutImport__label {
  font-weight: bold;
  margin-right: 15px;
}
.commonCheckoutImport__select {
  height: 35px;
  border: 1px solid #dddddd;
  padding: 0 10px;
}
@media all and (min-width: 0px) and (max-width: 426px) {
  .commonCheckoutImport__select {
    width: 100%;
  }
}
.commonCheckoutTopSubmit {
  display: flex;
  justify-content: center;
  padding-bottom: 20px;
}
.cCartCSV {
  margin: 40px auto;
  max-width: 100%;
  width: 800px;
}
.cCartCSV__title {
  font-size: 1.3rem;
  color: #333;
  font-weight: 700;
  margin: 20px 0;
  text-align: center;
}
.cCartCSV__description {
  text-align: center;
}
.cCartCSV__description--1 {
  margin-bottom: 10px;
}
.cCartCSV__container {
  background-color: #f8f9f9;
  padding: 20px;
  border: 1px solid #dddddd;
  border-radius: 5px;
}
.cCartCSV__container-inner {
  display: grid;
  gap: 25px;
  text-align: center;
  margin-top: 30px;
}
.cCartCSV__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.cCartCSV__row-label {
  font-weight: 600;
}
.cCartCSV__row-label:before {
  content: "1.";
  margin-right: 5px;
}
.cCartCSV__row-input {
  border: 0;
}
.cCartCSV__submit-button:before {
  content: "2.";
  margin-right: 5px;
}
.cCartAddByEAN {
  margin: 25px 0;
}
.cCartAddByEAN__title {
  font-size: 1.3rem;
  color: #333;
  font-weight: 700;
  margin: 20px 0;
}
.cCartAddByEAN__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-top: 25px;
  background-color: #f8f9f9;
  border: 1px solid #ddd;
  border-radius: 5px;
}
.cCartAddByEAN__block {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cCartAddByEAN__input {
  height: 38px;
  border: 0;
  text-align: center;
  border: 1px solid #ddd;
}
.cCartAddByEAN__input--EAN {
  width: 150px;
}
.cCartAddByEAN__input--quantity {
  width: 60px;
}
.cCartAddByEAN__submit {
  margin-left: auto;
}
.commonQuickCheckout {
  padding-top: 31px;
  padding-bottom: 163px;
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonQuickCheckout {
    padding-top: 22px;
    padding-bottom: 55px;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckout {
    padding-bottom: 30px;
  }
}
.commonQuickCheckout__homepage {
  color: #000;
  font-size: 15px;
  letter-spacing: 0.035em;
  font-weight: bold;
  text-decoration: none;
  margin-bottom: 45px;
  display: flex;
  column-gap: 10px;
  align-items: center;
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonQuickCheckout__homepage {
    margin-bottom: 21px;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckout__homepage {
    margin-bottom: 14px;
  }
}
.commonQuickCheckout__section {
  background-color: #fff;
  position: relative;
  padding-top: 40px;
  margin-bottom: 30px;
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonQuickCheckout__section {
    padding-top: 34px;
    margin-bottom: 20px;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckout__section {
    padding-top: 25px;
    margin-bottom: 15px;
  }
}
.commonQuickCheckout__signup {
  display: flex;
  align-items: center;
  position: relative;
  left: -10px;
}
@media all and (min-width: 767px) and (max-width: 1279px),all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckout__signup {
    order: 1;
    align-items: center;
    position: static;
  }
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonQuickCheckout__signup {
    padding-right: 0;
    width: 100%;
    justify-content: center;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckout__signup {
    flex-direction: column;
    padding-right: 0;
    width: 100%;
  }
}
.commonQuickCheckout__signup__icon {
  margin-right: 15px;
}
.commonQuickCheckout__signup__highlight {
  color: #178aef;
  text-decoration: underline;
}
.commonQuickCheckout__signup__text {
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 20px;
  font-weight: 600;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckout__signup__text {
    text-align: center;
    padding-top: 8px;
    font-size: 13px;
  }
}
@media all and (min-width: 767px) and (max-width: 1279px),all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckout__signup__text br {
    display: none;
  }
}
.commonQuickCheckout__gifts {
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(550px,1fr));
  column-gap: 56px;
  row-gap: 10px;
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonQuickCheckout__gifts {
    grid-template-columns: 1fr;
    padding: 34px 30px 30px;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckout__gifts {
    grid-template-columns: 1fr;
    padding: 25px 0;
  }
}
.commonQuickCheckout__gift {
  padding: 20px;
  display: flex;
  align-items: center;
  column-gap: 10px;
  position: relative;
}
.commonQuickCheckout__gift-input {
  position: relative;
  margin: 0;
  width: 25px;
  height: 25px;
  border: 0;
}
.commonQuickCheckout__gift-input:before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  position: absolute;
  background-image: url(https://i.binargon.cz/commonQuickCheckout/ico_radio.svg);
  background-color: #fff;
  background-size: 25px 25px;
  top: 0;
  left: 0;
}
.commonQuickCheckout__gift-input:checked:before {
  background-image: url("https://i.binargon.cz/commonQuickCheckout/rgba(23,138,239,1)/ico_radio_checked.svg");
}
.commonQuickCheckout__shippingPayment {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px;
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonQuickCheckout__shippingPayment {
    padding: 34px 30px 30px;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckout__shippingPayment {
    padding: 25px 20px;
  }
}
.commonQuickCheckout__shippingPayment__heading {
  display: none;
}
@media all and (min-width: 0px) and (max-width: 426px),all and (min-width: 426px) and (max-width: 767px),all and (min-width: 767px) and (max-width: 1279px) {
  .commonQuickCheckout__shippingPayment__heading {
    display: flex;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 0;
    align-items: center;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckout__shippingPayment__heading {
    margin-bottom: 10px;
  }
}
.commonQuickCheckout__shippingDetails,
.commonQuickCheckout__paymentDetails {
  width: calc(50% - 28px);
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonQuickCheckout__shippingDetails,
  .commonQuickCheckout__paymentDetails {
    width: 100%;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckout__shippingDetails,
  .commonQuickCheckout__paymentDetails {
    width: 100%;
  }
}
.commonQuickCheckout__shippingDetails .block2 > label,
.commonQuickCheckout__paymentDetails .block2 > label {
  display: grid;
  grid-template-areas: "input name logo price" "input description description price";
  grid-template-columns: 25px auto 1fr max-content;
  column-gap: 15px;
  padding-top: 23px;
  padding-bottom: 18px;
  position: relative;
  padding-left: 20px;
  padding-right: 12px;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckout__shippingDetails .block2 > label,
  .commonQuickCheckout__paymentDetails .block2 > label {
    grid-template-areas: "name logo price" "description description price";
    grid-template-columns: minmax(min-content,max-content) 1fr max-content;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 9px;
    padding-right: 0px;
  }
}
.commonQuickCheckout__shippingDetails .block2 > label input,
.commonQuickCheckout__paymentDetails .block2 > label input {
  grid-area: input;
  position: relative;
  margin: 0;
  width: 25px;
  height: 25px;
  border: 0;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckout__shippingDetails .block2 > label input,
  .commonQuickCheckout__paymentDetails .block2 > label input {
    display: none;
  }
}
.commonQuickCheckout__shippingDetails .block2 > label input:checked:before,
.commonQuickCheckout__paymentDetails .block2 > label input:checked:before {
  background-image: url("https://i.binargon.cz/commonQuickCheckout/rgba(23,138,239,1)/ico_radio_checked.svg");
}
.commonQuickCheckout__shippingDetails .block2 > label input:before,
.commonQuickCheckout__paymentDetails .block2 > label input:before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  position: absolute;
  background-image: url(https://i.binargon.cz/commonQuickCheckout/ico_radio.svg);
  background-color: #fff;
  background-size: 25px 25px;
  top: 0;
  left: 0;
}
.commonQuickCheckout__shippingDetails .volbaDopravy,
.commonQuickCheckout__shippingDetails .volbaPlatby,
.commonQuickCheckout__paymentDetails .volbaDopravy,
.commonQuickCheckout__paymentDetails .volbaPlatby {
  border-top: 1px solid #eaeaea;
}
.commonQuickCheckout__shippingDetails .block2,
.commonQuickCheckout__paymentDetails .block2 {
  border: 1px solid transparent;
  border-bottom: 1px solid #eaeaea;
}
.commonQuickCheckout__shippingDetails .dopravaBlock-checked .block2,
.commonQuickCheckout__shippingDetails .platbaBlock-checked .block2,
.commonQuickCheckout__paymentDetails .dopravaBlock-checked .block2,
.commonQuickCheckout__paymentDetails .platbaBlock-checked .block2 {
  border-color: #178aef;
  background-color: rgba(23,138,239,0.05);
}
.commonQuickCheckout__shippingDetails .nazev,
.commonQuickCheckout__paymentDetails .nazev {
  background-repeat: no-repeat;
  background-size: 25px 25px;
  background-position: 0 center;
  padding-left: 5px;
  padding-top: 3px;
  transition: 200ms ease all;
  font-size: 15px;
  color: #000;
  letter-spacing: 0.025em;
  line-height: 21px;
  min-height: 25px;
  font-weight: 600;
  margin-bottom: 2px;
  grid-area: name;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckout__shippingDetails .nazev,
  .commonQuickCheckout__paymentDetails .nazev {
    width: 100%;
    font-size: 13px;
  }
}
.commonQuickCheckout__shippingDetails .cena,
.commonQuickCheckout__paymentDetails .cena {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.045em;
  color: #000;
  text-align: right;
  padding-top: 4px;
  grid-area: price;
}
.commonQuickCheckout__shippingDetails .cena.dopravaZdarma,
.commonQuickCheckout__shippingDetails .cena.platbaZdarma,
.commonQuickCheckout__paymentDetails .cena.dopravaZdarma,
.commonQuickCheckout__paymentDetails .cena.platbaZdarma {
  color: #07a546;
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonQuickCheckout__shippingDetails .cena,
  .commonQuickCheckout__paymentDetails .cena {
    padding-right: 12px;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckout__shippingDetails .cena,
  .commonQuickCheckout__paymentDetails .cena {
    position: static;
    width: 100%;
    order: 4;
    margin-top: 5px;
    padding-right: 15px;
  }
}
.commonQuickCheckout__shippingDetails .cena.dopravaZdarma,
.commonQuickCheckout__shippingDetails .cena.platbaZdarma,
.commonQuickCheckout__paymentDetails .cena.dopravaZdarma,
.commonQuickCheckout__paymentDetails .cena.platbaZdarma {
  color: ;
  text-transform: uppercase;
}
.commonQuickCheckout__shippingDetails .logo,
.commonQuickCheckout__paymentDetails .logo {
  padding-top: 0;
  grid-area: logo;
}
@media all and (min-width: 767px) and (max-width: 1279px),all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckout__shippingDetails .logo,
  .commonQuickCheckout__paymentDetails .logo {
    display: none;
  }
}
.commonQuickCheckout__shippingDetails .popis,
.commonQuickCheckout__paymentDetails .popis {
  width: 100%;
  font-size: 13px;
  color: #000;
  line-height: 22px;
  letter-spacing: 0.05em;
  padding-left: 5px;
  grid-area: description;
}
.commonQuickCheckout__shippingDetails .popis p,
.commonQuickCheckout__paymentDetails .popis p {
  margin: 3px 0;
}
.commonQuickCheckout__shippingDetails .popis img,
.commonQuickCheckout__paymentDetails .popis img {
  max-width: 100%;
  height: auto;
}
.commonQuickCheckout__shippingDetails .napoveda,
.commonQuickCheckout__paymentDetails .napoveda {
  color: #999;
  margin-left: 5px;
  font-weight: normal;
  transition: ;
  cursor: help;
}
.commonQuickCheckout__shippingDetails .napoveda:hover,
.commonQuickCheckout__paymentDetails .napoveda:hover {
  color: ;
}
.commonQuickCheckout__shippingDetails .textNapovedy,
.commonQuickCheckout__paymentDetails .textNapovedy {
  font-size: 12px;
  margin-top: -25px;
  margin-left: 5px;
  padding: 5px 15px;
  background-color: #a7a7a7;
  color: #fff;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}
.commonQuickCheckout__shippingDetails .vyberPosty,
.commonQuickCheckout__paymentDetails .vyberPosty {
  color: ;
  font-size: 14px;
  letter-spacing: 0.025em;
  font-weight: 600;
}
.commonQuickCheckout__shippingDetails .pokladnaLib,
.commonQuickCheckout__paymentDetails .pokladnaLib {
  padding-left: 65px;
  padding-bottom: 20px;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckout__shippingDetails .pokladnaLib,
  .commonQuickCheckout__paymentDetails .pokladnaLib {
    padding-left: 20px;
  }
}
.commonQuickCheckout__shippingDetails .pokladnaLib a,
.commonQuickCheckout__paymentDetails .pokladnaLib a {
  color: #178aef;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckout__shippingDetails {
    margin-bottom: 20px;
  }
}
.commonQuickCheckout__voucherContainer {
  display: flex;
  padding-left: 45px;
  padding-right: 86px;
  justify-content: space-between;
  border-bottom: 4px solid #d7d7d7;
}
.commonQuickCheckout__voucher {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 31px;
  max-width: 50%;
  padding-bottom: 20px;
}
.commonQuickCheckout__voucher__title {
  color: #1a1a1a;
  font-size: 14px;
  letter-spacing: 0.035em;
  font-weight: 600;
  margin-right: 21px;
}
.commonQuickCheckout__voucher__title--full {
  width: 100%;
  margin-top: 15px;
  padding-left: 15px;
}
.commonQuickCheckout__voucher__container {
  display: flex;
}
.commonQuickCheckout__voucher__input {
  background-color: #f3f3f3;
  border: 1px solid #cfcfcf;
  padding: 0 10px;
  color: #666;
  font-size: 12px;
  letter-spacing: 0.025em;
  height: 33px;
  width: 212px;
}
.commonQuickCheckout__voucher__button {
  width: 85px;
  height: 33px;
  background-color: ;
  color: #fff;
  transition: ;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.035em;
}
.commonQuickCheckout__voucher__button:hover {
  background-color: ;
}
.commonQuickCheckout__voucher__list {
  width: 100%;
  margin: 5px 0;
  padding-left: 30px;
}
.commonQuickCheckout__voucher__item {
  font-size: 16px;
  display: flex;
  align-items: center;
}
.commonQuickCheckout__voucher__remove {
  text-decoration: none;
  color: #8e8e8e;
  margin-left: 10px;
  font-size: 11px;
  transition: ;
}
.commonQuickCheckout__voucher__remove:hover {
  color: red;
}
.commonQuickCheckout__select {
  border: 0;
  height: 40px;
  padding: 0 17px;
  font-size: 13px;
  color: #000;
  letter-spacing: 0.025em;
  order: 2;
  width: 100%;
  border: 1px solid #e0e0e0;
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonQuickCheckout__select {
    width: 100%;
  }
}
.commonQuickCheckout__select:invalid + .checkoutRow__validation {
  opacity: 1;
  overflow: visible;
  height: auto;
}
.commonQuickCheckout__select:focus + .checkoutRow__validation {
  background-color: red;
  color: #fff;
}
.commonQuickCheckout__discount {
  font-weight: 900;
  color: #000;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding-top: 36px;
}
.commonQuickCheckout__summary {
  display: flex;
  flex-wrap: wrap;
  column-gap: 40px;
  justify-content: space-between;
  align-items: center;
}
.commonQuickCheckout__summary--only-price .commonQuickCheckout__productsTotal {
  margin-left: auto;
}
.commonQuickCheckout__productsTotal {
  text-align: right;
  font-size: 15px;
  color: #000;
  letter-spacing: 0.035em;
  padding-right: 70px;
  padding-top: 26px;
  padding-bottom: 24px;
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonQuickCheckout__productsTotal {
    padding-right: 28px;
    padding-bottom: 11px;
    width: 100%;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckout__productsTotal {
    font-size: 13px;
    padding: 17px 20px 14px;
    width: 100%;
  }
}
.commonQuickCheckout__productsTotal-container {
  display: grid;
  grid-template-columns: 1fr 130px;
  margin-bottom: 9px;
  align-items: baseline;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckout__productsTotal-container {
    margin-bottom: 4px;
    grid-template-columns: 1fr 124px;
  }
}
.commonQuickCheckout__productsTotal__price--vat {
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 0.01em;
  margin-left: 11px;
  color: #178aef;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckout__productsTotal__price--vat {
    font-size: 18px;
    margin-left: 4px;
  }
}
.commonQuickCheckout__deleteAll {
  display: flex;
  justify-content: flex-end;
  padding: 15px 40px;
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonQuickCheckout__deleteAll {
    padding: 15px 30px;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckout__deleteAll {
    padding: 15px 20px;
  }
}
.commonQuickCheckout__deleteAll-button {
  padding: 0 20px;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: hand;
  cursor: pointer;
  border: 0;
  transition: 200ms ease all;
  height: 30px;
  background-color: #178aef;
  color: #fff;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckout__deleteAll-button {
    font-size: 12px;
  }
}
.commonQuickCheckout__note {
  padding: 0 40px;
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonQuickCheckout__note {
    padding: 0 30px;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckout__note {
    padding: 0 20px;
  }
}
.commonQuickCheckout__note__title {
  color: #000;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 24px;
  padding-top: 23px;
  padding-bottom: 23px;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckout__note__title {
    font-size: 13px;
    line-height: 20px;
    padding-top: 17px;
    padding-bottom: 19px;
  }
}
.commonQuickCheckout__note__textarea {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  width: 100%;
  height: 65px;
  font-size: 14px;
  letter-spacing: 0.025em;
  color: #808080;
  padding: 12px;
  margin-bottom: 37px;
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonQuickCheckout__note__textarea {
    margin-bottom: 30px;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckout__note__textarea {
    margin-bottom: 17px;
  }
}
.commonQuickCheckout__account {
  width: 100%;
  background-color: #f7f7f7;
  text-align: center;
  padding: 0 30px;
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonQuickCheckout__account {
    display: flex;
    padding: 0;
    padding-top: 22px;
    padding-bottom: 29px;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckout__account {
    display: grid;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 15px;
    padding-bottom: 21px;
  }
}
.commonQuickCheckout__account__top {
  padding-bottom: 31px;
  padding-top: 23px;
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonQuickCheckout__account__top {
    padding-top: 0;
    padding-bottom: 0;
    border-bottom: 0;
    border-right: 1px solid #d9d9d9;
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckout__account__top {
    padding-top: 0;
    padding-bottom: 15px;
    border-bottom: 0;
    border-right: 0;
    width: 100%;
  }
}
.commonQuickCheckout__account__bottom {
  border-top: 1px solid #d9d9d9;
  padding-bottom: 31px;
  padding-top: 24px;
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonQuickCheckout__account__bottom {
    padding-top: 0;
    padding-bottom: 0;
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
    border: 0;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckout__account__bottom {
    padding-top: 15px;
    padding-bottom: 0;
    width: 100%;
  }
}
.commonQuickCheckout__account__title {
  font-size: 17px;
  line-height: 28px;
  color: #000;
  letter-spacing: 0.025em;
  font-weight: 600;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckout__account__title {
    font-size: 13px;
    line-height: 23px;
  }
}
.commonQuickCheckout__account__button {
  height: 40px;
  padding: 0 25px;
  color: #000;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.035em;
  text-decoration: none;
  transition: ;
  margin-top: 17px;
  border: 2px solid #000;
  text-transform: uppercase;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckout__account__button {
    min-height: 30px;
    padding: 0 15px;
    font-size: 12px;
    margin-top: 5px;
  }
}
.commonQuickCheckout__account__button--login {
  background-color: ;
}
.commonQuickCheckout__account__button--login:hover {
  background-color: ;
}
.commonQuickCheckout__account__button--signup {
  background-color: ;
}
.commonQuickCheckout__account__button--signup:hover {
  background-color: ;
}
.commonQuickCheckout__formContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 20px;
  padding-left: 40px;
  padding-right: 40px;
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonQuickCheckout__formContainer {
    padding: 32px 30px 11px;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckout__formContainer {
    padding: 25px 20px 10px;
    row-gap: 7px;
  }
}
.commonQuickCheckout__formContainer__left {
  width: 276px;
  margin-right: 40px;
  padding-top: 41px;
}
@media all and (min-width: 767px) and (max-width: 1279px),all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckout__formContainer__left {
    width: 100%;
    margin-right: 0;
    padding-top: 0;
  }
}
.commonQuickCheckout__formContainer__right {
  flex: 1;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckout__formContainer__right {
    flex: auto;
    width: 100%;
  }
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonQuickCheckout__form {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckout__form {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
}
.commonQuickCheckout__form__heading {
  font-weight: 600;
  font-size: 17px;
  color: #1a1a1a;
  letter-spacing: 0.025em;
  border-bottom: 2px solid #ebebeb;
  padding-bottom: 11px;
  padding-left: 7px;
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonQuickCheckout__form__heading {
    width: 100%;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckout__form__heading {
    display: none;
  }
}
.commonQuickCheckout__bottom {
  text-align: right;
  padding-bottom: 40px;
  padding-left: 40px;
  padding-right: 40px;
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonQuickCheckout__bottom {
    padding: 25px 29px 30px;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckout__bottom {
    padding: 20px;
    padding-top: 14px;
  }
}
.commonQuickCheckout__totalSum {
  color: #1a1a1a;
  padding-top: 25px;
  margin-bottom: 23px;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckout__totalSum {
    padding-top: 0;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 23px;
  }
}
.commonQuickCheckout__totalSum__title {
  font-size: 15px;
  letter-spacing: 0.035em;
  margin-right: 38px;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckout__totalSum__title {
    font-size: 13px;
    margin-right: 0;
  }
}
.commonQuickCheckout__totalSum__price {
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 0.025em;
  color: #178aef;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckout__totalSum__price {
    font-size: 18px;
    white-space: nowrap;
  }
}
.commonQuickCheckout__checkbox {
  position: relative;
  margin-bottom: 18px;
}
.commonQuickCheckout__checkbox__input {
  opacity: 0;
  position: absolute;
  right: 2px;
  top: 4px;
}
.commonQuickCheckout__checkbox__input[type="checkbox"] {
  display: initial !important;
}
.commonQuickCheckout__checkbox__input:checked + label {
  background-image: url("https://i.binargon.cz/commonQuickCheckout/rgba(23,138,239,1)/ico_checkbox_checked.svg");
}
.commonQuickCheckout__checkbox__label {
  min-height: 26px;
  padding-right: 41px;
  background-image: url(https://i.binargon.cz/commonQuickCheckout/ico_checkbox.svg);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 26px 26px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-left: 25px;
  transition: background-image 0.2s ease-in-out;
  color: #000;
  font-size: 15px;
  letter-spacing: 0.025em;
  font-weight: 500;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckout__checkbox__label {
    padding-right: 0;
    padding-left: 41px;
    background-position: left top;
    justify-content: flex-start;
    font-size: 13px;
  }
}
.commonQuickCheckout__checkbox__link {
  color: #000;
  text-decoration: underline;
}
.commonQuickCheckout__checkbox__link:hover {
  text-decoration: none;
  border-bottom: 1px dotted #000;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckout__submit-container {
    text-align: center;
  }
}
.commonQuickCheckout__submit {
  background-color: #178aef;
  color: #fff;
  height: 50px;
  padding: 5px 30px;
  transition: ;
  font-weight: 700;
  letter-spacing: 0.035em;
  margin-top: 12px;
  border: 0;
  font-size: 16px;
  text-transform: uppercase;
  display: grid;
  align-items: center;
  margin-left: auto;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckout__submit {
    margin-top: 19px;
  }
}
.commonQuickCheckout__submit:hover {
  background-color: ;
}
.commonQuickCheckout__submit-row {
  display: block;
  width: 100%;
}
.commonQuickCheckout__submit-row--2 {
  font-size: 12px;
  text-transform: none;
  font-weight: normal;
}
.commonQuickCheckout__submit__icon {
  font-size: 10px;
  margin-left: 13px;
  display: inline-block;
  vertical-align: middle;
}
.commonQuickCheckout__notice {
  margin: 15px 0;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckout__notice {
    text-align: center;
    font-size: 14px;
  }
}
.commonQuickCheckoutBilling {
  width: 100%;
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 41px;
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonQuickCheckoutBilling {
    grid-template-columns: 1fr;
    padding-top: 35px;
    margin-bottom: 0;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutBilling {
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonQuickCheckoutBilling__left {
    padding-bottom: 5px;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutBilling__left {
    width: 100%;
    padding-left: 0;
  }
}
.commonQuickCheckoutBilling__right {
  padding-bottom: 5px;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutBilling__right {
    width: 100%;
  }
}
.commonQuickCheckoutBilling__right .checkoutRow__label {
  width: 82px;
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonQuickCheckoutBilling__right .checkoutRow__label {
    width: 100%;
    margin-bottom: 5px;
  }
}
.commonQuickCheckoutBilling__heading {
  font-size: 20px;
  color: #000;
  letter-spacing: 0.025em;
  font-weight: 900;
  padding-top: 0;
  padding-bottom: 15px;
  position: relative;
  top: -4px;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutBilling__heading {
    padding-top: 20px;
    padding-bottom: 15px;
  }
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonQuickCheckoutBilling__rows {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
  }
}
.commonQuickCheckoutCompany,
.commonQuickCheckoutDelivery {
  margin-bottom: 20px;
  margin-left: calc(50% + 20px);
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonQuickCheckoutCompany,
  .commonQuickCheckoutDelivery {
    margin-left: 0;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutCompany,
  .commonQuickCheckoutDelivery {
    margin-left: 0;
  }
}
.commonQuickCheckoutCompany:before,
.commonQuickCheckoutDelivery:before {
  content: "";
  display: block;
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonQuickCheckoutCompany,
  .commonQuickCheckoutDelivery {
    width: 100%;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutCompany,
  .commonQuickCheckoutDelivery {
    width: 100%;
  }
}
.commonQuickCheckoutCompany__heading,
.commonQuickCheckoutDelivery__heading {
  font-size: 15px;
  color: #000;
  letter-spacing: 0.025em;
  font-weight: 600;
  padding-top: 23px;
  padding-bottom: 23px;
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonQuickCheckoutCompany__heading,
  .commonQuickCheckoutDelivery__heading {
    padding-left: 30px;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutCompany__heading,
  .commonQuickCheckoutDelivery__heading {
    font-size: 20px;
  }
}
.commonQuickCheckoutCompany__checkboxLabel,
.commonQuickCheckoutDelivery__checkboxLabel {
  display: flex;
}
.commonQuickCheckoutCompany__checkboxLabel__input,
.commonQuickCheckoutDelivery__checkboxLabel__input {
  display: none;
}
.commonQuickCheckoutCompany__checkboxLabel__input:checked + span,
.commonQuickCheckoutDelivery__checkboxLabel__input:checked + span {
  background-image: url("https://i.binargon.cz/commonQuickCheckout/rgba(23,138,239,1)/ico_checkbox_checked.svg");
}
.commonQuickCheckoutCompany__checkboxLabel__text,
.commonQuickCheckoutDelivery__checkboxLabel__text {
  background-image: url(https://i.binargon.cz/commonQuickCheckout/ico_checkbox.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 26px 26px;
  min-height: 26px;
  padding-left: 41px;
  transition: background-image 0.2s ease-in-out;
  color: #000;
  font-size: 15px;
  letter-spacing: 0.025em;
  display: flex;
  align-items: center;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutCompany {
    order: 3;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutDelivery {
    order: 2;
  }
}
.commonQuickCheckoutHeading {
  display: flex;
  align-items: center;
  width: 100%;
}
.commonQuickCheckoutHeading__number {
  background-color: #178aef;
  color: #fff;
  width: 36px;
  height: 36px;
  font-weight: 900;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 13px;
  position: relative;
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonQuickCheckoutHeading__number {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    left: 0;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutHeading__number {
    width: 26px;
    height: 26px;
    font-size: 14px;
    margin-right: 10px;
    left: 0;
  }
}
.commonQuickCheckoutHeading__text {
  color: #000;
  font-size: 24px;
  letter-spacing: 0.025em;
  font-weight: 700;
  margin-right: 15px;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutHeading__text {
    font-size: 20px;
  }
}
.commonQuickCheckoutOverview {
  padding-top: 24px;
  padding-left: 40px;
  padding-right: 40px;
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonQuickCheckoutOverview {
    padding: 25px 30px;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutOverview {
    padding: 0 20px;
  }
}
@media all and (min-width: 767px) and (max-width: 1279px),all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutOverview__head {
    display: none;
  }
}
.commonQuickCheckoutOverview__row {
  width: 100%;
  border-bottom: 1px solid #eaeaea;
  display: grid;
  grid-template-columns: minmax(100px,590px) 176px 160px 195px 78px;
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonQuickCheckoutOverview__row {
    display: grid;
    grid-template-areas: "name name name name name" "availability . price . priceVat";
    grid-template-columns: 1fr 30px max-content 30px max-content;
    row-gap: 11px;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutOverview__row {
    display: grid;
    grid-template-areas: "name name name name name" "availability availability availability availability availability" "price price . priceVat priceVat";
    grid-template-columns: 1fr 10px max-content 10px max-content;
    row-gap: 5px;
  }
}
.commonQuickCheckoutOverview__row--head {
  padding-bottom: 7px;
  font-size: 14px;
  color: #5f6b75;
  letter-spacing: 0.025em;
}
.commonQuickCheckoutOverview__row--body {
  padding-top: 26px;
  padding-bottom: 25px;
  color: #000;
  align-items: center;
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonQuickCheckoutOverview__row--body {
    padding-bottom: 15px;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutOverview__row--body {
    padding: 17px 0;
  }
}
@media all and (min-width: 767px) and (max-width: 1279px),all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutOverview__column--1 {
    grid-area: name;
  }
}
@media all and (min-width: 767px) and (max-width: 1279px),all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutOverview__column--2 {
    grid-area: availability;
  }
}
@media all and (min-width: 767px) and (max-width: 1279px),all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutOverview__column--3 {
    display: none;
  }
}
@media all and (min-width: 767px) and (max-width: 1279px),all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutOverview__column--4 {
    grid-area: price;
  }
}
.commonQuickCheckoutOverview__column--5 {
  text-align: right;
}
@media all and (min-width: 767px) and (max-width: 1279px),all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutOverview__column--5 {
    grid-area: priceVat;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutOverview__column--empty {
    display: none;
  }
}
.commonQuickCheckoutOverview__name {
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.035em;
  line-height: 20px;
  font-weight: 600;
  display: block;
  padding-right: 20px;
  color: #000;
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonQuickCheckoutOverview__name {
    font-size: 13px;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutOverview__name {
    padding-right: 0;
    font-size: 12px;
  }
}
.commonQuickCheckoutOverview__name:hover {
  text-decoration: underline;
}
.commonQuickCheckoutOverview__name-hookedTo {
  font-weight: 400;
  font-size: 12px;
  display: flex;
}
.commonQuickCheckoutOverview__name-hookedTo-text:after {
  content: " ";
}
.commonQuickCheckoutOverview__availability {
  font-size: 15px;
  letter-spacing: 0.035em;
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonQuickCheckoutOverview__availability {
    font-size: 13px;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutOverview__availability {
    font-size: 13px;
  }
}
.commonQuickCheckoutOverview__availability--onStock:before {
  width: 14px;
  height: 15px;
  background-color: ;
  display: inline-block;
  vertical-align: top;
  margin-top: 2px;
  margin-right: 6px;
  color: #fff;
  padding-left: 1px;
}
.commonQuickCheckoutOverview__priceVatExcl {
  font-size: 15px;
  letter-spacing: 0.01em;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutOverview__priceVatExcl {
    font-weight: 400;
    font-size: 13px;
  }
}
.commonQuickCheckoutOverview__priceVat {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: #178aef;
}
.commonQuickCheckoutEmptyCart__title {
  width: 100%;
  font-weight: 900;
  font-size: 26px;
  letter-spacing: 0.035em;
  text-align: center;
  padding: 50px 20px;
}
.commonQuickCheckoutEmptyCart__back {
  color: #000;
  font-size: 15px;
  letter-spacing: 0.035em;
  font-weight: bold;
  text-decoration: none;
  margin-bottom: 45px;
  display: flex;
  column-gap: 10px;
  align-items: center;
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonQuickCheckoutEmptyCart__back {
    margin-bottom: 21px;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutEmptyCart__back {
    margin-bottom: 14px;
  }
}
.commonQuickCheckoutFreeShipping {
  margin-top: 0;
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonQuickCheckoutFreeShipping {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutFreeShipping {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0px 25px;
    padding-bottom: 25px;
    margin-top: 15px;
    width: 100%;
  }
}
.commonQuickCheckoutFreeShipping__container {
  display: flex;
}
@media all and (min-width: 767px) and (max-width: 1279px),all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutFreeShipping__container {
    order: 2;
    align-items: center;
    max-width: 100%;
    padding-top: 15px;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutFreeShipping__container {
    flex-direction: column;
    width: 100%;
  }
}
.commonQuickCheckoutFreeShipping__container-icon {
  margin-right: 15px;
  margin-top: 4px;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutFreeShipping__container-icon {
    margin-right: 0;
    font-size: 27px;
  }
}
.commonQuickCheckoutFreeShipping__container-text {
  width: 430px;
  border-bottom: 4px solid #f1f1f1;
  position: relative;
  font-size: 15px;
  letter-spacing: 0.025em;
  min-height: 28px;
  max-width: 100%;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutFreeShipping__container-text {
    width: 100%;
    height: auto;
    padding-bottom: 10px;
    text-align: center;
    font-size: 13px;
  }
}
.commonQuickCheckoutFreeShipping__container-progress {
  position: absolute;
  width: 0;
  left: 0;
  bottom: -4px;
  height: 4px;
  background: #000000;
  background: #34b262;
  max-width: 100%;
}
.commonQuickCheckoutFreeShipping__container-progress:before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #34b262;
  position: absolute;
  right: -8px;
  top: -5px;
}
.commonQuickCheckoutFreeShipping__container-progress:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  right: -4px;
  top: -2px;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid #fff;
}
.commonQuickCheckoutFreeShipping__container-free {
  font-weight: bold;
}
.commonQuickCheckoutProducts {
  padding: 40px 40px 0;
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonQuickCheckoutProducts {
    padding: 30px 30px 0;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutProducts {
    padding: 20px 20px 0;
  }
}
@media all and (min-width: 767px) and (max-width: 1279px),all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutProducts__head {
    display: none;
  }
}
.commonQuickCheckoutProducts__head__row {
  border-bottom: 1px solid #eaeaea;
  width: 100%;
  padding-bottom: 8px;
  color: #5f6b75;
  font-size: 14px;
  letter-spacing: 0.025em;
  display: grid;
  grid-template-columns: 1fr 168px 159px 134px 99px 31px;
}
.commonQuickCheckoutProducts__head__column--5 {
  text-align: right;
}
.commonQuickCheckoutProducts__body__row {
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eaeaea;
  align-items: center;
  display: grid;
  grid-template-columns: 96px 1fr 168px 159px 134px 99px 31px;
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonQuickCheckoutProducts__body__row {
    grid-template-columns: 95px 14px 100px 1fr max-content;
    grid-template-areas: "image . name name name" "image . availability availability availability" "image . amount price priceVat";
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutProducts__body__row {
    grid-template-columns: 65px 10px 1fr max-content;
    grid-template-areas: "image . name name" "image . availability availability" "amount amount amount priceVat";
    position: relative;
    padding-bottom: 19px;
  }
}
@media all and (min-width: 767px) and (max-width: 1279px),all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutProducts__body__column--1 {
    grid-area: image;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutProducts__body__column--1 {
    padding-top: 15px;
  }
}
@media all and (min-width: 767px) and (max-width: 1279px),all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutProducts__body__column--2 {
    grid-area: name;
    padding-top: 4px;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutProducts__body__column--2 {
    padding-top: 0;
  }
}
@media all and (min-width: 767px) and (max-width: 1279px),all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutProducts__body__column--3 {
    grid-area: availability;
    padding-top: 4px;
  }
}
.commonQuickCheckoutProducts__body__column--4 {
  text-align: center;
  display: flex;
  align-items: center;
}
@media all and (min-width: 767px) and (max-width: 1279px),all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutProducts__body__column--4 {
    grid-area: amount;
    padding-top: 11px;
  }
}
@media all and (min-width: 767px) and (max-width: 1279px),all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutProducts__body__column--5 {
    grid-area: price;
    text-align: center;
    padding-top: 14px;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutProducts__body__column--5 {
    position: absolute;
    right: 0;
    padding: 0;
    bottom: 42px;
  }
}
.commonQuickCheckoutProducts__body__column--6 {
  text-align: right;
}
@media all and (min-width: 767px) and (max-width: 1279px),all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutProducts__body__column--6 {
    grid-area: priceVat;
    padding-top: 14px;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutProducts__body__column--6 {
    padding-top: 27px;
  }
}
@media all and (min-width: 767px) and (max-width: 1279px),all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutProducts__body__column--7 {
    display: none;
  }
}
.commonQuickCheckoutProducts__link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000;
}
.commonQuickCheckoutProducts__link[href]:hover {
  text-decoration: underline;
}
.commonQuickCheckoutProducts__giftIcon {
  background-image: url(https://i.binargon.cz/commonQuickCheckout/ico_gift.svg);
  background-repeat: no-repeat;
  background-size: 50% auto;
  background-position: center center;
  width: 96px;
  height: 92px;
  max-width: 100%;
  display: table-cell;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutProducts__image {
    max-width: 100%;
    height: auto;
  }
}
.commonQuickCheckoutProducts__name {
  padding-left: 7px;
  font-size: 15px;
  color: #1a1a1a;
  line-height: 20px;
  letter-spacing: 0.035em;
  font-weight: 600;
  flex: 1;
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonQuickCheckoutProducts__name {
    padding-left: 0;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutProducts__name {
    font-size: 13px;
    padding-left: 0;
    line-height: 20px;
    padding-right: 0;
  }
}
.commonQuickCheckoutProducts__name-link {
  color: inherit;
  text-decoration: none;
}
.commonQuickCheckoutProducts__name-link:hover {
  text-decoration: underline;
}
.commonQuickCheckoutProducts__name-hookedTo {
  font-weight: 400;
  font-size: 12px;
}
.commonQuickCheckoutProducts__name-hookedTo-text:after {
  content: " ";
}
.commonQuickCheckoutProducts__description {
  display: flex;
  align-items: center;
}
.commonQuickCheckoutProducts__description-input {
  width: 100px;
}
.commonQuickCheckoutProducts__availability {
  font-size: 15px;
  color: #1a1a1a;
  letter-spacing: 0.035em;
  font-weight: 700;
}
.commonQuickCheckoutProducts__availability--onStock {
  color: #07a546;
}
.commonQuickCheckoutProducts__unit {
  font-size: 12px;
  letter-spacing: 0.025em;
  font-weight: 900;
  color: #000;
  margin-right: 11px;
  width: 80px;
  text-align: right;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutProducts__unit {
    width: auto;
  }
}
.commonQuickCheckoutProducts__amount {
  width: 100px;
  height: 40px;
}
.commonQuickCheckoutProducts__amountStatic {
  width: 56px;
  height: 39px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.commonQuickCheckoutProducts__priceVatExcl {
  font-size: 15px;
  color: #000;
  letter-spacing: 0.01em;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutProducts__priceVatExcl {
    font-size: 12px;
    font-weight: 400;
  }
}
.commonQuickCheckoutProducts__priceVatExcl__note {
  display: none;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutProducts__priceVatExcl__note {
    display: inline;
    margin-left: 5px;
  }
}
.commonQuickCheckoutProducts__priceVat {
  font-size: 15px;
  font-weight: 900;
  color: #178aef;
  letter-spacing: 0.01em;
}
.commonQuickCheckoutProducts__remove {
  text-decoration: none;
  margin-left: 14px;
  margin-top: 2px;
  min-width: 11px;
  display: inline-block;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutProducts__remove {
    position: absolute;
    top: 10px;
    right: 0;
    font-size: 15px;
  }
}
.commonQuickCheckoutRow {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 27px;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutRow {
    width: 100%;
    margin-bottom: 15px;
  }
}
.commonQuickCheckoutRow__label {
  width: 100%;
  display: block;
  font-size: 14px;
  color: #5f6b75;
  letter-spacing: 0.025em;
  margin-bottom: 8px;
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonQuickCheckoutRow__label {
    width: 100%;
    margin-bottom: 5px;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutRow__label {
    width: 100%;
    margin-bottom: 5px;
    font-weight: 500;
  }
}
.commonQuickCheckoutRow__value {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
}
@media all and (min-width: 767px) and (max-width: 1279px),all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutRow__value {
    width: 100%;
  }
}
.commonQuickCheckoutRow__input,
.commonQuickCheckoutRow__select {
  border: 0;
  height: 40px;
  padding: 0 17px;
  font-size: 13px;
  color: #000;
  letter-spacing: 0.025em;
  order: 2;
  width: 100%;
  border: 1px solid #e0e0e0;
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonQuickCheckoutRow__input,
  .commonQuickCheckoutRow__select {
    width: 100%;
  }
}
.commonQuickCheckoutRow__input:invalid + .checkoutRow__validation,
.commonQuickCheckoutRow__select:invalid + .checkoutRow__validation {
  opacity: 1;
  overflow: visible;
  height: auto;
}
.commonQuickCheckoutRow__input:focus + .checkoutRow__validation,
.commonQuickCheckoutRow__select:focus + .checkoutRow__validation {
  background-color: red;
  color: #fff;
}
.commonQuickCheckoutRow__validation {
  display: none;
  order: 1;
  height: 0;
  opacity: 0;
  overflow: hidden;
  font-size: 12px;
  transition: opacity 0.3s ease-in-out;
  color: #333;
  position: absolute;
  right: 0;
  top: -9px;
  background-color: #fff;
  text-align: right;
  width: auto;
  padding: 0 10px;
  box-shadow: 0px 1px 3px rgba(0,0,0,0.1);
}
.commonQuickCheckoutSuccess {
  padding-top: 81px;
  padding-bottom: 86px;
  text-align: center;
  color: #1a1a1a;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutSuccess {
    padding-top: 40px;
    padding-bottom: 45px;
  }
}
.commonQuickCheckoutSuccess__heading {
  font-weight: 700;
  font-size: 31px;
  letter-spacing: 0.025em;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutSuccess__heading {
    font-size: 25px;
  }
}
.commonQuickCheckoutSuccess__orderNumber {
  color: #333;
  font-size: 15px;
  letter-spacing: 0.025em;
}
.commonQuickCheckoutSuccess__symbol {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background-color: ;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  margin: auto;
  margin-top: 25px;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutSuccess__symbol {
    width: 64px;
    height: 64px;
  }
}
.commonQuickCheckoutSuccess__symbol__icon {
  font-size: 23px;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutSuccess__symbol__icon {
    font-size: 18px;
  }
}
.commonQuickCheckoutSuccess__thankYou {
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.025em;
  margin-top: 37px;
  margin-bottom: 15px;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutSuccess__thankYou {
    margin-top: 20px;
  }
}
.commonQuickCheckoutSuccess__text {
  font-size: 13px;
  color: #333;
  letter-spacing: 0.05em;
  line-height: 21px;
  padding: 0 250px;
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonQuickCheckoutSuccess__text {
    padding: 0 100px;
  }
}
@media all and (min-width: 426px) and (max-width: 767px) {
  .commonQuickCheckoutSuccess__text {
    padding: 0 30px;
  }
}
@media all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutSuccess__text {
    padding: 0 10px;
  }
}
.commonQuickCheckoutSuccess__description {
  margin: 30px 0;
}
.commonQuickCheckoutSuccess__return {
  background-color: #178aef;
  color: #fff;
  height: 44px;
  padding: 0 19px;
  transition: ;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.035em;
  margin-top: 33px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.commonQuickCheckoutSuccess__return:hover {
  background-color: #c51209;
}
.commonQuickCheckoutSuccess__return__icon {
  font-size: 8px;
  margin-left: 13px;
  display: inline-block;
  vertical-align: middle;
}
.commonQuickCheckoutSuccess__social {
  padding-top: 105px;
  padding-bottom: 30px;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutSuccess__social {
    padding-top: 35px;
  }
}
.commonQuickCheckoutSuccess__social__heading {
  display: flex;
  font-size: 25px;
  letter-spacing: 0.025em;
  font-weight: 600;
  margin-bottom: 25px;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutSuccess__social__heading {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
.commonQuickCheckoutSuccess__social__heading:before,
.commonQuickCheckoutSuccess__social__heading:after {
  content: " ";
  height: 1px;
  flex: 1;
  margin-top: 20px;
  background-color: #d7d7d7;
}
.commonQuickCheckoutSuccess__social__heading:before {
  margin-right: 23px;
}
.commonQuickCheckoutSuccess__social__heading:after {
  margin-left: 21px;
}
.commonQuickCheckoutSuccess__social__items {
  display: flex;
  justify-content: center;
  padding-top: 44px;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutSuccess__social__items {
    padding-top: 20px;
  }
}
.commonQuickCheckoutSuccess__social__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 62px;
  height: 62px;
  margin-right: 9px;
  background-color: #52237f;
  text-decoration: none;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutSuccess__social__item {
    width: 40px;
    height: 40px;
    margin-right: 5px;
  }
}
.commonQuickCheckoutSuccess__social__item:last-child {
  margin-right: 0;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutSuccess__social__item:last-child {
    margin-right: 0;
  }
}
.commonQuickCheckoutSuccess__social__icon {
  color: ;
  font-size: 65px;
  transition: background-color 300ms ease;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutSuccess__social__icon {
    font-size: 45px;
  }
}
.commonQuickCheckoutSuccess__social__icon:hover {
  background-color: ;
}
.commonQuickCheckoutVoucher {
  padding: 20px 40px;
}
@media all and (min-width: 767px) and (max-width: 1279px) {
  .commonQuickCheckoutVoucher {
    padding: 20px 30px;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutVoucher {
    padding: 20px;
  }
}
.commonQuickCheckoutVoucher__heading {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}
.commonQuickCheckoutVoucher__container {
  display: flex;
  width: 280px;
  max-width: 100%;
  margin-bottom: 15px;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutVoucher__container {
    width: 100%;
  }
}
.commonQuickCheckoutVoucher__input {
  height: 40px;
  padding: 0 17px;
  font-size: 13px;
  color: #000;
  width: 100%;
  border: 1px solid #e0e0e0;
}
.commonQuickCheckoutVoucher__button {
  height: 40px;
  padding: 0 25px;
  color: #000;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  background-color: transparent;
  border: 2px solid #000;
  text-transform: uppercase;
}
.commonQuickCheckoutVoucher__list-item-remove {
  background-color: #178aef;
  color: #fff;
  text-decoration: none;
  padding: 0 5px;
  margin-left: 5px;
}
.commonQuickCheckoutAgreements__row {
  display: block;
  margin-bottom: 18px;
  position: relative;
}
.commonQuickCheckoutAgreements__row__checkbox[type="checkbox"] {
  display: initial;
  position: absolute;
  right: 0;
  visibility: hidden;
}
.commonQuickCheckoutAgreements__row__checkbox:checked + label {
  background-image: url("https://i.binargon.cz/commonQuickCheckout/rgba(23,138,239,1)/ico_checkbox_checked.svg");
}
.commonQuickCheckoutAgreements__row__text {
  padding-right: 41px;
  min-height: 26px;
  background-image: url(https://i.binargon.cz/commonQuickCheckout/ico_checkbox.svg);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 26px 26px;
  padding-left: 25px;
  transition: background-image 0.2s ease-in-out;
  color: #000;
  font-size: 15px;
  letter-spacing: 0.025em;
  font-weight: 500;
  display: block;
  text-align: right;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutAgreements__row__text {
    padding-right: 0;
    padding-left: 41px;
    background-position: left top;
    justify-content: flex-start;
    text-align: left;
    font-size: 13px;
  }
}
.commonQuickCheckoutAgreements__row__text a {
  color: inherit;
}
.commonQuickCheckoutAgreements__row__text p {
  margin: 0;
}
.commonQuickCheckoutAmountInput {
  display: flex;
  width: 90px;
  height: 50px;
  border: 1px solid #e0e0e0;
  background-color: #fff;
}
.commonQuickCheckoutAmountInput__button {
  width: 25px;
  height: 100%;
  border: 0;
  background-color: transparent;
  outline: none;
  font-size: 20px;
  font-weight: 500;
  color: #333;
  padding: 0;
}
.commonQuickCheckoutAmountInput__button:hover {
  color: #178aef;
}
.commonQuickCheckoutAmountInput__input {
  width: 40px;
  text-align: center;
  outline: none;
  font-size: 15px;
  color: #1a1a1a;
  border: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.commonQuickCheckoutTip__container {
  padding: 10px 70px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  justify-content: flex-end;
  align-items: center;
  column-gap: 20px;
}
@media all and (min-width: 767px) and (max-width: 1279px),all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutTip__container {
    padding: 10px 20px;
  }
}
.commonQuickCheckoutTip__title {
  font-size: 15px;
  font-weight: 600;
}
.commonQuickCheckoutTip__select {
  max-width: 280px;
}
.commonQuickCheckoutTip__text {
  margin-top: 10px;
  padding: 10px 70px;
  text-align: right;
}
@media all and (min-width: 767px) and (max-width: 1279px),all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonQuickCheckoutTip__text {
    padding: 10px 20px;
  }
}
.commonOrders__main-title {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
@media all and (min-width: 0px) and (max-width: 426px),all and (min-width: 426px) and (max-width: 767px) {
  .commonOrders__main-title {
    font-size: 20px;
  }
}
.commonOrders__main-title-text {
  margin-right: 30px;
}
@media all and (min-width: 0px) and (max-width: 426px),all and (min-width: 426px) and (max-width: 767px) {
  .commonOrders__main-title-text {
    display: block;
  }
}
.commonOrders__rebuyButton {
  padding: 5px 10px;
  margin-left: auto;
  margin-right: 10px;
}
.commonOrders__stornoButton {
  padding: 5px 10px;
}
.commonOrders__main-text {
  margin-bottom: 30px;
}
.commonOrders__search {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 20px 0;
  gap: 20px;
}
@media all and (min-width: 0px) and (max-width: 426px),all and (min-width: 426px) and (max-width: 767px) {
  .commonOrders__search {
    display: grid;
  }
}
.commonOrders__search-label {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media ,all and (min-width: 0px) and (max-width: 426px),all and (min-width: 426px) and (max-width: 767px) {
  .commonOrders__search-label {
    display: grid;
    row-gap: 10px;
  }
}
@media all and (min-width: 0px) and (max-width: 426px),all and (min-width: 426px) and (max-width: 767px) {
  .commonOrders__search-label {
    width: 100%;
  }
}
.commonOrders__search-button {
  align-self: end;
}
.commonOrders__info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media all and (min-width: 0px) and (max-width: 426px),all and (min-width: 426px) and (max-width: 767px) {
  .commonOrders__info {
    flex-wrap: wrap;
  }
}
.commonOrders__info-table-row {
  display: flex;
  justify-content: space-between;
}
@media all and (min-width: 0px) and (max-width: 426px),all and (min-width: 426px) and (max-width: 767px) {
  .commonOrders__info-table-row {
    flex-wrap: wrap;
  }
}
.commonOrders__info-table-row:nth-child(even) {
  background-color: #f9f9f9;
}
.commonOrders__info-table-col {
  padding: 7px 10px;
}
@media all and (min-width: 0px) and (max-width: 426px),all and (min-width: 426px) and (max-width: 767px) {
  .commonOrders__info-table-col {
    padding: 7px 0;
  }
}
.commonOrders__info-table-col:first-child {
  font-weight: 700;
}
.commonOrders__info-title {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
}
@media all and (min-width: 0px) and (max-width: 426px),all and (min-width: 426px) and (max-width: 767px) {
  .commonOrders__info-title {
    font-size: 16px;
  }
}
.commonOrders__info-text {
  line-height: 26px;
}
.commonOrders__block {
  box-sizing: border-box;
  width: 300px;
  max-width: 100%;
  padding: 0px;
  margin: 15px;
  margin-left: 0;
}
.commonOrders__files-qr {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media all and (min-width: 0px) and (max-width: 426px),all and (min-width: 426px) and (max-width: 767px) {
  .commonOrders__files-qr {
    flex-wrap: wrap;
  }
}
.commonOrders__qr {
  text-align: center;
}
@media all and (min-width: 0px) and (max-width: 426px),all and (min-width: 426px) and (max-width: 767px) {
  .commonOrders__qr {
    width: 100%;
    margin-top: 25px;
  }
}
.commonOrders__qr-title {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
}
@media all and (min-width: 0px) and (max-width: 426px),all and (min-width: 426px) and (max-width: 767px) {
  .commonOrders__qr-title {
    font-size: 16px;
  }
}
@media all and (min-width: 0px) and (max-width: 426px),all and (min-width: 426px) and (max-width: 767px) {
  .commonOrders__files {
    width: 100%;
  }
}
.commonOrders__files-title {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
}
@media all and (min-width: 0px) and (max-width: 426px),all and (min-width: 426px) and (max-width: 767px) {
  .commonOrders__files-title {
    font-size: 16px;
  }
}
.commonOrders__files-list {
  display: flex;
  flex-direction: column;
}
@media all and (min-width: 0px) and (max-width: 426px),all and (min-width: 426px) and (max-width: 767px) {
  .commonOrders__files-list {
    flex-wrap: wrap;
  }
}
.commonOrders__files-item {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  text-decoration: none;
}
.commonOrders__files-item:last-child {
  margin-bottom: 0;
}
.commonOrders__files-item:hover {
  text-decoration: underline;
}
.commonOrders__files-image {
  margin-right: 10px;
}
.commonOrders__products {
  margin-bottom: 30px;
}
.commonOrders__products-title {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
}
@media all and (min-width: 0px) and (max-width: 426px),all and (min-width: 426px) and (max-width: 767px) {
  .commonOrders__products-title {
    font-size: 16px;
  }
}
.commonOrders__products-table {
  margin-bottom: 10px;
}
.commonOrders__products-summary {
  display: flex;
  flex-direction: column;
}
.commonOrders__products-summary-item {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  margin-bottom: 5px;
}
.commonOrders__products-summary-item:last-child {
  margin-bottom: 0;
}
.commonOrders__products-summary-label {
  font-weight: 700;
  font-size: 16px;
}
.commonOrders__products-summary-value {
  margin-left: 30px;
  min-width: 100px;
  text-align: right;
  font-size: 20px;
  font-weight: 700;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonOrders__table-head {
    display: none;
  }
}
.commonOrders__table-head .commonOrders__table-col {
  padding: 0 10px 15px 10px;
  font-weight: 700;
}
.commonOrders__table-head .commonOrders__table-row {
  border-bottom: 3px solid #d1d1d1;
}
.commonOrders__table-body .commonOrders__table-col {
  padding: 15px 10px;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonOrders__table-body .commonOrders__table-col {
    padding: 10px 0;
  }
}
.commonOrders__table-body .commonOrders__table-row {
  border-bottom: 1px solid #d1d1d1;
}
.commonOrders__table-row {
  display: flex;
  align-items: center;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonOrders__table-row {
    flex-direction: column;
  }
}
.commonOrders__table-col {
  width: 200px;
  text-align: center;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonOrders__table-col {
    text-align: right;
    flex: auto;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonOrders__table-col:before {
    content: attr(data-title);
    margin-right: auto;
  }
}
.commonOrders__table-col--name,
.commonOrders__table-col--code {
  flex: 1;
  width: auto;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonOrders__table-col--name,
  .commonOrders__table-col--code {
    flex: auto;
    width: 100%;
  }
}
.commonOrders__table-col--name {
  min-width: 280px;
  max-width: 100%;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonOrders__table-col--name {
    flex: auto;
    width: 100%;
  }
}
.commonOrders__table-col--print {
  margin-left: 30px;
  width: 50px;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonOrders__table-col--print {
    width: 100%;
    margin-left: 0;
  }
}
.commonOrders__table-col--detail {
  width: 100px;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonOrders__table-col--detail {
    width: 100%;
  }
}
.commonOrders__table-col--price {
  width: 200px;
  text-align: right;
  font-weight: 700;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonOrders__table-col--price {
    width: 100%;
  }
}
.commonOrders__table-col:first-child {
  padding-left: 0;
  text-align: left;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonOrders__table-col:first-child {
    text-align: right;
  }
}
.commonOrders__table-col:last-child {
  padding-right: 0;
  text-align: right;
}
.commonOrders__customerNote-title {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
}
@media all and (min-width: 0px) and (max-width: 426px),all and (min-width: 426px) and (max-width: 767px) {
  .commonOrders__customerNote-title {
    font-size: 16px;
  }
}
.commonOrders__customerNote-text {
  margin-bottom: 20px;
}
.commonOrders__retryPayment {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 0;
  align-items: center;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonOrders__retryPaymentText {
    margin: 10px 0;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonOrders__retryPaymentButton {
    margin: 10px 0;
  }
}
.commonSitemap__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.commonSitemap__list .commonSitemap__list {
  padding: 5px 30px;
  margin-top: 5px;
  margin-bottom: 5px;
  border-left: 1px solid #d1d1d1;
}
.commonSitemap__list-item {
  margin-bottom: 10px;
}
.commonSitemap__list-item:last-child {
  margin-bottom: 0;
}
.commonSitemap__list-link {
  text-decoration: none;
}
.commonSitemap__list-link--lvl0 {
  font-weight: 700;
  font-size: 16px;
}
.commonSitemap__list-link:hover {
  text-decoration: underline;
}
.commonWatchDogList__main-text {
  margin-bottom: 30px;
  line-height: 20px;
}
.commonWatchDogList__no-auth {
  margin-bottom: 30px;
}
.commonWatchDogList__no-auth-text {
  line-height: 20px;
  margin-bottom: 15px;
  font-weight: 700;
}
.commonWatchDogList__list {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 480px) {
  .commonWatchDogList__list {
    flex-direction: row;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
  }
}
.commonWatchDogList__item {
  width: 100%;
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #d1d1d1;
}
@media screen and (min-width: 480px) {
  .commonWatchDogList__item {
    width: calc(100% / 2 - 20px);
    margin-left: 10px;
    margin-right: 10px;
  }
}
@media screen and (min-width: 600px) {
  .commonWatchDogList__item {
    width: calc(100% / 3 - 20px);
  }
}
.commonWatchDogList__item-name {
  display: block;
  margin-bottom: 15px;
  font-weight: 700;
}
.commonWatchDogList__item-type {
  margin-bottom: 15px;
}
.commonWatchDogList__item-type-title {
  margin-bottom: 15px;
  font-weight: 700;
}
.commonWatchDogList__item-type-row {
  margin-bottom: 7px;
}
.commonWatchDogList__item-buttons-wrapper {
  display: flex;
  justify-content: center;
}
.commonWatchDogList__item-remove {
  height: 36px;
  line-height: 36px;
  padding: 0 15px;
  color: #fff;
  font-weight: 700;
  background-color: #ff0000;
  text-decoration: none;
}
.commonWarrantyClaim__sub-title {
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 18px;
}
.commonWarrantyClaim__main-text {
  margin-bottom: 30px;
  line-height: 20px;
}
.commonWarrantyClaim__main-text p {
  margin-bottom: 15px;
}
.commonWarrantyClaim__buttons-wrapper {
  display: flex;
  justify-content: space-between;
}
.commonWarrantyClaim__buttons-wrapper--margin-bottom {
  margin-bottom: 30px;
}
.commonWarrantyClaim__buttons-wrapper--pull-right {
  justify-content: flex-end;
}
.commonWarrantyClaim__button--single {
  margin-left: auto;
}
.commonWarrantyClaim__section {
  margin-bottom: 30px;
}
.commonWarrantyClaim__section-title {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 18px;
}
.commonWarrantyClaim__captcha {
  margin-bottom: 30px;
}
.commonWarrantyClaim__captcha-row {
  display: flex;
}
.commonWarrantyClaim__captcha-label {
  width: 150px;
  margin-right: 15px;
  cursor: pointer;
}
.commonWarrantyClaim__captcha-value {
  flex: 1;
}
.commonWarrantyClaim__captcha-image-wrapper {
  margin-bottom: 10px;
}
.commonWarrantyClaim__captcha-input-wrapper {
  max-width: 200px;
  width: 100%;
}
.commonWarrantyClaim__validation {
  order: 1;
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.3s ease-in;
  color: #000;
}
.commonWarrantyClaim__row {
  display: flex;
  flex-direction: row;
  margin-bottom: 10px;
}
.commonWarrantyClaim__row-label {
  width: 150px;
  padding-top: 9px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.commonWarrantyClaim__row-text {
  padding-top: 9px;
}
.commonWarrantyClaim__row-value {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.commonWarrantyClaim__row-files {
  margin: 25px 0;
}
.commonWarrantyClaim__row-input,
.commonWarrantyClaim__row-textarea {
  order: 2;
}
.commonWarrantyClaim__row-input:invalid + .commonWarrantyClaim__validation,
.commonWarrantyClaim__row-textarea:invalid + .commonWarrantyClaim__validation {
  opacity: 1;
  overflow: visible;
  height: auto;
  padding-bottom: 3px;
}
.commonWarrantyClaim__row-input:focus + .commonWarrantyClaim__validation,
.commonWarrantyClaim__row-textarea:focus + .commonWarrantyClaim__validation {
  color: #f00;
}
.commonWarrantyClaim__row-files {
  display: flex;
  flex-direction: column;
  padding-top: 9px;
}
.commonWarrantyClaim__row-files-item {
  margin-bottom: 10px;
}
.commonWarrantyClaim__row-files-item:last-child {
  margin-bottom: 0;
}
.commonWarrantyClaim__info {
  margin-bottom: 30px;
}
.commonWarrantyClaim__info-row {
  display: flex;
  margin-bottom: 7px;
}
.commonWarrantyClaim__info-label {
  margin-right: 5px;
  font-weight: 700;
}
.commonWarrantyClaim__address {
  line-height: 20px;
  margin-bottom: 30px;
}
.commonWarrantyClaim__address-title {
  line-height: normal;
  margin-bottom: 15px;
  font-weight: 700;
}
.commonWarrantyClaim__invoices-head {
  margin-bottom: 7px;
  padding-bottom: 10px;
  font-weight: 700;
  border-bottom: 2px solid #d1d1d1;
}
.commonWarrantyClaim__invoices-body {
  margin-bottom: 30px;
}
.commonWarrantyClaim__invoices-row {
  display: flex;
  border-bottom: 1px solid #d1d1d1;
}
.commonWarrantyClaim__invoices-row:last-child {
  border-bottom: 0;
}
.commonWarrantyClaim__invoices-col {
  width: 200px;
  padding: 7px 5px;
}
.commonWarrantyClaim__invoices-col:first-child {
  padding-left: 0;
  text-align: left;
}
.commonWarrantyClaim__invoices-col:last-child {
  padding-right: 0;
  text-align: right;
}
.commonWarrantyClaim__invoices-col--name {
  flex: 1;
  width: auto;
  font-weight: 700;
}
.commonWarrantyClaim__invoices-head {
  display: flex;
  justify-content: space-between;
}
.commonWarrantyClaim__table-head .commonWarrantyClaim__table-col {
  padding: 0 10px 15px 10px;
  font-weight: 700;
}
.commonWarrantyClaim__table-head .commonWarrantyClaim__table-row {
  border-bottom: 3px solid #d1d1d1;
}
.commonWarrantyClaim__table-body .commonWarrantyClaim__table-col {
  padding: 15px 10px;
}
.commonWarrantyClaim__table-body .commonWarrantyClaim__table-row {
  border-bottom: 1px solid #d1d1d1;
}
.commonWarrantyClaim__table-row {
  display: flex;
  align-items: center;
}
.commonWarrantyClaim__table-col {
  width: 200px;
  text-align: center;
}
.commonWarrantyClaim__table-col--name {
  flex: 1;
  width: auto;
  text-align: left;
}
.commonWarrantyClaim__table-col:first-child {
  padding-left: 0;
  text-align: left;
}
.commonWarrantyClaim__table-col:last-child {
  padding-right: 0;
  text-align: right;
}
.commonWarrantyClaim__detail {
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 30px;
}
.commonWarrantyClaim__detail-main {
  flex: 1;
  width: 100%;
}
.commonWarrantyClaim__detail-secondary {
  max-width: 100%;
  width: 250px;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonWarrantyClaim__detail-secondary {
    width: 100%;
  }
}
.commonWarrantyClaim__detail-secondary form {
  border: 1px solid #e0e0e0;
  padding: 20px;
  border-radius: 5px;
}
.commonWarrantyClaim__attachments {
  display: block;
  padding: 20px;
  margin: 20px 0;
  background-color: #f7f7f7;
  list-style-type: none;
  display: flex;
  column-gap: 25px;
  width: max-content;
}
.commonSoldOut__top {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonSoldOut__top {
    flex-wrap: wrap;
  }
}
.commonSoldOut__left {
  flex-grow: 0;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonSoldOut__left {
    width: 100%;
    flex-grow: 0;
  }
}
.commonSoldOut__right {
  flex-grow: 1;
  padding-left: 20px;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonSoldOut__right {
    width: 100%;
    flex-grow: 0;
    padding-left: 0;
  }
}
.commonSoldOut__main-image-href {
  width: auto;
  display: inline-block;
  position: relative;
  overflow: hidden;
  color: inherit;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonSoldOut__main-image-href {
    display: block;
    margin: 0 auto;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonSoldOut__main-image {
    max-width: 100%;
    height: auto;
  }
}
.commonSoldOut__main-image-label {
  position: absolute;
  transform: rotate(-45deg);
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: #c33;
  font-size: 25px;
  font-weight: bold;
  text-shadow: #ffffff 2px 0px 0px, #ffffff 1.75517px 0.958851px 0px, #ffffff 1.0806px 1.68294px 0px, #ffffff 0.141474px 1.99499px 0px, #ffffff -0.832294px 1.81859px 0px, #ffffff -1.60229px 1.19694px 0px, #ffffff -1.97998px 0.28224px 0px, #ffffff -1.87291px -0.701566px 0px, #ffffff -1.30729px -1.5136px 0px, #ffffff -0.421592px -1.95506px 0px, #ffffff 0.567324px -1.91785px 0px, #ffffff 1.41734px -1.41108px 0px, #ffffff 1.92034px -0.558831px 0px;
}
.commonSoldOut__header {
  font-weight: bold;
  font-size: 20px;
}
.commonSoldOut__header--productName {
  font-size: 35px;
}
.commonSoldOut__header--productName:before {
  content: attr(data-prednazvem);
  color: #888;
}
@media all and (min-width: 426px) and (max-width: 767px) {
  .commonSoldOut__header--productName {
    font-size: 25px;
  }
}
@media all and (min-width: 0px) and (max-width: 426px) {
  .commonSoldOut__header--productName {
    font-size: 20px;
  }
}
.commonSoldOut__alternatives {
  padding: 30px 0;
}
.commonSoldOut__descriptions {
  padding: 10px 0px;
}
.commonSoldOut__description {
  width: auto;
}
.commonSoldOut__description--short {
  margin: 25px 0;
}
.commonSoldOut__description--hiddenProduct {
  padding: 20px;
  border: 1px solid #c33;
  color: #c33;
  display: inline-flex;
  background-color: #ffdcdc;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonSoldOut__description--hiddenProduct {
    width: 100%;
    text-align: center;
  }
}
.commonSoldOut__mainButton {
  display: inline-block;
  padding: 10px;
  background-color: #eee;
  text-align: center;
  border-radius: 3px;
  text-decoration: none;
  font-size: 20px;
}
.commonSoldOut__mainButtonName {
  display: none;
  text-decoration: inherit;
}
.commonSoldOut__folders {
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
}
.commonSoldOut__folder {
  width: auto;
  display: inline-block;
  padding: 12px;
  border: 1px solid #eee;
  border-radius: 3px;
  text-decoration: none;
  margin: 0px 10px 10px 0px;
  color: inherit;
}
.commonSoldOut__folder:before {
  content: "\01F4C2";
  margin-right: 8px;
  color: #fabb24;
}
.commonSoldOut__nadkatLink {
  text-decoration: none;
  color: #000;
}
.commonSoldOut__nadkatLink:hover {
  text-decoration: underline;
}
.commonSoldOut__slash {
  display: inline-block;
  padding: 0 5px;
}
.commonSoldOut__slash:before {
  content: "/";
  color: #000;
}
.commonSoldOut__productsHeader {
  font-size: 20px;
}
.commonSoldOut__products {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
}
@media all and (min-width: 767px) and (max-width: 1279px),all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) and (max-width: 426px) {
  .commonSoldOut__products {
    justify-content: center;
  }
}
.commonSoldOut__nadkat {
  width: auto;
}
.commonSoldOut__nadkatPath {
  width: auto;
}
.commonSoldOut__nadkatPathItem {
  display: inline-block;
  width: auto;
  text-decoration: underline;
  color: inherit;
}
.commonSoldOut__nadkatPathItem:hover {
  text-decoration: none;
}
.commonSoldOut__nadkatPathItem:after {
  content: "\027A1";
}
.commonSoldOut__nadkatPathItem:last-child:after {
  content: "";
}
.commonSoldOutParameters {
  width: auto;
  float: left;
  margin: 0px 20px 20px 0px;
}
.commonSoldOutParameters__row:nth-child(2) {
  background-color: #eee;
}
.commonSoldOutParameters__column--value {
  font-weight: bold;
}
.commonSoldOutProduct {
  display: block;
  width: 200px;
  margin-bottom: 20px;
}
.commonSoldOutProduct__href {
  position: relative;
  display: block;
  text-align: center;
  text-decoration: none;
  color: inherit;
}
.commonSoldOutProduct__href:hover {
  text-decoration: underline;
}
.commonSoldOutProduct__discount {
  position: absolute;
  right: 5px;
  top: 5px;
  background-color: #f00;
  text-decoration: none;
  color: #fff;
  padding: 2px 4px;
}
.commonSoldOutProduct__hrefImage {
  display: inline-block;
  max-width: 100%;
}
.commonSoldOutProduct__hrefText {
  display: block;
}
.commonSoldOutProduct__price {
  display: block;
  text-align: center;
}
.commonSoldOutProduct__price--standardPrice {
  text-decoration: line-through;
}
.commonOrders__main-text {
  margin-bottom: 30px;
  font-size: 16px;
}
.commonOrders__info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
  margin-top: 40px;
}
@media all and (min-width: 768px) and (max-width: 1279px) {
  .commonOrders__info {
    flex-wrap: wrap;
    margin-top: 30px;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) 	and (max-width: 425px) {
  .commonOrders__info {
    flex-direction: column;
    margin-top: 20px;
  }
}
.commonOrders__info-col {
  padding-bottom: 26px;
  padding: 20px;
  width: 48%;
  border: 1px solid #e4e4e4;
}
@media all and (min-width: 768px) and (max-width: 1279px) {
  .commonOrders__info-col {
    width: 48%;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) 	and (max-width: 425px) {
  .commonOrders__info-col {
    width: 100%;
    margin-top: 40px !important;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) 	and (max-width: 425px) {
  .commonOrders__info-col:nth-of-type(1) {
    margin-top: 0 !important;
  }
}
.commonOrders__info-col:nth-of-type(3) {
  width: 100%;
  margin-top: 50px;
}
@media all and (min-width: 768px) and (max-width: 1279px) {
  .commonOrders__info-col:nth-of-type(3) {
    width: 100%;
    margin-top: 40px;
  }
}
.commonOrders__info-table-row {
  display: flex;
  justify-content: space-between;
}
.commonOrders__info-table-col {
  padding: 7px 10px;
}
.commonOrders__info-table-col:first-child {
  font-weight: 700;
}
.commonOrders__info-table-col--price {
  text-align: right !important;
}
.commonOrders__info-title {
  font-size: 24px;
  font-weight: 500;
  color: #141720;
  font-weight: bold;
  margin-top: 15px;
}
.commonOrders__info-text {
  line-height: 26px;
}
.commonOrders__files-qr {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.commonOrders__qr {
  text-align: center;
}
.commonOrders__qr-title {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
}
@media all and (min-width: 0px) and (max-width: 426px),all and (min-width: 426px) and (max-width: 767px) {
  .commonOrders__qr-title {
    font-size: 16px;
  }
}
.commonOrders__files-title {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
}
@media all and (min-width: 0px) and (max-width: 426px),all and (min-width: 426px) and (max-width: 767px) {
  .commonOrders__files-title {
    font-size: 16px;
  }
}
.commonOrders__files-list {
  display: flex;
  flex-direction: column;
}
.commonOrders__files-item {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  text-decoration: none;
  color: #000;
  text-decoration: underline;
}
.commonOrders__files-item:last-child {
  margin-bottom: 0;
}
.commonOrders__files-item:hover {
  text-decoration: none;
}
.commonOrders__files-image {
  margin-right: 10px;
}
.commonOrders__products {
  margin-bottom: 30px;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) 	and (max-width: 425px) {
  .commonOrders__products-title {
    padding: 10px;
    background-color: #141720;
    color: #fff;
    font-weight: 600;
  }
}
.commonOrders__products-table {
  margin-bottom: 10px;
}
.commonOrders__products-summary {
  display: flex;
  flex-direction: column;
}
.commonOrders__products-summary-item {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  margin-bottom: 5px;
}
.commonOrders__products-summary-item:last-child {
  margin-bottom: 0;
}
.commonOrders__products-summary-label {
  font-weight: 700;
  font-size: 16px;
}
.commonOrders__products-summary-value {
  margin-left: 30px;
  min-width: 100px;
  text-align: right;
  font-size: 20px;
  font-weight: 700;
}
.commonOrders__table-head {
  font-size: 16px;
}
.commonOrders__table-head .common-table-head @media @query-s .commonOrders__table-col--print,
.commonOrders__table-head .common-table-head @media @query-s .commonOrders__table-col--detail,
.commonOrders__table-head $query-m .commonOrders__table-col--print,
.commonOrders__table-head $query-m .commonOrders__table-col--detail {
  display: none;
}
.commonOrders__table-head .commonOrders__table-row {
  border-bottom: 0;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) 	and (max-width: 425px) {
  .commonOrders__table-row {
    flex-wrap: wrap;
  }
}
.commonOrders__table-col--price {
  width: 140px;
}
.commonOrders__table-col--amount,
.commonOrders__table-col--tax {
  width: 100px;
}
@media all and (min-width: 426px) and (max-width: 767px) {
  .commonOrders__table-col {
    width: 100%;
    text-align: left;
    float: left;
  }
  .commonOrders__table-col:first-of-type {
    text-align: left;
    font-weight: bold;
  }
  .commonOrders__table-col--date,
  .commonOrders__table-col--price,
  .commonOrders__table-col--detail {
    text-align: right;
  }
}
@media all and (min-width: 0px) 	and (max-width: 425px) {
  .commonOrders__table-col {
    width: 100% !important;
    text-align: left;
    float: left;
  }
  .commonOrders__table-col:first-of-type {
    text-align: left;
    font-weight: bold;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) 	and (max-width: 425px) {
  .commonOrders__table-col--print {
    margin: 0;
  }
}
@media ,all and (min-width: 0px) 	and (max-width: 425px) {
  .commonOrders__table-col--detail {
    font-size: 16px;
  }
}
.commonOrders__table-col>a {
  color: #000;
  text-decoration: underline;
}
.commonOrders__table-col>a:hover {
  text-decoration: none;
}
.commonOrders__back-to-list,
.commonOrders__auth-button,
.commonOrders__stornoButton {
  margin-left: 0;
  font-size: 1rem;
}
.commonOrders__retryPaymentButton {
  margin-left: 0;
}
.commonOrders__auth-button {
  margin-top: 16px;
}
.commonOrders__stornoButton {
  height: 40px;
  min-width: 0;
  font-size: 18px;
  margin: 10px 0;
}
.commonOrders__buttons-wrapper {
  text-align: right;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) 	and (max-width: 425px) {
  .commonOrders__buttons-wrapper {
    text-align: center;
  }
}
.commonSitemap__list-link {
  color: #000;
}
.commonSitemap__list-link:hover {
  color: ;
}
.test {
  color: #178aef;
}
.commonWarrantyClaim #fce38_form1 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.commonWarrantyClaim__main-title {
  width: 100%;
}
.commonWarrantyClaim__main-text {
  width: 100%;
}
.commonWarrantyClaim__sub-title {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) 	and (max-width: 425px) {
  .commonWarrantyClaim__sub-title {
    padding: 10px;
    background-color: ;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
  }
}
.commonWarrantyClaim__button {
  margin-left: 0;
}
@media all and (min-width: 0px) 	and (max-width: 425px) {
  .commonWarrantyClaim__buttons-wrapper {
    width: 100%;
    display: block;
    text-align: center;
  }
  .commonWarrantyClaim__buttons-wrapper .commonWarrantyClaim__button {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-bottom: 10px;
  }
}
@media all and (min-width: 0px) 	and (max-width: 425px),all and (min-width: 426px) and (max-width: 767px) {
  .commonWarrantyClaim__table-head {
    display: none;
  }
}
.commonWarrantyClaim__table-head .commonWarrantyClaim__table-row {
  border-bottom: 0;
}
.commonWarrantyClaim__table-col {
  width: 165px;
}
.commonWarrantyClaim__table-col--details {
  width: 115px;
}
@media all and (min-width: 0px) 	and (max-width: 425px),all and (min-width: 426px) and (max-width: 767px) {
  .commonWarrantyClaim__table-col {
    width: 100%;
    text-align: left;
    float: left;
  }
  .commonWarrantyClaim__table-col:first-of-type {
    text-align: center;
    font-weight: bold;
  }
  .commonWarrantyClaim__table-col:nth-of-type(2) {
    width: 50%;
    float: right;
  }
  .commonWarrantyClaim__table-col:nth-of-type(3) {
    width: 50%;
    float: left;
  }
}
.commonWarrantyClaim__table-col > a {
  color: #000;
  text-decoration: underline;
}
.commonWarrantyClaim__table-col > a:hover {
  text-decoration: none;
}
@media all and (min-width: 0px) 	and (max-width: 425px),all and (min-width: 426px) and (max-width: 767px) {
  .commonWarrantyClaim__table-row {
    display: block;
  }
}
.commonWarrantyClaim__invoices-head {
  margin-bottom: 0;
  padding: 0;
  border-bottom: none;
}
.commonWarrantyClaim__invoices-body {
  font-size: 16px;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) 	and (max-width: 425px) {
  .commonWarrantyClaim__invoices-row {
    flex-wrap: wrap;
  }
}
.commonWarrantyClaim__invoices-col,
.commonWarrantyClaim__invoices-code,
.commonWarrantyClaim__invoices-date {
  padding: 15px 10px !important;
}
.commonWarrantyClaim__invoices-col > a,
.commonWarrantyClaim__invoices-code > a,
.commonWarrantyClaim__invoices-date > a {
  color: #000;
  text-decoration: underline;
}
.commonWarrantyClaim__invoices-col > a:hover,
.commonWarrantyClaim__invoices-code > a:hover,
.commonWarrantyClaim__invoices-date > a:hover {
  text-decoration: none;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) 	and (max-width: 425px) {
  .commonWarrantyClaim__invoices-col--code {
    width: 50%;
    order: 2;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) 	and (max-width: 425px) {
  .commonWarrantyClaim__invoices-col--name {
    width: 100%;
    order: 1;
    flex: auto;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) 	and (max-width: 425px) {
  .commonWarrantyClaim__invoices-col--link {
    width: 50%;
    order: 3;
  }
}
.commonWarrantyClaim__section {
  padding-bottom: 26px;
  padding: 20px;
  margin-top: 20px;
  width: 48%;
  border: 1px solid #e4e4e4;
}
@media all and (min-width: 768px) and (max-width: 1279px) {
  .commonWarrantyClaim__section {
    margin-top: 10px;
  }
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) 	and (max-width: 425px) {
  .commonWarrantyClaim__section {
    width: 100%;
    margin-top: 10px;
  }
}
.commonWarrantyClaim__section:nth-of-type(1) {
  margin-right: 4%;
}
.commonWarrantyClaim__section:nth-of-type(1) .commonWarrantyClaim__row-label {
  cursor: auto;
}
.commonWarrantyClaim__section:nth-of-type(3) {
  width: 100%;
  padding-top: 40px;
  margin-top: 25px;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) 	and (max-width: 425px) {
  .commonWarrantyClaim__section:nth-of-type(3) {
    margin-top: 0;
  }
}
.commonWarrantyClaim__section:nth-of-type(3) .commonWarrantyClaim__section-title {
  float: left;
  top: 0;
  margin-top: -53px;
}
.commonWarrantyClaim__section:nth-of-type(3) .commonWarrantyClaim__row {
  float: left;
  flex-direction: column;
  width: 33.333%;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) 	and (max-width: 425px) {
  .commonWarrantyClaim__section:nth-of-type(3) .commonWarrantyClaim__row {
    width: 100%;
  }
}
.commonWarrantyClaim__section-title {
  justify-content: center;
  align-items: center;
  color: #000;
  font-weight: bold;
  font-size: 22px;
  background-color: #ffffff;
  margin-top: -31px;
  display: inline-block;
  position: relative;
  top: -26px;
  padding: 0 20px;
  margin-bottom: 0;
}
.commonWarrantyClaim__row {
  flex-direction: column;
}
@media all and (min-width: 426px) and (max-width: 767px),all and (min-width: 0px) 	and (max-width: 425px) {
  .commonWarrantyClaim__row {
    display: block;
  }
}
.commonWarrantyClaim__row-input,
.commonWarrantyClaim__row-select {
  border: 1px solid #e4e6e9;
  padding: 0 10px;
  height: 39px;
  font-size: 16px;
  cursor: pointer;
}
.commonWarrantyClaim__row-input:valid,
.commonWarrantyClaim__row-select:valid {
  border: 1px solid #34b262;
  width: 100%;
}
.commonWarrantyClaim__row-select:valid {
  outline: none;
}
.commonWarrantyClaim__row-textarea {
  width: 100%;
  height: 125px;
}
.commonWarrantyClaim__row-label {
  padding: 6px 15px;
  display: block;
  width: 100%;
}
.commonWarrantyClaim__row-value {
  padding: 0 10px;
  flex-direction: column;
  flex-direction: column-reverse;
}
.commonWarrantyClaim__row-text {
  padding-top: 0;
  padding-left: 36px;
  font-size: 16px;
}
.commonWarrantyClaim__row-files {
  padding-top: 0;
}
.commonWarrantyClaim__row-files-item {
  margin: 10px 0;
}
.commonWarrantyClaim__captcha {
  width: 100%;
  margin-top: 20px;
}
.commonWarrantyClaim__buttons-wrapper {
  width: 100%;
}
.commonWarrantyClaim__validation {
  padding-top: 3px;
}
.commonSouhlasyForm {
  width: 100%;
}
.common_template_fce_7 form {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(355px,1fr));
  gap: 30px;
}
@media all and (min-width: 0px) and (max-width: 374px) {
  .common_template_fce_7 form {
    grid-template-columns: 1fr;
  }
}
.common_template_fce_7 .clr {
  display: none;
}
.common_template_fce_7 .produkt {
  border: 1px solid #e5e7f2;
  border-radius: 5px;
  padding: 25px;
  display: grid;
  grid-template-areas: "image . right" "text text text" "choose choose choose";
  grid-template-columns: 150px 25px 1fr;
}
@media all and (min-width: 0px) and (max-width: 374px) {
  .common_template_fce_7 .produkt {
    grid-template-areas: "image" "right" "text" "choose";
    grid-template-columns: 1fr;
  }
}
.common_template_fce_7 .img {
  grid-area: image;
}
@media all and (min-width: 0px) and (max-width: 374px) {
  .common_template_fce_7 .img {
    text-align: center;
    margin-bottom: 15px;
  }
}
.common_template_fce_7 .pravyBox {
  grid-area: right;
  text-align: right;
}
@media all and (min-width: 0px) and (max-width: 374px) {
  .common_template_fce_7 .pravyBox {
    text-align: center;
  }
}
.common_template_fce_7 .levyBox {
  grid-area: text;
  padding-top: 15px;
}
.common_template_fce_7 .favoritesRight {
  grid-area: choose;
  text-align: right;
  padding-top: 20px;
}
.common_template_fce_7 .nazev {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 600;
}
.common_template_fce_7 .href1 {
  color: #30355a;
  text-decoration: none;
}
.common_template_fce_7 .href1:hover {
  text-decoration: underline;
}
.common_template_fce_7 .popisShort {
  font-size: 18px;
}
.common_template_fce_7 .smazatZOblibenych {
  color: #ee1c25;
  margin-bottom: 8px;
  display: block;
}
.common_template_fce_7 .cena {
  font-weight: bold;
  margin-bottom: 5px;
}
.common_template_fce_7 .grayButton {
  margin-left: auto;
}
@media all and (min-width: 0px) and (max-width: 374px) {
  .common_template_fce_7 .grayButton {
    margin-left: auto;
    margin-right: auto;
  }
}
.common_template_fce_7 .odstranitVse {
  margin-top: 30px;
}

@charset "UTF-8";
/* Tento soubor byl vygenerovaný skriptem šablony class.demotemplateskin.php */
/* LAYOUT */
/* COLOR */
/* FONT */
/*$font-base                        : sans-serif;*/
/* OTHER */
/* INPUT */
/* SELECT */
/* CHECKBOX */
/* ICONS */
/* CMS */
/* CONTAINER SIZES */
/*
$xl-min                           : 4000px;
$xl-max                           : 1300px;

$l-min                            : 1300px;
$l-max                            : 1024px;

$m-min                            : 1024px;
$m-max                            : 640px;

$s-min                            : 640px;
$s-max                            : 375px;
*/
/* MEDIA QUERIES */
/* Container Queries */
@keyframes red-fade {
  from {
    outline: 3px solid #d70000;
  }
  to {
    outline: 0;
  }
}
.button, .button-default, .cParamDescription__button-close, .cVelikostniTabulkyDialog__closeButton, .catalogControl__filterToggle-container, .commonForgottenPassword__button, .button-grey, .commonOrders__search-button, .commonOrders__back-to-list, .commonOrders__stornoButton, .commonOrders__retryPaymentButton, .commonPersonalSettings__back, .commonQuestionStandalone__back, .commonRegistration__back, .commonWarrantyClaim__button, .commonWatchDogList__item-remove, .button-green, .commonQuickCheckoutVoucher__button, .commonToCart-mezikosik__button--basket, .common_template_fce_7 button.href1, .button-red, .common_template_fce_7 .odstranitVse, .button-primary, .cCartAddByEAN__submit-button, .cCartCSV__submit-button, .cFilterDialog__main-button, .cFilterDialog__results-button, .cWhisperer__search-button, .cWhisperer__searchButton, .cWhispererSubmitButton__button, .common-question__button .btn, .commonLoadMoreProducts, .commonPersonalSettings__register, .commonPersonalSettings__add-address, .commonQuestionStandalone__send, .commonRegistration__register, .commonWarrantyClaim__button[type="submit"]:not(.exclude), .commonWatchDog__button .btn, .commonWatchDogList__no-auth-button, .common_recenzeAddDetail button, .fce6Customily__button, .commonCheckoutVoucher__button, .commonCheckoutTableProduct__column__product__noteButton, .commonComparsion__button, .commonComparsion__table-buy, .commonToCart-mezikosik__button {
  font-weight: 600;
  text-transform: uppercase;
  height: 45px;
  border-radius: 6px;
  border: 0;
  padding: 0 20px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  position: relative;
}
.button:after, .button-default:after, .cParamDescription__button-close:after, .cVelikostniTabulkyDialog__closeButton:after, .catalogControl__filterToggle-container:after, .commonForgottenPassword__button:after, .button-grey:after, .commonOrders__search-button:after, .commonOrders__back-to-list:after, .commonOrders__stornoButton:after, .commonOrders__retryPaymentButton:after, .commonPersonalSettings__back:after, .commonQuestionStandalone__back:after, .commonRegistration__back:after, .commonWarrantyClaim__button:after, .commonWatchDogList__item-remove:after, .button-green:after, .commonQuickCheckoutVoucher__button:after, .commonToCart-mezikosik__button--basket:after, .common_template_fce_7 button.href1:after, .button-red:after, .common_template_fce_7 .odstranitVse:after, .button-primary:after, .cCartAddByEAN__submit-button:after, .cCartCSV__submit-button:after, .cFilterDialog__main-button:after, .cFilterDialog__results-button:after, .cWhisperer__search-button:after, .cWhisperer__searchButton:after, .cWhispererSubmitButton__button:after, .common-question__button .btn:after, .commonLoadMoreProducts:after, .commonPersonalSettings__register:after, .commonPersonalSettings__add-address:after, .commonQuestionStandalone__send:after, .commonRegistration__register:after, .commonWarrantyClaim__button:not(.exclude)[type="submit"]:after, .commonWatchDog__button .btn:after, .commonWatchDogList__no-auth-button:after, .common_recenzeAddDetail button:after, .fce6Customily__button:after, .commonCheckoutVoucher__button:after, .commonCheckoutTableProduct__column__product__noteButton:after, .commonComparsion__button:after, .commonComparsion__table-buy:after, .commonToCart-mezikosik__button:after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: 200ms ease-in-out all;
  position: absolute;
  transform: scale(0);
  left: 0;
  top: 0;
}
.button:hover:after, .button-default:hover:after, .cParamDescription__button-close:hover:after, .cVelikostniTabulkyDialog__closeButton:hover:after, .catalogControl__filterToggle-container:hover:after, .commonForgottenPassword__button:hover:after, .button-grey:hover:after, .commonOrders__search-button:hover:after, .commonOrders__back-to-list:hover:after, .commonOrders__stornoButton:hover:after, .commonOrders__retryPaymentButton:hover:after, .commonPersonalSettings__back:hover:after, .commonQuestionStandalone__back:hover:after, .commonRegistration__back:hover:after, .commonWarrantyClaim__button:hover:after, .commonWatchDogList__item-remove:hover:after, .button-green:hover:after, .commonQuickCheckoutVoucher__button:hover:after, .commonToCart-mezikosik__button--basket:hover:after, .common_template_fce_7 button.href1:hover:after, .button-red:hover:after, .common_template_fce_7 .odstranitVse:hover:after, .button-primary:hover:after, .cCartAddByEAN__submit-button:hover:after, .cCartCSV__submit-button:hover:after, .cFilterDialog__main-button:hover:after, .cFilterDialog__results-button:hover:after, .cWhisperer__search-button:hover:after, .cWhisperer__searchButton:hover:after, .cWhispererSubmitButton__button:hover:after, .common-question__button .btn:hover:after, .commonLoadMoreProducts:hover:after, .commonPersonalSettings__register:hover:after, .commonPersonalSettings__add-address:hover:after, .commonQuestionStandalone__send:hover:after, .commonRegistration__register:hover:after, .commonWarrantyClaim__button:not(.exclude)[type="submit"]:hover:after, .commonWatchDog__button .btn:hover:after, .commonWatchDogList__no-auth-button:hover:after, .common_recenzeAddDetail button:hover:after, .fce6Customily__button:hover:after, .commonCheckoutVoucher__button:hover:after, .commonCheckoutTableProduct__column__product__noteButton:hover:after, .commonComparsion__button:hover:after, .commonComparsion__table-buy:hover:after, .commonToCart-mezikosik__button:hover:after {
  transform: scale(1);
  border-radius: 0;
}
.button-default, .cParamDescription__button-close, .cVelikostniTabulkyDialog__closeButton, .catalogControl__filterToggle-container, .commonForgottenPassword__button {
  background-color: #1a1a1a;
  color: #fff;
}
.button-grey, .commonOrders__search-button, .commonOrders__back-to-list, .commonOrders__stornoButton, .commonOrders__retryPaymentButton, .commonPersonalSettings__back, .commonQuestionStandalone__back, .commonRegistration__back, .commonWarrantyClaim__button, .commonWatchDogList__item-remove {
  background-color: #ecedef;
  color: #657d92;
  font-size: 14px;
}
.button-green, .commonQuickCheckoutVoucher__button, .commonToCart-mezikosik__button--basket, .common_template_fce_7 button.href1 {
  background-color: #34b262;
  color: #fff;
  font-size: 14px;
}
.button-red, .common_template_fce_7 .odstranitVse {
  background-color: #e54a4b;
  color: #fff;
}
.button-primary, .cCartAddByEAN__submit-button, .cCartCSV__submit-button, .cFilterDialog__main-button, .cFilterDialog__results-button, .cWhisperer__search-button, .cWhisperer__searchButton, .cWhispererSubmitButton__button, .common-question__button .btn, .commonLoadMoreProducts, .commonPersonalSettings__register, .commonPersonalSettings__add-address, .commonQuestionStandalone__send, .commonRegistration__register, .commonWarrantyClaim__button[type="submit"]:not(.exclude), .commonWatchDog__button .btn, .commonWatchDogList__no-auth-button, .common_recenzeAddDetail button, .fce6Customily__button {
  background-color: #178aef;
  color: #fff;
  font-size: 14px;
}
input[type="checkbox"]:not(.exclude) {
  background-color: #fff;
  margin: 0;
  font: inherit;
  width: 25px;
  height: 25px;
  border: 1px solid #b6c8d8;
  border-radius: 3px;
  accent-color: #178aef;
  flex-shrink: 0;
  outline: 0;
  display: grid;
  place-content: center;
  appearance: none;
}
input[type="checkbox"]:not(.exclude):checked {
  background-color: #178aef;
  border-color: #178aef;
}
input[type="checkbox"]:not(.exclude):checked:before {
  content: "✓";
  color: #fff;
  font-weight: 600;
}
input[type="checkbox"]:not(.exclude):disabled {
  color: #f1f1f1;
  background-color: #f1f1f1;
  cursor: not-allowed;
}
input[type="checkbox"]:not(.exclude):focus, input[type="checkbox"]:not(.exclude):active {
  border-color: #178aef;
}
input[type="checkbox"]:not(.exclude):invalid:focus {
  border-color: #d70000;
  -webkit-animation: red-fade 1s ease-in-out 0s;
  -moz-animation: red-fade 1s ease-in-out 0s;
  -o-animation: red-fade 1s ease-in-out 0s;
  animation: red-fade 1s ease-in-out 0s;
}
.common-h1, .commonComparsion__main-title, .commonEshopReviews__main-title, .commonForgottenPassword__main-title, .commonOrders__main-title, .commonPersonalSettings__main-title, .commonProductsReviews__main-title, .commonQuestionStandalone__main-title, .commonRegistration__main-title, .commonSitemap__main-title, .commonTextNews__heading, .commonWarrantyClaim__main-title, .commonWatchDogList__main-title {
  font-size: 2rem;
  margin-bottom: 45px;
  font-family: "Poppins", sans-serif;
}
.common-section, .commonForgottenPassword__section, .commonPersonalSettings__section, .commonRegistration__section {
  position: relative;
  padding: 30px;
  border: 1px solid #ecedef;
  margin-bottom: 30px;
  border-radius: 5px;
}
.common-section-title, .commonForgottenPassword__section-title, .commonPersonalSettings__section-title, .commonRegistration__section-title {
  font-weight: 600;
  max-width: max-content;
  font-size: 1.3rem;
  background-color: #fff;
  position: absolute;
  top: 0;
  transform: translate(-20px, -50%);
  margin: 0;
  padding: 0 20px;
}
.common-label, .commonForgottenPassword__label, .commonPersonalSettings__label, .commonQuestionStandalone__label, .commonRegistration__label {
  padding: 6px 0;
  display: block;
  width: 100%;
}
.common-input, .commonForgottenPassword__input, .commonPersonalSettings__input, .commonQuestionStandalone__input, .commonRegistration__input {
  width: 100%;
}
.common-input:valid, .commonForgottenPassword__input:valid, .commonPersonalSettings__input:valid, .commonQuestionStandalone__input:valid, .commonRegistration__input:valid {
  border-color: rgba(52, 178, 98, 0.5) !important;
  background-color: rgba(52, 178, 98, 0.02);
}
.common-input:invalid, .commonForgottenPassword__input:invalid, .commonPersonalSettings__input:invalid, .commonQuestionStandalone__input:invalid, .commonRegistration__input:invalid {
  border-color: rgba(229, 74, 75, 0.5) !important;
  background-color: rgba(229, 74, 75, 0.02);
}
.common-input:invalid + div .validation, .commonForgottenPassword__input:invalid + div .validation, .commonPersonalSettings__input:invalid + div .validation, .commonQuestionStandalone__input:invalid + div .validation, .commonRegistration__input:invalid + div .validation {
  height: auto;
  opacity: 1;
}
.common-select, .commonForgottenPassword__select, .commonPersonalSettings__select, .commonQuestionStandalone__select, .commonRegistration__select {
  width: 100%;
}
.common-validation, .commonForgottenPassword .validation, .commonPersonalSettings .validation, .commonQuestionStandalone .validation, .commonRegistration .validation {
  font-size: 13px;
  padding: 3px 4px;
  order: 1;
  height: 0;
  opacity: 0;
  width: 100%;
  overflow: hidden;
  transition: opacity 0.3s ease-in;
  color: #1a1a1a;
}
input:not(.exclude)::-webkit-input-placeholder {
  font-family: "Poppins", sans-serif;
}
input:not(.exclude):-moz-placeholder {
  font-family: "Poppins", sans-serif;
}
input:not(.exclude)::-webkit-input-placeholder {
  color: #657d92;
}
input:not(.exclude):-moz-placeholder {
  color: #657d92;
}
input:not(.exclude)::-moz-placeholder {
  color: #657d92;
}
input:not(.exclude):-ms-input-placeholder {
  color: #657d92;
}
input:not(.exclude):not([type="range"]) {
  font-family: "Poppins", sans-serif;
  outline: 0;
  border: 1px solid #b6c8d8;
  box-sizing: border-box !important;
  height: 45px;
  font-size: 14px;
  color: #1a1a1a;
  border-radius: 3px;
  padding: 0 12px;
}
input:not(.exclude)[type="checkbox"], input:not(.exclude)[type="radio"] {
  height: 25px;
}
input:not(.exclude)[type="range"] {
  border: 0;
}
input:not(.exclude)[type="number"] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
input:not(.exclude)[type="number"]::-webkit-inner-spin-button, input:not(.exclude)[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
* {
  box-sizing: border-box;
}
.cmsBody {
  font-size: 16px;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  color: #1a1a1a;
  position: relative;
}
.container, .cProducersList__container, .commonComparsion, .commonEshopReviews, .commonForgottenPassword, .commonOrders, .commonPersonalSettings, .commonProductsReviews, .commonQuestionStandalone, .commonRegistration, .commonSitemap, .commonSoldOut, .commonTextNews, .commonTextpage, .commonWarrantyClaim, .commonWatchDogList, .common_recenzeAddDetail, .common_template_fce_7 {
  margin-left: auto;
  margin-right: auto;
  width: 1520px;
  padding: 0 20px;
  max-width: 100%;
  container-type: inline-size;
}
@media (min-width: 640px) and (max-width: 1429px) {
  .container, .cProducersList__container, .commonComparsion, .commonEshopReviews, .commonForgottenPassword, .commonOrders, .commonPersonalSettings, .commonProductsReviews, .commonQuestionStandalone, .commonRegistration, .commonSitemap, .commonSoldOut, .commonTextNews, .commonTextpage, .commonWarrantyClaim, .commonWatchDogList, .common_recenzeAddDetail, .common_template_fce_7 {
    padding: 0 30px;
  }
}
.container--extended {
  width: 1580px;
  padding: 0 20px;
}
.content, .cProducersList__content {
  grid-area: content;
}
.grid-container {
  display: grid;
  align-items: start;
  container-type: inline-size;
}
.grid-container--columns-1 {
  grid-template-columns: [start] minmax(30px, 1fr) [main-start] minmax(0, 1480px) [main-end] minmax(30px, 1fr) [end];
}
.grid-container--columns-2 {
  grid-template-columns: [start] minmax(50px, 1fr) [side-start] 275px [side-end] 50px [main-start] minmax(0, 1155px) [main-end] minmax(50px, 1fr) [end];
}
@media (max-width: 1023px) {
  .grid-container--columns-2 {
    grid-template-columns: [start] minmax(30px, 1fr) [main-start] minmax(0, 1155px) [main-end] minmax(30px, 1fr) [end];
  }
}
@media (max-width: 639px) {
  .grid-container--columns-2 {
    grid-template-columns: [start] minmax(20px, 1fr) [main-start] minmax(0, 1155px) [main-end] minmax(20px, 1fr) [end];
  }
}
.grid-container--rows-1 {
  grid-template-rows: [start] minmax(0, auto) [end] 0 [after-start] minmax(0, auto) [after-end];
}
.grid-container--rows-2 {
  grid-template-rows: [breakout-start] minmax(0, auto) [breakout-end] 0 [top-start] minmax(0, auto) [top-end] 0 [bottom-start] 1fr [bottom-end] 0 [end] 0 [after-start] minmax(0, auto) [after-end];
}
.grid-container--rows-3 {
  grid-template-rows: [breakout-start] minmax(0, auto) [breakout-end] 0 [top-start] minmax(0, auto) [top-end] 0 [center-start] minmax(0, auto) [center-end] 0 [bottom-start] 1fr [bottom-end] 0 [end] 0 [after-start] minmax(0, auto) [after-end];
}
.grid-container-background {
  background-color: #f7f8fa;
  grid-column: start / end;
  align-self: stretch;
}
.grid-container-background--top {
  grid-row: top-start / top-end;
}
.grid-container-background--center {
  grid-row: center-start / center-end;
}
.grid-container-gradient {
  background: linear-gradient(0deg, #f7f8fa 0px, #f7f8fa 60px, #fff 60px);
  grid-column: start / end;
  grid-row: top-start / top-end;
  align-self: stretch;
}
.grid-container-side {
  grid-column: side-start / side-end;
  grid-row: top-start / bottom-end;
}
@media (min-width: 1430px) {
  .grid-container-side {
    padding-top: 40px;
  }
}
@media (min-width: 640px) and (max-width: 1429px) {
  .grid-container-side {
    padding-top: 30px;
  }
}
@media (max-width: 639px) {
  .grid-container-side {
    padding-top: 20px;
  }
}
@media (max-width: 1023px) {
  .grid-container-side {
    grid-column: start / end;
    grid-row: after-start / after-end;
  }
  .grid-container-side .commonTree, .grid-container-side .cCmsTree, .grid-container-side .filters {
    display: none;
  }
  .grid-container-side .latestNews {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.grid-container-breakout {
  grid-column: start / end;
  grid-row: breakout-start / breakout-end;
}
.grid-container-top {
  grid-column: main-start / main-end;
  grid-row: top-start / top-end;
}
@media (min-width: 1430px) {
  .grid-container-top {
    padding-top: 40px;
  }
}
@media (min-width: 640px) and (max-width: 1429px) {
  .grid-container-top {
    padding-top: 30px;
  }
}
@media (max-width: 639px) {
  .grid-container-top {
    padding-top: 10px;
  }
}
.grid-container-center {
  grid-column: main-start / main-end;
  grid-row: center-start / center-end;
}
.grid-container-bottom {
  grid-column: main-start / main-end;
  grid-row: bottom-start / bottom-end;
}
.grid-container-main {
  grid-column: main-start / main-end;
}
.two-columns {
  display: grid;
  grid-template-columns: 275px minmax(0, 1fr);
  column-gap: 50px;
}
.flex {
  display: flex;
  flex-wrap: wrap;
}
.grid {
  display: grid;
}
.center {
  display: flex;
  justify-content: center;
}
.space-between {
  display: flex;
  justify-content: space-between;
}
/* RADIO */
input[type="radio"]:not(.exclude) {
  width: 25px;
  height: 25px;
  margin: 0;
  flex-shrink: 0;
  padding: 0;
  outline: 0;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid #b6c8d8;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #fff;
}
input[type="radio"]:not(.exclude):checked {
  border: 7px solid #178aef;
  box-shadow: 0 0 0 1px #fff;
  background-color: #fff;
  border-width: 7px;
}
input[type="radio"]:not(.exclude):focus-visible {
  outline-offset: 0;
}
input[type="radio"]:not(.exclude):disabled {
  cursor: not-allowed;
}
select:not(.exclude) {
  font-family: "Poppins", sans-serif;
  outline: 0;
  border: 1px solid #b6c8d8;
  box-sizing: border-box !important;
  height: 45px;
  font-size: 14px;
  color: #1a1a1a;
  border-radius: 3px;
  padding-left: 12px;
  padding-right: 40px;
  background-image: url("https://i.binargon.cz/demoeshopmaxi/rgba(23,138,239,1)/rgba(23,138,239,0.1)/select.svg");
  background-repeat: no-repeat;
  background-position: right 3px center;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: ellipsis;
}
select:not(.exclude)::-webkit-input-placeholder {
  font-family: "Poppins", sans-serif;
}
select:not(.exclude):-moz-placeholder {
  font-family: "Poppins", sans-serif;
}
select:not(.exclude)::-webkit-input-placeholder {
  color: #657d92;
}
select:not(.exclude):-moz-placeholder {
  color: #657d92;
}
select:not(.exclude)::-moz-placeholder {
  color: #657d92;
}
select:not(.exclude):-ms-input-placeholder {
  color: #657d92;
}
select:not(.exclude)::-ms-expand {
  display: none;
}
textarea {
  font-family: "Poppins", sans-serif;
  outline: 0;
  border: 1px solid #b6c8d8;
  box-sizing: border-box !important;
  padding: 12px;
  border-radius: 3px;
}
textarea::-webkit-input-placeholder {
  font-family: "Poppins", sans-serif;
}
textarea:-moz-placeholder {
  font-family: "Poppins", sans-serif;
}
textarea::-webkit-input-placeholder {
  color: #657d92;
}
textarea:-moz-placeholder {
  color: #657d92;
}
textarea::-moz-placeholder {
  color: #657d92;
}
textarea:-ms-input-placeholder {
  color: #657d92;
}
.typography, .commonTextNews__content, .commonTextpage {
  color: #657d92;
  font-size: 16px;
  line-height: 34px;
}
.typography a:not(.button-primary), .commonTextNews__content a:not(.button-primary), .commonTextpage a:not(.button-primary) {
  color: #178aef;
  transition: 0.2s ease-in color;
}
.typography a:not(.button-primary):hover, .commonTextNews__content a:not(.button-primary):hover, .commonTextpage a:not(.button-primary):hover {
  color: #1a1a1a;
}
.typography img, .commonTextNews__content img, .commonTextpage img {
  max-width: 100%;
  object-fit: contain;
  height: auto !important;
}
.typography iframe, .commonTextNews__content iframe, .commonTextpage iframe, .typography video, .commonTextNews__content video, .commonTextpage video {
  max-width: 100% !important;
  height: auto;
  aspect-ratio: 16 / 9;
}
.typography table, .commonTextNews__content table, .commonTextpage table {
  overflow-x: auto;
}
@container (max-width: 579px) {
  .typography table, .commonTextNews__content table, .commonTextpage table {
    width: 100% !important;
  }
}
.typography h1, .commonTextNews__content h1, .commonTextpage h1, .typography h2, .commonTextNews__content h2, .commonTextpage h2, .typography h3, .commonTextNews__content h3, .commonTextpage h3, .typography h4, .commonTextNews__content h4, .commonTextpage h4, .typography h5, .commonTextNews__content h5, .commonTextpage h5, .typography h6, .commonTextNews__content h6, .commonTextpage h6 {
  font-family: "Poppins", sans-serif;
}
.address {
  font-style: normal;
  color: #657d92;
  font-size: 14px;
  line-height: 30px;
  padding-top: 9px;
}
@container (max-width: 579px) {
  .address {
    color: rgba(255, 255, 255, 0.7);
    display: none;
    padding-left: 20px;
  }
}
.ajaxKatalogSplashScreen {
  background-color: rgba(91, 117, 139, 0.12) !important;
}
.article {
  background-color: #fff;
  border-radius: 5px;
  text-decoration: none;
  overflow: hidden;
}
.article--homepage:nth-child(1), .article--homepage:nth-child(2) {
  grid-column: span 2;
}
.article--homepage:nth-child(1) .article__container, .article--homepage:nth-child(2) .article__container {
  padding: 30px;
  padding-top: 33px;
  grid-template-columns: 1fr;
  grid-template-areas: "picture" "title" "date" "text" "full";
}
.article--homepage:nth-child(1) .article__title, .article--homepage:nth-child(2) .article__title {
  -webkit-line-clamp: 1;
  max-height: 26px;
  margin-bottom: -3px;
}
.article--homepage:nth-child(1) .article__date, .article--homepage:nth-child(2) .article__date {
  margin-top: 0;
}
.article--homepage:nth-child(1) .article__text, .article--homepage:nth-child(2) .article__text {
  margin-top: 7px;
}
.article--homepage:nth-child(1) .article__full, .article--homepage:nth-child(2) .article__full {
  margin-top: 27px;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .article--homepage {
    display: grid;
    grid-template-columns: 315px 1fr;
    grid-template-areas: "picture container";
    height: 255px;
  }
  .article--homepage:nth-child(1) .article__container {
    padding: 25px;
    grid-template-areas: "title" "date" "text" "full";
    grid-template-rows: auto 20px auto 1fr;
  }
  .article--homepage:nth-child(1) .article__title {
    -webkit-line-clamp: 2;
    max-height: 52px;
  }
  .article--homepage:nth-child(1) .article__text {
    margin-top: 17px;
  }
  .article--homepage:nth-child(1) .article__full {
    margin-top: 21px;
  }
  .article--homepage:nth-child(n + 2) {
    display: none;
  }
  .article--homepage .article__image {
    height: 255px;
    object-fit: contain;
  }
}
@container (max-width: 579px) {
  .article--homepage:nth-child(n + 2) {
    display: none;
  }
  .article--homepage:nth-child(1) .article__image {
    height: 271px;
  }
  .article--homepage:nth-child(1) .article__container {
    padding: 25px;
    padding-top: 23px;
    grid-template-areas: "title" "date" "text" "full" !important;
    grid-template-rows: auto 20px auto 1fr;
  }
  .article--homepage:nth-child(1) .article__title {
    -webkit-line-clamp: 2;
    max-height: 52px;
  }
  .article--homepage:nth-child(1) .article__text {
    margin-top: 17px;
  }
  .article--homepage:nth-child(1) .article__full {
    margin-top: 21px;
  }
}
.article:hover .article__title {
  text-decoration: underline;
}
.article__picture {
  aspect-ratio: 1.9824561404;
  grid-area: picture;
  background-color: #e5e5f7;
  background-size: 10px 10px;
  background-image: repeating-linear-gradient(45deg, #ccc 0, #ccc 1px, rgba(238, 238, 238, 0.8) 0, rgba(238, 238, 238, 0.8) 50%);
}
.article__image {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: top;
}
.article__container {
  padding: 24px;
  grid-area: container;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "picture picture" "title title" "full date";
}
.article__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  max-height: 52px;
  color: #1a1a1a;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  grid-area: title;
}
.article__date {
  font-size: 12px;
  color: #657d92;
  line-height: 30px;
  grid-area: date;
  margin-top: 13px;
}
.article__text {
  color: #657d92;
  font-size: 14px;
  line-height: 26px;
  overflow: hidden;
  display: -webkit-box;
  max-height: 78px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  grid-area: text;
}
.article__full {
  margin-top: 17px;
  grid-area: full;
}
.article__full-title {
  display: flex;
  column-gap: 10px;
  align-items: center;
  color: #178aef;
  font-size: 14px;
}
@container (max-width: 579px) {
  .article__full-title {
    column-gap: 7px;
  }
}
.article__full-title:before {
  content: "";
  display: block;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background-color: #178aef;
  box-shadow: 0 2px 6px rgba(23, 138, 239, 0.35);
  border: 0;
  transition: 0.2s ease-in-out background-color, 0.3s ease-in-out box-shadow;
  background-repeat: no-repeat;
  background-image: url("https://i.binargon.cz/demoeshopmaxi/arrow_right.svg");
  background-position: 8px 5.5px;
}
.articleDetail {
  padding-bottom: 60px;
}
.articleDetailArea__products, .articleDetailArea__gallery {
  margin: 40px 0;
}
.articlesOverview {
  container-name: articles;
  container-type: inline-size;
}
.availability__on-stock {
  color: #34b262;
}
.availability__supplier {
  color: #657d92;
}
.availability__out-of-stock {
  color: #e54a4b;
}
.bannerItem {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
@container (max-width: 579px) {
  .bannerItem {
    width: calc(100vw - 40px);
    width: 100cqw;
  }
}
.bannerItem:nth-child(1) {
  background-color: #fece00;
}
.bannerItem:nth-child(2) {
  background-color: #00b022;
}
.bannerItem:nth-child(3) {
  background-color: #c39aee;
}
.bannerItem.bannerItem--none {
  background-color: rgba(23, 138, 239, 0.16);
}
.bannerItem:hover {
  box-shadow: 0 5px 12px rgba(23, 138, 239, 0.16);
}
@container (max-width: 579px) {
  .bannerItem--homepage-large .bannerItem__countdown-item {
    width: 45px;
    height: 52px;
    padding-top: 5px;
  }
  .bannerItem--homepage-large .bannerItem__countdown-value {
    font-size: 18px;
    height: 25px;
  }
  .bannerItem--homepage-large .bannerItem__countdown-text {
    font-size: 10px;
  }
}
.bannerItem--homepage-small {
  color: #fff;
}
.bannerItem--homepage-small .bannerItem__overlay {
  padding: 0 28px;
}
.bannerItem--homepage-small .bannerItem__overlay--countdown-true .bannerItem__text {
  display: none;
}
.bannerItem--homepage-small .bannerItem__container {
  max-width: 50%;
}
@container (max-width: 579px) {
  .bannerItem--homepage-small .bannerItem__container {
    max-width: 100%;
  }
}
.bannerItem--homepage-small .bannerItem__heading {
  font-size: 20px;
  line-height: 28px;
  max-height: 58px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.bannerItem--homepage-small .bannerItem__text {
  font-size: 14px;
  line-height: 24px;
  margin-top: 12px;
  max-height: 92px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.bannerItem--homepage-small .bannerItem__countdown-item {
  width: 45px;
  height: 52px;
  padding-top: 5px;
}
.bannerItem--homepage-small .bannerItem__countdown-value {
  font-size: 18px;
  height: 25px;
}
.bannerItem--homepage-small .bannerItem__countdown-text {
  font-size: 10px;
}
.bannerItem--homepage-small .bannerItem__button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-top: 28px;
  margin-left: -9px;
}
.bannerItem--homepage-small .bannerItem__button:before {
  width: 10px;
  height: 16px;
  background-size: 100% auto;
  margin-left: -8px;
}
.bannerItem--homepage-simple {
  max-width: 100%;
}
.bannerItem--homepage-simple .bannerItem__image {
  min-height: 220px;
}
@container (max-width: 825px) {
  .bannerItem--homepage-simple .bannerItem__image {
    max-width: 100%;
    height: auto;
    min-height: min-content;
  }
}
.bannerItem__image {
  vertical-align: top;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  width: 100%;
}
.bannerItem__image--product {
  /* multiply, color-burn */
  mix-blend-mode: multiply;
}
.bannerItem__overlay {
  position: absolute;
  inset: 0;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .bannerItem__overlay {
    padding: 0 40px;
  }
}
@container (max-width: 579px) {
  .bannerItem__overlay {
    padding: 0 20px;
  }
}
@container (max-width: 579px) {
  .bannerItem__overlay--countdown-true .bannerItem__text {
    display: none;
  }
}
@container (min-width: 580px) and (max-width: 1429px) {
  .bannerItem__container {
    position: relative;
    top: -6px;
  }
}
.bannerItem__heading {
  font-size: 44px;
  font-weight: 600;
  line-height: 65px;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .bannerItem__heading {
    font-size: 30px;
    line-height: 46px;
  }
}
@container (max-width: 579px) {
  .bannerItem__heading {
    font-size: 24px;
    line-height: 30px;
  }
}
.bannerItem__text {
  font-size: 20px;
  line-height: 36px;
  max-width: 335px;
  margin-top: 18px;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .bannerItem__text {
    font-size: 18px;
    line-height: 36px;
    margin-top: 12px;
    max-width: 300px;
    max-height: 108px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
}
@container (max-width: 579px) {
  .bannerItem__text {
    font-size: 13px;
    line-height: 18px;
    margin-top: 12px;
    max-width: 180px;
    max-height: 73px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }
}
.bannerItem__countdown {
  display: grid;
  row-gap: 8px;
  margin-top: 17px;
  margin-bottom: -1px;
}
.bannerItem__countdown-title {
  font-size: 16px;
}
.bannerItem__countdown-items {
  display: flex;
  gap: 5px;
}
.bannerItem__countdown-item {
  width: 55px;
  height: 60px;
  background-color: #fff;
  border-radius: 3px;
  text-align: center;
  padding-top: 7px;
}
.bannerItem__countdown-value {
  color: #178aef;
  font-size: 20px;
  font-weight: 600;
  height: 29px;
}
.bannerItem__countdown-text {
  font-size: 12px;
  color: #657d92;
}
.bannerItem__button {
  margin-top: 43px;
  height: 54px;
  padding: 0 29px;
  font-size: 18px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  column-gap: 10px;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .bannerItem__button {
    margin-top: 29px;
  }
}
@container (max-width: 579px) {
  .bannerItem__button {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #060000;
    font-size: 0;
    padding: 0;
    margin-top: 16px;
  }
}
.bannerItem__button:before {
  content: "";
  width: 7px;
  height: 10px;
  background-image: url("https://i.binargon.cz/demoeshopmaxi/arrow_right.svg");
  background-repeat: no-repeat;
  order: 1;
}
@container (max-width: 579px) {
  .banners {
    container-type: inline-size;
  }
}
@container (max-width: 579px) {
  .banners__track {
    overflow-x: auto;
    width: calc(100% + 40px);
    margin: 0 -20px;
  }
  .banners__track::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #fff;
  }
  .banners__track::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }
  .banners__track::-webkit-scrollbar-thumb {
    border-radius: 11px;
    background-color: rgba(23, 138, 239, 0.5);
    border: 2px solid #fff;
  }
  .banners__track:hover::-webkit-scrollbar-thumb {
    background-color: #178aef;
  }
}
.banners__items {
  display: grid;
  /* prettier-ignore */
  /* prettier-ignore */
  grid-template-columns: 66.2337662338% 31.6017316017%;
  grid-template-rows: 1fr 1fr;
  column-gap: 2.1645021645%;
  row-gap: 4.7438330171%;
  aspect-ratio: 2.1916508539;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .banners__items {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    aspect-ratio: initial;
  }
}
@container (max-width: 579px) {
  .banners__items {
    grid-template-columns: max-content 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 10px;
    width: max-content;
    padding: 0 20px;
    aspect-ratio: initial;
  }
}
.banners__large {
  grid-row: 1 / span 2;
  position: relative;
}
.banners__large:hover .banners__arrow {
  opacity: 1;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .banners__large {
    grid-row: 1;
    grid-column: 1 / span 2;
  }
}
@container (max-width: 579px) {
  .banners__large {
    grid-row: 1;
    grid-column: 1;
  }
}
.banners__glide-track {
  overflow: hidden;
}
@container (max-width: 579px) {
  .banners__glide-slides {
    column-gap: 10px;
  }
}
.banners__glide-slides--flex {
  display: flex;
}
@container (max-width: 579px) {
  .banners__glide-slides--flex {
    column-gap: 10px;
  }
}
@container (max-width: 579px) {
  .banners__control {
    display: none;
  }
}
.banners__arrow {
  border: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #178aef;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
.banners__arrow--hidden {
  display: none;
}
.banners__arrow--left {
  left: 0;
  transform: translate(-50%, -50%);
}
.banners__arrow--left .banners__arrow-icon {
  margin-left: -2px;
}
.banners__arrow--right {
  right: 0;
  transform: translate(50%, -50%);
}
.banners__arrow--right .banners__arrow-icon {
  margin-right: -2px;
}
.banners__bullets {
  position: absolute;
  bottom: 10px;
  margin: auto;
  left: 0;
  right: 0;
  width: max-content;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.banners__bullet {
  background-color: rgba(23, 138, 239, 0.1);
  padding: 0;
  border: 0;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  cursor: pointer;
}
.banners__bullet.glide__bullet--active {
  background-color: #178aef;
}
@container (max-width: 579px) {
  .bannersDuo {
    container-type: inline-size;
  }
}
.bannersDuo__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
@container (max-width: 579px) {
  .bannersDuo__items {
    gap: 10px;
  }
}
@container (max-width: 579px) {
  .bannersDuo__track {
    overflow-x: auto;
    width: calc(100% + 20px);
  }
  .bannersDuo__track::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #fff;
  }
  .bannersDuo__track::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }
  .bannersDuo__track::-webkit-scrollbar-thumb {
    border-radius: 11px;
    background-color: rgba(23, 138, 239, 0.5);
    border: 2px solid #fff;
  }
  .bannersDuo__track:hover::-webkit-scrollbar-thumb {
    background-color: #178aef;
  }
}
.bannersDuo__item {
  overflow: hidden;
  border-radius: 10px;
}
@container (max-width: 579px) {
  .bannersDuo__item {
    width: calc(100vw - 40px);
    width: 100cqw;
  }
}
.bannersDuo__item__image {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}
@container (max-width: 579px) {
  .bannersDuo__item__image {
    width: calc(100vw - 40px);
    width: 100cqw;
  }
}
.bannersDuo__control {
  display: none;
}
.bannersSimple {
  height: 450px;
}
@container (max-width: 1429px) {
  .bannersSimple {
    height: auto;
  }
}
@container (max-width: 579px) {
  .bannersSimple {
    container-type: inline-size;
    height: auto;
  }
}
@container (max-width: 579px) {
  .bannersSimple__track {
    overflow-x: auto;
    width: calc(100% + 40px);
    margin: 0 -20px;
  }
  .bannersSimple__track::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #fff;
  }
  .bannersSimple__track::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }
  .bannersSimple__track::-webkit-scrollbar-thumb {
    border-radius: 11px;
    background-color: rgba(23, 138, 239, 0.5);
    border: 2px solid #fff;
  }
  .bannersSimple__track:hover::-webkit-scrollbar-thumb {
    background-color: #178aef;
  }
}
.bannersSimple__items {
  position: relative;
}
.bannersSimple__items:hover .bannersSimple__arrow {
  opacity: 1;
}
@container (max-width: 579px) {
  .bannersSimple__items {
    display: grid;
    grid-template-rows: 1fr;
    gap: 10px;
    width: max-content;
    padding: 0 20px;
    aspect-ratio: initial;
  }
}
.bannersSimple__glide-track {
  overflow: hidden;
}
.bannersSimple__glide-slides {
  display: flex;
}
@container (max-width: 579px) {
  .bannersSimple__glide-slides {
    column-gap: 10px;
  }
}
@container (max-width: 579px) {
  .bannersSimple__control {
    display: none;
  }
}
.bannersSimple__arrow {
  border: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #178aef;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
.bannersSimple__arrow--hidden {
  display: none;
}
.bannersSimple__arrow--left {
  left: 0;
  transform: translate(-50%, -50%);
}
.bannersSimple__arrow--left .banners__arrow-icon {
  margin-left: -2px;
}
.bannersSimple__arrow--right {
  right: 0;
  transform: translate(50%, -50%);
}
.bannersSimple__arrow--right .banners__arrow-icon {
  margin-right: -2px;
}
.bannersSimple__bullets {
  position: absolute;
  bottom: 10px;
  margin: auto;
  left: 0;
  right: 0;
  width: max-content;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.bannersSimple__bullet {
  background-color: rgba(23, 138, 239, 0.1);
  padding: 0;
  border: 0;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  cursor: pointer;
}
.bannersSimple__bullet.glide__bullet--active {
  background-color: #178aef;
}
.benefit {
  font-size: 14px;
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 20px;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
@container (max-width: 579px) {
  .benefit {
    font-size: 13px;
    column-gap: 14px;
  }
}
.benefit__title {
  font-weight: 600;
  line-height: 21px;
  text-transform: uppercase;
  margin-bottom: -1px;
}
@container (max-width: 579px) {
  .benefit__title {
    line-height: 16px;
  }
}
.benefit__description {
  color: #657d92;
  line-height: 22px;
}
.benefit__number {
  width: 40px;
  height: 40px;
  background-color: #657d92;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 40px;
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}
.benefits {
  margin: 48px 0 41px;
}
.benefits::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #fff;
}
.benefits::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.benefits::-webkit-scrollbar-thumb {
  border-radius: 11px;
  background-color: rgba(23, 138, 239, 0.5);
  border: 2px solid #fff;
}
.benefits:hover::-webkit-scrollbar-thumb {
  background-color: #178aef;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .benefits {
    overflow-x: auto;
    margin-left: -30px;
    margin-right: -30px;
    padding: 0 30px;
  }
}
@container (max-width: 579px) {
  .benefits {
    overflow-x: auto;
    margin-left: -20px;
    margin-right: -20px;
    margin-top: 30px;
    margin-bottom: 27px;
  }
}
.benefits__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 15px;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .benefits__container {
    width: 1075px;
  }
}
@container (max-width: 579px) {
  .benefits__container {
    width: max-content;
    column-gap: 25px;
    padding: 0 20px;
  }
}
.bestsellers__title {
  font-size: 24px;
  font-weight: 600;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .bestsellers__title {
    font-size: 24px;
  }
}
@container (max-width: 579px) {
  .bestsellers__title {
    font-size: 20px;
    text-align: center;
  }
}
.binargon {
  color: #657d92;
  font-size: 14px;
  display: flex;
  align-items: center;
}
@container (max-width: 579px) {
  .binargon {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
.binargon a {
  color: #657d92;
}
.binargon a:hover {
  color: #178aef;
}
.blogSections {
  background-color: #fff;
  border: 1px solid #8697a7;
  border-radius: 10px;
  margin-bottom: 40px;
  overflow: hidden;
  box-shadow: 0 5px 12px rgba(134, 151, 167, 0.16);
  padding: 20px 27px 19px 19px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.blogSections__item {
  column-gap: 15px;
  margin: 9px 0 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-transform: uppercase;
  font-weight: 600;
  color: #1a1a1a;
  flex: 1;
  border-radius: 3px;
  min-height: 40px;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-grow: initial;
  padding: 5px 11px;
}
.blogSections__item--selected {
  text-decoration: none;
}
.blogSections__item:hover {
  background-color: rgba(23, 138, 239, 0.1);
  color: #178aef;
}
.cAdditionalProducts {
  border-left: 2px solid #178aef;
  padding: 7px 8px 6px 18px;
  margin: -10px 0 27px;
}
.cAdditionalProducts__description {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 7px;
}
.cAdditionalProducts__products {
  display: grid;
  row-gap: 4px;
}
@container (max-width: 579px) {
  .cAdditionalProducts__products {
    font-size: 14px;
  }
}
.cAdditionalProducts__product {
  display: flex;
  column-gap: 17px;
}
.cAdditionalProducts__product .cPrice {
  margin-left: auto;
  font-weight: 600;
}
.cAdditionalProducts__product .cPrice--without-vat, .cAdditionalProducts__product .cPrice--vat {
  display: none;
}
.cAdditionalProducts__product .cPrice--sum.cPrice--vat {
  display: block;
}
.cAdditionalProducts__product .cPrice__currency:before {
  content: " ";
}
.cAvailabilityRow--onstock {
  color: #34b262;
}
.cAvailabilityRow--availability {
  --cAvailability-color: #657d92;
  color: var(--cAvailability-color);
}
.cAvailabilityRow__description:after {
  content: " ";
}
.cAvailabilityRow__unit span:before {
  content: " ";
}
.cAvailabilityRow__value-unit:before {
  content: " ";
}
.cCancelFilter {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 44px;
}
@container (max-width: 579px) {
  .cCancelFilter {
    margin-bottom: 30px;
  }
}
.cCancelFilter__item {
  color: #e54a4b;
  font-weight: 600;
  height: 20px;
  text-decoration: none;
  font-size: 14px;
  line-height: 21px;
  display: flex;
  align-items: center;
  column-gap: 10px;
  text-transform: uppercase;
}
.cCancelFilter__item:before {
  content: "";
  display: block;
  background-color: #e54a4b;
  border-radius: 6px;
  width: 20px;
  height: 20px;
  box-shadow: 0 2px 6px fade(#e54a4b, 30);
  background-image: url("https://i.binargon.cz/demoeshopmaxi/cancel.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 10px;
}
.cCancelFilter__item-color {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  order: 1;
}
.cCartAddByEAN {
  margin: 25px 0;
}
.cCartAddByEAN__title {
  font-size: 1.3rem;
  color: #333;
  font-weight: 700;
  margin: 20px 0;
}
.cCartAddByEAN__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-top: 25px;
  background-color: #f8f9f9;
  border: 1px solid #ddd;
  border-radius: 5px;
}
.cCartAddByEAN__block {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cCartAddByEAN__input {
  height: 38px;
  border: 0;
  text-align: center;
  border: 1px solid #ddd;
}
.cCartAddByEAN__input--EAN {
  width: 150px;
}
.cCartAddByEAN__input--quantity {
  width: 60px;
}
.cCartAddByEAN__submit {
  margin-left: auto;
}
.cCartCSV {
  margin: 40px auto;
  max-width: 100%;
  width: 800px;
}
.cCartCSV__title {
  font-size: 1.3rem;
  color: #333;
  font-weight: 700;
  margin: 20px 0;
  text-align: center;
}
.cCartCSV__description {
  text-align: center;
}
.cCartCSV__description--1 {
  margin-bottom: 10px;
}
.cCartCSV__container {
  background-color: #f8f9f9;
  padding: 20px;
  border: 1px solid #dddddd;
  border-radius: 5px;
}
.cCartCSV__container-inner {
  display: grid;
  gap: 25px;
  text-align: center;
  margin-top: 30px;
}
.cCartCSV__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.cCartCSV__row-label {
  font-weight: 600;
}
.cCartCSV__row-label:before {
  content: "1.";
  margin-right: 5px;
}
.cCartCSV__row-input {
  border: 0;
}
.cCartCSV__submit-button:before {
  content: "2.";
  margin-right: 5px;
}
.cCmsTree {
  /* ODRAZKOVY SEZNAM */
  /* JEDEN RADEK V ODRAZKOVEM SEZXNAMU */
  /* ODKAZ NA KATEGORII */
  /* IKONKA PLUS a MINUS, KTERA OREVIRA KATEGORIE */
}
.cCmsTree__list {
  padding: 0 0 0 20px;
  margin: 0;
  list-style-type: none;
  width: 100%;
}
.cCmsTree__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cCmsTree__link {
  flex-grow: 1;
  height: 100%;
}
.cCmsTree__link:hover {
  background-color: #aaa;
}
.cCmsTree__link--open {
  font-weight: bold;
}
.cCmsTree__link--selected {
  color: #f0f;
}
.cCmsTree__toggle {
  display: block;
  width: 21px;
  height: 21px;
  cursor: pointer;
  background: url("https://i.binargon.cz/demoeshopmaxi/rgb(134,151,167)/plus_thin.svg") center center no-repeat;
}
.cCmsTree__toggle--open {
  background-image: url("https://i.binargon.cz/demoeshopmaxi/rgba(23,138,239,1)/minus_thin.svg");
}
.cCmsTree__toggle--loading {
  background-image: url("https://i.binargon.cz/demoeshopmaxi/loading/rgba(100,100,100,1)/loading1.svg");
}
.cCmsTree {
  background-color: #fff;
  border: 1px solid #8697a7;
  border-radius: 10px;
  margin: 40px 0 30px;
  overflow: hidden;
  box-shadow: 0 5px 12px rgba(134, 151, 167, 0.16);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cCmsTree__list {
  padding-left: 0;
}
.cCmsTree__list--level-1 {
  padding: 20px 27px 19px 19px;
}
.cCmsTree__list--level-2 {
  padding-bottom: 1px;
  padding-top: 8px;
}
.cCmsTree__list:not(.cCmsTree__list--level-1) {
  padding-left: 20px;
}
.cCmsTree__list:not(.cCmsTree__list--level-1):not(.cCmsTree__list--level-2) {
  margin-top: 2px;
}
.cCmsTree__row {
  justify-content: space-between;
}
.cCmsTree__row--level-1 {
  column-gap: 15px;
  margin: 9px 0 10px;
}
.cCmsTree__row--level-1 > .cCmsTree__link {
  text-transform: uppercase;
  font-weight: 600;
  color: #1a1a1a;
  flex: 1;
  border-radius: 3px;
  min-height: 40px;
}
.cCmsTree__row--level-1 > .cCmsTree__link:hover {
  background-color: rgba(23, 138, 239, 0.1);
  color: #178aef;
}
.cCmsTree__row--level-1 > .cCmsTree__toggle--open {
  background-color: rgba(23, 138, 239, 0.14);
}
.cCmsTree__row--level-1 > .cCmsTree__toggle--closed {
  background-color: #f4f6f8;
}
.cCmsTree__row--level-1 > .cCmsTree__toggle--closed:hover {
  background-color: rgba(23, 138, 239, 0.14);
}
.cCmsTree__row:not(.cCmsTree__row--level-1) {
  margin-bottom: 1px;
}
.cCmsTree__row:not(.cCmsTree__row--level-1):last-child {
  margin-bottom: 0;
}
.cCmsTree__row:not(.cCmsTree__row--level-1) .cCmsTree__link {
  font-weight: 400;
  max-width: calc(100% - 30px);
  width: 100%;
}
.cCmsTree__row:not(.cCmsTree__row--level-1) .cCmsTree__link--selected {
  font-weight: 600;
}
.cCmsTree__row:not(.cCmsTree__row--level-1) .cCmsTree__link:hover {
  color: #178aef;
}
.cCmsTree__row--open {
  border-bottom: 0;
}
.cCmsTree__toggle {
  border-radius: 50%;
  background-size: 9px 9px;
  background-repeat: no-repeat;
  background-position: center center;
}
.cCmsTree__toggle--closed:hover {
  background-image: url("https://i.binargon.cz/demoeshopmaxi/rgba(23,138,239,1)/plus_thin.svg");
}
.cCmsTree__link {
  font-size: 14px;
  color: #657d92;
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-grow: initial;
  padding: 5px 11px;
}
.cCmsTree__link:hover {
  background-color: transparent;
}
.cCmsTree__link--selected {
  text-decoration: none;
}
.cDelivery {
  background: #fff;
  border: 1px solid #fff !important;
  padding: 56px 56px 26px;
  max-width: 750px;
  width: 100%;
  /* pokud se seznam dorpav otevira v modalnim dialogu, pridavam tento modifikator */
  /* pokud se seznam doprav zobrazuje v tele stranky, pridavam modifikator */
  /* pozadi za dialogem */
}
@media (min-width: 768px) and (max-width: 1280px) {
  .cDelivery {
    max-width: 650px;
  }
}
@media (min-width: 0px) and (max-width: 768px) {
  .cDelivery {
    padding: 30px 30px 20px;
    margin: 0;
    height: 100vh;
    max-height: 100vh;
  }
}
.cDelivery::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0);
}
.cDelivery::-webkit-scrollbar {
  width: 4px;
}
.cDelivery::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0);
}
.cDelivery:hover::-webkit-scrollbar-track, .cDelivery:hover::-webkit-scrollbar-thumb {
  background-color: rgba(50, 50, 50, 0.3);
}
.cDelivery--modalDialog {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
.cDelivery::backdrop {
  background-color: rgba(91, 117, 139, 0.12);
  backdrop-filter: blur(3px);
}
.cDelivery__closeIcon {
  position: fixed;
  right: 15px;
  top: 15px;
  width: 30px;
  height: 30px;
  background-color: #178aef;
  cursor: pointer;
  border-radius: 50%;
  background-image: url("https://i.binargon.cz/cDelivery/rgba(255,255,255,1)/close.svg");
  background-size: 10px auto;
  background-repeat: no-repeat;
  background-position: center;
}
.cDelivery__subprodsWarning {
  margin-bottom: 20px;
}
.cDelivery__header {
  font-size: 20px;
}
.cDelivery__closeButton {
  color: #e54a4b;
  width: max-content;
  margin: 25px auto 0;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  column-gap: 6px;
  cursor: pointer;
}
.cDelivery__closeButton:before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  background-image: url("https://i.binargon.cz/cDelivery/rgba(229,74,75,1)/close.svg");
}
.cDelivery__countries {
  display: grid;
  grid-template-columns: 1fr 200px;
  column-gap: 30px;
  row-gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .cDelivery__countries {
    grid-template-columns: 1fr;
  }
}
.cDelivery__countriesText {
  font-size: 20px;
  grid-column: 1 / span 2;
}
@media (min-width: 0px) and (max-width: 768px) {
  .cDelivery__countriesText {
    grid-column: 1;
  }
}
.cDelivery__countriesDescription {
  font-size: 14px;
}
.cDeliveryCarier {
  display: flex;
  border-bottom: 1px solid #ecedef;
  padding: 20px 0;
  flex-wrap: wrap;
}
@media (min-width: 0px) and (max-width: 768px) {
  .cDeliveryCarier {
    display: grid;
    grid-template-areas: "labels labels labels" "name name delivery" "price price price";
    grid-template-columns: 1fr 1fr max-content;
    column-gap: 10px;
  }
}
.cDeliveryCarier__unknownDelivery {
  text-align: center;
}
.cDeliveryCarier__name {
  color: #178aef;
  font-weight: 600;
  font-size: 16px;
}
@media (min-width: 0px) and (max-width: 1280px) {
  .cDeliveryCarier__name {
    font-size: 14px;
  }
}
@media (min-width: 0px) and (max-width: 768px) {
  .cDeliveryCarier__name {
    grid-area: name;
  }
}
.cDeliveryCarier__label {
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  height: 18px;
  border-radius: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  padding: 0 6px;
  position: relative;
  margin-left: 5px;
  max-width: max-content;
}
@media (min-width: 0px) and (max-width: 768px) {
  .cDeliveryCarier__label {
    margin-left: 0;
    margin-bottom: 10px;
    grid-area: labels;
  }
}
.cDeliveryCarier__label--fastest {
  background-color: #e54a4b;
}
@media (min-width: 0px) and (max-width: 768px) {
  .cDeliveryCarier__label--fastest {
    grid-column: 1;
  }
}
.cDeliveryCarier__label--cheapest {
  background-color: #34b262;
}
@media (min-width: 0px) and (max-width: 768px) {
  .cDeliveryCarier__label--cheapest {
    grid-column: auto / span 3;
  }
}
.cDeliveryCarier__label:after {
  content: "";
  display: block;
  position: absolute;
  width: 5px;
  height: 5px;
  left: 0;
  bottom: -4px;
}
.cDeliveryCarier__delivery {
  display: flex;
  column-gap: 9px;
  align-items: center;
  margin-left: auto;
}
@media (min-width: 0px) and (max-width: 768px) {
  .cDeliveryCarier__delivery {
    grid-area: delivery;
  }
}
.cDeliveryCarier__numberOfDays {
  height: 19px;
  border-radius: 3px;
  padding: 0 7px;
  font-size: 14px;
  display: flex;
  align-items: center;
  background-color: #f4f6f8;
  color: #657d92;
  max-width: max-content;
  margin-left: auto;
}
@media (min-width: 0px) and (max-width: 768px) {
  .cDeliveryCarier__numberOfDays {
    font-size: 12px;
    padding: 0 5px;
    height: 16px;
  }
}
.cDeliveryCarier__numberOfDaysUnit:before {
  content: " ";
}
.cDeliveryCarier__date {
  font-size: 14px;
  font-weight: 600;
}
@media (min-width: 0px) and (max-width: 768px) {
  .cDeliveryCarier__date {
    font-size: 12px;
  }
}
.cDeliveryCarier__freeDelivery, .cDeliveryCarier__price {
  width: 100%;
  font-weight: 600;
  font-size: 14px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .cDeliveryCarier__freeDelivery, .cDeliveryCarier__price {
    grid-area: price;
  }
}
.cDeliveryCarier__freeDelivery {
  color: #34b262;
}
@media (min-width: 0px) and (max-width: 768px) {
  .cDeliveryCarier__price {
    font-size: 12px;
  }
}
.cDeliveryCarier__price .cPrice__value:after {
  content: " ";
}
.cFilterDialog {
  --cFilterDialogClass-width: 990px;
  --cFilterDialogClass-height: 700px;
  background-color: #fff;
  width: 990px;
  max-width: 100%;
  height: 700px;
  max-height: 90vh;
  border: 0;
  border-radius: 3px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "header" "main" "footer";
  grid-template-rows: 75px 1fr max-content;
  container: filter / inline-size;
  outline: 0;
}
@media (max-width: 1024px) {
  .cFilterDialog {
    width: 750px;
  }
}
@media (max-width: 579px) {
  .cFilterDialog {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    max-height: 100%;
    height: calc(var(--cFilterDialogClass-vh) * 100);
  }
  .cFilterDialog__header--parameterIsSelected .cFilterDialog__header-title {
    display: none;
  }
  .cFilterDialog__header:not(.cFilterDialog__header--parameterIsSelected) .cFilterDialog__values-back {
    display: none;
  }
  .cFilterDialog__parameter {
    padding: 15px 0;
    position: relative;
  }
  .cFilterDialog__parameter:not(:last-child) {
    border-bottom: 1px solid #ecedef;
  }
  .cFilterDialog__parameter--enabled:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    width: 16px;
    height: 16px;
    transform: translateY(-50%) rotate(-90deg);
    background-image: url("https://i.binargon.cz/common/rgba(0,0,0,1)/arrow_thin.svg");
    background-repeat: no-repeat;
    background-position: center;
  }
  .cFilterDialog__parameter-name {
    font-size: 16px;
  }
}
.cFilterDialog__category-name:before {
  content: " ";
}
.cFilterDialog__main-button {
  width: max-content;
  outline: 0;
  margin-left: auto;
}
@media (max-width: 579px) {
  .cFilterDialog__main-button {
    margin: 15px auto;
  }
}
.cFilterDialog__main-button-number {
  margin-left: 5px;
}
.cFilterDialog__main-button-number:before {
  content: "(";
}
.cFilterDialog__main-button-number:after {
  content: ")";
}
.cFilterDialog__close {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #178aef;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  transform: rotate(45deg);
  color: #fff;
  position: fixed;
  right: 10px;
  top: 10px;
  cursor: pointer;
}
.cFilterDialog__close:before {
  content: "+";
  font-size: 26px;
}
@container (max-width: 579px) {
  .cFilterDialog__close {
    transform: rotate(0);
    top: 0;
    right: 0;
    width: 76px;
    height: 71px;
    background-color: #fff;
    background-image: url("https://i.binargon.cz/common/rgba(23,138,239,1)/cross_thin.svg");
    background-size: 30px auto;
    background-repeat: no-repeat;
    background-position: center;
  }
  .cFilterDialog__close:before {
    display: none;
  }
}
.cFilterDialog__header {
  grid-area: header;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 20px;
  padding: 15px 15px 15px 30px;
  box-shadow: 0 5px 12px rgba(101, 125, 146, 0.16);
}
@container (max-width: 579px) {
  .cFilterDialog__header {
    border-bottom: 1px solid #ecedef;
  }
}
.cFilterDialog__header-title {
  font-size: 18px;
}
.cFilterDialog__search {
  display: none;
  border-radius: 6px;
  width: 435px;
  max-width: 100%;
  height: 45px;
  align-items: center;
  padding-left: 55px;
  background-image: url("https://i.binargon.cz/common/search.svg");
  background-repeat: no-repeat;
  background-position: 27px center;
}
@container (max-width: 579px) {
  .cFilterDialog__search {
    display: none;
  }
}
.cFilterDialog__search-input:not(.exclude):not([type="range"]) {
  background-color: transparent;
  border: 0;
  height: 30px;
}
.cFilterDialog__main {
  grid-area: main;
  display: grid;
  grid-template-columns: 265px 1fr;
  grid-template-areas: "list values";
  height: 100%;
  overflow: hidden;
}
.cFilterDialog__main::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #fff;
}
.cFilterDialog__main::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.cFilterDialog__main::-webkit-scrollbar-thumb {
  border-radius: 11px;
  background-color: rgba(23, 138, 239, 0.5);
  border: 2px solid #fff;
}
.cFilterDialog__main:hover::-webkit-scrollbar-thumb {
  background-color: #178aef;
}
@container (max-width: 579px) {
  .cFilterDialog__main {
    grid-template-areas: "list";
    grid-template-columns: 1fr;
    position: relative;
    max-height: 100%;
  }
}
.cFilterDialog__list {
  grid-area: list;
  background-color: rgba(23, 138, 239, 0.05);
  padding: 35px 30px;
  display: grid;
  row-gap: 30px;
  grid-auto-rows: minmax(20px, max-content);
  overflow: auto;
}
.cFilterDialog__list::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #fff;
}
.cFilterDialog__list::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.cFilterDialog__list::-webkit-scrollbar-thumb {
  border-radius: 11px;
  background-color: rgba(23, 138, 239, 0.5);
  border: 2px solid #fff;
}
.cFilterDialog__list:hover::-webkit-scrollbar-thumb {
  background-color: #178aef;
}
@container (max-width: 579px) {
  .cFilterDialog__list {
    background-color: #fff;
  }
}
@media (max-width: 579px) {
  .cFilterDialog__list {
    row-gap: 0;
  }
}
.cFilterDialog__parameter {
  display: flex;
  align-items: center;
  column-gap: 6px;
  color: #1a1a1a;
  cursor: pointer;
}
.cFilterDialog__parameter--selected {
  color: #178aef;
}
.cFilterDialog__parameter:hover:not(.cFilterDialog__parameter--disabled) {
  color: #178aef;
}
.cFilterDialog__parameter--disabled {
  cursor: not-allowed;
  font-weight: normal;
  color: #ccc;
}
.cFilterDialog__parameter-name {
  font-weight: 600;
  font-size: 14px;
}
.cFilterDialog__parameter-count {
  min-width: 21px;
  height: 21px;
  border-radius: 21px;
  background-color: #178aef;
  color: #fff;
  padding: 0 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  line-height: 21px;
}
.cFilterDialog__values {
  grid-area: values;
  padding: 33px 35px;
  max-height: 100%;
  overflow: auto;
  width: 100%;
}
@container (max-width: 579px) {
  .cFilterDialog__values {
    transition: 0.2s ease-in-out transform;
    position: absolute;
    inset: 0;
    background-color: #fff;
    box-shadow: 0 5px 12px rgba(134, 151, 167, 0.16);
  }
}
@container (max-width: 579px) {
  .cFilterDialog__values--closed {
    transform: translateX(-100%);
  }
}
@container (max-width: 579px) {
  .cFilterDialog__values--open {
    transform: translateX(0);
  }
}
.cFilterDialog__values-back {
  display: none;
}
.cFilterDialog__values-back:before {
  content: "";
  display: block;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background-color: #178aef;
  box-shadow: 0 2px 6px rgba(23, 138, 239, 0.35);
  transition: 0.2s ease-in-out background-color, 0.3s ease-in-out box-shadow;
  background-repeat: no-repeat;
  background-image: url("https://i.binargon.cz/common/arrow_left.svg");
  background-position: calc(50% - 1px) center;
}
.cFilterDialog__values-back:before:hover {
  background-color: #1a1a1a;
  box-shadow: 0 2px 6px rgba(26, 26, 26, 0.35);
}
@container (max-width: 579px) {
  .cFilterDialog__values-back {
    display: flex;
    align-items: center;
    column-gap: 10px;
    color: #178aef;
    cursor: pointer;
    padding: 20px 0 20px;
    width: calc(100% + 15px);
  }
}
.cFilterDialog__values-back--hidden {
  display: none;
}
.cFilterDialog__values-divider {
  height: 1px;
  width: 100%;
  background-color: #ecedef;
  border: 0;
  margin: 15px 0;
}
.cFilterDialog__values-description {
  font-size: 14px;
}
.cFilterDialog__values-header {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 29px;
}
.cFilterDialog__values-name {
  font-size: 16px;
  font-weight: 600;
}
.cFilterDialog__values-items {
  columns: 3;
}
@media (max-width: 1024px) {
  .cFilterDialog__values-items {
    columns: 2;
  }
}
@container (max-width: 579px) {
  .cFilterDialog__values-items {
    columns: 1;
  }
}
.cFilterDialog__value {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  width: 100%;
}
.cFilterDialog__value:hover .cFilterDialog__value-name {
  color: #178aef;
}
.cFilterDialog__value--checkbox-multiple {
  position: relative;
}
.cFilterDialog__value-checkbox, .cFilterDialog__value-radio {
  margin-right: 12px !important;
}
.cFilterDialog__value-select {
  width: 100%;
}
.cFilterDialog__value-name {
  font-size: 14px;
}
.cFilterDialog__value-count, .cFilterDialog__value-unit {
  color: #8697a7;
  font-size: 12px;
  margin-left: 4px;
  font-weight: normal;
}
.cFilterDialog__value-count:before, .cFilterDialog__value-unit:before {
  content: "(";
}
.cFilterDialog__value-count:after, .cFilterDialog__value-unit:after {
  content: ")";
}
.cFilterDialog__value.cFilterDialog__value--disabled {
  opacity: 0.5;
}
.cFilterDialog__value--color {
  --cFilterDialog-color: #ccc;
}
.cFilterDialog__value--color .cFilterDialog__value-checkbox {
  position: absolute;
  background-color: transparent !important;
  mix-blend-mode: difference;
}
.cFilterDialog__value--color .cFilterDialog__value-name {
  display: flex;
  align-items: center;
}
.cFilterDialog__value--color.cFilterDialog__value--checkbox-multiple {
  position: relative;
}
.cFilterDialog__value--color.cFilterDialog__value--checkbox-multiple .cFilterDialog__value-name:before {
  content: "";
  width: 25px;
  height: 25px;
  border-radius: 3px;
  margin-right: 12px;
  background-color: var(--cFilterDialog-color);
  flex-shrink: 0;
}
.cFilterDialog__value--color.cFilterDialog__value--radio {
  display: flex;
  align-items: center;
}
.cFilterDialog__value--color.cFilterDialog__value--radio .cFilterDialog__value-radio {
  border-color: var(--cFilterDialog-color) !important;
}
.cFilterDialog__value--input, .cFilterDialog__value--select, .cFilterDialog__value--textarea {
  display: block;
}
.cFilterDialog__value--input .cFilterDialog__value-name, .cFilterDialog__value--select .cFilterDialog__value-name, .cFilterDialog__value--textarea .cFilterDialog__value-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 29px;
}
.cFilterDialog__value--range-multiple {
  display: grid;
  position: relative;
  grid-template-areas: "range range range" "min dash max";
  grid-template-columns: minmax(95px, 1fr) 20px minmax(95px, 1fr);
  column-gap: 10px;
  row-gap: 32px;
}
.cFilterDialog__value--range-multiple:after {
  content: "–";
  grid-area: dash;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #707070;
}
.cFilterDialog__value--range-multiple .cFilterDialog__value-range::-webkit-slider-runnable-track, .cFilterDialog__value--range-multiple .cFilterDialog__value-range::-webkit-slider-thumb, .cFilterDialog__value--range-multiple .cFilterDialog__value-range {
  -webkit-appearance: none;
}
.cFilterDialog__value--range-multiple .cFilterDialog__value-range::-webkit-slider-runnable-track, .cFilterDialog__value--range-multiple .cFilterDialog__value-range::-moz-range-track {
  width: 100%;
  height: 100%;
  background: none;
}
.cFilterDialog__value--range-multiple .cFilterDialog__value-range::-webkit-slider-thumb {
  border: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #178aef;
  pointer-events: auto;
  position: relative;
  z-index: 10;
}
.cFilterDialog__value--range-multiple .cFilterDialog__value-range::-moz-range-thumb {
  border: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #178aef;
  pointer-events: auto;
  position: relative;
  z-index: 10;
}
.cFilterDialog__value--range-multiple .cFilterDialog__value-range {
  margin: 0;
  background: none;
  font: inherit;
  pointer-events: none;
  grid-area: range;
  height: 26px;
  position: relative;
  z-index: 1;
  outline: 0;
}
.cFilterDialog__value--range-multiple .cFilterDialog__value-range::-webkit-slider-thumb {
  box-shadow: 0px 2px 6px rgba(23, 138, 239, 0.35);
}
.cFilterDialog__value--range-multiple .cFilterDialog__value-range::-moz-range-thumb {
  box-shadow: 0px 2px 6px rgba(23, 138, 239, 0.35);
}
.cFilterDialog__value--range-multiple .cFilterDialog__value-range--min::-webkit-slider-thumb {
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("https://i.binargon.cz/common/arrow_right.svg");
}
.cFilterDialog__value--range-multiple .cFilterDialog__value-range--min::-moz-range-thumb {
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("https://i.binargon.cz/common/arrow_right.svg");
}
.cFilterDialog__value--range-multiple .cFilterDialog__value-range--max::-webkit-slider-thumb {
  background-repeat: no-repeat;
  background-position: calc(50% - 1px) center;
  background-image: url("https://i.binargon.cz/common/arrow_left.svg");
}
.cFilterDialog__value--range-multiple .cFilterDialog__value-range--max::-moz-range-thumb {
  background-repeat: no-repeat;
  background-position: calc(50% - 1px) center;
  background-image: url("https://i.binargon.cz/common/arrow_left.svg");
}
.cFilterDialog__value--range-multiple .cFilterDialog__value-input {
  height: 35px;
  width: 100%;
  font-size: 16px;
}
.cFilterDialog__value--range-multiple .cFilterDialog__value-input--min {
  grid-area: min;
}
.cFilterDialog__value--range-multiple .cFilterDialog__value-input--max {
  grid-area: max;
  text-align: right;
}
.cFilterDialog__value--range-multiple .cFilterDialog__value-track {
  position: relative;
  background-color: rgba(23, 138, 239, 0.2);
  width: auto;
  height: 2px;
  overflow: hidden;
  /* trackSelectedRange (vybarvena cast mezi dvema puntiky) musi zacinat a koncit uprostred puntiku. Proto je oblast ve kter� se m��e pohybovat, zmensena z kazde strany o polovinu sirky puntiku, */
  padding-left: calc(26px / 2);
  padding-right: calc(26px / 2);
  grid-area: range;
}
.cFilterDialog__value--range-multiple .cFilterDialog__value-trackSelectedRange {
  background-color: #178aef;
  width: auto;
  height: 2px;
}
.cFilterDialog__value-input {
  width: 100%;
}
.cFilterDialog__value-textarea {
  width: 100%;
  height: 60px;
}
.cFilterDialog__footer {
  grid-area: footer;
  height: 75px;
  display: grid;
  grid-template-columns: 1fr max-content;
  align-items: center;
  column-gap: 20px;
  padding: 15px 15px 15px 30px;
  box-shadow: 0 -5px 12px rgba(101, 125, 146, 0.16);
}
@container (max-width: 579px) {
  .cFilterDialog__footer {
    border-top: 1px solid #ecedef;
    height: auto;
    grid-template-columns: 1fr;
    padding: 0;
  }
}
.cFilterDialog__footer--hidden {
  display: none;
}
.cFilterDialog__footer-cancel {
  display: flex;
  column-gap: 20px;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 20px;
}
.cFilterDialog__footer-cancel::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #fff;
}
.cFilterDialog__footer-cancel::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.cFilterDialog__footer-cancel::-webkit-scrollbar-thumb {
  border-radius: 11px;
  background-color: rgba(23, 138, 239, 0.5);
  border: 2px solid #fff;
}
.cFilterDialog__footer-cancel:hover::-webkit-scrollbar-thumb {
  background-color: #178aef;
}
.cFilterDialog__footer-cancel-container {
  overflow: auto;
}
.cFilterDialog__cancel {
  color: #e54a4b;
  font-weight: 600;
  height: 20px;
  text-decoration: none;
  font-size: 14px;
  line-height: 21px;
  display: flex;
  align-items: center;
  column-gap: 5px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}
.cFilterDialog__cancel:before {
  content: "";
  display: block;
  background-color: #e54a4b;
  border-radius: 6px;
  width: 20px;
  height: 20px;
  box-shadow: 0 2px 6px fade(#e54a4b, 30);
  background-image: url("https://i.binargon.cz/common/cancel.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 10px;
  flex-shrink: 0;
}
.cFilterDialog__cancel-color {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  order: 1;
}
.cFilterDialog__cancel-name {
  display: none;
}
.cFilterDialog__cancel-unit {
  text-transform: none;
}
.cFilterDialog__cancel-unit sup {
  vertical-align: top;
}
.cFilterDialog__results {
  margin-left: auto;
}
.cFilterDialog__values::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #fff;
}
.cFilterDialog__values::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.cFilterDialog__values::-webkit-scrollbar-thumb {
  border-radius: 11px;
  background-color: rgba(23, 138, 239, 0.5);
  border: 2px solid #fff;
}
.cFilterDialog__values:hover::-webkit-scrollbar-thumb {
  background-color: #178aef;
}
.cGoogleReviewsBadge {
  position: relative;
  overflow: hidden;
}
.cHeaderMenuOverlay {
  top: 161px;
  background-color: rgba(91, 117, 139, 0.12);
}
.cMernaJednotka {
  color: #657d92;
  font-size: 14px;
}
.cMernaJednotka--vypis {
  text-align: center;
}
.cMernaJednotka span:before {
  content: " ";
}
.cOrderReview {
  display: grid;
  justify-content: center;
  row-gap: 20px;
}
.cOrderReview__title {
  font-size: 18px;
  font-weight: 700;
}
.cOrderReview__stars {
  margin: auto;
  width: 200px;
  height: 35px;
  background-image: url("https://i.binargon.cz/common/rgb(175,175,175,1)/stars.svg");
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  transition: 0.5s ease-in-out opacity;
}
.cOrderReview__stars--done {
  opacity: 0.5;
  cursor: not-allowed;
}
.cOrderReview__stars--done .cOrderReview__stars-star {
  display: none;
}
.cOrderReview__stars-inner {
  background-image: url("https://i.binargon.cz/common/rgba(255,193,7,1)/stars.svg");
  background-repeat: no-repeat;
  background-size: 200px 35px;
  height: 35px;
  width: 0;
  position: absolute;
  inset: 0;
}
.cOrderReview__stars-star {
  position: relative;
  z-index: 2;
}
.cOrderReview__done {
  display: none;
}
.cOrderReview__done--visible {
  display: block;
  padding: 15px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}
.cOrderReview {
  margin-top: 30px;
}
.cParamDescription {
  background: #fff;
  border: 1px solid #fff !important;
  padding: 20px;
  min-width: 280px;
  max-width: 750px;
  width: max-content;
}
@media (min-width: 768px) and (max-width: 1280px) {
  .cParamDescription {
    max-width: 650px;
  }
}
@media (min-width: 0px) and (max-width: 768px) {
  .cParamDescription {
    padding: 15px;
    margin: 0;
    width: 100vw;
    height: 100vh;
    max-height: 100vh;
  }
}
.cParamDescription::backdrop {
  background-color: rgba(91, 117, 139, 0.12);
  backdrop-filter: blur(3px);
}
.cParamDescription__name {
  font-weight: 600;
  text-align: center;
}
.cParamDescription__description {
  font-size: 14px;
  text-align: center;
}
.cParamDescription__button-close {
  margin: auto;
  width: max-content;
  display: block;
}
.cParamDescription__close {
  position: fixed;
  right: 15px;
  top: 15px;
  width: 30px;
  height: 30px;
  background-color: #178aef;
  cursor: pointer;
  border-radius: 50%;
  background-image: url("https://i.binargon.cz/cDelivery/rgba(255,255,255,1)/close.svg");
  background-size: 10px auto;
  background-repeat: no-repeat;
  background-position: center;
}
.cParamDescription__button-close {
  margin-top: 25px;
}
.cParameters {
  margin-top: 88px;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .cParameters {
    margin-top: 39px;
  }
}
@container (max-width: 579px) {
  .cParameters {
    margin-top: 15px;
  }
}
.cParameters__title {
  margin-bottom: 48px;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .cParameters__title {
    margin-bottom: 40px;
  }
}
@container (max-width: 579px) {
  .cParameters__title {
    margin-bottom: 28px;
  }
}
.cParameters__items--rows {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 50px;
}
@container (max-width: 1429px) {
  .cParameters__items--rows {
    grid-template-columns: 1fr;
  }
}
.cParameters__items--rows .cParameters__item:nth-child(4n-5), .cParameters__items--rows .cParameters__item:nth-child(4n) {
  background-color: #f7f8fa;
}
.cParameters__items--columns {
  columns: 2;
  column-gap: 50px;
}
@container (max-width: 1429px) {
  .cParameters__items--columns {
    columns: 1;
  }
}
.cParameters__items--columns .cParameters__item:nth-child(even) {
  background-color: #f7f8fa;
}
.cParameters__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 20px;
  min-height: 57px;
  padding: 17px 20px;
  font-size: 16px;
  border-block: 1px solid #e0e6f1;
  margin-top: -1px;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .cParameters__item {
    min-height: 58px;
    padding: 14px 20px;
  }
}
@container (max-width: 579px) {
  .cParameters__item {
    min-height: 52px;
    padding: 12px 0px;
    font-size: 14px;
  }
}
.cParameters__item--status #setbind-cParameters-status-value {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}
.cParameters__item--status #setbind-cParameters-status-value .produktDetailStav:after {
  display: none;
}
.cParameters__item-name {
  display: flex;
  align-items: center;
}
.cParameters__item-hint {
  height: auto;
  display: flex;
  align-items: center;
}
.cParameters__item-hint-text {
  width: max-content;
  max-width: 250px;
  font-size: 12px;
}
.cParameters__item-hint-text--hidden {
  display: none;
}
.cParameters__item-value {
  text-align: right;
  font-weight: 600;
}
.cParameters__item-color {
  display: inline-block;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  margin-right: 5px;
}
.cParameters__item-link {
  color: #178aef;
}
.cParameters__item-help {
  width: 16px;
  height: 16px;
  background-color: rgba(101, 125, 146, 0.5);
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 11px;
  line-height: 16px;
  color: #fff;
  font-weight: normal;
  cursor: pointer;
  margin-left: 5px;
}
.cParameters__item-help:before {
  content: "i";
}
.cPocetVariantTextem__text:before {
  content: " ";
}
.cProducersList {
  --link-color: #1f1f1f;
  padding: 35px 0;
}
@container (min-width: 580px) and (max-width: 1429px) {
  --anchor-size: 25px;
  --anchor-column-gap: 0;
}
@container (max-width: 579px) {
  .cProducersList {
    padding-top: 19px;
  }
}
.cProducersList__content {
  margin: auto;
}
.cProducersList__title {
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 33px;
}
@container (max-width: 579px) {
  .cProducersList__title {
    font-size: 30px;
  }
}
.cProducersList__title--top {
  margin-bottom: 35px;
}
@container (max-width: 579px) {
  .cProducersList__title--top {
    margin-bottom: 23px;
  }
}
.cProducersList__top {
  margin-bottom: 68px;
}
@container (max-width: 579px) {
  .cProducersList__top {
    margin-bottom: 32px;
  }
}
.cProducersList__top-items {
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .cProducersList__top-items {
    gap: 20px;
  }
}
@container (max-width: 579px) {
  .cProducersList__top-items {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
.cProducersList__top-link {
  aspect-ratio: unset;
  border-radius: 3px;
  overflow: hidden;
  border: 0;
}
.cProducersList__top-name {
  display: none;
}
.cProducersList__top-image {
  vertical-align: top;
  width: 100%;
}
@container (max-width: 579px) {
  .cProducersList__anchors {
    display: none;
  }
}
.cProducersList__anchors-title {
  display: none;
}
.cProducersList__anchors-link {
  font-weight: 900;
}
.cProducersList__producers {
  margin-top: 27px;
}
.cProducersList__group {
  margin-top: 28px;
  padding-bottom: 36px;
}
@container (max-width: 579px) {
  .cProducersList__group {
    margin-top: 20px;
    padding-bottom: 26px;
  }
}
.cProducersList__group-title {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 30px;
  margin-bottom: 23px;
}
.cProducersList__group-items {
  row-gap: 13px;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .cProducersList__group-items {
    grid-template-columns: repeat(3, minmax(200px, 1fr));
  }
}
@container (max-width: 579px) {
  .cProducersList__group-items {
    grid-template-columns: 1fr;
  }
}
.cProducersList__group-link {
  font-size: 14px;
}
.cProductParams {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cProductParams__item {
  border-radius: 3px;
  border: 1px solid #e0e6f1;
  background-color: #f7f8fa;
  padding: 5px 9px;
  font-size: 13px;
}
.cProductParams__item-value {
  font-weight: 600;
}
.cShare__dialog {
  border: 1px solid #178aef;
  border-radius: 5px;
  width: 355px;
  max-width: 90%;
  padding: 25px;
  box-shadow: 0 2px 6px rgba(23, 138, 239, 0.35);
}
.cShare__dialogHeader {
  display: none;
}
.cShare__dialogContent {
  display: flex;
  flex-wrap: wrap;
  column-gap: 25px;
}
.cShare__share {
  display: flex;
  align-items: center;
  column-gap: 9px;
  justify-content: center;
}
.cShare__share:hover .cShare__shareText {
  color: #178aef;
}
.cShare__shareIcon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #fff;
  width: 22px;
  height: 22px;
}
.cShare__shareText {
  font-size: 14px;
  color: #657d92;
}
.cShare__closeIcon {
  position: fixed;
  right: 15px;
  top: 15px;
  width: 30px;
  height: 30px;
  background-color: #178aef;
  cursor: pointer;
  border-radius: 50%;
  background-image: url("https://i.binargon.cz/cShare/rgba(255,255,255,1)/close.svg");
  background-size: 10px auto;
  background-repeat: no-repeat;
  background-position: center;
}
.cSubmenu {
  --img-width: 70px;
  border: 1px solid #8697a7;
  border-bottom-left-radius: 9px;
  border-bottom-right-radius: 9px;
  overflow: hidden;
}
.cSubmenu--active {
  display: block;
}
.cSubmenu__content {
  padding: 50px 50px;
  max-height: max-content;
}
.cSubmenu__grid {
  row-gap: 55px;
}
.cSubmenu__grid-item {
  column-gap: 20px;
}
.cSubmenu__link-image {
  color: #ddd;
  text-decoration: none;
}
.cSubmenu__link-name {
  color: #1a1a1a;
  text-decoration: none;
}
.cSubmenu__link-name:hover {
  color: #178aef;
  text-decoration: none;
}
.cSubmenu__image--none:after {
  content: "☁";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 30px;
}
.cSubmenu__name {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
}
.cSubmenu__list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1em;
}
.cSubmenu__list-link {
  color: #657d92;
  font-size: 14px;
  line-height: 30px;
  text-decoration: underline;
}
.cSubmenu__list-link:hover {
  color: #178aef;
}
.cSubmenu__all {
  color: #178aef;
  font-size: 14px;
}
.cSubmenu__all:hover {
  text-decoration: underline;
}
.cSubmenu__all:after {
  display: inline-block;
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #178aef;
  box-shadow: 0 2px 6px rgba(23, 138, 239, 0.35);
  border: 0;
  cursor: pointer;
  transition: 0.2s ease-in-out background-color, 0.3s ease-in-out box-shadow;
  background-repeat: no-repeat;
  background-image: url("https://i.binargon.cz/demoeshopmaxi/arrow_right.svg");
  background-position: 6px center;
  background-size: 5px auto;
  vertical-align: baseline;
  margin-left: 7px;
  position: relative;
  top: 3px;
}
.cVelikostniTabulky {
  appearance: none;
  border: 0;
  background-color: transparent;
  font-size: 16px;
  color: #1a1a1a;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  column-gap: 6px;
  padding: 0;
}
@container (max-width: 579px) {
  .cVelikostniTabulky {
    font-size: 14px;
  }
}
.cVelikostniTabulky:hover {
  color: #178aef;
}
.cVelikostniTabulky:before {
  content: "";
  display: block;
  width: 23px;
  height: 23px;
  background-image: url("https://i.binargon.cz/demoeshopmaxi/rgba(101,125,146,1)/ico_ruler.svg");
  background-repeat: no-repeat;
}
.cVelikostniTabulkyDialog {
  background: #fff;
  border: 1px solid #fff !important;
  padding: 20px;
  min-width: 280px;
  max-width: 750px;
  width: max-content;
}
@media (min-width: 768px) and (max-width: 1280px) {
  .cVelikostniTabulkyDialog {
    max-width: 650px;
  }
}
@media (min-width: 0px) and (max-width: 768px) {
  .cVelikostniTabulkyDialog {
    padding: 15px;
    margin: 0;
    width: 100vw;
    height: 100vh;
    max-height: 100vh;
  }
}
.cVelikostniTabulkyDialog::backdrop {
  background-color: rgba(91, 117, 139, 0.12);
  backdrop-filter: blur(3px);
}
.cVelikostniTabulkyDialog__header {
  font-weight: 600;
  text-align: center;
}
.cVelikostniTabulkyDialog__content {
  font-size: 14px;
  text-align: center;
}
.cVelikostniTabulkyDialog__closeButton {
  margin: auto;
  width: max-content;
}
.cVelikostniTabulkyDialog__closeIcon {
  position: fixed;
  right: 15px;
  top: 15px;
  width: 30px;
  height: 30px;
  background-color: #178aef;
  cursor: pointer;
  border-radius: 50%;
  background-image: url("https://i.binargon.cz/cDelivery/rgba(255,255,255,1)/close.svg");
  background-size: 10px auto;
  background-repeat: no-repeat;
  background-position: center;
}
.cVelikostniTabulkyDialog__content {
  margin-top: 25px;
}
.cVelikostniTabulkyDialog__content img {
  max-width: 100%;
  height: auto;
}
.cVelikostniTabulkyDialog__closeButton {
  margin-top: 25px;
  display: flex;
}
.cWhisperer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.cWhisperer--fullscreen {
  z-index: 1000;
}
.cWhisperer__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(91, 117, 139, 0.12);
}
.cWhisperer__overlay--fullscreen {
  background-color: #fff;
}
.cWhisperer__container {
  position: relative;
  z-index: 1;
  border: 1px solid #178aef;
  border-top: 0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.cWhisperer__container--fullscreen {
  border: 0;
}
.cWhisperer__title {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  line-height: 25px;
}
.cWhisperer__title--history {
  margin-bottom: 10px;
}
.cWhisperer__title--products {
  margin-bottom: 4px;
}
.cWhisperer__title--categories {
  padding-top: 23px;
  margin-bottom: 15px;
  border-top: 1px solid #ecedef;
}
.cWhisperer__title--producers, .cWhisperer__title--blog {
  padding-top: 23px;
  margin-bottom: 15px;
  border-top: 1px solid #ecedef;
  margin-top: 28px;
}
.cWhisperer__results {
  background-color: #fff;
  padding: 30px 20px 7px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow: auto;
  max-height: 80vh;
}
.cWhisperer__results::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #fff;
}
.cWhisperer__results::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.cWhisperer__results::-webkit-scrollbar-thumb {
  border-radius: 11px;
  background-color: rgba(23, 138, 239, 0.5);
  border: 2px solid #fff;
}
.cWhisperer__results:hover::-webkit-scrollbar-thumb {
  background-color: #178aef;
}
.cWhisperer__results--fullscreen {
  padding-top: 13px;
  overflow: auto;
  max-height: calc(100vh - 75px);
}
.cWhisperer__results--fullscreen .cWhispererSubmitButton__button {
  margin: 0;
}
.cWhisperer__close {
  z-index: 10;
  width: 30px;
  height: 30px;
  top: 25px;
  right: 21px;
}
@media (max-width: 639px) {
  .cWhisperer__close {
    width: 22px;
    height: 22px;
  }
}
.cWhisperer__close-icon {
  width: 100%;
  height: 100%;
  background-size: 14px auto;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #178aef;
  border-radius: 50%;
  background-image: url("https://i.binargon.cz/demoeshopmaxi/rgba(255,255,255,1)/cross_thin.svg");
}
@media (max-width: 639px) {
  .cWhisperer__close-icon {
    background-image: url("https://i.binargon.cz/demoeshopmaxi/rgba(23,138,239,1)/cross_thin.svg");
    background-color: transparent;
    border-radius: 0;
  }
}
.cWhisperer__search {
  grid-template-columns: 1fr 40px;
  column-gap: 10px;
  align-items: center;
  padding: 10px;
}
.cWhisperer__search:not(.cWhisperer__search--hidden) {
  display: grid;
}
.cWhisperer__search-input:not(.exclude):not([type="range"]) {
  width: 100%;
  height: 55px;
  padding-left: 15px;
  padding-right: 115px;
  border-radius: 6px;
  font-size: 16px;
}
.cWhisperer__search-button {
  position: absolute;
  right: 7px;
  top: 7px;
  height: 41px;
  background-image: url("https://i.binargon.cz/demoeshopmaxi/rgba(255,255,255,1)/search.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px auto;
}
.cWhisperer__searchContainer {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.cWhisperer__producers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cWhisperer__history {
  padding-bottom: 20px;
  border-bottom: 1px solid #ecedef;
  margin-bottom: 20px;
}
.cWhispererBlog {
  color: #178aef;
}
.cWhispererCategory {
  text-decoration: none;
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 6px;
}
.cWhispererCategory__parent {
  color: #657d92;
}
.cWhispererCategory__name {
  color: #178aef;
  font-weight: 600;
}
.cWhispererProducer {
  border: 1px solid transparent;
  border-radius: 3px;
  overflow: hidden;
}
.cWhispererProducer--image .cWhispererProducer__name {
  display: none;
}
.cWhispererProducer.cWhispererSelectedItem {
  border-color: rgba(23, 138, 239, 0.5);
  position: relative;
}
.cWhispererProducer.cWhispererSelectedItem:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background-color: rgba(23, 138, 239, 0.05);
}
.cWhispererProducer__image {
  vertical-align: top;
}
.cWhispererProducer__name {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  text-decoration: none;
  overflow: hidden;
}
.cWhispererProduct {
  display: grid;
  grid-template-columns: 60px 1fr max-content;
  grid-template-areas: "image name price" "image availability price";
  grid-template-rows: max-content 1fr;
  border-top: 1px solid #ecedef;
  padding: 20px 15px;
  column-gap: 19px;
  align-items: center;
  text-decoration: none;
  color: #1a1a1a;
  font-size: 14px;
  border-radius: 3px;
}
.cWhispererProduct:first-of-type {
  border-top: 0;
}
.cWhispererProduct:hover {
  background-color: rgba(23, 138, 239, 0.05);
  border-color: transparent;
}
.cWhispererProduct:hover + a, .cWhispererProduct:hover + div {
  border-color: transparent;
}
.cWhispererProduct__image {
  grid-area: image;
}
.cWhispererProduct__name {
  grid-area: name;
  font-size: 14px;
  text-transform: uppercase;
}
.cWhispererProduct__availability {
  grid-area: availability;
  font-size: 14px;
}
.cWhispererProduct__availability-available {
  color: #34b262;
}
.cWhispererProduct__availability-not-available {
  color: #e54a4b;
}
.cWhispererProduct__price {
  grid-area: price;
  font-size: 14px;
}
.cWhispererProduct__price-current {
  font-weight: 600;
  display: block;
}
.cWhispererProduct__price-current--discounted {
  color: #e54a4b;
}
.cWhispererProduct__price-before {
  text-decoration: line-through;
  color: #657d92;
}
.cWhispererSelectedItem {
  background-color: rgba(23, 138, 239, 0.05);
  border-color: transparent;
}
.cWhispererSelectedItem + a, .cWhispererSelectedItem + div {
  border-color: transparent;
}
.cWhispererSubmitButton {
  margin-top: 35px;
  padding: 0;
}
.cWhispererSubmitButton.cWhispererSelectedItem .cWhispererSubmitButton__button {
  background-color: #0e6fc5;
}
.cWhispererSubmitButton__button {
  display: flex;
  column-gap: 5px;
  justify-content: center;
  text-align: center;
  margin: 0 -13px;
}
.cWhispererSubmitButton__count:before {
  content: "(";
}
.cWhispererSubmitButton__count:after {
  content: ")";
}
.catalogControl {
  display: grid;
  grid-template-columns: 200px 90px 108px 497px;
  column-gap: 30px;
  margin-bottom: 40px;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .catalogControl {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 35px;
  }
}
@container (max-width: 579px) {
  .catalogControl {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 30px;
    column-gap: 10px;
  }
}
.catalogControl .commonFilterParametru .filterParam {
  margin-top: 0;
}
.catalogControl .commonFilterParametru .filterParam .name {
  display: none;
}
.catalogControl .commonFilterParametru .filterParam .commonFilterRange {
  grid-template-areas: "min range max";
  align-items: center;
  column-gap: 15px;
}
.catalogControl .commonFilterParametru .filterParam .commonFilterRange:after {
  display: none;
}
.catalogControl .commonFilterParametru .filterParam .commonFilterRange__input {
  text-align: center;
}
.catalogControl .commonFilterParametru .filterParam .count {
  display: none;
}
.catalogControl__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  margin-bottom: 6px;
  display: flex;
  column-gap: 8px;
  align-items: center;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .catalogControl__title:not(.catalogControl__title--sort) {
    display: none;
  }
}
@container (max-width: 579px) {
  .catalogControl__title:not(.catalogControl__title--sort) {
    display: none;
  }
}
.catalogControl__title--sort {
  cursor: help;
}
@container (max-width: 1429px) {
  .catalogControl__title--sort {
    position: relative;
    margin-bottom: 0;
  }
  .catalogControl__title--sort .catalogControl__title-text {
    display: none;
  }
}
@container (max-width: 1429px) {
  .catalogControl__title-info {
    position: absolute;
    top: -20px;
    right: 0;
  }
}
.catalogControl__filterToggle {
  display: none;
}
@container (max-width: 1429px) {
  .catalogControl__filterToggle {
    display: block;
  }
}
.catalogControl__filterToggle-container {
  height: 54px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 6px;
  column-gap: 11px;
  position: relative;
  padding: 0 30px;
  display: flex;
}
@container (max-width: 579px) {
  .catalogControl__filterToggle-container {
    height: 45px;
    font-size: 13px;
    padding: 0 26px;
  }
}
.catalogControl__filterToggle-title-tabletOnly {
  display: none;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .catalogControl__filterToggle-title-tabletOnly {
    display: inline;
  }
}
.catalogControl__filterToggle-selected {
  background-color: #e54a4b;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 3px;
  height: 24px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  position: absolute;
  top: 50%;
  left: calc(100% - 14px);
  transform: translateY(-50%);
  white-space: nowrap;
}
@container (max-width: 579px) {
  .catalogControl__filterToggle-selected {
    display: none;
  }
}
@container (max-width: 639px) {
  .catalogControl__filterToggle-selected-title {
    display: none;
  }
}
@container (min-width: 580px) and (max-width: 1429px) {
  .catalogControl__productsOnPage, .catalogControl__stock, .catalogControl__price {
    display: none;
  }
}
@container (max-width: 579px) {
  .catalogControl__productsOnPage, .catalogControl__stock, .catalogControl__price {
    display: none;
  }
}
.catalogControl__stock .commonFilterParametru {
  padding-top: 6px;
}
.catalogControl__stock .commonFilterParametru .text {
  font-size: 16px;
}
.categoryAbout {
  padding-top: 51px;
  padding-bottom: 32px;
}
@container (max-width: 579px) {
  .categoryAbout {
    padding-top: 30px;
    padding-bottom: 19px;
  }
}
.categoryAbout:not(:first-child) {
  border-top: 1px solid #d4e2ef;
}
.categoryAbout__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 35px;
}
@media (max-width: 579px) {
  .categoryAbout__title {
    font-size: 20px;
    text-align: center;
  }
}
@media (max-width: 579px) {
  .categoryAbout__text {
    font-size: 14px;
    text-align: center;
    line-height: 24px;
  }
  .categoryAbout__text p:first-child {
    margin-top: 8px;
  }
}
.categoryArticles {
  max-width: 375px;
  height: auto;
  padding: 20px;
  float: right;
  margin-bottom: 10px;
  position: relative;
  border: 1px solid #178aef;
  border-radius: 6px;
  border-top-right-radius: 0;
  position: relative;
  right: -20px;
  line-height: 18px;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .categoryArticles {
    background-image: none;
    border: 0;
    border-radius: 0;
    border-left: 1px solid #178aef;
    padding: 7px 0 7px 20px;
    margin-top: 12px;
    right: 0;
    margin-left: 20px;
  }
}
@container (max-width: 579px) {
  .categoryArticles {
    margin-left: auto;
    margin-bottom: 0;
    order: 1;
    float: none;
    right: 0;
    width: 100%;
    max-width: 100%;
  }
}
.categoryArticles--no-description {
  margin-top: 20px;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .categoryArticles--no-description {
    float: none;
    margin-left: 0;
  }
}
.categoryArticles:after {
  background-image: url("https://i.binargon.cz/demoeshopmaxi/rgba(23,138,239,1)/bubble_triangle.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: 0 0;
  width: 20px;
  height: 19px;
  content: "";
  display: block;
  position: absolute;
  position: absolute;
  top: -1px;
  right: -20px;
  background-color: #f4f6f8;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .categoryArticles:after {
    display: none;
  }
}
.categoryArticles__title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.categoryArticles__items {
  display: grid;
  row-gap: 12px;
}
.categoryArticles__item {
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
  color: #178aef;
  display: flex;
  align-items: start;
  column-gap: 12px;
}
.categoryArticles__item:before {
  content: "";
  width: 3px;
  height: 3px;
  background-color: #178aef;
  flex-shrink: 0;
  margin-top: 8px;
}
.categoryArticles__item:hover {
  text-decoration: underline;
}
.categoryDescription {
  margin-top: -5px;
}
.categoryDescription:after {
  content: "";
  display: block;
  clear: both;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .categoryDescription {
    margin-top: -4px;
  }
}
@container (max-width: 579px) {
  .categoryDescription__text {
    font-size: 14px;
    line-height: 26px;
    display: grid;
  }
}
.categoryDescription__producer {
  width: max-content;
  max-width: 100%;
  border: 1px solid #8697a7;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  box-shadow: 0 5px 12px rgba(134, 151, 167, 0.16);
  padding: 5px 10px;
}
.categoryDescription__producer-item:not(:first-child):before {
  content: ", ";
}
.categoryDescription__more {
  color: #178aef;
  cursor: pointer;
  font-size: 14px;
  margin: 15px 0 25px;
  transition: 0.2s ease-in color;
  font-weight: 600;
}
.categoryDescription__more:hover {
  color: #1a1a1a;
}
.cmsBlogGallery__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 60px;
  row-gap: 30px;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .cmsBlogGallery__items {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
    column-gap: 40px;
  }
}
@container (max-width: 579px) {
  .cmsBlogGallery__items {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
}
.cmsBlogGallery__item {
  text-decoration: none;
  color: #1a1a1a;
}
.cmsBlogGallery__item-image {
  vertical-align: top;
}
.cmsBlogGallery__item-title {
  font-weight: 600;
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 13px;
}
.cmsBlogGallery__item-description {
  font-size: 14px;
  line-height: 26px;
}
.cmsBlogGallery iframe {
  max-width: 100%;
  width: 100%;
  aspect-ratio: 1.7777777778;
}
.common-question--common-popup-true {
  background-color: #fff;
  padding: 30px;
  max-width: 100vw;
  width: 500px;
}
.common-question__title {
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}
.common-question__body {
  display: grid;
  row-gap: 20px;
}
.common-question__label {
  margin-bottom: 5px;
  font-size: 14px;
}
.common-question__textarea {
  width: 100%;
  height: 70px;
}
.common-question__button {
  margin-top: 20px;
}
.commonBreadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .commonBreadcrumb {
    margin-top: 0;
  }
}
@container (max-width: 1429px) {
  .commonBreadcrumb {
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: auto;
    max-width: calc(100vw - 30px);
    margin-right: -30px;
  }
  .commonBreadcrumb::-webkit-scrollbar {
    opacity: 0;
  }
}
@container (max-width: 579px) {
  .commonBreadcrumb {
    margin-top: 0;
    max-width: calc(100vw - 20px);
    margin-right: -20px;
  }
}
.commonBreadcrumb__item {
  font-size: 14px;
  line-height: 21px;
}
@container (max-width: 579px) {
  .commonBreadcrumb__item {
    font-size: 12px;
    line-height: 18px;
  }
}
.commonBreadcrumb__item:not(.commonBreadcrumb__item--first):before {
  content: "";
  width: 10px;
  height: 18px;
  background-image: url("https://i.binargon.cz/demoeshopmaxi/separator.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  vertical-align: baseline;
  margin: 0 14px;
  position: relative;
  top: 5px;
}
.commonBreadcrumb__item--first {
  width: 16px;
  height: 16px;
  background-image: url("https://i.binargon.cz/demoeshopmaxi/rgba(23,138,239,1)/home.svg");
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
}
@container (max-width: 579px) {
  .commonBreadcrumb__item--first {
    width: 13px;
    height: 13px;
    position: relative;
    top: 2px;
  }
}
.commonBreadcrumb__item--regular {
  color: #178aef;
  font-weight: 600;
  text-decoration: none;
}
.commonBreadcrumb__item--regular:hover {
  text-decoration: underline;
}
.commonBreadcrumb__item--last {
  color: #657d92;
}
.commonBurger {
  width: 74px;
  height: 100%;
  display: grid;
  padding: 0 20px;
  position: relative;
  margin-left: 20px;
  grid-template-rows: 23px;
}
.commonBurger:before {
  width: 1px;
  height: 84px;
  content: "";
  display: block;
  position: absolute;
  background-color: #ecedef;
  left: 0;
  top: -15px;
}
@media (max-width: 639px) {
  .commonBurger:before {
    height: 72px;
    top: -14px;
  }
}
.commonBurger__icon {
  width: 25px;
  height: 18px;
  margin: 0 auto;
  margin-top: 12px;
  background-size: 100% auto;
}
@media (max-width: 639px) {
  .commonBurger__icon {
    width: 22px;
    height: 16px;
    margin-top: -1px;
  }
}
.commonBurger__iconDescription {
  text-transform: capitalize;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  color: #657d92;
  margin-top: 13px;
}
@media (max-width: 639px) {
  .commonBurger__iconDescription {
    margin-top: 6px;
  }
}
.commonBurger__notification {
  height: 16px;
  min-width: 16px;
  border-radius: 3px;
  background-color: #e54a4b;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 5px;
  top: 18px;
  right: 13px;
  position: absolute;
  max-width: max-content;
}
@media (max-width: 639px) {
  .commonBurger__notification {
    height: 12px;
    min-width: 12px;
    font-size: 10px;
    border-radius: 2px;
    padding: 0 2px;
    top: 12px;
    line-height: 11px;
  }
}
.commonBurgerMenu {
  position: fixed;
}
.commonBurgerMenu__content {
  width: 375px;
  max-width: 100%;
  height: 100%;
}
.commonBurgerMenu__header {
  min-height: 71px;
  background-color: #f4f6f8;
  position: relative;
  box-shadow: none;
  column-gap: 9px;
}
.commonBurgerMenu__header-logo {
  width: 31px;
  height: 31px;
  background-image: url("https://i.binargon.cz/demoeshopmaxi/rgba(23,138,239,1)/logo_placeholder.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.commonBurgerMenu__header-name {
  font-size: 16px;
  line-height: 17px;
  color: #178aef;
}
.commonBurgerMenu__header-close-icon {
  height: 100%;
  width: 76px;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  position: absolute;
  background-image: url("https://i.binargon.cz/demoeshopmaxi/rgba(23,138,239,1)/cross_thin.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 21px auto;
}
.commonBurgerMenu__scroller {
  max-height: calc(100% - 80px);
  display: grid;
  padding-top: 19px;
  grid-auto-rows: max-content;
}
.commonBurgerMenu__row {
  min-height: 52px;
  border-top: 0;
}
.commonBurgerMenu__row--international, .commonBurgerMenu__row--favorites, .commonBurgerMenu__row--comparsion, .commonBurgerMenu__row--user {
  column-gap: 20px;
}
.commonBurgerMenu__row--international:before, .commonBurgerMenu__row--favorites:before, .commonBurgerMenu__row--comparsion:before, .commonBurgerMenu__row--user:before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 23px;
  height: 23px;
}
.commonBurgerMenu__row--international .commonBurgerMenu__row-text, .commonBurgerMenu__row--favorites .commonBurgerMenu__row-text, .commonBurgerMenu__row--comparsion .commonBurgerMenu__row-text, .commonBurgerMenu__row--user .commonBurgerMenu__row-text {
  font-size: 16px;
  font-weight: 600;
}
.commonBurgerMenu__row--user {
  order: -3;
}
.commonBurgerMenu__row--user:before {
  background-image: url("https://i.binargon.cz/demoeshopmaxi/rgba(101,125,146,1)/user.svg");
}
.commonBurgerMenu__row--favorites {
  order: -1;
}
.commonBurgerMenu__row--favorites:before {
  background-image: url("https://i.binargon.cz/demoeshopmaxi/rgba(23,138,239,1)/heart.svg");
}
.commonBurgerMenu__row--favorites .commonBurgerMenu__row-text {
  color: #178aef;
}
.commonBurgerMenu__row--comparsion {
  order: -2;
}
.commonBurgerMenu__row--comparsion:before {
  background-image: url("https://i.binargon.cz/demoeshopmaxi/rgba(23,138,239,1)/compare.svg");
}
.commonBurgerMenu__row--comparsion .commonBurgerMenu__row-text {
  color: #178aef;
}
.commonBurgerMenu__row--international:before {
  border-radius: 50%;
  background-color: #657d92;
  border: 2px solid #657d92;
  background-image: var(--commonBurgerMenuFlag);
}
.commonBurgerMenu__row--textpages {
  display: none;
}
.commonBurgerMenu__row-dropdown:after {
  background-color: #f4f6f8;
}
.commonBurgerMenu__row-text {
  color: #657d92;
}
.commonBurgerMenu__row-count {
  min-width: 21px;
  height: 21px;
  border-radius: 3px;
  background-color: #e54a4b;
  color: #fff;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  font-size: 14px;
  line-height: 21px;
  font-weight: 600;
}
.commonBurgerMenu__submenu--user {
  order: -2;
  padding-left: 52px;
}
.commonBurgerMenu__submenu--textpages {
  display: block;
}
.commonBurgerMenu__link {
  color: #178aef;
  text-decoration: none;
  font-size: 14px;
}
.commonBurgerMenu__link--textpage {
  color: #657d92;
  padding: 5px 14px 5px 30px;
}
.commonBurgerMenu__languages {
  column-gap: 12px;
  row-gap: 10px;
  padding-top: 0;
  padding-left: 72px;
  padding-right: 14px;
}
.commonBurgerMenu__language {
  text-decoration: none;
  color: #657d92;
}
.commonBurgerMenu__language--selected {
  border-color: #178aef;
  color: #178aef;
}
.commonBurgerMenu__language-flag {
  width: 25px;
  max-height: 25px;
}
.commonBurgerMenu__languageCode {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
}
.commonBurgerMenu__currencies {
  padding-top: 0;
  padding-left: 72px;
  padding-right: 14px;
}
.commonBurgerMenu__currency {
  text-decoration: none;
  color: #657d92;
}
.commonBurgerMenu__currency--selected {
  border-color: #178aef;
  color: #178aef;
}
.commonBurgerMenu__categories-root:before, .commonBurgerMenu__cms-root:before {
  content: "";
  display: block;
  background-color: #ecedef;
  height: 1px;
  width: calc(100% - 56px);
  margin: 22px 28px;
}
.commonBurgerMenu__row, .commonBurgerMenu__category, .commonBurgerMenu__cmsgroup {
  padding: 5px 14px 5px 30px;
}
.commonBurgerMenu__row--level-1 .commonBurgerMenu__category-dropdown:after, .commonBurgerMenu__row--level-1 .commonBurgerMenu__cmsgroup-dropdown:after, .commonBurgerMenu__category--level-1 .commonBurgerMenu__category-dropdown:after, .commonBurgerMenu__category--level-1 .commonBurgerMenu__cmsgroup-dropdown:after, .commonBurgerMenu__cmsgroup--level-1 .commonBurgerMenu__category-dropdown:after, .commonBurgerMenu__cmsgroup--level-1 .commonBurgerMenu__cmsgroup-dropdown:after {
  background-color: #f4f6f8;
}
.commonBurgerMenu__row-text, .commonBurgerMenu__row-name, .commonBurgerMenu__category-text, .commonBurgerMenu__category-name, .commonBurgerMenu__cmsgroup-text, .commonBurgerMenu__cmsgroup-name {
  font-size: 14px;
}
.commonBurgerMenu__row-dropdown, .commonBurgerMenu__category-dropdown, .commonBurgerMenu__cmsgroup-dropdown {
  background-image: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.commonBurgerMenu__row-dropdown:after, .commonBurgerMenu__category-dropdown:after, .commonBurgerMenu__cmsgroup-dropdown:after {
  content: "";
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background-size: 9px 9px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("https://i.binargon.cz/demoeshopmaxi/rgba(23,138,239,1)/plus_thin.svg");
  display: block;
}
.commonBurgerMenu__row-dropdown--open:after, .commonBurgerMenu__category-dropdown--open:after, .commonBurgerMenu__cmsgroup-dropdown--open:after {
  background-image: url("https://i.binargon.cz/demoeshopmaxi/rgba(23,138,239,1)/minus_thin.svg");
}
.commonBurgerMenu__row-dropdown--user:after, .commonBurgerMenu__category-dropdown--user:after, .commonBurgerMenu__cmsgroup-dropdown--user:after {
  background-image: url("https://i.binargon.cz/demoeshopmaxi/rgba(101,125,146,1)/arrow_thin.svg");
}
.commonBurgerMenu__row-dropdown--user.commonBurgerMenu__row-dropdown--open:after, .commonBurgerMenu__category-dropdown--user.commonBurgerMenu__row-dropdown--open:after, .commonBurgerMenu__cmsgroup-dropdown--user.commonBurgerMenu__row-dropdown--open:after {
  transform: rotate(180deg);
}
.commonBurgerMenu__category, .commonBurgerMenu__cmsgroup {
  font-size: 14px;
}
.commonBurgerMenu__category--level-1, .commonBurgerMenu__cmsgroup--level-1 {
  font-weight: 600;
  text-transform: uppercase;
  border: 0;
}
.commonBurgerMenu__category--level-1 .commonBurgerMenu__category-link, .commonBurgerMenu__category--level-1 .commonBurgerMenu__cmsgroup-link, .commonBurgerMenu__cmsgroup--level-1 .commonBurgerMenu__category-link, .commonBurgerMenu__cmsgroup--level-1 .commonBurgerMenu__cmsgroup-link {
  min-height: 40px;
}
.commonBurgerMenu__category--level-1 .commonBurgerMenu__category-dropdown, .commonBurgerMenu__category--level-1 .commonBurgerMenu__cmsgroup-dropdown, .commonBurgerMenu__cmsgroup--level-1 .commonBurgerMenu__category-dropdown, .commonBurgerMenu__cmsgroup--level-1 .commonBurgerMenu__cmsgroup-dropdown {
  height: 40px;
}
.commonBurgerMenu__category-dropdown, .commonBurgerMenu__cmsgroup-dropdown {
  height: 30px;
}
.commonBurgerMenu__category-dropdown:after, .commonBurgerMenu__cmsgroup-dropdown:after {
  background-image: url("https://i.binargon.cz/demoeshopmaxi/rgba(23,138,239,1)/minus_thin.svg");
}
.commonBurgerMenu__category-dropdown--closed:after, .commonBurgerMenu__cmsgroup-dropdown--closed:after {
  background-image: url("https://i.binargon.cz/demoeshopmaxi/rgba(23,138,239,1)/plus_thin.svg");
}
.commonBurgerMenu__category-link, .commonBurgerMenu__cmsgroup-link {
  text-decoration: none;
  min-height: 22px;
  color: #657d92;
}
.commonBurgerMenu__category-link--level-1, .commonBurgerMenu__cmsgroup-link--level-1 {
  color: #1a1a1a;
}
.commonBurgerMenu__contacts {
  display: grid;
  justify-content: start;
  padding: 18px 28px;
  row-gap: 30px;
  border: 0;
}
.commonBurgerMenu__contact {
  color: #178aef;
  padding: 5px 0;
  display: flex;
  column-gap: 12px;
  font-size: 20px;
  color: #178aef;
  font-weight: 600;
  align-items: center;
  text-decoration: none;
}
.commonBurgerMenu__contact:before {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
}
.commonBurgerMenu__contact--phone:before {
  background-image: url("https://i.binargon.cz/demoeshopmaxi/rgba(23,138,239,1)/phone.svg");
}
.commonBurgerMenu__contact--mail:before {
  background-image: url("https://i.binargon.cz/demoeshopmaxi/rgba(23,138,239,1)/chat.svg");
}
.commonCheckout {
  grid-column: main-start / main-end;
  margin-bottom: 100px;
}
@container (max-width: 1429px) {
  .commonCheckout {
    margin-bottom: 60px;
  }
}
@container (max-width: 579px) {
  .commonCheckout {
    margin-bottom: 40px;
  }
}
.commonCheckout .dopravaZdarma, .commonCheckout .platbaZdarma {
  color: #34b262;
}
.commonCheckoutTable__head {
  text-transform: none;
}
.commonCheckoutCommonBox {
  border: none;
  background-color: transparent;
  padding: 0px;
  margin-bottom: 50px;
}
.commonCheckoutStep1__related {
  margin-top: 30px;
}
.commonCheckoutStep1__related-title {
  font-size: 1.3rem;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  margin: 20px 0;
}
.commonCheckoutStep2__heading {
  border: none;
  padding: 0px;
  font-size: 24px;
}
.commonCheckoutSteps__item__number, .commonCheckoutFreeDelivery, .commonCheckoutVoucher__container {
  border-radius: 5px;
}
.commonCheckoutTable {
  background: none;
  padding: 0px;
  border: 0px solid transparent;
}
.commonCheckoutTableProduct, .commonCheckoutTableService {
  font-size: 17px;
}
@container (max-width: 767px) {
  .commonCheckoutTableProduct, .commonCheckoutTableService {
    border-radius: 5px;
  }
}
.commonCheckoutTableProduct__column__product__link {
  font-size: 20px;
  text-decoration: none;
}
.commonCheckoutTableProduct__column__remove {
  border-radius: 50%;
  text-align: center;
  background-color: #e54a4b;
  font-size: 0;
}
.commonCheckoutTableProduct__column__remove:after {
  content: "+";
  transform: rotate(45deg);
  font-size: 20px;
  display: inline-block;
  font-weight: 400;
}
.commonCheckoutTableProduct__column--availability {
  /*color: #ee1c25;*/
  text-align: right;
}
.commonCheckoutFreeDelivery {
  border: none;
  background-color: #b0e8c5;
  color: #0c2816;
}
@container (max-width: 579px) {
  .commonCheckoutButtons {
    display: grid;
    row-gap: 10px;
    justify-content: center;
  }
}
.commonCheckoutButtons__button {
  border-radius: 5px;
  text-transform: none;
  font-size: 20px;
  line-height: 32px;
  border: 0;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 34px;
  font-family: "Poppins", sans-serif;
}
@container (max-width: 480px) {
  .commonCheckoutButtons__button {
    width: 100%;
  }
}
.commonCheckoutButtons__button--left {
  background-color: #b4d9fa;
  color: #178aef;
  font-size: 18px;
}
@container (max-width: 480px) {
  .commonCheckoutButtons__button--left {
    order: 1;
  }
}
.commonCheckoutButtons__button--left:hover {
  background-color: #a6d2f9;
}
.commonCheckoutButtons__button--right {
  color: #fff;
  background-color: #178aef;
}
.commonCheckoutButtons__button--right:hover {
  background-color: #0a5596;
}
.commonCheckoutPersonal, .commonCheckoutCompany, .commonCheckoutDelivery, .commonCheckoutGifts, .commonCheckoutStep2__note, .commonCheckoutStep2__terms {
  border: 0;
  background-color: transparent;
  padding: 20px 0;
}
.commonCheckoutStep2__note__textarea {
  height: auto;
}
.commonCheckoutStep2__heading {
  font-size: 1.3rem;
}
.commonCheckoutPersonal__label, .commonCheckoutCompany__label, .commonCheckoutDelivery__label {
  font-size: 17px;
  font-weight: normal;
  padding-top: 0;
}
.commonCheckoutPersonal__checkboxLabel, .commonCheckoutCompany__checkboxLabel, .commonCheckoutDelivery__checkboxLabel, .commonCheckoutStep2__terms, .commonCheckoutStep3__terms, .commonAgreements__row {
  display: flex;
  column-gap: 7px;
  align-items: center;
  font-size: 16px;
}
.commonCheckoutCommonBox .block2 label .cena.platbaZdarma {
  font-weight: 700;
  color: #34b262;
}
.commonCheckoutCommonBox {
  font-size: 16px;
}
.commonCheckoutCommonBox .block2 label .radio {
  margin-right: 15px;
}
.commonCheckoutCommonBox .block2 label .popis {
  padding-left: 37px;
}
.commonCheckoutCommonBox .block2 label .popis p {
  font-size: 16px;
}
.commonCheckoutGifts__items__item__input {
  margin-right: 15px;
}
.commonCheckoutVoucher__heading, .commonCheckoutStep3__heading {
  padding-left: 0;
  border: 0;
  font-size: 1.3rem;
}
.commonCheckoutStep3__box {
  border: 0;
  background-color: transparent;
  font-size: 16px;
  padding: 0;
}
.commonCheckoutStep3__terms, .commonCheckoutStep3__agreements {
  background-color: transparent;
  border: 0;
  padding: 10px 0;
  font-size: 16px;
}
.commonCheckoutStep3__terms__text__link, .commonAgreements__row__text a {
  color: inherit;
}
.commonCheckoutTableProduct__column__product__note {
  gap: 10px;
}
.commonCheckoutTableProduct__column__amount, .commonCheckoutTableService__column__amount {
  border: 0;
  width: auto;
  height: 45px;
  display: grid;
  grid-template-columns: 65px 30px;
  column-gap: 5px;
}
.commonCheckoutTableProduct__column__amount__input:not(.exclude):not([type="range"]), .commonCheckoutTableService__column__amount__input:not(.exclude):not([type="range"]) {
  width: 65px;
  padding: 0 2px;
}
.commonCheckoutTableProduct__column__amount__buttons, .commonCheckoutTableService__column__amount__buttons {
  display: grid;
  grid-template-rows: 1fr 1fr;
  column-gap: 5px;
  row-gap: 3px;
}
.commonCheckoutTableProduct__column__amount__buttons__button {
  background-color: rgba(23, 138, 239, 0.1);
  border-radius: 3px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 100%;
  height: 100%;
  color: #178aef;
}
.commonCheckoutTableProduct__column__amount__buttons__button:hover {
  filter: brightness(0.6);
}
.commonCheckoutTable__head__column--amount {
  width: 160px;
}
.commonCheckoutTable__head__column--remove, .commonCheckoutTableProduct__column--remove, .commonCheckoutTableService__column--remove {
  width: 20px;
  font-size: 0;
}
.commonCheckoutCommonBox .block2 label, .commonCheckoutGifts__items__item {
  column-gap: 10px;
}
.commonCheckoutCommonBox .block2 label .radio, .commonCheckoutCommonBox .block2 label .logo {
  margin-right: 0;
}
.commonCheckoutCommonBox .block2 {
  padding: 5px 15px;
  border-radius: 5px;
}
.commonCheckoutCommonBox .dopravaBlock-checked .block2, .commonCheckoutCommonBox .platbaBlock-checked .block2 {
  background-color: #f4f6f8;
}
.commonCheckoutGifts__items__item__link__image {
  margin-right: 5px;
}
.commonCheckoutGifts__items {
  padding-left: 1px;
}
.commonCheckoutTable__total, .commonCheckoutTable__totalTaxExcl {
  text-transform: none;
}
.commonCheckoutTable__total__title, .commonCheckoutTable__totalTaxExcl__title {
  text-transform: none;
}
@media (min-width: 768px) {
  .commonCheckoutTable__head__column--price, .commonCheckoutTableProduct__column--price, .commonCheckoutTableService__column--price, .commonCheckoutTable__head__column--priceVat, .commonCheckoutTableProduct__column--priceVat, .commonCheckoutTableService__column--priceVat {
    text-align: right;
    justify-content: flex-end;
    width: 150px;
  }
}
@media (max-width: 767px) {
  .commonCheckoutTableService__column--priceVat {
    border-bottom: 0;
  }
}
.commonCheckoutTable__total {
  padding: 27px 0 0;
}
.commonCheckoutTable__totalTaxExcl {
  padding: 15px 0 0;
}
@media (max-width: 767px) {
  .commonCheckoutTableProduct__column__amount, .commonCheckoutTableService__column__amount {
    height: 53px;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .commonCheckoutTable__head__column--remove, .commonCheckoutTableProduct__column--remove, .commonCheckoutTableService__column--remove {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .commonCheckoutTableProduct, .commonCheckoutTableService {
    font-size: 15px;
  }
}
@media (min-width: 768px) and (max-width: 1159px) {
  .commonCheckoutTableProduct {
    display: grid;
    grid-template-areas: "info amount" "info price" "info priceVat" "availability remove";
    column-gap: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1159px) {
  .commonCheckoutTableProduct__column {
    width: 100%;
    text-align: left;
    justify-content: flex-start;
    padding-right: 0;
  }
  .commonCheckoutTableProduct__column--product {
    grid-area: info;
  }
  .commonCheckoutTableProduct__column--availability {
    grid-area: availability;
  }
  .commonCheckoutTableProduct__column--amount {
    grid-area: amount;
    justify-content: flex-end;
    padding: 10px 0;
    width: 100%;
  }
  .commonCheckoutTableProduct__column--remove {
    grid-area: remove;
    justify-content: flex-end;
  }
  .commonCheckoutTableProduct__column--price {
    grid-area: price;
    display: block;
    text-align: right;
  }
  .commonCheckoutTableProduct__column--price:before {
    content: attr(title);
    font-size: 14px;
    display: block;
    text-align: right;
    font-weight: 600;
  }
  .commonCheckoutTableProduct__column--priceVat {
    grid-area: priceVat;
    display: block;
    text-align: right;
  }
  .commonCheckoutTableProduct__column--priceVat:before {
    content: attr(title);
    font-size: 14px;
    display: block;
    text-align: right;
    font-weight: 600;
  }
}
@media (min-width: 1159px) and (max-width: 1279px) {
  .commonCheckoutTableProduct__column--amount {
    width: 150px;
  }
}
@media (min-width: 768px) and (max-width: 1159px) {
  .commonCheckoutTableService__column {
    padding-right: 0;
  }
  .commonCheckoutTableService__column--remove {
    width: 0;
  }
}
@media (min-width: 1159px) and (max-width: 1279px) {
  .commonCheckoutTableService__column__column--amount {
    width: 150px;
  }
}
@media (min-width: 768px) and (max-width: 1159px) {
  .commonCheckoutTableProduct__column__product__image, .commonCheckoutTableService__column__product__image {
    margin-right: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1159px) {
  .commonCheckoutTableProduct__column-priceBefore, .commonCheckoutTableService__column-priceBefore {
    position: static;
    margin-top: 0;
  }
}
@media (min-width: 768px) and (max-width: 1159px) {
  .commonCheckoutTable__total {
    padding: 15px 10px;
  }
}
@media (max-width: 767px) {
  .commonCheckoutTable__total {
    padding: 10px 0;
  }
}
@media (min-width: 768px) and (max-width: 1159px) {
  .commonCheckoutTable__head {
    display: none;
  }
}
@media (min-width: 1159px) and (max-width: 1279px) {
  .commonCheckoutTable__head {
    font-size: 14px;
  }
  .commonCheckoutTable__head__column--amount {
    width: 150px;
  }
}
.commonComparsion {
  padding: 30px;
}
.commonComparsion__button {
  background-color: #e54a4b;
  color: #fff;
}
.commonComparsion__button:hover {
  text-decoration: none;
}
.commonComparsion__button--secondary {
  background-color: #657d92;
}
.commonComparsion__table-wrapper, .commonComparsion__table-col--caption {
  background-color: #b4d9fa;
}
.commonComparsion__table-row:hover .commonComparsion__table-col {
  background-color: #b4d9fa;
}
.commonComparsion__table-col {
  border-top: 1px solid #76baf6;
}
.commonComparsion__table-product-name {
  color: #000;
}
.commonComparsion__table-product-name:hover {
  color: #178aef;
}
.commonComparsion__table-product-sale {
  background-color: #e54a4b;
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 16px;
  line-height: 50px;
  padding: 0;
}
.commonComparsion__table-buy {
  color: #fff;
  background-color: #178aef;
}
.commonComparsion__table-buy:hover {
  background-color: #1288ef;
  box-shadow: none;
}
.commonComparsion__table-remove {
  opacity: 0.5;
}
.commonComparsion__table-remove:hover {
  opacity: 1;
}
.commonEshopReviews {
  padding: 30px;
}
.commonEshopReviews__main-title {
  text-align: center;
}
.commonEshopReviews__items {
  max-width: 800px;
  margin: 0 auto;
}
.commonEshopReviews__noResults {
  text-align: center;
  padding: 20px;
  font-weight: bold;
  width: 100%;
  margin: 20px;
  border: 1px solid #eee;
  border-radius: 6px;
}
.commonEshopReviewsItem {
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 15px;
  width: 100%;
  margin: 20px auto;
  display: grid;
  grid-template-columns: 150px 1fr;
  column-gap: 25px;
}
@container (max-width: 579px) {
  .commonEshopReviewsItem {
    grid-template-columns: 1fr;
  }
}
.commonEshopReviewsItem__avatar {
  width: 100px;
  height: 100px;
  text-align: center;
  font-weight: bold;
  position: relative;
  margin: auto;
}
.commonEshopReviewsItem__avatar-image {
  width: 100%;
  height: auto;
}
.commonEshopReviewsItem__score {
  border-radius: 4px;
  background-color: #fff;
  padding: 5px 10px;
  display: inline-block;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  color: #34b262;
  text-indent: 5px;
  position: absolute;
  top: 85px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: max-content;
}
.commonEshopReviewsItem__score--orange {
  color: orange;
}
.commonEshopReviewsItem__score--red {
  color: #e54a4b;
}
.commonEshopReviewsItem__sup {
  font-size: 10px;
}
.commonEshopReviewsItem__stars {
  height: 15px;
  max-width: 87px;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
.commonEshopReviewsItem__stars--empty {
  width: 87px;
  margin: 25px auto 0 auto;
  background-image: url("https://i.binargon.cz/common/rgba(224,224,224,1)/stars.svg");
}
.commonEshopReviewsItem__stars--filled {
  background-image: url("https://i.binargon.cz/common/stars.svg");
}
.commonEshopReviewsItem__name {
  margin-top: 7px;
  text-align: center;
  word-break: break-all;
  font-weight: bold;
  font-size: 14px;
}
.commonEshopReviewsItem__date {
  text-align: center;
  font-size: 12px;
  color: #999;
  margin-top: 5px;
}
.commonEshopReviewsItem__title {
  color: #000;
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 17px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  font-weight: 700;
}
.commonEshopReviewsItem__text {
  margin-bottom: 15px;
  color: #666;
  font-size: 15px;
}
.commonEshopReviewsItem__description {
  margin-bottom: 5px;
  font-size: 15px;
}
.commonEshopReviewsItem__description:before {
  width: 15px;
  height: 15px;
  line-height: 15px;
  display: inline-flex;
  border-radius: 50%;
  color: #fff;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  margin-right: 10px;
  position: relative;
  top: -1px;
}
.commonEshopReviewsItem__description--positive {
  color: #34b262;
}
.commonEshopReviewsItem__description--positive:before {
  content: "+";
  background-color: #34b262;
}
.commonEshopReviewsItem__description--negative {
  color: #e54a4b;
}
.commonEshopReviewsItem__description--negative:before {
  content: "-";
  background-color: #e54a4b;
}
.commonEshopReviewsItem__source {
  width: 100%;
  font-size: 12px;
  color: #999;
  padding: 0 5px;
  margin-top: 15px;
  text-align: right;
  grid-column: 2;
}
@container (max-width: 579px) {
  .commonEshopReviewsItem__source {
    grid-column: 1;
  }
}
.commonFilterParametru .filterParam {
  display: block;
  margin-top: 20px;
}
.commonFilterParametru .filterParam_systemId_cena {
  padding-bottom: 30px;
}
.commonFilterParametru .filterParam_color-multiple {
  border-bottom: 0;
}
.commonFilterParametru .filterParam_input, .commonFilterParametru .filterParam_range, .commonFilterParametru .filterParam_range-multiple {
  padding-bottom: 13px;
}
.commonFilterParametru .filterParam__showAll {
  color: #178aef;
  font-size: 14px;
  cursor: pointer;
  margin: 10px 0;
}
.commonFilterParametru .filterParam__showAll:hover {
  text-decoration: underline;
}
.commonFilterParametru .filterParam__showAll:before {
  content: "+";
  margin-right: 13px;
  width: 26px;
  text-align: center;
  display: inline-block;
  text-decoration: none;
}
.commonFilterParametru .name {
  font-size: 16px;
  margin-bottom: 18px;
  display: block;
  line-height: 25px;
  font-weight: 600;
}
.commonFilterParametru .name_systemId_cena {
  margin-bottom: 30px;
}
.commonFilterParametru .name_checkbox-multiple {
  margin-bottom: 15px;
}
.commonFilterParametru .name_checkbox {
  display: none;
}
.commonFilterParametru .filterValues_checkbox-multiple, .commonFilterParametru .filterValues_radio {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 10px;
}
.commonFilterParametru .filterValues_color-multiple {
  display: grid;
  grid-template-columns: repeat(auto-fit, 31px);
  gap: 15px;
}
.commonFilterParametru .filterValue {
  display: flex;
  align-items: center;
  font-size: 14px;
}
.commonFilterParametru .filterValue_checkbox-multiple input, .commonFilterParametru .filterValue_checkbox input, .commonFilterParametru .filterValue_radio input {
  margin-right: 13px;
}
.commonFilterParametru .filterValue_color-multiple {
  width: 31px;
  height: 31px;
}
.commonFilterParametru .filterValue_color-multiple .colorValue {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  overflow: hidden;
}
.commonFilterParametru .filterValue_color-multiple .colorValue.colorValueHex_ffffff {
  border: 1px solid #b6c8d8;
}
.commonFilterParametru .filterValue_color-multiple .colorValue.colorValueSelected {
  border: 2px solid #178aef;
  box-shadow: 0 2px 6px rgba(23, 138, 239, 0.35);
}
.commonFilterParametru .filterValue_color-multiple .colorValue input {
  --checkbox-bg-color: transparent;
  --checkbox-border-color: transparent;
  --checkbox-checked-bg-color: transparent;
  --checkbox-checked-border-color: transparent;
  --checkbox-default-color: transparent;
  --checkbox-disabled-bg-color: transparent;
  appearance: auto;
  padding: 0;
  width: 15px;
  height: 15px;
}
.commonFilterParametru .filterValue_color-multiple .colorValue input:before {
  display: none;
}
.commonFilterParametru .filterValue_color-multiple input:not(:checked) {
  opacity: 0;
  border: 0;
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
}
.commonFilterParametru .filterValue_color-multiple .count {
  display: none;
}
.commonFilterParametru .filterValue_color-multiple.disabledValue:not(.activeValue) {
  position: relative;
  opacity: 0.5;
  filter: grayscale(1);
}
.commonFilterParametru .filterValue_color-multiple.disabledValue:not(.activeValue):after {
  content: "✕";
  position: absolute;
  mix-blend-mode: difference;
  font-size: 25px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: not-allowed;
}
.commonFilterParametru .filterValue_select select {
  width: 100%;
  height: 35px;
}
.commonFilterParametru .filterValue_input input {
  width: 100%;
  height: 35px;
}
.commonFilterParametru .filterValue .count {
  font-size: 12px;
  color: #8697a7;
  margin-left: 5px;
}
.commonFilterParametru .filterValue.disabledValue:not(.activeValue) {
  text-decoration: line-through;
  color: #adadad;
}
.commonFilterRange {
  --track-height: 2px;
  --track-bg: rgba(23, 138, 239, 0.2);
  --track-selected-bg: #178aef;
  --thumb-width: 26px;
  --thumb-height: 26px;
  --thumb-radius: 50%;
  --thumb-bg: #178aef;
  grid-template-areas: "range range range" "min dash max";
  grid-template-columns: 95px 1fr 95px;
  row-gap: 32px;
}
.commonFilterRange:after {
  content: "–";
  grid-area: dash;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #707070;
}
.commonFilterRange__input {
  --input-height: 35px !important;
  width: 100%;
  font-size: 16px;
}
.commonFilterRange__range::-webkit-slider-thumb {
  box-shadow: 0px 2px 6px rgba(23, 138, 239, 0.35);
}
.commonFilterRange__range::-moz-range-thumb {
  box-shadow: 0px 2px 6px rgba(23, 138, 239, 0.35);
}
.commonFilterRange__range--min::-webkit-slider-thumb {
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("https://i.binargon.cz/demoeshopmaxi/arrow_right.svg");
}
.commonFilterRange__range--min::-moz-range-thumb {
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("https://i.binargon.cz/demoeshopmaxi/arrow_right.svg");
}
.commonFilterRange__range--max::-webkit-slider-thumb {
  background-repeat: no-repeat;
  background-position: calc(50% - 1px) center;
  background-image: url("https://i.binargon.cz/demoeshopmaxi/arrow_left.svg");
}
.commonFilterRange__range--max::-moz-range-thumb {
  background-repeat: no-repeat;
  background-position: calc(50% - 1px) center;
  background-image: url("https://i.binargon.cz/demoeshopmaxi/arrow_left.svg");
}
.commonForgottenPassword__3rdPartyLogin--facebook .commonForgottenPassword__3rdPartyLogin-button {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  padding: 8px;
  background-color: #3459a7;
  color: #fff;
  text-decoration: none;
  width: max-content;
  margin: 10px auto;
}
.commonForgottenPassword__3rdPartyLogin--facebook .commonForgottenPassword__3rdPartyLogin-icon {
  margin-right: 7px;
  width: max-content;
}
.commonForgottenPassword__3rdPartyLogin--seznam .commonForgottenPassword__3rdPartyLogin-button {
  display: flex;
  align-items: center;
  color: #c00;
  border: 2px solid #c00;
  border-radius: 3px;
  width: max-content;
  padding-right: 8px;
  font-size: 16px;
  text-decoration: none;
  margin: 10px auto;
}
.commonForgottenPassword__3rdPartyLogin--seznam .commonForgottenPassword__3rdPartyLogin-icon {
  margin: 8px;
  width: max-content;
}
.commonForgottenPassword__3rdPartyLogin--google .commonForgottenPassword__3rdPartyLogin-button {
  display: flex;
  align-items: center;
  color: #757575;
  border-radius: 2px;
  width: max-content;
  padding-right: 8px;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 1px 2px #a9a9a9;
  margin: 10px auto;
}
.commonForgottenPassword__3rdPartyLogin--google .commonForgottenPassword__3rdPartyLogin-icon {
  margin: 8px;
  width: max-content;
}
.commonForgottenPassword {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 60px;
  row-gap: 30px;
}
@media (max-width: 767px) {
  .commonForgottenPassword {
    grid-template-columns: 1fr;
  }
}
.commonForgottenPassword__main-title {
  grid-column: 1 / span 2;
}
@media (max-width: 767px) {
  .commonForgottenPassword__main-title {
    grid-column: 1;
  }
}
.commonForgottenPassword__section {
  text-align: center;
}
.commonForgottenPassword__section:nth-of-type(3) {
  grid-column: 1 / span 2;
}
@media (max-width: 767px) {
  .commonForgottenPassword__section:nth-of-type(3) {
    grid-column: 1;
  }
}
.commonForgottenPassword__text {
  margin-bottom: 20px;
  font-size: 14px;
}
.commonForgottenPassword__button {
  margin-top: 25px;
}
.commonLoadMoreProducts {
  margin: 0 auto;
  margin-top: 65px;
  display: flex;
  max-width: max-content;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .commonLoadMoreProducts {
    margin-top: 40px;
  }
}
@container (max-width: 579px) {
  .commonLoadMoreProducts {
    margin-top: 30px;
    width: 100%;
    max-width: none;
    justify-content: center;
  }
}
.commonLoadMoreProducts__text {
  display: flex;
  align-items: center;
  column-gap: 9px;
}
.commonLoadMoreProducts__text:after {
  content: "";
  background-image: url("svg/arrow_down.svg");
  width: 10px;
  height: 10px;
  display: inline-block;
  background-repeat: no-repeat;
  position: relative;
  top: 2px;
}
.commonLoadMoreProducts__count {
  display: none;
}
.commonOrders {
  padding-bottom: 60px;
}
.commonPersonalSettings__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 60px;
  row-gap: 30px;
}
@container (max-width: 800px) {
  .commonPersonalSettings__inner {
    grid-template-columns: 1fr;
  }
}
.commonPersonalSettings__section:nth-of-type(3), .commonPersonalSettings__section--hidden {
  grid-column: 1 / span 2;
}
@container (max-width: 800px) {
  .commonPersonalSettings__section:nth-of-type(3), .commonPersonalSettings__section--hidden {
    grid-column: 1;
  }
}
.commonPersonalSettings__section:nth-of-type(3) .commonRegistration__inner-in, .commonPersonalSettings__section--hidden .commonRegistration__inner-in {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  column-gap: 30px;
  max-width: 100%;
}
@container (max-width: 800px) {
  .commonPersonalSettings__section:nth-of-type(3) .commonRegistration__inner-in, .commonPersonalSettings__section--hidden .commonRegistration__inner-in {
    grid-template-columns: 1fr;
  }
}
.commonPersonalSettings__section--hidden {
  display: none;
}
.commonPersonalSettings__section--delivery[data-multiple="1"] {
  grid-column: 1 / span 2;
}
.commonPersonalSettings__row-check {
  grid-column: 1 / span 2;
  display: flex;
  align-items: center;
  column-gap: 10px;
}
@container (max-width: 800px) {
  .commonPersonalSettings__row-check {
    grid-column: 1;
  }
}
.commonPersonalSettings__policy {
  font-style: italic;
  font-size: 16px;
  text-align: center;
  padding: 40px 0;
}
.commonPersonalSettings__policy a {
  color: inherit;
  text-decoration: underline;
}
.commonPersonalSettings__policy a:hover {
  text-decoration: none;
}
.commonPersonalSettings__buttons-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 25px;
  padding: 15px 0 40px;
}
@container (max-width: 800px) {
  .commonPersonalSettings__buttons-wrapper {
    justify-content: center;
  }
}
.commonPersonalSettings__add-address {
  margin-top: 30px;
  margin-left: auto;
}
.commonPersonalSettings__captcha {
  margin-bottom: 20px;
}
.commonPersonalSettings__captcha-value {
  display: flex;
  flex-wrap: wrap;
  padding: 10px 0;
  align-items: center;
}
.commonPersonalSettings__captcha-input {
  margin-left: 20px;
}
.commonPersonalSettings__multipleDelivery {
  display: grid;
}
.commonPersonalSettings__multipleDelivery-item {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(5, 1fr) max-content max-content;
  border-bottom: 1px solid #ecedef;
  padding: 20px 0;
  gap: 20px;
}
@container (max-width: 1199px) {
  .commonPersonalSettings__multipleDelivery-item {
    grid-template-columns: 1fr;
  }
}
.commonPersonalSettings__multipleDelivery-delete-link {
  color: #178aef;
}
.commonPopUp__close {
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(23, 138, 239, 0.5);
  border-radius: 5px;
}
.commonPopUp__close:before, .commonPopUp__close:after {
  background-color: #fff;
  height: 25px;
}
.commonProductsReviews {
  padding: 30px;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}
.commonProductsReviews__main-title {
  text-align: center;
}
.commonProductsReviews__item {
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 15px;
  width: 100%;
  margin: 20px auto;
  display: grid;
  grid-template-columns: 150px 1fr;
  column-gap: 25px;
}
@container (max-width: 579px) {
  .commonProductsReviews__item {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
}
.commonProductsReviews__item-top {
  position: relative;
}
.commonProductsReviews__item-image {
  display: block;
  margin: auto;
}
.commonProductsReviews__item-rating-text {
  border-radius: 4px;
  background-color: #fff;
  padding: 5px 10px;
  display: inline-block;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  color: #34b262;
  text-indent: 5px;
  position: absolute;
  top: 102px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: max-content;
  font-weight: 600;
}
.commonProductsReviews__item-rating-text--orange {
  color: orange;
}
.commonProductsReviews__item-rating-text--red {
  color: #e54a4b;
}
.commonProductsReviews__item-rating-stars {
  height: 15px;
  max-width: 87px;
  background-repeat: no-repeat;
  background-size: auto 100%;
  width: 87px;
  margin: 25px auto 0 auto;
  background-image: url("https://i.binargon.cz/common/rgba(224,224,224,1)/stars.svg");
}
.commonProductsReviews__item-rating-stars-inner {
  background-image: url("https://i.binargon.cz/common/stars.svg");
  height: 15px;
  background-size: auto 100%;
}
.commonProductsReviews__item-name {
  font-size: 13px;
  line-height: 18px;
  display: block;
  color: #178aef;
  text-align: center;
  margin-top: 10px;
}
@container (max-width: 579px) {
  .commonProductsReviews__item-name {
    font-size: 16px;
    line-height: 22px;
  }
}
.commonProductsReviews__item-bottom {
  display: grid;
  grid-template-rows: auto auto 1fr;
  row-gap: 5px;
}
.commonProductsReviews__item-reasons {
  font-size: 15px;
}
.commonProductsReviews__item-reasons:before {
  width: 15px;
  height: 15px;
  line-height: 15px;
  display: inline-flex;
  border-radius: 50%;
  color: #fff;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  margin-right: 10px;
  position: relative;
  top: -1px;
}
.commonProductsReviews__item-reasons--positive {
  color: #34b262;
}
.commonProductsReviews__item-reasons--positive:before {
  content: "+";
  background-color: #34b262;
}
.commonProductsReviews__item-reasons--negative {
  color: #e54a4b;
}
.commonProductsReviews__item-reasons--negative:before {
  content: "-";
  background-color: #e54a4b;
}
.commonProductsReviews__item-text {
  color: #666;
  font-size: 15px;
  order: -1;
  margin-bottom: 10px;
}
.commonProductsReviews__item-source {
  width: 100%;
  font-size: 12px;
  color: #999;
  padding: 0 5px;
  margin-top: 15px;
  text-align: right;
  grid-column: 2;
}
@container (max-width: 579px) {
  .commonProductsReviews__item-source {
    grid-column: 1;
  }
}
.commonQuestionStandalone {
  padding-bottom: 60px;
}
.commonQuestionStandalone__form {
  max-width: 450px;
  width: 100%;
}
.commonQuestionStandalone__buttons-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.commonQuestionStandalone__value {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.commonQuestionStandalone__textarea {
  width: 100%;
  height: 70px;
  margin-bottom: 20px;
}
.commonQuickCheckout {
  grid-column: main-start / main-end;
  margin-bottom: 100px;
}
.commonQuickCheckout input:before {
  display: none !important;
}
.commonQuickCheckout input[type="checkbox"] {
  display: none;
}
.commonQuickCheckout input[type="radio"]:not(:checked) {
  border: 1px solid #b6c8d8 !important;
}
.commonQuickCheckout__container {
  border-radius: 5px;
}
.commonQuickCheckoutSuccess {
  grid-column: main-start / main-end;
  margin-bottom: 100px;
}
.commonQuickCheckoutVoucher {
  padding: 20px 0;
}
.commonQuickCheckoutVoucher__container {
  background-color: #f8f9f9;
  padding: 20px;
  border: 1px solid #dddddd;
  border-radius: 5px;
  display: flex;
  column-gap: 10px;
  width: max-content;
  max-width: 100%;
}
.commonQuickCheckoutVoucher__heading {
  padding-left: 0;
  border: 0;
  font-size: 1.3rem;
}
.commonQuickCheckout__gift {
  padding: 0;
}
.commonQuickCheckoutHeading__number {
  border-radius: 4px;
}
.commonQuickCheckoutTableProduct__column__amount, .commonQuickCheckoutTableService__column__amount {
  border: 0;
  width: auto;
  height: 45px;
  display: grid;
  grid-template-columns: 65px 30px;
  column-gap: 5px;
}
.commonQuickCheckoutAmountInput {
  border: 0;
  display: grid;
  grid-template-columns: 65px 30px;
  grid-template-rows: 1fr 1fr;
  row-gap: 3px;
  column-gap: 5px;
  align-items: center;
  grid-template-areas: "input plus" "input minus";
}
.commonQuickCheckoutAmountInput__input {
  grid-area: input;
  width: 65px;
}
.commonQuickCheckoutAmountInput__button--plus {
  grid-area: plus;
}
.commonQuickCheckoutAmountInput__button--minus {
  grid-area: minus;
}
.commonQuickCheckoutAmountInput__button {
  background-color: rgba(23, 138, 239, 0.1);
  border-radius: 3px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 100%;
  height: 100%;
  color: #178aef;
}
.commonQuickCheckoutAmountInput__button:hover {
  filter: brightness(0.6);
}
.commonQuickCheckout__submit {
  border-radius: 4px;
}
.commonQuickCheckoutOverview__row {
  grid-template-columns: minmax(100px, 1fr) 176px 160px 195px 78px;
}
.commonQuickCheckout__totalSum__price, .commonQuickCheckout__productsTotal__price--vat, .commonQuickCheckoutOverview__priceVat {
  white-space: nowrap;
}
.commonQuickCheckout__productsTotal-container {
  grid-template-columns: 1fr 175px;
}
.commonQuickCheckoutEmptyCart {
  grid-column: main-start / main-end;
}
.commonQuickCheckoutAgreements__row__text--type1 {
  background-image: none;
}
@media (max-width: 579px) {
  .commonQuickCheckoutFreeShipping {
    padding: 0;
    padding-bottom: 25px;
  }
  .commonQuickCheckoutProducts {
    padding: 20px 0 0;
  }
  .commonQuickCheckoutVoucher {
    padding: 20px 0;
  }
  .commonQuickCheckout__productsTotal {
    padding: 17px 0 14px;
  }
  .commonQuickCheckout__productsTotal-container {
    grid-template-columns: 1fr;
  }
  .commonQuickCheckout__shippingPayment {
    padding: 25px 0;
  }
  .commonQuickCheckout__formContainer {
    padding: 25px 0 10px;
  }
  .commonQuickCheckout__note, .commonQuickCheckoutOverview {
    padding: 0;
  }
  .commonQuickCheckout__bottom {
    padding: 20px 0;
  }
  .commonQuickCheckout__totalSum {
    display: grid;
  }
  .commonQuickCheckout__checkbox__label {
    display: grid;
    grid-auto-columns: max-content;
    justify-content: start;
    text-align: left;
  }
  .commonQuickCheckout__submit {
    margin-left: auto;
    margin-right: auto;
  }
}
.commonRegistration__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 60px;
  row-gap: 30px;
}
@container (max-width: 800px) {
  .commonRegistration__inner {
    grid-template-columns: 1fr;
  }
}
.commonRegistration__section:nth-of-type(3), .commonRegistration__section--hidden {
  grid-column: 1 / span 2;
}
@container (max-width: 800px) {
  .commonRegistration__section:nth-of-type(3), .commonRegistration__section--hidden {
    grid-column: 1;
  }
}
.commonRegistration__section:nth-of-type(3) .commonRegistration__inner-in, .commonRegistration__section--hidden .commonRegistration__inner-in {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  column-gap: 30px;
  max-width: 100%;
}
@container (max-width: 800px) {
  .commonRegistration__section:nth-of-type(3) .commonRegistration__inner-in, .commonRegistration__section--hidden .commonRegistration__inner-in {
    grid-template-columns: 1fr;
  }
}
.commonRegistration__section--hidden {
  display: none;
}
.commonRegistration__row-check {
  grid-column: 1 / span 2;
  display: flex;
  align-items: center;
  column-gap: 10px;
}
@container (max-width: 800px) {
  .commonRegistration__row-check {
    grid-column: 1;
  }
}
.commonRegistration__policy {
  font-style: italic;
  font-size: 16px;
  text-align: center;
  padding: 40px 0;
}
.commonRegistration__policy a {
  color: inherit;
  text-decoration: underline;
}
.commonRegistration__policy a:hover {
  text-decoration: none;
}
.commonRegistration__buttons-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 25px;
  padding: 15px 0 40px;
}
@container (max-width: 800px) {
  .commonRegistration__buttons-wrapper {
    justify-content: center;
  }
}
.commonRegistration__captcha {
  margin-bottom: 20px;
}
.commonRegistration__captcha-value {
  display: flex;
  flex-wrap: wrap;
  padding: 10px 0;
  align-items: center;
}
.commonRegistration__captcha-input {
  margin-left: 20px;
}
.commonSitemap {
  padding-bottom: 60px;
}
.commonSitemap__list {
  padding-left: 30px;
}
.commonSitemap__list-link {
  color: #178aef;
}
.commonSitemap__list-link--lvl0 {
  font-weight: 500;
}
.commonSitemap__list-link:hover {
  color: #1a1a1a;
}
.commonSoldOut {
  padding: 30px;
}
.commonSubcategories {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(153px, 1fr));
  grid-auto-rows: 110px;
  gap: 14px;
  margin-top: 38px;
}
@container (min-width: 580px) and (max-width: 759px) {
  .commonSubcategories {
    margin-top: 22px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@container (min-width: 760px) and (max-width: 999px) {
  .commonSubcategories {
    grid-template-columns: repeat(4, 1fr);
  }
}
@container (min-width: 1000px) and (max-width:  1429px) {
  .commonSubcategories {
    grid-template-columns: repeat(5, 1fr);
  }
}
@container (max-width: 579px) {
  .commonSubcategories {
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
    grid-auto-rows: minmax(60px, 1fr);
    margin-top: 30px;
  }
}
.commonSubcategories--hp {
  margin-top: 0;
}
.commonSubcategories__item {
  border-radius: 5px;
  background-color: #fff;
  text-decoration: none;
  display: grid;
  grid-template-rows: minmax(0, 1fr) max-content;
  padding: 10px 10px 14px;
  row-gap: 5px;
  border: 2px solid transparent;
  transition: 0.2s ease-in-out border-color;
}
@container (max-width: 579px) {
  .commonSubcategories__item {
    grid-template-rows: 1fr;
    grid-template-columns: 30px 1fr;
    column-gap: 11px;
    padding: 5px;
    align-items: center;
  }
}
.commonSubcategories__item:hover {
  border-color: #178aef;
  box-shadow: 0 5px 12px rgba(23, 138, 239, 0.16);
}
.commonSubcategories__image {
  margin: 0 auto;
  vertical-align: top;
  max-height: 45px;
  height: 100%;
  width: auto;
  max-width: 45px;
}
@container (max-width: 579px) {
  .commonSubcategories__image {
    max-width: 100%;
    height: auto;
  }
}
.commonSubcategories__text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
  line-height: 20px;
  color: #1a1a1a;
}
@container (max-width: 579px) {
  .commonSubcategories__text {
    text-align: left;
  }
}
.commonSubcategories__name {
  font-size: 14px;
}
.commonSubcategories__count {
  color: #8697a7;
  font-size: 12px;
}
@container (max-width: 579px) {
  .commonSubcategories__count {
    display: none;
  }
}
.commonSubcategories__count:before {
  content: " (";
}
.commonSubcategories__count:after {
  content: ")";
}
.commonTextNews {
  padding-bottom: 60px;
}
.commonTextNews__item {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 800px;
  margin: 10px auto;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}
@container (max-width: 579px) {
  .commonTextNews__item {
    flex-direction: column;
  }
}
.commonTextNews__image {
  padding: 5px;
  border: 1px solid #eee;
  margin-right: 20px;
}
@container (max-width: 579px) {
  .commonTextNews__image {
    margin: auto;
  }
}
.commonTextNews__image--empty {
  background: white;
  background: linear-gradient(120deg, white 0%, #dedede 50%, white 100%);
  box-shadow: inset 5px 5px 0px #fff, inset -5px -5px 0px #fff;
}
.commonTextNews__resume {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.commonTextNews__title {
  margin: 10px 0;
}
.commonTextNews__date {
  font-size: 14px;
}
.commonTextNews__text {
  margin: 10px 0;
}
.commonTextNews__link, .commonTextNews__more {
  text-decoration: none;
  color: #178aef;
}
.commonTextNews__link:hover, .commonTextNews__more:hover {
  text-decoration: underline;
}
.commonTextNews__link {
  font-size: 18px;
}
.commonTextNews__more {
  margin-left: auto;
  font-weight: 500;
}
.commonTextNews__more::after {
  content: "»";
  margin-left: 3px;
}
.commonTextNews__item {
  max-width: 100%;
}
.commonTextNews__link {
  color: #178aef;
  font-weight: bold;
  font-size: 20px;
}
.commonTextNews__text, .commonTextNews__content {
  font-size: 18px;
  line-height: 36px;
}
.commonTextNews__text a, .commonTextNews__content a {
  color: #178aef;
}
.commonTextNews__more {
  color: #178aef;
  font-size: 20px;
}
.commonTextNews__more:hover {
  text-decoration: none;
}
.commonTextNews__gallery {
  margin: 25px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, 200px);
  column-gap: 20px;
  row-gap: 20px;
  justify-content: center;
}
.commonTextNews__gallery-item {
  border: 1px solid #eee;
}
.commonTextNews__gallery-image {
  display: block;
}
.commonTextpage {
  padding-bottom: 60px;
}
.commonTextpage__gallery {
  margin: 25px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, 200px);
  column-gap: 20px;
  row-gap: 20px;
  justify-content: center;
}
.commonTextpage__gallery-item {
  border: 1px solid #eee;
}
.commonTextpage__gallery-image {
  display: block;
}
.commonThumbnails {
  display: grid;
}
.commonThumbnails--small {
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}
@container (max-width: 1429px) {
  .commonThumbnails--small {
    display: flex;
    gap: 0;
  }
  .commonThumbnails--small .commonThumbnails__thumbnail {
    aspect-ratio: var(--image-aspect-ratio);
  }
  .commonThumbnails--small .commonThumbnails__image {
    width: 100%;
    height: 100%;
  }
}
.commonThumbnails--small .commonThumbnails__thumbnail:after {
  width: 69px;
  height: 69px;
  font-size: 30px;
}
.commonThumbnails--large {
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 83px;
}
@container (max-width: 1429px) {
  .commonThumbnails--large {
    display: none;
  }
}
.commonThumbnails--large .commonThumbnails__thumbnail:after {
  width: 115px;
  height: 115px;
  font-size: 44px;
}
.commonThumbnails__thumbnail {
  border-radius: 5px;
  overflow: hidden;
}
.commonThumbnails__thumbnail--hidden {
  display: none;
}
@container (max-width: 1429px) {
  .commonThumbnails__thumbnail--hidden {
    display: block;
  }
}
.commonThumbnails__thumbnail--sum {
  position: relative;
}
.commonThumbnails__thumbnail--sum:after {
  content: attr(data-commonthumbnailssum);
  position: absolute;
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@container (max-width: 1429px) {
  .commonThumbnails__thumbnail--sum:after {
    display: none;
  }
}
.commonThumbnails__thumbnail--video {
  position: relative;
}
.commonThumbnails__thumbnail--video:before {
  background-color: rgba(0, 0, 0, 0.55);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: calc(50% - 25px);
  top: calc(50% - 25px);
  content: "►";
  color: #fff;
  font-size: 20px;
  transition: 0.2s ease-in-out background-color;
  text-indent: 4px;
}
.commonThumbnails__thumbnail--video:hover:before {
  background-color: #cd201f;
}
.commonThumbnails__image {
  vertical-align: top;
}
.commonToCart-adding {
  z-index: 10000;
}
.commonToCart-mezikosik__button:not(.commonToCart-mezikosik__button--basket) {
  background-color: transparent;
  text-transform: none;
}
.commonToCart-mezikosik__freeDelivery {
  color: #34b262;
}
.commonToCart-mezikosik__graphRange {
  border-radius: 4px;
  overflow: hidden;
}
.commonToCart-mezikosik__graphValue {
  background-color: #34b262;
}
.commonToCart-mezikosik__warning {
  background-color: transparent;
}
.commonTree {
  --toggle-width: 21px;
  --toggle-height: 21px;
  --toggle-minus-img: url("https://i.binargon.cz/demoeshopmaxi/rgba(23,138,239,1)/minus_thin.svg");
  --toggle-plus-img: url("https://i.binargon.cz/demoeshopmaxi/rgb(134,151,167)/plus_thin.svg");
  --toggle-loading-img: url("https://i.binargon.cz/loading/rgba(100,100,100,1)/loading1.svg");
  background-color: #fff;
  border: 1px solid #8697a7;
  border-radius: 10px;
  margin: 40px 0 30px;
  overflow: hidden;
  box-shadow: 0 5px 12px rgba(134, 151, 167, 0.16);
  margin-top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.commonTree__list {
  padding-left: 0;
}
.commonTree__list--level-1 {
  padding: 20px 27px 19px 19px;
}
.commonTree__list--level-2 {
  padding-bottom: 1px;
  padding-top: 8px;
}
.commonTree__list:not(.commonTree__list--level-1) {
  padding-left: 20px;
}
.commonTree__list:not(.commonTree__list--level-1):not(.commonTree__list--level-2) {
  margin-top: 2px;
}
.commonTree__row {
  justify-content: space-between;
}
.commonTree__row--level-1 {
  column-gap: 15px;
  margin: 9px 0 10px;
}
.commonTree__row--level-1 > .commonTree__link {
  text-transform: uppercase;
  font-weight: 600;
  color: #1a1a1a;
  flex: 1;
  border-radius: 3px;
  min-height: 40px;
}
.commonTree__row--level-1 > .commonTree__link:hover {
  background-color: rgba(23, 138, 239, 0.1);
  color: #178aef;
}
.commonTree__row--level-1 > .commonTree__toggle--open {
  background-color: rgba(23, 138, 239, 0.14);
}
.commonTree__row--level-1 > .commonTree__toggle--closed {
  background-color: #f4f6f8;
}
.commonTree__row--level-1 > .commonTree__toggle--closed:hover {
  background-color: rgba(23, 138, 239, 0.14);
}
.commonTree__row:not(.commonTree__row--level-1) {
  margin-bottom: 1px;
}
.commonTree__row:not(.commonTree__row--level-1):last-child {
  margin-bottom: 0;
}
.commonTree__row:not(.commonTree__row--level-1) .commonTree__link {
  font-weight: 400;
  max-width: calc(100% - 30px);
  width: 100%;
}
.commonTree__row:not(.commonTree__row--level-1) .commonTree__link--selected {
  font-weight: 600;
}
.commonTree__row:not(.commonTree__row--level-1) .commonTree__link:hover {
  color: #178aef;
}
.commonTree__row--open {
  border-bottom: 0;
}
.commonTree__toggle {
  border-radius: 50%;
  background-size: 9px 9px;
  background-repeat: no-repeat;
  background-position: center center;
}
.commonTree__toggle--closed:hover {
  --toggle-plus-img: url("https://i.binargon.cz/demoeshopmaxi/rgba(23,138,239,1)/plus_thin.svg");
}
.commonTree__link {
  font-size: 14px;
  color: #657d92;
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-grow: initial;
  padding: 5px 11px;
}
.commonTree__link:hover {
  background-color: transparent;
}
.commonTree__link--selected {
  text-decoration: none;
}
.commonUserDialog__loginForm__button {
  font-weight: 600;
  text-transform: uppercase;
  height: 45px;
  border-radius: 6px;
  border: 0 !important;
  padding: 0 20px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  position: relative;
  background-color: #178aef;
  color: #fff !important;
  min-width: auto;
}
.commonUserDialog__loginForm__button:after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: 200ms ease-in-out all;
  position: absolute;
  transform: scale(0);
  left: 0;
  top: 0;
}
.commonUserDialog__loginForm__button:hover:after {
  transform: scale(1);
  border-radius: 0;
}
.commonVariants__variantImages {
  display: flex;
  justify-content: flex-start;
  column-gap: 16px;
}
.commonVariants__params {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.commonVariants__param {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.commonVariants__value {
  border: 1px solid #b6c8d8;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  color: #1a1a1a;
  padding: 5px 10px;
  cursor: pointer;
}
.commonVariants__value--inStock {
  position: relative;
}
.commonVariants__value--inStock:after {
  position: absolute;
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  right: -5px;
  top: -5px;
  background-image: url(svg/check.svg);
}
.commonVariants__value--unavailableCombination {
  background-color: #f7f8fa;
  color: #acbfd1;
  text-decoration: none;
  opacity: 1;
  background-image: url(svg/crossed.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.commonVariants__value--sameParamOtherValue {
  opacity: 0.25;
}
.commonVariants__variantLink {
  width: 39px;
  height: 39px;
  display: block;
  min-width: 39px;
  min-height: 39px;
  border: 0;
  pointer-events: all;
}
.commonVariants__variantLink:hover {
  border: 0;
}
.commonVariants__variantImage {
  width: 39px;
  height: 39px;
  border-radius: 6px;
}
.commonVariants__moreVariants {
  display: none;
}
.commonWarrantyClaim {
  padding-bottom: 60px;
}
.commonWarrantyClaim__row-files-item input {
  width: 100%;
  max-width: 325px;
}
.commonWarrantyClaim__button--single {
  margin-left: auto;
}
.commonWarrantyClaim__button[type="submit"]:not(.exclude) {
  border: 0;
  color: #fff;
}
.commonWatchDog--common-popup-true {
  background-color: #fff;
  padding: 30px;
  max-width: 100vw;
  width: 500px;
}
.commonWatchDog__title {
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}
.commonWatchDog__selectVariant {
  margin: -10px 0 20px;
  display: flex;
  justify-content: center;
}
.commonWatchDog__text {
  margin-bottom: 20px;
}
.commonWatchDog__body__inner {
  display: grid;
  row-gap: 15px;
}
.commonWatchDog__row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 10px;
  font-size: 14px;
}
.commonWatchDog__button {
  margin-top: 20px;
}
.commonWatchDogList {
  padding-bottom: 60px;
}
.commonWatchDogList__main-text {
  font-size: 20px;
  line-height: 34px;
  color: #1a1a1a;
}
.commonWatchDogList__list {
  justify-content: center;
}
.commonWatchDogList__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #eaeaef;
  padding: 30px;
  border-radius: 5px;
  min-width: 280px;
  max-width: 400px;
  width: 100%;
}
.commonWatchDogList__item-name {
  font-size: 20px;
  color: #000;
}
.commonWatchDogList__item-name:hover {
  text-decoration: underline;
  color: #178aef;
}
.commonWatchDogList__item-type-row {
  color: #657d92;
  font-size: 18px;
}
.commonWatchDogList__item-remove {
  text-transform: uppercase;
}
.commonWatchDogList__no-auth {
  text-align: center;
  font-size: 20px;
  line-height: 34px;
  color: #30355a;
  margin-top: 30px;
}
.commonWatchDogList__no-auth-button {
  border: 0;
  color: #fff;
  width: max-content;
  margin: 20px auto;
}
.common_recenzeAddDetail {
  padding: 30px;
}
.common_recenzeAddDetail h1 {
  text-align: center;
}
.common_recenzeAddDetail_textarea:first-of-type {
  width: 50%;
  display: inline-block;
  padding-right: 15px;
  padding-top: 20px;
}
@media (max-width: 579px) {
  .common_recenzeAddDetail_textarea:first-of-type {
    width: 100%;
    display: block;
    padding-right: 0;
  }
}
.common_recenzeAddDetail_textarea:first-of-type textarea {
  width: 100%;
  height: 100px;
  margin-top: 6px;
  border-color: #dadada;
  outline-color: #0fb847;
}
.common_recenzeAddDetail_textarea:first-of-type textarea:focus {
  outline: auto;
}
.common_recenzeAddDetail_textarea:nth-of-type(2) {
  width: 50%;
  display: inline-block;
  padding-left: 15px;
  padding-top: 20px;
}
@media (max-width: 579px) {
  .common_recenzeAddDetail_textarea:nth-of-type(2) {
    width: 100%;
    display: block;
    padding-left: 0;
  }
}
.common_recenzeAddDetail_textarea:nth-of-type(2) textarea {
  width: 100%;
  height: 100px;
  margin-top: 6px;
  border-color: #dadada;
  outline-color: #ef4123;
}
.common_recenzeAddDetail_textarea:nth-of-type(2) textarea:focus {
  outline: auto;
}
.common_recenzeAddDetail_textarea:nth-of-type(3) {
  padding-top: 15px;
}
.common_recenzeAddDetail_textarea:nth-of-type(3) label {
  display: block;
  font-size: 15px;
}
.common_recenzeAddDetail_textarea:nth-of-type(3) textarea {
  width: 100%;
  height: 130px;
  margin-top: 6px;
  border-color: #dadada;
  outline-color: #595959;
}
.common_recenzeAddDetail_textarea:nth-of-type(3) textarea:focus {
  outline: auto;
}
.common_recenzeAddDetail_textarea .klady {
  display: block;
  color: #0fb847;
  font-size: 15px;
}
.common_recenzeAddDetail_textarea .zapory {
  display: block;
  color: #ef4123;
  font-size: 15px;
}
.common_recenzeAddDetail_select {
  padding: 15px 0 15px;
  /*border-bottom: 1px dashed #dbdbdb;*/
}
.common_recenzeAddDetail_select label {
  width: 162px;
  display: inline-block;
}
.common_recenzeAddDetail_select select {
  padding: 4px 7px;
  border-color: #dadada;
  cursor: pointer;
  outline-color: #595959;
}
@media (max-width: 579px) {
  .common_recenzeAddDetail_select select {
    width: 100%;
  }
}
.common_recenzeAddDetail_select select:focus {
  outline: auto;
}
.common_recenzeAddDetail_button {
  padding-bottom: 40px;
}
.common_recenzeAddDetail .commonSouhlasyForm__row__checkbox {
  float: left;
}
.common_recenzeAddDetail .commonSouhlasyForm__row__text--type0 p {
  margin-top: 28px;
}
.common_template_fce_7 {
  padding: 30px;
}
.common_template_fce_7 button:first-of-type {
  display: none;
}
.common_template_fce_7 button.href1 {
  grid-row: unset;
  grid-column: 1 / -1;
}
.common_template_fce_7 button.href1:hover {
  text-decoration: none;
}
.common_template_fce_7 .favoritesRight input {
  float: left;
  width: 80px;
  text-align: center;
}
.common_template_fce_7 .favoritesRight .unit {
  float: left;
  height: 45px;
  display: flex;
  align-items: center;
  margin-left: 15px;
}
.common_template_fce_7 .favoritesRight .clr {
  clear: both;
}
.common_template_fce_7 .odstranitVse:hover {
  text-decoration: none;
}
.contact__email {
  font-size: 13px;
}
.control {
  display: flex;
  column-gap: 37px;
}
@media (max-width: 639px) {
  .control {
    column-gap: 20px;
  }
}
.control__item {
  display: grid;
  grid-template-rows: 25px 20px;
  row-gap: 15px;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
}
@media (max-width: 639px) {
  .control__item {
    row-gap: 5px;
  }
}
.control__item--search {
  display: none;
}
@media (max-width: 639px) {
  .control__item--search {
    display: grid;
  }
}
@media (max-width: 1159px) {
  .control__item--language, .control__item--account, .control__item--favorites, .control__item--comparison {
    display: none;
  }
}
.control__item--favorites .control__item-title, .control__item--comparison .control__item-title, .control__item--active-true .control__item-title {
  color: #178aef;
}
.control__item--comparison .control__item-image {
  position: relative;
  left: -3px;
  top: 1px;
}
.control__item--account .control__item-image {
  position: relative;
  top: 2px;
}
@media (min-width: 640px) and (max-width: 1159px) {
  .control__item--cart {
    row-gap: 12px;
    margin-top: 0;
  }
}
@media (max-width: 639px) {
  .control__item--cart {
    row-gap: 12px;
    row-gap: 5px;
  }
  .control__item--cart .control__item-image {
    width: 23px;
    height: 23px;
    left: -2px;
    top: -2px;
    position: relative;
  }
  .control__item--cart .control__item-title {
    font-size: 0;
  }
  .control__item--cart .control__item-title:after {
    content: attr(data-mobile);
    font-size: 13px;
  }
}
.control__item-icon {
  display: flex;
  justify-content: center;
  position: relative;
  width: max-content;
  margin: 0 auto;
}
.control__item-image {
  vertical-align: top;
}
.control__item-notification {
  height: 16px;
  min-width: 16px;
  border-radius: 3px;
  background-color: #e54a4b;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 5px;
  bottom: -6px;
  right: -5px;
  position: absolute;
}
@media (max-width: 639px) {
  .control__item-notification {
    height: 12px;
    min-width: 12px;
    font-size: 10px;
    border-radius: 2px;
    padding: 0 2px;
    bottom: 0px;
    right: -3px;
    line-height: 11px;
  }
}
.control__item-title {
  font-size: 13px;
  font-weight: 600;
  color: #657d92;
  text-align: center;
}
.control__item-title--active {
  color: #178aef;
}
.copyright {
  display: flex;
  align-items: center;
  column-gap: 18px;
  color: #657d92;
  font-size: 14px;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .copyright {
    display: grid;
    row-gap: 7px;
  }
}
@container (max-width: 579px) {
  .copyright {
    display: grid;
    justify-content: center;
    text-align: center;
  }
}
.copyright a {
  color: #657d92;
}
.copyright a:hover {
  color: #178aef;
}
.defaultArticles {
  padding-top: 51px;
  display: grid;
  grid-template-columns: 1fr 270px;
  column-gap: 25px;
}
@container (max-width: 645px) {
  .defaultArticles {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
}
.defaultArticles__title {
  font-size: 24px;
  line-height: 35px;
  font-weight: 600;
  margin-bottom: 35px;
  display: flex;
  justify-content: space-between;
}
.defaultArticles__items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, max-content));
  column-gap: 25px;
  row-gap: 35px;
  grid-auto-flow: row dense;
}
.distinctArea {
  background-color: #178aef;
  border-radius: 10px;
  padding: 35px 40px;
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 40px;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .distinctArea {
    grid-template-columns: 1fr;
    row-gap: 35px;
    padding: 35px 30px;
  }
}
@container (max-width: 579px) {
  .distinctArea {
    grid-template-columns: 1fr;
    margin: 0 -20px;
    border-radius: 0;
    padding: 25px 20px;
  }
}
.distinctArea__contact {
  display: flex;
  column-gap: 34px;
  align-items: center;
  width: 100%;
  max-width: max-content;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .distinctArea__contact {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 100%;
    padding-top: 35px;
  }
}
@container (max-width: 579px) {
  .distinctArea__contact {
    grid-row: 1;
    display: grid;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 100%;
    row-gap: 27px;
    padding-bottom: 27px;
  }
}
.distinctArea__contact-item {
  display: grid;
  grid-template-areas: "image title" "image value";
  column-gap: 12px;
  grid-template-columns: 36px 1fr;
  grid-template-rows: 19px auto;
}
.distinctArea__contact-image {
  vertical-align: top;
  align-self: center;
  grid-row: 1 / span 2;
}
.distinctArea__contact-title {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.distinctArea__contact-value {
  grid-column: 2;
}
.email {
  color: #178aef;
}
.email--newsletter {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  font-weight: 600;
}
.email--newsletter:hover {
  text-decoration: underline;
}
.eshopPage__bg-alter {
  background-color: #f7f8fa;
  margin-bottom: 50px;
}
@media (max-width: 639px) {
  .eshopPage__bg-alter {
    margin-bottom: 0;
  }
}
.extFce6AfterAvailability {
  margin-top: 20px;
}
.extFce6AfterAvailability__title {
  font-weight: 600;
}
.extFce6AfterAvailability__link {
  color: #178aef;
}
.fce1__grid-background-top {
  background: white;
}
@container (max-width: 579px) {
  .fce1__grid-top {
    padding-top: 20px;
  }
}
.fce1__banners {
  width: 100%;
}
@container (min-width: 1480px) and (max-width: 1579px) {
  .fce1__banners {
    height: auto;
  }
}
@container (max-width: 1429px) {
  .fce1__banners {
    height: auto;
  }
}
.fce1-title {
  color: #1a1a1a;
  font-size: 24px;
  font-weight: 600;
  line-height: 35px;
  margin: 25px 0;
  font-family: "Poppins", sans-serif;
}
@media (min-width: 640px) and (max-width: 1429px) {
  .fce1-title {
    margin: 20px 0;
  }
}
@container (max-width: 579px) {
  .fce1-title {
    font-size: 14px;
    margin: 15px 0;
  }
}
.fce1Articles {
  padding-top: 51px;
  padding-bottom: 60px;
  border-bottom: 1px solid #d4e2ef;
  display: grid;
  grid-template-areas: "title more" "items items";
}
@container (min-width: 580px) and (max-width: 1429px) {
  .fce1Articles {
    padding-bottom: 51px;
  }
}
@container (max-width: 579px) {
  .fce1Articles {
    grid-template-areas: "title" "items" "more";
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.fce1Articles__title {
  font-size: 24px;
  line-height: 35px;
  font-weight: 600;
  margin-bottom: 35px;
  display: flex;
  justify-content: space-between;
  grid-area: title;
}
@container (max-width: 579px) {
  .fce1Articles__title {
    font-size: 20px;
    text-align: center;
    justify-content: center;
    margin-bottom: 29px;
  }
}
.fce1Articles__more {
  font-size: 14px;
  font-weight: normal;
  color: #178aef;
  display: flex;
  align-items: center;
  column-gap: 14px;
  text-decoration: none;
  grid-area: more;
  height: max-content;
  margin-left: auto;
  margin-top: 5px;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .fce1Articles__more {
    margin-top: 9px;
  }
}
@container (max-width: 579px) {
  .fce1Articles__more {
    margin-right: auto;
    margin-top: 30px;
  }
}
.fce1Articles__more:before {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #178aef;
  box-shadow: 0 2px 6px rgba(23, 138, 239, 0.35);
  border: 0;
  transition: 0.2s ease-in-out background-color, 0.3s ease-in-out box-shadow;
  background-repeat: no-repeat;
  background-image: url("https://i.binargon.cz/demoeshopmaxi/arrow_right.svg");
  background-position: center center;
}
@container (max-width: 579px) {
  .fce1Articles__more:before {
    width: 21px;
    height: 21px;
  }
}
.fce1Articles__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 25px;
  row-gap: 35px;
  grid-auto-flow: row dense;
  grid-area: items;
}
@container (max-width: 1429px) {
  .fce1Articles__items {
    grid-template-columns: 1fr;
  }
}
.fce2-3 {
  padding-bottom: 60px;
}
.fce2-3__grid-top {
  padding-bottom: 31px;
}
.fce2-3__grid-bottom {
  padding-top: 51px;
}
@container (max-width: 579px) {
  .fce2-3__grid-bottom {
    padding-top: 35px;
  }
}
.fce2-3__grid-side {
  padding-bottom: 50px;
}
@container (max-width: 639px) {
  .fce2-3__grid-side {
    display: none;
  }
}
.fce2-3__name {
  font-size: 36px;
  font-weight: 600;
  line-height: 55px;
  margin-top: 25px;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .fce2-3__name {
    font-size: 30px;
    line-height: 46px;
    margin-top: 31px;
  }
}
@container (max-width: 579px) {
  .fce2-3__name {
    font-size: 24px;
    line-height: 35px;
  }
}
.fce2-3__products {
  margin: -35px -20px -55px;
}
.fce6 {
  padding-bottom: 50px;
}
.fce6__grid-bottom {
  padding-top: 42px;
}
@container (max-width: 1429px) {
  .fce6__grid-bottom {
    padding-top: 30px;
  }
}
@container (max-width: 579px) {
  .fce6__grid-bottom {
    padding-top: 11px;
  }
}
.fce6__subgrid {
  display: grid;
  align-items: start;
}
.fce6__subgrid--default {
  grid-template-areas: "top top" "left right" "bottom bottom";
  grid-template-columns: 560px minmax(0, 1fr);
  column-gap: 50px;
}
@container (max-width: 1429px) {
  .fce6__subgrid--default {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "top" "left" "right" "bottom";
  }
}
@container (min-width: 580px) and (max-width: 1429px) {
  .fce6__subgrid--default {
    overflow: hidden;
  }
}
.fce6__subgrid-top {
  grid-area: top;
}
.fce6__subgrid-left {
  grid-area: left;
  display: grid;
  gap: 20px;
  padding-top: 40px;
}
@container (max-width: 1429px) {
  .fce6__subgrid-left {
    position: relative;
  }
}
@container (max-width: 579px) {
  .fce6__subgrid-left {
    padding-top: 0;
  }
}
.fce6__subgrid-right {
  grid-area: right;
  padding-top: 28px;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .fce6__subgrid-right {
    padding-top: 37px;
  }
}
@container (max-width: 579px) {
  .fce6__subgrid-right {
    padding-top: 21px;
  }
}
.fce6__subgrid-bottom {
  grid-area: bottom;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .fce6__gallery {
    margin: 0 -30px;
    margin-top: 25px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
@container (max-width: 579px) {
  .fce6__gallery {
    margin-top: 17px;
    width: calc(100vw - 40px);
  }
}
.fce6-title, .cParameters__title {
  font-size: 30px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .fce6-title, .cParameters__title {
    font-size: 26px;
  }
}
@container (max-width: 579px) {
  .fce6-title, .cParameters__title {
    font-size: 20px;
  }
}
.fce6__info {
  display: grid;
  grid-template-columns: 1fr min-content;
  column-gap: 25px;
  margin-top: 22px;
  border-bottom: 1px solid #ecedef;
  padding-bottom: 33px;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .fce6__info {
    margin-top: 21px;
  }
}
.fce6__setbind-table {
  display: none;
  margin: 25px 0;
}
.fce6__setbind-table-container {
  max-width: calc(100vw - 40px);
  overflow: auto;
}
.fce6__control {
  display: flex;
  flex-wrap: wrap;
  column-gap: 29px;
  margin-top: 19px;
  row-gap: 15px;
}
@container (max-width: 579px) {
  .fce6__control {
    margin-top: 23px;
  }
}
.fce6Availability {
  font-size: 16px;
  line-height: 25px;
  margin-top: 11px;
  display: grid;
  row-gap: 11px;
}
@container (max-width: 579px) {
  .fce6Availability {
    font-size: 14px;
    row-gap: 5px;
    margin-top: 8px;
  }
}
.fce6Availability__row--2 {
  color: #34b262;
  cursor: pointer;
  text-decoration: underline;
}
.fce6Benefits {
  background-color: #f7f8fa;
  border-radius: 10px;
  padding: 30px;
  margin-top: 30px;
  container-type: inline-size;
  container-name: benefits;
}
.fce6Benefits__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@container benefits (min-width: 460px) {
  .fce6Benefits__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
.fce6Code {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 4px;
  font-size: 14px;
  line-height: 30px;
  color: #657d92;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .fce6Code {
    display: block;
    margin-top: -3px;
  }
}
@container (max-width: 579px) {
  .fce6Code {
    font-size: 13px;
  }
}
.fce6Customily__iframe {
  border: 0;
  width: 95vw;
  height: 95vh;
}
.fce6Description {
  margin-top: 88px;
  overflow: hidden;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .fce6Description {
    margin-top: 70px;
  }
}
@container (max-width: 579px) {
  .fce6Description {
    margin-top: 42px;
  }
}
.fce6Description__text {
  color: #657d92;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .fce6Description__text {
    font-size: 18px;
    line-height: 36px;
    margin-top: 25px;
  }
}
.fce6Documents {
  margin-top: 81px;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .fce6Documents {
    margin-top: 54px;
  }
}
@container (max-width: 579px) {
  .fce6Documents {
    margin-top: 25px;
  }
}
.fce6Documents__groups {
  margin-top: 27px;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .fce6Documents__groups {
    margin-top: 29px;
  }
}
@container (max-width: 579px) {
  .fce6Documents__groups {
    margin-top: 22px;
  }
}
.fce6Documents__group-title {
  font-size: 18px;
  font-weight: 600;
  margin-top: 7px;
  margin-top: 27px;
}
@container (max-width: 579px) {
  .fce6Documents__group-title {
    font-size: 16px;
    margin-top: 22px;
  }
}
.fce6Documents__group-description {
  color: #657d92;
  font-size: 16px;
  line-height: 34px;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .fce6Documents__group-description {
    margin-top: 7px;
  }
}
@container (max-width: 579px) {
  .fce6Documents__group-description {
    font-size: 14px;
    line-height: 26px;
    margin-top: 5px;
  }
}
.fce6Documents__group-documents {
  display: grid;
  row-gap: 15px;
  margin-top: 28px;
}
@container (max-width: 579px) {
  .fce6Documents__group-documents {
    margin-top: 22px;
    row-gap: 12px;
  }
}
.fce6Documents__document {
  border: 1px solid #8697a7;
  border-radius: 6px;
  padding: 13px 19px;
  min-height: 54px;
  color: #178aef;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  column-gap: 10px;
  align-items: center;
  box-shadow: 0 5px 12px rgba(134, 151, 167, 0.16);
  max-width: max-content;
}
@container (max-width: 579px) {
  .fce6Documents__document {
    padding: 11px 15px;
    min-height: 50px;
    font-size: 14px;
  }
}
.fce6Documents__document-icon {
  position: relative;
}
.fce6Gallery {
  position: relative;
  width: 100%;
}
@container (max-width: 1429px) {
  .fce6Gallery {
    position: static;
    aspect-ratio: var(--image-aspect-ratio);
  }
}
.fce6Gallery--large-enabled .fce6GalleryItem:nth-child(n + 2) {
  display: none;
}
@container (max-width: 1429px) {
  .fce6Gallery--large-enabled .fce6GalleryItem:nth-child(n + 2) {
    display: block;
  }
}
.fce6Gallery__container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: max-content max-content;
  /* 560xp 125px */
  gap: 20px;
  height: 100%;
}
@container (max-width: 1429px) {
  .fce6Gallery__container {
    display: flex;
    gap: 20px;
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: both mandatory;
    scroll-padding: 1rem;
  }
}
.fce6Gallery__track {
  height: 100%;
}
.fce6Gallery__controls {
  position: absolute;
  justify-content: center;
  display: none;
}
@container (max-width: 1429px) {
  .fce6Gallery__controls {
    display: flex;
    margin: auto;
    left: 0;
    right: 0;
  }
}
@container (min-width: 580px) and (max-width: 1429px) {
  .fce6Gallery__controls {
    bottom: 30px;
    gap: 8px;
  }
}
@container (max-width: 579px) {
  .fce6Gallery__controls {
    bottom: 20px;
    gap: 4px;
  }
}
.fce6Gallery__controls-bullet {
  width: 30px;
  height: 3px;
  border-radius: 3px;
  border: 0;
  display: block;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.2);
}
@container (max-width: 579px) {
  .fce6Gallery__controls-bullet {
    width: 24px;
    height: 2px;
  }
}
.fce6Gallery__controls-bullet.glide__bullet--active {
  background-color: #178aef;
}
.fce6GalleryItem {
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: var(--image-aspect-ratio);
  grid-row: 2;
}
@container (min-width: 640px) and (max-width: 1429px) {
  .fce6GalleryItem {
    box-shadow: 0 5px 12px rgba(134, 151, 167, 0.16);
  }
}
@container (min-width: 1430px) {
  .fce6GalleryItem {
    margin: 0 !important;
  }
}
.fce6GalleryItem:first-child {
  grid-row: 1;
  grid-column: 1 / span 4;
  border-radius: 10px;
}
@container (max-width: 1429px) {
  .fce6GalleryItem:first-child {
    grid-column: 1;
    border-radius: 5px;
  }
}
.fce6GalleryItem:nth-child(n + 6) {
  display: none;
}
@container (max-width: 1429px) {
  .fce6GalleryItem:nth-child(n + 6) {
    display: block;
  }
}
.fce6GalleryItem:nth-child(5):not([data-remaining="+0"]) {
  position: relative;
}
.fce6GalleryItem:nth-child(5):not([data-remaining="+0"]):after {
  content: attr(data-remaining);
  position: absolute;
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  font-size: 30px;
  width: 69px;
  height: 69px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@container (max-width: 1429px) {
  .fce6GalleryItem:nth-child(5):not([data-remaining="+0"]):after {
    display: none;
  }
}
.fce6GalleryItem[type="youtube"], .fce6GalleryItem[type="vimeo"] {
  position: relative;
}
.fce6GalleryItem[type="youtube"]:before, .fce6GalleryItem[type="vimeo"]:before {
  background-color: rgba(0, 0, 0, 0.55);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: calc(50% - 25px);
  top: calc(50% - 25px);
  content: "►";
  color: #fff;
  font-size: 20px;
  transition: 0.2s ease-in-out background-color;
  text-indent: 4px;
}
.fce6GalleryItem[type="youtube"]:hover:before, .fce6GalleryItem[type="vimeo"]:hover:before {
  background-color: #cd201f;
}
@container (max-width: 1429px) {
  .fce6GalleryItem {
    grid-row: 1;
    display: inline-block;
    flex-shrink: 0;
    scroll-snap-align: center;
  }
}
.fce6GalleryItem__image {
  vertical-align: top;
  width: 100%;
  height: 100%;
  aspect-ratio: var(--image-aspect-ratio);
  object-fit: contain;
}
.fce6GalleryLabels__left {
  position: absolute;
  left: 10px;
  top: 10px;
  max-width: 50%;
  z-index: 10;
}
@container (max-width: 1429px) {
  .fce6GalleryLabels__left {
    top: initial;
    left: 0;
  }
}
@container (min-width: 580px) and (max-width: 1429px) {
  .fce6GalleryLabels__left {
    bottom: -32px;
  }
}
@container (max-width: 579px) {
  .fce6GalleryLabels__left {
    top: 20px;
  }
}
.fce6GalleryLabels__right {
  position: absolute;
  right: 10px;
  top: 10px;
  max-width: 50%;
  z-index: 10;
  display: grid;
  row-gap: 4px;
}
@container (max-width: 1429px) {
  .fce6GalleryLabels__right {
    top: initial;
    right: 0;
  }
}
@container (min-width: 580px) and (max-width: 1429px) {
  .fce6GalleryLabels__right {
    bottom: -32px;
  }
}
@container (max-width: 579px) {
  .fce6GalleryLabels__right {
    top: 20px;
  }
}
.fce6Hooked {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 30px;
}
.fce6Hooked__title {
  width: 100%;
  font-size: 16px;
  margin-bottom: 27px;
}
.fce6Hooked__products {
  width: 100%;
  border-style: solid;
  border-width: 2px;
  border-color: #b6c8d8;
  background-color: #fff;
  border-radius: 5px;
  display: flex;
  flex-wrap: wrap;
  transition: 0.2s ease border-color, 0.2s ease-in-out height;
  overflow: hidden;
}
.fce6Hooked__products:hover {
  border-color: #178aef;
  box-shadow: 0 0 7px rgba(23, 138, 239, 0.5);
  overflow: visible;
}
.fce6Hooked__product {
  display: grid;
  grid-template-columns: 40px 1fr max-content;
  column-gap: 15px;
  width: 100%;
  align-items: center;
  width: 100%;
  padding: 5px 20px 5px 15px;
  transition: 0.2s ease background-color;
  column-gap: 10px;
  border-top: 1px solid #eee;
}
.fce6Hooked__product:first-child {
  border-top: 0;
}
.fce6Hooked__product:hover {
  background-color: #e7eaf0;
}
.fce6Hooked__product-images {
  position: relative;
}
.fce6Hooked__product-image {
  vertical-align: top;
}
.fce6Hooked__product-image:hover + .fce6Hooked__product-image-large {
  height: 300px;
  border: 2px solid #178aef;
  opacity: 1;
}
.fce6Hooked__product-image-large {
  left: 45px;
  height: 0;
  width: 300px;
  opacity: 0;
  transition: ease height 0.2s, ease opacity 0.3s;
  position: absolute;
  border: 0;
  border-radius: 5px;
  align-self: baseline;
  z-index: 5;
  vertical-align: top;
}
@media (max-width: 1429px) {
  .fce6Hooked__product-image-large {
    display: none;
  }
}
.fce6Hooked__product-name {
  font-weight: 500;
  overflow: hidden;
  width: 100%;
  color: #1a1a1a;
  text-decoration: none;
}
.fce6Hooked__product-name:hover {
  text-decoration: underline;
}
.fce6Hooked__product-price {
  font-weight: 500;
  font-size: 13px;
  margin-top: 3px;
  color: #178aef;
}
.fce6Hooked__container {
  max-width: calc(100% - 40px);
}
.fce6LimitsTitle {
  color: #657d92;
  font-size: 16px;
  line-height: 34px;
  margin-top: 29px;
}
@container (max-width: 579px) {
  .fce6LimitsTitle {
    font-size: 13px;
    margin-top: 18px;
  }
}
.fce6Name {
  font-size: 36px;
  font-weight: 600;
  line-height: 48px;
  display: inline;
  margin-right: 10px;
  font-family: "Poppins", sans-serif;
}
@container (max-width: 579px) {
  .fce6Name {
    font-size: 24px;
    line-height: 36px;
  }
}
.fce6Options {
  background-color: #f7f8fa;
  border-radius: 10px;
  padding: 30px;
  margin-top: 30px;
}
@container (max-width: 579px) {
  .fce6Options {
    margin: 0 -20px;
    margin-top: 33px;
    border-radius: 0;
    padding: 25px 20px 17px;
    overflow-clip-margin: 20px;
  }
}
.fce6Options__error {
  color: #e54a4b;
  padding: 20px 0 0;
  font-size: 14px;
  display: none;
}
.fce6Price {
  display: flex;
  column-gap: 20px;
  align-items: center;
  margin-bottom: 37px;
}
.fce6Price__main {
  grid-area: priceCurrent;
  font-size: 30px;
  font-weight: 600;
}
@container (max-width: 579px) {
  .fce6Price__main {
    font-size: 26px;
  }
}
.fce6Price__small {
  font-size: 14px;
}
@container (max-width: 579px) {
  .fce6Price__small {
    font-size: 13px;
  }
}
.fce6PriceBefore {
  color: #657d92;
  font-size: 14px;
}
@container (max-width: 579px) {
  .fce6PriceBefore {
    font-size: 13px;
  }
}
.fce6PriceBefore__stroke {
  text-decoration: line-through;
}
.fce6PriceTaxExcluded {
  grid-area: priceTaxExcluded;
}
.fce6PriceTaxExcluded__tax {
  font-size: 14px;
}
.fce6ProducerLogo--text {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f4f6f8;
  border-radius: 10px;
  padding: 0 15px;
  color: #178aef;
}
@container (max-width: 579px) {
  .fce6ProducerLogo__image {
    width: 40px;
    height: 40px;
  }
}
.fce6ProductReviews {
  display: grid;
  row-gap: 45px;
  padding-top: 43px;
}
.fce6ProductReviews__item {
  display: grid;
  grid-template-areas: "name rating" "text text";
  row-gap: 9px;
}
.fce6ProductReviews__item--reaction {
  margin-left: 30px;
}
.fce6ProductReviews__item-name {
  grid-area: name;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
}
.fce6ProductReviews__item-rating {
  grid-area: rating;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  column-gap: 9px;
  margin-left: auto;
}
.fce6ProductReviews__item-text {
  grid-area: text;
  background-color: #f7f8fa;
  border-radius: 3px;
  padding: 30px;
  position: relative;
}
@container (max-width: 579px) {
  .fce6ProductReviews__item-text {
    padding: 17px;
  }
}
.fce6ProductReviews__item-text:after {
  content: "";
  display: block;
  position: absolute;
  top: -11px;
  left: 100px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 0 20px;
  border-color: transparent transparent transparent #f7f8fa;
}
.fce6ProductReviews__item-general {
  color: #657d92;
  font-size: 16px;
  line-height: 34px;
}
@container (max-width: 579px) {
  .fce6ProductReviews__item-general {
    font-size: 14px;
    line-height: 26px;
  }
}
.fce6ProductReviews__item-positive, .fce6ProductReviews__item-negative {
  font-size: 14px;
  line-height: 34px;
  display: flex;
  column-gap: 11px;
}
.fce6ProductReviews__item-positive:before, .fce6ProductReviews__item-negative:before {
  content: "";
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  margin-top: 10px;
}
.fce6ProductReviews__item-positive:before {
  background-image: url("https://i.binargon.cz/demoeshopmaxi/rgba(52,178,98,1)/plus.svg");
}
.fce6ProductReviews__item-negative:before {
  background-image: url("https://i.binargon.cz/demoeshopmaxi/rgba(212,50,91,1)/minus.svg");
}
.fce6ProductReviews__item-source {
  text-align: right;
  font-size: 12px;
  grid-column: 1 / span 2;
  margin-top: 5px;
  color: #657d92;
  position: relative;
  bottom: -10px;
}
.fce6PurchaseControl {
  container: control / inline-size;
}
.fce6PurchaseControl--multiple-units .fce6PurchaseControl__container {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 15px;
}
.fce6PurchaseControl--multiple-units.fce6PurchaseControl--note .fce6PurchaseControl__button {
  grid-row: 3;
}
.fce6PurchaseControl--simple .fce6PurchaseControl__container {
  display: flex;
  column-gap: 15px;
  align-items: center;
  row-gap: 15px;
}
@container (max-width: 400px) {
  .fce6PurchaseControl--simple .fce6PurchaseControl__container .fce6PurchaseControl__button-title {
    display: none;
  }
}
.fce6PurchaseControl--simple.fce6PurchaseControl--note .fce6PurchaseControl__container {
  flex-wrap: wrap;
}
.fce6PurchaseControl__quantity {
  background-color: #fff;
  border-radius: 6px;
  width: 129px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 1;
  grid-row: 1;
  flex-shrink: 0;
}
.fce6PurchaseControl__note {
  grid-column: 1 / span 2;
  grid-row: 2;
  width: 100%;
}
.fce6PurchaseControl__note-title {
  display: block;
  margin-bottom: 10px;
}
.fce6PurchaseControl__note-input {
  width: 100%;
}
.fce6PurchaseControl__note-input--textarea {
  min-height: 90px;
  max-width: 100%;
}
.fce6PurchaseControl__button {
  margin-left: auto;
  height: 54px;
  padding: 0 30px;
  font-size: 18px;
  display: flex;
  column-gap: 10px;
  align-items: center;
  letter-spacing: -0.03em;
  width: max-content;
  grid-column: 1 / span 2;
  grid-row: 2;
  width: 100%;
  justify-content: center;
}
.fce6PurchaseControl__button--out-stock:not(.fce6PurchaseControl__button--on-supplier) {
  background-color: #999;
}
.fce6PurchaseControl__button-icon {
  position: relative;
  top: -2px;
}
.fce6Related__group {
  margin-top: 89px;
}
@container (max-width: 579px) {
  .fce6Related__group {
    margin-top: 37px;
  }
}
.fce6Reservation {
  margin-top: 88px;
  display: grid;
  row-gap: 30px;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .fce6Reservation {
    margin-top: 39px;
  }
}
@container (max-width: 579px) {
  .fce6Reservation {
    margin-top: 15px;
  }
}
.fce6Reservation__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 50px;
  row-gap: 20px;
}
@container (max-width: 1429px) {
  .fce6Reservation__container {
    grid-template-columns: 1fr;
  }
}
.fce6Reservation__column {
  background-color: #f7f8fa;
  border-radius: 10px;
  padding: 30px;
}
.fce6Reservation__column-title {
  margin-bottom: 48px;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .fce6Reservation__column-title {
    margin-bottom: 40px;
  }
}
@container (max-width: 579px) {
  .fce6Reservation__column-title {
    margin-bottom: 28px;
  }
}
.fce6Reservation__column-rows {
  display: grid;
  row-gap: 15px;
}
.fce6Reservation__column-row {
  display: grid;
  align-items: center;
  grid-template-columns: 180px 1fr;
  column-gap: 15px;
}
@container (max-width: 579px) {
  .fce6Reservation__column-row {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }
}
.fce6Reservation__column-input {
  width: 155px;
  background-image: url(svg/calendar.svg);
  background-position: right 10px center;
  background-repeat: no-repeat;
}
.fce6Reservation__button {
  width: max-content;
  margin-left: auto;
}
.fce6ReservationPrice {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 5px;
}
.fce6ReservationPrice__title, .fce6ReservationPrice__value, .fce6ReservationPrice__currency {
  font-weight: bold;
  font-size: 20px;
}
.fce6ReservationPrice__value {
  margin-left: auto;
}
.fce6ReservationPrice__days {
  font-size: 14px;
}
.fce6Reviews {
  margin-top: 88px;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .fce6Reviews {
    margin-top: 72px;
  }
}
@container (max-width: 579px) {
  .fce6Reviews {
    margin-top: 42px;
  }
}
.fce6Reviews__title {
  margin-bottom: 21px;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .fce6Reviews__title {
    margin-bottom: 23px;
  }
}
.fce6Reviews__container {
  display: grid;
  grid-template-columns: 300px 1fr;
  column-gap: 80px;
  align-items: start;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .fce6Reviews__container {
    grid-template-columns: 200px 1fr;
    column-gap: 60px;
  }
}
@container (max-width: 579px) {
  .fce6Reviews__container {
    grid-template-columns: 1fr;
  }
}
@container (min-width: 580px) and (max-width: 1429px) {
  .fce6Reviews__items {
    padding-top: 47px;
  }
}
.fce6ReviewsOverview {
  display: flex;
  align-items: center;
  column-gap: 9px;
}
@container (max-width: 579px) {
  .fce6ReviewsOverview {
    column-gap: 13px;
  }
}
.fce6ReviewsOverview--large {
  column-gap: 14px;
}
.fce6ReviewsOverview--large .fce6ReviewsOverview__percent {
  font-size: 24px;
  font-weight: 600;
}
@container (max-width: 579px) {
  .fce6ReviewsOverview--large .fce6ReviewsOverview__percent {
    font-size: 18px;
  }
}
.fce6ReviewsOverview__percent {
  font-size: 16px;
  font-weight: 600;
}
@container (max-width: 579px) {
  .fce6ReviewsOverview__percent {
    font-size: 14px;
  }
}
.fce6ReviewsOverview__count {
  font-size: 16px;
  text-decoration: underline;
  cursor: pointer;
}
@container (max-width: 579px) {
  .fce6ReviewsOverview__count {
    font-size: 14px;
  }
}
.fce6ReviewsSummary {
  display: grid;
  row-gap: 48px;
  margin-top: 59px;
}
@container (max-width: 579px) {
  .fce6ReviewsSummary {
    margin-top: 26px;
    row-gap: 38px;
  }
}
@container (max-width: 579px) {
  .fce6ReviewsSummary__items {
    margin-top: 45px;
  }
}
.fce6ReviewsSummary__item {
  display: grid;
  justify-content: space-between;
  grid-template-areas: "count stars" "progress progress";
  row-gap: 9px;
}
.fce6ReviewsSummary__count {
  grid-area: count;
  font-size: 14px;
}
.fce6ReviewsSummary__count:not(.fce6ReviewsSummary__count--not-rated) {
  font-weight: 600;
}
.fce6ReviewsSummary__count:not(.fce6ReviewsSummary__count--not-rated):after {
  content: "×";
}
.fce6ReviewsSummary__stars {
  grid-area: stars;
  margin-top: 3px;
}
.fce6ReviewsSummary__progress {
  grid-area: progress;
  height: 2px;
  background-color: rgba(23, 138, 239, 0.2);
}
.fce6ReviewsSummary__progress--inner {
  background-color: #fcaf17;
}
.fce6ShortDescription {
  color: #657d92;
  font-size: 16px;
  line-height: 34px;
  margin-top: 28px;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .fce6ShortDescription {
    margin-top: 24px;
  }
}
@container (max-width: 579px) {
  .fce6ShortDescription {
    font-size: 14px;
    line-height: 26px;
    margin-top: 25px;
  }
}
.fce6ShortDescription__more {
  color: #178aef;
  font-size: 14px;
  cursor: pointer;
  margin-left: 5px;
}
.fce6ShortDescription__more:hover {
  text-decoration: underline;
}
.fce6ShortDescription__more:after {
  display: inline-block;
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #178aef;
  box-shadow: 0 2px 6px rgba(23, 138, 239, 0.35);
  border: 0;
  cursor: pointer;
  transition: 0.2s ease-in-out background-color, 0.3s ease-in-out box-shadow;
  background-repeat: no-repeat;
  background-image: url("https://i.binargon.cz/demoeshopmaxi/arrow_right.svg");
  background-position: 6px center;
  background-size: 5px auto;
  vertical-align: baseline;
  margin-left: 7px;
  position: relative;
  top: 3px;
}
.fce6Stickers {
  display: grid;
  row-gap: 4px;
  margin-bottom: 10px;
}
.fce6UnitPrice {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  border-bottom: 1px solid #ecedef;
  padding-bottom: 27px;
  margin-bottom: 18px;
  column-gap: 15px;
  row-gap: 10px;
}
.fce6UnitPrice__taxIncluded .fce6UnitPrice__value, .fce6UnitPrice__taxIncluded .fce6UnitPrice__currency {
  font-weight: 600;
  font-size: 20px;
}
.fce6UnitPrice__taxExcluded {
  font-size: 14px;
}
.fce6UnitPrice__currency:before, .fce6UnitPrice__title:before {
  content: " ";
}
.fce6UserActions {
  display: flex;
  align-items: center;
  column-gap: 30px;
  margin: 30px 0;
}
@container (max-width: 579px) {
  .fce6UserActions {
    justify-content: space-between;
    margin: 33px 0 15px;
    flex-wrap: wrap;
    row-gap: 20px;
  }
}
.fce6UserActions__item {
  display: flex;
  align-items: center;
  column-gap: 10px;
  cursor: pointer;
  color: #1a1a1a;
  text-decoration: none;
}
.fce6UserActions__item:hover {
  color: #178aef;
}
@container (max-width: 579px) {
  .fce6UserActions__item {
    display: grid;
    row-gap: 13px;
    font-size: 14px;
    justify-content: center;
  }
}
.fce6UserActions__item--installment {
  margin-left: auto;
}
@container (max-width: 579px) {
  .fce6UserActions__item--installment {
    margin-left: initial;
  }
}
@container (max-width: 579px) {
  .fce6UserActions__item-icon {
    margin: 0 auto;
  }
}
@media (max-width: 579px) {
  .fce8-9-10__grid.grid-container--columns-1 {
    grid-template-columns: [start] minmax(20px, 1fr) [main-start] minmax(0, 1480px) [main-end] minmax(20px, 1fr) [end];
  }
}
.filters {
  padding: 34px 30px;
  border: 1px solid #8697a7;
  border-radius: 10px;
  box-shadow: 0 5px 12px rgba(134, 151, 167, 0.16);
  background-color: #fff;
}
.filters__title {
  font-size: 18px;
  line-height: 27px;
  margin-bottom: 33px;
}
.filters__cancel {
  color: #e54a4b;
  font-weight: 600;
  height: 20px;
  text-decoration: none;
  font-size: 14px;
  line-height: 21px;
  display: flex;
  align-items: center;
  column-gap: 10px;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 20px;
}
.filters__cancel-frame {
  background-color: #e54a4b;
  border-radius: 6px;
  width: 20px;
  height: 20px;
  box-shadow: 0 2px 6px rgba(229, 74, 75, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.filters__show-more {
  background-color: rgba(23, 138, 239, 0.1);
  color: #178aef;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  width: max-content;
  padding: 12px 29px;
  font-weight: 600;
  text-transform: uppercase;
  height: 51px;
  font-size: 14px;
  position: relative;
  cursor: pointer;
  display: flex;
  column-gap: 5px;
  margin-left: -30px;
  margin-right: -30px;
  margin-bottom: -34px;
  width: calc(100% + 60px);
  margin-top: 20px;
  justify-content: center;
  align-items: center;
}
.filters__show-more:before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background-color: #fff;
  position: absolute;
  top: -1px;
  left: 0;
}
.filters__show-more-visible {
  display: none;
}
.filters__show-more.visible .moreFilters__show-more-visible {
  display: block;
}
.filters__show-more.visible .moreFilters__show-more-hidden {
  display: none;
}
.footer__top {
  display: grid;
  grid-template-columns: repeat(4, 245px);
  justify-content: space-between;
  padding-bottom: 50px;
  padding-top: 53px;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .footer__top {
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 24px;
    padding-bottom: 44px;
  }
}
@container (max-width: 579px) {
  .footer__top {
    background-color: #178aef;
    margin: 0 -20px;
    grid-template-columns: 1fr;
    padding: 25px 20px 0;
    row-gap: 28px;
  }
}
.footer__middle {
  border-top: 1px solid #ecedef;
}
.footer__bottom {
  min-height: 89px;
  border-top: 1px solid #ecedef;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .footer__bottom {
    grid-template-columns: 1fr auto;
    column-gap: 40px;
    padding-top: 27px;
  }
}
@container (max-width: 579px) {
  .footer__bottom {
    grid-template-columns: 1fr;
    grid-template-columns: 1fr;
    padding-top: 28px;
    padding-bottom: 24px;
  }
}
@container (min-width: 580px) and (max-width: 1429px) {
  .footer__column-address {
    grid-column: 1;
    grid-row: 1;
  }
}
@container (min-width: 580px) and (max-width: 1429px) {
  .footer__column-purchase {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
}
@container (min-width: 580px) and (max-width: 1429px) {
  .footer__column-other {
    grid-column: 3;
    grid-row: 1 / span 2;
  }
}
@container (min-width: 580px) and (max-width: 1429px) {
  .footer__column-follow {
    grid-column: 1;
    grid-row: 2;
  }
  .footer__column-follow .footerHeading {
    display: none;
  }
}
@container (max-width: 579px) {
  .footer__column-follow {
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    background: #fff;
    margin-left: -20px;
    margin-right: -20px;
    padding: 31px 20px;
  }
  .footer__column-follow .footerHeading {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 600;
    width: max-content;
    white-space: nowrap;
  }
  .footer__column-follow .footerHeading:after {
    display: none;
  }
}
@container (min-width: 580px) and (max-width: 1429px) {
  .footer__copyright {
    grid-row: 1 / span 2;
  }
}
@container (max-width: 579px) {
  .footer__binargon {
    padding-top: 20px;
  }
}
.footerHeading {
  font-weight: 600;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
}
@container (max-width: 579px) {
  .footerHeading {
    position: relative;
    margin-bottom: 4px;
  }
}
@container (max-width: 579px) {
  .footerHeading {
    color: rgba(255, 255, 255, 0.7);
    font-weight: normal;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footerHeading.active {
    color: #fff;
  }
  .footerHeading.active:after {
    background-color: #fff;
    background-image: url("https://i.binargon.cz/demoeshopmaxi/rgba(23,138,239,1)/minus_thin.svg");
  }
  .footerHeading.active + ul, .footerHeading.active + address {
    display: block;
  }
}
.footerHeading__toggle {
  display: none;
}
@container (max-width: 579px) {
  .footerHeading__toggle {
    display: block;
    position: absolute;
    inset: 0;
  }
}
.footerHeading:after {
  display: none;
}
@container (max-width: 579px) {
  .footerHeading:after {
    content: "";
    display: block;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background-color: #0e6fc5;
    background-image: url("https://i.binargon.cz/demoeshopmaxi/rgba(255,255,255,1)/plus_thin.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 11px 11px;
    flex-shrink: 0;
  }
}
.footerTextpages {
  padding: 0;
  margin: 0;
  list-style-type: none;
  margin-top: 9px;
}
@container (max-width: 579px) {
  .footerTextpages {
    display: none;
    padding-left: 20px;
  }
}
.footerTextpages__item {
  display: grid;
  grid-template-columns: 3px 1fr;
  column-gap: 12px;
  align-items: center;
  font-size: 14px;
  padding: 4px 0;
}
@container (max-width: 579px) {
  .footerTextpages__item {
    grid-template-columns: 1fr;
  }
}
.footerTextpages__item:before {
  width: 3px;
  height: 3px;
  background-color: #178aef;
  content: "";
}
@container (max-width: 579px) {
  .footerTextpages__item:before {
    display: none;
  }
}
.footerTextpages__link {
  text-decoration: none;
  color: #657d92;
}
@container (max-width: 579px) {
  .footerTextpages__link {
    color: rgba(255, 255, 255, 0.7);
  }
}
.footerTextpages__link:hover {
  color: #178aef;
}
.grid {
  container: grid / inline-size;
  display: grid;
}
@container products (max-width: 1520px) and (min-width: 1300px) {
  .grid--xl-thin {
    grid-template-columns: repeat(5, 1fr);
    margin: -20px -20px -21px;
  }
  .grid--xl-wide {
    grid-template-columns: repeat(4, 1fr);
    margin: -35px -20px -55px;
  }
  .grid--xl-wrap {
    grid-template-columns: repeat(4, 1fr);
    margin: -20px -20px -21px;
  }
}
@container products (max-width: 1300px) and (min-width: 1024px) {
  .grid--l-thin {
    grid-template-columns: repeat(4, 1fr);
    margin: -20px -20px -21px;
  }
  .grid--l-wide {
    grid-template-columns: repeat(3, 1fr);
    margin: -35px -20px -55px;
  }
  .grid--l-wrap {
    grid-template-columns: repeat(3, 1fr);
    margin: -20px -20px -21px;
  }
}
@container products (max-width: 1024px) and (min-width: 640px) {
  .grid--m-thin {
    grid-template-columns: repeat(3, 1fr);
    margin: -20px -20px -21px;
  }
  .grid--m-wide {
    grid-template-columns: repeat(2, 1fr);
    margin: -35px -20px -55px;
  }
  .grid--m-wrap {
    grid-template-columns: repeat(2, 1fr);
    margin: -20px -20px -21px;
  }
}
@container products (max-width: 640px) and (min-width: 0) {
  .grid--s-thin {
    grid-template-columns: repeat(2, 1fr);
    margin: -20px -20px -21px;
  }
  .grid--s-wide {
    grid-template-columns: repeat(1, 1fr);
    margin: -35px -20px -55px;
  }
  .grid--s-wrap {
    grid-template-columns: repeat(1, 1fr);
    margin: -20px -20px -21px;
  }
}
@container productsGlide (max-width: 1520px) and (min-width: 1300px) {
  .grid--xl-thin {
    grid-auto-columns: calc(100cqw / 5);
  }
  .grid--xl-wide {
    grid-auto-columns: calc(100cqw / 4);
  }
  .grid--xl-wrap {
    grid-auto-columns: calc(100cqw / 4);
  }
}
@container productsGlide (max-width: 1300px) and (min-width: 1024px) {
  .grid--l-thin {
    grid-auto-columns: calc(100cqw / 4);
  }
  .grid--l-wide {
    grid-auto-columns: calc(100cqw / 3);
  }
  .grid--l-wrap {
    grid-auto-columns: calc(100cqw / 3);
  }
}
@container productsGlide (max-width: 1024px) and (min-width: 640px) {
  .grid--m-thin {
    grid-auto-columns: calc((100vw - 60px) / 3);
    grid-auto-columns: calc(100cqw / 3);
  }
  .grid--m-wide {
    grid-auto-columns: calc((100vw - 60px) / 2);
    grid-auto-columns: calc(100cqw / 2);
  }
  .grid--m-wrap {
    grid-auto-columns: calc((100vw - 60px) / 2);
    grid-auto-columns: calc(100cqw / 2);
  }
}
@container productsGlide (max-width: 640px) and (min-width: 0) {
  .grid--s-thin {
    grid-auto-columns: calc((100vw - 40px) / 2);
    grid-auto-columns: calc(100cqw / 2);
  }
  .grid--s-wide {
    grid-auto-columns: calc(100vw - 40px);
    grid-auto-columns: 100cqw;
  }
  .grid--s-wrap {
    grid-auto-columns: calc(100vw - 40px);
    grid-auto-columns: 100cqw;
  }
}
.header {
  background-color: #fff;
}
.header--admin {
  height: 110px;
}
.header__container {
  container-type: unset;
}
@media (max-width: 1429px) {
  .header__container {
    padding-left: 0;
    padding-right: 0;
  }
}
.header__content {
  display: grid;
  grid-template-columns: 275px 50px 472px 19px 1fr 19px max-content;
  grid-template-areas: "logo . search . contact . control";
  padding-top: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #ecedef;
}
@media (min-width: 1024px) and (max-width: 1429px) {
  .header__content {
    grid-template-areas: "logo . search . control";
    grid-template-columns: max-content 30px minmax(0, 472px) 30px 1fr;
    padding-right: 20px;
  }
}
@media (min-width: 640px) and (max-width: 1159px) {
  .header__content {
    grid-template-columns: 159px 25px 1fr 25px max-content max-content;
    grid-template-areas: "logo . search . control menu";
    padding: 15px 0 12px;
  }
}
@media (max-width: 639px) {
  .header__content {
    grid-template-columns: minmax(120px, 275px) 1fr max-content max-content;
    grid-template-areas: "logo . control menu";
    padding: 14px 0 7px;
  }
}
.header__logo {
  grid-area: logo;
}
@media (min-width: 640px) and (max-width: 1429px) {
  .header__logo {
    padding-left: 27px;
  }
}
@media (max-width: 639px) {
  .header__logo {
    padding-left: 20px;
  }
}
.header__search {
  grid-area: search;
}
@media (max-width: 639px) {
  .header__search {
    display: none;
  }
}
.header__search:focus-within .search__button {
  opacity: 1;
  visibility: visible;
  display: block;
}
.header__contact {
  grid-area: contact;
  padding-top: 4px;
}
.header__contact--nosearch {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 1429px) {
  .header__contact {
    display: none;
  }
}
.header__contact-opening {
  font-size: 13px;
  color: #657d92;
}
.header__control {
  grid-area: control;
  margin-left: auto;
}
.header__menu {
  display: none;
}
@media (max-width: 1159px) {
  .header__menu {
    grid-area: menu;
    display: block;
  }
}
.help {
  width: 16px;
  height: 16px;
  background-color: rgba(101, 125, 146, 0.5);
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 11px;
  line-height: 16px;
  color: #fff;
  font-weight: normal;
  cursor: pointer;
  margin-left: 5px;
}
.help:before {
  content: "i";
}
.history {
  padding-top: 51px;
  padding-bottom: 60px;
  container-type: inline-size;
}
@container (min-width: 580px) and (max-width: 1150px) {
  .history {
    padding-bottom: 50px;
  }
}
@container (max-width: 579px) {
  .history {
    padding-top: 30px;
    padding-bottom: 41px;
  }
}
.history:not(:first-child) {
  border-top: 1px solid #d4e2ef;
}
.history__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 35px;
  margin-bottom: 36px;
  font-family: "Poppins", sans-serif;
}
@container (max-width: 579px) {
  .history__title {
    font-size: 20px;
    text-align: center;
    margin-bottom: 23px;
  }
}
.history__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
@container (min-width: 580px) and (max-width: 1150px) {
  .history__items {
    grid-template-columns: repeat(2, 1fr);
  }
  .history__items .historyProduct:nth-child(n + 3) {
    display: none;
  }
}
@container (max-width: 579px) {
  .history__items {
    gap: 7px;
  }
}
.historyProduct {
  background-color: #fff;
  border-radius: 5px;
  text-decoration: none;
  display: grid;
  grid-template-columns: 70px 1fr;
  column-gap: 15px;
  padding: 20px;
  align-items: center;
}
@container (max-width: 579px) {
  .historyProduct {
    column-gap: 0;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
  }
}
.historyProduct:hover .historyProduct__name {
  color: #178aef;
}
.historyProduct__frame {
  width: 70px;
  height: 70px;
}
@container (max-width: 579px) {
  .historyProduct__frame {
    width: 55px;
    height: 55px;
  }
}
.historyProduct__image {
  vertical-align: top;
}
@container (max-width: 579px) {
  .historyProduct__image {
    max-width: 100%;
    height: auto;
  }
}
.historyProduct__name {
  transition: 0.2s ease-in color;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  max-height: 63px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@container (max-width: 579px) {
  .historyProduct__name {
    display: none;
  }
}
.hpCategoriesLarge {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px;
  margin-top: 47px;
  margin-bottom: 47px;
}
@container (max-width: 1429px) {
  .hpCategoriesLarge {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@container (max-width: 579px) {
  .hpCategoriesLarge {
    gap: 7px;
  }
}
.hpCategoriesLarge__item {
  background-color: #f7f8fa;
  border-radius: 10px;
  padding: 20px 20px 36px;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
}
@container (max-width: 579px) {
  .hpCategoriesLarge__item {
    padding: 20px 20px 25px;
  }
}
.hpCategoriesLarge__frame {
  display: block;
  text-align: center;
  aspect-ratio: 1;
  max-width: 170px;
  width: 100%;
  margin: 0 auto;
}
@container (max-width: 579px) {
  .hpCategoriesLarge__frame {
    width: 60px;
  }
}
.hpCategoriesLarge__image {
  vertical-align: top;
  mix-blend-mode: multiply;
  /* odstraneni bileho pozadi */
  max-width: 100%;
  height: auto;
}
.hpCategoriesLarge__name {
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  display: block;
  margin-top: 24px;
}
.hpCategoriesLarge__name:hover {
  text-decoration: underline;
}
.hpCategoriesLarge__subcategories {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 9px;
}
@container (max-width: 579px) {
  .hpCategoriesLarge__subcategories {
    margin-top: 4px;
    max-height: 82px;
    overflow: hidden;
  }
}
.hpCategoriesLarge__subcategory {
  color: #657d92;
  font-size: 14px;
  line-height: 30px;
  margin: 0 7px;
}
@container (max-width: 579px) {
  .hpCategoriesLarge__subcategory {
    font-size: 13px;
    line-height: 28px;
  }
}
.hpCategoriesLarge__subcategory:hover {
  color: #178aef;
}
.hpCategoriesLarge__all {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  color: #178aef;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  margin-top: 25px;
}
@container (max-width: 579px) {
  .hpCategoriesLarge__all {
    font-size: 13px;
    margin-top: 18px;
  }
}
.hpCategoriesLarge__all:hover {
  text-decoration: underline;
}
.hpCategoriesLarge__all-title {
  display: flex;
  column-gap: 10px;
  align-items: center;
}
@container (max-width: 579px) {
  .hpCategoriesLarge__all-title {
    column-gap: 7px;
  }
}
.hpCategoriesLarge__all-title:after {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #178aef;
  box-shadow: 0 2px 6px rgba(23, 138, 239, 0.35);
  border: 0;
  transition: 0.2s ease-in-out background-color, 0.3s ease-in-out box-shadow;
  background-repeat: no-repeat;
  background-image: url("https://i.binargon.cz/demoeshopmaxi/arrow_right.svg");
  background-position: center center;
  flex-shrink: 0;
}
@container (max-width: 579px) {
  .hpCategoriesLarge__all-title:after {
    width: 21px;
    height: 21px;
  }
}
.hpCategoriesSmall {
  /*
	display: flex;
  justify-content: center;
  align-items: center;
	*/
  background-color: #f7f8fa;
  padding: 14px;
  border-radius: 10px;
  margin-top: 38px;
}
.hpDescription {
  margin: 78px 0;
}
@media (max-width: 579px) {
  .hpDescription {
    font-size: 14px;
    text-align: center;
    line-height: 24px;
  }
}
.hpProducers {
  width: 100%;
  margin-bottom: 80px;
}
.hpProducers__items {
  position: relative;
}
.hpProducers__items:hover .hpProducers__arrows {
  opacity: 1;
}
.hpProducers__track {
  overflow: hidden;
}
.hpProducers__container {
  display: flex;
  margin: auto;
}
.hpProducers__item {
  display: block;
}
.hpProducers__item-image {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}
@container (min-width: 1430px) {
  .hpProducers__arrows {
    opacity: 0;
    transition: 0.3s ease-in-out opacity;
  }
}
.hpProducers__arrow {
  border: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #178aef;
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hpProducers__arrow--left {
  left: 0;
  transform: translate(-50%, -50%);
}
@container (max-width: 579px) {
  .hpProducers__arrow--left {
    left: 5px;
    transform: translate(0, -50%);
  }
}
.hpProducers__arrow--left .hpProducers__arrow-icon {
  margin-left: -2px;
}
.hpProducers__arrow--right {
  right: 0;
  transform: translate(50%, -50%);
}
@container (max-width: 579px) {
  .hpProducers__arrow--right {
    right: 5px;
    transform: translate(0, -50%);
  }
}
.hpProducers__arrow--right .hpProducers__arrow-icon {
  margin-right: -2px;
}
.infobar {
  --infobar_bg: #fff;
  background-color: var(--infobar_bg);
  overflow: hidden;
  position: relative;
  min-height: 27px;
  font-size: 12px;
}
.infobar__container {
  padding: 4px 30px;
}
@media (max-width: 1669px) {
  .infobar__container {
    padding-right: 80px;
  }
}
.infobar__close {
  width: 15px;
  height: 15px;
  background-image: url("https://i.binargon.cz/common/rgba(100,100,100,1)/close.svg");
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.infobar p:first-child {
  margin-top: 0;
}
.infobar p:last-child {
  margin-bottom: 0;
}
.infobar a {
  text-decoration: none;
}
.infobar a:hover {
  text-decoration: underline;
}
.infobar img {
  max-width: 100%;
  height: auto;
}
.language {
  width: 24px;
  height: 24px;
}
.language__icon {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  border: 2px solid #657d92;
  overflow: hidden;
}
.language__icon-container {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #fff;
  overflow: hidden;
}
.language__icon-image {
  vertical-align: top;
  width: 100%;
  height: 100%;
}
.latestNews {
  background-color: #f7f8fa;
  border-radius: 10px;
  margin-top: 31px;
  padding: 31px 30px 35px;
  margin-bottom: 40px;
  box-shadow: 0 5px 12px rgba(134, 151, 167, 0.16);
}
.latestNews__title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.latestNews__items {
  display: grid;
  row-gap: 25px;
  padding-left: 15px;
}
.latestNews__item {
  text-decoration: none;
}
.latestNews__item-name {
  font-size: 14px;
  font-weight: 600;
  color: #178aef;
  margin-bottom: 8px;
  position: relative;
  font-family: "Poppins", sans-serif;
}
.latestNews__item-name:before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  background-color: #178aef;
  left: -15px;
  vertical-align: top;
  top: 9px;
  position: absolute;
}
.latestNews__item-text {
  color: #657d92;
  font-size: 13px;
  line-height: 24px;
}
.latestNews__more {
  font-size: 14px;
  font-weight: normal;
  color: #178aef;
  display: flex;
  align-items: center;
  column-gap: 14px;
  text-decoration: none;
  margin-top: 25px;
}
.latestNews__more-plus {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background-color: #178aef;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(23, 138, 239, 0.35);
}
.latestNews__more-icon {
  vertical-align: top;
}
.latestReviewItem {
  background-color: #fff;
  border-radius: 5px;
  text-decoration: none;
  display: grid;
  grid-template-columns: 70px 1fr;
  column-gap: 15px;
  padding: 20px;
  align-items: center;
}
@container (max-width: 579px) {
  .latestReviewItem:nth-child(n + 3) {
    display: none;
  }
}
.latestReviewItem:hover .latestReviewItem__name {
  color: #178aef;
}
.latestReviewItem__frame {
  width: 70px;
  height: 70px;
}
.latestReviewItem__image {
  vertical-align: top;
}
.latestReviewItem__name {
  transition: 0.2s ease-in color;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  max-height: 63px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@container (max-width: 579px) {
  .latestReviewItem__name {
    font-size: 14px;
  }
}
.latestReviewItem__score {
  display: flex;
  align-items: baseline;
}
@container (max-width: 1429px) {
  .latestReviewItem__score {
    flex-wrap: wrap;
  }
}
.latestReviewItem__stars {
  width: 82px;
  height: 13px;
  background-image: url("https://i.binargon.cz/demoeshopmaxi/rgba(101,125,146,1)/stars.svg");
}
.latestReviewItem__stars--outer {
  position: relative;
  top: 1px;
}
.latestReviewItem__stars--inner {
  background-color: #fff;
  background-image: url("https://i.binargon.cz/demoeshopmaxi/stars.svg");
}
.latestReviewItem__percent {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin-left: 6px;
}
@container (max-width: 579px) {
  .latestReviewItem__percent {
    margin-right: 8px;
  }
}
.latestReviewItem__user {
  color: #657d92;
  font-size: 14px;
  margin-left: 8px;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .latestReviewItem__user {
    margin-left: 0;
    width: 100%;
  }
}
@container (max-width: 579px) {
  .latestReviewItem__user {
    margin-left: 0;
  }
}
.latestReviewItem__source {
  text-align: right;
  font-size: 12px;
  grid-column: 1 / span 2;
  margin-top: 5px;
  color: #657d92;
  position: relative;
  bottom: -10px;
}
.latestReviews {
  padding-top: 51px;
  padding-bottom: 60px;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .latestReviews {
    padding-bottom: 50px;
  }
}
@container (max-width: 579px) {
  .latestReviews {
    padding-top: 31px;
    padding-bottom: 30px;
  }
}
.latestReviews__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 35px;
  margin-bottom: 35px;
  display: flex;
  justify-content: space-between;
  font-family: "Poppins", sans-serif;
}
@container (max-width: 579px) {
  .latestReviews__title {
    font-size: 20px;
    text-align: center;
    justify-content: center;
  }
}
@container (max-width: 579px) {
  .latestReviews__title {
    margin-bottom: 24px;
  }
}
.latestReviews__more {
  font-size: 14px;
  font-weight: normal;
  color: #178aef;
  display: flex;
  align-items: center;
  column-gap: 14px;
  text-decoration: none;
}
@container (max-width: 579px) {
  .latestReviews__more--title {
    display: none;
  }
}
.latestReviews__more--bottom {
  display: none;
}
@container (max-width: 579px) {
  .latestReviews__more--bottom {
    display: flex;
    margin: 0 auto;
    max-width: max-content;
    margin-top: 30px;
  }
}
.latestReviews__more-plus {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background-color: #178aef;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(23, 138, 239, 0.35);
}
.latestReviews__more-icon {
  vertical-align: top;
}
.latestReviews__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .latestReviews__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@container (max-width: 579px) {
  .latestReviews__items {
    grid-template-columns: 1fr;
  }
}
.logo {
  text-decoration: none;
  height: 100%;
  display: flex;
}
.logo--default-true {
  display: grid;
  grid-template-columns: 29px 1fr;
  column-gap: 10px;
  align-items: center;
  margin-top: -4px;
}
@media (min-width: 640px) and (max-width: 1429px) {
  .logo--default-true.logo--header {
    grid-template-columns: 37px 1fr;
  }
}
@media (min-width: 640px) and (max-width: 1429px) {
  .logo--default-true.logo--header .logo__image {
    width: 37px;
    height: 37px;
  }
}
@media (max-width: 579px) {
  .logo--default-true.logo--header .logo__image {
    width: 31px;
    height: 31px;
  }
}
@media (min-width: 640px) and (max-width: 1429px) {
  .logo--default-true.logo--header .logo__text {
    font-size: 16px;
    line-height: 18px;
  }
}
@media (max-width: 579px) {
  .logo--default-true.logo--header .logo__text {
    font-size: 16px;
    line-height: 17px;
  }
}
@media (min-width: 640px) and (max-width: 1429px) {
  .logo--default-true.logo--footer .logo__image {
    width: 29px;
    height: 29px;
  }
}
.logo--header .logo__image {
  max-height: 54px;
}
@media (max-width: 579px) {
  .logo--footer .logo__image {
    margin: 10px auto;
  }
}
.logo__image {
  vertical-align: top;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.logo__text {
  font-weight: 600;
  font-size: 24px;
  color: #178aef;
}
.mainImage {
  position: relative;
}
@container (max-width: 1429px) {
  .mainImage {
    position: absolute;
    aspect-ratio: var(--image-aspect-ratio);
    pointer-events: none;
    z-index: 100;
  }
}
@container (min-width: 580px) and (max-width: 1429px) {
  .mainImage {
    margin-top: 25px;
    width: calc(100vw - 60px);
    height: calc(100vw - 249px);
  }
}
@container (max-width: 579px) {
  .mainImage {
    margin-top: 17px;
    width: calc(100vw - 40px);
    height: calc(100vw - 40px);
  }
}
.mainImage__link {
  text-decoration: none;
}
.mainImage__labels-left {
  position: absolute;
  left: 10px;
  top: 10px;
  max-width: 50%;
}
@container (max-width: 1429px) {
  .mainImage__labels-left {
    top: initial;
    left: 0;
  }
}
@container (min-width: 580px) and (max-width: 1429px) {
  .mainImage__labels-left {
    bottom: -32px;
  }
}
@container (max-width: 579px) {
  .mainImage__labels-left {
    top: 20px;
  }
}
.mainImage__labels-right {
  position: absolute;
  right: 10px;
  top: 10px;
  max-width: 50%;
  display: grid;
  row-gap: 4px;
}
@container (max-width: 1429px) {
  .mainImage__labels-right {
    top: initial;
    right: 0;
  }
}
@container (min-width: 580px) and (max-width: 1429px) {
  .mainImage__labels-right {
    bottom: -32px;
  }
}
@container (max-width: 579px) {
  .mainImage__labels-right {
    top: 20px;
  }
}
.mainImage__image {
  vertical-align: top;
}
@container (max-width: 1429px) {
  .mainImage__image {
    display: none;
  }
}
.menu {
  height: 70px;
  position: relative;
  z-index: 100;
  background-color: #fff;
}
.menu--fce-2 .menu__content {
  border: 0;
}
.menu--small .menu__container {
  padding: 0 35px;
}
.menu--small .menu__content {
  column-gap: 10px;
}
.menu--small .menu__link {
  padding: 0 15px;
  font-size: 12px;
  width: min-content;
  text-align: center;
}
@media (max-width: 1159px) {
  .menu {
    display: none;
  }
}
.menu__container, .menu__content, .menu__item, .menu__link {
  height: 100%;
}
.menu__container {
  container-name: menu;
}
.menu__content {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  justify-content: space-between;
  position: relative;
  column-gap: 30px;
  height: calc(100% + 2px);
  top: -1px;
  bottom: -1px;
  padding: 1px 0;
}
.menu__item--hidden {
  display: none;
}
.menu__item--covered {
  pointer-events: none;
  /*visibility: hidden;*/
  display: none;
}
.menu__link {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 30px;
  border-inline: 1px solid transparent;
  height: 100%;
  display: flex;
  align-items: center;
  column-gap: 15px;
}
.menu__link--active {
  color: #178aef;
  position: relative;
  border-color: #8697a7;
}
.menu__link--active:before, .menu__link--active:after {
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1001;
}
.menu__link--active:before {
  top: -1px;
  background-color: #8697a7;
}
.menu__link--active:after {
  bottom: -1px;
  background-color: #fff;
}
.menu__link:hover {
  color: #178aef;
}
.menu__dropdown {
  display: none;
  position: absolute;
  top: 1px;
  right: 0;
  bottom: 1px;
  background-color: #fff;
  align-items: center;
  display: flex;
}
.menu__dropdown--active {
  color: #178aef;
  border-color: #8697a7;
}
.menu__dropdown--active .menu__link {
  color: #178aef;
  position: relative;
  border-color: #8697a7;
}
.menu__dropdown--active .menu__link:before, .menu__dropdown--active .menu__link:after {
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1001;
}
.menu__dropdown--active .menu__link:before {
  top: -1px;
  background-color: #8697a7;
}
.menu__dropdown--active .menu__link:after {
  bottom: -1px;
  background-color: #fff;
}
.menu__submenu {
  position: relative;
  top: -2px;
}
.menu__submenu-overflow {
  display: none;
  background-color: #fff;
  border: 1px solid #8697a7;
  border-bottom-left-radius: 9px;
  border-bottom-right-radius: 9px;
  overflow: hidden;
  padding: 50px 50px;
  position: absolute;
  width: 100%;
}
.menu__submenu-overflow--active {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
.cmsBody .menu__container:after {
  content: "";
  display: block;
  height: 1px;
  background: #ecedef;
  max-width: 1480px;
  margin: auto;
}
@media (max-width: 1479px) {
  .cmsBody .menu__container:after {
    margin-left: -20px;
    margin-right: -20px;
  }
}
.moreFilters {
  margin-bottom: 40px;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .moreFilters {
    display: none;
  }
}
@container (max-width: 579px) {
  .moreFilters {
    display: none;
  }
}
.moreFilters__content {
  border: 1px solid #8697a7;
  border-radius: 10px;
  box-shadow: 0 5px 12px rgba(134, 151, 167, 0.16);
  padding: 30px;
  padding-top: 10px;
}
.moreFilters__content--hidden {
  border-bottom-left-radius: 0;
}
.moreFilters__show-more {
  background-color: rgba(23, 138, 239, 0.1);
  color: #178aef;
  border: 1px solid #8697a7;
  border-top: 0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  width: max-content;
  padding: 12px 29px;
  font-weight: 600;
  text-transform: uppercase;
  height: 51px;
  font-size: 14px;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  column-gap: 5px;
  box-shadow: 0 5px 12px rgba(134, 151, 167, 0.16);
}
.moreFilters__show-more:before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background-color: #fff;
  position: absolute;
  top: -1px;
  left: 0;
}
.moreFilters__show-more--standalone {
  border: 0;
  border-radius: 10px;
}
.moreFilters__show-more--standalone:before {
  display: none;
}
.moreFilters__show-more-visible {
  display: none;
}
.moreFilters__show-more.visible .moreFilters__show-more-visible {
  display: block;
}
.moreFilters__show-more.visible .moreFilters__show-more-hidden {
  display: none;
}
.moreFilters .filterValues {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.moreFilters .commonFilterParametru_main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 24px;
}
.moreFilters .filterParam_checkbox-multiple {
  grid-column: 1 / -1;
}
.newsletter {
  display: flex;
  column-gap: 29px;
  align-items: center;
  width: 100%;
}
@container (max-width: 579px) {
  .newsletter {
    display: grid;
  }
}
@container (max-width: 579px) {
  .newsletter {
    padding-top: 34px;
  }
}
.newsletter__title {
  display: flex;
  column-gap: 13px;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .newsletter__title {
    white-space: normal;
    min-width: 210px;
    line-height: 26px;
  }
}
@container (max-width: 579px) {
  .newsletter__title {
    margin-bottom: 24px;
    white-space: normal;
  }
}
.newsletter__percent {
  background-color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #178aef;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  flex-shrink: 0;
}
.newsletter__form {
  background-color: #fff;
  border-radius: 6px;
  padding: 10px;
  height: 65px;
  width: 100%;
  max-width: 400px;
  display: flex;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .newsletter__form {
    min-width: 281px;
  }
}
.newsletter__input {
  font-size: 16px;
  border: 0;
  height: 100%;
  width: 100%;
  padding: 0 10px;
  outline: 0;
}
.newsletter__input::-webkit-input-placeholder {
  color: #657d92;
}
.newsletter__input:-moz-placeholder {
  color: #657d92;
}
.newsletter__input::-moz-placeholder {
  color: #657d92;
}
.newsletter__input:-ms-input-placeholder {
  color: #657d92;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .newsletter__button {
    font-size: 0;
  }
  .newsletter__button:before {
    content: attr(data-mobile);
    font-size: 14px;
  }
}
.pageControl, .commonEshopReviews__pages, .commonProductsReviews__pages, .commonTextNews__paging {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 60px;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .pageControl, .commonEshopReviews__pages, .commonProductsReviews__pages, .commonTextNews__paging {
    margin-bottom: 45px;
  }
}
@container (max-width: 579px) {
  .pageControl, .commonEshopReviews__pages, .commonProductsReviews__pages, .commonTextNews__paging {
    margin-top: 25px;
    margin-bottom: 35px;
  }
}
.pageControl .listcontrol, .commonEshopReviews__pages .listcontrol, .commonProductsReviews__pages .listcontrol, .commonTextNews__paging .listcontrol {
  display: flex;
  align-items: center;
}
@container (max-width: 579px) {
  .pageControl .listcontrol, .commonEshopReviews__pages .listcontrol, .commonProductsReviews__pages .listcontrol, .commonTextNews__paging .listcontrol {
    width: 100%;
    display: grid;
    grid-template-areas: "pages pages" "previous next";
    row-gap: 20px;
  }
}
.pageControl .previous, .commonEshopReviews__pages .previous, .commonProductsReviews__pages .previous, .commonTextNews__paging .previous, .pageControl .next, .commonEshopReviews__pages .next, .commonProductsReviews__pages .next, .commonTextNews__paging .next {
  text-decoration: none;
  color: #178aef;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  column-gap: 10px;
}
.pageControl .previous, .commonEshopReviews__pages .previous, .commonProductsReviews__pages .previous, .commonTextNews__paging .previous {
  margin-right: 28px;
}
@container (max-width: 579px) {
  .pageControl .previous, .commonEshopReviews__pages .previous, .commonProductsReviews__pages .previous, .commonTextNews__paging .previous {
    grid-area: previous;
    margin-right: auto;
  }
}
.pageControl .previous:before, .commonEshopReviews__pages .previous:before, .commonProductsReviews__pages .previous:before, .commonTextNews__paging .previous:before {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #178aef;
  box-shadow: 0 2px 6px rgba(23, 138, 239, 0.35);
  transition: 0.2s ease-in-out background-color, 0.3s ease-in-out box-shadow;
  background-repeat: no-repeat;
  background-image: url("https://i.binargon.cz/demoeshopmaxi/arrow_left.svg");
  background-position: calc(50% - 1px) center;
}
.pageControl .previous:before:hover, .commonEshopReviews__pages .previous:before:hover, .commonProductsReviews__pages .previous:before:hover, .commonTextNews__paging .previous:before:hover {
  background-color: #1a1a1a;
  box-shadow: 0 2px 6px rgba(26, 26, 26, 0.35);
}
.pageControl .next, .commonEshopReviews__pages .next, .commonProductsReviews__pages .next, .commonTextNews__paging .next {
  margin-left: 28px;
}
@container (max-width: 579px) {
  .pageControl .next, .commonEshopReviews__pages .next, .commonProductsReviews__pages .next, .commonTextNews__paging .next {
    grid-area: next;
    margin-left: auto;
  }
}
.pageControl .next:after, .commonEshopReviews__pages .next:after, .commonProductsReviews__pages .next:after, .commonTextNews__paging .next:after {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #178aef;
  box-shadow: 0 2px 6px rgba(23, 138, 239, 0.35);
  transition: 0.2s ease-in-out background-color, 0.3s ease-in-out box-shadow;
  background-repeat: no-repeat;
  background-image: url("https://i.binargon.cz/demoeshopmaxi/arrow_right.svg");
  background-position: center center;
}
.pageControl .next:after:hover, .commonEshopReviews__pages .next:after:hover, .commonProductsReviews__pages .next:after:hover, .commonTextNews__paging .next:after:hover {
  background-color: #1a1a1a;
  box-shadow: 0 2px 6px rgba(26, 26, 26, 0.35);
}
.pageControl .first, .commonEshopReviews__pages .first, .commonProductsReviews__pages .first, .commonTextNews__paging .first, .pageControl .last, .commonEshopReviews__pages .last, .commonProductsReviews__pages .last, .commonTextNews__paging .last {
  display: none;
}
.pageControl .dots, .commonEshopReviews__pages .dots, .commonProductsReviews__pages .dots, .commonTextNews__paging .dots {
  font-size: 16px;
  line-height: 28px;
  color: #1a1a1a;
  display: inline-flex;
  align-items: center;
}
.pageControl .pages, .commonEshopReviews__pages .pages, .commonProductsReviews__pages .pages, .commonTextNews__paging .pages {
  display: flex;
  column-gap: 5px;
}
@container (max-width: 579px) {
  .pageControl .pages, .commonEshopReviews__pages .pages, .commonProductsReviews__pages .pages, .commonTextNews__paging .pages {
    grid-area: pages;
    margin: 0 auto;
  }
}
.pageControl__number, .pageControl .number, .commonEshopReviews__pages .number, .commonProductsReviews__pages .number, .commonTextNews__paging .number {
  color: #178aef;
  font-size: 16px;
  border-radius: 3px;
  text-decoration: none;
  height: 45px;
  min-width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  background-color: rgba(23, 138, 239, 0.1);
}
.pageControl__number--selected, .pageControl__number.selected, .pageControl .number--selected, .commonEshopReviews__pages .number--selected, .commonProductsReviews__pages .number--selected, .commonTextNews__paging .number--selected, .pageControl .number.selected, .commonEshopReviews__pages .number.selected, .commonProductsReviews__pages .number.selected, .commonTextNews__paging .number.selected {
  background-color: transparent;
  color: #1a1a1a;
}
.parameterBlock__values {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@container (max-width: 579px) {
  .parameterBlock__values {
    gap: 12px;
  }
}
.parameterBlock__name {
  font-size: 16px;
  margin-bottom: 27px;
  display: flex;
  align-items: center;
}
@container (max-width: 579px) {
  .parameterBlock__name {
    font-size: 14px;
    margin-bottom: 19px;
  }
}
.parameterBlock__value {
  height: 39px;
}
.parameterBlock__radio {
  display: none;
}
.parameterBlock__radio:checked + label {
  border-color: #178aef;
  box-shadow: 0 0 7px rgba(23, 138, 239, 0.5);
}
.parameterBlock__label {
  min-width: 35px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: 5px;
  font-size: 16px;
  border-style: solid;
  border-width: 2px;
  border-color: #b6c8d8;
  border-radius: 5px;
  cursor: pointer;
}
.parameterBlock__label:hover {
  border-color: #178aef;
  box-shadow: 0 0 7px rgba(23, 138, 239, 0.5);
}
.parameterImage__title {
  margin-bottom: 27px;
}
.parameterImage__items {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.parameterImage__item {
  width: 94px;
  height: 94px;
  border-radius: 6px;
  border: 1px solid #b6c8d8;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: center;
  position: relative;
  padding: 13px 6px 6px;
  row-gap: 5px;
}
.parameterImage__radio {
  display: none;
}
.parameterImage__radio:checked + .parameterImage__selected {
  position: absolute;
  inset: -1px;
  border: 2px solid #178aef;
  border-radius: 6px;
  box-shadow: 0 0 7px rgba(23, 138, 239, 0.5);
}
.parameterImage__radio:checked + .parameterImage__selected + .parameterImage__name {
  color: #178aef;
}
.parameterImage__image {
  width: 45px;
  aspect-ratio: var(--image-aspect-ratio);
}
.parameterImage__image--empty {
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
}
.parameterImage__image--empty:after {
  content: "⊗";
  color: #999;
}
.parameterImage__name {
  font-size: 12px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  width: 100%;
  text-align: center;
}
.parameterSelect {
  grid-column: 1 / span 2;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 15px;
}
.parameterSelect__label {
  width: 150px;
  display: flex;
  align-items: center;
}
.parameterSelect__value {
  flex: 1;
}
.parameterSelect__select {
  width: 100%;
}
.parametersImages {
  grid-column: 1 / span 2;
}
.parametersImages__title {
  margin-bottom: 27px;
}
.parametersImages__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.parametersImages__label {
  position: relative;
  cursor: pointer;
  border-radius: 6px;
  border: 1px solid #b6c8d8;
  text-align: center;
  padding: 9px;
  padding-top: 13px;
}
.parametersImages__radio {
  display: none;
}
.parametersImages__radio:checked + .parametersImages__selected {
  position: absolute;
  inset: -1px;
  border: 2px solid #178aef;
  border-radius: 6px;
  box-shadow: 0 0 7px rgba(23, 138, 239, 0.5);
}
.parametersImages__radio:checked + .parametersImages__selected + .parametersImages__name {
  color: #178aef;
}
.parametersImages__name {
  font-size: 12px;
  font-weight: 600;
}
.parametersLayout {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  column-gap: 30px;
  margin-bottom: 39px;
}
.parametersList {
  grid-column: 1 / span 2;
  container: paramlist / inline-size;
  width: 100%;
}
.parametersList__title {
  margin-bottom: 27px;
}
.parametersList__items {
  display: grid;
  background-color: #fff;
  border: 1px solid #b6c8d8;
  border-radius: 6px;
}
.parametersList__label {
  min-height: 65px;
  display: grid;
  grid-template-areas: "radio name availability";
  grid-template-columns: 25px 1fr 205px;
  column-gap: 20px;
  align-items: center;
  position: relative;
  padding: 15px 20px;
  cursor: pointer;
  font-size: 14px;
  border-bottom: 1px solid #b6c8d8;
}
@container (max-width: 484px) {
  .parametersList__label {
    grid-template-columns: 25px 1fr max-content;
  }
}
@container (max-width: 319px) {
  .parametersList__label {
    grid-template-columns: 25px 1fr;
    grid-template-areas: "radio name" ". availability";
  }
}
.parametersList__label:first-child .parametersList__selected {
  border-radius: 0;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.parametersList__label:last-child {
  border: 0;
}
.parametersList__label:last-child .parametersList__selected {
  border-radius: 0;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
.parametersList__radio {
  grid-area: radio;
}
.parametersList__radio:checked {
  border-color: #178aef;
}
.parametersList__radio:checked + .parametersList__selected {
  display: block;
  position: absolute;
  inset: -1px;
  border: 2px solid #178aef;
  box-shadow: 0 0 7px rgba(23, 138, 239, 0.5);
}
.parametersList__radio:checked + .parametersList__selected + .parametersList__name {
  color: #178aef;
}
.parametersList__selected {
  display: none;
}
.parametersList__name {
  grid-area: name;
  font-size: 16px;
  font-weight: 600;
}
.parametersList__availability {
  grid-area: availability;
  font-size: 14px;
}
.partners {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  padding: 20px 15px;
  align-items: center;
}
.partners__item {
  margin: 5px 20px;
}
.partners__item--clickable {
  cursor: pointer;
}
.phone {
  text-decoration: none;
  color: #34b262;
  font-size: 16px;
  font-weight: 600;
}
.phone--newsletter {
  color: #fff;
  font-size: 20px;
}
@container (min-width: 640px) and (max-width: 1429px) {
  .phone--newsletter {
    font-size: 18px;
  }
}
.product {
  border-right: 1px solid #ecedef;
  border-bottom: 1px solid #ecedef;
  container: product / inline-size;
  max-width: 100%;
}
.product__container {
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 35px 54px 54px;
  display: grid;
}
.product__top {
  grid-area: image;
  position: relative;
}
.product__link {
  text-decoration: none;
  color: inherit;
}
.product__labels-left {
  position: absolute;
  left: 0;
  top: 1px;
  max-width: 50%;
}
.product__labels-right {
  position: absolute;
  right: 0;
  max-width: 50%;
  display: grid;
  row-gap: 4px;
}
.product__image {
  display: block;
  margin: 0 auto;
  width: 100%;
}
@container grid (min-width: 1300px) and (max-width: 1520px) {
  @container grid (min-width: 1300px) and (max-width: 1520px) {
    .product--xl-thin:has(.productFavorites.hide-xl) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "compare compare" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 1024px) and (max-width: 1300px) {
    .product--xl-thin:has(.productFavorites.hide-l) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "compare compare" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 640px) and (max-width: 1024px) {
    .product--xl-thin:has(.productFavorites.hide-m) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "compare compare" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 0) and (max-width: 639px) {
    .product--xl-thin:has(.productFavorites.hide-s) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "compare compare" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 1300px) and (max-width: 1520px) {
    .product--xl-thin:has(.productCompare.hide-xl) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "favorites favorites" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 1024px) and (max-width: 1300px) {
    .product--xl-thin:has(.productCompare.hide-l) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "favorites favorites" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 640px) and (max-width: 1024px) {
    .product--xl-thin:has(.productCompare.hide-m) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "favorites favorites" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 0) and (max-width: 639px) {
    .product--xl-thin:has(.productCompare.hide-s) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "favorites favorites" "description description" "parameters parameters";
    }
  }
  .product--xl-thin .product__container {
    padding: 20px;
    grid-template-areas: "image image" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "favorites compare" "description description" "parameters parameters";
    grid-auto-rows: max-content auto;
  }
  @container (max-width: 200px) {
    .product--xl-thin .product__container {
      grid-auto-rows: max-content auto;
    }
    .product--xl-thin .productFreeShipping {
      width: 32px;
      height: 32px;
      padding-top: 8px;
    }
    .product--xl-thin .productFreeShipping__icon {
      width: 16px;
      height: 8px;
    }
    .product--xl-thin .productFreeShipping__title {
      font-size: 7px;
    }
    .product--xl-thin .productStickers {
      row-gap: 2px;
    }
    .product--xl-thin .productStickers__item {
      font-size: 8px;
      padding: 2px 5px;
    }
    .product--xl-thin .commonEnergyLabel__image {
      width: 30px;
      height: auto;
    }
    .product--xl-thin .product__link {
      padding: 0px 6px;
    }
  }
  .product--xl-thin .productGallery, .product--xl-thin .productParameters {
    display: none;
  }
  .product--xl-thin .productProducer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
  }
  @container (max-width: 200px) {
    .product--xl-thin .productProducer {
      margin-top: 14px;
      height: 20px;
    }
  }
  .product--xl-thin .productProducer__image {
    max-width: 100%;
    height: auto;
    max-height: 100%;
    width: auto;
  }
  .product--xl-thin .productName {
    margin-top: 9px;
    font-size: 16px;
    line-height: 20px;
    height: 40px;
    -webkit-line-clamp: 2;
  }
  @container (max-width: 200px) {
    .product--xl-thin .productName {
      margin-top: 12px;
      font-size: 14px;
    }
  }
  .product--xl-thin .productCode {
    margin-top: 9px;
    font-size: 12px;
  }
  @container (max-width: 200px) {
    .product--xl-thin .productCode {
      margin-top: 8px;
      overflow: hidden;
    }
  }
  .product--xl-thin .productReviews, .product--xl-thin .productBenefits {
    height: 21px;
    overflow: hidden;
    margin-top: 16px;
  }
  @container (max-width: 200px) {
    .product--xl-thin .productReviews, .product--xl-thin .productBenefits {
      margin-top: 8px;
      font-size: 12px;
    }
  }
  .product--xl-thin .productBenefits {
    height: 26px;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
  }
  .product--xl-thin .productBenefits__item {
    height: 26px;
    padding: 0 8px;
    font-size: 12px;
  }
  .product--xl-thin .productBenefits__item-title {
    font-size: 12px;
  }
  @container (max-width: 200px) {
    .product--xl-thin .productReviews .stars {
      width: 80px;
      height: 12px;
    }
    .product--xl-thin .productReviews .productReviews__text {
      font-size: 12px;
    }
  }
  .product--xl-thin .productPrice {
    margin-top: 13px;
  }
  @container (max-width: 200px) {
    .product--xl-thin .productPrice {
      flex-wrap: wrap;
      margin-top: 8px;
      overflow: hidden;
    }
    .product--xl-thin .productPrice .productPrice__current .cPrice {
      font-size: 16px;
    }
    .product--xl-thin .productPrice .productPrice__before .cPrice {
      font-size: 12px;
    }
  }
  .product--xl-thin .productAvailability {
    margin-top: 3px;
  }
  @container (max-width: 200px) {
    .product--xl-thin .productAvailability {
      font-size: 12px;
      line-height: 15px;
      margin-top: 1px;
    }
  }
  @container (max-width: 200px) {
    .product--xl-thin .productVariants .commonVariants__params {
      gap: 7px;
    }
    .product--xl-thin .productVariants .commonVariants__param {
      gap: 3px;
    }
    .product--xl-thin .productVariants .commonVariants__value {
      font-size: 12px;
      padding: 3px 5px;
    }
  }
  @container product (max-width: 250px) {
    .product--xl-thin .productFavorites {
      margin-left: auto;
    }
  }
  @container product (max-width: 200px) {
    .product--xl-thin .productFavorites {
      margin-top: 22px;
    }
  }
  .product--xl-thin .productFavorites__title {
    display: flex;
  }
  @container product (max-width: 250px) {
    .product--xl-thin .productFavorites__title {
      display: none;
    }
  }
  @container product (max-width: 250px) {
    .product--xl-thin .productCompare {
      margin-right: auto;
    }
  }
  @container product (max-width: 200px) {
    .product--xl-thin .productCompare {
      margin-top: 22px;
    }
  }
  @container product (max-width: 250px) {
    .product--xl-thin .productCompare__title {
      display: none;
    }
  }
  @container product (max-width: 250px) {
    .product--xl-thin .productDescription {
      font-size: 12px;
      line-height: 18px;
      max-height: 54px;
      margin-top: 20px;
    }
  }
  @container grid (min-width: 1300px) and (max-width: 1520px) {
    .product--xl-wide:has(.productFavorites.hide-xl) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "compare compare" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 1024px) and (max-width: 1300px) {
    .product--xl-wide:has(.productFavorites.hide-l) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "compare compare" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 640px) and (max-width: 1024px) {
    .product--xl-wide:has(.productFavorites.hide-m) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "compare compare" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 0) and (max-width: 639px) {
    .product--xl-wide:has(.productFavorites.hide-s) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "compare compare" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 1300px) and (max-width: 1520px) {
    .product--xl-wide:has(.productCompare.hide-xl) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "favorites favorites" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 1024px) and (max-width: 1300px) {
    .product--xl-wide:has(.productCompare.hide-l) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "favorites favorites" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 640px) and (max-width: 1024px) {
    .product--xl-wide:has(.productCompare.hide-m) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "favorites favorites" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 0) and (max-width: 639px) {
    .product--xl-wide:has(.productCompare.hide-s) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "favorites favorites" "description description" "parameters parameters";
    }
  }
  .product--xl-wide .product__container {
    grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "favorites compare" "description description" "parameters parameters";
  }
  .product--xl-wide .productProducer {
    display: flex;
    justify-content: center;
    margin-top: 21px;
  }
  .product--xl-wide .productGallery {
    position: absolute;
    height: 39px;
    bottom: 10px;
  }
  .product--xl-wrap .product__container {
    grid-template-areas: "image image producer benefits" "image image name name" "image image code code" "image image codeSupplier codeSupplier" "image image ean ean" "image image price price" "image image reference reference" "image image availability availability" "variants variants variants variants" ". . . ." "purchase purchase purchase purchase" "favorites favorites compare compare" "description description description description" "parameters parameters parameters parameters";
    padding: 20px;
    padding-bottom: 30px;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(8, auto) 22px repeat(3, auto) 1fr;
  }
  .product--xl-wrap .product__link {
    padding-right: 20px;
    display: block;
  }
  .product--xl-wrap .productGallery, .product--xl-wrap .productDiscount, .product--xl-wrap .fce6Discount, .product--xl-wrap .productFreeShipping {
    display: none;
  }
  .product--xl-wrap .productStickers__item {
    height: 17px;
    font-size: 10px;
    padding: 1px 6px;
  }
  .product--xl-wrap .productProducer__image {
    height: 17px;
    width: auto;
  }
  .product--xl-wrap .productBenefits {
    margin-top: 10px;
  }
  .product--xl-wrap .productBenefits__item {
    height: 26px;
    font-size: 12px;
    padding: 0 8px;
  }
  .product--xl-wrap .productBenefits__item-title--1 {
    display: none;
  }
  .product--xl-wrap .productReviews {
    justify-content: end;
    align-items: center;
  }
  .product--xl-wrap .productReviews .stars {
    width: 58px;
    height: 9px;
  }
  .product--xl-wrap .productReviews__text {
    display: none;
  }
  .product--xl-wrap .productName {
    margin-top: 0;
    font-size: 14px;
    line-height: 20px;
    text-align: left;
    -webkit-line-clamp: 2;
    height: 40px;
    margin-top: 3px;
  }
  .product--xl-wrap .productCode {
    font-size: 12px;
    text-align: left;
    margin-top: 8px;
  }
  .product--xl-wrap .productPrice {
    justify-content: flex-start;
    margin-top: 13px;
  }
  .product--xl-wrap .productPrice__current {
    font-size: 16px;
  }
  .product--xl-wrap .productPrice__before {
    font-size: 12px;
  }
  .product--xl-wrap .productReferenceUnit .cMernaJednotka--vypis {
    text-align: left;
  }
  .product--xl-wrap .productAvailability {
    font-size: 12px;
    line-height: 18px;
    text-align: left;
  }
  .product--xl-wrap .commonVariants__params {
    gap: 6px;
    margin-top: 10px;
  }
  .product--xl-wrap .commonVariants__param {
    gap: 6px;
  }
  .product--xl-wrap .commonVariants__value {
    line-height: 18px;
    padding: 0 5px;
    font-size: 12px;
  }
  .product--xl-wrap .commonVariants__value--inStock {
    position: relative;
  }
  .product--xl-wrap .commonVariants__value--inStock:after {
    position: absolute;
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    right: -5px;
    top: -5px;
    background-size: contain;
  }
  .product--xl-wrap .productFavorites {
    justify-content: center;
    width: 100%;
    margin-top: 10px;
  }
  .product--xl-wrap .productFavorites__title {
    display: flex;
  }
  .product--xl-wrap .productCompare {
    justify-content: center;
    width: 100%;
    margin-top: 10px;
  }
  .product--xl-wrap .productDescription {
    line-height: 24px;
    margin-top: 18px;
  }
  .product--xl-wrap .productParameters {
    margin-top: 18px;
  }
  .product--xl-wrap .productParameters .cProductParams {
    gap: 6px;
  }
  .product--xl-wrap .productParameters .cProductParams__item {
    font-size: 12px;
    padding: 3px 6px;
  }
  .hide-xl {
    display: none !important;
  }
}
@container grid (min-width: 1024px) and (max-width: 1300px) {
  @container grid (min-width: 1300px) and (max-width: 1520px) {
    .product--l-thin:has(.productFavorites.hide-xl) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "compare compare" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 1024px) and (max-width: 1300px) {
    .product--l-thin:has(.productFavorites.hide-l) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "compare compare" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 640px) and (max-width: 1024px) {
    .product--l-thin:has(.productFavorites.hide-m) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "compare compare" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 0) and (max-width: 639px) {
    .product--l-thin:has(.productFavorites.hide-s) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "compare compare" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 1300px) and (max-width: 1520px) {
    .product--l-thin:has(.productCompare.hide-xl) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "favorites favorites" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 1024px) and (max-width: 1300px) {
    .product--l-thin:has(.productCompare.hide-l) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "favorites favorites" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 640px) and (max-width: 1024px) {
    .product--l-thin:has(.productCompare.hide-m) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "favorites favorites" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 0) and (max-width: 639px) {
    .product--l-thin:has(.productCompare.hide-s) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "favorites favorites" "description description" "parameters parameters";
    }
  }
  .product--l-thin .product__container {
    padding: 20px;
    grid-template-areas: "image image" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "favorites compare" "description description" "parameters parameters";
    grid-auto-rows: max-content auto;
  }
  @container (max-width: 200px) {
    .product--l-thin .product__container {
      grid-auto-rows: max-content auto;
    }
    .product--l-thin .productFreeShipping {
      width: 32px;
      height: 32px;
      padding-top: 8px;
    }
    .product--l-thin .productFreeShipping__icon {
      width: 16px;
      height: 8px;
    }
    .product--l-thin .productFreeShipping__title {
      font-size: 7px;
    }
    .product--l-thin .productStickers {
      row-gap: 2px;
    }
    .product--l-thin .productStickers__item {
      font-size: 8px;
      padding: 2px 5px;
    }
    .product--l-thin .commonEnergyLabel__image {
      width: 30px;
      height: auto;
    }
    .product--l-thin .product__link {
      padding: 0px 6px;
    }
  }
  .product--l-thin .productGallery, .product--l-thin .productParameters {
    display: none;
  }
  .product--l-thin .productProducer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
  }
  @container (max-width: 200px) {
    .product--l-thin .productProducer {
      margin-top: 14px;
      height: 20px;
    }
  }
  .product--l-thin .productProducer__image {
    max-width: 100%;
    height: auto;
    max-height: 100%;
    width: auto;
  }
  .product--l-thin .productName {
    margin-top: 9px;
    font-size: 16px;
    line-height: 20px;
    height: 40px;
    -webkit-line-clamp: 2;
  }
  @container (max-width: 200px) {
    .product--l-thin .productName {
      margin-top: 12px;
      font-size: 14px;
    }
  }
  .product--l-thin .productCode {
    margin-top: 9px;
    font-size: 12px;
  }
  @container (max-width: 200px) {
    .product--l-thin .productCode {
      margin-top: 8px;
      overflow: hidden;
    }
  }
  .product--l-thin .productReviews, .product--l-thin .productBenefits {
    height: 21px;
    overflow: hidden;
    margin-top: 16px;
  }
  @container (max-width: 200px) {
    .product--l-thin .productReviews, .product--l-thin .productBenefits {
      margin-top: 8px;
      font-size: 12px;
    }
  }
  .product--l-thin .productBenefits {
    height: 26px;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
  }
  .product--l-thin .productBenefits__item {
    height: 26px;
    padding: 0 8px;
    font-size: 12px;
  }
  .product--l-thin .productBenefits__item-title {
    font-size: 12px;
  }
  @container (max-width: 200px) {
    .product--l-thin .productReviews .stars {
      width: 80px;
      height: 12px;
    }
    .product--l-thin .productReviews .productReviews__text {
      font-size: 12px;
    }
  }
  .product--l-thin .productPrice {
    margin-top: 13px;
  }
  @container (max-width: 200px) {
    .product--l-thin .productPrice {
      flex-wrap: wrap;
      margin-top: 8px;
      overflow: hidden;
    }
    .product--l-thin .productPrice .productPrice__current .cPrice {
      font-size: 16px;
    }
    .product--l-thin .productPrice .productPrice__before .cPrice {
      font-size: 12px;
    }
  }
  .product--l-thin .productAvailability {
    margin-top: 3px;
  }
  @container (max-width: 200px) {
    .product--l-thin .productAvailability {
      font-size: 12px;
      line-height: 15px;
      margin-top: 1px;
    }
  }
  @container (max-width: 200px) {
    .product--l-thin .productVariants .commonVariants__params {
      gap: 7px;
    }
    .product--l-thin .productVariants .commonVariants__param {
      gap: 3px;
    }
    .product--l-thin .productVariants .commonVariants__value {
      font-size: 12px;
      padding: 3px 5px;
    }
  }
  @container product (max-width: 250px) {
    .product--l-thin .productFavorites {
      margin-left: auto;
    }
  }
  @container product (max-width: 200px) {
    .product--l-thin .productFavorites {
      margin-top: 22px;
    }
  }
  .product--l-thin .productFavorites__title {
    display: flex;
  }
  @container product (max-width: 250px) {
    .product--l-thin .productFavorites__title {
      display: none;
    }
  }
  @container product (max-width: 250px) {
    .product--l-thin .productCompare {
      margin-right: auto;
    }
  }
  @container product (max-width: 200px) {
    .product--l-thin .productCompare {
      margin-top: 22px;
    }
  }
  @container product (max-width: 250px) {
    .product--l-thin .productCompare__title {
      display: none;
    }
  }
  @container product (max-width: 250px) {
    .product--l-thin .productDescription {
      font-size: 12px;
      line-height: 18px;
      max-height: 54px;
      margin-top: 20px;
    }
  }
  @container grid (min-width: 1300px) and (max-width: 1520px) {
    .product--l-wide:has(.productFavorites.hide-xl) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "compare compare" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 1024px) and (max-width: 1300px) {
    .product--l-wide:has(.productFavorites.hide-l) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "compare compare" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 640px) and (max-width: 1024px) {
    .product--l-wide:has(.productFavorites.hide-m) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "compare compare" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 0) and (max-width: 639px) {
    .product--l-wide:has(.productFavorites.hide-s) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "compare compare" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 1300px) and (max-width: 1520px) {
    .product--l-wide:has(.productCompare.hide-xl) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "favorites favorites" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 1024px) and (max-width: 1300px) {
    .product--l-wide:has(.productCompare.hide-l) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "favorites favorites" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 640px) and (max-width: 1024px) {
    .product--l-wide:has(.productCompare.hide-m) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "favorites favorites" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 0) and (max-width: 639px) {
    .product--l-wide:has(.productCompare.hide-s) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "favorites favorites" "description description" "parameters parameters";
    }
  }
  .product--l-wide .product__container {
    grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "favorites compare" "description description" "parameters parameters";
  }
  .product--l-wide .productProducer {
    display: flex;
    justify-content: center;
    margin-top: 21px;
  }
  .product--l-wide .productGallery {
    position: absolute;
    height: 39px;
    bottom: 10px;
  }
  .product--l-wrap .product__container {
    grid-template-areas: "image image producer benefits" "image image name name" "image image code code" "image image codeSupplier codeSupplier" "image image ean ean" "image image price price" "image image reference reference" "image image availability availability" "variants variants variants variants" ". . . ." "purchase purchase purchase purchase" "favorites favorites compare compare" "description description description description" "parameters parameters parameters parameters";
    padding: 20px;
    padding-bottom: 30px;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(8, auto) 22px repeat(3, auto) 1fr;
  }
  .product--l-wrap .product__link {
    padding-right: 20px;
    display: block;
  }
  .product--l-wrap .productGallery, .product--l-wrap .productDiscount, .product--l-wrap .fce6Discount, .product--l-wrap .productFreeShipping {
    display: none;
  }
  .product--l-wrap .productStickers__item {
    height: 17px;
    font-size: 10px;
    padding: 1px 6px;
  }
  .product--l-wrap .productProducer__image {
    height: 17px;
    width: auto;
  }
  .product--l-wrap .productBenefits {
    margin-top: 10px;
  }
  .product--l-wrap .productBenefits__item {
    height: 26px;
    font-size: 12px;
    padding: 0 8px;
  }
  .product--l-wrap .productBenefits__item-title--1 {
    display: none;
  }
  .product--l-wrap .productReviews {
    justify-content: end;
    align-items: center;
  }
  .product--l-wrap .productReviews .stars {
    width: 58px;
    height: 9px;
  }
  .product--l-wrap .productReviews__text {
    display: none;
  }
  .product--l-wrap .productName {
    margin-top: 0;
    font-size: 14px;
    line-height: 20px;
    text-align: left;
    -webkit-line-clamp: 2;
    height: 40px;
    margin-top: 3px;
  }
  .product--l-wrap .productCode {
    font-size: 12px;
    text-align: left;
    margin-top: 8px;
  }
  .product--l-wrap .productPrice {
    justify-content: flex-start;
    margin-top: 13px;
  }
  .product--l-wrap .productPrice__current {
    font-size: 16px;
  }
  .product--l-wrap .productPrice__before {
    font-size: 12px;
  }
  .product--l-wrap .productReferenceUnit .cMernaJednotka--vypis {
    text-align: left;
  }
  .product--l-wrap .productAvailability {
    font-size: 12px;
    line-height: 18px;
    text-align: left;
  }
  .product--l-wrap .commonVariants__params {
    gap: 6px;
    margin-top: 10px;
  }
  .product--l-wrap .commonVariants__param {
    gap: 6px;
  }
  .product--l-wrap .commonVariants__value {
    line-height: 18px;
    padding: 0 5px;
    font-size: 12px;
  }
  .product--l-wrap .commonVariants__value--inStock {
    position: relative;
  }
  .product--l-wrap .commonVariants__value--inStock:after {
    position: absolute;
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    right: -5px;
    top: -5px;
    background-size: contain;
  }
  .product--l-wrap .productFavorites {
    justify-content: center;
    width: 100%;
    margin-top: 10px;
  }
  .product--l-wrap .productFavorites__title {
    display: flex;
  }
  .product--l-wrap .productCompare {
    justify-content: center;
    width: 100%;
    margin-top: 10px;
  }
  .product--l-wrap .productDescription {
    line-height: 24px;
    margin-top: 18px;
  }
  .product--l-wrap .productParameters {
    margin-top: 18px;
  }
  .product--l-wrap .productParameters .cProductParams {
    gap: 6px;
  }
  .product--l-wrap .productParameters .cProductParams__item {
    font-size: 12px;
    padding: 3px 6px;
  }
  .hide-l {
    display: none !important;
  }
}
@container grid (min-width: 640px) and (max-width: 1024px) {
  @container grid (min-width: 1300px) and (max-width: 1520px) {
    .product--m-thin:has(.productFavorites.hide-xl) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "compare compare" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 1024px) and (max-width: 1300px) {
    .product--m-thin:has(.productFavorites.hide-l) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "compare compare" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 640px) and (max-width: 1024px) {
    .product--m-thin:has(.productFavorites.hide-m) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "compare compare" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 0) and (max-width: 639px) {
    .product--m-thin:has(.productFavorites.hide-s) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "compare compare" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 1300px) and (max-width: 1520px) {
    .product--m-thin:has(.productCompare.hide-xl) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "favorites favorites" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 1024px) and (max-width: 1300px) {
    .product--m-thin:has(.productCompare.hide-l) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "favorites favorites" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 640px) and (max-width: 1024px) {
    .product--m-thin:has(.productCompare.hide-m) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "favorites favorites" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 0) and (max-width: 639px) {
    .product--m-thin:has(.productCompare.hide-s) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "favorites favorites" "description description" "parameters parameters";
    }
  }
  .product--m-thin .product__container {
    padding: 20px;
    grid-template-areas: "image image" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "favorites compare" "description description" "parameters parameters";
    grid-auto-rows: max-content auto;
  }
  @container (max-width: 200px) {
    .product--m-thin .product__container {
      grid-auto-rows: max-content auto;
    }
    .product--m-thin .productFreeShipping {
      width: 32px;
      height: 32px;
      padding-top: 8px;
    }
    .product--m-thin .productFreeShipping__icon {
      width: 16px;
      height: 8px;
    }
    .product--m-thin .productFreeShipping__title {
      font-size: 7px;
    }
    .product--m-thin .productStickers {
      row-gap: 2px;
    }
    .product--m-thin .productStickers__item {
      font-size: 8px;
      padding: 2px 5px;
    }
    .product--m-thin .commonEnergyLabel__image {
      width: 30px;
      height: auto;
    }
    .product--m-thin .product__link {
      padding: 0px 6px;
    }
  }
  .product--m-thin .productGallery, .product--m-thin .productParameters {
    display: none;
  }
  .product--m-thin .productProducer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
  }
  @container (max-width: 200px) {
    .product--m-thin .productProducer {
      margin-top: 14px;
      height: 20px;
    }
  }
  .product--m-thin .productProducer__image {
    max-width: 100%;
    height: auto;
    max-height: 100%;
    width: auto;
  }
  .product--m-thin .productName {
    margin-top: 9px;
    font-size: 16px;
    line-height: 20px;
    height: 40px;
    -webkit-line-clamp: 2;
  }
  @container (max-width: 200px) {
    .product--m-thin .productName {
      margin-top: 12px;
      font-size: 14px;
    }
  }
  .product--m-thin .productCode {
    margin-top: 9px;
    font-size: 12px;
  }
  @container (max-width: 200px) {
    .product--m-thin .productCode {
      margin-top: 8px;
      overflow: hidden;
    }
  }
  .product--m-thin .productReviews, .product--m-thin .productBenefits {
    height: 21px;
    overflow: hidden;
    margin-top: 16px;
  }
  @container (max-width: 200px) {
    .product--m-thin .productReviews, .product--m-thin .productBenefits {
      margin-top: 8px;
      font-size: 12px;
    }
  }
  .product--m-thin .productBenefits {
    height: 26px;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
  }
  .product--m-thin .productBenefits__item {
    height: 26px;
    padding: 0 8px;
    font-size: 12px;
  }
  .product--m-thin .productBenefits__item-title {
    font-size: 12px;
  }
  @container (max-width: 200px) {
    .product--m-thin .productReviews .stars {
      width: 80px;
      height: 12px;
    }
    .product--m-thin .productReviews .productReviews__text {
      font-size: 12px;
    }
  }
  .product--m-thin .productPrice {
    margin-top: 13px;
  }
  @container (max-width: 200px) {
    .product--m-thin .productPrice {
      flex-wrap: wrap;
      margin-top: 8px;
      overflow: hidden;
    }
    .product--m-thin .productPrice .productPrice__current .cPrice {
      font-size: 16px;
    }
    .product--m-thin .productPrice .productPrice__before .cPrice {
      font-size: 12px;
    }
  }
  .product--m-thin .productAvailability {
    margin-top: 3px;
  }
  @container (max-width: 200px) {
    .product--m-thin .productAvailability {
      font-size: 12px;
      line-height: 15px;
      margin-top: 1px;
    }
  }
  @container (max-width: 200px) {
    .product--m-thin .productVariants .commonVariants__params {
      gap: 7px;
    }
    .product--m-thin .productVariants .commonVariants__param {
      gap: 3px;
    }
    .product--m-thin .productVariants .commonVariants__value {
      font-size: 12px;
      padding: 3px 5px;
    }
  }
  @container product (max-width: 250px) {
    .product--m-thin .productFavorites {
      margin-left: auto;
    }
  }
  @container product (max-width: 200px) {
    .product--m-thin .productFavorites {
      margin-top: 22px;
    }
  }
  .product--m-thin .productFavorites__title {
    display: flex;
  }
  @container product (max-width: 250px) {
    .product--m-thin .productFavorites__title {
      display: none;
    }
  }
  @container product (max-width: 250px) {
    .product--m-thin .productCompare {
      margin-right: auto;
    }
  }
  @container product (max-width: 200px) {
    .product--m-thin .productCompare {
      margin-top: 22px;
    }
  }
  @container product (max-width: 250px) {
    .product--m-thin .productCompare__title {
      display: none;
    }
  }
  @container product (max-width: 250px) {
    .product--m-thin .productDescription {
      font-size: 12px;
      line-height: 18px;
      max-height: 54px;
      margin-top: 20px;
    }
  }
  @container grid (min-width: 1300px) and (max-width: 1520px) {
    .product--m-wide:has(.productFavorites.hide-xl) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "compare compare" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 1024px) and (max-width: 1300px) {
    .product--m-wide:has(.productFavorites.hide-l) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "compare compare" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 640px) and (max-width: 1024px) {
    .product--m-wide:has(.productFavorites.hide-m) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "compare compare" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 0) and (max-width: 639px) {
    .product--m-wide:has(.productFavorites.hide-s) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "compare compare" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 1300px) and (max-width: 1520px) {
    .product--m-wide:has(.productCompare.hide-xl) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "favorites favorites" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 1024px) and (max-width: 1300px) {
    .product--m-wide:has(.productCompare.hide-l) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "favorites favorites" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 640px) and (max-width: 1024px) {
    .product--m-wide:has(.productCompare.hide-m) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "favorites favorites" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 0) and (max-width: 639px) {
    .product--m-wide:has(.productCompare.hide-s) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "favorites favorites" "description description" "parameters parameters";
    }
  }
  .product--m-wide .product__container {
    grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "favorites compare" "description description" "parameters parameters";
  }
  .product--m-wide .productProducer {
    display: flex;
    justify-content: center;
    margin-top: 21px;
  }
  .product--m-wide .productGallery {
    position: absolute;
    height: 39px;
    bottom: 10px;
  }
  .product--m-wrap .product__container {
    grid-template-areas: "image image producer benefits" "image image name name" "image image code code" "image image codeSupplier codeSupplier" "image image ean ean" "image image price price" "image image reference reference" "image image availability availability" "variants variants variants variants" ". . . ." "purchase purchase purchase purchase" "favorites favorites compare compare" "description description description description" "parameters parameters parameters parameters";
    padding: 20px;
    padding-bottom: 30px;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(8, auto) 22px repeat(3, auto) 1fr;
  }
  .product--m-wrap .product__link {
    padding-right: 20px;
    display: block;
  }
  .product--m-wrap .productGallery, .product--m-wrap .productDiscount, .product--m-wrap .fce6Discount, .product--m-wrap .productFreeShipping {
    display: none;
  }
  .product--m-wrap .productStickers__item {
    height: 17px;
    font-size: 10px;
    padding: 1px 6px;
  }
  .product--m-wrap .productProducer__image {
    height: 17px;
    width: auto;
  }
  .product--m-wrap .productBenefits {
    margin-top: 10px;
  }
  .product--m-wrap .productBenefits__item {
    height: 26px;
    font-size: 12px;
    padding: 0 8px;
  }
  .product--m-wrap .productBenefits__item-title--1 {
    display: none;
  }
  .product--m-wrap .productReviews {
    justify-content: end;
    align-items: center;
  }
  .product--m-wrap .productReviews .stars {
    width: 58px;
    height: 9px;
  }
  .product--m-wrap .productReviews__text {
    display: none;
  }
  .product--m-wrap .productName {
    margin-top: 0;
    font-size: 14px;
    line-height: 20px;
    text-align: left;
    -webkit-line-clamp: 2;
    height: 40px;
    margin-top: 3px;
  }
  .product--m-wrap .productCode {
    font-size: 12px;
    text-align: left;
    margin-top: 8px;
  }
  .product--m-wrap .productPrice {
    justify-content: flex-start;
    margin-top: 13px;
  }
  .product--m-wrap .productPrice__current {
    font-size: 16px;
  }
  .product--m-wrap .productPrice__before {
    font-size: 12px;
  }
  .product--m-wrap .productReferenceUnit .cMernaJednotka--vypis {
    text-align: left;
  }
  .product--m-wrap .productAvailability {
    font-size: 12px;
    line-height: 18px;
    text-align: left;
  }
  .product--m-wrap .commonVariants__params {
    gap: 6px;
    margin-top: 10px;
  }
  .product--m-wrap .commonVariants__param {
    gap: 6px;
  }
  .product--m-wrap .commonVariants__value {
    line-height: 18px;
    padding: 0 5px;
    font-size: 12px;
  }
  .product--m-wrap .commonVariants__value--inStock {
    position: relative;
  }
  .product--m-wrap .commonVariants__value--inStock:after {
    position: absolute;
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    right: -5px;
    top: -5px;
    background-size: contain;
  }
  .product--m-wrap .productFavorites {
    justify-content: center;
    width: 100%;
    margin-top: 10px;
  }
  .product--m-wrap .productFavorites__title {
    display: flex;
  }
  .product--m-wrap .productCompare {
    justify-content: center;
    width: 100%;
    margin-top: 10px;
  }
  .product--m-wrap .productDescription {
    line-height: 24px;
    margin-top: 18px;
  }
  .product--m-wrap .productParameters {
    margin-top: 18px;
  }
  .product--m-wrap .productParameters .cProductParams {
    gap: 6px;
  }
  .product--m-wrap .productParameters .cProductParams__item {
    font-size: 12px;
    padding: 3px 6px;
  }
  .hide-m {
    display: none !important;
  }
}
@container grid (min-width: 0) and (max-width: 639px) {
  @container grid (min-width: 1300px) and (max-width: 1520px) {
    .product--s-thin:has(.productFavorites.hide-xl) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "compare compare" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 1024px) and (max-width: 1300px) {
    .product--s-thin:has(.productFavorites.hide-l) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "compare compare" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 640px) and (max-width: 1024px) {
    .product--s-thin:has(.productFavorites.hide-m) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "compare compare" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 0) and (max-width: 639px) {
    .product--s-thin:has(.productFavorites.hide-s) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "compare compare" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 1300px) and (max-width: 1520px) {
    .product--s-thin:has(.productCompare.hide-xl) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "favorites favorites" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 1024px) and (max-width: 1300px) {
    .product--s-thin:has(.productCompare.hide-l) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "favorites favorites" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 640px) and (max-width: 1024px) {
    .product--s-thin:has(.productCompare.hide-m) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "favorites favorites" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 0) and (max-width: 639px) {
    .product--s-thin:has(.productCompare.hide-s) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "favorites favorites" "description description" "parameters parameters";
    }
  }
  .product--s-thin .product__container {
    padding: 20px;
    grid-template-areas: "image image" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "favorites compare" "description description" "parameters parameters";
    grid-auto-rows: max-content auto;
  }
  @container (max-width: 200px) {
    .product--s-thin .product__container {
      grid-auto-rows: max-content auto;
    }
    .product--s-thin .productFreeShipping {
      width: 32px;
      height: 32px;
      padding-top: 8px;
    }
    .product--s-thin .productFreeShipping__icon {
      width: 16px;
      height: 8px;
    }
    .product--s-thin .productFreeShipping__title {
      font-size: 7px;
    }
    .product--s-thin .productStickers {
      row-gap: 2px;
    }
    .product--s-thin .productStickers__item {
      font-size: 8px;
      padding: 2px 5px;
    }
    .product--s-thin .commonEnergyLabel__image {
      width: 30px;
      height: auto;
    }
    .product--s-thin .product__link {
      padding: 0px 6px;
    }
  }
  .product--s-thin .productGallery, .product--s-thin .productParameters {
    display: none;
  }
  .product--s-thin .productProducer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
  }
  @container (max-width: 200px) {
    .product--s-thin .productProducer {
      margin-top: 14px;
      height: 20px;
    }
  }
  .product--s-thin .productProducer__image {
    max-width: 100%;
    height: auto;
    max-height: 100%;
    width: auto;
  }
  .product--s-thin .productName {
    margin-top: 9px;
    font-size: 16px;
    line-height: 20px;
    height: 40px;
    -webkit-line-clamp: 2;
  }
  @container (max-width: 200px) {
    .product--s-thin .productName {
      margin-top: 12px;
      font-size: 14px;
    }
  }
  .product--s-thin .productCode {
    margin-top: 9px;
    font-size: 12px;
  }
  @container (max-width: 200px) {
    .product--s-thin .productCode {
      margin-top: 8px;
      overflow: hidden;
    }
  }
  .product--s-thin .productReviews, .product--s-thin .productBenefits {
    height: 21px;
    overflow: hidden;
    margin-top: 16px;
  }
  @container (max-width: 200px) {
    .product--s-thin .productReviews, .product--s-thin .productBenefits {
      margin-top: 8px;
      font-size: 12px;
    }
  }
  .product--s-thin .productBenefits {
    height: 26px;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
  }
  .product--s-thin .productBenefits__item {
    height: 26px;
    padding: 0 8px;
    font-size: 12px;
  }
  .product--s-thin .productBenefits__item-title {
    font-size: 12px;
  }
  @container (max-width: 200px) {
    .product--s-thin .productReviews .stars {
      width: 80px;
      height: 12px;
    }
    .product--s-thin .productReviews .productReviews__text {
      font-size: 12px;
    }
  }
  .product--s-thin .productPrice {
    margin-top: 13px;
  }
  @container (max-width: 200px) {
    .product--s-thin .productPrice {
      flex-wrap: wrap;
      margin-top: 8px;
      overflow: hidden;
    }
    .product--s-thin .productPrice .productPrice__current .cPrice {
      font-size: 16px;
    }
    .product--s-thin .productPrice .productPrice__before .cPrice {
      font-size: 12px;
    }
  }
  .product--s-thin .productAvailability {
    margin-top: 3px;
  }
  @container (max-width: 200px) {
    .product--s-thin .productAvailability {
      font-size: 12px;
      line-height: 15px;
      margin-top: 1px;
    }
  }
  @container (max-width: 200px) {
    .product--s-thin .productVariants .commonVariants__params {
      gap: 7px;
    }
    .product--s-thin .productVariants .commonVariants__param {
      gap: 3px;
    }
    .product--s-thin .productVariants .commonVariants__value {
      font-size: 12px;
      padding: 3px 5px;
    }
  }
  @container product (max-width: 250px) {
    .product--s-thin .productFavorites {
      margin-left: auto;
    }
  }
  @container product (max-width: 200px) {
    .product--s-thin .productFavorites {
      margin-top: 22px;
    }
  }
  .product--s-thin .productFavorites__title {
    display: flex;
  }
  @container product (max-width: 250px) {
    .product--s-thin .productFavorites__title {
      display: none;
    }
  }
  @container product (max-width: 250px) {
    .product--s-thin .productCompare {
      margin-right: auto;
    }
  }
  @container product (max-width: 200px) {
    .product--s-thin .productCompare {
      margin-top: 22px;
    }
  }
  @container product (max-width: 250px) {
    .product--s-thin .productCompare__title {
      display: none;
    }
  }
  @container product (max-width: 250px) {
    .product--s-thin .productDescription {
      font-size: 12px;
      line-height: 18px;
      max-height: 54px;
      margin-top: 20px;
    }
  }
  @container grid (min-width: 1300px) and (max-width: 1520px) {
    .product--s-wide:has(.productFavorites.hide-xl) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "compare compare" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 1024px) and (max-width: 1300px) {
    .product--s-wide:has(.productFavorites.hide-l) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "compare compare" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 640px) and (max-width: 1024px) {
    .product--s-wide:has(.productFavorites.hide-m) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "compare compare" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 0) and (max-width: 639px) {
    .product--s-wide:has(.productFavorites.hide-s) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "compare compare" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 1300px) and (max-width: 1520px) {
    .product--s-wide:has(.productCompare.hide-xl) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "favorites favorites" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 1024px) and (max-width: 1300px) {
    .product--s-wide:has(.productCompare.hide-l) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "favorites favorites" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 640px) and (max-width: 1024px) {
    .product--s-wide:has(.productCompare.hide-m) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "favorites favorites" "description description" "parameters parameters";
    }
  }
  @container grid (min-width: 0) and (max-width: 639px) {
    .product--s-wide:has(.productCompare.hide-s) .product__container {
      grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "favorites favorites" "description description" "parameters parameters";
    }
  }
  .product--s-wide .product__container {
    grid-template-areas: "image image" "gallery gallery" "producer producer" "name name" "code code" "codeSupplier codeSupplier" "ean ean" "benefits benefits" "price price" "reference reference" "availability availability" "variants variants" "purchase purchase" "favorites compare" "description description" "parameters parameters";
  }
  .product--s-wide .productProducer {
    display: flex;
    justify-content: center;
    margin-top: 21px;
  }
  .product--s-wide .productGallery {
    position: absolute;
    height: 39px;
    bottom: 10px;
  }
  .product--s-wrap .product__container {
    grid-template-areas: "image image producer benefits" "image image name name" "image image code code" "image image codeSupplier codeSupplier" "image image ean ean" "image image price price" "image image reference reference" "image image availability availability" "variants variants variants variants" ". . . ." "purchase purchase purchase purchase" "favorites favorites compare compare" "description description description description" "parameters parameters parameters parameters";
    padding: 20px;
    padding-bottom: 30px;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(8, auto) 22px repeat(3, auto) 1fr;
  }
  .product--s-wrap .product__link {
    padding-right: 20px;
    display: block;
  }
  .product--s-wrap .productGallery, .product--s-wrap .productDiscount, .product--s-wrap .fce6Discount, .product--s-wrap .productFreeShipping {
    display: none;
  }
  .product--s-wrap .productStickers__item {
    height: 17px;
    font-size: 10px;
    padding: 1px 6px;
  }
  .product--s-wrap .productProducer__image {
    height: 17px;
    width: auto;
  }
  .product--s-wrap .productBenefits {
    margin-top: 10px;
  }
  .product--s-wrap .productBenefits__item {
    height: 26px;
    font-size: 12px;
    padding: 0 8px;
  }
  .product--s-wrap .productBenefits__item-title--1 {
    display: none;
  }
  .product--s-wrap .productReviews {
    justify-content: end;
    align-items: center;
  }
  .product--s-wrap .productReviews .stars {
    width: 58px;
    height: 9px;
  }
  .product--s-wrap .productReviews__text {
    display: none;
  }
  .product--s-wrap .productName {
    margin-top: 0;
    font-size: 14px;
    line-height: 20px;
    text-align: left;
    -webkit-line-clamp: 2;
    height: 40px;
    margin-top: 3px;
  }
  .product--s-wrap .productCode {
    font-size: 12px;
    text-align: left;
    margin-top: 8px;
  }
  .product--s-wrap .productPrice {
    justify-content: flex-start;
    margin-top: 13px;
  }
  .product--s-wrap .productPrice__current {
    font-size: 16px;
  }
  .product--s-wrap .productPrice__before {
    font-size: 12px;
  }
  .product--s-wrap .productReferenceUnit .cMernaJednotka--vypis {
    text-align: left;
  }
  .product--s-wrap .productAvailability {
    font-size: 12px;
    line-height: 18px;
    text-align: left;
  }
  .product--s-wrap .commonVariants__params {
    gap: 6px;
    margin-top: 10px;
  }
  .product--s-wrap .commonVariants__param {
    gap: 6px;
  }
  .product--s-wrap .commonVariants__value {
    line-height: 18px;
    padding: 0 5px;
    font-size: 12px;
  }
  .product--s-wrap .commonVariants__value--inStock {
    position: relative;
  }
  .product--s-wrap .commonVariants__value--inStock:after {
    position: absolute;
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    right: -5px;
    top: -5px;
    background-size: contain;
  }
  .product--s-wrap .productFavorites {
    justify-content: center;
    width: 100%;
    margin-top: 10px;
  }
  .product--s-wrap .productFavorites__title {
    display: flex;
  }
  .product--s-wrap .productCompare {
    justify-content: center;
    width: 100%;
    margin-top: 10px;
  }
  .product--s-wrap .productDescription {
    line-height: 24px;
    margin-top: 18px;
  }
  .product--s-wrap .productParameters {
    margin-top: 18px;
  }
  .product--s-wrap .productParameters .cProductParams {
    gap: 6px;
  }
  .product--s-wrap .productParameters .cProductParams__item {
    font-size: 12px;
    padding: 3px 6px;
  }
  .hide-s {
    display: none !important;
  }
}
.productAvailability {
  grid-area: availability;
  text-align: center;
  font-size: 14px;
  line-height: 22px;
  padding-top: 5px;
  cursor: pointer;
}
.productAvailability__on-stock {
  color: #34b262;
}
.productAvailability__supplier {
  --color-delivery: #657d92;
  color: var(--color-delivery);
}
.productAvailability__not-available {
  color: #e54a4b;
}
.productBenefits {
  grid-area: benefits;
  color: #657d92;
  text-align: center;
  width: 100%;
  font-size: 14px;
  margin-top: 12px;
}
.productBenefits__item {
  height: 31px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  column-gap: 5px;
  padding: 0 10px;
  width: max-content;
  margin: 0 auto;
}
.productBenefits__item--credits, .productBenefits__item--points {
  background-color: rgba(252, 175, 23, 0.15);
  color: #1a1a1a;
}
.productBenefits__item--warranty {
  background-color: rgba(52, 178, 98, 0.13);
  color: #34b262;
}
.productCode {
  grid-area: code;
  text-align: center;
  color: #657d92;
  font-size: 12px;
  margin-top: 5px;
}
.productCode--compact {
  text-align: left;
  font-size: 12px;
}
.productCompare {
  grid-area: compare;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 14px;
  line-height: 21px;
  display: flex;
  align-items: center;
  column-gap: 6px;
  margin: 24px auto 0;
}
.productCompare:hover {
  color: #178aef;
}
@container null {
  .productCompare--compact .productCompare__title {
    display: none;
  }
}
.productCompare--detail {
  margin: 0;
  font-size: 16px;
}
@container (max-width: 579px) {
  .productCompare--detail {
    font-size: 14px;
  }
}
.productDescription {
  grid-area: description;
  color: #657d92;
  font-size: 14px;
  line-height: 28px;
  max-height: 84px;
  margin-top: 37px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: block;
  text-decoration: none;
}
@container null {
  .productDescription {
    display: none;
  }
}
.productDiscount, .fce6Discount {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: #e54a4b;
  color: #fff;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 8px;
  line-height: 18px;
}
.productDiscount__value, .fce6Discount__value {
  font-size: 22px;
  line-height: 12px;
}
.productEan {
  grid-area: ean;
  text-align: center;
  color: #657d92;
  font-size: 12px;
  margin-top: 5px;
}
.productEan--compact {
  text-align: left;
  font-size: 12px;
}
.productFavorites {
  grid-area: favorites;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 14px;
  line-height: 21px;
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin: 24px auto 0;
}
@container null {
  .productFavorites {
    display: none;
  }
}
.productFavorites:hover {
  color: #178aef;
}
.productFavorites--compact .productFavorites__title {
  display: none;
}
.productFavorites--detail {
  margin: 0;
  font-size: 16px;
}
@container (max-width: 579px) {
  .productFavorites--detail {
    font-size: 14px;
  }
}
.productFreeShipping {
  cursor: default;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: #e54a4b;
  color: #fff;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  padding-top: 15px;
  padding-bottom: 11px;
}
.productFreeShipping__title {
  width: 100%;
  text-align: center;
}
.productGallery {
  grid-area: gallery;
  margin-top: 5px;
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  pointer-events: none;
}
.productGallery.glide--carousel .commonVariants__variantImages {
  column-gap: 0;
}
.productGallery__track {
  width: 149px;
  max-height: 39px;
  overflow: hidden;
}
.productGallery__controls {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
.productGallery__arrow {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #178aef;
  box-shadow: 0 2px 6px rgba(23, 138, 239, 0.35);
  position: absolute;
  border: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: all;
  cursor: pointer;
  transition: 0.2s ease-in-out background-color, 0.3s ease-in-out box-shadow;
  background-repeat: no-repeat;
}
.productGallery__arrow:hover {
  background-color: #1a1a1a;
  box-shadow: 0 2px 6px rgba(26, 26, 26, 0.35);
}
.productGallery__arrow--prev {
  left: -15px;
  background-image: url("https://i.binargon.cz/demoeshopmaxi/arrow_left.svg");
  background-position: calc(50% - 1px) center;
}
.productGallery__arrow--next {
  right: -15px;
  background-image: url("https://i.binargon.cz/demoeshopmaxi/arrow_right.svg");
  background-position: center center;
}
.productImage {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: auto;
}
.productName {
  grid-area: name;
  font-size: 18px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  line-height: 20px;
  text-align: center;
  margin-top: 21px;
  text-decoration: none;
  color: inherit;
  height: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.productName--compact {
  grid-area: name;
  text-align: left;
  margin-top: 0;
  font-size: 14px;
  line-height: 20px;
}
.productParameters {
  grid-area: parameters;
  margin-top: 25px;
}
@container null {
  .productParameters {
    display: none;
  }
}
.productPrice {
  grid-area: price;
  margin-top: 16px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  column-gap: 5px;
}
.productPrice--compact {
  justify-content: flex-start;
}
.productPrice__current {
  font-weight: 600;
  font-size: 18px;
}
.productPrice__current--discounted {
  color: #e54a4b;
}
.productPrice__before {
  font-size: 14px;
  color: #657d92;
  text-decoration: line-through;
}
.productProducer {
  grid-area: producer;
  height: 25px;
  margin-top: 10px;
}
.productProducer__image {
  vertical-align: top;
}
.productProducer__name {
  color: #657d92;
  font-size: 12px;
}
.productPurchase {
  grid-area: purchase;
  display: flex;
  flex-wrap: wrap;
  margin-top: 27px;
  row-gap: 25px;
  container-type: inline-size;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  justify-content: center;
}
.productPurchase--detail {
  text-align: center;
}
.productPurchase--form {
  align-items: center;
  column-gap: 20px;
}
@container (min-width: 171px) and (max-width: 259px) {
  .productPurchase--form .productPurchase__button {
    max-width: max-content;
  }
}
@container (max-width: 170px) {
  .productPurchase--form .productPurchase__button {
    width: 100%;
  }
}
.productPurchase--compact {
  display: none;
}
.productPurchase__button {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 11px;
  width: 100%;
  justify-content: center;
  letter-spacing: -0.03em;
  padding: 0 15px;
}
.productPurchase__button--variants {
  column-gap: 0;
}
@container (max-width: 259px) {
  .productPurchase__button-title {
    display: none;
  }
}
.productReferenceUnit {
  grid-area: reference;
}
.productReviews {
  grid-area: benefits;
  display: flex;
  align-items: baseline;
  column-gap: 5px;
  justify-content: center;
  margin-top: 17px;
  text-decoration: none;
  color: inherit;
}
.productReviews__text {
  font-size: 14px;
  font-weight: 600;
}
.productStickers {
  display: grid;
  row-gap: 4px;
  margin-bottom: 10px;
}
.productStickers__item {
  --stav-color: #657d92;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  max-width: max-content;
  background-color: var(--stav-color);
}
.productStickers__item--NOVINKA, .productStickers__item--NEW {
  --stav-color: #34b262;
}
.productStickers__item--DOPORUCUJEME, .productStickers__item--RECOMMENDED {
  --stav-color: #178aef;
}
.productStickers__item--VYPRODEJ, .productStickers__item--AKCE {
  --stav-color: #e54a4b;
}
.productStickers__item:last-child {
  position: relative;
}
.productStickers__item:last-child:after {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  left: 0;
  bottom: -7px;
  background-color: inherit;
  background-image: url(svg/trianglemask.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  clip-path: polygon(100% 0, 0 0, 0 100%);
}
.productSupplierCode {
  grid-area: codeSupplier;
  text-align: center;
  color: #657d92;
  font-size: 12px;
  margin-top: 5px;
}
.productSupplierCode--compact {
  text-align: left;
  font-size: 12px;
}
.productVariants {
  grid-area: variants;
}
.products {
  container: products / inline-size;
  overflow: hidden;
}
.productsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  container-name: product-grid;
  container-type: inline-size;
}
@container (min-width: 1480px) {
  .productsGrid--desktop-large {
    grid-template-columns: repeat(4, 1fr);
  }
}
@container (min-width: 1480px) {
  .productsGrid--desktop-medium {
    grid-template-columns: repeat(5, 1fr);
  }
}
.productsGrid__container {
  outline: 1px solid red;
  min-height: 300px;
}
.productsGroup {
  margin-bottom: 96px;
}
@container (max-width: 579px) {
  .productsGroup {
    margin-bottom: 35px;
    margin-left: -20px;
    margin-right: -20px;
  }
}
.productsGroup__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 35px;
  margin-bottom: 36px;
  font-family: "Poppins", sans-serif;
}
@container (max-width: 579px) {
  .productsGroup__title {
    text-align: center;
    font-size: 20px;
    line-height: 30px;
  }
}
.productsGroup__container {
  overflow: hidden;
}
.productsGroup__arrows {
  display: block;
}
.productsGroup__arrow {
  border: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #178aef;
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 11;
}
.productsGroup__arrow--hidden {
  display: none;
}
.productsGroup__arrow--left {
  left: 0;
  transform: translate(-50%, -50%);
}
@container (max-width: 579px) {
  .productsGroup__arrow--left {
    left: 5px;
    transform: translate(0, -50%);
  }
}
.productsGroup__arrow--left .productsGroup__arrow-icon {
  margin-left: -2px;
}
.productsGroup__arrow--right {
  right: 0;
  transform: translate(50%, -50%);
}
@container (max-width: 579px) {
  .productsGroup__arrow--right {
    right: 5px;
    transform: translate(0, -50%);
  }
}
.productsGroup__arrow--right .productsGroup__arrow-icon {
  margin-right: -2px;
}
.productsGroup__items {
  container: productsGlide / inline-size;
  position: relative;
}
.productsGroup .products {
  container-name: grid;
  position: relative;
}
.productsGroup .products:before, .productsGroup .products:after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  z-index: 10;
}
.productsGroup .products:before {
  left: 0;
}
.productsGroup .products:after {
  right: 0;
}
.productsGroup .grid {
  grid-auto-flow: column;
  container: unset;
}
.productsGroup .product {
  border-bottom: 0;
}
.productsOnPage {
  width: 100%;
}
.produktDetailMnozstevniSlevy {
  width: 100%;
  table-layout: fixed;
  border: 1px solid #b6c8d8;
  border-collapse: collapse;
  margin-top: 20px;
  margin-bottom: 20px;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
}
.produktDetailMnozstevniSlevy__row--header .produktDetailMnozstevniSlevy__cell {
  background-color: #f7f8fa;
  border: 1px solid #b6c8d8;
  padding: 0 13px;
  text-align: left;
  color: #1a1a1a;
  font-size: 12px;
  font-weight: 600;
}
.produktDetailMnozstevniSlevy__row:not(.produktDetailMnozstevniSlevy__row--header):hover {
  cursor: pointer;
  cursor: hand;
}
.produktDetailMnozstevniSlevy__row:not(.produktDetailMnozstevniSlevy__row--header):hover .produktDetailMnozstevniSlevy__cell {
  background-color: #f7f8fa;
}
.produktDetailMnozstevniSlevy__unit::before {
  content: " ";
}
.produktDetailMnozstevniSlevy__cell--unitPrice, .produktDetailMnozstevniSlevy__cell--saving, .produktDetailMnozstevniSlevy__cell--savingVat {
  display: none;
}
.produktDetailMnozstevniSlevy tr {
  height: 33px;
}
.produktDetailMnozstevniSlevy td {
  background-color: #fff;
  border: 1px solid #b6c8d8;
  padding: 0 13px;
  color: #1a1a1a;
  font-size: 12px;
}
.produktDetailMnozstevniSlevy sup {
  font-size: 0.8em;
}
.produktDetailStav {
  --stav-color: #657d92;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  max-width: max-content;
  background-color: var(--stav-color);
}
.produktDetailStav--systemId-NOVINKA, .produktDetailStav--systemId-NEW {
  --stav-color: #34b262;
}
.produktDetailStav--systemId-DOPORUCUJEME, .produktDetailStav--systemId-RECOMMENDED {
  --stav-color: #178aef;
}
.produktDetailStav--systemId-VYPRODEJ, .produktDetailStav--systemId-AKCE {
  --stav-color: #e54a4b;
}
.produktDetailStav:last-child {
  position: relative;
}
.produktDetailStav:last-child:after {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  left: 0;
  bottom: -7px;
  background-color: inherit;
  background-image: url(svg/trianglemask.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  clip-path: polygon(100% 0, 0 0, 0 100%);
}
.produktDetailVicejednotkovyProdej {
  width: 100%;
  table-layout: fixed;
  border: 1px solid #b6c8d8;
  border-collapse: collapse;
  margin-top: 20px;
  margin-bottom: 20px;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
}
.produktDetailVicejednotkovyProdej__row--header .produktDetailVicejednotkovyProdej__cell {
  background-color: #f7f8fa;
  border: 1px solid #b6c8d8;
  padding: 0 13px;
  text-align: left;
  color: #1a1a1a;
  font-size: 12px;
  font-weight: 600;
}
.produktDetailVicejednotkovyProdej__row:not(.produktDetailVicejednotkovyProdej__row--header):hover {
  cursor: pointer;
  cursor: hand;
}
.produktDetailVicejednotkovyProdej__row:not(.produktDetailVicejednotkovyProdej__row--header):hover .produktDetailVicejednotkovyProdej__cell {
  background-color: #f7f8fa;
}
.produktDetailVicejednotkovyProdej__row:not(.produktDetailVicejednotkovyProdej__row--header) .produktDetailVicejednotkovyProdej__cell--limit .produktDetailVicejednotkovyProdej__value:after {
  content: " a více";
}
.produktDetailVicejednotkovyProdej__unit::before {
  content: " ";
}
.produktDetailVicejednotkovyProdej__cell--unitPrice, .produktDetailVicejednotkovyProdej__cell--saving, .produktDetailVicejednotkovyProdej__cell--savingVat {
  display: none;
}
.produktDetailVicejednotkovyProdej tr {
  height: 33px;
}
.produktDetailVicejednotkovyProdej td {
  background-color: #fff;
  border: 1px solid #b6c8d8;
  padding: 0 13px;
  color: #1a1a1a;
  font-size: 12px;
}
.produktDetailVicejednotkovyProdej sup {
  font-size: 0.8em;
}
.quantity {
  display: grid;
  grid-template-columns: 26px 40px 26px;
  height: 26px;
}
@container (max-width: 579px) {
  .quantity {
    grid-template-columns: 30px 40px 30px;
    height: 30px;
  }
}
.quantity__button {
  background-color: rgba(23, 138, 239, 0.1);
  border-radius: 3px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.quantity__button:hover .quantity__button-icon {
  filter: brightness(0.6);
}
.quantity__button-icon {
  vertical-align: top;
  transition: filter ease-in-out 200ms;
}
.quantity__input {
  border: 0;
  padding: 0 5px;
  text-align: center;
  font-size: 16px;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
.quantity__input::-webkit-inner-spin-button, .quantity__input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.recaptcha {
  width: 100%;
  font-size: 14px;
  color: #657d92;
  margin-bottom: 20px;
  text-align: center;
}
@container (max-width: 1429px) {
  .recaptcha span {
    display: inline;
  }
}
@container (min-width: 580px) {
  .recaptcha .binargonRecaptchaBadge {
    line-height: 25px;
    margin-top: 15px;
  }
}
.recaptcha .binargonRecaptchaBadge__link {
  color: #178aef;
}
.recaptcha .binargonRecaptchaBadge__logo {
  width: 25px;
  height: 25px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: bottom;
}
.grecaptcha-badge {
  visibility: hidden;
}
.scrollToTop {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #178aef;
  box-shadow: 0 2px 6px rgba(23, 138, 239, 0.35);
  transition: 0.2s ease-in-out background-color, 0.3s ease-in-out box-shadow;
  cursor: pointer;
  position: fixed;
  right: 20px;
  bottom: 20px;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s ease-in-out all;
}
@media (max-width: 579px) {
  .scrollToTop {
    width: 40px;
    height: 40px;
    right: 15px;
    bottom: 15px;
  }
}
.scrollToTop.visible {
  visibility: visible;
  opacity: 1;
}
.scrollToTop:hover {
  background-color: #1a1a1a;
  box-shadow: 0 2px 6px rgba(26, 26, 26, 0.35);
}
.scrollToTop__icon {
  transform: rotate(90deg);
  position: relative;
  top: -2px;
}
.search {
  position: relative;
  z-index: 1001;
  display: flex;
  align-items: center;
}
@media (min-width: 580px) and (max-width: 1429px) {
  .search {
    width: 100%;
  }
}
.search__outerContainer {
  width: 100%;
}
.search__innerContainer {
  display: grid;
  align-items: center;
  column-gap: 10px;
  width: 100%;
}
.search__icon {
  grid-row: 1;
  grid-column: 1;
  position: relative;
  z-index: 1;
  margin-left: 20px;
}
.search__input {
  width: 100%;
  height: 20px;
  border: 0;
  outline: 0;
  background-color: transparent;
  color: #657d92;
  font-size: 14px;
  height: 54px;
  background-color: #f7f8fa;
  border-radius: 6px;
  padding: 0 110px 0 49px;
  grid-row: 1;
  grid-column: 1 / span 3;
}
.search__input::-webkit-input-placeholder {
  color: #657d92;
}
.search__input:-moz-placeholder {
  color: #657d92;
}
.search__input::-moz-placeholder {
  color: #657d92;
}
.search__input:-ms-input-placeholder {
  color: #657d92;
}
.search__input:focus {
  border: 1px solid #178aef;
  border-bottom: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.search__button {
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease-in-out all;
  display: none;
  width: max-content;
  grid-row: 1;
  grid-column: 3;
  margin: 5px;
  margin-left: auto;
}
.social {
  margin-top: 9px;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .social {
    display: flex;
    flex-wrap: wrap;
    margin-top: 34px;
    gap: 10px;
  }
}
@container (max-width: 579px) {
  .social {
    display: flex;
    gap: 10px;
    margin-top: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}
.socialItem {
  text-decoration: none;
  display: grid;
  grid-template-columns: 22px 1fr;
  column-gap: 11px;
  align-items: center;
  color: #657d92;
  font-size: 14px;
  line-height: 30px;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .socialItem {
    column-gap: 0;
  }
}
@container (max-width: 579px) {
  .socialItem {
    column-gap: 0;
    grid-template-columns: 1fr;
  }
}
.socialItem:hover {
  color: #178aef;
}
.socialItem-frame {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #178aef;
  display: flex;
  justify-content: center;
  align-items: center;
}
@container (max-width: 579px) {
  .socialItem-frame {
    width: 32px;
    height: 32px;
  }
}
.socialItem-icon {
  width: 16px;
  height: 16px;
  background-size: 100% auto;
}
.socialItem-icon--twitter {
  background-image: url("https://i.binargon.cz/demoeshopmaxi/rgba(255,255,255,1)/twitter.svg");
}
.socialItem-icon--facebook {
  background-image: url("https://i.binargon.cz/demoeshopmaxi/rgba(255,255,255,1)/facebook.svg");
}
.socialItem-icon--instagram {
  background-image: url("https://i.binargon.cz/demoeshopmaxi/rgba(255,255,255,1)/instagram.svg");
}
.socialItem-icon--youtube {
  background-image: url("https://i.binargon.cz/demoeshopmaxi/rgba(255,255,255,1)/youtube.svg");
}
.socialItem-icon--pinterest {
  background-image: url("https://i.binargon.cz/demoeshopmaxi/rgba(255,255,255,1)/pinterest.svg");
}
.socialItem-icon--tiktok {
  background-image: url("https://i.binargon.cz/demoeshopmaxi/rgba(255,255,255,1)/tiktok.svg");
}
.socialItem-icon--linkedin {
  background-image: url("https://i.binargon.cz/demoeshopmaxi/rgba(255,255,255,1)/linkedin.svg");
}
@container (min-width: 580px) and (max-width: 1429px) {
  .socialItem-title {
    display: none;
  }
}
@container (max-width: 579px) {
  .socialItem-title {
    display: none;
  }
}
@container (max-width: 1429px) {
  .sort {
    position: relative;
  }
}
.sort__title {
  display: none;
}
@container (max-width: 1429px) {
  .sort__title {
    display: block;
    position: absolute;
    font-size: 12px;
    color: #657d92;
    padding-left: 15px;
    padding-top: 9px;
  }
}
@container (max-width: 579px) {
  .sort__title {
    padding-left: 12px;
    padding-top: 5px;
  }
}
.sortSelect {
  width: 100%;
}
@container (min-width: 580px) and (max-width: 1429px) {
  .sortSelect:not(.exlude) {
    height: 54px;
    width: 180px;
    padding-top: 15px;
    background-position: right 8px top 8px;
    background-size: 16px;
    padding-right: 28px;
  }
}
@container (max-width: 579px) {
  .sortSelect:not(.exlude) {
    height: 45px;
    width: 100%;
    padding-top: 15px;
    background-position: right 5px top 5px;
    background-size: 16px;
    padding-right: 25px;
    padding-left: 10px;
  }
}
.stars {
  width: 82px;
  height: 13px;
  background-image: url("https://i.binargon.cz/demoeshopmaxi/rgba(209,223,233,1)/stars.svg");
  background-repeat: no-repeat;
  background-size: auto 100%;
}
.stars--inner {
  background-color: #fff;
  background-image: url("https://i.binargon.cz/demoeshopmaxi/rgba(252,175,23,1)/stars.svg");
}
.stars--fce6 {
  width: 96px;
  height: 15px;
}
.stars--fce6 .stars--inner {
  height: 15px;
}
.stars--large {
  width: 130px;
  height: 21px;
}
.stars--large .stars--inner {
  height: 21px;
}
.surchargesBlocks {
  display: grid;
  row-gap: 20px;
  margin-bottom: 39px;
}
@container (max-width: 579px) {
  .surchargesBlocks {
    margin-bottom: 30px;
  }
}
.surchargesBlocks__values {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@container (max-width: 579px) {
  .surchargesBlocks__values {
    gap: 12px;
  }
}
.surchargesBlocks__name {
  font-size: 16px;
  margin-bottom: 27px;
}
@container (max-width: 579px) {
  .surchargesBlocks__name {
    font-size: 14px;
    margin-bottom: 19px;
  }
}
.surchargesBlocks__value {
  min-height: 39px;
}
.surchargesBlocks__radio {
  display: none;
}
.surchargesBlocks__radio:checked + label {
  border-color: #178aef;
  box-shadow: 0 0 7px rgba(23, 138, 239, 0.5);
}
.surchargesBlocks__label {
  min-width: 35px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: 5px;
  font-size: 16px;
  border-style: solid;
  border-width: 2px;
  border-color: #b6c8d8;
  border-radius: 5px;
  cursor: pointer;
}
.surchargesBlocks__label:hover {
  border-color: #178aef;
  box-shadow: 0 0 7px rgba(23, 138, 239, 0.5);
}
.surchargesBlocks__label-price {
  font-weight: normal;
  font-size: 14px;
}
.surchargesBlocks__label-free {
  color: #34b262;
}
.surchargesSelects {
  margin-bottom: 39px;
  display: grid;
  row-gap: 15px;
}
@container (max-width: 579px) {
  .surchargesSelects {
    margin-bottom: 30px;
  }
}
.surchargesSelects__item {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.surchargesSelects__label {
  flex: 1;
}
.surchargesSelects__value {
  flex: 1;
}
.surchargesSelects__select {
  width: 100%;
}
.surchargesUnroll {
  --unrollMinimalHeight: 55px;
  --unrollOpenedHeight: var(--unrollMinimalHeight);
  --unrollClosedHeight: var(--unrollMinimalHeight);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 15px;
}
.surchargesUnroll.open .surchargesUnroll__values {
  height: var(--unrollOpenedHeight);
  border-color: #178aef;
  box-shadow: 0 0 7px rgba(23, 138, 239, 0.5);
}
.surchargesUnroll.open .surchargesUnroll__value.selected {
  background-image: url("https://i.binargon.cz/common/rgba(59,59,59,1)/selecbox-dropdown-focus.svg");
  background-position: right 10px center;
  background-size: 7px auto;
}
.surchargesUnroll__title {
  width: 100%;
  font-size: 16px;
  margin-bottom: 27px;
}
.surchargesUnroll__values {
  width: 100%;
  height: var(--unrollClosedHeight);
  min-height: var(--unrollMinimalHeight);
  overflow: hidden;
  border-style: solid;
  border-width: 2px;
  border-color: #b6c8d8;
  background-color: #fff;
  border-radius: 5px;
  display: flex;
  flex-wrap: wrap;
  transition: 0.2s ease border-color, 0.2s ease-in-out height;
}
.surchargesUnroll__values:hover {
  border-color: #178aef;
  box-shadow: 0 0 7px rgba(23, 138, 239, 0.5);
}
.surchargesUnroll__value {
  display: flex;
  width: 100%;
  align-items: center;
  width: 100%;
  min-height: var(--unrollMinimalHeight);
  justify-content: space-between;
  cursor: pointer;
  padding: 5px 10px;
  padding-right: 30px;
  transition: 0.2s ease background-color;
  column-gap: 10px;
  border-top: 1px solid #eee;
  background-color: #f7f8fa;
}
.surchargesUnroll__value:hover {
  background-color: #e7eaf0;
}
.surchargesUnroll__value.selected {
  order: -1;
  border-top: 0;
  background-color: #fff;
  background-image: url("https://i.binargon.cz/common/rgba(59,59,59,1)/selecbox-dropdown.svg");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px auto;
}
.surchargesUnroll__container {
  max-width: calc(100% - 40px);
}
.surchargesUnroll__name {
  font-weight: 500;
  overflow: hidden;
  width: 100%;
}
.surchargesUnroll__price {
  font-weight: 500;
  font-size: 13px;
  margin-top: 3px;
  color: #178aef;
}
.surchargesUnroll__radio {
  display: none;
}
.surchargesUnroll__image:hover + .surchargesUnroll__imageLarge {
  height: 300px;
  border: 2px solid #178aef;
  opacity: 1;
}
.surchargesUnroll__imageLarge {
  height: 0;
  width: 300px;
  opacity: 0;
  transition: ease height 0.2s, ease opacity 0.3s;
  position: absolute;
  border: 0;
  border-radius: 5px;
  align-self: baseline;
  z-index: 5;
}
@media (max-width: 1429px) {
  .surchargesUnroll__imageLarge {
    display: none;
  }
}
.topProducers {
  margin: 80px 0;
}
.topProducers__items {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}
.topProducers__item-image {
  filter: grayscale(1);
  transition: 0.2s ease-in-out filter;
  vertical-align: top;
}
.topProducers__item-image:hover {
  filter: grayscale(0);
}
select.unitSelect {
  height: 54px;
  border: 0;
  grid-row: 1;
  grid-column: 2;
  width: 100%;
}
.unitSelect--unit {
  display: flex;
  align-items: center;
}
