.product:hover {
  background-color: #f3f3f3;
  position: relative;
}
.product--offer {
  background-color: #e6eeff;
}
.product__image {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
.product__image-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
}
.product__property {
 
 /*  white-space: nowrap !important; */
  /* text-overflow: ellipsis; */
  max-width: 600px;
  padding: 4px 10px !important;
  border-bottom: 1px solid #cccccc;
  text-align: center;
}
.product__property--image {
  position: sticky;
  left: 0;
  background-color: #fafafa;
  z-index: 200;
}
.product__property--price {
  white-space: nowrap !important;
}
.product__property--name {

  white-space: normal;
  max-width: 600px;
/*   overflow: auto; */
  position: sticky;
  left: 80px;
  background-color: #fafafa;
  z-index: 200;
  text-align: left;
}
.product__property--name::before {
  content: "";
  height: 100%;
  border-right: 1px solid #d3d3d3d3;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-box-shadow: -2px 0px 4px 1px #d3d3d3d3;
          box-shadow: -2px 0px 4px 1px #d3d3d3d3;
}
.product__property--quantity {
  position: sticky;
  right: 0;
  width: 160px;
  max-width: 160px;
  min-width: 160px;
  height: 100%;
  background-color: #fafafa;
  padding: 4px !important;
  z-index: 98;
}
.product__property--quantity::before {
  content: "";
  height: 100%;
  border-left: 1px solid #d3d3d3d3;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-box-shadow: 2px 0px 4px 1px #d3d3d3d3;
          box-shadow: 2px 0px 4px 1px #d3d3d3d3;
}
.product__property--default {
  overflow: hidden;
}
.product__link {
  display: inline-block;
  word-wrap: break-word;
  word-break: break-all;
 /*  white-space: nowrap !important; */
 /*  text-overflow: ellipsis; */
  /* overflow: auto; */
  max-width: 580px;
  margin-bottom: 5px; 
}
.product__artnumber {
  font-size: 11px;
  color: #909090;
  font-weight: bold;
}
.product__offers-info {
  border-bottom: 1px solid #cccccc;
}
.product.hidden {
  display: none;
}

.quantity-selector {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.quantity-selector__decrement {
  width: 32px;
  height: 32px;
  border: 1px solid #ddd;
  background-color: #3e495f;
  outline: unset !important;
  color: #fff;
  cursor: pointer;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.quantity-selector__increment {
  width: 32px;
  height: 32px;
  border: 1px solid #ddd;
  background-color: #3e495f;
  outline: unset !important;
  color: #fff;
  cursor: pointer;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.quantity-selector__decrement:active, .quantity-selector__increment:active {
  background-color: #2a3140;
}
.quantity-selector__decrement:disabled, .quantity-selector__increment:disabled {
  background-image: -webkit-gradient(linear, left bottom, left top, from(#3e495f), to(#fff));
  background-image: linear-gradient(0deg, #3e495f, #fff);
  -webkit-animation-name: moveAround;
          animation-name: moveAround;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: none;
          animation-fill-mode: none;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
@-webkit-keyframes moveAround {
  0% {
    background-image: -webkit-gradient(linear, left bottom, left top, from(#3e495f), to(#798aaa));
    background-image: linear-gradient(0deg, #3e495f, #798aaa);
  }
  13% {
    background-image: linear-gradient(45deg, #3e495f, #798aaa);
  }
  25% {
    background-image: -webkit-gradient(linear, left top, right top, from(#3e495f), to(#798aaa));
    background-image: linear-gradient(90deg, #3e495f, #798aaa);
  }
  37% {
    background-image: linear-gradient(135deg, #3e495f, #798aaa);
  }
  50% {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#3e495f), to(#798aaa));
    background-image: linear-gradient(180deg, #3e495f, #798aaa);
  }
  63% {
    background-image: linear-gradient(225deg, #3e495f, #798aaa);
  }
  75% {
    background-image: -webkit-gradient(linear, right top, left top, from(#3e495f), to(#798aaa));
    background-image: linear-gradient(270deg, #3e495f, #798aaa);
  }
  87% {
    background-image: linear-gradient(315deg, #3e495f, #798aaa);
  }
  100% {
    background-image: -webkit-gradient(linear, left bottom, left top, from(#3e495f), to(#798aaa));
    background-image: linear-gradient(360deg, #3e495f, #798aaa);
  }
}
@keyframes moveAround {
  0% {
    background-image: -webkit-gradient(linear, left bottom, left top, from(#3e495f), to(#798aaa));
    background-image: linear-gradient(0deg, #3e495f, #798aaa);
  }
  13% {
    background-image: linear-gradient(45deg, #3e495f, #798aaa);
  }
  25% {
    background-image: -webkit-gradient(linear, left top, right top, from(#3e495f), to(#798aaa));
    background-image: linear-gradient(90deg, #3e495f, #798aaa);
  }
  37% {
    background-image: linear-gradient(135deg, #3e495f, #798aaa);
  }
  50% {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#3e495f), to(#798aaa));
    background-image: linear-gradient(180deg, #3e495f, #798aaa);
  }
  63% {
    background-image: linear-gradient(225deg, #3e495f, #798aaa);
  }
  75% {
    background-image: -webkit-gradient(linear, right top, left top, from(#3e495f), to(#798aaa));
    background-image: linear-gradient(270deg, #3e495f, #798aaa);
  }
  87% {
    background-image: linear-gradient(315deg, #3e495f, #798aaa);
  }
  100% {
    background-image: -webkit-gradient(linear, left bottom, left top, from(#3e495f), to(#798aaa));
    background-image: linear-gradient(360deg, #3e495f, #798aaa);
  }
}
.quantity-selector__value {
  width: 60px;
  height: 30px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  margin: 0 -2px;
  text-align: center;
  outline: unset;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0 !important;
}

.offers-info {
  background-color: #3e495f;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 8px;
  border-radius: 4px;
  -webkit-box-flex: 0;
     -moz-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  width: auto;
  color: #fff;
  cursor: pointer;
}
.offers-info__label {
  height: 20px;
  font-weight: normal;
  font-size: 12px;
  line-height: 18px;
  margin-right: 8px;
}
.offers-info__count {
  background-color: #FF7043;
  border-radius: 10px;
  padding: 0 8px;
  margin-right: 5px;
}
.product__property--price .wrap-product__property--price {
  display:flex;
  flex-direction: column;
}
.product__property--discount-price {
  text-decoration: line-through;
  font-size: 11px;
}

.amx_product__property {
  
  max-width: 30px !important;
}

.amx_product__property_price {
  max-width: 100px !important;
}
.product__link::-webkit-scrollbar-track {
  -webkit-box-shadow: 5px 5px 5px -5px rgba(34, 60, 80, 0.2) inset;
  background-color: #f9f9fd;
}

.product__link {
  scrollbar-color: #999 #f9f9fd;
  scrollbar-width: thin;
}

.amx-product__property_image {
 width: 60px;
}

.add-to-compare {
	width: 25px;
}
.add-to-compare svg {
	margin: 0 auto;
}

.notification {
    position: fixed;
    top: 70px;
    right: 30px;
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.notification.show {
    display: block!important;
    opacity: 1;
}
.special_price{
  color: red;
  font-weight: bold;
}