.box-timeline {
	box-sizing: border-box;
	display: block;
	margin: 20px 0;
	line-height: 1.4;
	position: relative;
}

.box-timeline h2, .box-timeline label {
	display: block;
	padding: 11px 0 10px 9px;
	background-color: #eeeeee;
	font-size: 16px;
	font-weight: 700;
	color: #000;
	line-height: 1;
}
.box-timeline select {
	position: absolute;
	cursor: pointer;
	opacity: 0;
	top: 0;
	left: 0;
	bottom: 0;
	width: 140px;
	z-index: 0;
}
.box-timeline label {
	position: relative;
	background-image: url('https://www.topky.sk/static/topky/selectbox-arrow.svg');
	background-position: 120px center;
	background-repeat: no-repeat;
	background-size: 12px auto;
}

.box-timeline .container {
	border-left: 1px solid #ddd;
	margin-left: 2px;
	padding-bottom: 5px;
}
.box-timeline .container.loading {
	position: relative;
	opacity: 0.3;
	pointer-events: none;
}

.box-timeline ul {
	list-style: none;
	padding: 0 5px;
	margin-top: 17px;
}
.box-timeline ul li {
	position: relative;
	margin-bottom: 9px;
	padding-left: 7px;
}
.box-timeline ul li::before {
	position: absolute;
	margin-left: -16px;
	font-family: 'Arial';
	content: '\2022';
	font-size: 20px;
	color: #EB1C2B;
	margin-top: 12px;
}
.box-timeline ul li .timestamp {
	color: #777;
	font-size: 13px;
}
.box-timeline ul li a {
	font-size: 14px;
	line-height: 1.2em;
	color: #000;
	text-decoration: none;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.box-timeline ul li a:hover {
	color:#EB1C2B;
}
.box-timeline a.more {
	position: absolute;
	right: 12px;
	top: 4px;
	font-weight: 600;
	margin-top: 5px;
	margin-left: 12px;
	text-decoration: none;
	color:#EB1C2B;
}
.box-timeline a.more::after {
	content: "\e90a";
	font-family: "icomoon";
	vertical-align: middle;
	margin-left: 6px;
}

/* custom loader */
.spinner {
	position: absolute;
	top: 100px;
	left: 120px;
	background-color: #eb1c2b;
	width: 32px;
	height: 32px;
	margin: 16px auto;
	padding: 4px;
	border-radius: 32px;
}
.spinner span {
	box-sizing: border-box;
	display: block;
	width: 100%;
	height: 100%;
	border: 4px solid #fff;
	border-radius: 100%;
	border-bottom-color: transparent;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(359deg); }
}

.message-list {
	transition: all 0.5s;
}
.message-list-enter, .message-list-leave-to {
	opacity: 0;
	transform: scale(0);
}
.message-list-enter-to {
	opacity: 1;
	transform: scale(1);
}
.message-list-move {
	opacity: 1;
	transition: all 0.5s;
}