.reviews {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reviews-title {
  color: var(--white-100);

  margin-bottom: 40px;
}

.popular-content-tags {
  display: flex;
  gap: 12px;
}

.reviews-content {
  display: flex;
  width: 100%;
  max-width: 1128px;
}

.reviews-bottom {
  display: flex;
  gap: 12px;
  margin-top: 40px;
}

.reviews-content-slide {
  border: 1px solid var(--white-16p);
  border-radius: 12px;

  min-height: 442px;
  max-height: 442px;
  position: relative;
  overflow: hidden;
  padding: 24px;
  display: flex !important;
  flex-direction: column;
  background: #121212;
}

.reviews-content-slide.reviews-content-slide--with-overlay {
  padding: 0;
}

.reviews-content-slide.reviews-content-slide--with-overlay .reviews-content-slide__container {
  min-height: 442px;
}

.reviews-content-slide-top {
  display: flex;
  justify-content: space-between;

  margin-bottom: 12px;
}

.reviews-content-slide-top__icons {
  display: flex;
  gap: 2px;
  align-items: center;
}

.reviews-content-slide-top__number {
  color: var(--white-300);
}

.reviews-content-slide-body {
  color: var(--white-100);
}

.reviews-content-slide-bottom {
  margin-top: auto;
  color: var(--white-200);
}

.reviews-content-slide__overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.reviews-content-slide-head {
  display: flex;
  gap: 8px;
  align-items: center;
  z-index: 2;
  margin-bottom: 16px;
}

.reviews-content-slide-head img {
  height: 24px;
  width: 24px;
}

.reviews-content-slide-head p {
  color: var(--white-100);
}

.reviews-content-slide-text {
  color: var(--white-100);
  z-index: 2;
}

.reviews-content-slide-btn {
  color: var(--white-100);
  width: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 12px;
  padding-bottom: 12px;
  margin-top: auto;
}

.reviews-content-slide__container {
  position: relative;
  z-index: 2;
  background: #000000CC;

  padding: 24px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}


.reviews-tags {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.reviews-tags-item {
  padding: 7px 12px 5px;

  border-radius: 36px;
  border: 2px solid var(--black-500);
  color: var(--white-100);
}

.reviews-tags-item--active {
  border-color: var(--green-100);
  color: var(--green-100);
}

.reviews-content-slide__container h3 {
  color: var(--white-100);
}

.reviews-content-slide--video {
  background: var(--additional-brand-gradient);
  padding: 24px;
}

.reviews-content-slide--video__user {
  display: flex;
  margin-top: auto;
  justify-content: space-between;
  align-items: center;

  z-index: 2;
  width: calc(100% - 48px);
  position: absolute;
  bottom: 24px;
  right: 24px;
  left: 24px;
}

.reviews-content-slide--video .gradient-border-content {
  height: 100%;
  display: flex;
  width: 100%;
  position: static;
}

.reviews-content-slide--video__user span {
  color: #FAFAFA;
}

.reviews-content-slide--video__user img {
  width: 24px;
  height: 24px;
  object-fit: cover;
}

.reviews-content-slide--video__player {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  min-width: calc(100% - 4px);
  min-height: calc(100% - 4px);
  max-width: calc(100% - 4px);
  max-height: calc(100% - 4px);
  object-fit: contain;
}

.reviews-content-slide--video__play {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.reviews-swiper {
  height: 482px;
  width: 100%;
}

.swiper-pagination-custom {
  display: none;
}

.reviews-swiper .swiper-pagination-bullets {
  bottom: 0;
  height: 16px;
}

.reviews-swiper .swiper-pagination-bullets .swiper-pagination-bullet {
  background: var(--black-600);
  opacity: 100%;
}

.reviews-swiper .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--green-100);
}

.reviews-content-slide.is-hidden {
  display: none !important;
}

.reviews-tags-item.is-hidden {
  display: none !important;
}

.review-swiper-pagination-wrapper {
  display: none;
}

@media (max-width: 800px) {
  .reviews-title {
    margin-bottom: 32px;
  }

  .reviews-tags {
    margin-bottom: 24px;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .reviews-tags::-webkit-scrollbar {
    display: none;
  }

  .reviews-bottom {
    flex-direction: column;
    margin-top: 32px;
    gap: 12px;
    width: 100%;
  }

  .reviews-bottom button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .reviews-swiper {
    height: 532px;
  }

  .reviews-swiper > .swiper-pagination-bullets {
    display: none;
  }

  .reviews-swiper > .reviews-content {
    height: calc(100% - 60px);
  }

  .review-swiper-pagination-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .review-swiper-pagination-wrapper > .swiper-button-prev,
  .review-swiper-pagination-wrapper > .swiper-button-next {
    position: relative;

    background: var(--black-400);
    width: 40px;
    height: 40px;

    border-radius: 50%;
    cursor: pointer;
    color: var(--white-100);

    display: flex;
    align-items: center;
    justify-content: center;
    top: unset;
    bottom: unset;
    transform: unset;
    margin: unset;
  }

  .review-swiper-pagination-wrapper > .swiper-button-prev svg,
  .review-swiper-pagination-wrapper > .swiper-button-next svg {
    min-width: 16px;
    min-height: 16px;
    max-width: 16px;
    max-height: 16px;
  }

  .review-swiper-pagination-wrapper > .swiper-button-prev:after,
  .review-swiper-pagination-wrapper > .swiper-button-next:after {
    display: none;
  }

  .review-swiper-pagination-wrapper > .swiper-button-prev:disabled,
  .review-swiper-pagination-wrapper > .swiper-button-next:disabled {
    cursor: not-allowed;
    color: #707070;
    border: 1px solid #343434;
    background: transparent;
  }

  .review-swiper-pagination-wrapper > .swiper-pagination-custom {
    display: block;
    position: relative;

    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;
    text-align: center;

    color: var(--white-100);
    top: unset;
    bottom: unset;
    transform: unset;
    margin: unset;

    width: calc(100% - 80px);
  }
}
