

/* Start:/local/components/tranzit/rent.car/templates/.default/style.css?17640780278866*/
/* === ОБЩИЙ СТИЛЬ === */
{
    box-sizing: border-box;
}

.section  {
    background: #f0f8ff;
   /* padding: 0px;*/
    padding: 10px;
    display: flex;
    flex-flow: column;
    gap: 40px;
    align-items: center;
    font-family: 'HeliosExtC', Arial, sans-serif;

}

.page-wrapper {
    max-width: 1200px;
    padding: 20px;
    display: flex;
    gap: 50px;
    background-color: #f0f8ff;
}

/* === ЛЕВАЯ КОЛОНКА === */
.left-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Выравнивание содержимого по нижней части */
    min-height: 0; /* Позволяет колонке сжиматься */
}

.main-title {
    font-size:26px;
    margin-bottom: 30px;
    font-weight: bold;
    line-height: 1.2;
    margin-top: 73px;
}

.subtitle {
    font-size: 24px;
    margin-bottom: 35px;
    line-height: 1.5;
}

.benefits-list {
    list-style: none;
    padding: 0;
    flex-grow: 1; /* Занимает доступное пространство */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefit-item-rent {
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    width: 100%;
}

.icon-check {
    color: green;
    font-weight: bold;
    width: 26px;
    height: 26px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    border-radius: 50%;
    background-color: #e6f7e6;
}

.highlight-blue {
    color: #0066cc;
    font-weight: bold;
}

.btn-primary {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 16px 64px;
    font-size: 26px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 0; /* Убираем отступ сверху */
    align-self: flex-start; /* Выравнивание по левому краю */
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #0056b3;
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    outline: none;
}

/* === ПРАВАЯ КОЛОНКА === */
.right-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0; /* Позволяет колонке сжиматься */
}

.car-card {
    background-color: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between; /* Распределяем элементы по вертикали */
}

.card-title {
    font-size: 26px;
    color: #333;
    margin-bottom: 35px;
    font-weight: bold;
}

.tabs-container {
    display: inline-flex;
    gap: 0;
    margin: 0 auto 35px auto;
    border-radius: 24px;
    overflow: hidden;
    background-color: #f8f9fa;
    border: 4px solid #cbd5e1;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    flex-shrink: 0; /* Не сжимаем контейнер вкладок */
}

.tabs-container input[type="radio"] {
    display: none;
}

.tabs-container label {
    background-color: #e9ecef;
    padding: 14px 15px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: block;
    font-weight: 500;
    min-width: 110px;
    border-radius: 0;
}

.tabs-container label:first-child {
    border-top-left-radius: 22px;
    border-bottom-left-radius: 22px;
}

.tabs-container label:last-child {
    border-top-right-radius: 22px;
    border-bottom-right-radius: 22px;
}

