@charset "UTF-8";
.product-card {
  position: relative;
  width: 200px;
  z-index: 1;
}

.product-card > .arrow-link {
  margin-top: 15px;
  display: inline-block;
  z-index: 2;
}

.product-card .inner {
  font-size: 0px;
  line-height: 0px;
  text-decoration: none;
  color: #313b4f;
  background: #ffffff;
}

.product-card .inner .image-outer {
  display: flex;
  width: 100%;
  height: 180px;
  position: relative;
  justify-content: center;
  align-items: center;
}

.product-card .inner .image-outer.small {
  height: 120px;
}

.product-card .inner .image-outer .tags-container {
  position: absolute;
  top: 0px;
  left: 0px;
}

.product-card .inner .image-outer .tags-container > span {
  display: block;
}

.product-card .inner .image-outer .tags-container .product-tag, .product-card .inner .image-outer .tags-container .warranty-tag {
  margin-bottom: 5px;
}

.product-card .inner .image-outer .tags-container .product-tag {
  margin-right: 5px;
}

.product-card .inner .image-outer img {
  max-height: 100%;
  margin: auto;
}

.product-card .inner .text-content {
  margin-top: 8px;
  width: 100%;
  display: block;
}

.product-card .inner .text-content .name-outer {
  height: 60px;
  text-decoration: none;
  color: #313b4f;
  overflow: hidden;
  display: block;
}

.product-card .inner .text-content .name-outer h3, .product-card .inner .text-content .name-outer .category-name {
  display: inline;
  font-size: 14px;
  line-height: 20px;
}

.product-card .inner .text-content .name-outer h3 {
  margin: 0px;
}

.product-card .inner .text-content .name-outer .title {
  font-weight: 700;
}

.product-card .inner .text-content .name-outer a {
  text-decoration: none;
  color: #313b4f;
}

.product-card .inner .storage-row {
  display: flex;
  align-items: center;
  margin-top: 7px;
  margin-bottom: 7px;
}

.product-card .inner .storage-row .storage-info {
  margin-right: 14px;
}

.product-card .inner .storage-row .storage-info-btn {
  font-size: 12px;
  line-height: 16px;
  text-decoration: underline;
  cursor: pointer;
}

.product-card .inner .storage-info {
  display: flex;
  align-items: center;
  height: 16px;
  color: #09B53E;
}

.product-card .inner .storage-info.in-stock {
  color: #09B53E;
}

.product-card .inner .storage-info.available {
  color: #6E7583;
}

.product-card .inner .storage-info.to-order {
  color: #F4A437;
}

.product-card .inner .storage-info.sold-out {
  color: #da0d0e;
}

.product-card .inner .storage-info .icon {
  margin-right: 3px;
}

.product-card .inner .storage-info .text {
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
}

.product-card .inner .bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 44px;
}

.product-card .inner .price-content {
  display: block;
}

.product-card .inner .price-content .row {
  display: block;
  font-size: 12px;
  line-height: 16px;
}

.product-card .inner .price-content .row .original-price {
  position: relative;
  display: inline-block;
}

.product-card .inner .price-content .row .original-price:before {
  content: '';
  width: 100%;
  height: 1px;
  background: #da0d0e;
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  transform: rotate(7deg) translateY(7px);
}

.product-card .inner .price-content .row.sell-price-row {
  display: inline-flex;
  align-items: flex-end;
  letter-spacing: 0.2px;
}

.product-card .inner .price-content .row.sell-price-row .price {
  margin-left: 4px;
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
}

.product-card .inner .hover-content {
  display: none;
}

.product-card .inner .rating-content {
  display: flex;
  align-items: center;
}

.product-card .inner .rating-content .stars {
  display: flex;
  margin-right: 6px;
}

.product-card .inner .rating-content .stars .icon {
  margin-right: 2px;
  color: #da0d0e;
}

.product-card .inner .rating-content .stars .icon.gray {
  color: #CBCBCB;
}

.product-card .inner .rating-content .stars .icon:last-of-type {
  margin-right: 0px;
}

.product-card .inner .rating-content .stars.star-0 .icon {
  color: #CBCBCB;
}

.product-card .inner .rating-content .stars.star-4 .icon:nth-of-type(5) {
  color: #CBCBCB;
}

.product-card .inner .rating-content .stars.star-3 .icon:nth-of-type(5), .product-card .inner .rating-content .stars.star-3 .icon:nth-of-type(4) {
  color: #CBCBCB;
}

.product-card .inner .rating-content .stars.star-2 .icon:nth-of-type(5), .product-card .inner .rating-content .stars.star-2 .icon:nth-of-type(4), .product-card .inner .rating-content .stars.star-2 .icon:nth-of-type(3) {
  color: #CBCBCB;
}

.product-card .inner .rating-content .stars.star-1 .icon {
  color: #CBCBCB;
}

.product-card .inner .rating-content .stars.star-1 .icon:first-of-type {
  color: #da0d0e;
}

.product-card .inner .rating-content .text {
  font-size: 12px;
  line-height: 17px;
}

.product-card .inner .parameters {
  display: block;
}

.product-card .inner .parameters .row {
  display: block;
  font-size: 12px;
  line-height: 16px;
}

.product-card .inner .parameters .row .value {
  font-weight: 700;
}

.product-card .inner .parameters .row sup {
  font-size: 8px;
}

.product-card .inner .parameters .row a {
  color: #313b4f;
  text-decoration: none;
}

.product-card .inner .description {
  display: block;
  font-size: 12px;
  line-height: 18px;
}

.product-card:not(.lying-card) .manufacturer-image {
  display: none;
}

.product-card:not(.lying-card) .bottom-content .price-content {
  width: calc(100% - 50px);
}

.product-card:not(.lying-card) .button {
  padding: 0px;
  width: 44px;
  height: 44px;
}

.product-card:not(.lying-card) .button .text {
  display: none;
}

.product-card:not(.lying-card) .hover-content {
  margin-top: 16px;
  padding-top: 21px;
  border-top: 1px solid #e3e7ea;
}

.product-card:not(.lying-card) .parameters {
  margin-top: 13px;
}

.product-card:not(.lying-card) .description {
  margin-top: 10px;
}

.product-card:not(.lying-card) .details-button-row {
  display: none;
  justify-content: flex-start;
  align-items: center;
  color: #da0d0e;
}

.product-card:not(.lying-card) .details-button-row .text {
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  letter-spacing: 0.2px;
  margin-right: 7px;
}

.product-card:not(.lying-card) .details-button-row .icon {
  width: 9px;
  height: 6px;
  transition: transform 0.25s ease;
}

.product-card:not(.lying-card) .details-button-row.opened .icon {
  transform: rotate(180deg);
}

.product-card.lying-card .manufacturer-image img {
  height: 32px;
}

.product-card.lying-card .inner {
  display: flex;
  position: relative;
  width: calc(100% + 60px);
  left: -30px;
  top: 0px;
  padding: 30px;
}

.product-card.lying-card .inner .image-outer {
  width: 180px;
}

.product-card.lying-card .inner .details-button-row {
  display: none;
}

.product-card.lying-card .inner .text-content {
  width: 260px;
  padding: 0px 38px 0px 22px;
  margin: 0px;
}

.product-card.lying-card .inner .text-content .bottom-content {
  position: absolute;
  right: 30px;
  bottom: 30px;
}

.product-card.lying-card .inner .text-content .bottom-content .button {
  margin-left: 23px;
}

.product-card.lying-card .inner .text-content .storage-row {
  position: absolute;
  bottom: 55px;
  left: 470px;
  margin: 0px;
}

.product-card.lying-card .inner .hover-content {
  width: calc(100% - 440px);
  display: flex;
  flex-direction: column;
  padding-top: 0px;
  margin-top: 0px;
  border-top: none;
  padding-bottom: 74px;
}

.product-card.lying-card .inner .hover-content .rating-content {
  position: absolute;
  bottom: 30px;
  left: 470px;
}

.product-card.lying-card .inner .hover-content .description {
  height: 54px;
  overflow: hidden;
  order: 1;
}

.product-card.lying-card .inner .hover-content .parameters {
  margin-top: 8px;
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 20px;
       column-gap: 20px;
  order: 2;
}

.product-card.lying-card .inner .hover-content .parameters > .row {
  margin-bottom: 6px;
  display: inline-block;
  width: 100%;
}

.product-card.lying-card .inner .hover-content .parameters .special-parameter {
  position: absolute;
  left: 232px;
  bottom: 66px;
  width: 200px;
}

.product-card.lying-card .inner .hover-content .parameters .special-parameter .row {
  margin-top: 6px;
}

.product-card.with-arrow-link {
  position: relative;
  padding-top: 261px;
}

.product-card.with-arrow-link .inner {
  top: 0px;
  left: 0px;
  position: absolute;
}

@media screen and (hover: hover) and (min-width: 1025px) {
  .product-card:hover {
    z-index: 2;
  }
  .product-card:not(.lying-card).with-arrow-link .inner:hover, .product-card:not(.lying-card).upsell-product-card .inner:hover {
    z-index: 3;
    padding: 15px;
    left: -15px;
    top: -15px;
    width: calc(100% + 30px);
  }
  .product-card .inner .storage-row .storage-info-btn:hover {
    text-decoration: none;
  }
  .product-card .inner:hover {
    z-index: 3;
    padding: 30px;
    left: -30px;
    width: calc(100% + 60px);
    box-shadow: 0 0 21px 6px rgba(0, 0, 0, 0.08);
  }
  .product-card:not(.lying-card) .inner:hover {
    position: absolute;
    top: -30px;
  }
  .product-card:not(.lying-card) .inner:hover:not(.without-parameter) .hover-content {
    display: block;
  }
  .product-card.lying-card .inner:hover {
    position: relative;
    top: 0px;
  }
}

@media screen and (hover: hover) and (min-width: 1025px) and (max-width: 1300px) {
  .product-card:not(.lying-card) .inner:hover {
    padding: 20px;
    left: -20px;
    top: -20px;
    width: calc(100% + 40px);
  }
}

@media screen and (-ms-high-contrast: active) and (min-width: 1025px) {
  .product-card:hover {
    z-index: 2;
  }
  .product-card:not(.lying-card).with-arrow-link .inner:hover, .product-card:not(.lying-card).upsell-product-card .inner:hover {
    z-index: 3;
    padding: 15px;
    left: -15px;
    top: -15px;
    width: calc(100% + 30px);
  }
  .product-card .inner .storage-row .storage-info-btn:hover {
    text-decoration: none;
  }
  .product-card .inner:hover {
    z-index: 3;
    padding: 30px;
    left: -30px;
    width: calc(100% + 60px);
    box-shadow: 0 0 21px 6px rgba(0, 0, 0, 0.08);
  }
  .product-card:not(.lying-card) .inner:hover {
    position: absolute;
    top: -30px;
  }
  .product-card:not(.lying-card) .inner:hover:not(.without-parameter) .hover-content {
    display: block;
  }
  .product-card.lying-card .inner:hover {
    position: relative;
    top: 0px;
  }
}

@media screen and (-ms-high-contrast: active) and (min-width: 1025px) and (max-width: 1300px) {
  .product-card:not(.lying-card) .inner:hover {
    padding: 20px;
    left: -20px;
    top: -20px;
    width: calc(100% + 40px);
  }
}

@media screen and (max-width: 1279px) {
  .product-card.lying-card .inner .text-content {
    padding: 0px 20px 0px 20px;
    width: 220px;
  }
  .product-card.lying-card .inner .text-content .bottom-content .button {
    margin-left: 15px;
    width: 44px;
    height: 44px;
    padding: 0px;
    font-size: 0px;
    line-height: 0px;
    padding-right: 1px;
  }
  .product-card.lying-card .inner .text-content .bottom-content .button .text {
    display: none;
  }
  .product-card.lying-card .inner .text-content .storage-row {
    left: 430px;
  }
  .product-card.lying-card .inner .hover-content {
    width: calc(100% - 400px);
  }
  .product-card.lying-card .inner .hover-content .rating-content {
    left: 430px;
  }
  .product-card.lying-card .inner .hover-content .parameters .special-parameter {
    width: 180px;
  }
}

@media screen and (max-width: 1120px) {
  .product-card.lying-card .inner .text-content .storage-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .product-card.lying-card .inner .text-content .storage-row .storage-info {
    margin: 0px;
  }
  .product-card.lying-card .inner .text-content .storage-row .storage-info-btn {
    margin-top: 5px;
  }
}

@media screen and (max-width: 600px) {
  .product-card {
    width: 100%;
  }
  .product-card.with-arrow-link {
    padding-top: 0px;
    border-bottom: 1px solid #e3e7ea;
    padding-bottom: 15px;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
  .product-card.with-arrow-link .inner, .product-card.with-arrow-link .inner.without-parameters {
    position: relative;
    padding-bottom: 0px;
    border-bottom: 0px;
  }
  .product-card.with-arrow-link > .arrow-link {
    margin-right: 20px;
    width: calc(100% - 145px);
  }
  .product-card .inner {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    border-bottom: 1px solid #e3e7ea;
    padding: 15px 0px 0px 0px;
    width: 100%;
  }
  .product-card .inner.without-parameters {
    padding-bottom: 15px;
  }
  .product-card .inner.without-parameters .text-content {
    padding-bottom: 0px;
  }
  .product-card .inner .image-outer {
    margin-left: 20px;
    width: 85px;
    height: 85px;
    min-width: 85px;
    position: relative;
  }
  .product-card .inner .image-outer.small {
    height: auto;
  }
  .product-card .inner .image-outer .tags-container {
    height: 100%;
    width: 100%;
  }
  .product-card .inner .image-outer .tags-container .tags-bottom {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    transform: translateY(calc(100% + 7px));
  }
  .product-card .inner .text-content {
    width: calc(100% - 105px);
    padding: 0px 20px 8px 20px;
  }
  .product-card .inner .details-button-row {
    margin-top: 9px;
    display: flex;
  }
  .product-card .inner .hover-content {
    display: none;
    background: #f4f5f8;
    padding: 15px 20px 15px 20px;
    border: none;
    margin: 0px;
  }
  .product-card .inner .hover-content .parameters {
    display: block;
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 20px;
         column-gap: 20px;
    letter-spacing: -0.1px;
  }
  .product-card .inner .hover-content .parameters .row {
    display: inline-block;
    margin-bottom: 6px;
  }
}

@media screen and (max-width: 359px) {
  .product-card .inner .bottom-content .price-content {
    width: calc(100% - 40px);
  }
  .product-card .inner .bottom-content .price-content .row.sell-price-row .price {
    font-size: 16px;
    line-height: 18px;
  }
  .product-card .inner .bottom-content .button {
    width: 34px;
    height: 34px;
  }
  .product-card .inner .bottom-content .button .cart-icon {
    width: 18px;
    height: 15px;
  }
}

/*! nouislider - 9.2.0 - 2017-01-11 10:35:35 */
/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  box-sizing: border-box;
}

.noUi-target {
  position: relative;
  direction: ltr;
}

.noUi-base {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  /* Fix 401 */
}

.noUi-connect {
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
}

.noUi-origin {
  position: absolute;
  height: 0;
  width: 0;
}

.noUi-handle {
  position: relative;
  z-index: 1;
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  transition: top 0.3s, right 0.3s, bottom 0.3s, left 0.3s;
}

.noUi-state-drag * {
  cursor: inherit !important;
}

/* Painting and performance;
  * Browsers can paint handles in their own layer.
  */
.noUi-base,
.noUi-handle {
  transform: translate3d(0, 0, 0);
}

/* Slider size and handle placement;
  */
.noUi-horizontal {
  height: 2px;
}

.noUi-horizontal .noUi-handle {
  width: 20px;
  height: 20px;
  left: -3px;
  top: -8px;
}

.noUi-horizontal .noUi-handle.noUi-handle-upper {
  left: -17px;
}

/* Styling;
  */
.noUi-target {
  background: #e3e7ea;
  border-radius: 4px;
}

.noUi-connect {
  background: #da0d0e;
  transition: background 450ms;
  height: 3px;
}

/* Handles and cursors;
  */
.noUi-draggable {
  cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}

.noUi-handle {
  border-radius: 50%;
  border: 3px solid #ffffff;
  background: #da0d0e;
  cursor: default;
}

/* Disabled state;
  */
[disabled] .noUi-connect {
  background: #B8B8B8;
}

[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}

/* Base;
  *
  */
.noUi-pips,
.noUi-pips * {
  box-sizing: border-box;
}

.noUi-pips {
  position: absolute;
  color: #999;
}

/* Values;
  *
  */
.noUi-value {
  position: absolute;
  text-align: center;
}

.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}

/* Markings;
  *
  */
.noUi-marker {
  position: absolute;
  background: #CCC;
}

.noUi-marker-sub {
  background: #AAA;
}

.noUi-marker-large {
  background: #AAA;
}

/* Horizontal layout;
  *
  */
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}

.noUi-value-horizontal {
  transform: translate3d(-50%, 50%, 0);
}

.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}

.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}

.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}

/* Vertical layout;
  *
  */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}

.noUi-value-vertical {
  transform: translate3d(0, 50%, 0);
  padding-left: 25px;
}

.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}

.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}

.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}

.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
}

.noUi-horizontal .noUi-tooltip {
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}

.noUi-vertical .noUi-tooltip {
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}

/* This is the core CSS of Tooltipster */
/* GENERAL STRUCTURE RULES (do not edit this section) */
.tooltipster-base {
  /* this ensures that a constrained height set by functionPosition,
	if greater that the natural height of the tooltip, will be enforced
	in browsers that support display:flex */
  display: flex;
  pointer-events: none;
  /* this may be overriden in JS for fixed position origins */
  position: absolute;
}

.tooltipster-box {
  /* see .tooltipster-base. flex-shrink 1 is only necessary for IE10-
	and flex-basis auto for IE11- (at least) */
  flex: 1 1 auto;
}

.tooltipster-content {
  /* prevents an overflow if the user adds padding to the div */
  box-sizing: border-box;
  /* these make sure we'll be able to detect any overflow */
  max-height: 100%;
  max-width: 100%;
  overflow: auto;
}

.tooltipster-ruler {
  /* these let us test the size of the tooltip without overflowing the window */
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  visibility: hidden;
}

/* ANIMATIONS */
/* Open/close animations */
/* fade */
.tooltipster-fade {
  opacity: 0;
  transition-property: opacity;
}

.tooltipster-fade.tooltipster-show {
  opacity: 1;
}

/* grow */
.tooltipster-grow {
  transform: scale(0, 0);
  transition-property: transform;
  -webkit-backface-visibility: hidden;
}

