.history-container{
    margin-bottom: 50px;
}
.history {
    list-style: none;
    padding: 20px 0 20px;
    position: relative;
    max-width: 100%;
}
.history:before {
    top: 0;
    bottom: 0;
    position: absolute;
    content: " ";
    width: 3px;
    background-color: #eeeeee;
    left: 50%;
    margin-left: -1.5px;
    max-height: 0px;
    transition: all 10s ease 0s;
}
.history.active:before{
    max-height: 4000px;
}

.history > li {
    margin-bottom: 20px;
	margin-top: 60px;
    position: relative;
}
.history > li:first-of-type {
	margin-top: 0px;
}
.history > li:before{
    top: 0px;
    bottom: 0px;
    position: absolute;
    content: " ";
    width: 3px;
    background-color: #EEE;
    left: 50%;
    margin-left: -1.5px;
    max-height: 0px;
    transition: all 10s ease 0s;
}

.history > li:before,
.history > li:after {
    content: " ";
    display: table;
}

.history > li:after {
    clear: both;
}

.history > li:before,
.history > li:after {
    content: " ";
    display: table;
}

.history > li:after {
    clear: both;
}

.history > li > .history-info {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    width: 46%;
    float: left;
    border: 1px solid #d4d4d4;
    border-radius: 2px;
    padding: 20px;
    position: relative;
    -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}
.history > li > .history-info.history-info-fixer{
    display: none!important;
}
.history > li > .history-info:before {
    position: absolute;
    top: 26px;
    right: -15px;
    display: inline-block;
    border-top: 15px solid transparent;
    border-left: 15px solid #ccc;
    border-right: 0 solid #ccc;
    border-bottom: 15px solid transparent;
    content: " ";
}

.history > li > .history-info:after {
    position: absolute;
    top: 27px;
    right: -14px;
    display: inline-block;
    border-top: 14px solid transparent;
    border-left: 14px solid #fff;
    border-right: 0 solid #fff;
    border-bottom: 14px solid transparent;
    content: " ";
}

.history > li:nth-child(2n) > .history-info:before {
    border-left-width: 0;
    border-right-width: 15px;
    left: -15px;
    right: auto;
}

.history > li:nth-child(2n) > .history-info:after {
    border-left-width: 0;
    border-right-width: 14px;
    left: -14px;
    right: auto;
}

.history > li .history-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 45px;
    text-align: center;
    position: absolute;
    top: 16px;
    left: 50%;
    margin-left: -25px;
    z-index: 100;
}

.history > li.colored > .history-info:nth-child(2n){
    padding: 0;
}
.history > li.colored > .history-info:nth-child(2n) img{
    vertical-align: middle;
}

.history > li.green > .history-info:nth-child(2n){
    background-color: #0cbe8d;
    box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.5);
}
.history > li.green > .history-info:nth-child(2n):after{
    border-color: transparent #0cbe8d;
}

.history > li:nth-child(2n) > .history-info,
.history > li:nth-child(2n-1) > .history-info:nth-child(2n-1) {
    float: right;
}
.history > li:nth-child(2n) > .history-info:nth-child(2n-1) {
    float: left;
}
.history > li:nth-child(2n-1) > .history-info:nth-child(2n-1):before {
    border-left-width: 0;
    border-right-width: 15px;
    left: -15px;
    right: auto;
}

.history > li:nth-child(2n-1) > .history-info:nth-child(2n-1):after {
    border-left-width: 0;
    border-right-width: 14px;
    left: -14px;
    right: auto;
}
.history > li:nth-child(2n) > .history-info:nth-child(2n-1):before {
    position: absolute;
    top: 26px;
    right: -15px;
    left:auto;
    display: inline-block;
    border-top: 15px solid transparent;
    border-left: 15px solid #ccc;
    border-right: 0 solid #ccc;
    border-bottom: 15px solid transparent;
    content: " ";
}

.history > li:nth-child(2n) > .history-info:nth-child(2n-1):after {
    position: absolute;
    top: 27px;
    right: -14px;
    left:auto;
    display: inline-block;
    border-top: 14px solid transparent;
    border-left: 14px solid #fff;
    border-right: 0 solid #fff;
    border-bottom: 14px solid transparent;
    content: " ";
}

.history > li > .history-info:nth-child(2n):after,
.history > li > .history-info:nth-child(2n):before
{
    content: none!important;
}
.history > li > .history-info:nth-child(2n){
    border: none!important;
    box-shadow: none!important;
    padding: 0px;
}

@media (max-width: 767px) {
    .history-icon{
        display: none!important;
    }
    .history > li > .history-info{
        width: 100%!important;
        border: none!important;
        box-shadow: none!important;
        float: none!important;
    }
    .history > li > .history-info:before,
    .history > li > .history-info:after{
        content: none!important;
    }

	.history > li {
		text-align: center;
	}
}

.history-title {
    margin-top: 0;
    color: inherit;
}

.history-body > p,
.history-body > ul {
    margin-bottom: 0;
}

.history-body > p + p {
    margin-top: 5px;
}

.history-heading > h2.history-title{
    font-size: 18px;
}