html {
  scroll-behavior: smooth;
}

img:not([src]):not([srcset]) {
  visibility: hidden;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-content__list {
  margin-bottom: 30px;
}

.p-content__list > li:not(:last-child) {
  margin-bottom: 5px;
}

.u-label-06 {
  text-transform: capitalize;
}

.highlight-text {
  margin: 30px 0;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  padding: 20px 0;
}

.main-form {
  --product-color: rgb(45, 81, 115);
  --product-color-transp: rgba(45, 81, 115, 0.2);
  --radius: 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  gap: 20px;
}

.main-form__left {
  position: relative;
  max-width: 250px;
}

.main-form__discount {
  position: absolute;
  left: calc(100% - 70px);
  bottom: calc(100% - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  transform: rotate(20deg);
}

.main-form__sticker {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  fill: rgb(228, 14, 14);
}

.main-form__discount-text {
  position: relative;
  font-weight: 700;
  font-size: 26px;
  color: #fff;
}

.main-form__img {
  display: block;
  max-width: 100%;
}

.main-form__right {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  padding: 20px;
  min-width: 300px;
  background-color: var(--product-color-transp);
}

.main-form__prices {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 18px;
  gap: 20px;
}

.main-form__price {
  margin-bottom: 0 !important;
  text-transform: uppercase;
}

.main-form__price--new {
  font-weight: 700 !important;
  color: var(--product-color) !important;
}

.main-form__price--new > span {
  font-size: 34px;
}

.main-form__price--old {
  opacity: 0.8;
}

.main-form__price--old > span {
  font-size: 24px;
  text-decoration: line-through;
}

.main-form__field {
  display: block;
  margin-bottom: 20px;
  border: 2px solid var(--product-color);
  border-radius: var(--radius);
  padding: 10px;
  font-size: 16px;
}

.main-form__btn {
  margin-bottom: 10px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 10px 20px;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  background-color: var(--product-color);
  transition-property: background-color, color, border-color;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  cursor: pointer;
}

.main-form__announce {
  text-align: center;
}

.main-form__btn:hover,
.main-form__btn:focus {
  border-color: var(--product-color);
  color: var(--product-color);
  background-color: transparent;
}

@media screen and (min-width: 770px) {
  .main-form {
    flex-direction: row;
  }

  .main-form__left {
    max-width: 300px;
  }
}

.btn {
  display: inline-block;
  border-radius: 25px;
  padding: 15px 20px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  background-color: rgb(45, 81, 115);
}

.comments__item {
  padding-top: 20px;
}

.comments__item:not(:last-of-type) {
  border-bottom: 1px solid var(--divider-color);
}

.comments__item:last-of-type {
  margin-bottom: 40px;
}

.comments__wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.comments__ava {
  display: inline-block;
  margin-right: 10px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.comments__name {
  margin-bottom: 5px;
  line-height: 1.1;
}

.comments__city {
  display: inline-block;
  padding-left: 20px;
  font-size: 15px;
  color: #333;
  background: url("../fonts/placeholder.svg") no-repeat left center / contain;
}

.comments__content {
  padding-left: 60px;
}

.comments__content > p {
  margin: 0;
  margin-bottom: 20px;
}

.comments__content a {
  font-weight: 700;
  text-decoration: none;
}

.comments__img {
  margin-bottom: 20px;
  border-radius: 10px;
  width: 100%;
  max-width: 350px;
}

.comments__time {
  display: inline-block;
  margin-right: 20px;
  padding-left: 22px;
  font-size: 15px;
  background: url("../fonts/clock.svg") no-repeat left center / contain;
}