.sale-list__item {
  position: relative;
  overflow: hidden;
}
.sale-list__item-image-wrapper {
  position: relative;
  padding-top: 67%;
}
.sale-list__item-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.bx-ie .sale-list__item-text-top-part {
  flex-basis: auto;
}
.sale-list__item-preview-wrapper {
  margin-top: 9px;
}
.sale-list__item-text-wrapper {
  padding: 15px 16px 0;
}
.sale-list__item-link--absolute {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 2;
}
.sale-list__item-text-bottom-part {
  margin-top: 8px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.sale-list__item-period {
  position: relative;
}

.sale-list__item-period .svg {
  position: absolute;
  left: 0px;
  top: 5px;
}
.sale-list__item-period-date {
  display: block;
}

/*sticker*/
.sale-list__item .sale-list__item-sticker-value {
  vertical-align: top;
  margin: 0 4px 0 0;
  font-size: 12px;
  line-height: 15px;
  line-height: var(--sticker-height);
  display: inline-flex;
  padding: 1px 5px 1px 4px;
}
.sale-list__item-sticker {
  position: absolute;
  font-size: 0px;
  line-height: 0px;
  z-index: 2;
  bottom: 20px;
  left: 16px;
}
/**/

@media (max-width: 600px) {
  .sale-list__item-preview-wrapper {
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 15px;
  }
  .sale-list__item-sticker {
    bottom: 16px;
    left: 16px;
  }
}
@media (max-width: 500px) {
  .grid-list--normal .sale-list__wrapper {
    width: 100%;
  }
}

.action__item{
  display: flex;
  align-items: flex-end;
  position: relative;
  height: 280px;
  padding: 50px 60px;
  border-radius: 16px;
  overflow: hidden;
}

.action__item.action__item--first{
  height: 100%;
  min-height: 280px;
}

.action__item + .action__item{
  margin-top: 24px;
}

.action__item::before{
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #0000004f;
  z-index: 0;
  transition: .3s
}

.action__item::after{
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    0deg,
    transparent,
    transparent 30%,
    rgba(255,255,255,0.1)
  );
  transform: rotate(-45deg);
  transition: all 0.7s ease;
  opacity: 0;
}

.action__item:hover::after{
  /* background-color:#000000a3;
  transition: .3s */
  opacity: 1;
  transform: rotate(-45deg) translateY(100%);
  transition: all 0.7s ease;
}

.action__text{
  position: relative;
  color: #fff;
  z-index: 1;
}

.action__name{
  font-size: 30px;
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 15px;
}

.action__item--first .action__name{
  font-size: 45px;
  margin-bottom: 20px;
}

.action__preview{
  font-size: 18px;
  line-height: 1.2;
}

.action__item--first .action__preview{
  font-size: 22px;
}
.action__item--first.action__item::after{
  transition: all 1s ease;
}

@media(max-width: 767px){
  .action__name,
  .action__item--first .action__name{
    font-size: 25px;
    margin-bottom: 15px;
  }

  .action__preview,
  .action__item--first .action__preview{
    font-size: 14px;
  }
  .action__item,
  .action__item.action__item--first{
    padding: 30px;
    height: auto;
    min-height: 180px;
  }

}
