@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
:root {
  --color-black: #161616;
  --color-blue: #68ABE4;
  --color-gray: #525252;
  --color-gray-light: #A3A3A3;
  --color-main: #E44884;
  --color-hover: #DF256D;
  --color-white: #FFFFFF;
  --color-light: #EEF3FD;
  --color-border: #D8E2FA;
  --color-white-24: rgba(255, 255, 255, .24);
  --color-white-08: rgba(255, 255, 255, .08);
}

@media (max-width: 639.98px) {
  .phone-hide {
    display: none !important;
  }
}

@media (max-width: 639.98px) {
  .phone-flex {
    display: flex !important;
  }
}

.phone-show {
  display: none;
}
@media (max-width: 639.98px) {
  .phone-show {
    display: block;
  }
}

@media (min-width: 640px) and (max-width: 1023.98px) {
  .tablet-hide {
    display: none !important;
  }
}

.tablet-show {
  display: none;
}
@media (min-width: 640px) and (max-width: 1023.98px) {
  .tablet-show {
    display: block;
  }
}

@media (min-width: 1024px) {
  .desktop-hide {
    display: none !important;
  }
}

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

.text20 {
  font-size: 20px;
  font-weight: 400;
  line-height: 160%;
}

.text16 {
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
}

.text14 {
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
}

.text12 {
  font-size: 12px;
  font-weight: 400;
  line-height: 160%;
  font-weight: 500;
}

@media (max-width: 639.98px) {
  .phone-text16 {
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
  }
}
.color-rose {
  color: #F96B6B;
}

.color-gray {
  color: #666;
}

.color-white {
  color: #fff;
}

.flex-24 {
  display: flex;
  flex-flow: row;
  gap: 24px;
}

.flex-16 {
  display: flex;
  flex-flow: row;
  gap: 16px;
}

.flex-12 {
  display: flex;
  flex-flow: row;
  gap: 12px;
}

.flex-8 {
  display: flex;
  flex-flow: row;
  gap: 8px;
}

.flex-vertical-80 {
  display: flex;
  flex-flow: column;
  gap: 80px;
}

.flex-vertical-40 {
  display: flex;
  flex-flow: column;
  gap: 40px;
}

.flex-vertical-32 {
  display: flex;
  flex-flow: column;
  gap: 32px;
}

.flex-vertical-24 {
  display: flex;
  flex-flow: column;
  gap: 24px;
}

.flex-vertical-16 {
  display: flex;
  flex-flow: column;
  gap: 16px;
}

.flex-vertical-8 {
  display: flex;
  flex-flow: column;
  gap: 8px;
}

.flex-vertical-4 {
  display: flex;
  flex-flow: column;
  gap: 4px;
}

.flex-vertical-0 {
  display: flex;
  flex-flow: column;
  gap: 0px;
}

.flex-center {
  align-items: center;
  justify-content: center;
}

html, body {
  background-color: #f8f8f8;
  color: #161616;
  font-family: Gotham, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  scroll-behavior: smooth;
}

input, textarea, button {
  font-family: Gotham, sans-serif;
}

h1, .h1 {
  font-size: 48px;
  line-height: 100%;
  color: var(--color-main);
}
@media (max-width: 639.98px) {
  h1, .h1 {
    font-size: 32px;
    line-height: 100%;
  }
}

a {
  color: var(--color-main);
  text-decoration: none;
}
a:hover {
  color: var(--color-hover);
  text-decoration: underline;
}

.button {
  border: 1px solid var(--color-main);
  font-size: 14px;
  line-height: 120%;
  font-weight: 400;
  outline: none;
  background: transparent;
  padding: 18px 24px 14px;
  border-radius: 6px;
  color: var(--color-main);
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
}
.button--block {
  display: block;
}
.button--inline-block {
  display: inline-block;
}
.button--small {
  padding: 8px 12px 6px;
}
.button--rose {
  background: var(--color-main);
  border-color: var(--color-main);
  color: var(--color-white);
}
.button--rose:hover {
  background: var(--color-hover);
  border-color: var(--color-hover);
  color: var(--color-white);
}
.button:hover {
  background: var(--color-hover);
  border-color: var(--color-hover);
  color: var(--color-white);
  text-decoration: none;
}

.tag {
  display: inline-block;
  font-weight: 500;
  font-size: 14px;
  line-height: 160%;
  border-radius: 24px;
  background: #f8f8f8;
  padding: 1px 12px;
  white-space: nowrap;
  color: var(--color-blue);
}
.tag--rose {
  color: var(--color-main);
  background: transparent;
}
.tag--flex {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  padding-left: 4px;
  padding-right: 4px;
}
.tag--flex img {
  margin-top: 1px;
}

