﻿.timeline-container {
	border: 2px solid grey;
	margin: 5px;
	padding: 10px;
	background-color: ghostwhite;
	border-radius: 16px;
}

.timeline {
	margin-top: 20px;
	position: relative;
}

	.timeline:before {
		position: absolute;
		content: '';
		width: 4px;
		height: calc(100% + 0px);
		background: rgb(138,145,150);
		background: -moz-linear-gradient(left, rgba(138,145,150,1) 0%, rgba(122,130,136,1) 60%, rgba(98,105,109,1) 100%);
		background: -webkit-linear-gradient(left, rgba(138,145,150,1) 0%,rgba(122,130,136,1) 60%,rgba(98,105,109,1) 100%);
		background: linear-gradient(to right, rgba(138,145,150,1) 0%,rgba(122,130,136,1) 60%,rgba(98,105,109,1) 100%);
		left: 14px;
		top: 5px;
		border-radius: 4px;
	}

.timeline-month {
	position: relative;
	padding: 4px 15px 4px 35px;
	background-color: var(--background-color-container-list-selected);
	display: inline-block;
	width: auto;
	border-radius: 10px;
	border: 1px solid var(--border-color-container);
	border-right-color: var(--border-color-container-selected);
	margin-bottom: 30px;
	z-index: 3;
	color: var(--label-color-main);
}

.timeline-month-entries {
	position: relative;
	padding: 4px 15px 4px 35px;
	background-color: var(--background-color-container-active-footer);
	display: inline-block;
	width: auto;
	border-radius: 10px;
	border: 1px solid var(--border-color-container);
	border-right-color: var(--border-color-container-selected);
	margin-bottom: 30px;
	z-index: 2;
	left: -30px;
	color: var(--label-color-main);
}


.timeline-month:before {
	position: absolute;
	content: '';
	width: 20px;
	height: 20px;
	background: rgb(138,145,150);
	background: -moz-linear-gradient(top, rgba(138,145,150,1) 0%, rgba(122,130,136,1) 60%, rgba(112,120,125,1) 100%);
	background: -webkit-linear-gradient(top, rgba(138,145,150,1) 0%,rgba(122,130,136,1) 60%,rgba(112,120,125,1) 100%);
	background: linear-gradient(to bottom, rgba(138,145,150,1) 0%,rgba(122,130,136,1) 60%,rgba(112,120,125,1) 100%);
	border-radius: 100%;
	border: 1px solid #17191B;
	left: 5px;
}

.timeline-section {
	padding-left: 35px;
	display: block;
	position: relative;
	margin-bottom: 30px;
}

.timeline-date {
	margin-bottom: 15px;
	padding: 2px 15px;
	background: var(--background-color-mainsite);
	position: relative;
	display: inline-block;
	border-radius: 5px;
	border: 1px solid #17191B;
	color: var(--label-color-main);
	text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
}

.timeline-section:before {
	content: '';
	position: absolute;
	width: 30px;
	height: 1px;
	background-color: #444950;
	top: 12px;
	left: 20px;
}

.timeline-section:after {
	content: '';
	position: absolute;
	width: 10px;
	height: 10px;
	background: linear-gradient(to bottom, rgba(138,145,150,1) 0%,rgba(122,130,136,1) 60%,rgba(112,120,125,1) 100%);
	top: 7px;
	left: 11px;
	border: 1px solid #17191B;
	border-radius: 100%;
}

.timeline-section .col-sm-4 {
	margin-bottom: 15px;
}

.timeline-box {
	position: relative;
	background-color: var(--background-color-container-form-header);
	border-radius: 5px;
	border: 1px solid var(--border-color-container);
	transition: all 0.3s ease;
	overflow: hidden;
	margin-bottom: 5px;
}

.box-icon {
	position: absolute;
	right: 5px;
	top: 0px;
}

.box-title {
	padding: 5px 15px;
	border-bottom: 1px solid var(--border-color-container-selected);
	color: var(--label-color-title);
}

	.box-title i {
		margin-right: 5px;
	}

.box-content {
	padding: 5px 15px;
	background-color: var(--background-color-container-active);
	color: var(--input-color-data);
}

	.box-content strong {
		color: var(--input-color-data);
		font-style: italic;
		margin-right: 5px;
	}

.box-item {
	margin-bottom: 5px;
}

.box-footer {
	padding: 5px 15px;
	border-top: 1px solid var(--border-color-container-selected);
	background-color: var(--background-color-container-active-footer);
	text-align: right;
	font-style: italic;
	color: var(--label-color-title);
}


.timeline_row {
	display: flex;
	column-gap: 5px;
	flex-wrap: wrap;
}

.timeline_row_col {
	width: 24%;
}