.tabs-container label:hover {
    background-color: #d0d8e0;
    color: #111;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tabs-container input[type="radio"]:checked + label {
    background-color: #ffc107;
    color: white;
    box-shadow: none;
    transform: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

/* === КОНТЕЙНЕР ДЛЯ КНОПКИ И ИЗОБРАЖЕНИЯ === */
.car-content {
    min-height: 335px; 
    flex-direction: column;
    align-items: center;
    width: 100%;
    flex-grow: 1; /* Занимает доступное пространство */
    justify-content: flex-end; /* Кнопка внизу */
}

.car-image {
    width: 81%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    object-fit: contain;
}

.btn-secondary {
    background-color: #ffc107;
    color: white;
    border: none;
    padding: 16px 50px;
    font-size: 26px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 30px;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
    background-color: #e0a800;
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    outline: none;
}

/* === АДАПТИВ === */

@media (max-width: 3000px) {
    .btn-primary {
        margin-top: 0;
        margin-bottom: 27px;
    }
}


@media (max-width: 1300px) {
    .subtitle {
        font-size: 20px;
    }
    .benefit-item-rent{
        font-size: 18px;
    }
}


@media (max-width: 992px) {
    .page-wrapper {
        padding: 30px;
        gap: 40px;
    }

    .subtitle {
        font-size: 22px;
    }

    .benefit-item-rent {
        font-size: 18px;
        gap: 12px;
        margin-bottom: 10px;
    }

    .icon-check {
        width: 22px;
        height: 22px;
        font-size: 18px;
    }

    .btn-primary {
        padding: 18px 36px;
        font-size: 18px;
    }

    .card-title {
        font-size: 22px;
    }

    .tabs-container label {
        padding: 10px 20px;
        font-size: 16px;
    }

    .car-image {
        width: 70%;
    }

    .btn-secondary {
        padding: 18px 36px;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .page-wrapper {
        flex-direction: column;
        padding: 20px;
        gap: 30px;
    }

    .left-col {
        text-align: center;
        display: block; /* Сбрасываем flex */
    }

    .main-title,
    .subtitle {
        text-align: center;
    }

    .benefits-list {
        max-width: 400px;
        margin: 0 auto 30px;
        display: block; /* Сбрасываем flex */
    }

    .benefit-item-rent {
        font-size: 16px;
        gap: 12px;
    }

    .icon-check {
        width: 20px;
        height: 20px;
        font-size: 16px;
    }

    .btn-primary {
        display: block;
        margin: 0 auto;
        padding: 16px 32px;
        font-size: 16px;
    }

    .car-card {
        padding: 20px;
        display: block; /* Сбрасываем flex */
    }

    .card-title {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .tabs-container {
        margin: 0 auto 25px auto;
    }

    .tabs-container label {
        padding: 10px 18px;
        font-size: 16px;
        min-width: 90px;
    }

    .car-image {
        width: 80%;
        margin-top: 30px;
    }

    .btn-secondary {
        padding: 16px 32px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .page-wrapper {
        padding: 0px;
    }

    .main-title {
        font-size: 32px;
    }

    .subtitle {
        font-size: 18px;
    }

    .benefit-item-rent {
        font-size: 15px;
        gap: 8px;
    }

    .icon-check {
        width: 18px;
        height: 18px;
        font-size: 14px;
    }

    .btn-primary {
        padding: 14px 28px;
        font-size: 15px;
    }

    .card-title {
        font-size: 18px;
    }

    .tabs-container label {
        padding: 8px 14px;
        font-size: 14px;
        min-width: 80px;
    }

    .car-image {
        width: 90%;
    }

    .btn-secondary {
        padding: 14px 28px;
        font-size: 15px;
    }
}

/* === МОБИЛЬНЫЙ: КНОПКА НАД ИЗОБРАЖЕНИЕМ === */
@media (max-width: 768px) {
    .car-content {
        flex-direction: column-reverse; /* Меняем порядок: кнопка сверху */
    }
}

/* === МОБИЛЬНАЯ ВЕРСИЯ: уменьшаем отступы в левом блоке === */
@media (max-width: 768px) {
    .main-title {
        margin-bottom: 15px !important; /* было 35px */
        margin-top: auto;
        font-size: 40px;

    }

    .subtitle {
        margin-bottom: 18px !important; /* было 45px */
    }

    .benefits-list {
        margin-bottom: 25px !important;
        margin-left: 20px;
    }

    .benefit-item-rent {
        margin-bottom: 10px !important; /* было 20px */
    }

    .btn-primary {
        margin-top: 12px !important; /* было 10px, можно оставить или уменьшить */
    }
}
/* End */


/* Start:/local/components/new.site/our-partners/templates/.default/style.css?17639996653077*/
 .partners-section {
        margin: 0;
        padding: 0;
        background-color: #1A1919; /* Темный фон */
        color: #fff;
        font-family: 'HeliosExtC', Arial, sans-serif;
        display: flex;
        align-items: center;
        justify-content: center; /* Центрирование */
        padding: 60px; /* Отступы */
        box-sizing: border-box;
    }

    .partners-container {
        display: flex;
        align-items: center;
        gap: 30px;
        max-width: 1200px;
        width: 100%;
        justify-content: space-between;
    }

    .partners-title {
        color: #fff;
        margin: 0;
        font-size: 30px;
        white-space: nowrap;
        align-self: flex-start;
        margin-top: 10px;
    }

    .partners-box {
        background: #fff;
        border-radius: 16px;
        padding: 20px 30px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        box-sizing: border-box;
        width: 600px;
    }

    .partner-item {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .partner-logo {
        height: 100px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }

    @media (max-width: 1023px) and (min-width: 769px) {
        .partners-container {
            flex-direction: column;
            text-align: center;
            align-items: stretch;
            gap: 20px;
        }

        .partners-title {
            align-self: center;
            margin-top: 0;
            text-align: center;
        }

        .partners-box {
            width: 100%;
            max-width: 600px;
            margin: 0 auto;
        }
    }

    @media (max-width: 768px) {
        .partners-section {
            padding: 15px 10px;
        }

        .partners-container {
            flex-direction: column;
            text-align: center;
            gap: 20px;
        }

        .partners-title {
            font-size: 24px;
            align-self: center;
            margin-top: 0;
        }

        .partners-box {
            width: 100%;
            max-width: 500px;
            padding: 15px 20px;
            gap: 20px;
            margin: 0 auto;
            box-sizing: border-box;
        }

        .partner-logo {
            height: 70px;
            max-width: 100%;
            object-fit: contain;
        }
    }

    @media (max-width: 480px) {
        .partners-title {
            font-size: 20px;
            line-height: 1.3;
        }

        .partners-box {
            max-width: 400px;
            padding: 12px 15px;
            gap: 15px;
        }

        .partner-logo {
            height: 60px;
            max-width: 100%;
            object-fit: contain;
        }
    }

    @media (max-width: 360px) {
        .partners-title {
            font-size: 18px;
        }

        .partners-box {
            max-width: 320px;
            padding: 10px 12px;
        }

        .partner-logo {
            height: 50px;
        }
    }
/* End */


/* Start:/local/components/new.site/car-catalog/templates/.default/style.css?17640648105240*/
.car-catalog-component-wrapper {
    background-color: #f5f5f5; /* Фон на всю ширину */
    width: 100%;
}


    .new-catalog-section {
        background-color: #f5f5f5;
        padding: 60px;
        font-family: 'HeliosExtC', Arial, sans-serif;
        box-sizing: border-box;
        
    }

    .new-catalog-title {
        font-size: 2.3rem;
        font-weight: bold;
    margin: 0 auto;
    max-width: 1200px;
    text-align: left;
    padding-bottom: 30px;
    }

    .new-filter-buttons {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-bottom: 30px;
        flex-wrap: wrap;
    }

    .new-filter-btn {
        padding: 8px 20px;
        border-radius: 20px;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.2s ease;
        border: 2px solid transparent;
        background-color: #ffd700;
        font-weight: 700;
    }

    .new-filter-btn.active {
        background-color: #000;
        color: #fff;
        border-color: #000;
    }

    .new-cars-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .new-car-card {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        display: flex;
        flex-direction: column;
        opacity: 1;
        transition: opacity 0.3s ease;
    }

    .new-car-card.hidden {
        display: none;
    }

    .new-car-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        background-color: #ddd;
    }

    .new-car-info {
        padding: 10px 20px 15px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .new-car-name {
        font-size: 18px;
        font-weight: bold;
        color: #333;
        margin: 0;
    }

    .new-car-specs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6px 10px;
        font-size: 14px;
        color: #666;
        line-height: 1.4;
    }

    .new-car-spec-label {
        font-weight: bold;
        color: #333;
        text-align: left;
    }

    .new-car-spec-value {
        font-weight: normal;
    }

    .new-car-price {
        font-size: 18px;
        margin: 10px 0 15px;
    }

    .new-car-buttons {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 0 15px 15px;
    }

    .new-btn-primary {
        padding: 16px 64px;
        background-color: #FFD700;
        color: #000;
        border: none;
        border-radius: 6px;
        font-size: 17px;
        cursor: pointer;
        text-align: center;
        transition: background-color 0.2s;
        font-weight: 700;
    }

    .new-btn-primary:hover {
        background-color: #FFC107;
    }

    .new-btn-secondary {
        padding: 16px 64px;
        background-color: #fff;
        color: #000;
        border: 2px solid #FFD700;
        border-radius: 6px;
        font-size: 17px;
        cursor: pointer;
        text-align: center;
        transition: background-color 0.2s;
        font-weight: 700;
    }

    .new-btn-secondary:hover {
        background-color: #FFF9DB;
    }

    .clik {
            color: black !important;
    text-decoration: none;
    outline: none !important;
    user-select: none;
    }

    @media (max-width: 768px) {
        .new-catalog-section {
            padding: 30px 15px;
        }

        .new-catalog-title {
            font-size: 24px;
        }

        .new-filter-buttons {
            gap: 8px;
        }

        .new-filter-btn {
            padding: 6px 16px;
            font-size: 13px;
        }

        .new-cars-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .new-car-image {
            height: 180px;
        }

        .new-car-info {
            padding: 12px;
        }

        .new-car-name {
            font-size: 16px;
        }

        .new-car-specs {
            font-size: 13px;
            gap: 5px 8px;
        }

        .new-car-price {
            font-size: 18px;
        }

        .new-btn-primary,
        .new-btn-secondary {
            padding: 8px;
            font-size: 13px;
        }
    }

    @media (max-width: 480px) {
        .new-catalog-section {
            padding: 20px 10px;
        }

        .new-catalog-title {
            font-size: 20px;
        }

        .new-filter-buttons {
            gap: 6px;
        }

        .new-filter-btn {
            padding: 5px 12px;
            font-size: 12px;
        }

        .new-cars-grid {
            grid-template-columns: 1fr;
            gap: 12px;
        }

        .new-car-image {
            height: 160px;
        }

        .new-car-info {
            padding: 10px;
        }

        .new-car-name {
            font-size: 16px;
        }

        .new-car-specs {
            font-size: 12px;
            gap: 4px 6px;
        }

        .new-car-price {
            font-size: 16px;
        }

        .new-btn-primary,
        .new-btn-secondary {
            padding: 8px;
            font-size: 12px;
        }
    }
/* End */


/* Start:/local/components/new.site/preimushchestva/templates/.default/style.css?17640788445205*/
.preimushchestva-component-wrapper {
    background-color: #1A1919; /* Фон на всю ширину */
    padding: 60px;
}

.advantages-section {
  background: #1A1919;
  text-align: center;
  font-family: 'HeliosExtC', Arial, sans-serif;.advantages-title
}

.advantages-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: white;
  margin: 0 auto;
    max-width: 1200px;
    text-align: left;
    padding-bottom: 30px;
}

/* Центрируем сетку на больших экранах */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.advantage-card {
  background: white;
  padding: 30px 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08); 

  /* === ФИКСИРУЕМ РАЗМЕРЫ === */
  width: 90%; /* Фиксированная ширина */
  height: 160px; /* Фиксированная высота */
  min-height: 165px; /* Защита от сжатия */
}

.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.advantage-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
}

.advantage-text {
  font-size: 20px;
  line-height: 1.45;
}

/* === ПЛАНШЕТНАЯ ВЕРСИЯ: 2 карточки + карусель === */

@media (min-width: 577px) and (max-width: 992px) {
  .advantages-section {
    padding: 40px 10px;
  }
  .preimushchestva-component-wrapper {
    padding: 0px;
  }

  .advantages-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .advantages-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 15px;
    padding-bottom: 15px;
    flex-wrap: nowrap;
    width: 100%;
    padding: 0 5px;
    scrollbar-width: none;
  }

  .advantages-grid::-webkit-scrollbar {
    display: none;
  }

  .advantage-card {
    /* === ФИКСИРУЕМ РАЗМЕРЫ === */
    width: 300px; /* Фиксированная ширина */
    height: 250px; /* Фиксированная высота */
    min-width: 300px; /* Защита от сжатия */
    min-height: 250px; /* Защита от сжатия */
    padding: 20px 15px;
    flex-shrink: 0;
    box-sizing: border-box;
    background: white;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .advantage-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
  }

  .advantage-text {
    font-size: 1rem;
    color: #333;
    line-height: 1.4;
    font-weight: 500;
  }

  /* Полоса прогресса */
  .scroll-indicator {
    height: 6px;
    background: #333;
    border-radius: 3px;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
  }

  .scroll-indicator .progress-bar {
    height: 100%;
    background: #FFD700;
    width: 50%; /* Начальная ширина — 50% */
    border-radius: 3px;
    transition: width 0.3s ease;
  }
}

