		.ac_footer {
			position: relative;
			text-align: center;
			overflow: hidden;
			padding: 50px 0;
			color: #A12000;
		}

		.ac_footer a {
			color: #A12000;
		}

		.ac_footer p {
			text-align: center;
		}

		img[height="1"],
		img[width="1"] {
			display: none !important;
		}
		
		
		
		
		/* === ABSLIM ABOUT SECTION - FULLY VISIBLE TEXT === */

.abslim-about-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.abslim-container-fluid {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.abslim-about-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.abslim-about-left {
  padding-right: 30px;
}

.abslim-about-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.abslim-about-title {
  font-size: 36px;
  font-weight: 700;
  color: #118AB2;
  margin-bottom: 20px;
}

.abslim-green {
  color: #2E8B57;
}

.abslim-about-content {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
}

.abslim-about-text {
  margin-bottom: 16px;
}

.abslim-about-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .abslim-about-wrapper {
    flex-direction: column;
  }
  .abslim-about-left {
    padding-right: 0;
    text-align: center;
  }
  .abslim-about-title {
    font-size: 28px;
  }
  .abslim-about-text {
    font-size: 16px;
    line-height: 1.6;
  }
}


/* === ABSLIM THERAPEUTIC EFFECTS WITH ICONS === */

.abslim-effects-section {
  padding: 60px 0;
  background-color: #fff;
}

