.right-menu {
  background-color: #fff;
  border-radius: 10px;
  padding: 16px;
  grid-row: 1;
  font-size: 12px;
  line-height: 1.5;
}

@media (min-width: 1080px) {
  .right-menu {
    grid-column: 2;
    padding: 24px;
    font-size: 14px;
    position: sticky;
    top: 100px;
  }
}

.right-menu__item:not(:first-child) {
  padding-top: 8px;
}

.right-menu__item:not(:last-child) {
  padding-bottom: 8px;
  border-bottom: 1px solid #edeff2;
}

.right-menu__link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #303031;
  transition: color .3s ease;
}

.right-menu__link--active,
.right-menu__link:hover {
  color: #bc191d;
}

.right-menu__link-img {
  width: 22px;
  height: 22px;
  fill: #b2bac7;
  stroke: #b2bac7;
  margin-right: 16px;
  transition-property: fill, stroke;
  transition-duration: .3s;
}

.right-menu__link--active .right-menu__link-img,
.right-menu__link:hover .right-menu__link-img {
  fill: currentColor;
  stroke: currentColor;
}

.news {
  align-items: flex-start;
  display: grid;
  grid-gap: 8px;
}

@media (min-width: 1080px) {
  .news {
    grid-template-columns: 1fr 307px;
    grid-row-gap: 24px;
    grid-column-gap: 16px;
  }
}

.news__content {
  padding: 16px;
  border-radius: 10px;
  background-color: #fff;
}

@media (min-width: 1080px) {
  .news__content {
    padding: 24px;
  }
}

@media (min-width: 1080px) {
  .news__content--products {
    height: 100%;
    grid-row: 1 / 4;
  }
}

.news__date {
  display: flex;
  align-items: center;
  color: #b2bac7;
  margin-bottom: 16px;
  font-size: 14px;
}

.news__date-img {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  margin: -3px 8px 0 0;
}

.news__right-menu {
  grid-row: 1;
}

@media (min-width: 1080px) {
  .news__right-menu {
    grid-column: 2;
  }
}

