

/* Start:/html/components-template/reviews-list/style.css?177506422820860*/
.reviews-list {
  padding-top: 0px !important;
  padding-top: 0px !important;
  padding-bottom: 20px !important;
}

.reviews-list__empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--lite_basic_text_black);
}

.reviews-list__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 0;
}

.review-item {
  background: var(--card_bg_black);
  border-radius: 8px;
  padding: 24px;
  border: 1px solid var(--stroke_black);
  transition: transform 0.2s, box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
  min-height: 0;
  min-width: 0;
  align-items: stretch;
  width: 100%;
  box-sizing: border-box;
  height: auto;
  overflow-x: hidden;
}

.review-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 5px 30px rgba(34,34,34,0.1);
  border-color: var(--stroke_black_hover);
  background-color: var(--card_bg_hover_black);
}

.review-item__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--stroke_black);
  flex-shrink: 0;
}

.review-item__photo {
  position: relative;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--darkgrey_bg_black);
}

.review-item__photo-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  object-position: center;
  display: block;
}

.review-item__info {
  flex: 1;
  min-width: 0;
}

.review-item__name {
  font-weight: 500;
  font-size: 16px;
  line-height: calc(1em + 7px);
  color: var(--white_text_black);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.review-item__verified {
  color: var(--theme-base-color);
  font-size: 18px;
}

.review-item__city,
.review-item__model {
  font-size: .8125rem;
  line-height: calc(1em + 5px);
  color: var(--lite_basic_text_black);
  margin-top: 2px;
}

.review-item__date {
  font-size: .8125rem;
  line-height: calc(1em + 5px);
  color: var(--lite_basic_text_black);
  margin-top: 6px;
}

.review-item__rating {
  display: flex;
  gap: 3px;
  flex-shrink: 0;
  align-items: center;
  margin-top: 4px;
}

.review-star {
  color: var(--stroke_black);
  font-size: 16px;
  line-height: 1;
}

.review-star.active {
  color: #ffc107;
}

.review-item__text-wrapper {
  margin-bottom: 16px;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
}

.review-item__text {
  font-size: .9375rem;
  line-height: calc(1em + 8px);
  color: var(--basic_text_black);
  overflow: hidden;
  flex: 0 0 auto;
  min-height: 0;
  min-width: 0;
  width: 100%;
  position: relative;
  margin-bottom: 0;
  order: 1;
}

/* Стили для изображений внутри текста отзыва */
.review-item__text img {
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
  margin: 12px 0;
  border-radius: 6px;
  box-sizing: border-box;
}

.review-item__text p {
  margin: 0 0 12px 0;
}

.review-item__text p:last-child {
  margin-bottom: 0;
}

.review-item__text p:has(img) {
  margin-bottom: 0;
}

.review-item__text img:first-child {
  margin-top: 0;
}

.review-item__text img:last-child {
  margin-bottom: 0;
}

/* Убираем большие отступы перед изображениями после текста */
.review-item__text p + img {
  margin-top: 8px;
}

.review-item__text > * + img {
  margin-top: 8px;
}

/* Исправление для случаев, когда изображение идет сразу после текста */
.review-item__text p:not(:has(img)) + img {
  margin-top: 8px;
}

/* Всегда показываем часть текста */
/* Для длинных отзывов с аккордеоном */
.review-item__text-wrapper.has-accordion .review-item__text {
  order: 1;
  flex: 0 0 auto;
  word-wrap: break-word;
  word-break: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.review-item__text-wrapper.has-accordion.closed .review-item__text {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  max-height: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  -webkit-transition: none;
  transition: none;
}

.review-item__text-wrapper.has-accordion:not(.closed) .review-item__text {
  display: block !important;
  max-height: none !important;
  -webkit-line-clamp: none !important;
  -webkit-box-orient: initial !important;
  overflow: visible !important;
  text-overflow: clip;
  word-break: normal;
  -webkit-transition: none;
  transition: none;
  height: auto;
}

.review-item__text-toggle {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 12px;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  cursor: pointer;
  user-select: none;
  color: var(--theme-base-color);
  font-size: .875rem;
  font-weight: 500;
  width: 100%;
  max-width: 100%;
  flex-shrink: 0;
  order: 2;
  align-self: flex-start;
  clear: both;
  box-sizing: border-box;
}

.review-item__text-toggle .icon {
  fill: var(--theme-base-color);
  transition: transform 0.3s;
}

.review-item__text-wrapper.has-accordion.closed .review-item__text-toggle .icon {
  transform: rotate(0deg);
}

.review-item__text-wrapper.has-accordion:not(.closed) .review-item__text-toggle .icon {
  transform: rotate(180deg);
}

.review-item__text-wrapper.has-accordion:not(.closed) .review-item__text-toggle .review-item__text-more::after {
  content: " (mniej)";
}

.review-item__reply {
  background: var(--lite_bg_black);
  border-left: 3px solid var(--theme-base-color);
  padding: 16px;
  margin-top: auto;
  border-radius: 6px;
  position: relative;
  flex-shrink: 0;
}

.review-item__reply-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 8px;
}

.review-item__reply-label {
  font-weight: 500;
  color: var(--theme-base-color);
  font-size: .875rem;
  line-height: calc(1em + 5px);
  display: flex;
  align-items: center;
  gap: 6px;
}

.review-item__reply-label::before {
  content: '';
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23CB2128'%3E%3Cpath d='M20 6h-2.18c.11-.31.18-.65.18-1a2.996 2.996 0 0 0-5.5-1.65l-.5.67-.5-.68C10.96 2.54 10 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 11 8.76l1-1.36 1 1.36L15.38 12 17 10.83 14.92 8H20v6z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.review-item__reply-date {
  font-size: .75rem;
  line-height: calc(1em + 5px);
  color: var(--lite_basic_text_black);
}

.review-item__reply-text {
  font-size: .875rem;
  line-height: calc(1em + 6px);
  color: var(--basic_text_black);
  margin-bottom: 12px;
  overflow: hidden;
  
  
  
}

.review-item__reply-photos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 8px;
  margin-top: 12px;
  margin-bottom: 0;
  max-width: 100%;
  overflow: visible;
  box-sizing: border-box;
}

.review-item__reply-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
  display: block;
  transition: transform 0.2s;
}

