#linea-tiempo {
	margin: 0;
	padding: 0;
	box-sizing: border-box
}
#linea-tiempo button {
	background: transparent;
	border: none;
	cursor: pointer;
	outline: none
}
#linea-tiempo {
	padding: 10px 0
}
#linea-tiempo .container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	text-align: center
}
#linea-tiempo h1 {
	font-size: 2.5rem
}
#linea-tiempo h2 {
	font-size: 1.3rem
}
.linea-tiempo {
	white-space: nowrap;
	overflow-x: hidden;
}
.linea-tiempo ol {
	font-size: 0;
	width: 100vw;
	padding: 250px 0;
	transition: all 1s;
	/*overflow-x: visible;*/
}
.linea-tiempo ol li {
	position: relative;
	display: inline-block;
	list-style-type: none;
	width: 200px;
	height: 6px;
	background: #fff
}
.linea-tiempo ol li:last-child {
	width: 280px
}
.linea-tiempo ol li:not(:first-child) {
	margin-left: 14px
}
.linea-tiempo ol li .punto {
	content: '';
	position: absolute;
	top: 50%;
	left: calc(100% + 1px);
	bottom: 0;
	width: 12px;
	height: 12px;
	transform: translateY(-50%);
	border-radius: 50%;
	background: crimson
}
.linea-tiempo ol li div {
	position: absolute;
	left: calc(100% + 7px);
	width: 280px;
	padding: 15px;
	font-size: 1rem;
	white-space: normal;
	color: black;
	background: white
}
.linea-tiempo ol li div,
.linea-tiempo ol li:nth-child(odd) div::before {
	-webkit-box-shadow: 0px 10px 20px 5px #969696;
	box-shadow: 0px 10px 15px 5px #969696
}
.linea-tiempo ol li .indicador {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	width: 0;
	height: 0;
	border-style: solid
}
.linea-tiempo ol li:nth-child(odd) div {
	top: -16px;
	transform: translateY(-100%)
}
.linea-tiempo ol li:nth-child(odd) .indicador {
	top: 100%;
	border-width: 8px 8px 0 0;
	border-color: white transparent transparent transparent
}
.linea-tiempo ol li:nth-child(even) div {
	top: calc(100% + 16px)
}
.linea-tiempo ol li:nth-child(even) .indicador {
	top: -8px;
	border-width: 8px 0 0 8px;
	border-color: transparent transparent transparent white
}
.linea-tiempo time {
	display: block;
	font-size: 1.2rem;
	font-weight: bold;
	margin-bottom: 8px
}
.linea-tiempo .arrows {
	display: flex;
	justify-content: center;
	margin-bottom: 20px
}
.linea-tiempo .arrows .arrow__prev {
	margin-right: 20px
}
.linea-tiempo .disabled {
	opacity: .5
}
.linea-tiempo .arrows img {
	width: 45px;
	height: 45px
}