.abslim-container-fluid {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.abslim-effects-title {
  font-size: 36px;
  font-weight: 700;
  color: #118AB2;
  text-align: center;
  margin-bottom: 20px;
}

.abslim-effects-title .green {
  color: #2E8B57;
}

.abslim-effects-intro,
.abslim-effects-conclusion {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px;
}

.abslim-effects-grid {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-bottom: 30px;
}

.abslim-effect-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.abslim-effect-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.abslim-effect-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abslim-effect-content {
  font-size: 17px;
  line-height: 1.6;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .abslim-effects-section {
    padding: 60px 0;
  }
  .abslim-effects-title {
    font-size: 28px;
  }
  .abslim-effects-intro,
  .abslim-effects-conclusion,
  .abslim-effect-content {
    font-size: 16px;
  }
  .abslim-effects-grid {
    grid-template-columns: 1fr;
  }
}






/* === НОВАЯ СЕКЦИЯ: ACTIVE INGREDIENTS & COMPOSITION === */
.nova-ingredients-section {
  padding: 60px 20px;
  background-color: #ffffff;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #333;
}

.nova-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Заголовок секции */
.nova-header {
  text-align: center;
  margin-bottom: 60px;
}

.nova-title {
  font-size: 38px;
  font-weight: 700;
  color: #118AB2;
  margin: 0 0 10px;
}

.nova-title span {
  display: block;
  font-size: 28px;
  color: #2E8B57;
}

.nova-subtitle {
  font-size: 18px;
  color: #555;
  margin: 10px 0 20px;
}

.nova-divider {
  height: 4px;
  width: 100px;
  background: linear-gradient(to right, transparent, #118AB2, transparent);
  margin: 0 auto;
}

/* Карточка ингредиента */
.nova-ingredient-card {
  display: flex;
  gap: 40px;
  margin-bottom: 80px;
  padding: 0 20px;
  flex-direction: row;
  align-items: flex-start;
}

/* На десктопе — выравнивание по центру по высоте */
@media (min-width: 993px) {
  .nova-ingredient-card {
    align-items: center;
  }
}

.nova-ingredient-card.reverse {
  flex-direction: row-reverse;
}

.nova-ingredient-card:last-child {
  margin-bottom: 40px;
}

/* Изображение */
.nova-img-wrapper {
  flex-shrink: 0;
  width: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.nova-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* Текстовая часть */
.nova-content-wrapper {
  flex: 1;
  font-size: 17px;
  line-height: 1.7;
  color: #444;
}

.nova-ingredient-name {
  font-size: 30px;
  color: #118AB2;
  margin: 0 0 15px;
}

.nova-content-wrapper p {
  margin: 0 0 12px;
}

.nova-content-wrapper p:last-child {
  margin-bottom: 0;
}

/* Примечание о формуле */
.nova-formulation-note {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 25px;
  background: #f0f8ff;
  border: 1px solid #d0ebff;
  border-radius: 12px;
  margin: 40px 20px 0;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.nova-note-icon {
  flex-shrink: 0;
}

/* Адаптивность */
@media (max-width: 992px) {
  .nova-ingredient-card,
  .nova-ingredient-card.reverse {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .nova-img-wrapper {
    margin: 0 auto;
    width: 280px;
  }

  .nova-content-wrapper {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .nova-title {
    font-size: 32px;
  }

  .nova-title span {
    font-size: 24px;
  }

  .nova-ingredient-name {
    font-size: 26px;
  }

  .nova-ingredient-card {
    padding: 0;
  }

  .nova-formulation-note {
    margin: 40px 0;
    padding: 20px;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .nova-ingredients-section {
    padding: 60px 15px;
  }

  .nova-header {
    margin-bottom: 40px;
  }

  .nova-img-wrapper {
    width: 250px;
  }
}










/* === NOVA EXPERT SECTION - ИСПРАВЛЕННЫЙ И АДАПТИВНЫЙ === */
.nova-expert-section {
  padding: 60px 20px;
  background-color: #fff;
  position: relative;
  overflow: visible; /* Исправлено: было hidden */
}

.nova-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Заголовок */
.nova-expert-title {
  font-size: 36px;
  font-weight: 700;
  color: #118AB2;
  text-align: center;
  margin-bottom: 15px;
}

.nova-expert-title .nova-green {
  color: #2E8B57;
}

/* Подзаголовок */
.nova-expert-subtitle {
  font-size: 18px;
  color: #555;
  text-align: center;
  margin-bottom: 50px;
}

.nova-expert-subtitle .nova-green {
  color: #2E8B57;
  font-weight: 600;
}

/* Блок эксперта */
.nova-expert-wrapper {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  align-items: flex-start;
}

/* На десктопе — выравнивание по центру, ширина изображения ~1/3 */
@media (min-width: 769px) {
  .nova-expert-wrapper {
    align-items: center;
  }
  .nova-expert-left {
    width: 30%;
    min-width: 200px;
  }
  .nova-expert-right {
    width: 70%;
  }
}

/* На мобильных — полная ширина */
@media (max-width: 768px) {
  .nova-expert-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .nova-expert-left {
    width: 100%;
    margin-bottom: 30px;
  }
  .nova-expert-right {
    font-size: 16px;
  }
}

/* Контейнер изображения */
.nova-expert-left {
  position: relative;
  flex-shrink: 0;
}

.nova-expert-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.nova-stamp {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 80px;
  z-index: 1;
}

/* Текст отзыва */
.nova-expert-right {
  font-size: 17px;
  line-height: 1.7;
  color: #333;
}

.nova-expert-right p {
  margin: 0 0 16px;
}

.nova-expert-footer {
  font-style: italic;
  color: #118AB2;
  font-weight: 600;
  margin-top: 20px;
}

/* История клиента */
.nova-client-story {
  margin-top: 60px;
}

.nova-story-title {
  font-size: 32px;
  font-weight: 700;
  color: #118AB2;
  text-align: center;
  margin-bottom: 10px;
}

.nova-story-title span {
  color: #2E8B57;
}

.nova-client-info {
  font-size: 18px;
  color: #555;
  text-align: center;
  margin-bottom: 40px;
}

/* Сетка до/после - ИСПРАВЛЕНА ДЛЯ МОБИЛЬНЫХ */
.nova-results-grid {
  display: flex;
  flex-wrap: wrap; /* Ключевое исправление: перенос на узких экранах */
  gap: 20px;
  margin-bottom: 30px;
  justify-content: center;
}

.nova-result-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f9f9f9;
  border-radius: 12px;
  padding: 20px;
  flex: 1 1 300px; /* Гибкая ширина, минимально 300px */
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  min-width: 280px;
}

.nova-result-item.nova-before {
  border-left: 4px solid #e74c3c;
}

.nova-result-item.nova-after {
  border-left: 4px solid #27ae60;
}

/* Фото — адаптивное */
.nova-result-photo img {
  width: 163px;
  height: 319px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

/* Текст */
.nova-result-text {
  flex: 1;
}

.nova-main-text {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0 0 8px;
}

.nova-review {
  font-size: 16px;
  margin: 0 0 8px;
}

.nova-check {
  width: 100px;
  height: 100px;
}

.nova-pink {
  color: #d63031;
}

/* Текст кейса */
.nova-case-text {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}

.nova-key-note {
  font-size: 16px;
  font-weight: 600;
  color: #118AB2;
  background: #e3f2fd;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid #bbdefb;
  text-align: center;
}

/* Декоративный фон */
.nova-bg-polygons {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

/* === МОБИЛЬНАЯ АДАПТАЦИЯ === */
@media (max-width: 768px) {
  .nova-results-grid {
    flex-direction: column;
    gap: 20px;
  }
  .nova-result-item {
    flex-direction: row;
    align-items: center;
  }
  .nova-result-photo img {
    width: 140px;
    height: 270px;
  }
  .nova-main-text,
  .nova-review {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .nova-result-photo img {
    width: 120px;
    height: 230px;
  }
  .nova-result-item {
    padding: 15px;
    gap: 10px;
  }
  .nova-main-text {
    font-size: 15px;
  }
  .nova-review {
    font-size: 15px;
  }
}









/* === PACKAGE LEAFLET STYLES === */
.pl-section-wrapper {
  padding: 60px 20px;
  background-color: #fff;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #333;
  line-height: 1.7;
}

.pl-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Заголовок */
.pl-header {
  text-align: center;
  margin-bottom: 60px;
}

.pl-title {
  font-size: 36px;
  font-weight: 700;
  color: #118AB2;
  margin: 0 0 10px;
}

.pl-subtitle {
  font-size: 18px;
  color: #555;
  margin: 0;
}

/* Элементы списка */
.pl-item {
  margin-bottom: 30px;
  background: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border-left: 4px solid #118AB2;
}

.pl-item.pl-warning {
  border-left-color: #e74c3c;
  background: #fef6f5;
}

.pl-item.pl-caution {
  border-left-color: #FF9800;
  background: #fff9f0;
}

.pl-item-header {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background: #f0f8ff;
  border-bottom: 1px solid #e0e8f0;
}

.pl-item-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #118AB2;
  color: white;
  font-weight: 600;
  font-size: 16px;
  border-radius: 50%;
  margin-right: 12px;
}


.pl-item-title {
  font-size: 20px;
  font-weight: 600;
  color: #118AB2;
  margin: 0;
  /* Разрешаем перенос */
  word-wrap: break-word;
  /* Занимает оставшееся пространство */
  flex: 1;
  /* Минимальная ширина, чтобы не сжимался слишком сильно */
  min-width: 150px;
}

.pl-item-body {
  padding: 20px;
  font-size: 16px;
  color: #444;
}

.pl-product-name {
  font-size: 18px;
  font-weight: 600;
  color: #118AB2;
  margin: 0;
}

/* Визуализация бутылки */
.pl-visual {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.pl-bottle {
  position: relative;
  width: 80px;
  height: 140px;
  background: #e0f2f1;
  border-radius: 10px 10px 20px 20px;
  border: 2px solid #b2dfdb;
  overflow: hidden;
}

.pl-dropper {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 20px;
  background: #b2dfdb;
  border-radius: 6px;
}

.pl-liquid {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: rgba(0, 150, 136, 0.4);
  border-radius: 0 0 15px 15px;
}

.pl-details {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.pl-detail {
  margin-bottom: 6px;
}

/* Важное примечание */
.pl-important-note {
  margin-top: 40px;
  padding: 20px;
  background: #fff8e1;
  border: 1px solid #ffeb3b;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #555;
}

.pl-note-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Адаптивность */
@media (max-width: 768px) {
  .pl-section-wrapper {
    padding: 60px 15px;
  }
  .pl-title {
    font-size: 30px;
  }
  .pl-item-header {
    flex-direction: row;
    gap: 10px;
  }
  .pl-item-number {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
  .pl-item-title {
    font-size: 18px;
  }
  .pl-visual {
    flex-direction: column;
    align-items: flex-start;
  }
  .pl-bottle {
    width: 60px;
    height: 100px;
  }
  .pl-dropper {
    height: 16px;
  }
}

@media (max-width: 480px) {
  .pl-section-wrapper {
    padding: 50px 10px;
  }
  .pl-title {
    font-size: 26px;
  }
  .pl-subtitle {
    font-size: 16px;
  }
  .pl-item-body,
  .pl-details {
    font-size: 14px;
  }
  .pl-important-note {
    font-size: 14px;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}









/* === SOCIAL PROOF CHAT SECTION === */
.sp-chat-section {
  padding: 60px 20px;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.sp-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Заголовок */
.sp-title {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin: 0 0 10px;
  line-height: 1.3;
}

.sp-subtitle {
  font-size: 24px;
  color: #555;
  text-align: center;
  margin: 0 0 30px;
  line-height: 1.4;
}

.sp-highlight {
  color: #d63031;
  font-weight: 700;
}

/* Макет: чат слева, картинка справа */
.sp-layout {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* Чат (слева) */
.sp-chat-wrapper {
  flex: 1;
  max-width: 500px; /* Ключевое: не растягивается больше 500px */
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sp-message {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 100%;
}

.sp-message-left {
  flex-direction: row;
}

.sp-message-right {
  flex-direction: row-reverse;
  justify-content: flex-end;
  text-align: right;
}

.sp-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.sp-bubble {
  background: #f1f1f1;
  color: #333;
  padding: 10px 14px;
  border-radius: 18px 18px 18px 4px;
  font-size: 15px;
  line-height: 1.5;
  max-width: 100%;
  word-wrap: break-word;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sp-message-right .sp-bubble {
  background: #118AB2;
  color: white;
  border-radius: 18px 18px 4px 18px;
}

.sp-emoji {
  width: 20px;
  height: 20px;
  display: inline-block;
  flex-shrink: 0;
}

/* Картинка справа */
.sp-image-wrapper {
  flex: 1;
  max-width: 500px; /* Ограничиваем ширину */
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.sp-people-img {
  width: 100%;
  max-width: 450px; /* Фиксируем максимальную ширину */
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Фоновые листья */
.sp-leafs-bg {
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  height: auto;
  z-index: -1;
  pointer-events: none;
  opacity: 0.85;
}

/* Адаптивность */
@media (max-width: 992px) {
  .sp-layout {
    flex-direction: column;
    align-items: stretch;
  }
  .sp-image-wrapper {
    order: -1;
    justify-content: center;
    margin-bottom: 20px;
  }
  .sp-people-img {
    max-width: 100%;
    width: 80%;
  }
  .sp-chat-wrapper {
    max-width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .sp-title {
    font-size: 28px;
  }
  .sp-subtitle {
    font-size: 20px;
  }
  .sp-layout {
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .sp-chat-section {
    padding: 50px 15px;
  }
  .sp-title {
    font-size: 24px;
  }
  .sp-subtitle {
    font-size: 18px;
  }
  .sp-people-img {
    width: 90%;
  }
}





/* === CUSTOMER REVIEWS SECTION === */
.cr-reviews-section {
  padding: 80px 20px;
  background-color: #f8f9fa;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #333;
  position: relative;
  overflow: hidden;
}

.cr-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Заголовок */
.cr-title {
  font-size: 36px;
  font-weight: 700;
  color: #118AB2;
  text-align: center;
  margin: 0 0 20px;
  line-height: 1.3;
}

.cr-highlight {
  color: #2E8B57;
  position: relative;
  display: inline-block;
}

.cr-highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(46, 139, 87, 0.2);
  z-index: -1;
  border-radius: 4px;
}

/* Вступительный текст */
.cr-intro {
  font-size: 18px;
  color: #555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* СЕТЬ ОТЗЫВОВ — 3 В РЯД НА ПК, ВЕРТИКАЛЬНО НА МОБИЛЬНЫХ */
.cr-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

/* Карточка отзыва */
.cr-review-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.cr-review-card:hover {
  transform: translateY(-5px);
}

/* Фото и теги */
.cr-photo-container {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.cr-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cr-before-tag,
.cr-after-tag {
  position: absolute;
  bottom: 10px;
  background: rgba(0,0,0,0.7);
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 8px;
  text-align: center;
}

.cr-before-tag {
  left: 10px;
  border-left: 3px solid #e74c3c;
}

.cr-after-tag {
  right: 10px;
  border-left: 3px solid #27ae60;
}

/* Текст отзыва */
.cr-review-content {
  padding: 25px;
}

.cr-reviewer-name {
  font-size: 22px;
  font-weight: 600;
  color: #118AB2;
  margin: 0 0 12px;
}

.cr-text {
  font-size: 16px;
  line-height: 1.65;
  color: #444;
  margin: 0;
}

.cr-text b {
  color: #d63031;
  font-weight: 600;
}

/* Блок с негативными отзывами */
.cr-negative-note {
  max-width: 900px;
  margin: 0 auto;
  padding: 25px;
  background: #fff8e1;
  border: 1px solid #ffeb3b;
  border-radius: 12px;
  font-size: 15px;
  color: #555;
  text-align: center;
  line-height: 1.6;
}

/* === АДАПТИВНОСТЬ === */
/* На планшетах — 2 в ряд */
@media (max-width: 992px) {
  .cr-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

/* На мобильных — одна карточка */
@media (max-width: 768px) {
  .cr-reviews-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .cr-reviews-section {
    padding: 60px 15px;
  }
  .cr-title {
    font-size: 28px;
  }
  .cr-intro,
  .cr-negative-note {
    font-size: 16px;
  }
  .cr-photo-container {
    height: 220px;
  }
  .cr-review-content {
    padding: 20px;
  }
  .cr-reviewer-name {
    font-size: 20px;
  }
  .cr-text {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .cr-photo-container {
    height: 200px;
  }
  .cr-review-content {
    padding: 18px;
  }
  .cr-reviewer-name {
    font-size: 18px;
  }
  .cr-text {
    font-size: 14px;
  }
  .cr-negative-note {
    font-size: 14px;
    padding: 20px;
  }
}