.review-item__reply-photo:hover {
  transform: scale(1.05);
}

.review-item__reply-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.reviews-list__pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

@media (min-width: 1200px) {
  .reviews-list__inner {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

@media (max-width: 1199.75px) {
  .reviews-list__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 991.75px) {
  .reviews-list__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 767.75px) {
  .reviews-list {
    padding-top: 0px !important;
    padding-bottom: 40px;
  }
  
  .reviews-list__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .review-item {
    padding: 20px;
    height: auto;
    min-height: 0;
  }
  
  .review-item__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    flex-shrink: 0;
  }
  
  .review-item__photo {
    width: 60px;
    height: 60px;
  }
  
  .review-item__rating {
    align-self: flex-start;
    margin-top: 8px;
  }
  
  .review-item__text-wrapper {
    height: auto;
    min-height: 0;
    flex: 0 1 auto;
    width: 100%;
  }
  
  .review-item__text-wrapper.has-accordion.closed {
    max-height: none;
    overflow: visible;
  }
  
  .review-item__text-wrapper.has-accordion.closed .review-item__text {
    overflow: hidden;
  }
  
  .review-item__text-wrapper.has-accordion.closed .review-item__text {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    max-height: 90px;
    overflow: hidden;
  }
  
  .review-item__text-wrapper.has-accordion:not(.closed) {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }
  
  .review-item__text-wrapper.has-accordion:not(.closed) .review-item__text {
    height: auto !important;
    max-height: none !important;
    display: block !important;
  }
  
  /* Исправление размера изображений в тексте отзыва на мобильных */
  .review-item__text img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin-top: 6px !important;
    margin-bottom: 6px !important;
  }
  
  .review-item__text p {
    margin-bottom: 8px !important;
  }
  
  .review-item__text p:last-child {
    margin-bottom: 0 !important;
  }
  
  .review-item__text p:has(img) {
    margin-bottom: 0 !important;
  }
  
  .review-item__text img:first-child {
    margin-top: 0 !important;
  }
  
  .review-item__text img:last-child {
    margin-bottom: 0 !important;
  }
  
  /* Убираем большие отступы перед изображениями после текста на мобильных */
  .review-item__text p + img {
    margin-top: 6px !important;
  }
  
  .review-item__text > * + img {
    margin-top: 6px !important;
  }
  
  .review-item__text p:not(:has(img)) + img {
    margin-top: 6px !important;
  }
  
  /* Убираем отступы у параграфов перед изображениями */
  .review-item__text p:has(+ img) {
    margin-bottom: 6px !important;
  }
  
  .review-item__reply-text {
    -webkit-line-clamp: 2;
  }
  
  .review-item__text-toggle {
    margin-top: 12px;
    font-size: .875rem;
    padding: 8px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
  }
  
  .review-item__reply-header.slide-block__head {
    min-height: 44px;
    padding: 12px 16px;
    -webkit-tap-highlight-color: transparent;
  }
  
  .review-item__reply-photos {
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    gap: 8px;
    min-width: 0;
  }
  
  .review-item__reply-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

@media (max-width: 575.75px) {
  .reviews-list__inner {
    gap: 16px;
  }
  
  .review-item {
    padding: 16px;
  }
  
  .review-item__text-wrapper.has-accordion.closed .review-item__text {
    max-height: 80px;
    -webkit-line-clamp: 3;
  }
  
  .review-item__text-toggle {
    margin-top: 10px;
    font-size: .8125rem;
    padding: 6px 0;
    min-height: 40px;
    display: flex;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
  }
  
  /* Дополнительные исправления размера изображений на маленьких экранах */
  .review-item__text img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin-top: 6px !important;
    margin-bottom: 6px !important;
  }
  
  .review-item__text p {
    margin-bottom: 6px !important;
  }
  
  .review-item__text p:has(img) {
    margin-bottom: 0 !important;
  }
  
  .review-item__text p + img,
  .review-item__text p:has(+ img) {
    margin-top: 6px !important;
  }
  
  .review-item__reply-header.slide-block__head {
    min-height: 40px;
    padding: 10px 16px;
    -webkit-tap-highlight-color: transparent;
  }
  
  .review-item__header {
    gap: 10px;
  }
  
  .review-item__photo {
    width: 56px;
    height: 56px;
  }
}


