.fast-view-block__grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: flex-start;
  gap: 30px;
}
@media (min-width: 768px) {
  .fast-view-block__grid {
    grid-template-columns: 300px 1fr;
  }
}
@media (min-width: 1024px) {
  .fast-view-block__grid {
    grid-template-columns: 400px 1fr;
  }
}
.fast-view-block__image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 200px;
}
@media (min-width: 768px) {
  .fast-view-block__image {
    height: 220px;
  }
}
@media (min-width: 1024px) {
  .fast-view-block__image {
    height: 325px;
  }
}
.fast-view-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.fast-view-block__labels {
  position: absolute;
  top: 12px;
  left: 12px;
}
.fast-view-block__top {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.fast-view-block__top:hover .fast-view-block__copy {
  opacity: 1;
}
.fast-view-block__copy {
  display: none;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.3, 0.1, 0.26, 1);
}
@media (min-width: 768px) {
  .fast-view-block__copy {
    display: block;
  }
}
.fast-view-block__copy .copy-button__action {
  background-color: #f6f6f6;
}
.fast-view-block__title {
  color: #262627;
}
.fast-view-block__data {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.fast-view-block__article {
  display: flex;
  align-items: center;
  gap: 5px;
}
.fast-view-block__article p {
  font-weight: 500;
  font-size: 13px;
  line-height: 1.55;
  color: #959595;
}
.fast-view-block__article .article__data::before {
  background-color: #eaeaea;
}
.fast-view-block__price {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fast-view-block__price_value {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.24;
  color: #3f4041;
  white-space: nowrap;
}
.fast-view-block__price_nds {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.33333;
  color: #959595;
  border-radius: 13px;
  padding: 4px 8px;
  background-color: #f6f6f6;
  white-space: nowrap;
}
.fast-view-block__form {
  margin-top: 32px;
}
.fast-view-block__form_fields {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 16px;
}
.fast-view-block__form_footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.fast-view-block__form_submit span {
  display: flex;
  align-items: center;
  justify-content: center;
}
.fast-view-block__form .form-select__field {
  padding: 12px 14px;
}
.fast-view-block__note {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.fast-view-block__note span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.fast-view-block__note span svg {
  width: 16px;
  height: 16px;
}
.fast-view-block__note p {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.25;
  color: #959595;
}
.fast-view-block__favourite {
  flex: 0 0 50px;
}
.fast-view-block__favourite .favourite-button {
  padding: 12px;
}
.fast-view-block__favourite .favourite-button::before {
  background-color: #f6f6f6;
  opacity: 0.6;
}
.fast-view-block__favourite .favourite-button span svg {
  width: 26px;
  height: 26px;
}
.fast-view-block__description {
  margin-top: 40px;
}
.fast-view-block__description p {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #636363;
}
.fast-view-block__link {
  margin-top: 40px;
  max-width: none;
  width: 100%;
}
.fast-view-block__link::before {
  display: none;
}
.fast-view-block__link:hover {
  color: #ff7100 !important;
}