.filter {
  cursor: pointer;
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  border-radius: 32px;
  border: 1px solid var(--color-main);
  background: #f8f8f8;
  padding: 9px 16px 7px;
  white-space: nowrap;
  color: var(--color-main);
  text-transform: uppercase;
  user-select: none;
}
.filter:hover {
  background: var(--color-hover);
  border-color: var(--color-hover);
  color: var(--color-white);
}
.filter--active {
  background: var(--color-main);
  color: var(--color-white);
}
.filter--active:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("../i/i-check-white.svg") center center no-repeat;
  margin-right: 8px;
  vertical-align: middle;
}

.container {
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}
@media (max-width: 639.98px) {
  .container {
    padding: 0 16px;
  }
}

.block-head {
  margin: 0 0 40px 50%;
}
@media (max-width: 639.98px) {
  .block-head {
    margin-left: 0;
  }
}

.header {
  padding-top: 16px;
}
.header__banner {
  background: var(--color-blue);
  padding: 8px 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 150%;
  font-weight: 500;
  color: var(--color-white);
  gap: 16px;
}
.header__banner:hover {
  color: var(--color-white);
}
@media (max-width: 639.98px) {
  .header__banner {
    font-size: 12px;
    line-height: 150%;
    padding: 6px 12px;
    text-align: center;
  }
}
.header__banner button {
  border: 1px solid #fff;
  font-size: 14px;
  line-height: 120%;
  font-weight: 400;
  outline: none;
  background: transparent;
  padding: 8px 12px 6px;
  border-radius: 6px;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}
@media (max-width: 639.98px) {
  .header__banner button {
    display: none;
  }
}
.header__main {
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__main__logo {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
}
.header__main__logo img {
  height: 58px;
  width: auto;
}
@media (max-width: 639.98px) {
  .header__main__logo img {
    height: 48px;
  }
}
.header__main__menu {
  font-size: 14px;
  line-height: 120%;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}
@media (max-width: 639.98px) {
  .header__main__menu {
    display: none;
  }
}

.main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 80px;
}
@media (max-width: 639.98px) {
  .main {
    grid-template-columns: 1fr;
  }
}
.main__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}
.main__info {
  padding: 40px;
  background: var(--color-white);
  border-radius: 24px;
  display: flex;
  gap: 40px;
  flex-flow: column;
  justify-content: space-between;
}
@media (max-width: 639.98px) {
  .main__info {
    padding: 24px 16px;
    gap: 16px;
  }
}
.main__info .info {
  display: flex;
  flex-flow: column;
  gap: 16px;
}
.main__info .info ul li {
  color: var(--color-main);
  position: relative;
  padding-left: 20px;
  margin: 8px 0;
  font-size: 16px;
  line-height: 150%;
}
.main__info .info ul li:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url("../i/i-check.svg") center center no-repeat;
  position: absolute;
  left: 0;
  top: 2px;
}
@media (max-width: 639.98px) {
  .main__info .tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  .main__info a.button {
    display: block;
  }
}

.advantages .h1 {
  margin-right: 150px;
}
@media (max-width: 639.98px) {
  .advantages .h1 {
    margin-right: 0;
  }
}
.advantages .info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media (max-width: 639.98px) {
  .advantages .info {
    grid-template-columns: repeat(2, 1fr);
  }
}
.advantages .info__item {
  padding: 16px;
  background: #fff;
  display: flex;
  flex-flow: column;
  gap: 24px;
  font-size: 20px;
  line-height: 120%;
  color: var(--color-main);
  border-radius: 16px;
}
@media (max-width: 639.98px) {
  .advantages .info__item {
    font-size: 14px;
    line-height: 120%;
    gap: 16px;
  }
}
.advantages .info__item img {
  width: 40px;
  height: 40px;
  display: block;
}
@media (max-width: 639.98px) {
  .advantages .info__item img {
    width: 32px;
    height: 32px;
  }
}
.advantages .video {
  margin: 8px 0 0;
  position: relative;
}
.advantages .video-play {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
}
.advantages .video-play:hover svg {
  fill: #fff;
}
.advantages .video-play:hover svg path {
  fill: var(--color-main);
}
.advantages .video video, .advantages .video img {
  width: 100%;
  border-radius: 24px;
}