@media (max-width: 576px) {
  .advantages-section {
    padding: 40px 15px;
  }
  .preimushchestva-component-wrapper {
    padding: 0px;
  }

  .advantages-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .advantages-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 15px;
    padding-bottom: 15px;
    flex-wrap: nowrap;
    width: 100%;
    padding: 0;
    scrollbar-width: none;
  }

  .advantages-grid::-webkit-scrollbar {
    display: none;
  }

  .advantage-card {
    /* === ФИКСИРУЕМ РАЗМЕРЫ === */
    width: 200px; /* Фиксированная ширина (чуть меньше для мобилки) */
    height: 200px; /* Фиксированная высота */
    min-width: 20px; /* Защита от сжатия */
    min-height: 20px; /* Защита от сжатия */
    padding: 30px 15px;
    flex-shrink: 0;
    box-sizing: border-box;
    background: white;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .advantage-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .advantage-text {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.4;
    font-weight: 500;
  }

  /* Контейнер для динамической полосы прокрутки */
  .scroll-indicator {
    height: 6px;
    background: #333; /* Тёмный фон */
    border-radius: 3px;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
  }

  .scroll-indicator .progress-bar {
    height: 100%;
    background: #FFD700;
    width: 30%; /* Начальная ширина — 30% */
    border-radius: 3px;
    transition: width 0.3s ease; /* Плавное изменение ширины */
  }
}
/* End */


