:root {--bs-heading-color: #013d87;}
body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: #f8fafc!important;
}
a {
    color: rgb(17 41 97);
	text-decoration: none;
}
.navbar {--bs-navbar-toggler-icon-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")!important}
/* Navbar Styles */
.navbar-custom {
    background: #023D87;
    box-shadow: 0 2px 15px rgba(4, 130, 197, 0.3);
}
.navbar-brand img {
    height: 45px;
    filter: brightness(0) invert(1);
}
.city-selector {
  	background: no-repeat;
	border: 0;
	color: white;
	cursor: pointer;
}
.city-selector:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}
.phone-display {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.phone-display:hover {
    color: #e0f2fe;
    transform: scale(1.05);
}
/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0c4a6e 0%, #0482C5 50%, #38bdf8 100%);
    min-height: 600px;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.3;
}
.search-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transform: translateY(0);
    transition: transform 0.3s ease;
}
.search-card:hover {
    transform: translateY(-5px);
}
.form-control-custom {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.form-control-custom:focus {
    border-color: #0482C5;
    box-shadow: 0 0 0 4px rgba(4, 130, 197, 0.1);
}
.btn-primary-custom {
    background: linear-gradient(135deg, #0482C5 0%, #0284c7 100%);
    border: none;
    border-radius: 12px;
    padding: 15px 40px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(4, 130, 197, 0.4);
}
.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(4, 130, 197, 0.5);
    background: linear-gradient(135deg, #0369a1 0%, #0482C5 100%);
}
/* Features Section */
.feature-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    height: 100%;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(4, 130, 197, 0.15);
    border-color: #0482C5;
}
.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #0482C5;
    font-size: 1.8rem;
}
/* Popular Routes */
.route-card {
    background: white;
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-wrap: nowrap;
}
.route-card-img {
    width: 150px;
    border-radius: 12px;
}
.route-card:hover {
    border-color: #0482C5;
    box-shadow: 0 10px 30px rgba(4, 130, 197, 0.1);
    transform: translateX(10px);
}
.price-tag {
    background: #e5006d;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
}
/* Footer */
.footer {
    background: #023D87;
    color: white;
    padding: 60px 0 30px;
}
.footer-link {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-link:hover {
    color: #0482C5;
}
/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.animate-fade-in {
    animation: fadeInUp 0.8s ease-out;
}
/* Mobile Optimizations */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 40px 0;
    } 
    .search-card {
        margin: 0 15px;
    }  
    .phone-display {
        font-size: 0.9rem;
    }
    .navbar-brand img {
        height: 25px;
    }
}
/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #0482C5;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #0369a1;
}
/* Общие стили для секции */
.bus-search-hero {
    background-color: #1E3A8A; /* Глубокий синий цвет как на фоне */
    background-image: radial-gradient(circle at top right, #2563eb 0%, transparent 40%),
        radial-gradient(circle at bottom left, #1e40af 0%, transparent 40%);
    padding: 60px 20px 40px;
    color: white;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    position: relative;
    overflow: hidden;
}
/* Добавляем декоративные "звезды/паттерны" на фон (упрощенно через псевдоэлементы) */
.bus-search-hero::before {
    content: "✈";
    position: absolute;
    top: 20px;
    right: 50px;
    font-size: 60px;
    opacity: 0.05;
    transform: rotate(45deg);
}
.container {
    max-width: 1100px;
    margin: 0 auto;
}
.hero-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    margin-top: 0;
    text-align: center;
    color: #fff;
}
/* Обертка формы и кнопки */
.search-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
/* Форма (строка инпутов) */
.search-form {
    display: flex;
    background: #ffffff;
    border-radius: 12px;
    padding: 4px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    position: relative;
    max-width: 100%;
}
/* Группы инпутов */
.search-input-group {
    padding: 12px 20px;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 160px;
    position: relative;
}
/* Разделители между полями */
.search-input-group.border-right {
    border-right: 1px solid #e2e8f0;
}
/* Лейблы (мелкий серый текст) */
.search-input-group label {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 4px;
    font-weight: 500;
}
/* Поля ввода */
.search-input-group input {
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    width: 100%;
    background: transparent;
    cursor: pointer;
    padding: 0;
}
.search-input-group input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}
/* Кнопка смены направлений (стрелки) */
.swap-icon-btn {
    position: absolute;
    top: 50%;
    left: 230px; /* Примерное позиционирование между первым и вторым блоком */
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #64748b;
    z-index: 2;
    transition: 0.2s;
}
.swap-icon-btn:hover {
    background: #f8fafc;
    color: #1e40af;
}
/* Быстрые даты */
.date-value-wrapper {
    display: flex;
    align-items: center;
    /* gap: 10px; */
    flex-direction: column;
}
.quick-dates {
    display: flex;
    gap: 8px;
    font-size: 12px;
}
.quick-dates a {
    color: #2563eb;
    text-decoration: none;
    border-bottom: 1px dashed #2563eb;
}
/* Специальные стили для даты, чтобы скрыть стандартные элементы браузера если нужно */
input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0.5;
    cursor: pointer;
}
/* Главная кнопка "Найти билеты" */
.search-action {
    display: flex;
    justify-content: center;
}
.find-btn {
    background-color: #e5006d; /* Оранжевый цвет кнопки */
    color: white;
    border: none;
    padding: 16px 60px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.find-btn:hover {
    background-color: #d97706;
}
/* Адаптивность для мобильных устройств */
@media (max-width: 900px) {
    .search-form {
        flex-direction: column;
        width: 100%;
    }
    .hero-title {
        font-size: 22px;
        font-weight: 500;
	}
    .bus-search-hero {
        padding: 20px;
    }
    .search-input-group {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        padding: 5px 10px;
    }
    .swap-icon-btn {
        /* На мобильном кнопку смены лучше спрятать или переместить */
        display: none; 
    }
    .find-btn {
        width: 100%;
    }
}
/* Основной контейнер */
.faq-categories {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-align: center;
}
/* Заголовок */
.faq-title {
    font-size: 28px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 40px;
    margin-top: 0;
}
/* Сетка */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
}
/* Элемент сетки */
.faq-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
    text-decoration: none;
    color: inherit;
    border-right: 1px solid #e5e7eb;
    transition: background-color 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}
