.timeline-container{
	border-left: 1px solid transparent;
	padding: 12px;
	height: 100%;
}

.timeline-container::-webkit-scrollbar{
	display: none;
}

.timeline{
	position: relative;
	height: 100%;
	margin-top: 10px;
}

.timeline:before{
	content: "";

	position: absolute;
	top: 21px;
	bottom: 0;
	left: 5px;

	height: calc(100% - 21px);
	width: 2px;
	background: #ccc;
}

.timeline:after{
	content: "";

    position: absolute;
    bottom: 0;
    left: 5px;

    height: 25px;
    width: 2px;
    background: linear-gradient(to bottom, #ccc, #fefefe 80%);
}

.timeline-sample-code-container{
	padding-bottom: 10px;
	border-bottom: 1px solid #ddd;

	display: flex;
	flex-direction: row;

    justify-content: space-between;
    align-items: center;
}

.timeline-sample-code-container i{
	cursor: pointer;
}

.timeline-sample-code-label{
	font-weight: bold;
}

.timeline-badge{
	padding: 3px 0 3px 25px;
	position: relative;
}

.timeline-badge-circle{
	position: absolute;
	top: 21px;
	left: 0;

	height: 4px;
	width: 4px;
	border-radius: 50%;

	border: 4px solid;
    background-color: #fefefe;
    
    box-sizing: initial;
}

.timeline-badge-message{
	border: 1px solid #ddd;
	border-radius: 5px;
	padding: 7px 7px 4px 7px;

	position: relative;
}

.timeline-badge-message *{
	word-wrap: break-word;
}


.timeline-badge-message:before{
	content: "";

    box-sizing: border-box;
    border-right: 8px solid #fefefe;
    border-bottom: 8px solid transparent;
    border-top: 8px solid transparent;

    position: absolute;
    left: -8px;
    top: 15px;

    z-index: 32;
}

.timeline-badge-message:after{
	content: "";

    box-sizing: border-box;
    border-right: 9px solid #ddd;
    border-bottom: 9px solid transparent;
    border-top: 9px solid transparent;

    position: absolute;
    left: -9px;
    top: 14px;
    z-index: 31;
}

.timeline-badge-content{
	font-size: 15px;
}

.timeline-badge-footer{
	display: flex;
	flex-direction: column;

    font-size: 12px;
    margin-top: 5px;
    border-top: 1px solid #ddd;
    padding-top: 2px;
    color: #666;
}

/*******************************
	Набор цветов для окружностей
 *******************************/

 .timeline-Warning-event{
 	border-color: #FDBF47;
 }

 .timeline-Alert-event{
 	border-color: #F94470;
 }

 .timeline-System-event{
 	border-color: #45D3C2;
 }

 .timeline-Accept-event{
 	border-color: #45D37E;
 }

 .timeline-Disabled-event{
 	border-color: #7E8A9A;
 }