/* Расширяем карточки на всю ширину внутри main-row__main */
.main-row__main .content .reviews-list {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.main-row__main .content .reviews-list__inner {
  width: 100% !important;
  max-width: 100% !important;
}

/* Убираем ограничения контейнера для страницы отзывов */
body:has(.reviews-list) .main-row__main .content {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Дополнительно расширяем на всю ширину main-row */
body:has(.reviews-list) .main-row__main {
  max-width: 100% !important;
  width: 100% !important;
}

body:has(.reviews-list) .main-row__main .container {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
}

/* Стили для аккордеона ответа компании */
.review-item__reply.slide-block {
  padding: 0;
}

.review-item__reply-header.slide-block__head {
  padding: 16px;
  margin-bottom: 0;
  cursor: pointer;
  cursor: pointer;
  user-select: none;
  user-select: none;
}

.review-item__reply-header.slide-block__head .icon {
  fill: var(--theme-base-color);
  transition: transform 0.3s;
}

.review-item__reply.slide-block.closed .review-item__reply-header.slide-block__head .icon {
  transform: rotate(0deg);
}

.review-item__reply.slide-block:not(.closed) .review-item__reply-header.slide-block__head .icon {
  transform: rotate(180deg);
}

.review-item__reply-body.slide-block__body {
  padding: 0 16px 20px;
  max-height: 2000px;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.review-item__reply.slide-block.closed .review-item__reply-body.slide-block__body {
  max-height: 0 !important;
  padding: 0 16px !important;
  margin: 0 !important;
}

/* Унификация отображения всех карточек */
.review-item {
  box-sizing: border-box;
}

.review-item__header {
  flex-shrink: 0;
}

/* Обеспечиваем одинаковое отображение аккордеонов */
.review-item__text-wrapper.has-accordion {
  position: relative;
  flex-direction: column !important;
  align-items: stretch !important;
}

/* Унификация отображения ответов компании */
.review-item__reply.slide-block {
  margin-top: auto;
}

.review-item__reply-body.slide-block__body {
  transition: max-height 0.3s ease, padding 0.3s ease, overflow 0.3s ease;
}

/* Дополнительные стили для надежной работы аккордеонов */
.review-item__text-wrapper.has-accordion.closed {
  overflow: visible;
  max-height: none;
}

.review-item__text-wrapper.has-accordion.closed .review-item__text {
  overflow: hidden;
}

.review-item__text-wrapper.has-accordion:not(.closed) {
  overflow: visible;
  max-height: none;
  height: auto;
}

/* Исправления для iOS Safari */
@supports (-webkit-touch-callout: none) {
  .review-item__text-wrapper.has-accordion.closed .review-item__text {
    -webkit-line-clamp: 4 !important;
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
  }
  
  .review-item__text-wrapper.has-accordion:not(.closed) .review-item__text {
    display: block !important;
    -webkit-line-clamp: none !important;
    -webkit-box-orient: initial !important;
    height: auto !important;
    max-height: none !important;
  }
  
  .review-item__text-wrapper.has-accordion:not(.closed) {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }
  
  .review-item {
    height: auto !important;
    min-height: 0 !important;
  }
  
  /* Исправление больших отступов перед изображениями на iOS */
  .review-item__text img {
    margin-top: 6px !important;
    margin-bottom: 6px !important;
  }
  
  .review-item__text p {
    margin-bottom: 8px !important;
  }
  
  .review-item__text p:last-child {
    margin-bottom: 0 !important;
  }
  
  .review-item__text p:has(img) {
    margin-bottom: 0 !important;
  }
  
  /* Убираем большие отступы перед изображениями после текста на iOS */
  .review-item__text p + img {
    margin-top: 6px !important;
  }
  
  .review-item__text > * + img {
    margin-top: 6px !important;
  }
  
  .review-item__text p:not(:has(img)) + img {
    margin-top: 6px !important;
  }
  
  .review-item__text p:has(+ img) {
    margin-bottom: 6px !important;
  }
  
  /* Убираем отступы у всех элементов перед изображениями */
  .review-item__text * + img {
    margin-top: 6px !important;
  }
}

/* Убеждаемся, что кнопка "Читать далее" всегда видна для аккордеонов */
.review-item__text-wrapper.has-accordion .review-item__text-toggle {
  display: flex !important;
  flex-direction: row !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  position: relative;
  z-index: 1;
  margin-top: 12px;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  width: 100% !important;
  max-width: 100% !important;
  flex-shrink: 0;
  order: 2;
  align-self: flex-start;
  justify-content: flex-start;
  clear: both;
  float: none;
  box-sizing: border-box;
}

/* Улучшаем видимость и интерактивность кнопки аккордеона */
.review-item__text-toggle:hover {
  opacity: 0.8;
}

.review-item__text-toggle:active {
  opacity: 0.6;
}

.review-item__reply-photos {
  max-width: 100%;
  overflow: hidden;
}

.review-item__reply-photo {
  cursor: pointer;
}

/* Модальное окно для просмотра фотографий */
.review-photo-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.review-photo-modal.active {
  display: flex;
}

.review-photo-modal-content {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.review-photo-modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.3s;
}

.review-photo-modal-close:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* Google Review CTA */
.reviews__google-cta {
  margin-top: 2rem;
  margin-bottom: 2rem; }
  .reviews__google-cta .contacts__review-cta {
    padding: 1.5rem;
    background: var(--card_bg_black, #f8f9fa);
    border: 1px solid var(--stroke_black, #eee);
    border-radius: 12px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto; }
  .reviews__google-cta .contacts__review-cta-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 0; }
  .reviews__google-cta .contacts__review-cta p {
    margin-bottom: 1rem;
    color: #777;
    color: var(--white_text_black_muted, #777); }
  .reviews__google-cta .contacts__review-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--theme-base-color, #cb2128);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s; }
    .reviews__google-cta .contacts__review-btn:hover {
      opacity: 0.85;
      color: #fff; }

/* End */


/* Start:/html/components-template/slide-block/style.css?17590671492219*/
.slide-block__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  fill: var(--fill_dark_light);
  color: #222;
  color: var(--white_text_black); }
  @media screen {
    .slide-block__head {
      cursor: pointer; } }
  .slide-block__head .icon {
    transform: rotate(180deg);
    transition: transform 0.3s; }

.slide-block__body {
  overflow: hidden;
  height: auto;
  padding-top: 13px;
  transition: height 0.3s, padding-top 0.3s; }
  .slide-block__body .nav-item {
    margin-bottom: 3px; }
  .slide-block__body .nav-link {
    color: #222;
    color: var(--white_text_black);
    display: inline-flex;
    align-items: center; }
    .slide-block__body .nav-link .icon {
      fill: var(--fill_dark_light);
      transform: rotate(90deg);
      margin-right: 5px; }
    .slide-block__body .nav-link .nav-item-name {
      padding: 4px 8px; }
    .slide-block__body .nav-link:hover {
      color: #000;
      color: var(--fill_dark_lite_hover); }
  .slide-block__body .nav-item.active .nav-link {
    font-weight: 500;
    border-radius: 8px;
    background-color: var(--darkgrey_bg_black); }
    .slide-block__body .nav-item.active .nav-link .icon {
      display: none; }
  .slide-block__body .nav-lvl2 {
    padding-top: 3px;
    padding-left: 12px; }
  .slide-block__body .nav-lvl2-item {
    padding-bottom: 3px; }
  .slide-block__body .nav-lvl2-item.active .nav-lvl2-link {
    font-weight: 500;
    border-radius: 8px;
    background-color: var(--darkgrey_bg_black); }
  .slide-block__body .nav-lvl2-link {
    padding: 4px 8px;
    color: #222;
    color: var(--white_text_black); }
    .slide-block__body .nav-lvl2-link:hover {
      color: #000;
      color: var(--fill_dark_lite_hover); }

.slide-block.closed .slide-block__head .icon {
  transform: rotate(0deg); }

.slide-block.closed .slide-block__body {
  height: 0px;
  padding-top: 0px; }

.slide-block--right {
  margin-bottom: 32px; }
  .slide-block--right .nav-item-name {
    padding: 4px 8px; }
  .slide-block--right .nav-item.active .nav-item-name {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    pointer-events: none;
    background-color: var(--darkgrey_bg_black); }

/* End */


/* Start:/html/components-template/pagination/style.css?17712527601787*/
.pagination {
  --darkgrey_bg: var(--light, #f4f4f4) var(--dark, #2b2b2b);
  display: flex;
  justify-content: center; }
  .pagination__btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    border-radius: 8px; }
    .pagination__btn .icon {
      fill: rgba(0, 0, 0, 0);
      stroke: var(--fill_dark_light); }
    .pagination__btn.is-hidden {
      opacity: 0;
      visibility: hidden; }
    .pagination__btn:hover {
      background-color: var(--darkgrey_bg); }
  .pagination__btn--prev {
    transform: scale(-1, -1); }
  .pagination__list {
    margin: 0 2px;
    display: flex;
    align-items: center;
    justify-content: center; }
  .pagination__item {
    margin: 0 2px;
    display: inline-block;
    width: 46px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    color: #333;
    color: var(--white_text_black);
    border-radius: 8px; }
  .pagination__item:not(.pagination__item--current):hover {
    background-color: var(--darkgrey_bg); }
  .pagination__item--current {
    background-color: var(--theme-base-color);
    color: #fff; }

@media (max-width: 767px) {
  .pagination {
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    padding: 0 8px;
  }
  .pagination__btn {
    width: 38px;
    height: 38px;
  }
  .pagination__item {
    width: 38px;
    height: 34px;
    line-height: 34px;
    margin: 0 1px;
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .pagination {
    gap: 4px;
    padding: 0 4px;
  }
  .pagination__btn {
    width: 36px;
    height: 36px;
  }
  .pagination__item {
    width: 34px;
    height: 32px;
    line-height: 32px;
    font-size: 0.8125rem;
  }
}

/* End */
/* /html/components-template/reviews-list/style.css?177506422820860 */
/* /html/components-template/slide-block/style.css?17590671492219 */
/* /html/components-template/pagination/style.css?17712527601787 */
