

/* Start:/local/components/oldstreet/event-slider/templates/.default/style.css?17585405672354*/
.simple-slider {
    max-width: 1200px;
    margin: 30px auto; /* Добавлены отступы сверху и снизу */
    padding: 20px;
}

.slider-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 12px 24px;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin: 0 5px;
    border-radius: 5px;
    transition: all 0.3s;
}

.tab-btn.active {
    background: #343434;
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Контейнеры для свайперов */
.events-swiper,
.actions-swiper {
    position: relative;
    padding-bottom: 40px; /* Место для пагинации */
}

.slide-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    margin-bottom: 20px; /* Отступ между слайдами */
}

.slide-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.slide-title {
    padding: 15px;
    font-weight: 500;
    font-size: 16px;
}

.empty-message {
    text-align: center;
    padding: 40px;
    color: #666;
    font-style: italic;
}

/* Стили для пагинации */
.swiper-pagination {
    position: absolute;
    bottom: 2px !important; /* Фиксированное положение снизу */
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    opacity: 0.7;
    cursor: pointer;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #343434 !important;
    opacity: 1;
    transform: scale(1.2);
}

/* Адаптивность */
@media (max-width: 768px) {
    .slider-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        margin: 5px 0;
        width: 200px;
    }
    
    .events-swiper,
    .actions-swiper {
        padding-bottom: 35px; /* Меньший отступ для мобильных */
    }
    
    .swiper-pagination {
        bottom: 5px !important;
    }
    
    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
}
/* End */
/* /local/components/oldstreet/event-slider/templates/.default/style.css?17585405672354 */
