.tx-timeline .inner-circle {
	border: 5px solid #333;
	width: 30px;
	height: 30px;
	border-radius: 30px;
	display: inline-block;
	margin-top: 4px;
	background-color: #FFF;
}
.tx-timeline .date {
	font-size: 24px;
	font-weight: 700;
	width: 100px;
	display: inline-block;
	float: left;
}
.tx-timeline .circle {
	width: 75px;
	display: inline-block;
	float: left;
	position: relative;
	z-index: 200;
}
.tx-timeline .entry-information {
	width: calc(100% - 200px);
	display: inline-block;
	float: left;
}
.tx-timeline {
	position: relative;
}
.tx-timeline:before {
	position: absolute;
	height: calc(100% - 15px);
	width: 5px;
	background-color: #333;
	left: 112.5px;
	z-index: 100;
	content: "";
	top: 15px;
}
.tx-timeline:after {
	display: block;
	content: "";
	clear: both;
}
.tx-timeline .history-entry {
	float: left;
	width: 100%;
	display: block;
	position: relative;
}
.tx-timeline .history-entry + .history-entry {
	margin-top: 40px;
}
.tx-timeline .history-entry:last-child:after {
	position: absolute;
	content: "";
	width: 10px;
	height: calc(100% - 20px);
	background-color: #FFF;
	left: 112.5px;
	bottom: 0;
	z-index: 150;
}
.tx-timeline .entry-description-text {
	font-style: italic;
	font-size: 18px;
}
.entry-headline:not(i) {
	font-size: 18px;
   font-weight: 600;
}
.entry-subheadline {
	font-size: 18px;
	opacity: .75;
}
.tx-timeline p {
	margin-bottom: 0px;
}
.tx-timeline .history-entry.entry-is-milestone:before {
	content: "\f005";
	font-family: "Font Awesome 5 Free";
	position: absolute;
	left: -30px;
	top: 4px;
	font-weight: 900;
}
.tx-timeline .entry-images {
	margin-top: 10px;
}
.tx-timeline img {
	border-radius: 3px;
}
.tx-timeline .history-img-wrapper {
    display: inline-block;
	margin-right: 10px;
	position: relative;
}
.tx-timeline .history-img-wrapper i {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	color: #FFF;
	opacity: 0;
	z-index: 100;
	transition: opacity .4s ease;
}
.tx-timeline .history-img-wrapper:after {
    position: absolute;
    background-color: rgba(0,0,0,.4);
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
	border-radius: 3px;
	opacity: 0;
	transition: opacity .4s ease;
}

.tx-timeline .history-img-wrapper:hover:after,
.tx-timeline .history-img-wrapper:hover i {
	opacity: 1;
}

@media(max-width: 767px) {
	.tx-timeline .history-entry .date {
	    position: absolute;
	    left: 75px;
	    width: auto;
	}
	.tx-timeline .history-entry:last-child:after, 
	.tx-timeline:before {
	    left: 12px;
	}
	.tx-timeline .entry-information {
    	width: calc(100% - 100px);
		padding-top: 50px;
	}
}