.tooltipster-grow.tooltipster-show {
  transform: scale(1, 1);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

/* swing */
.tooltipster-swing {
  opacity: 0;
  transform: rotateZ(4deg);
  transition-property: transform;
}

.tooltipster-swing.tooltipster-show {
  opacity: 1;
  transform: rotateZ(0deg);
  transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
}

/* fall */
.tooltipster-fall {
  transition-property: top;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.tooltipster-fall.tooltipster-initial {
  top: 0 !important;
}

.tooltipster-fall.tooltipster-dying {
  transition-property: all;
  top: 0 !important;
  opacity: 0;
}

/* slide */
.tooltipster-slide {
  transition-property: left;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.tooltipster-slide.tooltipster-initial {
  left: -40px !important;
}

.tooltipster-slide.tooltipster-dying {
  transition-property: all;
  left: 0 !important;
  opacity: 0;
}

/* Update animations */
/* We use animations rather than transitions here because
 transition durations may be specified in the style tag due to
 animationDuration, and we try to avoid collisions and the use
 of !important */
/* fade */
@-webkit-keyframes tooltipster-fading {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes tooltipster-fading {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.tooltipster-update-fade {
  -webkit-animation: tooltipster-fading 400ms;
          animation: tooltipster-fading 400ms;
}

/* rotate */
@-webkit-keyframes tooltipster-rotating {
  25% {
    transform: rotate(-2deg);
  }
  75% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes tooltipster-rotating {
  25% {
    transform: rotate(-2deg);
  }
  75% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(0);
  }
}

.tooltipster-update-rotate {
  -webkit-animation: tooltipster-rotating 600ms;
          animation: tooltipster-rotating 600ms;
}

/* scale */
@-webkit-keyframes tooltipster-scaling {
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes tooltipster-scaling {
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.tooltipster-update-scale {
  -webkit-animation: tooltipster-scaling 600ms;
          animation: tooltipster-scaling 600ms;
}

/**
 * DEFAULT STYLE OF THE SIDETIP PLUGIN
 * 
 * All styles are "namespaced" with .tooltipster-sidetip to prevent
 * conflicts between plugins.
 */
/* .tooltipster-box */
.tooltipster-sidetip .tooltipster-box {
  background: #565656;
  border: 2px solid black;
  border-radius: 4px;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-box {
  margin-top: 8px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-box {
  margin-right: 8px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-box {
  margin-left: 8px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-box {
  margin-bottom: 8px;
}

/* .tooltipster-content */
.tooltipster-sidetip .tooltipster-content {
  color: white;
  line-height: 18px;
  padding: 6px 14px;
}

/* .tooltipster-arrow : will keep only the zone of .tooltipster-arrow-uncropped that
corresponds to the arrow we want to display */
.tooltipster-sidetip .tooltipster-arrow {
  overflow: hidden;
  position: absolute;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
  height: 10px;
  /* half the width, for centering */
  margin-left: -10px;
  top: 0;
  width: 20px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow {
  height: 20px;
  margin-top: -10px;
  right: 0;
  /* top 0 to keep the arrow from overflowing .tooltipster-base when it has not
	been positioned yet */
  top: 0;
  width: 10px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow {
  height: 20px;
  margin-top: -10px;
  left: 0;
  /* same as .tooltipster-left .tooltipster-arrow */
  top: 0;
  width: 10px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow {
  bottom: 0;
  height: 10px;
  margin-left: -10px;
  width: 20px;
}

/* common rules between .tooltipster-arrow-background and .tooltipster-arrow-border */
.tooltipster-sidetip .tooltipster-arrow-background, .tooltipster-sidetip .tooltipster-arrow-border {
  height: 0;
  position: absolute;
  width: 0;
}

/* .tooltipster-arrow-background */
.tooltipster-sidetip .tooltipster-arrow-background {
  border: 10px solid transparent;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
  border-bottom-color: #565656;
  left: 0;
  top: 3px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
  border-left-color: #565656;
  left: -3px;
  top: 0;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
  border-right-color: #565656;
  left: 3px;
  top: 0;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
  border-top-color: #565656;
  left: 0;
  top: -3px;
}

/* .tooltipster-arrow-border */
.tooltipster-sidetip .tooltipster-arrow-border {
  border: 10px solid transparent;
  left: 0;
  top: 0;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
  border-bottom-color: black;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border {
  border-left-color: black;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border {
  border-right-color: black;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
  border-top-color: black;
}

/* tooltipster-arrow-uncropped */
.tooltipster-sidetip .tooltipster-arrow-uncropped {
  position: relative;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-uncropped {
  top: -10px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-uncropped {
  left: -10px;
}

.icon, .image-icon {
  display: block;
  font-size: 0px;
  line-height: 0px;
  letter-spacing: 0px;
}

.image-icon img {
  width: 100%;
  display: block;
}

/* 
    SVG elemek
*/
.netkazan-logo {
  width: 152px;
  height: 40px;
}

.mobile-menu-icon {
  width: 18px;
  height: 16px;
}

.profil-icon {
  width: 20px;
  height: 20px;
}

.footer-profil-icon {
  width: 18px;
  height: 18px;
}

.logged-in-profil-icon {
  width: 23px;
  height: 20px;
}

.cart-icon {
  width: 20px;
  height: 17px;
}

.phone-icon {
  width: 15px;
  height: 17px;
}

.arrow-down {
  width: 12px;
  height: 7px;
}

.search-icon {
  width: 19px;
  height: 19px;
}

.action-icon {
  width: 15px;
  height: 15px;
}

.evhonlapja-icon {
  width: 19px;
  height: 31px;
}

.orszag-boltja-icon {
  width: 45px;
  height: 27px;
}

.check-icon {
  width: 16px;
  height: 16px;
}

.shipping-tag-icon {
  width: 25px;
  height: 15px;
}

.arrow-right {
  width: 5px;
  height: 8px;
}

.fast-shipping-icon {
  width: 24px;
  height: 17px;
}

.quality-team-mate-icon {
  width: 19px;
  height: 16px;
}

.store-icon {
  width: 17px;
  height: 15px;
}

.competitive-prices-icon {
  width: 17px;
  height: 17px;
}

.coupon-discount-icon {
  width: 19px;
  height: 19px;
}

.personal-receipt-icon {
  width: 23px;
  height: 19px;
}

.original-products-icon {
  width: 18px;
  height: 14px;
}

.payment-transfer-icon {
  width: 64px;
  height: 37px;
}

.payment-card-icon {
  width: 61px;
  height: 56px;
}

.takeover-bp-icon,
.takeover-nyiregyhaza-icon {
  width: 56px;
  height: 49px;
}

.facebook-icon {
  width: 34px;
  height: 34px;
}

.google-company-icon {
  width: 38px;
  height: 33px;
}

.google-icon {
  width: 32px;
  height: 33px;
}

.arukereso-star-icon {
  width: 11px;
  height: 11px;
}

.arukereso-star-icon.big {
  width: 14px;
  height: 14px;
}

.close-icon {
  width: 12px;
  height: 11px;
}

.mobile-menu-arrow {
  width: 6px;
  height: 11px;
}

.horizontal-view-icon {
  width: 17px;
  height: 15px;
}

.grid-view-icon {
  width: 17px;
  height: 17px;
}

.rating-star-icon {
  width: 16px;
  height: 17px;
}

.star-icon {
  width: 10px;
  height: 10px;
}

.category-arrow-icon {
  width: 9px;
  height: 8px;
}

.pager-arrow {
  width: 7px;
  height: 13px;
}

.pager-double-arrow {
  width: 13px;
  height: 13px;
}

.tooltip-icon {
  width: 16px;
  height: 16px;
}

.success-list-icon {
  width: 16px;
  height: 16px;
}

.remodal-close-icon {
  width: 18px;
  height: 17px;
}

.plus-icon {
  width: 9px;
  height: 9px;
}

.modify-icon {
  width: 20px;
  height: 20px;
}

.logout-icon {
  width: 14px;
  height: 12px;
}

.discount-icon {
  width: 17px;
  height: 17px;
}

.exchange-icon {
  width: 35px;
  height: 34px;
}

.exchange-arrow-icon {
  width: 26px;
  height: 12px;
}

.youtube-video-icon {
  width: 30px;
  height: 20px;
}

.not-available-icon {
  width: 16px;
  height: 16px;
}

/*
    Képek
*/
.arukereso-logo {
  width: 90px;
  height: 15px;
}

.shopmania-logo {
  width: 84px;
  height: 16px;
}

.technoform-logo {
  width: 84px;
  height: 37px;
}

.best-machinery-logo {
  width: 49px;
  height: 25px;
}

.argep-logo {
  width: 52px;
  height: 26px;
}

.arukereso-round-logo {
  width: 93px;
  height: 93px;
}

.mail-icon {
  width: 20px;
  height: 15px;
}

.search-box-outer {
  background: #ffffff;
  position: absolute;
  width: 510px;
  height: 40px;
  top: 7px;
  left: 0px;
  right: 0px;
  margin: auto;
  border-radius: 2px;
}

.search-box-outer > form {
  padding: 0px 14px 0px 0px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}

.search-box-outer .field {
  width: calc(100% - 19px);
  border: none;
  height: 100%;
  letter-spacing: 0.2px;
  font-size: 12px;
  line-height: 18px;
  padding: 12px 14px 10px 14px;
}

.search-box-outer .search-button {
  width: 19px;
  height: 19px;
  border: none;
  background: transparent;
  padding: 0px;
  margin: 0px;
  box-shadow: none;
  outline: none;
  font-size: 0px;
  line-height: 0px;
  color: #da0d0e;
}

.search-box-outer #pf-203c796f-c33e-4204-9bce-8be0348027f3.pf-suggestion-container {
  width: calc(100% + 480px);
  left: 0px;
  transform: translateX(-240px);
  top: 48px;
  background: #FFFFFF;
  box-shadow: 0 6px 20px 6px rgba(49, 59, 79, 0.2);
  box-sizing: border-box;
  padding: 27px 42px 34px 42px;
  border: none;
}

.search-box-outer #pf-203c796f-c33e-4204-9bce-8be0348027f3.pf-suggestion-container.open {
  display: flex;
}

.search-box-outer #pf-203c796f-c33e-4204-9bce-8be0348027f3.pf-suggestion-container.open:before {
  width: 0px;
  height: 0px;
  margin: 0px;
  border-style: solid;
  border-width: 0px 8px 8px 8px;
  border-color: transparent transparent #ffffff transparent;
  left: 270px;
}

.search-box-outer #pf-203c796f-c33e-4204-9bce-8be0348027f3.pf-suggestion-container.open:after {
  display: none !important;
}

.search-box-outer #pf-203c796f-c33e-4204-9bce-8be0348027f3.pf-suggestion-container .pf-col-0 {
  width: 190px;
  border: none;
  float: none;
}

.search-box-outer #pf-203c796f-c33e-4204-9bce-8be0348027f3.pf-suggestion-container .pf-group-title {
  padding: 0px 8px 0px 8px;
  font-size: 16px;
  line-height: 18px;
  font-weight: 700;
  color: #313b4f;
  text-transform: none;
  margin-bottom: 6px;
  border-bottom: none;
}

.search-box-outer #pf-203c796f-c33e-4204-9bce-8be0348027f3.pf-suggestion-container .pf-suggestion-list li .pf-suggestion {
  padding: 10px 8px 10px 8px;
  border: none;
  font-weight: 400;
  color: #313b4f;
  font-size: 14px;
  line-height: 18px;
}

.search-box-outer #pf-203c796f-c33e-4204-9bce-8be0348027f3.pf-suggestion-container .pf-suggestion-list li .pf-suggestion.pf-selected {
  background: #e3e7ea;
}

.search-box-outer #pf-203c796f-c33e-4204-9bce-8be0348027f3.pf-suggestion-container .pf-suggestion-list li .pf-suggestion .pf-suggestion-body .pf-suggestion-body-text1 {
  font-size: 14px;
  line-height: 18px;
  color: #da0d0e;
  font-weight: 700;
}

.search-box-outer #pf-203c796f-c33e-4204-9bce-8be0348027f3.pf-suggestion-container .pf-suggestion-list li .pf-suggestion .pf-suggestion-body .pf-suggestion-body-text1 span.pf-highlight {
  font-weight: 400;
  color: #313b4f;
}

.search-box-outer #pf-203c796f-c33e-4204-9bce-8be0348027f3.pf-suggestion-container .pf-col-1 {
  width: calc(100% - 230px);
  margin-left: 40px;
  border: none;
  float: none;
}

.search-box-outer #pf-203c796f-c33e-4204-9bce-8be0348027f3.pf-suggestion-container .pf-col-1 .pf-suggestion-list {
  padding: 0px;
}

.search-box-outer #pf-203c796f-c33e-4204-9bce-8be0348027f3.pf-suggestion-container .pf-col-1 .pf-suggestion-list li {
  border-bottom: 1px solid #e3e7ea;
}

.search-box-outer #pf-203c796f-c33e-4204-9bce-8be0348027f3.pf-suggestion-container .pf-col-1 .pf-suggestion-list li:last-of-type {
  border-bottom: 0px;
}

.search-box-outer #pf-203c796f-c33e-4204-9bce-8be0348027f3.pf-suggestion-container .pf-col-1 .pf-suggestion-list li .pf-suggestion {
  padding: 8px 8px 8px 8px;
  align-items: center;
  display: flex;
}

.search-box-outer #pf-203c796f-c33e-4204-9bce-8be0348027f3.pf-suggestion-container .pf-col-1 .pf-suggestion-list li .pf-suggestion .pf-suggestion-left {
  width: 55px;
  min-width: 55px;
  padding: 0px;
  background: #ffffff;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-box-outer #pf-203c796f-c33e-4204-9bce-8be0348027f3.pf-suggestion-container .pf-col-1 .pf-suggestion-list li .pf-suggestion .pf-suggestion-left img {
  margin: auto;
  max-width: 100%;
  max-height: 55px;
}

.search-box-outer #pf-203c796f-c33e-4204-9bce-8be0348027f3.pf-suggestion-container .pf-col-1 .pf-suggestion-list li .pf-suggestion .pf-suggestion-body {
  display: block;
  width: calc(100% - 150px);
  padding: 17px 5px 17px 20px;
}

.search-box-outer #pf-203c796f-c33e-4204-9bce-8be0348027f3.pf-suggestion-container .pf-col-1 .pf-suggestion-list li .pf-suggestion .pf-suggestion-right {
  width: 95px;
  display: block;
}

.search-box-outer #pf-203c796f-c33e-4204-9bce-8be0348027f3.pf-suggestion-container .pf-col-1 .pf-suggestion-list li .pf-suggestion .pf-suggestion-right .pf-suggestion-right-price {
  font-size: 16px;
  line-height: 18px;
  font-weight: 700;
  color: #313b4f;
}

.search-box-outer #pf-203c796f-c33e-4204-9bce-8be0348027f3.pf-suggestion-container .pf-col-1 .pf-suggestion-list li .pf-suggestion .pf-suggestion-right .pf-suggestion-right-unit-price {
  color: #09B53E;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  margin-top: 5px;
  position: relative;
  display: inline-block;
}

.search-box-outer #pf-203c796f-c33e-4204-9bce-8be0348027f3.pf-suggestion-container .pf-col-1 .pf-suggestion-list li .pf-suggestion .pf-suggestion-right .pf-suggestion-right-unit-price:before {
  width: 16px;
  height: 16px;
  content: '';
  display: block;
  font-size: 0px;
  line-height: 0px;
  background: url("../../assets/img/svg/green-list-icon.svg") no-repeat center center/100% auto;
  position: absolute;
  top: 0px;
  left: 0px;
  transform: translateX(-19px);
}

@media screen and (max-width: 1180px) {
  .search-box-outer {
    margin: auto 0px auto 0px;
    left: 220px;
    width: calc(100% - 550px);
  }
  .search-box-outer #pf-203c796f-c33e-4204-9bce-8be0348027f3.pf-suggestion-container {
    width: calc(100% + 300px);
    transform: translateX(-100px);
    padding: 27px 28px 27px 28px;
  }
  .search-box-outer #pf-203c796f-c33e-4204-9bce-8be0348027f3.pf-suggestion-container.open:before {
    left: 130px;
  }
  .search-box-outer #pf-203c796f-c33e-4204-9bce-8be0348027f3.pf-suggestion-container .pf-col-0 {
    max-height: calc(100vh - 165px);
    overflow-x: hidden;
    overflow-y: auto;
  }
  .search-box-outer #pf-203c796f-c33e-4204-9bce-8be0348027f3.pf-suggestion-container .pf-col-1 {
    margin-left: 28px;
    width: calc(100% - 218px);
    max-height: calc(100vh - 165px);
    overflow-x: hidden;
    overflow-y: auto;
  }
  .main-header.fixed .search-box-outer {
    left: 315px;
    width: calc(100% - 645px);
  }
}

@media (pointer: coarse) {
  .search-box-outer, .main-header.fixed .search-box-outer {
    width: calc(100% - 547px);
    left: 223px;
  }
}

@media screen and (max-width: 1024px) {
  .search-box-outer, .main-header.fixed .search-box-outer {
    width: calc(100% - 547px);
    left: 223px;
  }
}

@media screen and (max-width: 1023px) {
  .search-box-outer, .main-header.fixed .search-box-outer {
    width: calc(100% - 375px);
    margin: auto;
    right: auto;
  }
  .search-box-outer #pf-203c796f-c33e-4204-9bce-8be0348027f3.pf-suggestion-container, .main-header.fixed .search-box-outer #pf-203c796f-c33e-4204-9bce-8be0348027f3.pf-suggestion-container {
    width: calc(100vw - 60px);
    transform: translateX(-182px);
    max-height: calc(100vh - 155px);
  }
  .search-box-outer #pf-203c796f-c33e-4204-9bce-8be0348027f3.pf-suggestion-container.open:before, .main-header.fixed .search-box-outer #pf-203c796f-c33e-4204-9bce-8be0348027f3.pf-suggestion-container.open:before {
    left: 212px;
  }
  .search-box-outer #pf-203c796f-c33e-4204-9bce-8be0348027f3.pf-suggestion-container .pf-col-1, .main-header.fixed .search-box-outer #pf-203c796f-c33e-4204-9bce-8be0348027f3.pf-suggestion-container .pf-col-1 {
    margin-left: 28px;
    width: calc(100% - 218px);
  }
}

@media screen and (max-width: 600px) {
  .search-box-outer, .main-header.fixed .search-box-outer {
    display: flex;
    position: absolute;
    left: 0px;
    right: 0px;
    top: 50px;
    height: 54px;
    width: 100%;
    padding: 7px 20px 7px 20px;
    background: #e3e7ea;
  }
  .search-box-outer form, .main-header.fixed .search-box-outer form {
    background: #ffffff;
    border-radius: 2px;
    height: 40px;
    width: 100%;
  }
  .search-box-outer form .field, .main-header.fixed .search-box-outer form .field {
    height: 40px;
    padding: 11px 14px 11px 14px;
  }
  .search-box-outer #pf-203c796f-c33e-4204-9bce-8be0348027f3.pf-suggestion-container, .main-header.fixed .search-box-outer #pf-203c796f-c33e-4204-9bce-8be0348027f3.pf-suggestion-container {
    width: calc(100% + 20px);
    transform: translateX(-10px);
    padding: 15px 10px 20px 10px;
  }
  .search-box-outer #pf-203c796f-c33e-4204-9bce-8be0348027f3.pf-suggestion-container.open:before, .main-header.fixed .search-box-outer #pf-203c796f-c33e-4204-9bce-8be0348027f3.pf-suggestion-container.open:before {
    left: 0px;
    right: 0px;
    margin: auto;
  }
  .search-box-outer #pf-203c796f-c33e-4204-9bce-8be0348027f3.pf-suggestion-container .pf-col-1, .main-header.fixed .search-box-outer #pf-203c796f-c33e-4204-9bce-8be0348027f3.pf-suggestion-container .pf-col-1 {
    display: none;
  }
  .search-box-outer #pf-203c796f-c33e-4204-9bce-8be0348027f3.pf-suggestion-container .pf-col-0, .main-header.fixed .search-box-outer #pf-203c796f-c33e-4204-9bce-8be0348027f3.pf-suggestion-container .pf-col-0 {
    width: 100%;
  }
  .search-box-outer #pf-203c796f-c33e-4204-9bce-8be0348027f3.pf-suggestion-container .pf-group-title, .main-header.fixed .search-box-outer #pf-203c796f-c33e-4204-9bce-8be0348027f3.pf-suggestion-container .pf-group-title {
    font-size: 14px;
    padding: 0px 5px 0px 5px;
    margin-bottom: 8px;
  }
  .search-box-outer #pf-203c796f-c33e-4204-9bce-8be0348027f3.pf-suggestion-container .pf-suggestion-list li .pf-suggestion, .main-header.fixed .search-box-outer #pf-203c796f-c33e-4204-9bce-8be0348027f3.pf-suggestion-container .pf-suggestion-list li .pf-suggestion {
    padding: 5px 5px 5px 5px;
  }
  .search-box-outer #pf-203c796f-c33e-4204-9bce-8be0348027f3.pf-suggestion-container .pf-suggestion-list li .pf-suggestion .pf-suggestion-body .pf-suggestion-body-text1, .main-header.fixed .search-box-outer #pf-203c796f-c33e-4204-9bce-8be0348027f3.pf-suggestion-container .pf-suggestion-list li .pf-suggestion .pf-suggestion-body .pf-suggestion-body-text1 {
    font-size: 12px;
    line-height: 16px;
  }
}

.megamenu-container {
  position: absolute;
  top: 111px;
  left: 0px;
  right: 0px;
  z-index: 10;
}

.megamenu-container.always-open .megamenu, .megamenu-container.visible .megamenu {
  display: block;
}

.megamenu-container:after {
  content: '';
  background: #313b4f;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  width: 100%;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  display: block;
  z-index: 1;
  transition: opacity 0.25s ease;
  transition-delay: 50ms;
}

.megamenu-container.opened:after, .megamenu-container.visible:after {
  opacity: 0.6;
  visibility: visible;
}

.megamenu-container.opened .megamenu .megamenu-details, .megamenu-container.visible .megamenu .megamenu-details {
  display: flex;
}

.megamenu-container.opened .megamenu .megamenu-list-container, .megamenu-container.visible .megamenu .megamenu-list-container {
  box-shadow: none;
  border-right: 1px solid #e3e7ea;
}

.megamenu-container .megamenu {
  display: none;
  width: calc(100% - 60px);
  max-width: 1240px;
  margin: auto;
  position: relative;
  height: calc(100vh - 140px);
  max-height: 434px;
}

.megamenu-container .megamenu .menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.megamenu-container .megamenu .menu-item.active-item {
  color: #da0d0e;
}

.megamenu-container .megamenu .arrow-right {
  min-width: 5px;
  min-height: 8px;
  transform: translateY(7px);
}

.megamenu-container .megamenu .megamenu-list-container {
  height: 100%;
  overflow: auto;
  width: 285px;
  background: #ffffff;
  box-shadow: 0 4px 14px 1px rgba(0, 0, 0, 0.1);
  border-right: 1px solid #ffffff;
  position: relative;
  z-index: 4;
  transition: box-shadow 0.25s ease;
}

.megamenu-container .megamenu .megamenu-list-container .megamenu-list-outer {
  overflow-x: hidden;
  overflow-y: auto;
  padding: 27px 32px 20px 30px;
  width: 100%;
  height: 100%;
}

.megamenu-container .megamenu .megamenu-list-container:after {
  content: '';
  height: 45px;
  position: absolute;
  left: 0px;
  right: 8px;
  bottom: 0px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, white 100%);
}

.megamenu-container .megamenu .megamenu-list-container ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.megamenu-container .megamenu .megamenu-list-container ul li {
  margin-bottom: 15px;
  position: relative;
}

.megamenu-container .megamenu .megamenu-list-container ul li:last-of-type {
  margin-bottom: 20px;
  z-index: 10;
}

.megamenu-container .megamenu .megamenu-details {
  z-index: 3;
  width: calc(100% - 285px);
  height: 100%;
  overflow: hidden;
  display: none;
  background: #ffffff;
  position: absolute;
  top: 0px;
  left: 285px;
}

.megamenu-container .megamenu .megamenu-details .second-level-outer, .megamenu-container .megamenu .megamenu-details .third-level-outer {
  height: 100%;
  padding: 0px 0px 0px 30px;
  position: relative;
  opacity: 0;
  width: calc((100% - 290px) / 2);
  border-right: 1px solid #e3e7ea;
}

.megamenu-container .megamenu .megamenu-details .second-level-outer.active, .megamenu-container .megamenu .megamenu-details .third-level-outer.active {
  opacity: 1;
}

.megamenu-container .megamenu .megamenu-details .second-level-outer .inner-box, .megamenu-container .megamenu .megamenu-details .third-level-outer .inner-box {
  height: 100%;
  display: block;
  padding-bottom: 0px;
}

.megamenu-container .megamenu .megamenu-details .second-level-outer .inner-box .inner-content, .megamenu-container .megamenu .megamenu-details .third-level-outer .inner-box .inner-content {
  padding-top: 27px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 30px;
  height: 100%;
}

.megamenu-container .megamenu .megamenu-details .second-level-outer .inner-box:after, .megamenu-container .megamenu .megamenu-details .third-level-outer .inner-box:after {
  content: '';
  height: 45px;
  position: absolute;
  left: 0px;
  right: 8px;
  bottom: 0px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, white 100%);
}

.megamenu-container .megamenu .megamenu-details .second-level-outer a, .megamenu-container .megamenu .megamenu-details .third-level-outer a {
  font-weight: 400;
}

.megamenu-container .megamenu .megamenu-details .second-level-outer .inner-box, .megamenu-container .megamenu .megamenu-details .third-level-outer .inner-box {
  display: none;
}

.megamenu-container .megamenu .megamenu-details .second-level-outer .inner-box.active, .megamenu-container .megamenu .megamenu-details .third-level-outer .inner-box.active {
  display: block;
}

.megamenu-container .megamenu .megamenu-details .second-level-outer ul, .megamenu-container .megamenu .megamenu-details .third-level-outer ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.megamenu-container .megamenu .megamenu-details .second-level-outer ul li, .megamenu-container .megamenu .megamenu-details .third-level-outer ul li {
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 15px;
  font-weight: 400;
  position: relative;
}

.megamenu-container .megamenu .megamenu-details .second-level-outer ul li:last-of-type, .megamenu-container .megamenu .megamenu-details .third-level-outer ul li:last-of-type {
  margin-bottom: 20px;
  z-index: 2;
}

.megamenu-container .megamenu .megamenu-details .fix-content {
  padding: 27px 40px 40px 20px;
  width: 290px;
  display: flex;
  justify-content: flex-end;
}

.megamenu-container .megamenu .megamenu-details .fix-content .inner {
  max-width: 230px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-direction: column;
}

.megamenu-container .megamenu .megamenu-details .fix-content .top-content {
  width: 100%;
}

.megamenu-container .megamenu .megamenu-details .fix-content a {
  color: #da0d0e;
}

.megamenu-container .megamenu .megamenu-details .fix-content .product-card .name-outer {
  font-size: 0px;
  line-height: 0px;
  font-weight: 400;
}