.news__products {
  display: grid;
  grid-gap: 8px;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 600px) {
  .news__products {
    grid-column: 1;
    grid-gap: 16px;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1080px) {
  .news__products {
    grid-column: 2;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 24px;
  }
}

.product-slide {
  height: 100%;
  border: 1px solid #edeff2;
  padding: 8px;
  border-radius: 10px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
}

@media (min-width: 768px) {
  .product-slide {
    padding: 16px;
  }
}

.product-slide__wrapper-img {
  position: relative;
  display: flex;
  margin-bottom: 26px;
}

.product-slide__img {
  width: 100%;
}

.product-slide__labels {
  font-size: 12px;
  position: absolute;
  top: -4px;
  left: -2px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-right: 20px;
}

@media (min-width: 1080px) {
  .product-slide__labels {
    flex-direction: row;
  }
}

@media (min-width: 1200px) {
  .product-slide__labels {
    top: 0;
    left: 0;
  }
}

.product-slide__label {
  height: 20px;
  line-height: 20px;
  padding: 0 4px;
  color: #fff;
  border-radius: 4px;
  font-weight: bold;
  margin: 0 4px 4px 0;
}

@media (min-width: 768px) {
  .product-slide__label {
    height: 22px;
    line-height: 22px;
  }
}

.product-slide__label--yellow {
  background-color: #ffa900;
}

.product-slide__label--red {
  background-color: #f0343b;
}

.product-slide__label--green {
  background-color: #5bba3c;
}

.product-slide__label--special {
  background: #fff;
  color: #bc191d;
  border: 1px dashed currentColor;
}

.product-slide__btn-favorite {
  position: absolute;
  top: 8px;
  right: 8px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  display: flex;
  color: #999;
  transition: color .3s ease;
  padding: 0;
  font-family: inherit;
}

@media (min-width: 768px) {
  .product-slide__btn-favorite {
    top: 16px;
    right: 16px;
  }
}

.product-slide__btn-favorite:hover {
  color: #bc191d;
}

.product-slide__btn-favorite-img {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.product-slide__btn-popup {
  position: absolute;
  text-align: left;
  background-color: #fff;
  right: -4px;
  width: calc(var(--product-slide-width) - 11px);
  border-radius: 10px;
  filter: drop-shadow(0 0 6px rgba(48, 48, 49, .1));
  transition-property: opacity, visibility;
  transition-duration: .3s;
  opacity: 0;
  visibility: hidden;
  font-size: 12px;
  line-height: 1.5;
  color: #303031;
  padding: 8px;
  display: block;
  cursor: default;
  font-weight: normal;
}

@media (min-width: 768px) {
  .product-slide__btn-popup {
    right: -8px;
    width: calc(var(--product-slide-width) - 19px);
  }
}

.product-slide__btn-popup::before {
  position: absolute;
  content: '';
  border: 8px solid transparent;
}

button:hover > .product-slide__btn-popup {
  opacity: 1;
  visibility: visible;
}

.product-slide__btn-popup--favorite {
  top: calc(100% + 10px);
}

.product-slide__btn-popup--favorite::before {
  top: -16px;
  right: 9px;
  border-bottom-color: #fff;
}

.product-slide__btn-popup-btn {
  font-weight: bold;
  cursor: pointer;
}

.product-slide__code {
  color: #999;
  margin-bottom: 6px;
  font-size: 12px;
  white-space: nowrap;
}

.product-slide__name {
  display: block;
  position: relative;
  margin-bottom: 16px;
  text-decoration: none;
  color: #303031;
  font-weight: bold;
  height: 56px;
  overflow: hidden;
  font-size: 12px;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .product-slide__name {
    margin-bottom: 21px;
  }
}

@media (min-width: 1080px) {
  .product-slide__name {
    font-size: 14px;
  }
}

.product-slide__name::after {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 23px;
  left: 0;
  bottom: 0;
  background: linear-gradient(to top, #fff, rgba(255, 255, 255, .32));
}

.product-slide__price {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  grid-gap: 6px;
  height: 70px;
  grid-auto-rows: min-content;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .product-slide__price {
    height: auto;
  }
}

.product-slide__price-uah {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .product-slide__price-uah {
    flex-direction: row;
    align-items: center;
  }
}

.product-slide__price-uah-old {
  font-size: 14px;
  line-height: 1;
  color: #999;
  text-decoration: line-through;
  margin: 0 4px 6px 0;
}

@media (min-width: 768px) {
  .product-slide__price-uah-old {
    margin-bottom: 0;
  }
}

.product-slide__price-uah-default {
  font-size: 18px;
  line-height: 20px;
  color: #303031;
  font-weight: bold;
}

.product-slide__price-uah-default--red {
  color: #bc191d;
}

.product-slide__price-usd {
  font-size: 14px;
}

.product-slide__availability-title {
  font-size: 12px;
  margin-bottom: 4px;
}

@media (min-width: 1080px) {
  .product-slide__availability-title {
    margin-bottom: 8px;
  }
}

.product-slide__availability-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 12px;
  margin-bottom: 16px;
}

.product-slide__availability-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 48px;
  border: 1px solid #edeff2;
  padding: 8px 0;
  border-radius: 4px;
  background-repeat: no-repeat;
  width: calc(50% - 2px);
}

@media (min-width: 1080px) {
  .product-slide__availability-item {
    flex-direction: row;
    height: 38px;
  }
}

.product-slide__availability-item--store1 {
  margin: 0 4px 4px 0;
}

@media (min-width: 1080px) {
  .product-slide__availability-item {
    border-radius: 10px;
  }

  .product-slide__availability-item--store1 {
    position: relative;
    border-radius: 10px 0 0 10px;
    background-image: url(/resource_1/images/lines-lighter-left.svg);
    background-position: left center;
    border-right: none;
  }

  .product-slide__availability-item--store1::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 22px;
    left: 100%;
    top: 8px;
    background-color: #edeff2;
  }

  .product-slide__availability-item--store2 {
    border-radius: 0 10px 10px 0;
    background-image: url(/resource_1/images/lines-lighter-right.svg);
    background-position: right center;
    border-left: none;
  }

  .product-slide__availability-item--store3 {
    background-image:
      url(/resource_1/images/lines-lighter-left.svg),
      url(/resource_1/images/lines-lighter-right.svg);
    background-position:
      left center,
      right center;
  }
}

.product-slide__options {
  margin-bottom: 16px;
  position: relative;
}

@media (min-width: 768px) {
  .product-slide__options {
    display: flex;
    align-items: center;
  }
}

.product-slide__options-btn-open {
  font-size: 12px;
  font-family: inherit;
  text-align: left;
  white-space: nowrap;
  background-color: transparent;
  border: none;
  color: #bc191d;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0;
}

.product-slide__options-btn-open-img {
  width: 16px;
  height: 16px;
  margin-left: 2px;
  stroke: currentColor;
  pointer-events: none;
  transition: transform .3s ease;
}

