.custom-timeline-item {
    position: relative;
    
}
.custom-timeline-item-wrapper {
    position: relative;
    padding-left: 50px;
    margin-bottom: 30px;
}
.custom-timeline-items {
    position: relative;
    margin: clamp(30px, 10vw, 100px) 0;

}

.custom-timeline-item-marker {
    position: absolute;
    left: 0px;
    width: 26px;
    height: 26px;
    border-radius: 50px;
    background-color: #cccccc;
    transition: background-color .3s;
    top: 0;
}
.custom-timeline-item-marker.is-active {
    background-color: #9F50F7;
}
.custom-timeline-item:first-child .custom-timeline-item-marker {
    background: #9F50F7;
}
.custom-timeline-item *{
    text-align: left;
}
.custom-timeline-item:nth-child(even) {
    justify-content: flex-start;
}
.custom-timeline-item:nth-child(odd) {
    justify-content: flex-end;
}
.custom-timeline-item .heading {
    margin: 5px 0 15px 0;
    font-size: clamp(1.3rem, 1.0rem + 1vw, 1.8rem);
    text-align: left;
}
.custom-timeline-line {
    width: 2px;
    position: absolute;
    left: 12px;
    top: 13px;
    bottom: 13px;
    background: #ccc;
    overflow: hidden;
    
}
.custom-timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #9F50F7;
    max-height: 100%;
    transition: height .15s;
}
.custom-timeline time {
    color: #9F50F7;
}
.custom-timeline img {
    border-radius: var(--element-border-radius);
}
@media screen and (min-width: 768px) { 
   
    

}
@media screen and (min-width: 1024px) {  

    .custom-timeline-line {
        left: calc(50% - 1px);
 
    }
    .custom-timeline-item {
        display: flex;
        
        min-height: 150px;
    }
    .custom-timeline-item-wrapper {
        width: calc(50% - 100px);
        padding-left: 0;
        
    }
    /*
    .custom-timeline-item:not(:first-child) .custom-timeline-item-wrapper {
        margin-top: -100px;
    }
    .custom-timeline-item:has(img) + .custom-timeline-item .custom-timeline-item-wrapper {
        margin-top: -200px;
    }
    */

    

    .custom-timeline-item:nth-child(even) {
        justify-content: flex-start;
    }
    .custom-timeline-item:nth-child(odd) {
        justify-content: flex-end;
    }
    .custom-timeline-item:nth-child(even) .custom-timeline-item-marker {
        left: auto;
        right: -113px;
    }
    .custom-timeline-item:nth-child(odd) .custom-timeline-item-marker {
        left: -113px;

    }
    .custom-timeline-item:first-child .custom-timeline-item-marker {
        width: 42px;
        height: 42px;
        left: -121px;
    }
    
}
