.box-timeline {
	float: left;
	box-sizing: border-box;
	width: 308px;
	margin: 20px 7px 15px 15px;
	line-height: 1.4;
}

.box-timeline h2, .box-timeline label {
	display: inline-block;
	font-size: 20px;
	text-transform: uppercase;
	padding: 0 18px 0 0;
	font-weight: normal;
	margin-bottom: 10px;
	color: #000;
	line-height: 1;
}
.box-timeline select {
	position: absolute;
	cursor: pointer;
	opacity: 0;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 0;
}
.box-timeline label {
	position: relative;
	background-image: url(../selectbox-arrow.svg);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: 12px auto;
}

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

.box-timeline ul {
	list-style: none;
	padding-left: 5px;
	padding-right: 5px;
}
.box-timeline ul li {
	position: relative;
	margin-bottom: 9px;
	padding-left: 7px;
}
.box-timeline ul li::before {
	position: absolute;
	margin-left: -16px;
	content: '\2022';
	font-size: 20px;
	color: #EB1C2B;
	margin-top: 8px;
}
.box-timeline ul li .timestamp {
	color: #777;
	font-size: 11px;
}
.box-timeline ul li a {
	color: #000;
	text-decoration: none;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.box-timeline ul li a:hover {
	color:#EB1C2B;
}
.box-timeline a.more {
	margin-top: 5px;
	margin-left: 12px;
	text-decoration: none;
	color:#EB1C2B;
}

/* 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;
}