/* Start:/local/components/new.site/opisanie/templates/.default/style.css?17640788781344*/
.new-text-section {
  background: #E8E8E8;
  width: 100vw; /* Растягиваем фон на всю ширину окна */
  margin-left: 50%; /* Смещаем влево на 50% */
  transform: translateX(-50%); /* Центрируем обратно */
  box-sizing: border-box;
}

.new-text-content {
  max-width: 1200px; /* Ограничение ширины текста */
  margin: 0 auto; /* Центрирование */
  padding: 60px; /* Отступы внутри */
  font-family: 'HeliosExtC', Arial, sans-serif;
  line-height: 1.6;
}

.new-text-content p {
  margin: auto;
  font-size: 20px;
}

.new-text-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 2em 0 1em;
  color: #000;
}

.new-text-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 1.5em 0 0.8em;
  color: #000;
}

.new-text-content ul,
.new-text-content ol {
  margin: 1em 0 1.2em 1.5em;
  padding-left: 0;
}

.new-text-content ul li,
.new-text-content ol li {
  margin-bottom: 0.5em;
  font-size: 20px;
}

/* Адаптивность */
@media (max-width: 768px) {
  .new-text-content {
    padding: 30px 20px;
  }

  .new-text-content h2 {
    font-size: 1.6rem;
    margin: 0.5em 0 0.5em;
  }

  .new-text-content h3 {
    font-size: 1.2rem;
  }

  .new-text-content p,
  .new-text-content li {
    font-size: 0.95rem;
  }
}
/* End */


/* Start:/local/components/new.site/trebovaniya/templates/.default/style.css?17640789034712*/
.component-wrapper {
    background-color: #1A1919; /* Фон на всю ширину */
    width: 100%;
}

.requirements-section {
  background: #1A1919;
  padding: 60px;
  text-align: center;
  font-family: 'HeliosExtC', Arial, sans-serif;
}

.requirements-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: white;
  max-width: 1200px;
  margin-top: auto;
  margin: 0 auto;
  text-align: left;
  padding-bottom: 30px;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.requirement-card {
  background: white;
  padding: 25px 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}

.requirement-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.requirement-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
  fill: #FFD700; /* если SVG — цвет иконки */
}

/* Если используешь img, а не SVG — можно оставить как есть */

.requirement-heading {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.requirement-text {
  color: #666;
  line-height: 1.45;
  margin: 0;
}

/* Адаптивность */

/* === ПЛАНШЕТНАЯ ВЕРСИЯ: 2 карточки + карусель === */
@media (min-width: 577px) and (max-width: 992px) {
  .requirements-section {
    padding: 40px 10px;
  }

  .requirements-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .requirements-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 15px;
    padding-bottom: 15px;
    flex-wrap: nowrap;
    width: 100%;
    padding: 0 5px;
    scrollbar-width: none;
  }

  .requirements-grid::-webkit-scrollbar {
    display: none;
  }

  .requirement-card {
    min-width: calc((100vw - 30px - 15px) / 2);
    max-width: calc((100vw - 30px - 15px) / 2);
    padding: 22px 18px;
    flex-shrink: 0;
    box-sizing: border-box;
    background: white;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  }

  .requirement-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 10px;
  }

  .requirement-heading {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
  }

  .requirement-text {
    color: #666;
    line-height: 1.4;
    margin: 0;
  }

  /* Полоса прогресса */
  .scroll-indicator {
    height: 6px;
    background: #333;
    border-radius: 3px;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
  }

  .scroll-indicator .progress-bar {
    height: 100%;
    background: #FFD700;
    width: 30%; /* Начальная ширина — 30% */
    border-radius: 3px;
    transition: width 0.3s ease;
  }
}

