/* Container */
.vt-46117-container {
    position: relative;
    padding: 40px 0;
    width: 100%;
    overflow: hidden;
}

/* Central Line */
.vt-46117-timeline {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

/* The vertical background line */
.vt-46117-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background-color: #E5E5E5;
    transform: translateX(-50%);
    z-index: 1;
}

/* The Animated Progress Line */
.vt-46117-progress-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px; /* Slightly thicker than background line */
    background-color: #FF405D;
    transform: translateX(-50%);
    z-index: 2;
    height: 0; /* Animated via JS */
    transition: height 0.1s linear; /* Smooth growth */
    max-height: 100%;
}

/* Individual Items */
.vt-46117-item {
    position: relative;
    width: 50%;
    padding: 0 40px 60px 40px;
    box-sizing: border-box;
    z-index: 3;
    opacity: 0; /* Hidden by default for animation */
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.vt-46117-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Left side items */
.vt-46117-item.vt-46117-left {
    left: 0;
    text-align: right;
}

/* Right side items */
.vt-46117-item.vt-46117-right {
    left: 50%;
    text-align: left;
}

/* Dot on the line */
.vt-46117-dot {
    position: absolute;
    top: 0; /* Align with top of number/title area roughly */
    width: 8px;
    height: 8px;
    background-color: #E5E5E5; /* Inactive color */
    border-radius: 50%;
    z-index: 4;
    margin-top: 25px; /* Adjust based on typography */
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.vt-46117-dot.is-active {
    background-color: #FF405D;
    transform: scale(1.5);
    box-shadow: 0 0 0 4px rgba(255, 64, 93, 0.2);
}

/* Dot positioning */
.vt-46117-left .vt-46117-dot {
    right: -4px; /* Half width to center on line */
}

.vt-46117-right .vt-46117-dot {
    left: -4px;
}

/* Content Elements */
.vt-46117-number {
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
    color: rgba(255, 64, 93, 0.3); /* Transparent accent */
    font-family: inherit;
}

.vt-46117-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #333;
}

.vt-46117-subtitle {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #FF405D;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.vt-46117-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Responsive Styles */
@media (max-width: 767px) {
    /* Move line to the left */
    .vt-46117-timeline::before,
    .vt-46117-progress-line {
        left: 20px;
    }

    /* Make items full width */
    .vt-46117-item {
        width: 100%;
        padding-left: 60px; /* Space for line */
        padding-right: 0;
        text-align: left !important;
        margin-bottom: 30px;
        left: 0 !important;
    }

    /* Adjust dot position */
    .vt-46117-left .vt-46117-dot,
    .vt-46117-right .vt-46117-dot {
        left: 16px; /* Center on the 20px line (20 - 4) */
        right: auto;
    }

    .vt-46117-number {
        font-size: 40px;
    }
}
