.product:hover {
  /*background-color: #f3f3f3;*/
  border: 1px solid #bdbdbd;
  position: relative;
  min-height: 457px;
}

.product--offer {
  background-color: #e6eeff
}

.product__image {
  width: 250px;
  height: 250px;
  -o-object-fit: contain;
  object-fit: contain
}

.blank-zakaza {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.blank-zakaza__item {
  /*position: relative;
  float: left;*/
  width: 280px;
  min-height: 460px;
  border: 1px solid #ededed;
  margin-right: 20px;
  margin-bottom: 22px;
}

.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: 250px
}

.product__property {
  white-space: nowrap !important;
  text-overflow: ellipsis;
  /*max-width: 250px;*/
  padding: 4px 20px !important;
  /*border-bottom: 1px solid #ccc;*/
  text-align: center
}

.product__property--image {
  position: sticky;
  left: 0;
  /*width: 250px;
  background-color: #fafafa;*/
  z-index: 200
}

.product__property--price {
  white-space: nowrap !important
}

.product__property--name {
  max-width: 400px;
  /*overflow: hidden;*/
  position: sticky;
  left: 85px;
  /*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 0 4px 1px #d3d3d3d3;
  box-shadow: -2px 0 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;
  margin: 0 auto;
}

/*.product__property--quantity::before {
  content: "";
  height: 100%;
  border-left: 1px solid #d3d3d3d3;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-box-shadow: 2px 0 4px 1px #d3d3d3d3;
  box-shadow: 2px 0 4px 1px #d3d3d3d3
}*/

.product__property--default {
  overflow: hidden
}

.product__link {
  white-space: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 200px
}

.product__artnumber {
  font-size: 11px;
  color: #909090;
  font-weight: 700
}

.product__offers-info {
  border-bottom: 1px solid #ccc
}

.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: .5s;
  animation-duration: .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: 400;
  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
}

.wrap-product__property--price {
  display: inline;
}

.wrap-product__property--price .price-title {
  width: 49%;
  float: left;
}

.wrap-product__property--price .price_item {
  width: 49%;
}

.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;
}