/* === МОБИЛЬНАЯ ВЕРСИЯ: 1 карточка + карусель === */
@media (max-width: 576px) {
  .requirements-section {
    padding: 40px 15px;
  }

  .requirements-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .requirements-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 15px;
    padding-bottom: 15px;
    flex-wrap: nowrap;
    width: 100%;
    padding: 0;
    scrollbar-width: none;
  }

  .requirements-grid::-webkit-scrollbar {
    display: none;
  }

  .requirement-card {
    min-width: calc(100vw - 30px);
    max-width: calc(100vw - 30px);
    padding: 20px 15px;
    flex-shrink: 0;
    box-sizing: border-box;
    background: white;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  }

  .requirement-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 8px;
  }

  .requirement-heading {
    font-size: 1.rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
  }

  .requirement-text {
    color: #666;
    line-height: 1.4;
    margin: 0;
  }

  /* Полоса прогресса */
  .scroll-indicator {
    height: 6px;
    background: #333;
    border-radius: 3px;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
  }

  .scroll-indicator .progress-bar {
    height: 100%;
    background: #FFD700;
    width: 30%; /* Начальная ширина — 30% */
    border-radius: 3px;
    transition: width 0.3s ease;
  }
}
/* End */


/* Start:/local/components/new.site/calculator/templates/.default/style.css?17640789266887*/
/* === ИЗОЛИРОВАННЫЕ СТИЛИ — только внутри .calculator-wrapper === */

.calculator-wrapper .calculator-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    font-family: 'HeliosExtC', Arial, sans-serif;
}

.calculator-wrapper .calculator-header {
    font-weight: 600;
    margin-bottom: 2rem;
    margin-top: auto;
    font-size: 2.3rem;
    font-weight: 700;
}

.calculator-wrapper .main-content-wrapper {
    display: contents;
}

.calculator-wrapper .calculator-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.calculator-wrapper .calculator-left {
    flex: 1;
}

.calculator-wrapper .calculator-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.calculator-wrapper .section-title {
    margin-bottom: 0.5rem;
}

.calculator-wrapper .button-group {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.calculator-wrapper .btn {
    background: #FFD700;
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s ease;
    min-width: 50px;
    text-align: center;
}

.calculator-wrapper .btn:hover {
    background: #FFD54F;
}

.calculator-wrapper .btn.selected {
    background: #222;
    color: white;
}

.calculator-wrapper .result-box {
    background: #eee;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    margin-top: 0;
    width: 300px;
    flex-shrink: 0;
}

.calculator-wrapper .result-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #555;
}

.calculator-wrapper .result-amount {
    font-size: 2rem;
    font-weight: 700;
    margin: 0.5rem 0;
    color: #000;
    display: inline-block;
}

.calculator-wrapper .result-currency {
    font-size: 1rem;
    color: #555;
    display: inline-block;
    margin-left: 0.5rem;
}

.calculator-cta-button {
    background: #FFD700;
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s ease;
    max-width: 300px;
    margin: 1rem auto;
    text-align: center;
    display: block;
    text-decoration: none;
    font-family: 'HeliosExtC', Arial, sans-serif;
    padding: 16px 64px;
}

.calculator-cta-button:hover {
    background: #FFD54F;
}

.calculator-wrapper .benefits-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #eee;
    border-radius: 12px;
    align-items: center;
    margin-top: 1.7rem;
}

.calculator-benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    flex: 1 1 auto;
    min-width: 0;
    font-size: 0.9rem;
    box-sizing: border-box;
}