.product-slide__options-btn-open-img--open {
  transform: rotate(180deg);
}

.product-slide__options-price {
  display: none;
}

@media (min-width: 1080px) {
  .product-slide__options-price {
    display: block;
    color: #999;
    margin-left: auto;
  }
}

.product-slide__options-price-uah {
  font-size: 14px;
  line-height: 14px;
  white-space: nowrap;
  font-weight: bold;
}

.product-slide__options-price-usd {
  font-size: 12px;
}

.product-slide__wrapper-characteristic-list {
  max-height: var(--max-height, 0);
  transition: max-height .3s ease;
  overflow: hidden;
  position: absolute;
  bottom: 100%;
  width: 100%;
}

.product-slide__characteristic-list {
  background: #fff;
  padding: 8px 0;
}

@media (min-width: 768px) {
  .product-slide__characteristic-list {
    padding: 16px 0;
  }
}

.product-slide__characteristic-item {
  margin-bottom: 18px;
}

.product-slide__characteristic-item-title {
  font-size: 12px;
  margin-bottom: 2px;
  color: #303031;
}

.product-slide__characteristic-item-value-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 4px;
}

@media (min-width: 768px) {
  .product-slide__characteristic-item-value-list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 8px;
  }
}

.product-slide__characteristic-item-value {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 12px;
  line-height: 14px;
  font-weight: bold;
  padding: 5px 18px;
  min-height: 38px;
  text-align: center;
  border-radius: 10px;
  color: #999;
  border: 1px solid #edeff2;
}

.product-slide__characteristic-item-value--active {
  border-color: currentColor;
  color: #bc191d;
}

.product-slide__characteristic-item-color-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, 32px);
  grid-gap: 5px;
  padding-left: 1px;
}

.product-slide__characteristic-item-color {
  height: 22px;
  width: 22px;
  margin: 4px;
  border: 1px solid #f6f7f9;
}

.product-slide__characteristic-item-color--active,
.product-slide__characteristic-item-color:hover {
  outline: 1px solid #bc191d;
  outline-offset: 4px;
}

.product-slide__actions {
  display: grid;
  grid-gap: 4px;
  grid-template-columns: repeat(1, 1fr);
  margin-top: auto;
}

@media (min-width: 768px) {
  .product-slide__actions {
    grid-gap: 8px;
  }
}

@media (min-width: 1080px) {
  .product-slide__actions {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product-slide__btn-buy {
  font-size: 12px;
  font-family: inherit;
  font-weight: bold;
  cursor: pointer;
  border: 1px solid currentColor;
  padding: 0 2px;
  height: 38px;
  border-radius: 10px;
  background: transparent url(/resource_1/images/lines-red-left.svg) left center no-repeat;
  color: #bc191d;
  transition-property: background-color, color;
  transition-duration: .3s;
}

.product-slide__btn-buy:hover {
  background-color: #bc191d;
  color: #fff;
}

.product-slide__btn-cart {
  color: #fff;
  background: #bc191d url(/resource_1/images/lines-right.svg) right center no-repeat;
  font-size: 12px;
  font-family: inherit;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: 1px solid #bc191d;
  padding: 0 2px;
  height: 38px;
  border-radius: 10px;
}

.product-slide__btn-cart:hover {
  background-color: #af161a;
}

.product-slide__btn-cart-img {
  width: 22px;
  height: 20px;
  stroke: #fff;
  margin-right: 8px;
}

.product-slide__btn-wishlist {
  background: #edeff2 url(/resource_1/images/lines-right.svg) right center no-repeat;
  border: 1px solid #edeff2;
  color: #999;
  font-family: inherit;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 0 2px;
  height: 38px;
  border-radius: 10px;
  width: 100%;
  font-size: 9px;
  position: relative;
}

@media (min-width: 768px) {
  .product-slide__btn-wishlist {
    font-size: 12px;
  }
}

@media (min-width: 1080px) {
  .product-slide__btn-wishlist {
    grid-column: 1 / 3;
  }
}

.product-slide__btn-wishlist-img {
  width: 22px;
  height: 20px;
  stroke: currentColor;
  margin-right: 8px;
  display: none;
}

@media (min-width: 1080px) {
  .product-slide__btn-wishlist-img {
    display: block;
  }
}

.product-slide__btn-popup--wishlist {
  top: -10px;
  transform: translateY(-100%);
}

.product-slide__btn-popup--wishlist::before {
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  border-top-color: #fff;
}

/*# sourceMappingURL=news.min.css.map */