.videos {
  background: var(--color-white);
  border-radius: 24px;
  padding: 40px;
  margin: 40px 0 80px;
  position: relative;
}
@media (max-width: 639.98px) {
  .videos {
    padding: 40px 16px;
  }
}
.videos .desc {
  margin-top: 16px;
  font-size: 16px;
  line-height: 160%;
  color: var(--color-main);
}
.videos .video-buttons {
  position: absolute;
  margin-top: -48px;
  left: 40px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  justify-content: flex-start;
  user-select: none;
}
@media (max-width: 639.98px) {
  .videos .video-buttons {
    display: none;
  }
}
.videos .video-buttons__prev {
  cursor: pointer;
  height: 48px;
}
.videos .video-buttons__next {
  cursor: pointer;
  height: 48px;
}
.videos .video-list {
  margin-top: 40px;
  overflow: hidden;
}
.videos .video-list__slider {
  display: flex;
}
.videos .video-list__slider .video-element {
  padding: 0 4px;
  width: 428px;
}
.videos .video-list__slider .video {
  width: 420px;
  cursor: pointer;
}
@media (max-width: 639.98px) {
  .videos .video-list__slider .video {
    width: 260px;
    flex: 1 0 260px;
  }
}
.videos .video-list__slider .video__poster img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}
.videos .video-list__slider .video__info {
  background: #FDF2F6;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-flow: column;
  gap: 16px;
}
.videos .video-list__slider .video__info .tags {
  display: flex;
  gap: 8px;
}
.videos .video-list__slider .video__info .tags .tag {
  background: var(--color-white);
}
.videos .video-list__slider .video__name {
  font-size: 20px;
  line-height: 120%;
}

.experience-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-height: 640px;
  overflow: hidden;
  position: relative;
}
.experience-list:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 9.6em;
  background: linear-gradient(to bottom, rgba(248, 248, 248, 0) 0%, rgb(248, 248, 248) 100%);
}
.experience-list--expanded {
  max-height: none;
}
.experience-list--expanded:after {
  content: none;
}
.experience-list--expanded ~ .experience__more {
  display: none;
}
.experience-list__column {
  display: flex;
  flex-flow: column;
  gap: 8px;
}
@media (max-width: 639.98px) {
  .experience-list {
    grid-template-columns: 1fr;
  }
}
.experience__more {
  margin-top: 24px;
}
.experience .item {
  padding: 24px;
  background: var(--color-white);
  border-radius: 16px;
}
.experience .item.item--expand .item__desc:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2.4em;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}
.experience .item.item--expand .item__expand {
  display: block;
}
.experience .item__name {
  font-size: 14px;
  line-height: 160%;
  font-weight: 500;
  margin: 0 0 4px;
}
.experience .item__star {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  margin: 4px 0 16px;
}
.experience .item__star img {
  width: 16px;
  height: 16px;
}
.experience .item__desc {
  font-size: 16px;
  line-height: 160%;
  margin: 16px 0 8px;
  max-height: 14.4em;
  overflow: hidden;
  position: relative;
}
.experience .item__prod {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
}
.experience .item__prod__pic {
  width: 48px;
  height: 48px;
  padding: 4px;
  background: #F8F8F8;
  border-radius: 8px;
}
.experience .item__prod__pic img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.experience .item__prod__text {
  display: flex;
  flex-flow: column;
  gap: 2px;
  align-items: flex-start;
  justify-content: flex-start;
  font-size: 12px;
  line-height: 150%;
}
.experience .item__prod__text em {
  color: #7D7D7D;
}
.experience .item__expand {
  display: none;
  margin-top: 16px;
}