.calculator-wrapper .benefit-icon {
    width: 45px;
    height: 45px;
    background: #222;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.calculator-wrapper .benefit-icon img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.calculator-wrapper .benefit-text {
    font-size: 0.85rem;
    line-height: 1.3;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* === АДАПТИВ === */

@media (min-width: 1024px) and (max-width: 1250px) {
    .calculator-wrapper .benefits-row {
        flex-wrap: wrap;
        gap: 0.75rem;
        padding: 0.75rem;
    }

    .calculator-benefit-item {
        flex: 1 1 calc(50% - 0.375rem);
        min-width: auto;
        max-width: 50%;
        padding: 0.75rem 1rem;
        box-sizing: border-box;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .calculator-wrapper .main-content-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }

    .calculator-wrapper .calculator-content {
        display: contents;
    }

    .calculator-wrapper .calculator-left {
        order: 1;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .calculator-wrapper .button-group {
        justify-content: center;
    }

    .calculator-wrapper .btn {
        min-width: 45px;
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .calculator-wrapper .benefits-row {
        order: 2;
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-top: 0;
        padding: 0.75rem;
        background: #eee;
        border-radius: 12px;
        width: 100%;
        max-width: 600px;
    }

    .calculator-benefit-item {
        flex: 1 1 calc(50% - 0.375rem);
        min-width: 0;
        max-width: 50%;
        padding: 0.75rem 1rem;
        box-sizing: border-box;
    }

    .calculator-wrapper .benefit-icon {
        width: 30px;
        height: 30px;
    }

    .calculator-wrapper .result-box {
        order: 3;
        width: 100%;
        max-width: 400px;
        margin-top: 0;
        padding: 1rem;
    }

    .calculator-wrapper .result-amount {
        font-size: 1.75rem;
    }

    .calculator-wrapper .cta-button {
        max-width: 100%;
        padding: 0.6rem 1.25rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 767px) {
    .calculator-wrapper .calculator-container {
        padding: 1rem;
    }

    .calculator-wrapper .calculator-header {
        font-size: 1.5rem;
    }

    .calculator-wrapper .main-content-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        text-align: center;
    }

    .calculator-wrapper .calculator-content {
        display: contents;
    }

    .calculator-wrapper .calculator-left {
        order: 1;
        width: 100%;
    }

    .calculator-wrapper .btn {
        padding: 0.5rem 1rem;
        min-width: 40px;
        font-size: 0.9rem;
    }

    .calculator-wrapper .benefits-row {
        order: 2;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .calculator-benefit-item {
        width: 100%;
        padding: 1px;
    }

    .calculator-wrapper .benefit-icon {
        width: 30px;
        height: 30px;
    }

    .calculator-wrapper .benefit-icon img {
        width: 30px;
        height: 30px;
    }

    .calculator-wrapper .result-box {
        order: 3;
        width: 100%;
        max-width: 400px;
        padding: 1rem;
    }

    .calculator-wrapper .result-amount {
        font-size: 1.75rem;
    }

    .calculator-wrapper .cta-button {
        max-width: 100%;
        padding: 0.6rem 1.25rem;
        font-size: 0.95rem;
    }
}
/* End */


/* Start:/local/components/new.site/reviews/templates/.default/style.css?17640789494119*/
.reviews-component-wrapper {
    background-color: #E8E8E8; /* Фон на всю ширину */
}

        .reviews-container {
            position: relative; /* Для позиционирования стрелок */
            font-family: 'HeliosExtC', Arial, sans-serif;
            padding: 60px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .reviews-header {
            font-size: 2rem;
            font-weight: 700;
            margin: 0 auto;
    max-width: 1200px;
    text-align: left;
    padding-bottom: 30px;
        }

        @media (max-width: 767px) {
            .reviews-header {
                margin-right: 0;
                padding-right: 60px; /* Переносим отступ на padding */
                text-align: left; /* Выравниваем заголовок по левому краю */
                margin-bottom: 30px;
            }
        }

        .reviews-slider-wrapper {
            position: relative;
            overflow: hidden;
            padding: 1rem 0;
        }

        .reviews-slider {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            transition: transform 0.5s ease;
            width: 100%;
        }

        .review-card {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            min-width: 280px;
            display: flex;
            flex-direction: column;
            box-sizing: border-box;
            min-height: 300px;
            justify-content: space-between;
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
        }

        .avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .review-name {
            font-weight: 600;
            font-size: 1rem;
        }

        .review-text {
            line-height: 1.6;
            font-size: 0.95rem;
            color: #555;
            flex-grow: 1;
        }

        /* Кнопки навигации — НАСЛАИВАЮТСЯ НА ЗАГОЛОВОК */
        .reviews-nav {
            position: absolute;
            top: 0;
            right: 0;
            display: flex;
            gap: 0.5rem;
            z-index: 10;
            margin-top: 30px;
        }

        .nav-button {
            background: white;
            border: 1px solid #ddd;
            border-radius: 8px;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.2s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .nav-button:hover {
            background: #f0f0f0;
        }

        /* Адаптивность */

        @media (min-width: 768px) {
            .review-card {
                flex: 0 0 calc((100% - 3rem) / 3); /* 3 отзыва */
            }
            .reviews-nav {
                top: 0;
                right: 0;
            }
        }

        @media (max-width: 767px) and (min-width: 480px) {
            .review-card {
                flex: 0 0 calc((100% - 1.5rem) / 2); /* 2 отзыва */
            }
            .reviews-header {
                font-size: 1.7rem;
            }
            .reviews-nav {
                top: 0;
                right: 0.5rem;
            }
        }

        @media (max-width: 479px) {
            .review-card {
                flex: 0 0 100%; /* 1 отзыв */
            }
            .reviews-header {
                font-size: 1.5rem;
            }
            .reviews-nav {
                top: 0;
                right: 0.5rem;
            }
        }
/* End */


/* Start:/local/components/new.site/faq/templates/.default/style.css?17640044531916*/
.faq-section {
  padding: 60px;
  text-align: center;
  background: white;
  font-family: 'HeliosExtC', Arial, sans-serif;
}

.faq-title {
  font-size: 2.3rem;
  font-weight: 700;
  margin: 0 auto;
    max-width: 1200px;
    text-align: left;
    padding-bottom: 30px;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: box-shadow 0.2s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.faq-question {
  width: 100%;
  background: #8A8B8A14;
  padding: 16px 20px;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border: none;
  outline: none;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: #eaeaea;
}

.faq-question.active {
  background: #FFC803; /* Жёлтый при активации */
  color: #000;
}

.faq-arrow {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.faq-question.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  background: #fff;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 1.1rem;
  color: #666;
  line-height: 1.5;
}

.faq-answer.show {
  padding: 16px 20px;
  max-height: 200px; /* Достаточно для большинства ответов */
}

/* Адаптивность */

@media (max-width: 768px) {
  .faq-section {
    padding: 40px 20px;
  }
  .faq-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .faq-container {
    max-width: 100%;
  }
  .faq-question {
    padding: 14px 16px;
    font-size: 0.95rem;
  }
  .faq-answer {
    padding: 0 16px;
  }
  .faq-answer.show {
    padding: 14px 16px;
  }
}

/* End */


/* Start:/local/components/new.site/form/templates/.default/style.css?17639998986420*/
.b24-form-content form {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: flex-end !important;
    gap: 10px !important;
    justify-content: space-between !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.b24-form-content form > div:first-child {
    display: flex !important;
    gap: 15px !important;
    flex: 1 !important;
    margin-bottom: 0 !important;
}

.b24-form-content form > div:first-child > div {
    flex: 1 !important;
    margin-bottom: 0 !important;
}

.b24-form-btn-container {
    flex-shrink: 0 !important;
    margin-bottom: 0 !important;
    width: auto !important;
}

.b24-form-btn-block {
    margin-bottom: 0 !important;
}

/* Адаптивность */
@media (max-width: 768px) {
    .b24-form-content form {
        flex-direction: column !important;
    }

    .b24-form-content form > div:first-child {
        flex-direction: column !important;
    }

    .b24-form-btn-container {
        width: 100% !important;
    }
}

/* Мобильная версия */
@media (max-width: 768px) {
    .b24-form-content form > div:nth-child(1) {
        flex-direction: column;
    }
}

.b24-form-wrapper {
    min-height: auto !important;
    max-width: none !important;
    background-color: #1A1919 !important; /* Цвет фона изменён */
}

.new-crm-form-wrapper, .b24-form {
    background-color: #1A1919 !important; /* Цвет фона изменён */
    padding: 60px !important;
    text-align: center !important;
    font-family: 'HeliosExtC', Arial, sans-serif;
    color: #fff !important;
}

.b24-form {
    padding: 0px !important;
}

.new-crm-form-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
    text-align: left; /* Заголовок по левому краю */
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
}

.new-crm-form-row {
    display: flex !important;
    gap: 10px !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    max-width: 900px !important;
    margin: 0 auto !important;
    flex-wrap: nowrap !important;
}

.new-crm-field, .b24-form-control-container {
    position: relative !important;
    flex: 1 1 0 !important;
    min-width: 150px !important;
    display: flex !important;
    flex-direction: column !important;
}

.new-crm-label {
    display: block;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
    text-align: left;
}

.new-crm-input, .b24-form-control {
    padding: 12px 15px !important;
    border: 1px solid #555 !important;
    border-radius: 6px !important;
    background-color: #fff !important;
    color: #000 !important;
    font-family: 'HeliosExtC', Arial, sans-serif !important; /* Шрифт добавлен */
    font-size: 14px !important; /* Установлен размер шрифта */
    transition: border-color 0.2s !important;
    height: 44px !important; /* Фиксированная высота */
    box-sizing: border-box !important;
}

.b24-form-control-label {
    text-align: left !important;
}

.new-crm-input:focus {
    outline: none;
    border-color: #FFD700;
}

.new-crm-button, .b24-form-btn {
    height: 44px !important; /* Та же высота, что и у полей */
    padding: 0 20px !important; /* Убираем вертикальный padding */
    background-color: #FFD700 !important;
    color: #000 !important;
    border: none !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    transition: background-color 0.2s !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 180px !important;
    min-height: auto !important;
    font-family: 'HeliosExtC', Arial, sans-serif !important; /* Шрифт добавлен */
    font-weight: 600 !important;
    font-size: 14px !important;
    line-height: 22px !important;
}

.new-crm-button:hover {
    background-color: #FFC107;
}

.new-crm-policy {
    font-size: 8px;
    color: #aaa;
    margin-top: 5px;
    text-align: end;
    line-height: 1.4;
    max-width: 1000px;
    margin: 5px auto 0;
}

.b24-form-wrapper.b24-form-shadow {
box-shadow: none !important;
}

/* Адаптивность для планшета */
@media (max-width: 1024px) and (min-width: 769px) {
    .new-crm-form-wrapper {
        padding: 30px 15px;
    }

    .new-crm-form-title {
        font-size: 20px;
        text-align: center;
        margin-left: 0;
        margin-right: 0;
    }

    .new-crm-form-row {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .new-crm-field {
        min-width: auto;
    }

    .new-crm-input, .b24-form-control {
        padding: 10px 12px !important;
        font-size: 13px !important;
        height: 42px !important; /* Адаптивная высота */
    }

    .new-crm-button, .b24-form-btn {
        height: 42px !important; /* Та же высота */
        padding: 0 15px !important;
        font-size: 14px !important;
        min-width: auto !important;
        width: 100%;
        align-self: stretch;
    }

    .new-crm-policy {
        text-align: left;
        margin-top: 8px;
    }
}

/* Адаптивность для телефона */
@media (max-width: 768px) {
    .new-crm-form-wrapper {
        padding: 20px 10px;
    }

    .new-crm-form-title {
        font-size: 18px;
        text-align: center;
        margin-left: 0;
        margin-right: 0;
    }

    .new-crm-form-row {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .new-crm-field {
        min-width: auto;
    }

    .new-crm-input, .b24-form-control {
        padding: 8px 10px !important;
        font-size: 12px !important;
        height: 40px !important; /* Адаптивная высота */
    }

    .new-crm-button, .b24-form-btn {
        height: 40px !important; /* Та же высота */
        padding: 0 12px !important;
        font-size: 12px !important;
        min-width: auto !important;
        width: 100%;
        align-self: stretch;
    }

    .new-crm-policy {
        font-size: 11px;
        text-align: left;
        margin-top: 8px;
    }
}
/* End */


/* Start:/local/components/new.site/map/templates/.default/style.css?17640005823010*/
    #map {
        width: 100%;
        height: 500px; /* Базовая высота */
        position: relative;
    }
    .info-panel {
        position: absolute;
        top: 55%; /* Базовая позиция для больших экранов */
        left: 35%; /* Базовая позиция для больших экранов */
        transform: translate(-50%, -50%); /* Центрируем по вертикали и горизонтали относительно своей позиции */
        background: #1A1919;
        color: white;
        padding: 20px 50px 20px 40px; /* Изменили padding как в вашем коде */
        border-radius: 8px;
        max-width: 280px;
        font-family: 'HeliosExtC', Arial, sans-serif;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        z-index: 1000;
        margin-top: -60px; /* При необходимости можно убрать или изменить */
        font-size: 16px;
    }

    /* Адаптив для info-panel */
    @media (max-width: 1400px) {
        .info-panel {
            left: 30%;
            padding: 20px;
        }
    }
    @media (max-width: 998px) {
        .info-panel {
            left: 25%;
            padding: 20px;
        }
    }

   @media (max-width: 768px) {
    /* Увеличиваем высоту карты на мобильных */
    #map {
        height: 600px; /* Можно изменить это значение под ваши предпочтения */
    }

    .info-panel {
        /* Позиционируем ВЕРХНИЙ край панели под меткой */
        top: calc(50% + 100px); 
        left: 50%; 
        transform: translateX(-50%); 
        max-width: 75vw; 
        width: 90vw; 
        padding: 15px; 
        border-radius: 12px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.4);
    }
}

    .info-panel h3 {
        margin-top: 0;
        margin-bottom: 10px;
    }
    .info-panel p {
        margin: 8px 0;
        line-height: 1.4;
    }
    .phone {
        font-size: 24px;
        font-weight: bold;
        margin: 15px 0;
        color: #fff;
        text-decoration: underline; /* Сделаем как ссылку */
        cursor: pointer; /* Покажем, что элемент кликабелен */
    }
    .phone:hover {
        opacity: 0.8; /* Легкий эффект при наведении */
    }
    .social-icons {
        display: flex;
        gap: 10px;
        margin-top: 15px;
    }
    .social-icons a {
        display: inline-block;
        width: 32px;
        height: 32px;
        background-size: contain;
        background-repeat: no-repeat;
        text-decoration: none;
    }
    .yt { background-image: url('/upload/foto-mashin/ikonki/Icons.svg'); } /* Убрали лишние пробелы */
    .tg { background-image: url('/upload/foto-mashin/ikonki/telega.svg'); }
    .vk { background-image: url('/upload/foto-mashin/ikonki/vk.svg'); }
/* End */


/* Start:/local/templates/new-taxi/components/bitrix/breadcrumb/universal/style.min.css?1698575116620*/
.bx-breadcrumb{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.bx-breadcrumb-item{height:22px;white-space:nowrap}.bx-breadcrumb-item-angle{margin:0 10px;color:#b5bdc2;vertical-align:top;font-size:12px}.bx-breadcrumb-item-link{border-bottom:0;vertical-align:top;line-height:21px}.bx-breadcrumb-item-text{vertical-align:top;white-space:normal;font:400 13px/21px "Open Sans",Arial,"Helvetica Neue",Helvetica,sans-serif;transition:250ms linear all}
/* End */
/* /local/components/tranzit/rent.car/templates/.default/style.css?17640780278866 */
/* /local/components/new.site/our-partners/templates/.default/style.css?17639996653077 */
/* /local/components/new.site/car-catalog/templates/.default/style.css?17640648105240 */
/* /local/components/new.site/preimushchestva/templates/.default/style.css?17640788445205 */
/* /local/components/new.site/opisanie/templates/.default/style.css?17640788781344 */
/* /local/components/new.site/trebovaniya/templates/.default/style.css?17640789034712 */
/* /local/components/new.site/calculator/templates/.default/style.css?17640789266887 */
/* /local/components/new.site/reviews/templates/.default/style.css?17640789494119 */
/* /local/components/new.site/faq/templates/.default/style.css?17640044531916 */
/* /local/components/new.site/form/templates/.default/style.css?17639998986420 */
/* /local/components/new.site/map/templates/.default/style.css?17640005823010 */
/* /local/templates/new-taxi/components/bitrix/breadcrumb/universal/style.min.css?1698575116620 */
