.product td > div{
  transition: height .3s ease;
}
.product__property--price-mobile{
  display:none;
}
.mobile-price-name{
  display:none;
}
.product:hover {
  background-color: #f3f3f3;
  position: relative;
}
.product--offer {
  background-color: #e6eeff;
}
.product__image {
  width: 45px;
  height: 45px;
  -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: 100%;
}
.product__property {
  white-space: nowrap !important;
  text-overflow: ellipsis;
  max-width: 100%;
  padding: 4px 20px !important;
  border-bottom: 1px solid #cccccc;
  text-align: center;
}
@media (min-width: 1820px) {
  .product__property {
    width: 40px;
  }
}
.product__property--image {
  position: sticky;
  left: 0;
  background-color: #fafafa;
  z-index: 200;
}
.product__property--price {
  white-space: nowrap !important;
}
.product__property--name {
  height: 83px;
  max-width: 250px;
  min-width: 450px;
  overflow: hidden;
  position: sticky;
  left: 85px;
  background-color: #fafafa;
  z-index: 200;
  text-align: left;
  padding: 4px 20px 4px 0px!important;
}
.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: -1px;
  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 {
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  display: block;
  white-space: normal;
}
.product__artnumber {
  font-size: 11px;
  color: #909090;
  font-weight: bold;
}
.product__quant {
  font-size: 11px;
  color: #909090;
  font-weight: bold;
}
.green{
  color: #28b843;
}
.orange{
  color:#ffa500;
}
.red{
  color:#d2284a;
}
.product__offers-info {
  border-bottom: 1px solid #cccccc;
}
.product.hidden {
  display: none;
}
.product--offer td > div{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden;
}
.product--offer .product__property--name > div {
  justify-content: start;
}
.product.show td > div{
  height: auto;
}
.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;
}

.quantity-selector__error {
  display: block;
  color: red;
  line-height: 12px;
}
.item-quantity__general{
  padding: 0 5px;
}

@media (max-width: 991px) {
  .blank-zakaza__header-property {
    padding: 12px;
  }
}

@media (max-width: 768px) {
  .blank-zakaza__header {
    display: none;
  }

  .product {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid #E9F1F5;
    border-bottom: 1px solid #E9F1F5;
  }

  .product.hidden {
    display: none;
  }

  .blank-zakaza__item .product:hover {
    background-color: transparent;
  }

  .product__property {
    border: none;
    background-color: transparent;
  }

  .product__property--image {
    flex-basis: 45px;
    padding-left: 10px !important;
    order: 1;
  }

  .product__property--name {
    flex-basis: calc(100% - 75px);
    max-width: initial;
    padding: 4px !important;
    order: 2;
  }

  .product__link {
    width: 100%;
    max-width:100%
  }

  .quantity-selector__value {
    max-width: 69px;
  }

  .product__property--quantity .quantity-selector {
    justify-content: end;
  }

  .product__property--name::before,
  .product__property--quantity::before {
    content: none;
  }

  .product__property--avaliable {
    flex-basis: 30%;
    padding: 4px !important;
    order: 4;
  }

  .product__property--avaliable::before {
    content: '�������:';
    padding-right: 3px;
  }

  .product__property--avaliable::after {
    content: '��';
  }

  .product__property--price {
    flex-basis: 20%;
    padding-left: 10px !important;
    order: 3;
    font-size: 16px;
    font-weight: 600;
  }

  .product__property--quantity {
    display: flex;
    justify-content: end;
    min-width: auto;
    max-width: 100%;
    padding-right: 10px !important;
    order: 5;
  }

  .quantity-selector__value {
    width: 100%;
  }

  .quantity-selector__decrement,
  .quantity-selector__increment {
    flex-shrink: 0;
  }

  .product__property--default {
    display: none;
    order: 2;
  }
  .mobile-price-name{
    display:block;
    font-size: 12px;
  }
  .mobile-price-none{
    display:none;
  }

  .product__property--price-mobile{
    display:block;
    flex-basis: 20%;
    padding-left: 10px !important;
    order: 3;
    font-size: 16px;
    font-weight: 600;
  }
  .product__property--price{
    display:none;
  }
}

@media (max-width: 380px) {
  .product__property--name {
    min-width: 200px;
  }
}

.quantity-selector__decrement[readonly], .quantity-selector__increment[readonly] {
  opacity: 0.65;
}

.btn-confirm {
  color: #FFFFFF;
  background-color: #3e495f;
}

.btn-confirm:hover {
  background-color: #2a3140;
}