/* Убираем правую границу у последнего элемента */
.faq-item:nth-child(6n) {
    border-right: none;
}
/* Эффект при наведении */
.faq-item:hover {
    background-color: #f9fafb;
}
.faq-item:hover .faq-icon {
    transform: scale(1.1);
}
/* Иконка */
.faq-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    color: #e5016d; 
    transition: transform 0.2s ease;
}
.faq-icon svg {
    width: 100%;
    height: 100%;
}
/* Текст */
.faq-text {
    font-size: 15px;
    font-weight: 500;
    color: #374151;
    line-height: 1.4;
}
/* Адаптивность для планшетов */
@media (max-width: 1024px) {
    .faq-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .faq-item {
        border-bottom: 1px solid #e5e7eb;
    }
    .faq-item:nth-child(6n) {
        border-right: 1px solid #e5e7eb;
    }
    .faq-item:nth-child(3n) {
        border-right: none;
    }
    /* Убираем нижнюю границу у последних 3 элементов */
    .faq-item:nth-child(n+4) {
        border-bottom: none;
    }
}
/* Адаптивность для мобильных */
@media (max-width: 640px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    } 
    .faq-item:nth-child(3n) {
        border-right: 1px solid #e5e7eb;
    }
    .faq-item:nth-child(2n) {
        border-right: none;
    }
    .faq-item:nth-child(n+4) {
        border-bottom: 1px solid #e5e7eb;
    }
    .faq-item:nth-child(n+5) {
        border-bottom: none;
    }
    .faq-title {
        font-size: 24px;
    }
}
.services-section {
    padding: 60px 0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #ffffff;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.section-title {
    font-size: 28px;
    font-weight: 400; /* Тонкий шрифт как на макете */
    color: #333;
    margin-bottom: 40px;
}
.services-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}
/* Карточка услуги */
.service-card {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    /* Опционально: тонкая граница справа для визуального разделения как на макете */
    border-right: 1px solid #eee;
    padding-right: 20px;
}
.service-card:last-child {
    border-right: none;
    padding-right: 0;
}
/* Верхняя часть: Иконка + Список */
.card-header {
    display: flex;
    align-items: flex-start; /* Выравнивание по верху */
    gap: 20px;
    margin-bottom: 25px;
}
/* Блок с иконкой */
.icon-box {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0; /* Чтобы иконка не сжималась */
    color: #1E3A8A; /* Темно-синий цвет иконок */
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-icon {
    width: 100%;
    height: 100%;
}
/* Круглая оранжевая стрелка */
.arrow-btn {
    position: absolute;
    bottom: -5px;
    right: -10px;
    width: 36px;
    height: 36px;
    background-color: #F59E0B; /* Оранжевый цвет */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}
/* Список деталей (маршруты, аэропорты) */
.service-links {
    list-style: none;
    padding: 0;
    margin: 5px 0 0 0;
}
.service-links li {
    margin-bottom: 8px;
}
.service-links a {
    text-decoration: none;
    color: #1E3A8A; /* Синий цвет ссылок */
    font-size: 16px;
    line-height: 1.4;
    transition: color 0.2s;
}
.service-links a:hover {
    color: #F59E0B;
}
/* Нижняя часть: Описание */
.card-body {
    flex-grow: 1; /* Чтобы кнопка была внизу, если карточки разной высоты */
}
.card-title {
    font-size: 22px;
    font-weight: 400;
    color: #333;
    margin: 0 0 10px 0;
}
.card-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
    margin: 0 0 25px 0;
}
/* Ссылка-кнопка внизу */
.card-action {
    display: inline-block;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 4px;
    border-bottom: 2px solid #013d87; /* Оранжевое подчеркивание */
    transition: all 0.2s;
}
.card-action:hover {
    color: #F59E0B;
}
/* Адаптив для мобильных */
@media (max-width: 768px) {
    .services-grid {
        flex-direction: column;
        gap: 30px;
    }
    .service-card {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-right: 0;
        padding-bottom: 30px;
    }
    .service-card:last-child {
        border-bottom: none;
    }
}
.btn-outline-primary {
    --bs-btn-color: #013d87;
    --bs-btn-border-color: #013d87;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #013d87;
    --bs-btn-hover-border-color: #013d87;
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #013d87;
    --bs-btn-active-border-color: #013d87;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #013d87;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #013d87;
    --bs-gradient: none;
}
.text-primary {
    --bs-text-opacity: 1;
    color: rgb(1 61 135) !important;
}
.icon-circle {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-social ul {
    float: left;
    list-style: none;
}
.footer-social li {
    float: left;
    margin-right: 14px;
    text-align: center;
}
/* Основной контейнер подвала */
.site-footer {
    background-color: #f4f6f9; /* Светло-серый фон как на макете */
    padding: 40px 0 20px;
    font-family: 'Segoe UI', Roboto, sans-serif;
    color: #333;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
/* Верхняя секция (Лого + Соцсети) */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 20px;
}
.footer-logo img {
    max-height: 40px;
}
.footer-socials a {
    text-decoration: none;
    margin-left: 15px;
    color: #666;
    font-size: 14px;
}
/* Сетка колонок */
.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}
.footer-col h4.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
}
/* Списки ссылок */
.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-nav li {
    margin-bottom: 10px;
}
.footer-nav a {
    text-decoration: none;
    color: #4a4a4a;
    transition: color 0.2s;
}
.footer-nav a:hover {
    color: #0056b3; /* Цвет при наведении */
}
/* Телефоны */
.footer-contacts-list {
    list-style: none;
    padding: 0;
}
.footer-contacts-list li {
    margin-bottom: 10px;
}
.footer-contacts-list a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}
.provider {
    font-size: 12px;
    color: #888;
    font-weight: normal;
}
/* Адрес и График */
.address-block p {
    margin-bottom: 8px;
    line-height: 1.5;
}
.email-text a {
    color: #0056b3;
}
.schedule-block p {
    margin-bottom: 8px;
    font-size: 14px;
}
.office-hours {
    list-style: none;
    padding: 0;
    margin: 5px 0 0;
    font-size: 14px;
    color: #555;
}
/* Нижняя юридическая панель */
.footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #888;
}
.legal-info p {
    margin: 5px 0;
}
/* Адаптивность для мобильных */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    .footer-top {
        flex-direction: column;
        gap: 15px;
    }
    .footer-socials {
        margin-left: 0;
    }
    .payments{
        width: 100%
    }
}
.text-end {
    text-align: right !important;
    width: 190px;
}
.navbar-brand img {
    max-height: 35px;
}
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
            color:#fff;
    }
}
@media (max-width: 768px) {
    .phone-display {
        font-size: 1.1rem;
    }
    .route-card {
        flex-wrap: wrap;
    }
    .text-end {    width: 100%;}
    .my-swiper {
        height: 190px !important;
    }
}
.navbar-custom .bi, .navbar-custom  .navbar-toggler {color:#fff;}
/* Обёртка вместо .container, чтобы точно соблюсти 1200px */
.slider-limit {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px; /* отступы как у Bootstrap .container */
}
.my-swiper {
    height: 400px;
    width: 100%;
    border-radius: 8px; /* опционально */
    overflow: hidden;
}
.swiper-slide {
    display: flex!important;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}
/* Цвет стрелок и точек */
.swiper-button-next,
.swiper-button-prev { color: #fff!important; }
.swiper-pagination-bullet { background: #fff!important; }
/* Navbar Styles */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
/* Desktop Navigation */
@media (min-width: 992px) {
    .navbar-collapse {
        flex-grow: 0;
    }
    .navbar-nav .nav-link {
        padding: 0.5rem 1rem;
        color: #333;
        transition: color 0.3s;
    }
    .navbar-nav .nav-link:hover {
        color: #e0f2fe;
    }
}
/* Mobile Styles */
@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 56px;
        left: 0;
        right: 0;
        z-index: 1000;
        background: #013d87;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        max-height: calc(100vh - 70px);
    }
    .navbar-collapse.collapsing {
        transition: height 0.35s ease;
    }
    .navbar-collapse.show {
        display: block;
    }
    .navbar-nav {
        padding: 1rem;
    }
    .navbar-nav .nav-link, .city-selector {
        padding: 0.75rem 0;
        color: #fff;
    }
}
/* Phone Modal Styles - Similar to Image */
.modal-dialog-bottom {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    margin: 0;
    max-width: 100%;
}
.modal-dialog-bottom .modal-content {
    border: none;
    height: calc(100vh - 60px);
    overflow-y: auto;
    background: #013d87;
}
.modal-dialog-bottom .modal-body {
    padding: 0;
}
.modal-dialog-bottom .modal-content .phone-number {color:#fff;font-size: 19px;}
.phone-section {
    padding: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}
.phone-section:last-child {
    border-bottom: none;
}
.phone-category {
    color: #ffffffcf;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    text-align: center;
}
.phone-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 0.75rem;
    transition: background 0.3s;
    justify-content: center;
}
.btn-close {
    --bs-btn-close-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e")}
.phone-item:hover {
    border: 1px solid #e9ecef;
}
.phone-item:last-child {
    margin-bottom: 0;
}
.phone-icons {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
}
.phone-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.2s;
}
.phone-icon:hover {
    transform: scale(1.1);
}
.phone-icon.call {
    background: linear-gradient(135deg, #a855f7, #9333ea);
}
.phone-icon.whatsapp {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}
.phone-icon i {
    font-size: 1.25rem;
}
.phone-number  {
    font-size: 1.125rem;
    color: #1f2937;
    font-weight: 500;
}
/* Bootstrap Icons */
.bi {
    vertical-align: middle;
}
/* Mobile Icons */
.btn-link {
    text-decoration: none;
    padding: 0.5rem;
}
.btn-link:hover {
    color: #007bff !important;
}
/* Animation */
.fade {
    transition: opacity 0.3s ease;
}
.modal.fade .modal-dialog {
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
}
.modal.show .modal-dialog {
    transform: translateY(0);
	width: 100%;
}
.fl-wrap {
    float: left;
    width: 100%;
    position: relative;
}
.breadcrumbs{
	padding: 15px 0;
    overflow: hidden;
}
.breadcrumbs a, .breadcrumbs span {
    float: left;
    padding-right: 5px;
    font-size: 12px;
}
.breadcrumbs div:last-child span {
    color: #e5006d;
}
.geodir-opt-list{
	text-align: center;
    float: right;
    height: 34px;
}
.geodir-opt-list a {
	line-height: 40px;
    cursor: pointer;
    border: none;
    border-radius: 8px;
    background: #e5006d;
    color: #fff;
    padding: 10px 15px;
}
.flat-hero-container{
	padding: 20px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.box-widget-item-header{
	border-bottom: 1px solid #e2e8f0;
    margin-bottom: 10px;
}
.list-single-hero-price{
	color: #e5006d;
    font-size: 24px;
    font-weight: 600;
    padding-left: 20px;
    position: relative;
    top: 2px;
}
.feature{
	padding: 8px 0;
}
.feature span{
	display: flex;
	gap: 5px;
}
.table td, .table th {
    vertical-align: middle;
    text-align: center;
    position: relative;
}
.table th, .table td {
    padding: .45rem;
    vertical-align: middle !important;
}
.card-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.card-body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    flex-basis: auto;
    padding: .5rem 1rem;
}
section.middle-padding {
    padding: 0;
    margin-bottom: 40px;
}
.anapa {
    width: 100%;
}
.anapa .title {
    color: #023D87;
    font-size: 28px;
    font-weight: 600;
    display: block;
    margin-left: 40px;
    margin-bottom: 10px;
}
.anapa .low_money {
    color: #b7b7b7;
    font-size: 20px;
    font-weight: 400;
    display: block;
    margin-left: 40px;
    margin-bottom: 20px;
}
.anapa .top_list {
    display: block;
    margin-left: 65px;
    color: #858585;
    font-size: 18px;
    font-weight: 400;
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}
.anapa .top_list li {
    padding-left: 20px;
    background-image: url(/images/anapa/top_bullet.png);
    background-repeat: no-repeat;
    background-position: left center;
}
.anapa .top_main {
    width: 940px;
    height: 499px;
    background-image: url(/images/anapa/back_blue.png);
    display: block;
}
.anapa .top_main .title {
    color: #fff;
    font-size: 46px;
    font-weight: 400;
    display: inline-block;
    margin-top: 50px;
    margin-bottom: 30px;
    margin-left: 0;
    width: 100%;
    text-align: center;
}
.anapa .top_main .info_a {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 55px;
    margin-left: 4%;
    width: 92%;
    text-align: center;
}
.anapa .top_main .images {
    width: 86%;
    margin: 0 auto;
}
.anapa .top_main .images img {
    border: 4px solid #fff;
    border-radius: 4px;
    margin-right: 1.7%;
}
.anapa .top_main .images img:last-child {
    margin-right: 0;
}
.anapa .advantages .a_title {
    color: #023D87;
    font-size: 22px;
    font-weight: 700;
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 40px;
}
.anapa .advantages .icons {
    display: table;
    width: 94%;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 8px;
}
.anapa .advantages .icons .item {
    display: table-cell;
    width: 31%;
    border-right: 0px solid black;
}
.anapa .advantages .icons .item .icon {
    width: 22%;
    float: left;
}
.anapa .advantages .icons .item .info_a {
    width: 73%;
    float: left;
    margin-left: 5%;
}
.anapa .advantages .icons .item .i_title {
    color: #023D87;
    font-size: 22px;
    font-weight: 400;
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 2px dotted #023D87;
    width: 91%;
}
.anapa .advantages .icons .item p {
    color: #333333;
    font-size: 14px;
    font-weight: 400;
    display: inline-block;
}
.anapa .link_hide {
    color: #333333;
    font-size: 24px;
    font-weight: 600;
    display: inline-block;
    padding-left: 30px;
    background-image: url("/local/templates/travelsoft.new/img/hide_b.png");
    background-repeat: no-repeat;
    background-position: left center;
    cursor: pointer;
    line-height: 28px;
}
.anapa.scheadule .link_hide {
    background-image: url("/local/templates/travelsoft.new/img/a_4.png");
    background-size: 35px auto;
    line-height: 36px;
    padding-left: 44px;
}
.anapa .link_hide.show {
    background-image: url("/local/templates/travelsoft.new/img/show_b.png");
}
.anapa.scheadule .link_hide.show {
    background-image: url("/local/templates/travelsoft.new/img/a_4.png");
}
.anapa.scheadule .google_maps {
            position: relative;
            padding-bottom: 0%;
            width: 100%;
            height: 450px;
            overflow: hidden;
            display: table;
}      
.anapa.scheadule .google_maps iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100% !important;
            height: 100% !important;
}
.anapa .title_one {
    color: #333333;
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    padding-left: 30px;
    margin-bottom: 10px;
}
.anapa .title_one_wp {
    color: #333333;
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    padding-left: 0;
    margin-bottom: 10px;
    text-align: justify;
}
.anapa .list_one {
    display: block;
    margin-left: 65px;
    color: #333333;
    font-size: 16px;
    font-weight: 400;
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}
.anapa .list_one li {
    padding-left: 30px;
    background-image: url(/images/anapa/1_bullet.png);
    background-repeat: no-repeat;
    background-position: left center;
    text-align: justify;
}
.anapa .list_one li font {
    color: #023D87;
    font-weight: 600;
}
.anapa .title_two {
    color: #333333;
    font-size: 22px;
    font-weight: 600;
    display: inline-block;
    margin-left: 30px;
    padding-left: 20px;
    margin-top: 15px;
    margin-bottom: 10px;
}
.anapa .box_main {
    margin-bottom: 20px !important;
    display: inline-block !important;
    width: 100% !important;
}
.anapa .pirobox_gall img {
    -webkit-box-shadow: 3px 3px 10px 0px rgba(51, 51, 51, 0.355);
    -moz-box-shadow: 3px 3px 10px 0px rgba(51, 51, 51, 0.355);
    box-shadow: 3px 3px 10px 0px rgba(51, 51, 51, 0.355);
    border: 4px solid #fff;
    border-radius: 4px;
}
.anapa .resize .caption {
    display: none !important;
}
.anapa .box_left {
    width: 92% !important;
    display: block !important;
    margin: 0 auto !important;
}
.anapa .list_one_title {
    color: #023D87;
    font-size: 22px !important;
    font-weight: 700;
    display: block;
    margin-left: 50px;
    margin-top: 15px;
    margin-bottom: 10px;
}
.anapa .play {
    padding-left: 0px;
    padding-right: 30px;
}
.anapa .img_title,
.anapa .img_title_r {
    font-weight: 600;
    margin-top: 2vw;
    width: 100%;
    font-size: 22px;
    color: #023D87;
    display: block;
    margin-top: 15px;
    margin-bottom: 10px;
}
.anapa .imgtext_r {
    width: 100%;
    clear: both;
    display: inline-block;
}
.anapa .imgtext_r .text {
    float: right;
    width: 63% !important;
    text-align: justify;
}
.anapa .imgtext_r .img {
    float: right;
    margin-left: 7% !important;
    width: 30% !important;
}
.anapa .imgtext_r .img img,
.anapa .imgtext_l .img img {
    width: 100% !important;
    height: auto !important;
    border: 4px solid #fff;
    border-radius: 4px;
    box-sizing: border-box;
    -webkit-box-shadow: 3px 3px 10px 0px rgba(51, 51, 51, 0.355);
    -moz-box-shadow: 3px 3px 10px 0px rgba(51, 51, 51, 0.355);
    box-shadow: 3px 3px 10px 0px rgba(51, 51, 51, 0.355);
}
.anapa .imgtext_l .img img {
    margin-left: 50px;
}
.anapa .imgtext_r .img img {
    margin-right: 20px;
}
.anapa .imgtext_l {
    width: 100%;
    clear: both;
    display: inline-block;
}
.anapa .imgtext_l .text {
    float: left;
    width: 63% !important;
    text-align: justify;
}
.anapa .imgtext_l .img {
    float: left;
    margin-right: 7% !important;
    width: 30% !important;
}
.anapa .tg {
    border-collapse: collapse;
    border-spacing: 0;
    border-color: #999;
    width: 100%;
}
.anapa .tg td {
    font-size: 18px;
    padding: 0 20px;
    height: 50px;
    overflow: hidden;
    word-break: normal;
    border: 1px solid #ccc;
    color: #3f3d40;
}
.anapa .tg th {
    font-size: 14px;
    font-weight: normal;
    padding: 10px 20px;
    border-style: solid;
    border-width: 1px;
    overflow: hidden;
    word-break: normal;
    border-color: #999;
    color: #fff;
    background-color: #023D87;
}
.anapa .tg .tg-hgcj {
    font-weight: bold;
    border: none;
    background: #023D87 none repeat scroll 0 0;
    color: #fff;
    font-size: 18px;
    height: 22px;
    line-height: 22px;
    margin-bottom: 0;
    margin-top: 20px;
    padding: 20px 0;
    text-align: center;
    text-transform: uppercase;
}
.anapa .tg .tg-s6z2 {
    text-align: center;
    border: none;
    padding: 2px 20px;
}
.anapa .tg .tg-s6z22 {
    text-align: center;
}
.anapa .tg .tg-hgcj2 {
    font-weight: bold;
    text-align: center;
    height: 65px;
}
.anapa .tg .tg-031e2 {
    border: none;
    padding: 15px 2px 0px;
    width: 500px;
    text-align: justify
}
.anapa .tg .tg-jhgd {
    background-color: #55c2e6;
    color: #fff;
}
#block-add_content .view-homepage .node-teaser .content .field-item li, #block-autopark .view-homepage .node-teaser .content .field-items li {
    text-align: justify;
    font-size: 18px;
}
.title_one ul{
	display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    padding-inline-start: 40px;
    unicode-bidi: isolate;
}
.anapa-sched td {
    border: grey solid 1px;
    padding: 5px;
    padding-right: 15px;
}
.content .field-items .tablesaw tr {
    border-bottom: 1px solid rgb(204, 204, 204);
}
.content .field-items .tablesaw th {
    background: none 0px 0px repeat scroll rgb(2 61 135);
    color: rgb(255, 255, 255);
    font-size: 16px;
	text-align: center;
	font-weight: 700;
	align-content: center;
}
.content .field-items .tablesaw tr {
    border-bottom: 1px solid rgb(204, 204, 204);
}
.content .field-items .tablesaw tr.empty_line {
    height: 20px;
}
.content .field-items .tablesaw tr.main-line:nth-child(even) {
    background: none 0px 0px repeat scroll rgb(238, 238, 238);
}
.content .field-items .tablesaw td {
	padding: 10px;
    font-size: 14px;
    text-align: center;
	align-content: center;
	font-weight: 500;
}
.content .field-items .tablesaw tr td:first-child {
    text-align: left;
}
@media screen and (max-width: 700px) {
    #block-autopark .auto-ul {
        display: block;
        float: none;
        clear: both;
        margin-right: 0;
        width: 100%;
    }
    #block-autopark .auto-ul ul {
        min-height: auto;
    }
    .anapa .imgtext_r .img {
        float: none;
        margin-left: 0 !important;
        width: 100% !important;
    }
    .anapa .imgtext_r .text {
        float: none;
        text-align: justify;
        margin-top: 20px;
        width: 100% !important;
    }
}
@media screen and (max-width: 600px) {
    .anapa .link_hide {
        font-size: 18px;
        line-height: 1.2;
    }
    .anapa .tg td {
        font-size: 14px;
        padding: 0 10px;
    }
    .anapa .tg td.long {
        font-size: 11px;
        padding: 0 4px;
    }
    .anapa .tg .tg-hgcj {
        font-size: 14px;
        padding: 10px 0;
    }
    #block-add_content .view-homepage .node-teaser .content .field-item li,  #block-autopark .view-homepage .node-teaser .content .field-item li {
        font-size: 16px;
    }
    #block-add_content .view-homepage .node-teaser .content .field-item p, #block-autopark .view-homepage .node-teaser .content .field-items p {
        font-size: 16px;
    }
}
@media screen and (max-width: 930px) {
    .sheadule-article .google-maps,
    .content .field-items .phones .google_maps,
    .anapa.scheadule .google_maps {
        width: 100%;
        float: none;
        clear: both;
    }
    .sheadule-article .info_direction {
        box-sizing: border-box;
        clear: both;
        float: none;
        margin: 20px 0;
        padding: 2%;
        width: 100%;
    }
    .sheadule-article .scheadule {
        box-sizing: border-box;
        padding: 2%;
    }
    .sheadule-article .scheadule .labels .item, .sheadule-article .scheadule .labels_mob .item,
    .sheadule-article .scheadule .labels .item_long, .sheadule-article .scheadule .labels_mob .item_long {
        font-size: 14px;
    }
    .sheadule-article .scheadule .table_sh .item,
    .sheadule-article .scheadule .table_sh .item_long {
        font-size: 16px;
        padding: 0;
    }
}
#block-add_content .view-homepage .node-teaser .content .field-item p, #block-autopark .view-homepage .node-teaser .content .field-items p {
    text-align: justify;
    font-size: 18px;
}
.mini_card_table tr {
    border-bottom: 10px solid transparent;
}
.mini_card_table tr td:first-child {
    padding-right: 40px;
    vertical-align: middle;
    text-align: justify;
    width: 70%;
}
.how_buy_img {
    display: block;
    margin: 0 auto;
}
@media screen and (max-width: 960px) {
    .how_buy_img {
        width: 100%;
        height: auto;
    }
}
.content  .phones .phone-line {
    display: inline-block;
    padding-bottom: 11px;
    padding-right: 20px;
}
.content  .phones .phone-line img {
    width: unset !important;
    margin-top: 0 !important;
}
.content  .phones .phone-line span{text-decoration: underline;}
.content  .phones .phone-line:hover{
	text-decoration: none
}
@media screen and (max-width: 960px) {
	#block-views-homepage-block {
		background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
		padding-bottom: 50px;
		padding-top: 50px;
	}
	#block-views-homepage-block .view-homepage .node-teaser h1, #block-views-homepage-block .view-homepage .node-teaser p.h1 {
		text-align: center;
		width: auto;
	}
	#block-views-homepage-block .view-homepage .node-teaser .field-type-text-with-summary {
		padding-right: 0;
		text-align: center;
		width: 100%;
	}
	#block-views-homepage-block .view-homepage .node-teaser .field-type-text-with-summary p {
		text-align: left;
	}
}
#block-add_content h2, #block-autopark h2 {
    font-family: "Open Sans", Arial, Verdana, sans-serif;
    font-size: 46px;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1em;
    margin: 0 0 30px;
    padding: 0;
    text-transform: uppercase;
}
#block-views-homepage-block .view-homepage .node-teaser .field-type-text-with-summary {
    padding-right: 50%;
    width: 50%;
}
.google_maps iframe{
	border-radius: 12px;
	width: 100%;
}
.small-padding {
    padding: 30px 0;
}
.btn {
    padding: 0 10px 0 10px !important;
    height: 35px;
    line-height: 32px !important;
    border-radius: 8px !important;
    /*color: #fff;*/
    text-align: left;
    position: relative;
    overflow: hidden;
    display: inline-block !important;
}
.btn-secondary {
    background-color: #e5016e;
    /*line-height: 45px !important;
    height: 50px;*/
    border-color: #f0639b;
    font-size: 16px;
}
.hr{
	height: 1px;
    width: 100%;
}
.card .hr {
    background: #bed1fc;
}
.single-facts {
    margin-top: 0;
}
.single-facts .inline-facts-wrap {
    width: 16.6%;
    float: left;
    padding: 15px;
}
.single-facts .inline-facts {
    text-align: center;
}
.home-facts .inline-facts .num, .single-facts .inline-facts h6 {
    font-size: 18px;
    text-align: center;
    font-weight: 400;
    margin-top: 10px;
}
@media only screen and (max-width: 1064px) {
    .single-facts .inline-facts-wrap {
        width: 30%;
        padding: 5px 0;
        margin-right: 3%;
    }
}
@media only screen and (max-width: 420px) {
    .single-facts .inline-facts-wrap {
        width: 47%;
        padding: 5px 0;
    }
	.single-facts .inline-facts {
        height: 130px;
    }
}
.about-text span {
    color: #023d87;
    font-weight: 800;
    font-size: 16px;
}
.btn-circle {
    width: 30px !important;
    height: 30px !important;
    text-align: center !important;
    padding: 6px 0 !important;
    font-size: 12px !important;
    line-height: 1.428571429 !important;
    border-radius: 15px !important;
}
.box-widget-list li a {
    color: #e5006d;
    font-weight: 500;
}
.box-widget-list {
    display: block;
}
ul.menu-vertical-01 li a {
    display: block;
    color: inherit;
    line-height: 1.4;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 15px 25px 13px;
    position: relative;
    border: 1px solid #023d87;
    font-size: 13px;
    border-radius: 8px;
    margin-bottom: 10px;
}
ul.menu-vertical-01 li.active a, ul.menu-vertical-01 li a.active {
    background: #023D87;
    color: #FFF;
}
.theme-search-results-item {
    border: 1px solid #023d87;
    margin-bottom: -1px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
    z-index: 1;
    position: relative;
    background: #fff;
	border-radius:12px;
}
.theme-search-results-item-preview .block {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.tab-pane {
    padding: 15px 30px;
}
.theme-search-results-item-extend {
    position: relative;
}
.theme-search-results-item-extend-close {
    position: absolute;
    top: 0 !important;
    right: 0;
    text-align: center;
    display: block;
    padding: 0 23px;
    color: #595959;
    opacity: 0.5;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    filter: alpha(opacity=50);
    font-family: Arial, Baskrville, monospace;
}
.theme-search-results-item-extend .nav-tabs {
    padding-left: 20px;
    padding-right: 20px;
}
.nav-tabs li {
    float: left;
    margin-bottom: -1px;
}
.nav li {
    position: relative;
    display: block;
}
.theme-search-results-item-extend .nav>li>a {
    position: relative;
    display: block;
    padding: 10px 15px;
}
.nav-tabs li a.active, .nav-tabs li a.active:hover, .nav-tabs li a.active:focus {
    color: #555;
    cursor: default;
    background-color: #fff;
    border: 1px solid #023d87;
    border-bottom-color: transparent;
}
.seat-plan {
    display: inline-block;
    position: relative;
	line-height: 30px;
}
.informer-plan .seat-plan {
    font-style: normal;
    font-family: "Exo20-Bold", "Arial Black", Gadget, sans-serif;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    color: #FFF;
    background: #08c677;
    border-radius: 5px;
}
.informer-plan .seat-plan.selected-plan {
    color: #fff;
    background: #05a8e6;
}
.seat-plan.active-plan {
    background: rgba(201, 213, 224, 1) !important;
    background-image: none;
    color: #fff;
}
.btn-default{
	color:#fff;
	background:#e5006d;
}
.section-py-10 {
    padding-top: 3.33333rem;
    padding-bottom: 3.33333rem;
}
.btn-primary{
	--bs-btn-bg: #023d87!important;
    --bs-btn-border-color: #023d87!important;
}
.theme-search-results-item-mask-link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: block;
    z-index: 5;
}
.theme-search-results-item-flight-sections {
    margin-top: 20px;
}
.theme-search-results-item-flight-sections .theme-search-results-item-flight-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #023d87;
}
.row.row-no-gutter, .row[data-gutter="0"], .row[data-gutter="none"] {
    margin: 0 !important;
}
.theme-search-results-item-flight-section-item {
    padding: 0 15px;
}
.theme-search-results-item-flight-section-meta-time {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1em;
    text-transform: uppercase;
    padding: 0;
}
.theme-search-results-item-flight-section-meta-date {
    font-size: 10px;
    opacity: 0.65;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=65)";
    filter: alpha(opacity=65);
    margin-bottom: 0;
}
.theme-search-results-item-flight-section-meta-city {
    font-size: 13px;
    opacity: 0.65;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=65)";
    filter: alpha(opacity=65);
    margin-bottom: 2px;
    padding: 0;
}
.theme-search-results-item-flight-section-path {
    position: relative;
    height: 60px;
    margin: 0 5px;
}
.theme-search-results-item-flight-section-path-fly-time {
    text-align: center;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.theme-search-results-item-flight-section-path-fly-time > p {
    font-size: 12px;
    opacity: 0.65;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=65)";
    filter: alpha(opacity=65);
}
.theme-search-results-item-flight-section-path-line {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #dedede;
}
.theme-search-results-item-flight-section-path-line-start, .theme-search-results-item-flight-section-path-line-end, .theme-search-results-item-flight-section-path-line-middle, .theme-search-results-item-flight-section-path-line-middle-1, .theme-search-results-item-flight-section-path-line-middle-2 {
    position: absolute;
    left: -15px;
    text-align: center;
    width: 30px;
}
.theme-search-results-item-flight-section-path-line-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #33a04e;
    margin-bottom: 10px;
    margin-left: 10px;
    -webkit-box-shadow: 0 0 0 2px #fff;
    box-shadow: 0 0 0 2px #fff;
}
.theme-search-results-item-flight-section-path-line-title {
    font-size: 9px;
    opacity: 0.65;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=65)";
    filter: alpha(opacity=65);
}
.theme-search-results-item-flight-section-path-line-end {
    right: -15px;
    left: auto;
}
.theme-search-results-item-bookprice {
    padding-top: 15px;
    padding-bottom: 15px;
    border-left: 1px dashed #023d87;
}
.theme-search-results-item-book {
    position: relative;
    height: 100%;
}
.theme-search-results-item-price {
    text-align: center;
    margin-bottom: 0px;
}
.theme-search-results-item-price-tag {
    font-family: 'Circe', helvetica, Arial, sans-serif;
    font-size: 22px;
    margin-bottom: 0;
    line-height: 1em;
    padding: 0;
}
.theme-search-results-item-price-tag.big {
    font-size: 42px;
    margin-bottom: 5px;
}
.theme-search-results-item-price-sign {
    font-size: 13px !important;
    color: #676666 !important;
    margin-bottom: 0;
    margin-top: 5px;
}
.booking-plan-block .details.plans.bus {
    text-align: center;
    padding: 10px 5px;
    text-align: center;
    background: #FFF;
    border-radius: 10px;
}
.details.plans .info {
    padding: 5px 10px;
    background: #f2f6f8;
    margin-bottom: 20px;
}
.informer-plan {
    text-align: left;
    float: left;
    position: relative;
    min-height: 170px;
}
.theme-search-results-item-flight-details-info-title {
    margin-top: 0;
    margin-bottom: 7px;
}
.theme-search-results-item-flight-details-info-date {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 3px;
    line-height: 1em;
}
.theme-search-results-item-flight-details-info-cities {
    font-size: 10px;
    opacity: 0.65;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=65)";
    filter: alpha(opacity=65);
    margin-bottom: 10px;
    padding: 0;
}
.theme-search-results-item-flight-details-info-fly-time {
    font-size: 16px;
    opacity: 0.7;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    filter: alpha(opacity=70);
    margin-bottom: 0;
}
.theme-search-results-item-flight-details-schedule-list {
    list-style: none;
    margin: 0;
    padding-left: 30px;
    position: relative;
}
.theme-search-results-item-flight-details-schedule-list:before {
    content: '';
    width: 2px;
    height: 100%;
    background-color: #d9d9d9;
    top: 0;
    left: 0;
    position: absolute;
}
.theme-search-results-item-flight-details-schedule-icon {
    position: absolute;
    top: 16px;
    left: -42px;
    width: 26px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    background-color: #fff;
    -webkit-box-shadow: 0 0 0 1px #d9d9d9;
    box-shadow: 0 0 0 1px #d9d9d9;
    color: #023d87;
    border-radius: 50%;
    display: flex;
    font-size: 12px;
	justify-content:center;
}
.theme-search-results-item-flight-details-schedule-dots {
    position: absolute;
    top: 29px;
    left: 0;
    width: 100%;
    border-top: 2px dotted #000;
    opacity: 0.1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
    filter: alpha(opacity=10);
}
.theme-search-results-item-flight-details-schedule-time-item {
    font-weight: bold;
    text-transform: uppercase;
}
.theme-search-results-item-flight-details-schedule-time-separator {
    padding: 0 6px;
    opacity: 0.3;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
    filter: alpha(opacity=30);
}
.theme-search-results-item-flight-details-schedule-fly-time {
    position: absolute;
    top: 20px;
    right: 0;
    font-size: 12px;
    color: #999;
    background-color: #fff;
    padding-left: 10px;
    z-index: 2;
}
.theme-search-results-item-flight-details-schedule-destination {
    margin-bottom: 10px;
    overflow: hidden;
}
.theme-search-results-item-flight-details-schedule-destination-item, .theme-search-results-item-flight-details-schedule-destination-separator {
    float: left;
}
.theme-search-results-item-flight-details-schedule-destination-title {
    font-size: 12px;
    margin-bottom: 0;
    padding: 0;
}
.theme-search-results-item-flight-details-schedule-list li:last-child {
    margin-bottom: 0;
}
.theme-search-results-item-flight-details-schedule-list li {
    margin-bottom: 30px;
    position: relative;
}
.theme-search-results-item-flight-details-schedule-date {
    font-size: 10px;
    margin-bottom: 7px;
    padding: 0;
    opacity: 0.65;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=65)";
    filter: alpha(opacity=65);
}
.theme-search-results-item-flight-details-schedule-time {
    font-size: 16px;
    margin-bottom: 7px;
    line-height: 1em;
    font-family: 'Circe', helvetica, Arial, sans-serif;
    background: #fff;
    position: relative;
    display: table;
    z-index: 2;
    padding-right: 10px;
}
.theme-search-results-item-flight-details-schedule-destination-city {
    font-size: 10px;
    opacity: 0.5;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    filter: alpha(opacity=50);
    margin-bottom: 0;
    padding: 0;
}
.theme-search-results-item-flight-details-schedule-destination-separator {
    margin: 0 10px;
}
.theme-search-results-item-flight-details-schedule-destination-separator > span {
    opacity: 0.5;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    filter: alpha(opacity=50);
    display: block;
    line-height: 1em;
}
.theme-search-results-item-flight-section-path-icon {
    margin-bottom: 9px;
    opacity: 0.5;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    filter: alpha(opacity=50);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
}
.row {
    margin-left: -15px;
    margin-right: -15px;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
	background-color: #023d87;
}
.footer-legal-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
        :root {
            --primary-blue: #023d87;
            --accent-pink: #e5006d;
        }
        .timeline-wrapper {
            padding: 60px 0;
        }

          .timeline-track {
            position: relative;
            display: flex;
            align-items: flex-start;
            justify-content: space-between;

        }

        .timeline-track::before {
            content: '';
            position: absolute;
            top: 24px;
            left: 0;
            right: 0;
            height: 2px;
            background-color: var(--primary-blue);
            z-index: 0;
        }
