/* GANTRY5 DEVELOPMENT MODE ENABLED.
 *
 * WARNING: This file is automatically generated by Gantry5. Any modifications to this file will be lost!
 *
 * For more information on modifying CSS, please read:
 *
 * http://docs.gantry.org/gantry5/configure/styles
 * http://docs.gantry.org/gantry5/tutorials/adding-a-custom-style-sheet
 */

@charset "UTF-8";
.two-buttons-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  /* Отступ между кнопками */
  justify-content: center;
  margin-bottom: 20px;
}
/* ОСНОВНЫЕ СТИЛИ КНОПКИ (на основе вашего button-outline) */
.custom-button-outline {
  /* Скопированные и адаптированные стили */
  background: transparent !important;
  color: white !important;
  /* Цвет текста в обычном состоянии */
  border: 2px solid #09598a;
  border-radius: 30px;
  /* Закругление углов. Можно изменить на 4px, 12px и т.д. */
  /* Отступы и выравнивание текста */
  padding: 20px 25px;
  text-align: Left;
  /* Дополнительные свойства для внешнего вида */
  font-size: 16px;
  line-height: 1.5;
  transition: all 0.3s ease;
  cursor: pointer;
  /* Состояния при наведении и фокусе */
}
.custom-button-outline:hover, .custom-button-outline:active, .custom-button-outline:focus {
  background: transparent !important;
  color: white !important;
  /* Цвет текста становится белым */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(9, 89, 138, 0.3);
}
/* КЛАССЫ ДЛЯ РАЗНОЙ ШИРИНЫ */
.button-67 {
  flex: 0 0 calc(67% - 15px);
  /* 67% ширины минус половина отступа */
  max-width: calc(67% - 15px);
}
.button-33 {
  flex: 0 0 calc(33% - 15px);
  /* 33% ширины минус половина отступа */
  max-width: calc(33% - 15px);
}
.button-100 {
  flex: 0 0 calc(100% - 15px);
  /* 33% ширины минус половина отступа */
  max-width: calc(100% - 15px);
}
/* Адаптивность: на мобильных кнопки становятся на всю ширину */
@media (max-width: 768px) {
  .button-67, .button-33 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
/* ВАЖНОЕ ИСПРАВЛЕНИЕ для блоков с большим текстом */
.two-buttons-container .custom-button-outline {
  /* Запрещаем растягивание по высоте. Блоки будут начинаться с одной линии */
  align-self: flex-start;
  /* Гарантируем, что ширина останется строго по заданным классам */
  box-sizing: border-box;
  /* Управление внутренним содержимым: текст будет обрезан блочными границами */
  overflow-wrap: break-word;
  /* Переносит длинные слова */
  word-wrap: break-word;
  /* Для совместимости */
  hyphens: auto;
  /* Автоматическое добавление переносов (если поддерживается) */
}
/* Дополнительный отступ снизу для визуального разделения */
.button-67 {
  margin-bottom: 20px;
}
/* Модификатор для светлого блока */
.two-buttons-container.light-style .custom-button-outline {
  /* Светлый фон и тёмный текст (всегда) */
  background-color: #88BEDE !important;
  /* Светло-серый фон */
  color: #222222 !important;
  /* Тёмно-серый, почти чёрный текст был*/
  border-color: #a0c6df;
  /* Светлый синий для рамки (мягче оригинала) */
  /* Чтобы заголовок (strong) тоже был тёмным, а не синим */
  /* Состояние при наведении: делаем фон чуть темнее для интерактивности */
}
.two-buttons-container.light-style .custom-button-outline strong {
  color: blue;
}
.two-buttons-container.light-style .custom-button-outline:hover, .two-buttons-container.light-style .custom-button-outline:active, .two-buttons-container.light-style .custom-button-outline:focus {
  background-color: #88BEDE !important;
  /* Немного темнее серый */
  color: #222222 !important;
  border-color: #09598a;
  /* Можно вернуть оригинальный синий при наведении */
  /* Остальные эффекты (тень, подъём) остаются из основного стиля */
}
/* Новое*/
/* Контейнер 67% ширины */
.container-67 {
  width: 67%;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}
/* Светлая плашка */
.light-plate {
  background-color: #88bede;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 20px;
}
/* Заголовок секции */
.section-title {
  text-align: center;
  color: #09598a;
  font-size: 28px;
  margin-bottom: 40px;
  font-weight: 600;
}
/* Сетка элементов обучения */
.training-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
/* Строка с двумя колонками */
.training-row {
  display: flex;
  gap: 30px;
  width: 100%;
}
/* Отдельный элемент (колонка) */
.training-item {
  flex: 1;
  background-color: #f8fafc;
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s ease;
  border: 1px solid #e1e8f0;
}
.training-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(9, 89, 138, 0.1);
  border-color: #09598a;
}
/* Контент внутри элемента */
.item-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
/* Круглое изображение */
.image-circle {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #09598a;
}
.image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.training-item:hover .image-circle img {
  transform: scale(1.05);
}
/* Текстовый блок */
.item-text {
  flex: 1;
}
.item-title {
  color: #09598a;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}
.item-description {
  color: #4a5568;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}
/* Адаптивность */
@media (max-width: 1024px) {
  .container-67 {
    width: 90%;
    padding: 30px 15px;
  }
  .light-plate {
    padding: 30px;
  }
}
@media (max-width: 768px) {
  .container-67 {
    width: 100%;
    padding: 15px 15px;
  }
  .light-plate {
    padding: 25px;
    border-radius: 8px;
  }
  .training-row {
    flex-direction: column;
    gap: 20px;
  }
  .section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .item-content {
    gap: 15px;
  }
  .image-circle {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 480px) {
  .light-plate {
    padding: 20px 15px;
  }
  .section-title {
    font-size: 22px;
  }
  .training-item {
    padding: 15px;
  }
  .item-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }
  .image-circle {
    width: 65px;
    height: 65px;
  }
  .item-title {
    font-size: 17px;
  }
  .item-description {
    font-size: 14px;
  }
}
/* ДОЮАВКА*/
/* Если нужно использовать те же стили, что и у кнопок */
.training-item.light-style {
  background-color: #88BEDE !important;
  border-color: #a0c6df;
  color: #222222;
}
.training-item.light-style .item-title {
  color: #09598a;
}
.training-item.light-style .item-description {
  color: #2d3748;
}
.training-item.light-style:hover {
  background-color: #7ab0d6 !important;
  border-color: #09598a;
}
/*ИЗОБРАЖЕНИЕ КОНСУЛЬТАЦИЯ */
/* Стиль для круглого изображения через обертку */
.form-round-image {
  width: 100px;
  /* Ваш нужный размер */
  height: 100px;
  border-radius: 50%;
  /* Делает контейнер круглым */
  overflow: hidden;
  /* Обрезает углы изображения */
  display: inline-block;
  border: 2px solid #ddd;
  /* Необязательная рамка */
}
.form-round-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Корректно заполняет круг */
}
/*СКИДКИ */
/* Контейнер для плашки скидки */
/* Светло-голубая плашка скидок с размерами белой */
.discount-container {
  margin: 20px auto 20px auto;
  width: 90%;
  /* Такая же ширина как у других элементов */
  max-width: 1200px;
}
.discount-plate.light-blue {
  background-color: #88bede !important;
  /* Светло-голубой фон */
  border-radius: 12px;
  padding: 20px;
  border-left: 6px solid red !important;
  /* Темно-синяя акцентная полоса */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
.discount-plate.light-blue::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(9, 89, 138, 0.1) 0%, transparent 100%);
  border-radius: 0 0 0 100px;
}
/* Контент плашки */
.discount-content {
  display: flex;
  align-items: center;
  gap: 25px;
  position: relative;
  z-index: 1;
}
/* Иконка */
.discount-icon {
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.3) !important;
  /* Полупрозрачный белый фон для иконки */
  border-radius: 50%;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.discount-icon svg path {
  fill: red !important;
  /* Темно-синий цвет иконки */
}
/* Текстовая часть */
.discount-text {
  flex: 1;
}
/* Заголовок - темно-синий */
.discount-title {
  color: red !important;
  /* Темно-синий цвет */
  font-size: 34px;
  font-weight: 700;
  margin: 0 0 15px 0;
  line-height: 1.2;
}
/* Теги скидок */
.discount-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}
.discount-tag {
  background-color: rgba(255, 255, 255, 0.5) !important;
  /* Полупрозрачный белый фон */
  color: red !important;
  /* Темно-синий текст */
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 18px;
  border: 2px solid rgba(9, 89, 138, 0.3) !important;
}
/* Слоган */
.discount-slogan {
  color: red !important;
  /* Темно-синий цвет */
  font-size: 28px;
  font-weight: 600;
  margin: 0;
  font-style: italic;
}
/* Анимация для привлечения внимания */
@keyframes pulse-light-blue {
  0% {
    box-shadow: 0 4px 20px rgba(9, 89, 138, 0.1);
  }
  50% {
    box-shadow: 0 4px 25px rgba(9, 89, 138, 0.2);
  }
  100% {
    box-shadow: 0 4px 20px rgba(9, 89, 138, 0.1);
  }
}
.discount-plate.light-blue {
  animation: pulse-light-blue 3s infinite;
}
/* Адаптивность */
@media (max-width: 768px) {
  .discount-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .discount-title {
    font-size: 28px;
  }
  .discount-tag {
    font-size: 16px;
    padding: 6px 12px;
  }
  .discount-slogan {
    font-size: 22px;
  }
  .discount-plate.light-blue {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .discount-container {
    width: 90%;
    /* На мобильных шире */
    margin: 40px auto 20px auto;
  }
}
@media (max-width: 480px) {
  .discount-tags {
    justify-content: center;
  }
  .discount-title {
    font-size: 24px;
  }
  .discount-slogan {
    font-size: 20px;
  }
}
/* СХЕМА ДОКУМЕНТЫ*/
/* Плашка "Для заключения договора" - ИСПРАВЛЕННАЯ ВЕРСИЯ */
.contract-container {
  width: 100%;
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.contract-plate {
  background-color: #88BEDE;
  border: 2px solid #a0c6df;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.contract-title {
  color: #09598a;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 2px dashed #09598a;
  /* ПУНКТИР*/
}
/* Контейнер шагов - ВЫРАВНИВАЕМ ПО ВЫСОТЕ */
.contract-steps {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  /* Важно! Растягиваем на всю высоту */
  position: relative;
}
/* Отдельный шаг - ФИКСИРОВАННАЯ ВЫСОТА */
.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 15px;
  position: relative;
  min-height: 400px;
  /* Фиксированная минимальная высота для всех */
  height: auto;
}
/* Контейнер для равномерного распределения контента */
.step-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  width: 100%;
  justify-content: space-between;
  /* Равномерно распределяем элементы */
}
/* Номер шага */
.step-number {
  width: 70px;
  height: 70px;
  background-color: #09598a;
  color: white;
  font-size: 36px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(9, 89, 138, 0.3);
  flex-shrink: 0;
}
/* Надпись под цифрой */
.step-label {
  color: #09598a;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
/* Контейнер для иконки - фиксированная высота */
.step-icon-container {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-icon {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
/* Текст шага - занимает оставшееся пространство */
.step-text {
  color: #222222;
  font-size: 18px;
  line-height: 1.6;
  width: 100%;
  flex-grow: 1;
  /* Занимает доступное пространство */
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Центрируем текст по вертикали */
}
.step-text p {
  margin: 8px 0;
  font-weight: 500;
  min-height: 24px;
  /* Минимальная высота строки */
}
/* Особые стили для email */
.step-text .email {
  color: #09598a;
  font-weight: 700;
  font-size: 20px;
  margin-top: 10px;
  word-break: break-all;
}
/* Стрелки между шагами - ВЫРАВНИВАЕМ ПО ЦЕНТРУ ВЕРТИКАЛЬНО */
.step-arrow {
  font-size: 60px;
  color: #09598a;
  margin: 0 10px;
  display: flex;
  align-items: center;
  /* Центрируем стрелки вертикально */
  justify-content: center;
  height: 100%;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}
.step-arrow:hover {
  opacity: 1;
}
/* Делаем все шаги одинаковой высоты */
.contract-steps .step {
  display: flex;
  flex-direction: column;
}
/* Адаптивность */
@media (max-width: 1024px) {
  .contract-plate {
    padding: 30px;
  }
  .step {
    min-height: 380px;
    padding: 15px 10px;
  }
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 32px;
  }
  .step-label {
    font-size: 20px;
  }
  .step-icon-container {
    width: 100px;
    height: 100px;
  }
  .step-arrow {
    font-size: 50px;
  }
}
@media (max-width: 768px) {
  .contract-container {
    padding: 0 15px;
  }
  .contract-plate {
    padding: 25px 20px;
  }
  .contract-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .contract-steps {
    flex-direction: column;
    align-items: center;
  }
  .step {
    min-height: auto;
    padding: 25px 15px;
    width: 100%;
    margin-bottom: 20px;
    border-bottom: 2px dashed rgba(9, 89, 138, 0.3);
    max-width: 500px;
  }
  .step:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }
  .step-arrow {
    display: none;
  }
  .step-number {
    width: 55px;
    height: 55px;
    font-size: 28px;
  }
  .step-label {
    font-size: 19px;
    margin-bottom: 20px;
  }
  .step-icon-container {
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .contract-title {
    font-size: 24px;
  }
  .step {
    padding: 20px 10px;
  }
  .step-text {
    font-size: 16px;
  }
  .step-text .email {
    font-size: 18px;
  }
}
/* Класс для ширины 67% если понадобится */
.contract-container.container-67 {
  width: 67%;
  max-width: 900px;
}
@media (max-width: 1024px) {
  .contract-container.container-67 {
    width: 90%;
  }
}
@media (max-width: 768px) {
  .contract-container.container-67 {
    width: 95%;
  }
}
/* Стили для ссылок в шагах */
.step-text a {
  color: #09598a;
  font-weight: 700;
  text-decoration: underline;
  transition: all 0.3s ease;
  display: inline-block;
}
.step-text a:hover {
  color: #063a5c;
  text-decoration: none;
  transform: translateY(-2px);
}
/* Для email ссылки */
.step-text .email a {
  color: #09598a;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px dotted #09598a;
  padding-bottom: 2px;
}
.step-text .email a:hover {
  color: #063a5c;
  border-bottom-color: #063a5c;
}
/*ПОПРАВКИ МОБИЛЬНЫХ УСТРОЙСТВ */
@media only screen and (max-width: 480px) {
  /* Альтернативный вариант: внутренний контейнер */
  #g-bottom .g-container {
    background-image: url('../../../../images/nevwww/ajy%203.jpg') !important;
    background-size: cover;
    background-position: center;
  }
}
/* Заставляем все поля, кроме картинки, быть шириной 100% */
.cf-form-3 .cf-field:not(.cf-image-field) {
  width: 100% !important;
  clear: both;
  display: block;
  float: none;
}
/* ОТ 20 марта*/
/* Компонент "Картинка + подпись" */
.image-caption-wrapper {
  width: 100%;
  margin: 40px 0;
}
.image-caption-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}
.image-caption-item {
  flex: 1 1 calc(33.333% - 20px);
  /* 33.3% минус часть отступа */
  max-width: calc(33.333% - 20px);
  text-align: center;
  transition: transform 0.3s ease;
}
.image-caption-item:hover {
  transform: translateY(-5px);
}
.image-link {
  display: block;
  text-decoration: none;
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}
.image-link:hover {
  box-shadow: 0 8px 20px rgba(9, 89, 138, 0.2);
}
.image-link img {
  width: 100%;
  aspect-ratio: 1;
  /* квадрат */
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.image-link:hover img {
  transform: scale(1.05);
}
.caption-text {
  font-size: 18px;
  font-weight: 600;
  color: #09598a;
  /* ваш синий */
  margin: 0;
  transition: color 0.3s ease;
}
.image-caption-item:hover .caption-text {
  color: #e74c3c;
  /* красный/акцентный цвет – можете заменить на любой */
}
/* Адаптивность под ваши брейкпоинты */
@media (max-width: 1024px) {
  .image-caption-grid {
    gap: 20px;
  }
  .image-caption-item {
    flex-basis: calc(33.333% - 14px);
    max-width: calc(33.333% - 14px);
  }
  .caption-text {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .image-caption-grid {
    flex-direction: column;
    gap: 30px;
  }
  .image-caption-item {
    flex-basis: 100%;
    max-width: 100%;
  }
  .image-link {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .caption-text {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .caption-text {
    font-size: 16px;
  }
}
/* Для фотки на секцию*/
/* Секция с фоновой картинкой (без затемнения) */
.scales-section {
  width: 100%;
  background-image: url('../../../../images/ДПО/Рисунок1.jpg?69bd6526');
  /* ваш путь */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 40px 0;
  border-radius: 12px;
  /* опционально */
}
/* Контейнер для ограничения ширины и центрирования */
.scales-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
}
/* Общий заголовок */
.scales-title {
  text-align: center;
  color: white;
  font-size: 32px;
  margin-bottom: 50px;
  font-weight: 600;
}
/* Ряд из трёх колонок */
.scales-row {
  display: flex;
  align-items: stretch;
  /* чтобы плашки были одинаковой высоты */
  justify-content: space-between;
  gap: 30px;
}
/* Плашки слева и справа */
.scales-plate {
  flex: 1;
  background-color: #88BEDE;
  /* ваш светло-голубой */
  border-radius: 12px;
  padding: 30px 25px;
  /* умеренные внутренние отступы */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.scales-plate:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(9, 89, 138, 0.15);
}
/* Заголовки внутри плашек */
.scales-plate h3 {
  color: #09598a;
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 600;
}
/* Текст внутри плашек */
.scales-plate p {
  color: #222222;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 0;
}
/* Изображение весов – центрируем по вертикали */
.scales-image {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 400px;
  /* фиксированная ширина, можно менять */
}
.scales-image img {
  max-width: 100%;
  height: auto;
  display: block;
}
/* Адаптивность */
@media (max-width: 768px) {
  .scales-container {
    padding: 40px 15px;
  }
  .scales-title {
    font-size: 28px;
    margin-bottom: 35px;
  }
  .scales-row {
    flex-direction: column;
    gap: 25px;
  }
  .scales-image {
    order: 2;
    /* весы между плашками или в любом порядке */
    width: 80px;
    margin: 10px auto;
  }
  .left-plate {
    order: 1;
  }
  .right-plate {
    order: 3;
  }
  .scales-plate {
    padding: 25px 20px;
  }
  .scales-plate h3 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .scales-container {
    padding: 30px 15px;
  }
  .scales-title {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .scales-plate {
    padding: 20px 15px;
  }
  .scales-plate h3 {
    font-size: 20px;
  }
  .scales-plate p {
    font-size: 14px;
  }
  .scales-image {
    width: 70px;
  }
}
/*Для каринок док-тов */
/* Стили для двух картинок в правой колонке */
.my-two-images {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 10px;
}
.my-image-item {
  flex: 1;
  text-align: center;
}
.my-image-item img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.my-image-item img:hover {
  transform: scale(1.02);
}
/* Адаптивность */
@media (max-width: 480px) {
  .my-two-images {
    flex-direction: column;
    gap: 10px;
  }
}
/*# sourceMappingURL=custom_114.css.map */