.search-item__main {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  padding: 1rem 3rem;
  min-height: 7rem;
  color: var(--main-text-color);
  text-decoration: none;
  transition: color 0.25s, padding 0.25s;
}

.search-item:hover .search-item__main {
  padding: 1rem 7rem 1rem 3rem;
}

.search-item__container {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.search-item__image {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin: 0 2rem 0 0;
  width: 3.4rem;
  height: 3.4rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.search-item__price-container {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.search-item__current-price {
  text-decoration: none;
  margin: 0 1rem 0 0;
  font-size: 1.6rem;
  line-height: 1.2;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
}

.search-item__title {
  display: block;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 400;
  margin: 0 0 0.5rem;
  transition: all 0.2s ease-in-out;
}

.search-item__main:hover .search-item__title {
  color: var(--accent-color);
}

.search-item__old-price {
  display: flex;
  align-items: center;
  margin: 0 2rem 0 0;
  padding: 0 0.2rem;
  position: relative;
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 400;
}

.search-item__old-price:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 0.2rem;
  background: #F45656;
  margin: -1px 0 0;
}
.search-item__art-mobile,
.search-item__art {
  display: block;
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 400;
  color: #BDC2D3;
}

.search-item__art-mobile {
  display: none;
}

.search-item__sale {
  display: block;
  font-size: 1.4rem;
  line-height: 2.8rem;
  font-weight: 500;
  padding: 0 0.9rem;
  background: #F53C3C;
  border-radius: 4px;
  color: var(--secondary-text-color);
  margin: 0;
  height: fit-content;
}

.search-item__arrow svg {
  fill: var(--accent-color);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  pointer-events: none;
  position: absolute;
  top: 50%;
  right: 3rem;
  margin: -1rem 0 0 0;
  transition: opacity 0.25s;
  opacity: 0;
}

.search-item:hover .search-item__arrow svg {
  opacity: 1;
}

.search-item__dropdown {
  position: absolute;
  top: 0;
  left: 100%;
  width: 34rem;
  margin: 0 0 0 1rem;
  transition: opacity 0.25s, visibility 0.25s;
  opacity: 0;
  visibility: hidden;
}

.search-item:hover .search-item__dropdown {
  opacity: 1;
  visibility: visible;
}

.search-item__dropdown::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  width: 1rem;
}

.search-item__card {
  color: var(--main-text-color);
}

@media (max-width: 1200px) {
  .fastResult {
    max-height: none;
  }
}