.timeline-start {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
        .timeline-step {
            position: relative;
            z-index: 1;
            text-align: center;
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
.timeline-stop {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
        .stop-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 3px solid var(--primary-blue);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #fff;
            flex-shrink: 0;
        }

        .stop-icon.end-point::after {
            content: '';
            width: 16px;
            height: 16px;
            background-color: var(--primary-blue);
            border-radius: 50%;
        }

        .stop-icon.transit::after {
            content: '';
            width: 12px;
            height: 12px;
            border: 2px solid var(--primary-blue);
            border-radius: 50%;
            background-color: transparent;
        }

        .stop-name {
            color: var(--primary-blue);
            font-size: 1.2rem;
            font-weight: 600;
            white-space: nowrap;
			background: #f8fafc;
        }

        .stop-name-small {
            font-size: 1.05rem;
			background: #f8fafc;
        }

        .stop-sublabel {
            color: var(--primary-blue);
            font-size: 1.05rem;
            opacity: 0.85;
			background: #f8fafc;
        }

        /* --- Responsive --- */
        @media (max-width: 768px) {
			.timeline-start, .timeline-stop {align-items: center;}
            .timeline-track {
                flex-direction: column;
                align-items: center;
                padding: 0;
            }

            .timeline-track::before {
                top: 0;
                bottom: 0;
                left: 50%;
                width: 2px;
                height: 100%;
                right: auto;
                transform: translateX(-50%);
            }

            .timeline-stop {
                margin-bottom: 30px;
                width: 100%;
            }

            .timeline-stop:last-child {
                margin-bottom: 0;
            }

            .stop-icon {
                margin-bottom: 10px;
            }
        }
       .info-card {
            background: white;
            border: 2px solid var(--primary-blue);
            border-radius: 8px;
            overflow: hidden;
            height: 100%;
            transition: transform 0.2s;
        }
        
        .info-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(2, 61, 135, 0.15);
        }
        
        .info-header {
            background-color: var(--primary-blue);
            color: white;
            padding: 15px 20px;
            text-align: center;
            font-weight: 500;
            font-size: 1.1rem;
        }
        
        .info-body {
            padding: 20px;
            text-align: center;
            font-size: 1.1rem;
            color: #333;
        }
        
        .highlight-text {
            color: var(--accent-pink);
            font-weight: 600;
        }
        
        .service-item {
            text-align: center;
            padding: 20px;
        }
        
        .service-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 15px;
            color: var(--accent-pink);
            font-size: 2.5rem;
        }
        
        .service-label {
            color: #666;
            font-size: 1rem;
            font-weight: 500;
        }
