@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap");
body {
	background: #f9f9f9;
	font-family: "Roboto", sans-serif;
}

.main-content {
	padding-top: 100px;
	padding-bottom: 100px;
}

.m-r-5 {
	margin-right: 5px;
}

.box {
	margin-bottom: 25px;
	border-radius: 5px;
	background: #fff;
	box-shadow: 0 5px 30px -5px rgba(0, 0, 0, 0.1);
}
.box__header {
	padding: 20px;
	border-bottom: 1px solid #ddd;
}
.box__header h1,
.box__header h2,
.box__header h3,
.box__header h4,
.box__header h5,
.box__header h6 {
	margin-bottom: 0;
}
.box__body {
	padding: 20px;
}

.timeline__row {
	display: flex;
	position: relative;
}
.timeline__row_icon {
	width: 30px;
	margin-right: 20px;
	z-index: 1;
}
.timeline__row_content {
	width: calc(100% - 30px);
	margin-bottom: 20px;
}
.timeline__row_content .badge {
	margin-bottom: 10px;
}
.timeline__row_content_desc {
	padding: 15px;
	border-radius: 5px;
	background: #fff;
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
}
.timeline__row:nth-last-child(1) .timeline__row_content {
	border: none;
	padding-bottom: 0;
	margin-bottom: 10px;
}
.timeline__row:nth-last-child(1):before {
	height: 0;
}
.timeline__row:before {
	content: "";
	position: absolute;
	width: 1px;
	height: 100%;
	left: 15px;
	background: #d5d5d5;
}

.timeline .timeline-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 30px;
	width: 30px;
	border-radius: 30px;
	color: #03a9f4;
	background: #fff;
	border: 2px solid #03a9f4;
}
.timeline .timeline-icon.success {
	color: #4caf50;
	border-color: #4caf50;
}
.timeline .timeline-icon.warning {
	color: #ff9800;
	border-color: #ff9800;
}
.timeline .timeline-icon.danger {
	color: #f44336;
	border-color: #f44336;
}
