.timeline-swiper-carousel {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.timeline-swiper-carousel:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 85px;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to right,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
}
.timeline-res-year-item {
    width: 95px;
    display: inline-block;
    cursor: pointer;
}
.swiper-slide:last-child .timeline-res-year-item {
    width: auto;
    padding-right: var(--grid)
}
.timeline-res-year-wrap {
    display: inline-block;
}
.timeline-res-year-year {
    display: inline-block;
    color: var(--white);
    font-size: 17px;
    font-weight: 700;
    background-color: rgba(50,73,158,0.3);
    line-height: 1;
    padding: 0 2px;
    letter-spacing: 0.05em;
    width: 3em;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.timeline-res-year-item.active .timeline-res-year-year {
    background-color: var(--primary);
}
.timeline-res-year-dot {
    width: 10px;
    height: 10px;
    border: 2px solid var(--secondary);
    margin: 5px auto 0;
    position: relative;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.swiper-slide:first-child .timeline-res-year-dot {
    margin-left: 0;
}
.swiper-slide:last-child .timeline-res-year-dot {
    margin-right: 0;
}
.timeline-res-year-dot::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 12px;
    right: -94px;
    border-top: 2px solid rgba(24,50,124,0.1);
    margin: auto;
    height: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.swiper-slide:first-child .timeline-res-year-dot::before,
.swiper-slide:nth-last-child(2) .timeline-res-year-dot::before {
    right: -114px;
}
.swiper-slide:last-child .timeline-res-year-dot::before {
    display: none;
}
.timeline-res-year-item.active .timeline-res-year-dot {
    background-color: var(--secondary);
}
.timeline-res-year-item.active .timeline-res-year-dot::before {
    border-color: var(--primary);
}
.timeline-res-item:not(.active) {
    display: none;
}
.timeline-res-gallery-carousel::after {
    content: "";
    position: absolute;
    right: 0;
    top: -2px;
    bottom: -2px;
    width: 10%;
    min-width: 70px;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
}
.timeline-res-gallery-car-image {
    position: relative;
    padding-top: 60%;
}
/*Responsive - Mobile First*/
/* md */
@media (min-width: 768px) {
    .timeline-res-year-item {
        width: 200px;
    }
    .timeline-res-year-year {
        font-size: 22px;
    }
    .timeline-res-year-dot {
        width: 13px;
        height: 13px;
    }
    .timeline-res-year-dot::before {
        left: 20px;
        right: -192px;
    }
    .swiper-slide:first-child .timeline-res-year-dot::before,
    .swiper-slide:nth-last-child(2) .timeline-res-year-dot::before {
        right: -217px;
    }
}
/* xl */
@media (min-width: 1350px) {
    .timeline-res-year-item {
        width: 380px;
    }
    .timeline-res-year-year {
        font-size: 25px;
    }
    .timeline-res-year-dot {
        width: 15px;
        height: 15px;
    }
    .timeline-res-year-dot::before {
        left: 25px;
        right: -365px;
    }
    .swiper-slide:first-child .timeline-res-year-dot::before,
    .swiper-slide:nth-last-child(2) .timeline-res-year-dot::before {
        right: -395px;
    }
}
/*Responsive - Desktop First*/
/* xs */
@media (max-width: 575.98px) {
    .timeline-res-gallery-car-item {
        width: 90vw;
    }
}