.reviews {
  background: var(--color-white);
  border-radius: 24px;
  padding: 40px;
  margin: 80px 0;
  overflow: hidden;
}
@media (max-width: 639.98px) {
  .reviews {
    padding: 40px 16px;
  }
}
.reviews-list {
  display: flex;
}
.reviews-container {
  position: relative;
}
.reviews-buttons {
  position: absolute;
  top: -98px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  justify-content: flex-start;
  user-select: none;
}
@media (max-width: 639.98px) {
  .reviews-buttons {
    display: none;
  }
}
.reviews-buttons__prev {
  cursor: pointer;
}
.reviews-buttons__next {
  cursor: pointer;
}
.reviews .item {
  margin: 0 4px;
  padding: 24px;
  background: #FDF2F6;
  border-radius: 16px;
  flex: 1 0 272px;
}
@media (max-width: 639.98px) {
  .reviews .item {
    margin: 0 8px;
  }
}
.reviews .item.item--expand .item__text:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2.4em;
  background: linear-gradient(to bottom, rgba(253, 242, 246, 0) 0%, rgb(253, 242, 246) 100%);
}
.reviews .item.item--expand .item__expand {
  display: block;
}
.reviews .item__name {
  font-size: 14px;
  line-height: 160%;
  font-weight: 500;
}
.reviews .item__desc {
  color: #7D7D7D;
  font-size: 14px;
  line-height: 150%;
  margin: 0 0 8px;
}
.reviews .item__tag {
  display: flex;
  flex-wrap: wrap;
  margin: 8px 0 16px;
  gap: 8px;
}
.reviews .item__tag .tag {
  background: var(--color-white);
}
.reviews .item__text {
  font-size: 16px;
  line-height: 160%;
  margin: 16px 0 0;
  max-height: 16em;
  overflow: hidden;
  position: relative;
}
.reviews .item__expand {
  display: none;
  margin-top: 16px;
}

.catalog {
  margin: 84px 0;
}
.catalog-head {
  margin: 0 0 40px 50%;
  display: flex;
  gap: 24px;
  flex-flow: column;
}
@media (max-width: 639.98px) {
  .catalog-head {
    margin-left: 0;
  }
}
.catalog .filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.catalog__catalog {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}
@media (max-width: 639.98px) {
  .catalog__catalog {
    grid-template-columns: 1fr;
  }
}
.catalog__catalog .item {
  background: var(--color-white);
  padding: 24px;
  border-radius: 16px;
  cursor: pointer;
}
.catalog__catalog .item:hover .item__name {
  color: var(--color-hover);
  text-decoration: underline;
}
.catalog__catalog .item__pic {
  margin-bottom: 16px;
}
.catalog__catalog .item__pic img {
  width: 100%;
  height: auto;
}
.catalog__catalog .item__tags {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.catalog__catalog .item__name {
  font-size: 20px;
  line-height: 120%;
}
.catalog__catalog .item__size {
  color: #7D7D7D;
  font-size: 14px;
  line-height: 150%;
  font-weight: 500;
}
.catalog__catalog .item__price {
  color: var(--color-main);
  font-size: 14px;
  line-height: 150%;
  font-weight: 500;
  margin-top: 16px;
}
.catalog__catalog .item--hidden {
  display: none;
}
.catalog__catalog .item:nth-child(4) ~ .item {
  display: none;
}
.catalog__catalog--expanded .item:nth-child(4) ~ .item {
  display: block;
}
.catalog__catalog--expanded ~ .catalog-more {
  display: none;
}

.marketplace {
  background: var(--color-white);
  border-radius: 24px;
  padding: 40px;
  margin-top: 80px;
}
.marketplace .h1 {
  margin: 0 0 40px 50%;
}
@media (max-width: 639.98px) {
  .marketplace .h1 {
    margin-left: 0;
  }
}
.marketplace-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
@media (max-width: 639.98px) {
  .marketplace-list {
    grid-template-columns: 1fr;
  }
}
.marketplace-list .item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  border-radius: 16px;
  border: 1px solid var(--color-main);
}
.marketplace-list .item:hover {
  border-color: var(--color-hover);
}
.marketplace-list .item img {
  display: block;
  max-width: 100%;
}

.footer {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 14px;
  line-height: 120%;
  padding: 40px 0;
}
.footer .links {
  text-transform: uppercase;
}