.megamenu-container .megamenu .megamenu-details .fix-content .product-card .name-outer .title {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.megamenu-container .megamenu .megamenu-details .fix-content .product-card .name-outer .title .name {
  font-weight: 700;
}

.megamenu-container .megamenu .megamenu-details .fix-content ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.megamenu-container .megamenu .megamenu-details .fix-content ul li {
  margin-bottom: 15px;
}

.megamenu-container .megamenu .megamenu-details .fix-content ul li:last-of-type {
  margin-bottom: 0px;
}

.main-header.fixed .megamenu-container.visible, .main-header.fixed .megamenu-container.always-open.visible {
  position: fixed;
  top: 55px;
}

.main-header.fixed .megamenu-container.visible .megamenu, .main-header.fixed .megamenu-container.always-open.visible .megamenu {
  display: block;
}

@media all and (min--moz-device-pixel-ratio: 0) {
  .megamenu-container .megamenu .megamenu-list-container a:hover {
    color: #da0d0e;
  }
  .megamenu-container .megamenu .megamenu-details .second-level-outer a:hover, .megamenu-container .megamenu .megamenu-details .third-level-outer a:hover {
    color: #da0d0e;
  }
  .megamenu-container .megamenu .megamenu-details .fix-content a:hover {
    color: #313b4f;
  }
  .megamenu-container .megamenu .megamenu-details .fix-content .product-card .inner:hover {
    position: relative;
    top: 0px;
    box-shadow: none;
    width: 100%;
    padding: 0px;
    left: 0px;
  }
  .megamenu-container .megamenu .megamenu-details .fix-content .product-card .inner:hover .name-outer {
    color: #da0d0e;
  }
  .megamenu-container:hover {
    z-index: 12;
  }
}

@media (hover: hover) {
  .megamenu-container .megamenu .megamenu-list-container a:hover {
    color: #da0d0e;
  }
  .megamenu-container .megamenu .megamenu-details .second-level-outer a:hover, .megamenu-container .megamenu .megamenu-details .third-level-outer a:hover {
    color: #da0d0e;
  }
  .megamenu-container .megamenu .megamenu-details .fix-content a:hover {
    color: #313b4f;
  }
  .megamenu-container .megamenu .megamenu-details .fix-content .product-card .inner:hover {
    position: relative;
    top: 0px;
    box-shadow: none;
    width: 100%;
    padding: 0px;
    left: 0px;
  }
  .megamenu-container .megamenu .megamenu-details .fix-content .product-card .inner:hover .name-outer {
    color: #da0d0e;
  }
  .megamenu-container:hover {
    z-index: 12;
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .megamenu-container .megamenu .megamenu-list-container a:hover {
    color: #da0d0e;
  }
  .megamenu-container .megamenu .megamenu-details .second-level-outer a:hover, .megamenu-container .megamenu .megamenu-details .third-level-outer a:hover {
    color: #da0d0e;
  }
  .megamenu-container .megamenu .megamenu-details .fix-content a:hover {
    color: #313b4f;
  }
  .megamenu-container .megamenu .megamenu-details .fix-content .product-card .inner:hover {
    position: relative;
    top: 0px;
    box-shadow: none;
    width: 100%;
    padding: 0px;
    left: 0px;
  }
  .megamenu-container .megamenu .megamenu-details .fix-content .product-card .inner:hover .name-outer {
    color: #da0d0e;
  }
  .megamenu-container:hover {
    z-index: 12;
  }
}

@media not all and (pointer: coarse) {
  .megamenu-container {
    /* width */
    /* Track */
    /* Handle */
  }
  .megamenu-container ::-webkit-scrollbar {
    width: 8px;
    height: 4px;
    border-radius: 2px;
  }
  .megamenu-container ::-webkit-scrollbar-track {
    background: #e3e7ea;
  }
  .megamenu-container ::-webkit-scrollbar-thumb {
    background: #969696;
    -webkit-transition: background 0.25s ease;
    transition: background 0.25s ease;
  }
}

@media (pointer: coarse) {
  .megamenu-container {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .megamenu-container {
    display: none;
  }
}

.main-header {
  letter-spacing: 0.2px;
  padding-top: 111px;
}

.main-header.small-header {
  padding-top: 55px;
}

.main-header a {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}

.main-header > .top {
  position: absolute;
  background: #da0d0e;
  color: #ffffff;
  z-index: 14;
  top: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 55px;
}

.main-header > .top .mobile-menu-btn, .main-header > .top .megamenu-icon-outer {
  display: none;
}

.main-header > .top .logo-content {
  display: block;
  width: 137px;
  height: 36px;
  font-size: 0px;
  line-height: 0px;
  transform: translateY(-1px);
}

.main-header > .top .logo-content .icon {
  width: 100%;
  height: 100%;
}

.main-header > .top .content-width {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-header > .top .right-content ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.main-header > .top .right-content ul > li {
  margin-right: 25px;
  height: 55px;
  display: flex;
  align-items: center;
}

.main-header > .top .right-content ul > li:last-of-type {
  margin-right: 0px;
}

.main-header > .top .right-content ul > li > a {
  font-size: 0px;
  line-height: 0px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.main-header > .top .right-content ul > li > a .text {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  margin-left: 8px;
}

.main-header > .top .right-content ul > li > a.phone-link .text {
  margin-left: 2px;
}

.main-header > .top .right-content ul > li > a.cart-item .arrow-down {
  margin-left: 5px;
  transition: transform 0.25s ease;
}

.main-header > .top .right-content ul > li > a.cart-item .icon-outer {
  position: relative;
}

.main-header > .top .right-content ul > li > a.cart-item .icon-outer .feedback-content {
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 50%;
  background: #0e96fc;
  position: absolute;
  top: -3px;
  right: -4px;
  opacity: 1;
  transition: opacity 0.25s ease;
}

.main-header > .top .right-content ul > li.has-submenu {
  position: relative;
}

.main-header > .top .right-content ul > li.has-submenu .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 11px 14px 1px rgba(49, 59, 79, 0.15);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease;
  transition-delay: 200ms;
}

.main-header > .top .right-content ul > li.has-submenu .submenu:after {
  width: 0px;
  height: 0px;
  content: '';
  border-style: solid;
  border-width: 0px 12px 11px 12px;
  border-color: transparent transparent #ffffff transparent;
  display: block;
  position: absolute;
  right: 0px;
  left: 0px;
  bottom: 100%;
  margin: auto;
}

.main-header > .top .right-content ul > li.cart-list-item {
  position: relative;
}

.main-header > .top .right-content ul > li.cart-list-item.empty-cart > a .arrow-down {
  display: none;
}

.main-header > .top .right-content ul > li.cart-list-item.empty-cart > a .icon-outer .feedback-content {
  opacity: 0;
}

.main-header > .top .right-content ul > li.cart-list-item .cart-content {
  display: none;
  position: absolute;
  top: 100%;
  right: 0px;
  left: auto;
  transform: none;
  background: #ffffff;
  z-index: 2;
  width: 378px;
  color: #313b4f;
}

.main-header > .top .right-content ul > li.cart-list-item .cart-content:after {
  left: auto;
  right: 38px;
  margin: 0px;
}

.main-header > .top .right-content ul > li.cart-list-item .cart-content > .inner {
  padding: 22px 32px 28px 32px;
}

.main-header > .top .right-content ul > li.cart-list-item .cart-content .title {
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: 6px;
}

.main-header > .top .right-content ul > li.cart-list-item .cart-content .items {
  max-height: 250px;
  overflow-y: auto;
  overflow-x: hidden;
}

.main-header > .top .right-content ul > li.cart-list-item .cart-content .row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px 0px 8px 0px;
  border-bottom: 1px solid #e3e7ea;
}

.main-header > .top .right-content ul > li.cart-list-item .cart-content .row:last-of-type {
  border-bottom: none;
}

.main-header > .top .right-content ul > li.cart-list-item .cart-content .row .name {
  color: #da0d0e;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.2px;
  width: calc(100% - 90px);
}

.main-header > .top .right-content ul > li.cart-list-item .cart-content .row .name a {
  font-weight: 400;
}

.main-header > .top .right-content ul > li.cart-list-item .cart-content .row .price {
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  width: 90px;
  text-align: right;
}

.main-header > .top .right-content ul > li.cart-list-item .cart-content .summary-content {
  padding-top: 13px;
  border-top: 1px solid #e3e7ea;
}

.main-header > .top .right-content ul > li.cart-list-item .cart-content .summary-content .row {
  justify-content: flex-end;
  padding: 0px;
  border: none;
  align-items: flex-end;
  margin-bottom: 6px;
}

.main-header > .top .right-content ul > li.cart-list-item .cart-content .summary-content .row:last-of-type {
  margin-bottom: 0px;
}

.main-header > .top .right-content ul > li.cart-list-item .cart-content .summary-content .row .label {
  font-size: 12px;
  line-height: 16px;
}

.main-header > .top .right-content ul > li.cart-list-item .cart-content .buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 22px;
}

.main-header > .top .right-content ul > li.cart-list-item .cart-content .buttons .button {
  color: #ffffff;
  height: 32px;
  padding: 0px 15px 0px 16px;
}

.main-header > .top .right-content ul > li.cart-list-item .cart-content .buttons .button .text {
  font-size: 12px;
}

.main-header > .top .right-content ul > li.cart-list-item .cart-content .buttons a {
  margin-right: 16px;
}

.main-header > .top .right-content ul > li.cart-list-item .cart-content .buttons a:last-of-type {
  margin-right: 0px;
}

.main-header > .top .right-content ul > li.cart-list-item .cart-content .buttons a:not(.button) {
  color: #0e96fc;
  text-transform: uppercase;
  font-size: 10px;
  line-height: 14px;
  letter-spacing: 1px;
  font-weight: 700;
}

.main-header > .bottom {
  background: #e3e7ea;
  z-index: 13;
  position: absolute;
  height: 56px;
  width: 100%;
  top: 55px;
  left: 0px;
  right: 0px;
}

.main-header > .bottom .content-width {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-header > .bottom .opening-button {
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
  padding: 1px 8px 1px 8px;
  border-radius: 2px;
  background-color: #ffffff;
  display: block;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.main-header > .bottom .main-menu-list {
  list-style: none;
  margin: 0px;
  padding: 0px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 56px;
}

.main-header > .bottom .main-menu-list > li.main-menu-item {
  margin-right: 30px;
  height: 100%;
}

.main-header > .bottom .main-menu-list > li.main-menu-item > a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: 0px;
  line-height: 0px;
}

.main-header > .bottom .main-menu-list > li.main-menu-item > a .text {
  font-size: 14px;
  line-height: 17px;
}

.main-header > .bottom .main-menu-list > li.main-menu-item > a .icon-outer {
  margin-left: 3px;
}

.main-header > .bottom .main-menu-list > li.main-menu-item.has-submenu {
  position: relative;
}

.main-header > .bottom .main-menu-list > li.main-menu-item.has-submenu > a .icon-outer {
  margin-left: 6px;
  transition: transform 0.25s ease;
}

.main-header > .bottom .main-menu-list > li.main-menu-item .submenu {
  position: absolute;
  display: none;
  top: 100%;
  left: 50%;
  width: 192px;
  transform: translateX(-50%);
  padding: 20px 32px 28px 32px;
  background: #ffffff;
  box-shadow: 0 11px 14px 1px rgba(49, 59, 79, 0.15);
}

.main-header > .bottom .main-menu-list > li.main-menu-item .submenu:after {
  content: '';
  width: 0;
  height: 0px;
  border-style: solid;
  border-width: 0px 12px 11px 12px;
  border-color: transparent transparent #ffffff transparent;
  bottom: 100%;
  left: 0px;
  right: 0px;
  position: absolute;
  margin: auto;
}

.main-header > .bottom .main-menu-list > li.main-menu-item .submenu .row {
  text-align: left;
  margin-bottom: 12px;
}

.main-header > .bottom .main-menu-list > li.main-menu-item .submenu .row:last-of-type {
  margin-bottom: 0px;
}

.main-header > .bottom .main-menu-list > li.main-menu-item .submenu .row a {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
}

.main-header > .bottom .main-menu-list > li.megamenu-item {
  background: #0e96fc;
  color: #ffffff;
  margin-right: 38px;
}

.main-header > .bottom .main-menu-list > li.megamenu-item a {
  padding: 0px 20px 0px 19px;
}

.main-header > .bottom .main-menu-list > li.megamenu-item a .text {
  margin-left: 10px;
}

.main-header > .bottom .main-menu-list > li.megamenu-item a.icon-outer {
  margin-left: 0px;
}

.main-header.fixed > .top {
  top: -60px;
  position: fixed;
  transform: translateY(60px);
  transition: transform 0.25s ease;
  transition-delay: 100ms;
}

.main-header.fixed > .top .logo-content-outer {
  display: flex;
  align-items: center;
}

.main-header.fixed > .top .logo-content-outer .megamenu-icon-outer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 55px;
  background: #0e96fc;
  margin-left: 23px;
}

.main-header.fixed > .top .logo-content-outer .megamenu-icon-outer .close-icon {
  display: none;
}

.main-header.fixed > .top .logo-content-outer.hovered .megamenu-icon-outer .close-icon {
  display: block;
}

.main-header.fixed > .top .logo-content-outer.hovered .megamenu-icon-outer .mobile-menu-icon {
  display: none;
}

.main-header .profil-submenu {
  background: #ffffff;
  width: 180px;
  color: #313b4f;
  padding: 20px 32px 28px 32px;
}

.main-header .profil-submenu .row {
  margin-bottom: 12px;
}

.main-header .profil-submenu .row:last-of-type {
  margin-bottom: 0px;
}

@media all and (min--moz-device-pixel-ratio: 0) {
  .main-header > .top:hover {
    z-index: 14;
  }
  .main-header > .top .right-content > ul > li.has-submenu:hover:not(.empty-cart) > a .arrow-down {
    transform: rotate(180deg);
  }
  .main-header > .top .right-content > ul > li.has-submenu:hover:not(.empty-cart) .submenu {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  .main-header > .bottom:hover {
    z-index: 13;
  }
  .main-header > .bottom a:hover {
    color: #da0d0e;
  }
  .main-header > .bottom a:hover.megamenu-button, .main-header > .bottom a:hover.opening-button {
    color: #ffffff;
  }
  .main-header > .bottom .main-menu-item.has-submenu:hover .icon-outer {
    transform: rotate(180deg);
  }
  .main-header > .bottom .main-menu-item.has-submenu:hover .submenu {
    display: block;
  }
  .main-header > .bottom .opening-button:hover {
    color: #ffffff;
    background-color: #da0d0e;
  }
  .main-header .profil-submenu a:hover {
    color: #da0d0e;
  }
}

@media (hover: hover) {
  .main-header > .top:hover {
    z-index: 14;
  }
  .main-header > .top .right-content > ul > li.has-submenu:hover:not(.empty-cart) > a .arrow-down {
    transform: rotate(180deg);
  }
  .main-header > .top .right-content > ul > li.has-submenu:hover:not(.empty-cart) .submenu {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  .main-header > .bottom:hover {
    z-index: 13;
  }
  .main-header > .bottom a:hover {
    color: #da0d0e;
  }
  .main-header > .bottom a:hover.megamenu-button, .main-header > .bottom a:hover.opening-button {
    color: #ffffff;
  }
  .main-header > .bottom .main-menu-item.has-submenu:hover .icon-outer {
    transform: rotate(180deg);
  }
  .main-header > .bottom .main-menu-item.has-submenu:hover .submenu {
    display: block;
  }
  .main-header > .bottom .opening-button:hover {
    color: #ffffff;
    background-color: #da0d0e;
  }
  .main-header .profil-submenu a:hover {
    color: #da0d0e;
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .main-header > .top:hover {
    z-index: 14;
  }
  .main-header > .top .right-content > ul > li.has-submenu:hover:not(.empty-cart) > a .arrow-down {
    transform: rotate(180deg);
  }
  .main-header > .top .right-content > ul > li.has-submenu:hover:not(.empty-cart) .submenu {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  .main-header > .bottom:hover {
    z-index: 13;
  }
  .main-header > .bottom a:hover {
    color: #da0d0e;
  }
  .main-header > .bottom a:hover.megamenu-button, .main-header > .bottom a:hover.opening-button {
    color: #ffffff;
  }
  .main-header > .bottom .main-menu-item.has-submenu:hover .icon-outer {
    transform: rotate(180deg);
  }
  .main-header > .bottom .main-menu-item.has-submenu:hover .submenu {
    display: block;
  }
  .main-header > .bottom .opening-button:hover {
    color: #ffffff;
    background-color: #da0d0e;
  }
  .main-header .profil-submenu a:hover {
    color: #da0d0e;
  }
}

@media (pointer: coarse) {
  .main-header {
    padding-top: 55px;
  }
  .main-header > .bottom {
    display: none;
  }
  .main-header.fixed > .top .content-width, .main-header > .top .content-width {
    padding-left: 25px;
  }
  .main-header.fixed > .top .logo-content-outer, .main-header > .top .logo-content-outer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .main-header.fixed > .top .logo-content-outer .megamenu-icon-outer, .main-header > .top .logo-content-outer .megamenu-icon-outer {
    display: none;
  }
  .main-header.fixed > .top .logo-content, .main-header > .top .logo-content {
    height: 35px;
    width: 133px;
  }
  .main-header.fixed > .top .mobile-menu-btn, .main-header > .top .mobile-menu-btn {
    width: 28px;
    display: flex;
    height: 100%;
    padding: 0px;
    margin-right: 15px;
    font-size: 0px;
    line-height: 0px;
    padding: 5px;
  }
  .main-header.fixed > .top .mobile-menu-btn .mobile-menu-icon, .main-header > .top .mobile-menu-btn .mobile-menu-icon {
    width: 20px;
    height: 18px;
  }
  .main-header.fixed > .top .right-content ul > li > a.cart-item .arrow-down, .main-header > .top .right-content ul > li > a.cart-item .arrow-down {
    display: none;
  }
  .main-header.fixed > .top .right-content ul > li.has-submenu:not(.empty-cart) .submenu, .main-header.fixed > .top .right-content ul > li.has-submenu:hover:not(.empty-cart) .submenu, .main-header > .top .right-content ul > li.has-submenu:not(.empty-cart) .submenu, .main-header > .top .right-content ul > li.has-submenu:hover:not(.empty-cart) .submenu {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
  .main-header.fixed > .top .profil-icon, .main-header > .top .profil-icon {
    width: 22px;
    height: 22px;
  }
  .main-header.fixed > .top .phone-icon, .main-header > .top .phone-icon {
    width: 17px;
    height: 19px;
  }
  .main-header.fixed > .top .cart-icon, .main-header > .top .cart-icon {
    width: 22px;
    height: 19px;
  }
}

@media screen and (max-width: 1024px) {
  .main-header {
    padding-top: 55px;
  }
  .main-header > .bottom {
    display: none;
  }
  .main-header.fixed > .top .content-width, .main-header > .top .content-width {
    padding-left: 25px;
  }
  .main-header.fixed > .top .logo-content-outer, .main-header > .top .logo-content-outer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .main-header.fixed > .top .logo-content-outer .megamenu-icon-outer, .main-header > .top .logo-content-outer .megamenu-icon-outer {
    display: none;
  }
  .main-header.fixed > .top .logo-content, .main-header > .top .logo-content {
    height: 35px;
    width: 133px;
  }
  .main-header.fixed > .top .mobile-menu-btn, .main-header > .top .mobile-menu-btn {
    width: 28px;
    display: flex;
    height: 100%;
    padding: 0px;
    margin-right: 15px;
    font-size: 0px;
    line-height: 0px;
    padding: 5px;
  }
  .main-header.fixed > .top .mobile-menu-btn .mobile-menu-icon, .main-header > .top .mobile-menu-btn .mobile-menu-icon {
    width: 20px;
    height: 18px;
  }
  .main-header.fixed > .top .right-content ul > li > a.cart-item .arrow-down, .main-header > .top .right-content ul > li > a.cart-item .arrow-down {
    display: none;
  }
  .main-header.fixed > .top .right-content ul > li.has-submenu:not(.empty-cart) .submenu, .main-header.fixed > .top .right-content ul > li.has-submenu:hover:not(.empty-cart) .submenu, .main-header > .top .right-content ul > li.has-submenu:not(.empty-cart) .submenu, .main-header > .top .right-content ul > li.has-submenu:hover:not(.empty-cart) .submenu {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
  .main-header.fixed > .top .profil-icon, .main-header > .top .profil-icon {
    width: 22px;
    height: 22px;
  }
  .main-header.fixed > .top .phone-icon, .main-header > .top .phone-icon {
    width: 17px;
    height: 19px;
  }
  .main-header.fixed > .top .cart-icon, .main-header > .top .cart-icon {
    width: 22px;
    height: 19px;
  }
}

@media screen and (max-width: 1023px) {
  .main-header > .top .right-content ul > li {
    margin-right: 20px;
  }
  .main-header > .top .right-content ul > li > a .text {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .main-header {
    padding-top: 104px;
  }
  .main-header.small-header {
    padding-top: 50px;
  }
  .main-header.small-header > .top {
    height: 50px;
  }
  .main-header > .top {
    height: 104px;
  }
  .main-header > .top .content-width {
    padding-left: 15px;
  }
  .main-header > .top .mobile-menu-btn {
    margin-right: 15px;
  }
  .main-header > .top .logo-content {
    width: 102px;
    height: 27px;
    transform: translateY(0px);
  }
  .main-header > .top .logo-content .netkazan-logo, .main-header > .top .logo-content .new-netkazan-logo {
    width: 100%;
    height: 100%;
  }
  .main-header > .top .right-content > ul > li {
    height: 50px;
  }
  .main-header.fixed > .top {
    top: -110px;
    transform: translateY(110px);
  }
  .main-header.fixed > .top .content-width {
    padding-left: 15px;
  }
  .main-header.fixed > .top .logo-content {
    width: 102px;
    height: 27px;
    transform: translateY(0px);
  }
  .main-header.fixed > .top .logo-content .netkazan-logo, .main-header.fixed > .top .logo-content .new-netkazan-logo {
    width: 100%;
    height: 100%;
  }
}

footer {
  color: #6E7583;
}

footer a {
  color: inherit;
}

footer > .top {
  padding: 56px 0px 14px 0px;
  background: #f4f5f8;
}

footer > .top .title {
  font-size: 0px;
  line-height: 0px;
}

footer > .top .title .text {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: #313b4f;
}

footer > .top .title .icon {
  display: none;
}

footer > .top .link-cloud .link-cloud-inner {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

footer > .top .link-cloud .group {
  margin-right: 80px;
}

footer > .top .link-cloud .group:last-of-type {
  margin-right: 0px;
}

footer > .top .link-cloud .group ul {
  list-style: none;
  margin: 17px 0px 0px 0px;
  padding: 0px;
}

footer > .top .link-cloud .group ul li {
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 8px;
}

footer > .top .link-cloud .group ul li:last-of-type {
  margin-bottom: 0px;
}

footer > .top .link-cloud .group ul li a {
  text-decoration: none;
}

footer > .top .link-cloud .group ul li.profil-item {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  color: #da0d0e;
  font-weight: 700;
}

footer > .top .link-cloud .group ul li.profil-item a {
  color: #da0d0e;
}

footer > .top .link-cloud .group ul li.profil-item .separator {
  margin: 0px 2px 0px 2px;
}

footer > .top .link-cloud .group ul li.profil-item .icon {
  margin-right: 2px;
}

footer > .top .link-cloud .group.categories-group ul {
  -moz-column-count: 3;
       column-count: 3;
  -moz-column-gap: 35px;
       column-gap: 35px;
}

footer > .top .link-cloud .group.categories-group ul li {
  max-width: 160px;
}

footer > .top .copyright-content {
  margin-top: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

footer > .top .copyright-content .copyright {
  margin-left: 23px;
  font-size: 12px;
  line-height: 20px;
}

footer > .top .copyright-content .logo-content {
  width: 72px;
  height: 20px;
  font-size: 0px;
  line-height: 0px;
  display: block;
  transform: translateY(-1px);
}

footer > .top .copyright-content .logo-content .icon {
  width: 100%;
  height: 100%;
}

footer > .bottom {
  padding: 10px 0px 10px 0px;
}

footer > .bottom .content-width {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

footer > .bottom .awards-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 565px;
}

footer > .bottom .awards-content .award-item {
  margin-right: 38px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  font-size: 0px;
  line-height: 0px;
  text-decoration: none;
}

footer > .bottom .awards-content .award-item:last-of-type {
  margin-right: 0px;
}

footer > .bottom .awards-content .award-item .text {
  margin-left: 7px;
  font-size: 10px;
  line-height: 12px;
  letter-spacing: 0.2px;
}

footer > .bottom .partners-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

footer > .bottom .partners-content .partner-item {
  margin-left: 20px;
}

footer.small-footer {
  padding-bottom: 15px;
}

footer.small-footer > .bottom {
  border-top: 1px solid #e3e7ea;
}

footer.small-footer > .bottom > .content-width {
  align-items: center;
  display: flex;
}

footer.small-footer > .bottom .left-content {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  width: 320px;
}

footer.small-footer > .bottom .left-content .logo-content {
  margin-right: 23px;
  width: 72px;
  height: 20px;
}

footer.small-footer > .bottom .left-content .logo-content .icon {
  width: 100%;
  height: 100%;
}

footer.small-footer > .bottom .left-content .copyright {
  font-size: 12px;
  line-height: 16px;
}

footer.small-footer > .bottom .partners-content {
  width: calc(100% - 320px);
  align-items: center;
  justify-content: flex-end;
}

footer.small-footer > .bottom .partners-content .partner-item {
  margin: 0px 0px 0px 16px;
}

@media all and (min--moz-device-pixel-ratio: 0) {
  footer a:hover {
    color: #da0d0e;
  }
}

@media (hover: hover) {
  footer a:hover {
    color: #da0d0e;
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  footer a:hover {
    color: #da0d0e;
  }
}

@media screen and (max-width: 1080px) {
  footer > .top .link-cloud .group {
    margin-right: 50px;
  }
  footer > .bottom .awards-content {
    width: 525px;
  }
  footer > .bottom .awards-content .award-item {
    margin-right: 18px;
  }
  footer > .bottom .partners-content .partner-item {
    margin-left: 15px;
  }
}

@media screen and (max-width: 1023px) {
  footer > .top {
    padding-top: 0px;
  }
  footer > .top .link-cloud {
    padding: 0px;
    display: block;
  }
  footer > .top .link-cloud .link-cloud-inner {
    display: block;
  }
  footer > .top .link-cloud .group {
    width: 100%;
    margin: 0px;
    padding: 0px 30px 0px 30px;
    border-bottom: 1px solid #e3e7ea;
  }
  footer > .top .link-cloud .group .title {
    padding: 20px 0px 20px 0px;
    position: relative;
  }
  footer > .top .link-cloud .group .title .icon {
    display: block;
    position: absolute;
    transition: transform 0.25s ease;
    top: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;
  }
  footer > .top .link-cloud .group.active .title .icon {
    transform: rotate(180deg);
  }
  footer > .top .link-cloud .group .content {
    display: none;
    padding-bottom: 30px;
  }
  footer > .top .link-cloud .group.categories-group ul, footer > .top .link-cloud .group ul {
    -moz-column-count: 3;
         column-count: 3;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  footer > .bottom .content-width {
    display: block;
  }
  footer > .bottom .awards-content {
    width: 100%;
    justify-content: center;
  }
  footer > .bottom .partners-content {
    padding-top: 10px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  footer > .bottom .partners-content .partner-item {
    margin: 20px 10px 0px 10px;
  }
  footer.small-footer > .bottom > .content-width {
    display: block;
  }
  footer.small-footer > .bottom .left-content {
    width: 100%;
  }
  footer.small-footer > .bottom .partners-content {
    width: 100%;
    justify-content: center;
  }
  footer.small-footer > .bottom .partners-content .partner-item {
    margin: 15px 4px 0px 4px;
  }
}

@media screen and (max-width: 600px) {
  footer > .top .link-cloud .group {
    padding: 0px 20px 0px 20px;
  }
  footer > .top .link-cloud .group .title {
    padding: 12px 0px 12px 0px;
  }
  footer > .top .link-cloud .group.categories-group ul, footer > .top .link-cloud .group ul {
    margin-top: 10px;
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  footer > .top .copyright-content {
    margin-top: 16px;
  }
  footer > .bottom .content-width {
    padding: 0px;
  }
  footer > .bottom .awards-content {
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  footer > .bottom .awards-content .award-item {
    margin: 0px 0px 12px 20px;
  }
  footer > .bottom .awards-content .award-item:last-of-type {
    margin-bottom: 0px;
  }
  footer.small-footer .left-content {
    padding: 0px 15px 0px 15px;
  }
  footer.small-footer .partners-content {
    padding: 0px 11px 0px 11px;
  }
}

@media screen and (max-width: 359px) {
  footer > .top .link-cloud .group.categories-group ul, footer > .top .link-cloud .group ul {
    -moz-column-count: 1;
         column-count: 1;
    -moz-column-gap: 0px;
         column-gap: 0px;
  }
}

body.opened-mobile-menu {
  overflow: hidden;
}

body.opened-mobile-menu .mobile-menu-overlay {
  opacity: 1;
  visibility: visible;
}

body.opened-mobile-menu .mobile-menu {
  transform: translateX(0px);
}

.mobile-menu-overlay {
  width: 100vw;
  height: 100vh;
  background: #ffffff;
  position: fixed;
  z-index: 102;
  left: 0px;
  top: 0px;
  transition: opacity 0.25s ease;
  transition-delay: 40ms;
  visibility: hidden;
  opacity: 0;
  background: rgba(49, 59, 79, 0.6);
}

.mobile-menu {
  background: #ffffff;
  width: 330px;
  max-width: 100%;
  height: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 103;
  opacity: 1;
  transition: transform 0.25s ease;
  transform: translateX(-110%);
}

.mobile-menu .mobile-menu-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.mobile-menu .mobile-menu-inner .mobile-menu-page {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 2;
  overflow: hidden;
}

.mobile-menu .mobile-menu-inner .mobile-menu-page.active {
  z-index: 3;
}

.mobile-menu .mobile-menu-inner .mobile-menu-page .sites-content {
  height: calc(100% - 46px);
  overflow-y: auto;
  overflow-x: hidden;
  background: #ffffff;
}

.mobile-menu .mobile-menu-inner .mobile-menu-page .sites-content:after {
  content: '';
  width: 100%;
  height: 40px;
  min-height: 40px;
  display: block;
}

.mobile-menu .close-menu-btn {
  position: absolute;
  top: 13px;
  right: 15px;
  color: #ffffff;
  z-index: 10;
  width: 22px;
  height: 21px;
  padding: 5px;
  opacity: 0.6;
}

.mobile-menu a {
  color: inherit;
}

.mobile-menu .level-header {
  background: #da0d0e;
  color: #ffffff;
  height: 46px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0px 20px 0px 20px;
  position: relative;
  top: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
}

.mobile-menu .level-header:not(.first-level-header) {
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.2px;
  font-weight: 700;
}

.mobile-menu .level-header .mobile-menu-arrow {
  transform: rotate(180deg);
  margin-right: 9px;
}

.mobile-menu .level-header .netkazan-logo {
  width: 102px;
  height: 27px;
}

.mobile-menu .level-header .back-link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 0px;
  line-height: 0px;
  padding: 0px;
  margin: 0px;
  text-decoration: none;
  background: transparent;
  border: none;
  height: auto;
}

.mobile-menu .level-header .back-link .text {
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.2px;
  font-weight: 700;
}

.mobile-menu .mobile-menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 0px;
  line-height: 0px;
  text-decoration: none;
}

.mobile-menu .mobile-menu-item:not(.first-level-item) {
  padding: 10px 20px 10px 20px;
  border-bottom: 1px solid #e3e7ea;
}

.mobile-menu .mobile-menu-item .text {
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.2px;
  width: calc(100% - 6px);
  padding-right: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.mobile-menu .mobile-menu-item .text .icon {
  margin-left: 3px;
}

.mobile-menu .mobile-menu-item .text .action-icon {
  margin-bottom: 1px;
}

.mobile-menu .mobile-menu-item .arrow-outer {
  width: 6px;
  height: 11px;
  margin-top: 3px;
}

.mobile-menu .top-content .mobile-menu-item {
  padding: 10px 20px 9px 20px;
  border-bottom: 1px solid #e3e7ea;
}

.mobile-menu .top-content .mobile-menu-item.first-level-item {
  padding: 18px 20px 17px 20px;
}

.mobile-menu .top-content .mobile-menu-item.first-level-item.product-categories {
  color: #ffffff;
  background: #0e96fc;
  border-bottom: 1px solid #0e96fc;
}

.mobile-menu .top-content .mobile-menu-item.first-level-item.application-areas {
  background: #e3e7ea;
}

.mobile-menu .top-content .mobile-menu-item.first-level-item .text {
  font-weight: 700;
  font-size: 16px;
}

.mobile-menu .top-content .mobile-menu-item.second-level-item .text {
  font-weight: 700;
}

.mobile-menu .bottom-content {
  margin-top: 18px;
}

.mobile-menu .bottom-content > div {
  margin-bottom: 16px;
}

.mobile-menu .bottom-content > div:last-of-type {
  margin-bottom: 0px;
}

.mobile-menu .bottom-content .mobile-menu-item {
  padding: 2px 20px 2px 20px;
  border: none;
}

/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */
/* Default theme styles for the background */
.remodalwindow-bg.remodalwindow-is-opening,
.remodalwindow-bg.remodalwindow-is-opened {
  filter: blur(3px);
}

/* Default theme styles of the overlay */
.remodalwindow-overlay {
  background: rgba(49, 59, 79, 0.6);
}

.remodalwindow-overlay.remodalwindow-is-opening,
.remodalwindow-overlay.remodalwindow-is-closing {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.remodalwindow-overlay.remodalwindow-is-opening {
  -webkit-animation-name: remodalwindow-overlay-opening-keyframes;
          animation-name: remodalwindow-overlay-opening-keyframes;
}

.remodalwindow-overlay.remodalwindow-is-closing {
  -webkit-animation-name: remodalwindow-overlay-closing-keyframes;
          animation-name: remodalwindow-overlay-closing-keyframes;
}

/* Default theme styles of the wrapper */
.remodalwindow-wrapper {
  padding: 10px 10px 0;
}

/* Default theme styles of the modal dialog */
.remodalwindow {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 35px;
  transform: translate3d(0, 0, 0);
  color: #2b2e38;
  background: #fff;
  background: #FFFFFF;
  box-shadow: 0 4px 16px 4px rgba(0, 0, 0, 0.3);
}

.remodalwindow.remodalwindow-is-opening,
.remodalwindow.remodalwindow-is-closing {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.remodalwindow.remodalwindow-is-opening {
  -webkit-animation-name: remodalwindow-opening-keyframes;
          animation-name: remodalwindow-opening-keyframes;
}

.remodalwindow.remodalwindow-is-closing {
  -webkit-animation-name: remodalwindow-closing-keyframes;
          animation-name: remodalwindow-closing-keyframes;
}

/* Vertical align of the modal dialog */
.remodalwindow,
.remodalwindow-wrapper:after {
  vertical-align: middle;
}

/* Close button */
.remodalwindow-close {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  overflow: visible;
  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
}

.remodalwindow-close:hover,
.remodalwindow-close:focus {
  color: #2b2e38;
}

.remodalwindow-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 35px;
  content: "\00d7";
  text-align: center;
}

/* Dialog buttons */
.remodalwindow-confirm,
.remodalwindow-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0;
}

.remodalwindow-confirm {
  color: #fff;
  background: #81c784;
}

.remodalwindow-confirm:hover,
.remodalwindow-confirm:focus {
  background: #66bb6a;
}

.remodalwindow-cancel {
  color: #fff;
  background: #e57373;
}

.remodalwindow-cancel:hover,
.remodalwindow-cancel:focus {
  background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */
.remodalwindow-confirm::-moz-focus-inner,
.remodalwindow-cancel::-moz-focus-inner,
.remodalwindow-close::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* Keyframes
   ========================================================================== */
@-webkit-keyframes remodalwindow-opening-keyframes {
  from {
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes remodalwindow-opening-keyframes {
  from {
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
    filter: blur(0);
  }
}

@-webkit-keyframes remodalwindow-closing-keyframes {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(0.95);
    opacity: 0;
    filter: blur(0);
  }
}

@keyframes remodalwindow-closing-keyframes {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(0.95);
    opacity: 0;
    filter: blur(0);
  }
}

@-webkit-keyframes remodalwindow-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes remodalwindow-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes remodalwindow-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes remodalwindow-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* Media queries
   ========================================================================== */
@media only screen and (min-width: 641px) {
  .remodalwindow {
    max-width: 700px;
  }
}

/* IE8
   ========================================================================== */
.lt-ie9 .remodalwindow-overlay {
  background: #2b2e38;
}

.lt-ie9 .remodalwindow {
  width: 700px;
}

/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */
/* Hide scroll bar */
html.remodalwindow-is-locked {
  overflow: hidden;
  touch-action: none;
}

/* Anti FOUC */
.remodalwindow,
[data-remodalwindow-id] {
  display: none;
}

/* Necessary styles of the overlay */
.remodalwindow-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
}

/* Necessary styles of the wrapper */
.remodalwindow-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}

.remodalwindow-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}

/* Fix iPad, iPhone glitches */
.remodalwindow-overlay,
.remodalwindow-wrapper {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */
.remodalwindow {
  position: relative;
  outline: none;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

.remodalwindow-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}

.product-card {
  position: relative;
  width: 200px;
  z-index: 1;
}

.product-card > .arrow-link {
  margin-top: 15px;
  display: inline-block;
  z-index: 2;
}

.product-card .inner {
  font-size: 0px;
  line-height: 0px;
  text-decoration: none;
  color: #313b4f;
  background: #ffffff;
}

.product-card .inner .image-outer {
  display: flex;
  width: 100%;
  height: 180px;
  position: relative;
  justify-content: center;
  align-items: center;
}

.product-card .inner .image-outer.small {
  height: 120px;
}

.product-card .inner .image-outer .tags-container {
  position: absolute;
  top: 0px;
  left: 0px;
}

.product-card .inner .image-outer .tags-container > span {
  display: block;
}

.product-card .inner .image-outer .tags-container .product-tag, .product-card .inner .image-outer .tags-container .warranty-tag {
  margin-bottom: 5px;
}

.product-card .inner .image-outer .tags-container .product-tag {
  margin-right: 5px;
}

.product-card .inner .image-outer img {
  max-height: 100%;
  margin: auto;
}

.product-card .inner .text-content {
  margin-top: 8px;
  width: 100%;
  display: block;
}

.product-card .inner .text-content .name-outer {
  height: 60px;
  text-decoration: none;
  color: #313b4f;
  overflow: hidden;
  display: block;
}

.product-card .inner .text-content .name-outer h3, .product-card .inner .text-content .name-outer .category-name {
  display: inline;
  font-size: 14px;
  line-height: 20px;
}

.product-card .inner .text-content .name-outer h3 {
  margin: 0px;
}

.product-card .inner .text-content .name-outer .title {
  font-weight: 700;
}

.product-card .inner .text-content .name-outer a {
  text-decoration: none;
  color: #313b4f;
}

.product-card .inner .storage-row {
  display: flex;
  align-items: center;
  margin-top: 7px;
  margin-bottom: 7px;
}

.product-card .inner .storage-row .storage-info {
  margin-right: 14px;
}

.product-card .inner .storage-row .storage-info-btn {
  font-size: 12px;
  line-height: 16px;
  text-decoration: underline;
  cursor: pointer;
}

.product-card .inner .storage-info {
  display: flex;
  align-items: center;
  height: 16px;
  color: #09B53E;
}

.product-card .inner .storage-info.in-stock {
  color: #09B53E;
}

.product-card .inner .storage-info.available {
  color: #6E7583;
}

.product-card .inner .storage-info.to-order {
  color: #F4A437;
}

.product-card .inner .storage-info.sold-out {
  color: #da0d0e;
}

.product-card .inner .storage-info .icon {
  margin-right: 3px;
}

.product-card .inner .storage-info .text {
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
}

.product-card .inner .bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 44px;
}

.product-card .inner .price-content {
  display: block;
}

.product-card .inner .price-content .row {
  display: block;
  font-size: 12px;
  line-height: 16px;
}

.product-card .inner .price-content .row .original-price {
  position: relative;
  display: inline-block;
}

.product-card .inner .price-content .row .original-price:before {
  content: '';
  width: 100%;
  height: 1px;
  background: #da0d0e;
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  transform: rotate(7deg) translateY(7px);
}

.product-card .inner .price-content .row.sell-price-row {
  display: inline-flex;
  align-items: flex-end;
  letter-spacing: 0.2px;
}

.product-card .inner .price-content .row.sell-price-row .price {
  margin-left: 4px;
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
}

.product-card .inner .hover-content {
  display: none;
}

.product-card .inner .rating-content {
  display: flex;
  align-items: center;
}

.product-card .inner .rating-content .stars {
  display: flex;
  margin-right: 6px;
}

.product-card .inner .rating-content .stars .icon {
  margin-right: 2px;
  color: #da0d0e;
}

.product-card .inner .rating-content .stars .icon.gray {
  color: #CBCBCB;
}

.product-card .inner .rating-content .stars .icon:last-of-type {
  margin-right: 0px;
}

.product-card .inner .rating-content .stars.star-0 .icon {
  color: #CBCBCB;
}

.product-card .inner .rating-content .stars.star-4 .icon:nth-of-type(5) {
  color: #CBCBCB;
}

.product-card .inner .rating-content .stars.star-3 .icon:nth-of-type(5), .product-card .inner .rating-content .stars.star-3 .icon:nth-of-type(4) {
  color: #CBCBCB;
}

.product-card .inner .rating-content .stars.star-2 .icon:nth-of-type(5), .product-card .inner .rating-content .stars.star-2 .icon:nth-of-type(4), .product-card .inner .rating-content .stars.star-2 .icon:nth-of-type(3) {
  color: #CBCBCB;
}

.product-card .inner .rating-content .stars.star-1 .icon {
  color: #CBCBCB;
}

.product-card .inner .rating-content .stars.star-1 .icon:first-of-type {
  color: #da0d0e;
}

.product-card .inner .rating-content .text {
  font-size: 12px;
  line-height: 17px;
}

.product-card .inner .parameters {
  display: block;
}

.product-card .inner .parameters .row {
  display: block;
  font-size: 12px;
  line-height: 16px;
}

.product-card .inner .parameters .row .value {
  font-weight: 700;
}

.product-card .inner .parameters .row sup {
  font-size: 8px;
}

.product-card .inner .parameters .row a {
  color: #313b4f;
  text-decoration: none;
}

.product-card .inner .description {
  display: block;
  font-size: 12px;
  line-height: 18px;
}

.product-card:not(.lying-card) .manufacturer-image {
  display: none;
}

.product-card:not(.lying-card) .bottom-content .price-content {
  width: calc(100% - 50px);
}

.product-card:not(.lying-card) .button {
  padding: 0px;
  width: 44px;
  height: 44px;
}

.product-card:not(.lying-card) .button .text {
  display: none;
}

.product-card:not(.lying-card) .hover-content {
  margin-top: 16px;
  padding-top: 21px;
  border-top: 1px solid #e3e7ea;
}

.product-card:not(.lying-card) .parameters {
  margin-top: 13px;
}

.product-card:not(.lying-card) .description {
  margin-top: 10px;
}

.product-card:not(.lying-card) .details-button-row {
  display: none;
  justify-content: flex-start;
  align-items: center;
  color: #da0d0e;
}

.product-card:not(.lying-card) .details-button-row .text {
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  letter-spacing: 0.2px;
  margin-right: 7px;
}

.product-card:not(.lying-card) .details-button-row .icon {
  width: 9px;
  height: 6px;
  transition: transform 0.25s ease;
}

.product-card:not(.lying-card) .details-button-row.opened .icon {
  transform: rotate(180deg);
}

.product-card.lying-card .manufacturer-image img {
  height: 32px;
}

.product-card.lying-card .inner {
  display: flex;
  position: relative;
  width: calc(100% + 60px);
  left: -30px;
  top: 0px;
  padding: 30px;
}

.product-card.lying-card .inner .image-outer {
  width: 180px;
}

.product-card.lying-card .inner .details-button-row {
  display: none;
}

.product-card.lying-card .inner .text-content {
  width: 260px;
  padding: 0px 38px 0px 22px;
  margin: 0px;
}

.product-card.lying-card .inner .text-content .bottom-content {
  position: absolute;
  right: 30px;
  bottom: 30px;
}

.product-card.lying-card .inner .text-content .bottom-content .button {
  margin-left: 23px;
}

.product-card.lying-card .inner .text-content .storage-row {
  position: absolute;
  bottom: 55px;
  left: 470px;
  margin: 0px;
}

.product-card.lying-card .inner .hover-content {
  width: calc(100% - 440px);
  display: flex;
  flex-direction: column;
  padding-top: 0px;
  margin-top: 0px;
  border-top: none;
  padding-bottom: 74px;
}

.product-card.lying-card .inner .hover-content .rating-content {
  position: absolute;
  bottom: 30px;
  left: 470px;
}

.product-card.lying-card .inner .hover-content .description {
  height: 54px;
  overflow: hidden;
  order: 1;
}

.product-card.lying-card .inner .hover-content .parameters {
  margin-top: 8px;
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 20px;
       column-gap: 20px;
  order: 2;
}

.product-card.lying-card .inner .hover-content .parameters > .row {
  margin-bottom: 6px;
  display: inline-block;
  width: 100%;
}

.product-card.lying-card .inner .hover-content .parameters .special-parameter {
  position: absolute;
  left: 232px;
  bottom: 66px;
  width: 200px;
}

.product-card.lying-card .inner .hover-content .parameters .special-parameter .row {
  margin-top: 6px;
}

.product-card.with-arrow-link {
  position: relative;
  padding-top: 261px;
}

.product-card.with-arrow-link .inner {
  top: 0px;
  left: 0px;
  position: absolute;
}

@media screen and (hover: hover) and (min-width: 1025px) {
  .product-card:hover {
    z-index: 2;
  }
  .product-card:not(.lying-card).with-arrow-link .inner:hover, .product-card:not(.lying-card).upsell-product-card .inner:hover {
    z-index: 3;
    padding: 15px;
    left: -15px;
    top: -15px;
    width: calc(100% + 30px);
  }
  .product-card .inner .storage-row .storage-info-btn:hover {
    text-decoration: none;
  }
  .product-card .inner:hover {
    z-index: 3;
    padding: 30px;
    left: -30px;
    width: calc(100% + 60px);
    box-shadow: 0 0 21px 6px rgba(0, 0, 0, 0.08);
  }
  .product-card:not(.lying-card) .inner:hover {
    position: absolute;
    top: -30px;
  }
  .product-card:not(.lying-card) .inner:hover:not(.without-parameter) .hover-content {
    display: block;
  }
  .product-card.lying-card .inner:hover {
    position: relative;
    top: 0px;
  }
}

@media screen and (hover: hover) and (min-width: 1025px) and (max-width: 1300px) {
  .product-card:not(.lying-card) .inner:hover {
    padding: 20px;
    left: -20px;
    top: -20px;
    width: calc(100% + 40px);
  }
}

@media screen and (-ms-high-contrast: active) and (min-width: 1025px) {
  .product-card:hover {
    z-index: 2;
  }
  .product-card:not(.lying-card).with-arrow-link .inner:hover, .product-card:not(.lying-card).upsell-product-card .inner:hover {
    z-index: 3;
    padding: 15px;
    left: -15px;
    top: -15px;
    width: calc(100% + 30px);
  }
  .product-card .inner .storage-row .storage-info-btn:hover {
    text-decoration: none;
  }
  .product-card .inner:hover {
    z-index: 3;
    padding: 30px;
    left: -30px;
    width: calc(100% + 60px);
    box-shadow: 0 0 21px 6px rgba(0, 0, 0, 0.08);
  }
  .product-card:not(.lying-card) .inner:hover {
    position: absolute;
    top: -30px;
  }
  .product-card:not(.lying-card) .inner:hover:not(.without-parameter) .hover-content {
    display: block;
  }
  .product-card.lying-card .inner:hover {
    position: relative;
    top: 0px;
  }
}

@media screen and (-ms-high-contrast: active) and (min-width: 1025px) and (max-width: 1300px) {
  .product-card:not(.lying-card) .inner:hover {
    padding: 20px;
    left: -20px;
    top: -20px;
    width: calc(100% + 40px);
  }
}

@media screen and (max-width: 1279px) {
  .product-card.lying-card .inner .text-content {
    padding: 0px 20px 0px 20px;
    width: 220px;
  }
  .product-card.lying-card .inner .text-content .bottom-content .button {
    margin-left: 15px;
    width: 44px;
    height: 44px;
    padding: 0px;
    font-size: 0px;
    line-height: 0px;
    padding-right: 1px;
  }
  .product-card.lying-card .inner .text-content .bottom-content .button .text {
    display: none;
  }
  .product-card.lying-card .inner .text-content .storage-row {
    left: 430px;
  }
  .product-card.lying-card .inner .hover-content {
    width: calc(100% - 400px);
  }
  .product-card.lying-card .inner .hover-content .rating-content {
    left: 430px;
  }
  .product-card.lying-card .inner .hover-content .parameters .special-parameter {
    width: 180px;
  }
}

@media screen and (max-width: 1120px) {
  .product-card.lying-card .inner .text-content .storage-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .product-card.lying-card .inner .text-content .storage-row .storage-info {
    margin: 0px;
  }
  .product-card.lying-card .inner .text-content .storage-row .storage-info-btn {
    margin-top: 5px;
  }
}

@media screen and (max-width: 600px) {
  .product-card {
    width: 100%;
  }
  .product-card.with-arrow-link {
    padding-top: 0px;
    border-bottom: 1px solid #e3e7ea;
    padding-bottom: 15px;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
  .product-card.with-arrow-link .inner, .product-card.with-arrow-link .inner.without-parameters {
    position: relative;
    padding-bottom: 0px;
    border-bottom: 0px;
  }
  .product-card.with-arrow-link > .arrow-link {
    margin-right: 20px;
    width: calc(100% - 145px);
  }
  .product-card .inner {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    border-bottom: 1px solid #e3e7ea;
    padding: 15px 0px 0px 0px;
    width: 100%;
  }
  .product-card .inner.without-parameters {
    padding-bottom: 15px;
  }
  .product-card .inner.without-parameters .text-content {
    padding-bottom: 0px;
  }
  .product-card .inner .image-outer {
    margin-left: 20px;
    width: 85px;
    height: 85px;
    min-width: 85px;
    position: relative;
  }
  .product-card .inner .image-outer.small {
    height: auto;
  }
  .product-card .inner .image-outer .tags-container {
    height: 100%;
    width: 100%;
  }
  .product-card .inner .image-outer .tags-container .tags-bottom {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    transform: translateY(calc(100% + 7px));
  }
  .product-card .inner .text-content {
    width: calc(100% - 105px);
    padding: 0px 20px 8px 20px;
  }
  .product-card .inner .details-button-row {
    margin-top: 9px;
    display: flex;
  }
  .product-card .inner .hover-content {
    display: none;
    background: #f4f5f8;
    padding: 15px 20px 15px 20px;
    border: none;
    margin: 0px;
  }
  .product-card .inner .hover-content .parameters {
    display: block;
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 20px;
         column-gap: 20px;
    letter-spacing: -0.1px;
  }
  .product-card .inner .hover-content .parameters .row {
    display: inline-block;
    margin-bottom: 6px;
  }
}

@media screen and (max-width: 359px) {
  .product-card .inner .bottom-content .price-content {
    width: calc(100% - 40px);
  }
  .product-card .inner .bottom-content .price-content .row.sell-price-row .price {
    font-size: 16px;
    line-height: 18px;
  }
  .product-card .inner .bottom-content .button {
    width: 34px;
    height: 34px;
  }
  .product-card .inner .bottom-content .button .cart-icon {
    width: 18px;
    height: 15px;
  }
}

.product-slider-section {
  z-index: 1;
}

.product-slider-section h2 {
  margin-bottom: 33px;
}

.product-slider-section h3 {
  margin-bottom: 30px;
}

.product-slider-section .product-slider-outer {
  width: calc(100% - 60px);
  max-width: 1240px;
  margin: auto;
  position: relative;
}

.product-slider-section .product-slider-outer .pager-outer {
  position: absolute;
  top: 0px;
  right: 0px;
  width: calc((100vw - 1240px) / 2);
  height: 100%;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 10%, #ffffff 100%);
  z-index: 3;
  font-size: 0px;
  line-height: 0px;
  transform: translateX(100%);
  display: none;
}

.product-slider-section .product-slider-outer .pager-outer.active {
  display: block;
}

.product-slider-section .product-slider-outer .pager-outer .pager {
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
  background: #da0d0e;
  color: #ffffff;
  position: absolute;
  top: 0px;
  left: 10px;
  bottom: 0px;
  margin: auto;
}

.product-slider-section .product-slider-outer .pager-outer .pager .icon {
  width: 7px;
  height: 12px;
}

.product-slider-section .product-slider-outer .pager-outer.prev {
  transform: translateX(-100%);
  background-image: linear-gradient(-90deg, rgba(255, 255, 255, 0) 10%, #ffffff 100%);
  right: auto;
  left: auto;
}

.product-slider-section .product-slider-outer .pager-outer.prev .pager {
  left: auto;
  right: 10px;
}

.product-slider-section .product-slider-outer .pager-outer.prev .pager .icon {
  transform: rotate(180deg);
}

.product-slider-section .product-slider-outer .slider-inner {
  display: flex;
  align-items: flex-start;
  transition: transform 0.25s ease;
  min-height: 262px;
}

.product-slider-section .product-slider-outer .slider-inner .product-card {
  min-width: 200px;
  margin-right: 55px;
}

.product-slider-section .product-slider-outer .slider-inner .product-card:last-of-type {
  margin-right: 0px;
}

@media all and (min--moz-device-pixel-ratio: 0) {
  .product-slider-section .slider-inner {
    position: relative;
  }
  .product-slider-section .slider-inner:hover {
    z-index: 2;
  }
}

@media (hover: hover) {
  .product-slider-section .slider-inner {
    position: relative;
  }
  .product-slider-section .slider-inner:hover {
    z-index: 2;
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .product-slider-section .slider-inner {
    position: relative;
  }
  .product-slider-section .slider-inner:hover {
    z-index: 2;
  }
}

@media screen and (max-width: 1380px) {
  .product-slider-section .product-slider-outer .pager-outer .pager {
    width: 40px;
    height: 40px;
    left: 5px;
  }
  .product-slider-section .product-slider-outer .pager-outer.prev .pager {
    right: 5px;
  }
}

@media screen and (max-width: 1340px) {
  .product-slider-section .product-slider-outer {
    width: calc(100% - 100px);
  }
  .product-slider-section .product-slider-outer .pager-outer {
    width: 50px;
  }
}

@media screen and (max-width: 1024px) {
  .product-slider-section .product-slider-outer {
    width: 100%;
    padding-left: 30px;
    overflow-x: auto;
    overflow-y: visible;
  }
  .product-slider-section .product-slider-outer .pager-outer.active {
    display: none;
  }
  .product-slider-section .product-slider-outer .slider-inner .product-card:last-of-type {
    margin-right: 30px;
  }
}

@media screen and (max-width: 600px) {
  .product-slider-section h2 {
    margin-bottom: 10px;
  }
  .product-slider-section .product-slider-outer {
    padding-left: 20px;
  }
  .product-slider-section .product-slider-outer .slider-inner {
    margin-top: 15px;
    padding-bottom: 25px;
    min-height: auto;
  }
  .product-slider-section .product-slider-outer .slider-inner .product-card {
    width: 200px;
    min-width: 200px;
    max-width: 200px;
    margin-right: 40px;
  }
  .product-slider-section .product-slider-outer .slider-inner .product-card.with-arrow-link {
    border-bottom: none;
    padding-bottom: 0px;
  }
  .product-slider-section .product-slider-outer .slider-inner .product-card.with-arrow-link > .arrow-link {
    width: 100%;
    margin: 10px 0px 0px 0px;
  }
  .product-slider-section .product-slider-outer .slider-inner .product-card:last-of-type {
    margin-right: 20px;
  }
  .product-slider-section .product-slider-outer .slider-inner .product-card .inner {
    display: block;
    padding-top: 0px;
    border-bottom: none;
  }
  .product-slider-section .product-slider-outer .slider-inner .product-card .inner .image-outer {
    width: 100%;
    height: 120px;
    margin: 0px 0px 0px 0px;
  }
  .product-slider-section .product-slider-outer .slider-inner .product-card .inner .image-outer .tags-container .tags-bottom {
    transform: none;
  }
  .product-slider-section .product-slider-outer .slider-inner .product-card .inner .text-content {
    width: 100%;
    padding: 0px;
  }
  .product-slider-section .product-slider-outer .slider-inner .product-card .inner .details-button-row {
    display: none;
  }
}

body .remodalwindow.storage-info-remodal > .inner-content {
  padding: 50px 20px 38px 20px;
}

.storage-info-remodal {
  max-width: 360px;
  width: 100%;
  color: #313b4f;
  text-align: left;
  font-size: 14px;
  line-height: 22px;
}

.storage-info-remodal a {
  color: inherit;
  text-decoration: none;
}

.storage-info-remodal .storage-info {
  display: inline-flex;
  align-items: center;
  font-size: 0px;
  line-height: 0px;
}

.storage-info-remodal .storage-info .icon {
  margin-right: 3px;
}

.storage-info-remodal .storage-info .text {
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.storage-info-remodal .storage-info.in-stock {
  color: #09B53E;
}

.storage-info-remodal .storage-info.available {
  color: #6E7583;
}

.storage-info-remodal .storage-info.sold-out {
  color: #da0d0e;
}

.storage-info-remodal .bold-fweight {
  font-weight: 700;
}

.storage-info-remodal .product-lying-card {
  display: flex;
  align-items: flex-start;
}

.storage-info-remodal .product-lying-card .image-outer {
  width: 85px;
  height: 85px;
  position: relative;
}

.storage-info-remodal .product-lying-card .image-outer img {
  max-height: 85px;
  max-width: 100%;
  margin: auto;
}

.storage-info-remodal .product-lying-card .image-outer .tags-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
}

.storage-info-remodal .product-lying-card .image-outer .tags-container .tags-top {
  position: absolute;
  top: 0px;
  left: 0px;
}

.storage-info-remodal .product-lying-card .image-outer .tags-container .tags-bottom {
  position: absolute;
  left: 0px;
  bottom: 0px;
  transform: translateY(calc(100% + 7px));
}

.storage-info-remodal .product-lying-card > .text-content {
  width: calc(100% - 85px);
  padding-left: 20px;
}

.storage-info-remodal .product-lying-card > .text-content .name-outer {
  line-height: 20px;
}

.storage-info-remodal .product-lying-card > .text-content .storage-info {
  margin-top: 2px;
}

.storage-info-remodal .product-lying-card > .text-content h3 {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
}

.storage-info-remodal .product-lying-card .price-content {
  display: block;
  margin-top: 8px;
}

.storage-info-remodal .product-lying-card .price-content .row {
  display: flex;
  align-items: flex-end;
}

.storage-info-remodal .product-lying-card .price-content .row.sell-price-row .label {
  line-height: 16px;
}

.storage-info-remodal .product-lying-card .price-content .row .label {
  font-size: 12px;
  line-height: 14px;
  letter-spacing: -0.35px;
  margin-right: 6px;
}

.storage-info-remodal .product-lying-card .price-content .row .original-price {
  position: relative;
  font-size: 12px;
  line-height: 14px;
  display: inline-block;
}

.storage-info-remodal .product-lying-card .price-content .row .original-price:before {
  content: '';
  width: 100%;
  height: 1px;
  background: #da0d0e;
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  transform: rotate(7deg) translateY(7px);
}

.storage-info-remodal .product-lying-card .price-content .row .price {
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 0.2px;
  font-weight: 700;
}

.storage-info-remodal .product-lying-card .bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.storage-info-remodal .product-lying-card .bottom-content .price-content {
  width: calc(100% - 44px);
  padding-right: 10px;
}

.storage-info-remodal .product-lying-card .cart-button {
  color: #ffffff;
  width: 44px;
  height: 44px;
  padding: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.storage-info-remodal .store-infos {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e3e7ea;
}

.storage-info-remodal .store-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.storage-info-remodal .store-box:last-of-type {
  margin-bottom: 0px;
}

.storage-info-remodal .store-box .left-content {
  width: 110px;
}

.storage-info-remodal .store-box .left-content .title {
  font-weight: 700;
  font-size: 16px;
}

.storage-info-remodal .store-box .text-content {
  width: calc(100% - 110px);
  padding-left: 25px;
}

.storage-info-remodal .store-box .text-content .address {
  margin-bottom: 10px;
}

@media screen and (max-width: 359px) {
  .storage-info-remodal .product-lying-card .cart-button {
    width: 34px;
    height: 34px;
  }
  .storage-info-remodal .product-lying-card .cart-button .cart-icon {
    width: 18px;
    height: 15px;
  }
  .storage-info-remodal .product-lying-card .bottom-content .price-content {
    width: calc(100% - 34px);
  }
  .storage-info-remodal .product-lying-card .bottom-content .price-content .row.sell-price-row .price {
    font-size: 14px;
    line-height: 18px;
  }
}

* {
  box-sizing: border-box;
}

*:before, *:after {
  box-sizing: border-box;
}

* p:last-of-type {
  margin-bottom: 0px;
}

#wrapper {
  overflow: hidden;
}

body {
  padding: 0px;
  margin: 0px;
  display: block;
  color: #313b4f;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  font-family: "Fira Sans", Arial, sans-serif;
  -webkit-overflow-scrolling: touch;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-y: auto;
  overflow-x: hidden;
}

body.noscroll {
  overflow-y: hidden;
}

img {
  display: block;
  margin: 0px;
  max-width: 100%;
}

.lazy:not(.loaded) {
  opacity: 0;
}

.content-width {
  width: 100%;
  max-width: 1020px;
  padding: 0px 30px 0px 30px;
  margin: auto;
}

.content-width.thin-content {
  max-width: 800px;
}

.content-width.wide-content {
  max-width: 1300px;
}

a {
  color: #da0d0e;
  transition: color 0.25s ease;
}

.hidden-mail-link .hiddenmail:before, .hidden-mail-link .hiddenmail:after {
  font-family: "Fira Sans", Arial, sans-serif;
  color: currentColor;
}

.hidden-mail-link .hiddenmail:before {
  content: attr(data-user);
}

.hidden-mail-link .hiddenmail:after {
  content: attr(data-domain);
}

.arrow-link {
  text-decoration: none;
  font-size: 0px;
  line-height: 0px;
}

.arrow-link .text {
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.2px;
}

.arrow-link .icon-outer {
  display: inline;
  transition: margin 0.25s ease;
  margin-left: 7px;
}

.arrow-link .icon-outer .icon {
  display: inline;
}

p {
  margin: 0px 0px 10px 0px;
}

h1, .like-h1,
h2, .like-h2,
h3, .like-h3,
h4, .like-h4 {
  font-family: "Fira Sans", Arial, sans-serif;
  font-weight: 400;
  margin: 0px;
  padding: 0px;
}

h2, .like-h2 {
  font-size: 26px;
  line-height: 34px;
  font-weight: 700;
}

h1, .like-h1 {
  font-size: 34px;
  line-height: 42px;
  font-weight: 700;
}

h3, .like-h3 {
  font-size: 20px;
  line-height: 28px;
}

h4, .like-h4 {
  font-size: 18px;
  line-height: 26px;
}

.hyphens {
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

.field {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  box-shadow: none;
  border: 1px solid #D3DAE2;
  color: #313b4f;
  font-family: "Fira Sans", Arial, sans-serif;
  font-size: 14px;
  line-height: 18px;
  padding: 0px 22px 0px 14px;
  height: 46px;
  border-radius: 2px;
  background-color: #ffffff;
  transition: background-color 0.25s ease;
}

.field.has-error, .field:invalid {
  background: url("../img/svg/field-error.svg") no-repeat #F6E5E1 right 9px top 18px/8px 8px;
}

.field.valid {
  background: url("../img/svg/green-check.svg") no-repeat right 9px top 18px/9px 8px;
}

::-webkit-input-placeholder {
  color: #313b4f;
  opacity: 0.8;
}

:-moz-placeholder {
  color: #313b4f;
  opacity: 0.8;
}

::-moz-placeholder {
  color: #313b4f;
  opacity: 0.8;
}

:-ms-input-placeholder {
  color: #313b4f;
  opacity: 0.8;
}

.button {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  box-shadow: none;
  outline: none;
  font-family: "Fira Sans", Arial, sans-serif;
  font-size: 0px;
  line-height: 0px;
  letter-spacing: 0px;
  height: 46px;
  padding: 0px 20px 0px 20px;
  background-color: #0e96fc;
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
  border: none;
  text-transform: uppercase;
  border-radius: 2px;
  text-decoration: none;
}

.button .text {
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 1px;
}

.button.cart-button .icon {
  width: 23px;
  height: 19px;
}

.button.empty-button {
  background: #ffffff;
  color: #0e96fc;
  border: 1px solid #0e96fc;
  padding: 0px 19px 0px 19px;
}

.button.with-icon .text {
  margin-left: 6px;
}

.product-tag {
  background: #313b4f;
  border-radius: 2px;
  color: #ffffff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  line-height: 12px;
  font-weight: 700;
  padding: 0px 5px 0px 5px;
  height: 22px;
  letter-spacing: 0.1px;
}

.warranty-tag {
  background: #da0d0e;
  color: #ffffff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 24px;
  font-size: 12px;
  line-height: 12px;
  font-weight: 700;
  letter-spacing: 0.1px;
  padding: 0px 5px 0px 5px;
  position: relative;
}

.warranty-tag:after {
  content: '';
  position: absolute;
  left: 100%;
  top: 0px;
  bottom: 0px;
  border-style: solid;
  border-width: 12px 0px 12px 6px;
  border-color: transparent transparent transparent #da0d0e;
}

.shipping-tag {
  background: #ffffff;
  color: #da0d0e;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  line-height: 12px;
  font-weight: 700;
  padding: 0px 5px 0px 5px;
  height: 22px;
  letter-spacing: 0.1px;
}

.shipping-tag .text {
  margin-left: 5px;
}

.trust-section {
  background: #f4f5f8;
  padding: 15px 0px 12px 0px;
}

.trust-section .content-width, .trust-section > .inner-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.trust-section .trust-item {
  display: none;
  font-size: 0px;
  line-height: 0px;
  text-decoration: none;
  color: #313b4f;
  margin: 0px 22px 0px 22px;
}

.trust-section .trust-item .text {
  margin-left: 6px;
  font-size: 12px;
  line-height: 17px;
  white-space: nowrap;
}

.trust-section .trust-item .orszag-boltja-icon {
  color: #0e96fc;
  width: 35px;
  height: 21px;
}

.trust-section .trust-item .evhonlapja-icon {
  color: #0e96fc;
  width: 16px;
  height: 27px;
}

.trust-section .trust-item:not(.visible-from-mobile) {
  display: inline-flex;
  align-items: center;
}

.visible-from-mobile, .visible-from-tablet {
  display: none;
}

.overflow-hidden {
  overflow: hidden;
}

.breadcrumb {
  display: flex;
  font-size: 12px;
  line-height: 14px;
  margin: 10px 0px 35px 0px;
}

.breadcrumb ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-wrap: wrap;
  text-transform: lowercase;
}

.breadcrumb ul li {
  display: flex;
}

.breadcrumb ul li:after {
  content: '>';
  display: block;
  margin: 0px 10px 0px 10px;
  font-size: 12px;
  line-height: 14px;
  color: #313b4f;
  font-family: "Fira Sans", Arial, sans-serif;
}

.breadcrumb ul li:last-of-type:after {
  display: none;
}

.breadcrumb a {
  text-decoration: none;
}

.breadcrumb a .mobile-label {
  display: none;
}

main.without-breadcrumb {
  padding-top: 60px;
}

main.has-bottom-padding {
  padding-bottom: 80px;
}

select.custom-select {
  font-family: "Fira Sans", Arial, sans-serif;
  height: 100%;
  position: relative;
  z-index: 3;
  font-size: 14px;
  line-height: 22px;
  background: url("../img/svg/blue-arrow-down.svg") no-repeat #ffffff right 9px top 18px/12px 7px;
  border: 1px solid #D3DAE2;
  border-radius: 2px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-shadow: none;
  outline: 0;
  padding: 0px 22px 0px 14px;
  height: 46px;
  color: #95999F;
}

select.custom-select.has-error {
  background: url("../img/svg/red-arrow-down.svg") no-repeat #F6E5E1 right 9px top 18px/12px 7px;
}

select.custom-select.has-value {
  color: #313b4f;
}

select.custom-select option {
  color: #313b4f;
  background: #ffffff;
}

@-moz-document url-prefix() {
  select.custom-select {
    text-indent: -2px;
  }
}

.thin-custom-select {
  position: relative;
  display: block;
  text-align: right;
}

.thin-custom-select:after {
  content: '';
  background: url("../img/svg/arrow-down.svg") no-repeat center center/auto;
  display: block;
  height: 6px;
  width: 9px;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  margin: auto;
}

.thin-custom-select select {
  font-family: "Fira Sans", Arial, sans-serif;
  font-size: 14px;
  line-height: 18px;
  color: #313b4f;
  text-decoration: none;
  box-shadow: none;
  outline: none;
  border: none;
  background: transparent;
  z-index: 4;
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-align: right;
  padding: 0px 16px 0px 0px;
}

.thin-custom-select select option {
  text-align: right;
}

input[type="checkbox"] {
  display: none;
  width: 0px;
  height: 0px;
}

input[type="checkbox"] + label {
  position: relative;
  display: inline-block;
  padding-left: 21px;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.2px;
  cursor: pointer;
}

input[type="checkbox"] + label:before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  border: 1px solid #6E7583;
  background: #ffffff;
  display: block;
  top: 0px;
  left: 0px;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

input[type="checkbox"] + label:after {
  content: '';
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  background: url("../img/svg/check.svg") no-repeat center center/cover;
  top: 5px;
  left: 5px;
}

input[type="checkbox"]:checked + label:before {
  border-color: #da0d0e;
  background: #da0d0e;
}

input[type="radio"] {
  display: none;
  width: 0px;
  height: 0px;
}

input[type="radio"]:not(.method-selector) + label {
  display: inline-block;
  position: relative;
  padding-left: 25px;
  font-size: 14px;
  line-height: 18px;
}

input[type="radio"]:not(.method-selector) + label:before, input[type="radio"]:not(.method-selector) + label:after {
  content: '';
  display: block;
  position: absolute;
  font-size: 0px;
  line-height: 0px;
  border-radius: 50%;
  transition: opacity 0.25s ease, border-color 0.25s ease;
}

input[type="radio"]:not(.method-selector) + label:before {
  width: 16px;
  height: 16px;
  border: 1px solid #313b4f;
  top: 1px;
  left: 0px;
}

input[type="radio"]:not(.method-selector) + label:after {
  width: 10px;
  height: 10px;
  background: #da0d0e;
  top: 4px;
  left: 3px;
  opacity: 0;
}

input[type="radio"]:not(.method-selector):checked + label:after {
  opacity: 1;
}

.pager-area {
  margin-top: 40px;
}

.pager-area .inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pager-area .inner.mobile-content {
  display: none;
}

.pager-area .inner .buttons-outer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 0px;
  line-height: 0px;
}

.pager-area .inner .buttons-outer .arrow-button {
  min-width: 7px;
  min-height: 13px;
}

.pager-area .inner .buttons-outer .arrow-button.double-arrow-button {
  min-width: 13px;
}

.pager-area .inner .buttons-outer .prev-button {
  margin-left: 22px;
}

.pager-area .inner .buttons-outer .next-button {
  margin-right: 22px;
}

.pager-area .inner .buttons-outer.next-buttons {
  justify-content: flex-start;
}

.pager-area .inner .buttons-outer.next-buttons .arrow-button .icon {
  transform: rotate(180deg);
}

.pager-area .inner .numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0px;
  line-height: 0px;
  margin: 0px 30px 0px 30px;
}

.pager-area .inner .numbers .pager-item {
  text-decoration: none;
  color: #313b4f;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  border: 1px solid #ffffff;
  transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
  height: 29px;
  width: 25px;
  margin: 0px 3px 0px 3px;
}

.pager-area .inner .numbers .pager-item.active {
  color: #ffffff;
  background: #da0d0e;
  border: 1px solid #da0d0e;
}

.pager-area .inner .numbers .pager-item .text {
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.2px;
}

.pager-area .inner .numbers .dots {
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.2px;
  margin: 0px 8px 0px 8px;
}

.quantity-control-panel {
  display: flex;
  align-items: center;
  height: 46px;
}

.quantity-control-panel .field-outer {
  width: 110px;
  margin-right: 4px;
  display: flex;
}

.quantity-control-panel .field-outer .field {
  width: 50px;
  text-align: center;
  border-left: none;
  border-right: none;
  padding: 0px 4px 0px 4px;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.2px;
}

.quantity-control-panel .field-outer .control-btn {
  width: 30px;
  font-size: 0px;
  line-height: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: none;
  text-decoration: none;
  border: 1px solid #D3DAE2;
  transition: color 0.25s ease;
  color: #da0d0e;
  cursor: pointer;
}

.quantity-control-panel .field-outer .control-btn.inactive {
  color: rgba(49, 59, 79, 0.3);
}

.quantity-control-panel .field-outer .control-btn span {
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
}

.quantity-control-panel .unit {
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.2px;
}

.arukereso-section {
  max-width: 1010px;
  width: calc(100% - 100px);
  margin: auto;
  padding-left: 50px;
}

.arukereso-section .inner-content {
  color: #ffffff;
  background: #0e96fc;
  display: flex;
  text-align: left;
  position: relative;
}

.arukereso-section .inner-content .arukereso-round-logo {
  background: url("../img/arukerreso-kerek-logo.png") no-repeat center center/100% auto;
  width: 93px;
  height: 93px;
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  transform: translateX(-50%);
}

.arukereso-section .inner-content > .left-content {
  border-right: 4px solid #ffffff;
  padding: 30px 24px 30px 61px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.2px;
  width: 340px;
  display: flex;
  align-items: center;
  position: relative;
}

.arukereso-section .inner-content > .right-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 23px 32px 20px 23px;
  width: calc(100% - 340px);
}

.arukereso-section .inner-content > .right-content > .left-content .counter-row {
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 4px;
}

.arukereso-section .inner-content > .right-content > .left-content .counter-row .number {
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
}

.arukereso-section .inner-content > .right-content > .left-content .value-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.arukereso-section .inner-content > .right-content > .left-content .value-row .number {
  font-size: 28px;
  line-height: 28px;
  letter-spacing: 0.4px;
  font-weight: 700;
}

.arukereso-section .inner-content > .right-content > .left-content .value-row .text {
  font-size: 12px;
  line-height: 14px;
  margin-left: 5px;
}

.arukereso-section .inner-content > .right-content > .rating-items .row {
  display: flex;
  margin-bottom: 8px;
}

.arukereso-section .inner-content > .right-content > .rating-items .row:last-of-type {
  margin-bottom: 0px;
}

.arukereso-section .inner-content > .right-content > .rating-items .row .label {
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  width: calc(100% - 81px);
  padding-right: 12px;
}

.arukereso-section .inner-content > .right-content > .rating-items .row .stars-outer {
  color: #FFDD61;
  display: flex;
  width: 81px;
  align-items: center;
}

.arukereso-section .inner-content > .right-content > .rating-items .row .stars-outer .icon {
  margin-right: 2px;
  min-width: 11px;
}

.arukereso-section .inner-content > .right-content > .rating-items .row .stars-outer .icon.big {
  min-width: 14px;
}

.arukereso-section .inner-content > .right-content > .rating-items .row .stars-outer .icon:last-of-type {
  margin-right: 0px;
}

body .remodalwindow {
  font-family: "Fira Sans", Arial, sans-serif;
  color: #313b4f;
  padding: 0px;
}

body .remodalwindow > .inner-content {
  padding: 48px 0px 57px 0px;
}

body .remodalwindow .close-btn {
  color: #969696;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 18px;
  height: 17px;
  display: block;
}

body .remodalwindow h2.title {
  font-weight: 500;
  margin-bottom: 54px;
}

body .upsell-remodal {
  max-width: 780px;
}

body .upsell-remodal > .inner-content {
  padding-bottom: 20px;
}

body .upsell-remodal .top-content {
  padding: 0px 55px 0px 55px;
}

body .upsell-remodal .top-content .info-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  background: #F2FBF5;
  padding: 30px 30px 25px 25px;
}

body .upsell-remodal .top-content .info-content .button {
  white-space: nowrap;
}

body .upsell-remodal .top-content .info-content .left-content {
  padding-right: 30px;
  display: flex;
  align-items: center;
}

body .upsell-remodal .top-content .info-content .left-content .image-outer {
  width: 65px;
  height: 65px;
  position: relative;
  min-width: 65px;
  margin-right: 20px;
}

body .upsell-remodal .top-content .info-content .left-content .image-outer .icon {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 2;
  margin: auto;
  width: 32px;
  height: 32px;
}

body .upsell-remodal .top-content .info-content .left-content .image-outer img {
  position: relative;
  z-index: 1;
  max-height: 100%;
}

body .upsell-remodal .top-content .info-content .left-content .text {
  max-width: 280px;
}

body .upsell-remodal .upsell-labels-outer {
  margin-top: 42px;
  text-align: left;
}

body .upsell-remodal .upsell-labels-outer h3 {
  margin-bottom: 23px;
  padding: 0px 55px 0px 55px;
}

body .upsell-remodal .upsell-labels-outer:after {
  content: '';
  display: block;
  width: calc(100% - 110px);
  height: 1px;
  background: #e3e7ea;
  margin: 9px auto 0px auto;
}

body .upsell-remodal .upsell-labels-outer .upsell-labels {
  display: flex;
  flex-wrap: wrap;
  padding: 0px 55px 0px 55px;
}

body .upsell-remodal .upsell-labels-outer .upsell-category-label {
  white-space: nowrap;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  height: 32px;
  align-items: center;
  font-size: 14px;
  line-height: 18px;
  border: 1px solid #ffffff;
  border-radius: 2px;
  padding: 0px 11px 0px 11px;
  margin: 13px 13px 0px 0px;
  transition: border-color 0.25s ease;
}

body .upsell-remodal .upsell-labels-outer .upsell-category-label.active {
  border-color: #da0d0e;
}

body .upsell-remodal .upsell-labels-outer .upsell-category-label:last-of-type {
  margin-right: 0px;
}

body .upsell-remodal .upsell-content {
  position: relative;
  text-align: left;
  overflow: hidden;
}

body .upsell-remodal .upsell-content .content-width {
  padding: 0px 55px 0px 55px;
}

body .upsell-remodal .upsell-content .product-slider-section {
  padding: 30px 0px 37px 0px;
}

body .upsell-remodal .upsell-content .product-slider-section .pager-outer {
  width: 55px;
}

body .upsell-remodal .upsell-content .product-slider-section .pager-outer .pager {
  width: 34px;
  height: 34px;
}

body .upsell-remodal .upsell-content .product-slider-section .product-slider-outer {
  width: calc(100% - 110px);
}

body .upsell-remodal .upsell-content .product-slider-section .product-slider-outer .slider-inner .product-card {
  margin-right: 32px;
}

body .upsell-remodal .upsell-content .product-slider-section .product-slider-outer .slider-inner .product-card:last-of-type {
  margin-right: 0px;
}

body .profil-remodal {
  padding: 0px 30px 0px 30px;
  max-width: 480px;
}

body .profil-remodal > .inner-content {
  padding: 60px 0px 60px 0px;
}

body .profil-remodal.unique-price-remodal > .inner-content {
  padding: 40px 0px 40px 0px;
}

body .registration-remodal {
  max-width: 860px;
}

.profil-form {
  margin: 0px auto 0px auto;
}

.profil-form:not(.registration-form) {
  max-width: 330px;
}

.profil-form.unique-price-form {
  max-width: 100%;
}

.profil-form.unique-price-form .form-content {
  max-width: 330px;
  margin: auto;
}

.profil-form.unique-price-form .text-content {
  margin-bottom: 44px;
}

.profil-form.unique-price-form .text-content .lead {
  font-size: 20px;
  line-height: 28px;
  margin-top: 18px;
}

.profil-form.unique-price-form .checkbox-row {
  text-align: left;
}

.profil-form h1, .profil-form .like-h1 {
  margin-bottom: 16px;
}

.profil-form .lead {
  text-align: center;
}

.profil-form .text-content {
  margin-bottom: 50px;
}

.profil-form .row {
  text-align: left;
  margin-top: 20px;
}

.profil-form .row:first-of-type {
  margin-top: 0px;
}

.profil-form .row:not(.checkbox-row) label {
  font-size: 10px;
  line-height: 12px;
  margin-bottom: 1px;
  font-weight: 700;
  text-transform: uppercase;
  color: #313b4f;
  letter-spacing: 0.6px;
}

.profil-form .row:not(.checkbox-row) label.required:after {
  content: '*';
  color: #da0d0e;
}

.profil-form .row .field, .profil-form .row .custom-select {
  display: block;
  width: 100%;
}

.profil-form .button-row {
  margin-top: 38px;
}

.profil-form .info-row {
  margin-top: 20px;
}

.profil-form.registration-form {
  max-width: 700px;
}

.profil-form.registration-form .row {
  display: flex;
  flex-wrap: wrap;
}

.profil-form.registration-form .row .divider {
  width: 100%;
}

.profil-form.registration-form .row .col {
  margin-right: 16px;
  margin-bottom: 20px;
}

.profil-form.registration-form .row .col.small-col {
  width: 74px;
}

.profil-form.registration-form .row .col.dynamic-col {
  width: calc((100% - 196px) / 2);
}

.profil-form.registration-form .row .col.street-number-col {
  margin-right: 0px;
}

.profil-form.registration-form .row .col.phone-col {
  margin-right: 0px;
  width: 138px;
}

.profil-form.registration-form .row .col.normal-col {
  width: calc((100% - 170px) / 2);
}

.profil-form.registration-form .checkbox-row {
  margin-top: 10px;
}

.profil-form.registration-form .button-row {
  margin-top: 50px;
}

.text-opener-content {
  position: relative;
  overflow: hidden;
}

.text-opener-content.active .text-opener-link {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
}

.text-opener-content.opened {
  padding-bottom: 20px;
}

.text-opener-content.opened .text-opener-link .text .close {
  display: block;
}

.text-opener-content.opened .text-opener-link .text .open {
  display: none;
}

.text-opener-content.opened .text-opener-link .icon {
  transform: rotate(180deg);
}

.text-opener-content .text-opener-link {
  display: none;
  position: absolute;
  bottom: 0px;
  right: 0px;
  background: #ffffff;
  padding: 0px 6px 0px 8px;
  z-index: 2;
  font-size: 0px;
  line-height: 22px;
  letter-spacing: 0px;
  text-decoration: none;
}

.text-opener-content .text-opener-link .text {
  font-size: 12px;
  letter-spacing: 0.2;
  font-weight: 700;
}

.text-opener-content .text-opener-link .text .close {
  display: none;
}

.text-opener-content .text-opener-link .icon {
  margin-left: 6px;
  width: 9px;
  height: 6px;
  transition: transform 0.25s ease;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .arukereso-section .inner-content .arukereso-round-logo {
    background-image: url("../img/arukerreso-kerek-logo-2x.png");
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 2.25), only screen and (min-device-pixel-ratio: 2.25), only screen and (min-resolution: 2.25dppx) {
  .arukereso-section .inner-content .arukereso-round-logo {
    background-image: url("../img/arukerreso-kerek-logo-3x.png");
  }
}

@media all and (min--moz-device-pixel-ratio: 0) {
  a:hover {
    text-decoration: none;
  }
  .button:hover {
    background-color: #da0d0e;
  }
  .button:hover.empty-button {
    background: #0e96fc;
    color: #ffffff;
  }
  .arrow-link:hover .text {
    text-decoration: underline;
  }
  .arrow-link:hover .icon-outer {
    margin-left: 17px;
  }
  .pager-area .inner .numbers .pager-item:not(.active):hover {
    border-color: #da0d0e;
    color: #da0d0e;
  }
  body .upsell-remodal .upsell-labels-outer .upsell-category-label:hover {
    border-color: #da0d0e;
  }
}

@media (hover: hover) {
  a:hover {
    text-decoration: none;
  }
  .button:hover {
    background-color: #da0d0e;
  }
  .button:hover.empty-button {
    background: #0e96fc;
    color: #ffffff;
  }
  .arrow-link:hover .text {
    text-decoration: underline;
  }
  .arrow-link:hover .icon-outer {
    margin-left: 17px;
  }
  .pager-area .inner .numbers .pager-item:not(.active):hover {
    border-color: #da0d0e;
    color: #da0d0e;
  }
  body .upsell-remodal .upsell-labels-outer .upsell-category-label:hover {
    border-color: #da0d0e;
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  a:hover {
    text-decoration: none;
  }
  .button:hover {
    background-color: #da0d0e;
  }
  .button:hover.empty-button {
    background: #0e96fc;
    color: #ffffff;
  }
  .arrow-link:hover .text {
    text-decoration: underline;
  }
  .arrow-link:hover .icon-outer {
    margin-left: 17px;
  }
  .pager-area .inner .numbers .pager-item:not(.active):hover {
    border-color: #da0d0e;
    color: #da0d0e;
  }
  body .upsell-remodal .upsell-labels-outer .upsell-category-label:hover {
    border-color: #da0d0e;
  }
}

@media screen and (max-width: 1280px) {
  .trust-section {
    padding-top: 0px;
  }
  .trust-section .trust-item:not(.visible-from-mobile) {
    margin: 15px 15px 0px 15px;
  }
}

@media screen and (max-width: 1080px) {
  .arukereso-section .inner-content > .left-content {
    width: calc(100% - 580px);
  }
  .arukereso-section .inner-content > .right-content {
    padding: 23px 23px 23px 23px;
    width: 580px;
  }
  .arukereso-section .inner-content > .right-content .rating-items {
    min-width: 265px;
  }
}

@media screen and (max-width: 1024px) {
  body .upsell-remodal .top-content {
    padding: 0px 30px 0px 30px;
  }
  body .upsell-remodal .upsell-content .content-width {
    padding: 0px 30px 0px 30px;
  }
  body .upsell-remodal .upsell-content .product-slider-section {
    padding: 0px;
    margin-top: 25px;
  }
  body .upsell-remodal .upsell-content .product-slider-section .product-slider-outer {
    overflow-y: hidden;
    width: 100%;
  }
  body .upsell-remodal .upsell-content .slider-inner:after {
    content: '';
    display: block;
    height: 1px;
    width: 30px;
    min-width: 30px;
  }
  body .upsell-remodal .upsell-labels-outer {
    margin-top: 30px;
  }
  body .upsell-remodal .upsell-labels-outer h3 {
    padding: 0px 30px 0px 30px;
    margin-bottom: 27px;
  }
  body .upsell-remodal .upsell-labels-outer:after {
    width: calc(100% - 60px);
  }
  body .upsell-remodal .upsell-labels-outer .upsell-labels {
    flex-wrap: nowrap;
    padding: 0px;
    overflow-y: hidden;
    overflow-x: auto;
  }
  body .upsell-remodal .upsell-labels-outer .upsell-labels:before, body .upsell-remodal .upsell-labels-outer .upsell-labels:after {
    content: '';
    height: 1px;
    width: 30px;
    min-width: 30px;
    display: block;
  }
  body .upsell-remodal .upsell-labels-outer .upsell-category-label {
    margin-top: 0px;
  }
  main.without-breadcrumb {
    padding-top: 40px;
  }
  main.has-bottom-padding {
    padding-bottom: 55px;
  }
}

@media screen and (max-width: 1023px) {
  .arukereso-section {
    width: calc(100% - 80px);
  }
  .arukereso-section .inner-content .arukereso-round-logo {
    width: 80px;
    height: 80px;
  }
  .arukereso-section .inner-content > .left-content {
    width: 45%;
    padding: 23px 26px 23px 56px;
  }
  .arukereso-section .inner-content > .right-content {
    flex-wrap: wrap;
    width: 55%;
    padding: 20px 20px 20px 23px;
  }
  .arukereso-section .inner-content > .right-content > .left-content .value-row {
    max-width: 300px;
  }
  .arukereso-section .inner-content > .right-content > .left-content .value-row .number {
    min-width: 97px;
  }
  .arukereso-section .inner-content > .right-content .rating-items {
    margin-top: 15px;
  }
  .arukereso-section .inner-content > .right-content .rating-items .row {
    margin-bottom: 0px;
  }
}

@media screen and (max-width: 767px) {
  .arukereso-section {
    width: 100%;
    padding-left: 0px;
  }
  .arukereso-section .inner-content {
    flex-wrap: wrap;
    padding: 22px 20px 24px 20px;
  }
  .arukereso-section .inner-content .arukereso-round-logo {
    width: 60px;
    height: 60px;
    min-width: 60px;
    left: 20px;
    top: 20px;
    bottom: auto;
    margin: 0px;
    transform: none;
  }
  .arukereso-section .inner-content > .left-content {
    width: 100%;
    border-right: none;
    display: flex;
    padding: 0px 0px 0px 74px;
    margin-bottom: 13px;
    align-items: flex-start;
  }
  .arukereso-section .inner-content > .left-content > .inner {
    width: 100%;
    padding-left: 0px;
    font-size: 12px;
    line-height: 18px;
  }
  .arukereso-section .inner-content > .right-content {
    width: 100%;
    padding: 0px 0px 0px 74px;
  }
  .arukereso-section .inner-content > .right-content .rating-items {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  body .remodalwindow h2.title {
    margin-bottom: 40px;
  }
  body .upsell-remodal .top-content .cart-content {
    margin-bottom: 38px;
  }
  body .upsell-remodal .top-content .button-row {
    padding-bottom: 45px;
  }
}

@media screen and (max-width: 600px) {
  h2, .like-h2 {
    font-size: 20px;
    line-height: 24px;
  }
  h3, .like-h3 {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
  }
  h1, .like-h1 {
    font-size: 20px;
    line-height: 26px;
  }
  body:not(.home) {
    font-size: 12px;
    line-height: 18px;
  }
  main.without-breadcrumb {
    padding-top: 20px;
  }
  main.has-bottom-padding {
    padding-bottom: 30px;
  }
  .content-width {
    padding-left: 20px;
    padding-right: 20px;
  }
  .product-tag {
    height: 19px;
    font-size: 10px;
    line-height: 10px;
  }
  .warranty-tag {
    height: 20px;
    font-size: 10px;
    line-height: 10px;
    padding: 0px 2px 0px 5px;
  }
  .warranty-tag:after {
    border-width: 10px 0px 10px 5px;
  }
  .shipping-tag {
    height: 14px;
  }
  .shipping-tag .icon {
    width: 16px;
    height: 10px;
  }
  .shipping-tag .text {
    font-size: 10px;
    line-height: 12px;
    letter-spacing: 0.1px;
    margin-left: 4px;
  }
  .trust-section {
    padding: 0px;
  }
  .trust-section .content-width, .trust-section > .inner-content {
    height: 46px;
    align-items: center;
  }
  .trust-section .trust-item {
    display: none !important;
  }
  .trust-section .trust-item.show-on-mobile {
    display: flex !important;
    margin: 0px;
  }
  input[type="radio"]:not(.method-selector) + label {
    font-size: 12px;
  }
  .breadcrumb {
    margin: 6px 0px 15px 0px;
  }
  .breadcrumb ul li {
    display: none;
  }
  .breadcrumb ul li:last-of-type, .breadcrumb ul li.penultimate-item {
    display: flex;
  }
  .breadcrumb ul li.penultimate-item a .name {
    display: none;
  }
  .breadcrumb ul li.penultimate-item a .mobile-label {
    display: block;
  }
  .pager-area .inner.desktop-content {
    display: none;
  }
  .pager-area .inner.mobile-content {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .pager-area .inner.mobile-content a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 44px;
    text-decoration: none;
    font-size: 0px;
    line-height: 0px;
  }
  .pager-area .inner.mobile-content a .text {
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.2px;
    font-weight: 700;
    margin-right: 10px;
  }
  .text-opener-content .text-opener-link {
    line-height: 18px;
  }
  body .remodalwindow .close-btn {
    width: 15px;
    height: 14px;
    top: 15px;
    right: 15px;
  }
  body .remodalwindow .close-btn .icon {
    width: 100%;
    height: 100%;
  }
  body .upsell-remodal > .inner-content {
    padding-bottom: 0px;
  }
  body .upsell-remodal h2.title {
    margin-bottom: 20px;
  }
  body .upsell-remodal .top-content {
    padding: 0px;
  }
  body .upsell-remodal .top-content .info-content {
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px 15px 20px 15px;
  }
  body .upsell-remodal .top-content .info-content .left-content {
    width: 100%;
    margin-bottom: 20px;
    padding-right: 0px;
  }
  body .upsell-remodal .top-content .info-content .left-content .text {
    max-width: none;
  }
  body .upsell-remodal .upsell-labels-outer h3 {
    padding: 0px 15px 0px 15px;
    margin-bottom: 20px;
  }
  body .upsell-remodal .upsell-labels-outer .upsell-labels:before, body .upsell-remodal .upsell-labels-outer .upsell-labels:after {
    width: 15px;
    min-width: 15px;
  }
  body .upsell-remodal .upsell-labels-outer .upsell-category-label {
    padding: 0px 8px 0px 8px;
  }
  body .upsell-remodal .upsell-labels-outer:after {
    width: calc(100% - 30px);
  }
  body .upsell-remodal .product-slider-outer .slider-inner {
    margin-top: 0px;
  }
  body .profil-remodal {
    padding: 0px 20px 0px 20px;
  }
  body .profil-remodal > .inner-content {
    padding: 40px 0px 50px 0px;
  }
  .profil-form h1, .profil-form .like-h1 {
    margin-bottom: 10px;
  }
  .profil-form .text-content {
    margin-bottom: 30px;
  }
  .profil-form .row, .profil-form .info-row {
    margin-top: 15px;
  }
  .profil-form .button-row {
    margin-top: 30px;
  }
  .profil-form.registration-form .row .col {
    margin-right: 0px;
    margin-bottom: 15px;
  }
  .profil-form.registration-form .row .col.normal-col, .profil-form.registration-form .row .col.phone-col, .profil-form.registration-form .row .col.street-col {
    width: 100% !important;
  }
  .profil-form.registration-form .row .col.dynamic-col {
    width: calc(100% - 90px);
  }
  .profil-form.registration-form .row .col.street-number-col, .profil-form.registration-form .row .col.city-col {
    margin-left: 16px;
  }
  .profil-form.registration-form .checkbox-row {
    text-align: left;
    margin-top: 5px;
  }
  .profil-form.registration-form .button-row {
    margin-top: 30px;
  }
  .profil-form.unique-price-form .text-content {
    margin-bottom: 30px;
  }
  .profil-form.unique-price-form .text-content .lead {
    font-size: 16px;
    line-height: 22px;
  }
  .field {
    padding: 0px 17px 0px 11px;
    font-size: 16px;
  }
  .field.valid, .field:invalid, .field.has-error {
    background-position: right 6px top 18px;
  }
}

@media screen and (max-width: 359px) {
  .arukereso-section .inner-content > .left-content {
    min-height: 60px;
  }
  .arukereso-section .inner-content > .right-content {
    padding-left: 0px;
  }
}

.category-page-content {
  padding-bottom: 100px;
}

.category-page-content .category-page-inner .category-form {
  display: flex;
}

.category-page-content .category-page-inner.without-filter .filter-content {
  display: none;
}

.category-page-content .category-page-inner.without-filter .list-content {
  width: 100%;
  padding-left: 0px;
}

.category-page-content .category-page-inner.without-filter .mobile-button-outer {
  display: none !important;
}

.category-page-content .category-page-inner .filter-content {
  width: 220px;
}

.category-page-content .category-page-inner .filter-content input[type="checkbox"] + label {
  font-size: 14px;
  line-height: 18px;
  padding-left: 28px;
}

.category-page-content .category-page-inner .filter-content input[type="checkbox"] + label:before {
  width: 18px;
  height: 18px;
}

.category-page-content .category-page-inner .filter-content input[type="checkbox"] + label:after {
  left: 6px;
  top: 6px;
}

.category-page-content .category-page-inner .filter-content input[type="checkbox"] + label .counter {
  color: #6E7583;
}

.category-page-content .category-page-inner .filter-content .filter-box {
  margin-bottom: 40px;
}

.category-page-content .category-page-inner .filter-content .filter-box:last-of-type {
  margin-bottom: 0px;
}

.category-page-content .category-page-inner .filter-content .filter-box .title {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.category-page-content .category-page-inner .filter-content .filter-box .title .subtitle {
  font-weight: 400;
}

.category-page-content .category-page-inner .filter-content .filter-box .title .subtitle:before {
  content: ' ';
}

.category-page-content .category-page-inner .filter-content .filter-box .title .tooltip {
  font-size: 0px;
  line-height: 0px;
  display: inline-block;
  color: #da0d0e;
  position: relative;
}

.category-page-content .category-page-inner .filter-content .filter-box .clear-outer {
  margin-top: 10px;
  text-align: right;
}

.category-page-content .category-page-inner .filter-content .filter-box .clear-outer a {
  font-weight: 700;
  text-decoration: none;
  font-size: 12px;
  line-height: 16px;
}

.category-page-content .category-page-inner .filter-content .filter-box ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.category-page-content .category-page-inner .filter-content .filter-box ul.category-list {
  padding-left: 1px;
}

.category-page-content .category-page-inner .filter-content .filter-box ul.category-list li {
  margin-bottom: 8px;
  line-height: 18px;
  font-size: 12px;
}

.category-page-content .category-page-inner .filter-content .filter-box ul.category-list .category-link {
  display: flex;
  text-decoration: none;
  font-weight: 400;
}

.category-page-content .category-page-inner .filter-content .filter-box ul.category-list .category-link .icon {
  transform: translateY(4px);
}

.category-page-content .category-page-inner .filter-content .filter-box ul.category-list .category-link .text-content {
  width: calc(100% - 8px);
  padding-left: 8px;
}

.category-page-content .category-page-inner .filter-content .filter-box.checkbox-filter-box .inner {
  font-size: 0px;
  line-height: 0px;
}

.category-page-content .category-page-inner .filter-content .filter-box.checkbox-filter-box .inner .row {
  margin-bottom: 12px;
}

.category-page-content .category-page-inner .filter-content .filter-box.checkbox-filter-box .inner .row:last-of-type {
  margin-bottom: 0px;
}

.category-page-content .category-page-inner .filter-content .filter-box.checkbox-filter-box .inner .row.more-option {
  display: none;
}

.category-page-content .category-page-inner .filter-content .filter-box.checkbox-filter-box .inner.opened .row.more-option {
  display: block;
}

.category-page-content .category-page-inner .filter-content .filter-box.checkbox-filter-box .inner .more-button-outer a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.category-page-content .category-page-inner .filter-content .filter-box.checkbox-filter-box .inner .more-button-outer a .more {
  display: block;
}

.category-page-content .category-page-inner .filter-content .filter-box.checkbox-filter-box .inner .more-button-outer a .less {
  display: none;
}

.category-page-content .category-page-inner .filter-content .filter-box.checkbox-filter-box .inner .more-button-outer a .text {
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  margin-right: 3px;
}

.category-page-content .category-page-inner .filter-content .filter-box.checkbox-filter-box .inner .more-button-outer a .arrow-down {
  width: 10px;
  height: 7px;
}

.category-page-content .category-page-inner .filter-content .filter-box.checkbox-filter-box .inner .more-button-outer a.opened .less {
  display: block;
}

.category-page-content .category-page-inner .filter-content .filter-box.checkbox-filter-box .inner .more-button-outer a.opened .more {
  display: none;
}

.category-page-content .category-page-inner .filter-content .filter-box.checkbox-filter-box .inner .more-button-outer a.opened .icon {
  transform: rotate(180deg);
}

.category-page-content .category-page-inner .filter-content .filter-box .filter-slider-labels {
  font-size: 16px;
  line-height: 24px;
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.category-page-content .category-page-inner .filter-content .filter-box .filter-slider-labels .separator {
  margin: 0px 10px 0px 10px;
}

.category-page-content .category-page-inner .filter-content > .top-content {
  margin-bottom: 30px;
}

.category-page-content .category-page-inner .filter-content > .top-content .filter-box {
  margin-bottom: 0px;
}

.category-page-content .category-page-inner .filter-content > .top-content .reset-outer {
  margin-top: 16px;
  margin-bottom: 7px;
  text-align: right;
  border-top: 1px solid #e3e7ea;
  padding-top: 10px;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.2px;
}

.category-page-content .category-page-inner .filter-content > .top-content .reset-outer .close-filter-icon {
  display: none;
}

.category-page-content .category-page-inner .filter-content > .top-content .reset-outer a {
  font-weight: 700;
  text-decoration: none;
}

.category-page-content .category-page-inner .list-content {
  width: calc(100% - 220px);
  padding-left: 60px;
}

.category-page-content .category-page-inner .list-content > .top-content {
  margin-bottom: 15px;
}

.category-page-content .category-page-inner .list-content > .top-content h1 {
  margin-bottom: 8px;
}

.category-page-content .category-page-inner .list-content .faq-outer {
  margin-bottom: 20px;
}

.category-page-content .category-page-inner .list-content .faq-outer .title {
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
}

.category-page-content .category-page-inner .list-content .faq-outer .link-cloud {
  display: flex;
  flex-wrap: wrap;
}

.category-page-content .category-page-inner .list-content .faq-outer .link-cloud a {
  background: #e3e7ea;
  color: #313b4f;
  border-radius: 2px;
  height: 26px;
  padding: 0px 14px 0px 14px;
  font-size: 12px;
  line-height: 12px;
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
  align-items: center;
  margin: 13px 15px 0px 0px;
  font-weight: 700;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.category-page-content .category-page-inner .list-content .middle-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.category-page-content .category-page-inner .list-content .middle-content .counter-outer .counter {
  font-weight: 700;
}

.category-page-content .category-page-inner .list-content .middle-content .right-content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.category-page-content .category-page-inner .list-content .middle-content .view-change-outer {
  display: flex;
  margin-left: 35px;
}

.category-page-content .category-page-inner .list-content .middle-content .view-change-outer .view-change-item {
  width: 33px;
  height: 33px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #da0d0e;
  cursor: pointer;
  transition: color 0.25s ease, background-color 0.25s ease;
  margin-right: 3px;
}

.category-page-content .category-page-inner .list-content .middle-content .view-change-outer .view-change-item:last-of-type {
  margin-right: 0px;
}

.category-page-content .category-page-inner .list-content .middle-content .view-change-outer .view-change-item.active {
  background: #e3e7ea;
  color: #313b4f;
}

.category-page-content .category-page-inner .list-content .product-list {
  border-top: 1px solid #e3e7ea;
  margin-top: 10px;
}

.category-page-content .category-page-inner .list-content .product-list .trust-section {
  width: 100%;
  display: block;
  height: 48px;
  overflow: hidden;
}

.category-page-content .category-page-inner .list-content .grid-product-list {
  display: flex;
  flex-wrap: wrap;
  padding: 30px 0px 40px 0px;
  border-bottom: 1px solid #e3e7ea;
}

.category-page-content .category-page-inner .list-content .grid-product-list .product-card {
  min-height: 315px;
  width: calc((100% - 150px) / 4);
  margin-right: 50px;
  margin-top: 80px;
}

.category-page-content .category-page-inner .list-content .grid-product-list .product-card:nth-of-type(4n + 4) {
  margin-right: 0px;
}

.category-page-content .category-page-inner .list-content .grid-product-list .product-card:nth-of-type(1), .category-page-content .category-page-inner .list-content .grid-product-list .product-card:nth-of-type(2), .category-page-content .category-page-inner .list-content .grid-product-list .product-card:nth-of-type(3), .category-page-content .category-page-inner .list-content .grid-product-list .product-card:nth-of-type(4) {
  margin-top: 0px;
}

.category-page-content .category-page-inner .list-content .grid-product-list .trust-section {
  transform: translateY(30px);
  margin-top: 20px;
}

.category-page-content .category-page-inner .list-content .grid-product-list .trust-section.show-on-horizontal {
  display: none;
}

.category-page-content .category-page-inner .list-content .grid-product-list .category-info-card .text-content {
  width: 100%;
  padding: 15px 10px 15px 10px;
}

.category-page-content .category-page-inner .list-content .grid-product-list .category-info-card .text-content .title {
  font-size: 18px;
  line-height: 24px;
  display: inline-block;
  max-width: 100%;
}

.category-page-content .category-page-inner .list-content .grid-product-list .category-info-card .text-content .text-outer {
  display: inline-block;
}

.category-page-content .category-page-inner .list-content .grid-product-list .category-info-card .text-content .text-outer .text {
  font-size: 14px;
  line-height: 22px;
  width: 100%;
  margin: 0px 5px 0px 0px;
}

.category-page-content .category-page-inner .list-content .grid-product-list .category-info-card .image-outer {
  width: 100%;
  top: 30%;
  height: 70%;
}

.category-page-content .category-page-inner .list-content .grid-product-list .category-info-card .image-outer:before {
  width: 100%;
  height: 35%;
  background-image: linear-gradient(180deg, #f9f9f9 0%, #f9f9f9 22%, rgba(249, 249, 249, 0.6) 70%, rgba(249, 249, 249, 0) 100%);
}

.category-page-content .category-page-inner .list-content .grid-product-list .category-info-card .image-outer .background {
  background-position: right -12px top 20px;
}

.category-page-content .category-page-inner .list-content .horizontal-product-list {
  display: block;
  padding-top: 0px;
}

.category-page-content .category-page-inner .list-content .horizontal-product-list .trust-section {
  margin: 10px 0px 10px 0px;
}

.category-page-content .category-page-inner .list-content .horizontal-product-list .product-card {
  width: 100%;
  border-bottom: 1px solid #e3e7ea;
}

.category-page-content .category-page-inner .list-content .horizontal-product-list .product-card:nth-of-type(4n + 4) {
  border-bottom: none;
}

.category-page-content .category-page-inner .mobile-button-outer {
  display: none;
}

.category-page-content .category-page-inner .category-info-card {
  background-color: #f9f9f9;
  position: relative;
  cursor: pointer;
}

.category-page-content .category-page-inner .category-info-card .text-content {
  color: #313b4f;
  padding: 24px 20px 21px 23px;
  position: relative;
  z-index: 2;
}

.category-page-content .category-page-inner .category-info-card .text-content .title {
  display: inline-block;
  background: white;
  padding: 5px 10px 5px 9px;
  font-size: 28px;
  line-height: 44px;
  letter-spacing: 1.3px;
  font-weight: 700;
  text-transform: uppercase;
}

.category-page-content .category-page-inner .category-info-card .text-content .text-outer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 9px;
  position: relative;
  z-index: 2;
  padding-left: 9px;
}

.category-page-content .category-page-inner .category-info-card .text-content .text-outer .text {
  font-size: 18px;
  line-height: 24px;
  margin-right: 8px;
}

.category-page-content .category-page-inner .category-info-card .text-content .text-outer .icon-outer {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  border-radius: 1px;
  color: #ffffff;
  background: #da0d0e;
}

.category-page-content .category-page-inner .category-info-card .image-outer {
  display: block;
  width: 52%;
  height: 100%;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  position: absolute;
}

.category-page-content .category-page-inner .category-info-card .image-outer:before {
  content: '';
  position: absolute;
  z-index: 2;
  left: 0px;
  top: 0px;
  width: 28%;
  height: 100%;
  background: linear-gradient(90deg, #f9f9f9 0%, #f9f9f9 28%, rgba(249, 249, 249, 0.6) 70%, rgba(249, 249, 249, 0) 100%);
}

.category-page-content .category-page-inner .category-info-card .image-outer .background {
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0px -30px;
  position: relative;
  z-index: 1;
}

.category-page-content .category-page-inner .category-info-content {
  max-width: 740px;
  margin: 70px auto 0px auto;
  width: calc(100% - 60px);
}

.category-page-content .category-page-inner .category-info-content .like-h1 {
  margin-bottom: 29px;
}

.category-page-content .category-page-inner .category-info-content .lead {
  font-weight: 500;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 26px;
}

.category-page-content .category-page-inner .category-info-content .description {
  font-size: 16px;
  line-height: 26px;
}

.category-page-content .category-page-inner .category-info-content .description > *:first-child {
  margin-top: 0px;
}

.category-page-content .category-page-inner .category-info-content .description p {
  margin: 0px auto 18px auto;
}

.category-page-content .category-page-inner .category-info-content .description p:last-of-type {
  margin-bottom: 0px;
}

.category-page-content .category-page-inner .category-info-content .description img {
  max-width: 100%;
  margin: 30px auto 50px auto;
}

.category-page-content .category-page-inner .category-info-content .description blockquote {
  width: 100%;
  line-height: 24px;
  background: #f4f5f8;
  border: 1px solid #e3e7ea;
  margin: 20px 0px 20px 0px;
  padding: 29px 39px 29px 39px;
}

.category-page-content .category-page-inner .category-info-content .description ul, .category-page-content .category-page-inner .category-info-content .description ol {
  margin: 12px 0px 35px 0px;
  padding: 0px 0px 0px 37px;
  list-style: none;
}

.category-page-content .category-page-inner .category-info-content .description ul li, .category-page-content .category-page-inner .category-info-content .description ol li {
  padding: 0px 0px 0px 20px;
  margin: 0px 0px 8px 0px;
  font-size: 16px;
  line-height: 20px;
  display: block;
  position: relative;
}

.category-page-content .category-page-inner .category-info-content .description ul li:last-of-type, .category-page-content .category-page-inner .category-info-content .description ol li:last-of-type {
  margin-bottom: 0px;
}

.category-page-content .category-page-inner .category-info-content .description ul li:before, .category-page-content .category-page-inner .category-info-content .description ol li:before {
  content: '';
  position: absolute;
  display: block;
  top: 0px;
  left: 0px;
}

.category-page-content .category-page-inner .category-info-content .description ul li:before {
  top: 7px;
  width: 6px;
  height: 6px;
  background: #da0d0e;
  border-radius: 50%;
}

.category-page-content .category-page-inner .category-info-content .description ol {
  counter-reset: netkazan-static;
}

.category-page-content .category-page-inner .category-info-content .description ol li {
  counter-increment: netkazan-static;
}

.category-page-content .category-page-inner .category-info-content .description ol li:before {
  content: counter(netkazan-static) ".";
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  color: #313b4f;
  font-family: "Fira Sans", Arial, sans-serif;
}

.category-page-content .category-page-inner .category-info-content .description ol.letter-style li:before {
  content: counter(netkazan-static, lower-alpha) ".";
}

.category-page-content .category-page-inner .category-info-content .description h2, .category-page-content .category-page-inner .category-info-content .description .like-h2 {
  margin: 65px auto 16px auto;
}

.category-page-content .category-page-inner .category-info-content .description h3, .category-page-content .category-page-inner .category-info-content .description .like-h3 {
  margin: 45px auto 16px auto;
}

.tooltipster-base {
  max-width: 376px;
}

.tooltipster-base .tooltipster-box {
  font-family: "Fira Sans", Arial, sans-serif;
  background: #ffffff;
  border: 1px solid #D3DAE2;
  border-radius: 2px;
  box-shadow: 0 0 26px 8px rgba(0, 0, 0, 0.15);
}

.tooltipster-base .tooltipster-box .tooltipster-content {
  padding: 30px;
  color: #313b4f;
  font-size: 14px;
  line-height: 22px;
}

.tooltipster-base .tooltipster-arrow {
  width: 17px !important;
  height: 10px !important;
  background: url("../img/svg/tooltip-arrow.svg") no-repeat center center/cover;
}

.tooltipster-base .tooltipster-arrow .tooltipster-arrow-uncropped {
  display: none;
}

.tooltipster-base.tooltipster-bottom .tooltipster-arrow {
  transform: rotate(180deg);
}

@media screen and (max-width: 1279px) {
  .category-page-content .category-page-inner.without-filter .category-form .list-content {
    padding-left: 0px;
  }
  .category-page-content .category-page-inner .list-content {
    padding-left: 40px;
  }
  .category-page-content .category-page-inner .list-content .grid-product-list .product-card {
    width: calc((100% - 100px) / 3);
  }
  .category-page-content .category-page-inner .list-content .grid-product-list .product-card:nth-of-type(4n + 4) {
    margin-right: 50px;
  }
  .category-page-content .category-page-inner .list-content .grid-product-list .product-card:nth-of-type(3n + 3) {
    margin-right: 0px;
  }
  .category-page-content .category-page-inner .list-content .grid-product-list .product-card:nth-of-type(4) {
    margin-top: 80px;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1279px) {
  .category-page-content .category-page-inner .list-content .horizontal-product-list .product-card .rating-content > .text {
    display: none;
  }
  .category-page-content .category-page-inner.without-filter .list-content .grid-product-list .product-card {
    width: calc((100% - 150px) / 4);
  }
  .category-page-content .category-page-inner.without-filter .list-content .grid-product-list .product-card:nth-of-type(3n + 3) {
    margin-right: 50px;
  }
  .category-page-content .category-page-inner.without-filter .list-content .grid-product-list .product-card:nth-of-type(4n + 4) {
    margin-right: 0px;
  }
  .category-page-content .category-page-inner.without-filter .list-content .grid-product-list .product-card:nth-of-type(4) {
    margin-top: 0px;
  }
}

@media all and (min--moz-device-pixel-ratio: 0) {
  .category-page-content .category-page-inner .filter-content .filter-box ul.category-list .category-link:hover .text-content {
    text-decoration: underline;
  }
  .category-page-content .category-page-inner .list-content .faq-outer .link-cloud a:hover {
    text-decoration: none;
    background: #313b4f;
    color: #ffffff;
  }
}

@media (hover: hover) {
  .category-page-content .category-page-inner .filter-content .filter-box ul.category-list .category-link:hover .text-content {
    text-decoration: underline;
  }
  .category-page-content .category-page-inner .list-content .faq-outer .link-cloud a:hover {
    text-decoration: none;
    background: #313b4f;
    color: #ffffff;
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .category-page-content .category-page-inner .filter-content .filter-box ul.category-list .category-link:hover .text-content {
    text-decoration: underline;
  }
  .category-page-content .category-page-inner .list-content .faq-outer .link-cloud a:hover {
    text-decoration: none;
    background: #313b4f;
    color: #ffffff;
  }
}

@media (pointer: coarse) and (max-width: 1280px) {
  .category-page-content .category-page-inner {
    padding: 0px;
  }
  .category-page-content .category-page-inner.without-filter .category-form .list-content {
    padding-left: 0px;
  }
  .category-page-content .category-page-inner .filter-content {
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    width: 100%;
    max-width: 360px;
    z-index: 100;
    background: #ffffff;
    padding: 0px 0px 0px 0px;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 4px 14px 1px rgba(0, 0, 0, 0.1);
    transition: transform 0.25s ease;
    transform: translateX(-110%);
  }
  .category-page-content .category-page-inner .filter-content.opened {
    transform: translateX(0px);
  }
  .category-page-content .category-page-inner .filter-content > .top-content {
    display: flex;
    flex-direction: column-reverse;
  }
  .category-page-content .category-page-inner .filter-content > .top-content .category-box {
    padding: 12px 20px 0px 20px;
  }
  .category-page-content .category-page-inner .filter-content > .top-content .reset-outer {
    margin: 0px 0px 0px 0px;
    height: 44px;
    padding: 0px 20px 0px 20px;
    border: none;
    border-bottom: 1px solid #e3e7ea;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .category-page-content .category-page-inner .filter-content > .top-content .reset-outer .close-filter-icon {
    display: block;
  }
  .category-page-content .category-page-inner .filter-content > .top-content .reset-outer .close-filter-icon .icon {
    transform: rotate(180deg);
  }
  .category-page-content .category-page-inner .filter-content .bottom-content {
    margin-bottom: 80px;
    padding: 0px 20px 0px 20px;
  }
  .category-page-content .category-page-inner .mobile-button-outer {
    display: flex;
    justify-content: center;
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 101;
    transition: transform 0.25s ease;
  }
  .category-page-content .category-page-inner .mobile-button-outer.inactive {
    transform: translateY(calc(100% + 30px));
  }
  .category-page-content .category-page-inner .mobile-button-outer .button {
    width: 100%;
    background: #da0d0e;
    max-width: 400px;
  }
  .category-page-content .category-page-inner .mobile-button-outer .button .close-filter {
    display: none;
  }
  .category-page-content .category-page-inner .list-content {
    width: 100%;
    padding: 0px;
  }
  .category-page-content .category-page-inner .list-content > .top-content, .category-page-content .category-page-inner .list-content .faq-outer {
    width: calc(100% - 60px);
    margin-left: auto;
    margin-right: auto;
  }
  .category-page-content .category-page-inner .list-content .middle-content {
    border-bottom: 1px solid #e3e7ea;
    padding: 0px 30px 10px 30px;
  }
  .category-page-content .category-page-inner .list-content .product-list {
    border-top: none;
    margin-top: 0px;
  }
  .category-page-content .category-page-inner .list-content .grid-product-list .trust-section {
    margin-top: 50px;
    transform: none;
  }
  .category-page-content .category-page-inner .list-content .grid-product-list .product-card {
    width: calc((100% - 150px) / 4);
    margin-right: 0px;
    margin-top: 50px;
    margin-left: 30px;
  }
  .category-page-content .category-page-inner .list-content .grid-product-list .product-card:nth-of-type(3n + 3) {
    margin-right: 0px;
  }
  .category-page-content .category-page-inner .list-content .grid-product-list .product-card:nth-of-type(4n + 4) {
    margin-right: 0px;
  }
  .category-page-content .category-page-inner .list-content .grid-product-list .product-card:nth-of-type(4) {
    margin-top: 0px;
  }
  .category-page-content .category-page-inner .list-content .horizontal-product-list .product-card {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media screen and (max-width: 1024px) {
  .category-page-content .category-page-inner {
    padding: 0px;
  }
  .category-page-content .category-page-inner.without-filter .category-form .list-content {
    padding-left: 0px;
  }
  .category-page-content .category-page-inner .filter-content {
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    width: 100%;
    max-width: 360px;
    z-index: 100;
    background: #ffffff;
    padding: 0px 0px 0px 0px;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 4px 14px 1px rgba(0, 0, 0, 0.1);
    transition: transform 0.25s ease;
    transform: translateX(-110%);
  }
  .category-page-content .category-page-inner .filter-content.opened {
    transform: translateX(0px);
  }
  .category-page-content .category-page-inner .filter-content > .top-content {
    display: flex;
    flex-direction: column-reverse;
  }
  .category-page-content .category-page-inner .filter-content > .top-content .category-box {
    padding: 12px 20px 0px 20px;
  }
  .category-page-content .category-page-inner .filter-content > .top-content .reset-outer {
    margin: 0px 0px 0px 0px;
    height: 44px;
    padding: 0px 20px 0px 20px;
    border: none;
    border-bottom: 1px solid #e3e7ea;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .category-page-content .category-page-inner .filter-content > .top-content .reset-outer .close-filter-icon {
    display: block;
  }
  .category-page-content .category-page-inner .filter-content > .top-content .reset-outer .close-filter-icon .icon {
    transform: rotate(180deg);
  }
  .category-page-content .category-page-inner .filter-content .bottom-content {
    margin-bottom: 80px;
    padding: 0px 20px 0px 20px;
  }
  .category-page-content .category-page-inner .mobile-button-outer {
    display: flex;
    justify-content: center;
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 101;
    transition: transform 0.25s ease;
  }
  .category-page-content .category-page-inner .mobile-button-outer.inactive {
    transform: translateY(calc(100% + 30px));
  }
  .category-page-content .category-page-inner .mobile-button-outer .button {
    width: 100%;
    background: #da0d0e;
    max-width: 400px;
  }
  .category-page-content .category-page-inner .mobile-button-outer .button .close-filter {
    display: none;
  }
  .category-page-content .category-page-inner .list-content {
    width: 100%;
    padding: 0px;
  }
  .category-page-content .category-page-inner .list-content > .top-content, .category-page-content .category-page-inner .list-content .faq-outer {
    width: calc(100% - 60px);
    margin-left: auto;
    margin-right: auto;
  }
  .category-page-content .category-page-inner .list-content .middle-content {
    border-bottom: 1px solid #e3e7ea;
    padding: 0px 30px 10px 30px;
  }
  .category-page-content .category-page-inner .list-content .product-list {
    border-top: none;
    margin-top: 0px;
  }
  .category-page-content .category-page-inner .list-content .grid-product-list .trust-section {
    margin-top: 50px;
    transform: none;
  }
  .category-page-content .category-page-inner .list-content .grid-product-list .product-card {
    width: calc((100% - 150px) / 4);
    margin-right: 0px;
    margin-top: 50px;
    margin-left: 30px;
  }
  .category-page-content .category-page-inner .list-content .grid-product-list .product-card:nth-of-type(3n + 3) {
    margin-right: 0px;
  }
  .category-page-content .category-page-inner .list-content .grid-product-list .product-card:nth-of-type(4n + 4) {
    margin-right: 0px;
  }
  .category-page-content .category-page-inner .list-content .grid-product-list .product-card:nth-of-type(4) {
    margin-top: 0px;
  }
  .category-page-content .category-page-inner .list-content .horizontal-product-list .product-card {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media screen and (max-width: 900px) {
  .category-page-content .category-page-inner .list-content {
    width: 100%;
    padding: 0px;
  }
  .category-page-content .category-page-inner .list-content .grid-product-list .product-card {
    width: calc((100% - 120px) / 3);
  }
  .category-page-content .category-page-inner .list-content .grid-product-list .product-card:nth-of-type(4n + 4) {
    margin-right: 0px;
  }
  .category-page-content .category-page-inner .list-content .grid-product-list .product-card:nth-of-type(3n + 3) {
    margin-right: 0px;
  }
  .category-page-content .category-page-inner .list-content .grid-product-list .product-card:nth-of-type(4) {
    margin-top: 50px;
  }
}

@media screen and (max-width: 850px) {
  .category-page-content .category-page-inner .list-content .horizontal-product-list .product-card .rating-content > .text {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .category-page-content .category-page-inner .list-content {
    width: 100%;
    padding: 0px;
  }
  .category-page-content .category-page-inner .list-content .middle-content .view-change-outer {
    display: none;
  }
  .category-page-content .category-page-inner .list-content .grid-product-list .product-card {
    width: calc((100% - 90px) / 2);
  }
  .category-page-content .category-page-inner .list-content .grid-product-list .product-card:nth-of-type(3n + 3) {
    margin-right: 0px;
  }
  .category-page-content .category-page-inner .list-content .grid-product-list .product-card:nth-of-type(2n + 2) {
    margin-right: 0px;
  }
  .category-page-content .category-page-inner .list-content .grid-product-list .product-card:nth-of-type(3) {
    margin-top: 50px;
  }
}

@media screen and (max-width: 600px) {
  .category-page-content {
    padding-bottom: 0px;
  }
  .category-page-content .category-page-inner {
    padding: 0px;
  }
  .category-page-content .category-page-inner .list-content > .top-content {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .category-page-content .category-page-inner .list-content > .top-content h1 {
    margin-bottom: 4px;
  }
  .category-page-content .category-page-inner .list-content > .top-content .lead {
    font-size: 12px;
    line-height: 18px;
  }
  .category-page-content .category-page-inner .list-content .faq-outer {
    width: 100%;
    margin-bottom: 15px;
  }
  .category-page-content .category-page-inner .list-content .faq-outer .title {
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 2px;
  }
  .category-page-content .category-page-inner .list-content .faq-outer .link-cloud-outer {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding-bottom: 5px;
  }
  .category-page-content .category-page-inner .list-content .faq-outer .link-cloud-outer:before {
    content: '';
    display: block;
    right: 0px;
    top: 0px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, white 100%);
    height: 100%;
    width: 50px;
    z-index: 5;
    position: absolute;
  }
  .category-page-content .category-page-inner .list-content .faq-outer .link-cloud {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .category-page-content .category-page-inner .list-content .faq-outer .link-cloud:after {
    display: block;
    content: '';
    min-width: 20px;
    width: 20px;
    height: 1px;
  }
  .category-page-content .category-page-inner .list-content .faq-outer .link-cloud a {
    white-space: nowrap;
    margin: 10px 20px 0px 0px;
  }
  .category-page-content .category-page-inner .list-content .faq-outer .link-cloud a:first-of-type {
    margin-left: 20px;
  }
  .category-page-content .category-page-inner .list-content .faq-outer .link-cloud a:last-of-type {
    margin-right: 0px;
    position: relative;
    z-index: 6;
  }
  .category-page-content .category-page-inner .list-content .middle-content {
    padding: 0px 20px 10px 20px;
    font-size: 14px;
  }
  .category-page-content .category-page-inner .list-content .grid-product-list {
    border-bottom: none;
    padding: 10px 0px 0px 0px;
  }
  .category-page-content .category-page-inner .list-content .grid-product-list .trust-section {
    margin: 0px;
  }
  .category-page-content .category-page-inner .list-content .grid-product-list .trust-section.show-from-mobile {
    display: block;
  }
  .category-page-content .category-page-inner .list-content .grid-product-list .product-card {
    margin: 0px;
    width: 100%;
    min-height: auto;
  }
  .category-page-content .category-page-inner .list-content .grid-product-list .product-card:nth-of-type(4n + 4), .category-page-content .category-page-inner .list-content .grid-product-list .product-card:nth-of-type(3n + 3), .category-page-content .category-page-inner .list-content .grid-product-list .product-card:nth-of-type(2n + 2), .category-page-content .category-page-inner .list-content .grid-product-list .product-card:nth-of-type(3), .category-page-content .category-page-inner .list-content .grid-product-list .product-card:nth-of-type(4) {
    margin-right: 0px;
    margin-top: 0px;
  }
  .category-page-content .category-page-inner .list-content .grid-product-list .product-card:nth-of-type(4n + 4) > .inner {
    border-bottom: 0px;
  }
  .category-page-content .category-page-inner .list-content .grid-product-list .product-card:last-of-type > .inner {
    border-bottom: 1px solid #e3e7ea;
  }
  .category-page-content .category-page-inner .list-content .horizontal-product-list {
    padding: 10px 0px 0px 0px;
  }
  .category-page-content .category-page-inner .list-content .horizontal-product-list .product-card {
    padding: 0px;
  }
  .category-page-content .category-page-inner .pager-area {
    margin-top: 0px;
    border-bottom: 1px solid #e3e7ea;
  }
  .category-page-content .category-page-inner .category-info-card .text-content, .category-page-content .category-page-inner .list-content .grid-product-list .category-info-card .text-content {
    padding: 15px 0px 15px 15px;
    max-width: 240px;
  }
  .category-page-content .category-page-inner .category-info-card .text-content .title, .category-page-content .category-page-inner .list-content .grid-product-list .category-info-card .text-content .title {
    font-size: 24px;
    line-height: 30px;
    background: rgba(255, 255, 255, 0.9);
  }
  .category-page-content .category-page-inner .category-info-card .text-content .text-outer, .category-page-content .category-page-inner .list-content .grid-product-list .category-info-card .text-content .text-outer {
    max-width: 210px;
    margin-top: 5px;
  }
  .category-page-content .category-page-inner .category-info-card .text-content .text-outer .text, .category-page-content .category-page-inner .list-content .grid-product-list .category-info-card .text-content .text-outer .text {
    font-size: 16px;
    line-height: 24px;
  }
  .category-page-content .category-page-inner .category-info-card .text-content .text-outer .icon-outer, .category-page-content .category-page-inner .list-content .grid-product-list .category-info-card .text-content .text-outer .icon-outer {
    transform: translateY(-1px);
  }
  .category-page-content .category-page-inner .category-info-card .image-outer, .category-page-content .category-page-inner .list-content .grid-product-list .category-info-card .image-outer {
    width: 85%;
    height: 100%;
    top: 0px;
    right: 0px;
  }
  .category-page-content .category-page-inner .category-info-card .image-outer:before, .category-page-content .category-page-inner .list-content .grid-product-list .category-info-card .image-outer:before {
    width: 65%;
    height: 100%;
    background-image: linear-gradient(90deg, #f9f9f9 0%, #f9f9f9 30%, rgba(249, 249, 249, 0.6) 70%, rgba(249, 249, 249, 0) 100%);
  }
  .category-page-content .category-page-inner .category-info-card .image-outer .background, .category-page-content .category-page-inner .list-content .grid-product-list .category-info-card .image-outer .background {
    background-position: right -40px top -12px;
  }
  .category-page-content .category-page-inner .category-info-content {
    margin-top: 40px;
    padding-bottom: 40px;
    width: 100%;
  }
  .category-page-content .category-page-inner .category-info-content .like-h1, .category-page-content .category-page-inner .category-info-content .lead {
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
  }
  .category-page-content .category-page-inner .category-info-content .like-h1 {
    margin-bottom: 20px;
  }
  .category-page-content .category-page-inner .category-info-content .lead {
    font-size: 16px;
    line-height: 24px;
  }
  .category-page-content .category-page-inner .category-info-content .description {
    font-size: 14px;
    line-height: 24px;
  }
  .category-page-content .category-page-inner .category-info-content .description > * {
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
  }
  .category-page-content .category-page-inner .category-info-content .description p {
    margin-bottom: 10px;
  }
  .category-page-content .category-page-inner .category-info-content .description > img, .category-page-content .category-page-inner .category-info-content .description > blockquote {
    width: 100%;
  }
  .category-page-content .category-page-inner .category-info-content .description blockquote {
    padding: 15px 20px 15px 20px;
    border-right: none;
  }
  .category-page-content .category-page-inner .category-info-content .description img {
    margin: 20px auto 20px auto;
  }
  .category-page-content .category-page-inner .category-info-content .description h2, .category-page-content .category-page-inner .category-info-content .description .like-h2 {
    margin-top: 35px;
    margin-bottom: 6px;
  }
  .category-page-content .category-page-inner .category-info-content .description h3, .category-page-content .category-page-inner .category-info-content .description .like-h3 {
    margin-top: 25px;
    margin-bottom: 6px;
  }
  .category-page-content .category-page-inner .category-info-content .description ul, .category-page-content .category-page-inner .category-info-content .description ol {
    margin: 10px 0px 20px 0px;
    padding-left: 25px;
  }
  .category-page-content .category-page-inner .category-info-content .description ul li, .category-page-content .category-page-inner .category-info-content .description ol li {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
    padding-left: 18px;
  }
  .category-page-content .category-page-inner .category-info-content .description ul li:before {
    width: 4px;
    height: 4px;
    top: 8px;
  }
  .category-page-content .category-page-inner .category-info-content .description ol li:before {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
  }
}

@media screen and (max-width: 359px) {
  .category-page-content .category-page-inner .middle-content .counter-outer .counter {
    white-space: nowrap;
  }
  .category-page-content .category-page-inner .middle-content .counter-outer .label {
    display: none;
  }
  .category-page-content .category-page-inner .middle-content .right-content {
    width: calc(100% - 60px);
  }
}

.list-content {
  position: relative;
}

.list-content.ajax-loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: table;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 5;
}

/*# sourceMappingURL=category.css.map */
/* brands kiemelt 2x2*/
/* Kiemelt 2x2 banner */
.brand-item--featured {
  flex: 0 0 calc((100% - 105px) / 4 * 2 + 15px); /* 2 doboz szélessége + margin */
  height: calc((100% - 105px) / 4 * 2 + 15px);   /* 2 doboz magassága (arányos) */
  position: relative;
  background: #ffe9e0;
  border: 2px solid #f44336;
}

/* A képet nagyítsuk a kiemelt bannerhez */
.brand-item--featured .image-outer {
  position: relative;
  height: auto;
  top: auto;
  padding: 20px;
}

/* Szöveg méretezése kiemelten */
.brand-item--featured .text {
  font-size: 16px;
  font-weight: bold;
  color: #c62828;
  display: block;
  margin-top: 10px;
  text-align: center;
}



/* Chrome, Safari, Edge, Opera */
.quantity-control-panel input[type=number]::-webkit-inner-spin-button, 
.quantity-control-panel input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}
.category-page-content .category-page-inner .list-content .faq-outer .title {
	line-height: 20px;
}

/* Firefox */
.quantity-control-panel input[type=number] {
  -moz-appearance: textfield;
}

.cart-table-row img {
	max-height:200px;
}

.cart-product-remodal .top-content .image-outer img {
  max-height: 200px!important;
  margin:0 auto;
}

.category-page-content .category-page-inner .filter-content > .top-content .reset-outer .close-filter-icon {
    display: flex;
}

.product-card .inner .description a {
    text-decoration: none;
    color: #313b4f;
    background: #fff;
    display: block;
    font-size: 12px;
    line-height: 18px;
}

.main-header > .bottom .opening-button {
    display: inline-block;
}

.main-header > .bottom .rightinfo {
    justify-content: flex-end;
}

.mobile-menu-extralink {
    color: #da0d0e !important;
    font-weight: bold;
    transition: color .25s ease;
}

.mobile-menu-extralink .icon, .mobile-menu-extralink .image-icon {
    display: inline;
}

@media screen and (min-width: 1280px) {
    .mobile-filter-backlink {
        display: none !important;
    }
}


.static-page img {
	max-width:100%!important;
	height:auto;
	display: flex;
}


/*youtube reszponziv hack*/
.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.embed-container iframe, .embed-container object, .embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* The alert message box */
.alert {
    padding: 20px;
    background-color: #f44336; /* Red */
    color: white;
    margin-bottom: 15px;
}

/* The close button */
.closebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

/* When moving the mouse over the close button */
.closebtn:hover {
    color: black;
}

.upsell-remodal .image-outer img {
    height: 100%;
}

.upsell-remodal .top-content .info-content .left-content .image-outer {
    display: flex;
    align-items: center;
    justify-content: center;
}

.loginform-response.has-error,
.profil-edit-response.has-error
{
    color: #da0d0e;
    margin-top: 38px;
}
.loginform-response.success,
.profil-edit-response.success
{
    color: #09B53E;
    margin-top: 38px;
}

.regform-response.has-error{
    color: #da0d0e;
    margin-top: 50px;
}
.regform-response.success{
    color: #09B53E;
    margin-top: 50px;
}

.cart-page .cart-table .cart-table-row {
    flex-wrap: wrap;
}

.for-industrial-use {
    color: #950C0D;
    background: #FFECE7;
    border: 1px solid #DBA09D;
    padding: 10px 19px 10px 19px;
    width: 100%;
    text-align: center;
    margin-top: 10px;
}


/*ORDER_OK PAGE CHANGEFIZMOD SECTION*/

.order-confirm-page .payment-section .items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.method-section {
    padding-top: 40px;
    margin-top: 28px;
    /*border-top: 1px solid #e3e7ea;*/
}
.method-section.shipping-section {
    border-top: none;
    padding-top: 0px;
    margin-top: 55px;
}
.method-section h2 {
    margin-bottom: 0px;
}
.method-section .items {
    display: flex;
    flex-wrap: wrap;
}
.method-section .items .method-selector {
    width: 0px;
    height: 0px;
    display: none;
}
.method-section .items .method-selector + label {
    border: 1px solid #d3dae2;
    border-radius: 2px;
    background: #fff;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    box-shadow: none;
    width: 165px;
    margin: 20px 26px 0px 0px;
    padding: 15px 20px 20px 20px;
    position: relative;
    font-size: 0px;
    line-height: 0px;
}
.method-section .items .method-selector + label:last-of-type {
    margin-right: 0px;
}
.method-section .items .method-selector + label span {
    display: block;
    text-align: center;
}
.method-section .items .method-selector + label .image-outer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 68px;
    margin-bottom: 16px;
}
.method-section .items .method-selector + label .image-outer .payment-card-icon {
    transform: translateX(7px);
}
.method-section .items .method-selector + label .image-outer.cofidis img {
    width: 93px;
}
.method-section .items .method-selector + label .title {
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 0.2px;
}
.method-section .items .method-selector + label .info {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.2px;
}
.method-section .items .method-selector.shipping-selector + label {
    width: 195px;
    padding: 30px 20px 44px 20px;
}
.method-section .items .method-selector.shipping-selector + label .image-outer {
    height: 49px;
    margin-bottom: 22px;
}
.method-section .items .method-selector.shipping-selector + label .info {
    margin-top: 4px;
}
.method-section .items .method-selector.shipping-selector + label .price {
    position: absolute;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.2px;
    left: 0px;
    right: 0px;
    bottom: 20px;
}
.method-section .items .method-selector:checked + label {
    border-color: #da0d0e;
    background: #fff;
    box-shadow: 0 0 14px 4px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 600px) {
    .method-section {
        padding: 30px 15px 40px 15px;
        margin-top: 0px;
    }
    .method-section h2 {
        margin-bottom: 18px;
    }
    .method-section.shipping-section {
        margin-top: 0px;
    }
    .method-section .items .method-selector + label, .method-section .items .method-selector.shipping-selector + label {
        width: 100%;
        margin: 0px 0px 16px 0px;
        padding: 12px 10px 12px 94px;
        min-height: 55px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }
    .method-section .items .method-selector + label:last-of-type, .method-section .items .method-selector.shipping-selector + label:last-of-type {
        margin-bottom: 0px;
    }
    .method-section .items .method-selector + label span, .method-section .items .method-selector.shipping-selector + label span {
        text-align: left;
    }
    .method-section .items .method-selector + label .image-outer, .method-section .items .method-selector.shipping-selector + label .image-outer {
        display: flex;
        position: absolute;
        width: 60px;
        top: 0px;
        bottom: 0px;
        left: 15px;
        margin: auto;
    }
    .method-section .items .method-selector + label .image-outer.shipping-courier img, .method-section .items .method-selector.shipping-selector + label .image-outer.shipping-courier img {
        width: 50px;
    }
    .method-section .items .method-selector + label .image-outer.payment-cod img, .method-section .items .method-selector.shipping-selector + label .image-outer.payment-cod img {
        width: 44px;
    }
    .method-section .items .method-selector + label .image-outer .payment-card-icon, .method-section .items .method-selector.shipping-selector + label .image-outer .payment-card-icon {
        width: 44px;
        height: 26px;
        transform: none;
    }
    .method-section .items .method-selector + label .image-outer .payment-transfer-icon, .method-section .items .method-selector.shipping-selector + label .image-outer .payment-transfer-icon {
        width: 38px;
        height: 36px;
    }
    .method-section .items .method-selector + label .info, .method-section .items .method-selector.shipping-selector + label .info {
        margin-top: 0px;
    }
    .method-section .items .method-selector + label .price, .method-section .items .method-selector.shipping-selector + label .price {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 5px;
        display: block;
        width: 100%;
    }
}
@media screen and (max-width: 1180px) {
    .method-section .items .method-selector + label {
        /*margin-right: 20px;*/
    }
    .method-section .items .method-selector.shipping-selector + label {
        width: 188px;
    }
}

.help.warning{
    color: #950C0D;
    background: #FFECE7;
    border: 1px solid #DBA09D;
    padding: 10px 19px 10px 19px;
}
/*
.rbn{text-align: left;color: #fff;width:30px; height:20px; position: relative; background: #ccc;border:0;margin:0 10px 0 0;padding: 4px;} 
.rbn:after, .rbn:before {left : 100%; top : 50%;border: solid transparent; content: ' '; height: 0; width: 0; position: absolute; pointer-events: none;} 
.rbn:after {border-left-color: #fff;border-width: 10px; margin-top: -10px; }  
.rbn:before {border-left-color: #fff;border-width: 10px; margin-top: -10px;}
*/
/*
.rbn{text-align: left;color: #fff;width:30px; height:20px; position: relative; background: #ccc;border:0;margin:0 10px 0 0;padding: 2px 4px 6px 4px;display:block;} 
.rbn:after, .rbn:before {left : 100%; top : 50%; border: solid transparent; content: ' '; height: 0; width: 0; position: absolute; pointer-events: none;} 
.rbn:after {border-left-color: #fff;border-width: 10px; margin-top: -10px; }  
.rbn:before {border-left-color: #fff;border-width: 10px; margin-top: -10px;}
*/
.rbn{text-align: left;color: #fff;width:30px; height:20px; position: relative; background: #ccc;border:0;margin:0 10px 0 0;padding: 4px;display:block;} 
.rbn:after, .rbn:before {left : 100%; top : 50%;border: solid transparent; content: ' '; height: 0; width: 0; position: absolute; pointer-events: none;} 
.rbn:after {border-left-color: #fff;border-width: 10px; margin-top: -10px; }  
.rbn:before {border-left-color: #fff;border-width: 10px; margin-top: -10px;}

.rbn.t-A_ {background:#009946;}
.rbn.t-A_:after,.rbn.t-A_:before {border-left-color:#009946;}
.rbn.t-A__ {background:#007534;}
.rbn.t-A__:after,.rbn.t-A__:before {border-left-color:#007534;}
.rbn.t-A___ {background:#007534;}
.rbn.t-A___:after,.rbn.t-A___:before {border-left-color:#009A44;}



.rbn.t-A {background:#00A653;}
.rbn.t-A:after,.rbn.t-A:before {border-left-color:#00A653;}
.rbn.t-B {background:#4BB547;}
.rbn.t-B:after,.rbn.t-B:before {border-left-color:#4BB547;}
.rbn.t-C {background:#BFD630}
.rbn.t-C:after,.rbn.t-C:before {border-left-color:#BFD630;}
.rbn.t-D {background:#FEEF00;}
.rbn.t-D:after,.rbn.t-D:before {border-left-color:#FEEF00;}
.rbn.t-E {background:#FFB812;}
.rbn.t-E:after,.rbn.t-E:before {border-left-color:#FFB812;}
.rbn.t-F {background:#F36F24;}
.rbn.t-F:after,.rbn.t-F:before {border-left-color:#F36F24;}
.rbn.t-G {background:#ED1D25;}
.rbn.t-G:after,.rbn.t-G:before {border-left-color:#ED1D25;}

.ariston-block {
	margin-top:30px;
	padding-top:0!important;
}
.ariston-block .bg{
	background:#ecc44c;
}
.ariston-block .label{
	width:100%!important;
	padding:20px 0;
}

@media screen and (max-width: 600px) {	
.trust-section .content-width, .trust-section > .inner-content {
	height:auto;
}
}



/*typeahead style*/
.typeahead__container {
	position:inherit!important;
}
.typeahead__item {
    border-top: solid 1px #ccc
}
.typeahead__result-:first-child {
    border-top: none;
}
.typeahead__list,.typeahead__result,.typeahead__item  {
    z-index: 8099 !important;
}
.typeahead__dropdown,
.typeahead__list {
    right:0!important;
    min-width:300px!important;
    left:auto!important;
	max-width:600px;
	left:auto;
	top:50px;
}
@media only screen and (max-width: 480px) {
.typeahead__dropdown,
.typeahead__list {
    right:0!important;
    left:auto!important;
	width:90%;
	left:auto;
	position:relative!important;
}
}

.typeahead__result .row {
    display: table-row;
}
.typeahead__result .row>* {
    display: table-cell;
    vertical-align: middle;
}
.typeahead__result .username {
    padding: 0 10px;
    font-size: 13px;
    color: #333;
}
.typeahead__result .id {
    font-size: 13px;
    color: #333;
    font-variant: small-caps;
}
.typeahead__result .price,
.minicart2 .price {
    font-size: 14px;
    color: #333;
    font-weight:bold;
    display:block;
}
.typeahead__result img {
    height: 30px!important;
    width: 30px;
}
.typeahead__result .project-logo {
    display: inline-block;
    height: 100px;
}
.typeahead__result .project-logo img {
    height: 100%;
}
.typeahead__result .project-information {
    display: inline-block;
    vertical-align: top;
    padding: 20px 0 0 20px;
}
.typeahead__result .project-information>span {
    display: block;
    margin-bottom: 5px;
}
.typeahead__result>ul>li>a small {
    padding-left: 0px;
    color: #999;
}
.typeahead__result .project-information li {
    font-size: 14px;
}
.typeahead__backdrop {
    background-color: black;
}
.typeahead__container.backdrop+.typeahead__backdrop,
.typeahead__container.filter .typeahead__dropdown,
.typeahead__container.hint .typeahead__hint,
.typeahead__container.result .typeahead__list {
    background-color: #fff;
}
.typeahead__group-product.active,
.typeahead__group-product active {
    background-color: #f1f1f1!important;
}
.typeahead__item>a:hover {
    background-color: #f1f1f1!important;
}
.typeahead__container * {
    padding-top: 1px;
}
.mobilsearch .typeahead__result {
    margin-top:40px;
}


@media print{
   .static-page-body .main-header{
       display:none;
   }
   .static-page-body footer{
       display:none;
   }
   .ak-widget {
       display:none!important;
   }

}

.couponresult {
    display: none;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
}

.cart-tax-number-box .has-tax-error {
  border-color: rgb(185, 74, 72);
  background: url(../img/svg/field-error.svg) no-repeat #F6E5E1 right 9px top 18px/8px 8px;
}
.cart-tax-number-box span.form-error {
  display: none;
}
.cart-product .inner {
	cursor:pointer;
}

.cart-product .inner:hover {
	top:0!important;
	left:0!important;
	padding:0!important;
	width:100%;
	position:unset!important;
}
.product-page-content .description ul {
	margin-top:0;
}



