

/* Timeline */
 
.timeline-horizontal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 0 3.75rem;
}

.timeline-item {
    position: relative;
    width: 25%;
    padding: 0 0 4.375rem;
    pointer-events: none;
}
.timeline-item i {
    text-align: center;
    font-size: 400%;
}
@media only screen and (max-width: 970px) {
	.timeline-item i {
    font-size: 260%;
}
} 

.timeline-item.is_lower_selected .item-img
/*,.timeline-item.is_lower_selected+.timeline-item .item-img */{
    opacity: 1;
}

.timeline-item .item-img {
    opacity: .5;
    -webkit-transition: opacity .5s ease-in;
    transition: opacity .5s ease-in;
}

.timeline-item.is_lower_selected, .timeline-item.is_lower_selected+.timeline-item {
    pointer-events: auto;
    cursor: pointer;
}

.items_toolbar_progress {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    left: -50%;
    bottom: 0;
    height: 1.5625rem;
    width: 100%;
    margin: 0 0 0 .5rem;
}

.timeline-item:first-child .items_toolbar_progress_line {
    display: none;
}

.items_toolbar_progress_line {
    display: block;
    position: relative;
    width: 100%;
    height: .125rem;
    background: rgba(0,0,0,.3);
    overflow: hidden;
}
.timeline-item.is_lower_selected .items_toolbar_progress_dot {
    -webkit-animation: progress-dot .3s 450ms ease-out forwards;
    animation: progress-dot .3s 450ms ease-out forwards;
}

.items_toolbar_progress_dot {
    display: block;
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    padding: 0;
    overflow: hidden;
    background: rgba(0,0,0,.3);
    -webkit-transition: background 250ms ease-in;
    transition: background 250ms ease-in;
}

.items_toolbar_progress_dot:hover {
    background: #000;
}

.timeline-item.is_lower_selected .items_toolbar_progress_line::before {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    -webkit-transition: -webkit-transform 450ms ease-out;
    transition: -webkit-transform 450ms ease-out;
    transition: transform 450ms ease-out;
    transition: transform 450ms ease-out,-webkit-transform 450ms ease-out;
}

.items_toolbar_progress_line::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: #000;
    -webkit-transform: translate3d(-100%,0,0);
    transform: translate3d(-100%,0,0);
}

.is_selected .items_toolbar_progress_dot,
.is_lower_selected .items_toolbar_progress_dot {
    background: #000;
}

/*	Wenn nur Punkt Schwarz sein muss und ohne Slider der Linie */

/*	Alle Dots, die NICHT aktiv sind*/
/*
.items_toolbar_progress_dot{
    background: yellow;
}
*/
/*	die zueletzt aktiven Punkten */
/*
.is_lower_selected .items_toolbar_progress_dot{
    background: rgba(0,0,0,.3);
}
*/
/*	Der im Moment aktive Dot */
/*
.is_lower_selected.is_selected .items_toolbar_progress_dot {
    background: #000;
}
*/
/*
.items_toolbar_progress_line::before {
    background: rgba(0,0,0,0);
}
*/

.item-img-box {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    text-align: center;
}

#progressBar {
    width: 400px;
    height: 22px;
    border: 1px solid #111;
    background-color: #292929;
}
#progressBar div {
    height: 100%;
    color: #fff;
    text-align: right;
    line-height: 22px; /* same as #progressBar height if we want text middle aligned */
    width: 0;
    background-color: #0099ff;
}

/* Timeline Content */
.timeline-horizontal-text {
	overflow: hidden;
}
.timeline-horizontal-text .timelineContent {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    overflow: visible;
    width: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    height: 100%;
}

.timeline-horizontal-text .postContent {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
	padding: 0 6.25rem;
}
@media only screen and (max-width: 970px) {
	.timeline-horizontal-text .postContent {
    padding: 0 1.25rem;
}
} 

.timeline-horizontal-text .textbox {
    position: relative;
    width: 100%;
}

/* Timeline Images */

.timeline-horizontal .item-img img {
    max-width: 40%;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (max-width: 970px) {
	.timeline-horizontal .item-img img {max-width: 70%;}
} 