.overlay {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(22, 22, 22, 0.4);
  padding: 24px;
  display: none;
  z-index: 9;
}
.overlay--visible {
  display: block;
}
.overlay-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
}
.overlay-close {
  position: absolute;
  right: 24px;
  top: 24px;
  cursor: pointer;
}
.overlay-content {
  position: relative;
  padding: 24px;
  background: var(--color-white);
  border-radius: 16px;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
  max-width: 596px;
}
@media (max-width: 639.98px) {
  .overlay-content {
    width: 100%;
    max-width: 100%;
  }
}
.overlay .video-container {
  padding-top: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.overlay .video-container video {
  max-width: 100%;
  max-height: calc(100vh - 66px - 48px);
}
.overlay .video-container .video-close {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}
.overlay .product-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
}
.overlay .product-container .product-close {
  position: absolute;
  right: 24px;
  top: 24px;
  cursor: pointer;
}
.overlay .product-container .product-content {
  position: relative;
  padding: 24px;
  background: var(--color-white);
  border-radius: 16px;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
  max-width: 596px;
}
@media (max-width: 639.98px) {
  .overlay .product-container .product-content {
    width: 100%;
    max-width: 100%;
  }
}
.overlay .product-container .product-info {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
  padding-right: 48px;
}
.overlay .product-container .product-info__pic {
  padding: 4px;
  border-radius: 8px;
  background: #f8f8f8;
}
.overlay .product-container .product-info__pic img {
  width: 40px;
  height: 40px;
  display: block;
}
.overlay .product-container .product-info__data {
  display: block;
}
.overlay .product-container .product-info__data-name {
  font-size: 20px;
  line-height: 120%;
}
.overlay .product-container .product-info__data-size {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: #7d7d7d;
}
.overlay .product-container .product-links {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas: "a a" "b c" "d e";
  gap: 8px;
}
@media (max-width: 639.98px) {
  .overlay .product-container .product-links {
    grid-template-columns: 1fr;
    grid-template-areas: "a" "b" "c" "d" "e";
  }
}
.overlay .product-container .product-links .item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  border-radius: 16px;
  border: 1px solid var(--color-main);
}
.overlay .product-container .product-links .item:nth-child(1) {
  grid-area: a;
}
@media (max-width: 639.98px) {
  .overlay .product-container .product-links .item {
    padding: 24px 24px;
  }
}
.overlay .product-container .product-links .item--hidden {
  display: none;
}
.overlay .product-container .product-links .item:hover {
  border-color: var(--color-hover);
}
.overlay .product-container .product-links .item img {
  display: block;
  max-height: 32px;
}
.overlay .experience-data--hidden {
  display: none;
}
.overlay .experience-data .item__name {
  font-size: 14px;
  line-height: 160%;
  font-weight: 500;
  margin: 0 48px 4px 0;
}
.overlay .experience-data .item__star {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  margin: 4px 0 16px;
}
.overlay .experience-data .item__star img {
  width: 16px;
  height: 16px;
}
.overlay .experience-data .item__desc {
  font-size: 16px;
  line-height: 160%;
  margin: 16px 0 8px;
  max-height: 14.4em;
  overflow: hidden;
  position: relative;
}
.overlay .experience-data .item__prod {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
}
.overlay .experience-data .item__prod__pic {
  width: 48px;
  height: 48px;
  padding: 4px;
  background: #F8F8F8;
  border-radius: 8px;
}
.overlay .experience-data .item__prod__pic img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.overlay .experience-data .item__prod__text {
  display: flex;
  flex-flow: column;
  gap: 2px;
  align-items: flex-start;
  justify-content: flex-start;
  font-size: 12px;
  line-height: 150%;
}
.overlay .experience-data .item__prod__text em {
  color: #7D7D7D;
}
.overlay .experience-data .item__expand {
  display: none;
  margin-top: 16px;
}
.overlay .experience-links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  user-select: none;
}
.overlay .experience-links__qty {
  font-size: 14px;
  line-height: 150%;
  font-weight: 500;
  color: #7d7d7d;
}
.overlay .experience-links__buttons {
  display: flex;
  gap: 8px;
}
.overlay .experience-links__buttons svg {
  width: 32px;
  height: 32px;
  cursor: pointer;
}
.overlay .reviews-data--hidden {
  display: none;
}
.overlay .reviews-data .item__name {
  font-size: 14px;
  line-height: 160%;
  font-weight: 500;
}
.overlay .reviews-data .item__desc {
  color: #7D7D7D;
  font-size: 14px;
  line-height: 150%;
  margin: 0 0 8px;
}
.overlay .reviews-data .item__tag {
  display: flex;
  flex-wrap: wrap;
  margin: 8px 0 16px;
  gap: 8px;
}
.overlay .reviews-data .item__text {
  font-size: 16px;
  line-height: 160%;
  margin: 16px 0 0;
  max-height: 16em;
  overflow: hidden;
  position: relative;
}
.overlay .reviews-data .item__expand {
  display: none;
  margin-top: 16px;
}
.overlay .reviews-links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  user-select: none;
}
.overlay .reviews-links__qty {
  font-size: 14px;
  line-height: 150%;
  font-weight: 500;
  color: #7d7d7d;
}
.overlay .reviews-links__buttons {
  display: flex;
  gap: 8px;
}
.overlay .reviews-links__buttons svg {
  width: 32px;
  height: 32px;
  cursor: pointer;
}

/*# sourceMappingURL=styles.css.map */