.table.tg {    border: 2px solid var(--primary-blue);
    border-radius: 8px;}
.tg-hgcj {background-color: var(--primary-blue) !important;
    color: white!important;
    padding: 15px 20px!important;}
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .dropdown-menu {
        min-width: max-content;
    }
}
.feedback-wrapper {
    margin-top: .3125rem
}

.feedback-item {
    padding: 1.875rem 0 2.1875rem
}

.feedback-item:not(:last-child) {
    border-bottom: 1px solid #d7d7d7
}

.feedback-item .text-sm {
    color: #c2c4c5
}

.feedback-item-head {
    display: table;
    width: 100%;
    margin-bottom: .5rem
}

.feedback-item-content {
    color: #013d87;
    font-size: 1rem;
    line-height: 1.5;
    margin-top: .625rem;
    overflow: hidden
}

.feedback-item-reply {
    position: relative;
    padding-left: 1.125rem;
    color: #6d6d6d;
    font-size: .96875rem;
    margin-top: 1.75rem
}

.feedback-item-reply .text-bold {
    margin-bottom: .625rem
}

.feedback-item-reply ul {
    margin: .9375rem 0
}

.feedback-item-reply ul li {
    line-height: 1.25;
    position: relative;
    padding-left: 1.0625rem;
    display: block;
    margin: .625rem 0
}

.feedback-item-reply ul li:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    background-color: #e5016d;
    width: .375rem;
    height: .375rem;
    left: .125rem;
    top: .4375rem;
    position: absolute
}

.feedback-item-reply ul a {
    -webkit-box-shadow: 0 -2px 0 0 #fff, 0 1px 0 0 #e5016d;
    box-shadow: 0 -2px 0 0 #fff, 0 1px 0 0 #e5016d
}

.feedback-item-reply ul a:active {
    -webkit-box-shadow: none;
    box-shadow: none
}

.feedback-item-reply:before {
    content: "";
    position: absolute;
    left: 0;
    top: .3125rem;
    bottom: .3125rem;
    width: 1px;
    background-color: #e5016d
}