.tomato-red {
	background: #ff6347;
}

.bright-blue {
	background: #1e88e5;
}

.green-ish {
	background: #33cc33;
}

h6{
      margin-top:0px;
}

.containererer {
	display: flex;
	flex-direction: column
}



.timeline {
	height: 100%;
	width: 100%;
	list-style-type: none;
	padding: 0;
}

.timeline-item {
	position: relative;
	width: auto;
	height: 70px;
	padding-left: 20px;
	margin-bottom:20px;
}

.timeline-item:after, .indicator {
	position: absolute;
	content: '';
	
}

.timeline-item:after {
	left: 0;
	top: 0;
	height: 100%;
	width: 0px;
	border: 1px solid #9a9a9a;
	border-radius: 20px;
}

.timeline-item:last-child:after {
	height: 0;
}

.indicator {
	left: -4px;
	top: 0;
	height: 10px;
	width: 10px;
	line-height: 5px;
	text-align: center;
	background-color: #9a9a9a;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.inner-dot {
	height: 1px;
	width: 1px;
	border-radius: 50%;
	z-index: 2;
}

.event {
	display: flex;
	flex-direction: row;
	margin-bottom:50px;;
}

.icon-container {
	flex-direction: column;
} 

.icon-container:before {
	position: absolute;
	content: '';
	height: 0;
	width: 0;
	left: -20px;
	top: 5px;
	border-left: 10px solid transparent;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
}


.description-container {
	display: flex;
	flex-direction: column;
	
}

.loader {
	width: 48px;
	height: 48px;
	display: inline-block;
	border: 3px solid;
	border-color:#326AFF #0000 rgb(194, 190, 190) #0000;
	border-radius: 50%;
	box-sizing: border-box;
	animation: 1s rotate linear infinite;
	position: absolute; /* Position the loader relative to the container */
	top: 50%; /* Place the loader at the vertical center of the container */
	left: 50%; 
   }
   .loader:before , .loader:after{
	content: '';
	top: 0;
	left: 0;
	position: absolute;
	border: 10px solid transparent;
	border-bottom-color:rgb(129, 125, 125);
	transform: translate(-10px, 19px) rotate(-35deg);
    }
   .loader:after {
	border-color: #326AFF #0000 #0000 #0000 ;
	transform: translate(32px, 3px) rotate(-35deg);
    }
     @keyframes rotate {
	100%{    transform: rotate(360deg)}
    }



    .locations {
	position: absolute;
	z-index: 999;
	background-color: #fff;
	border: 1px solid #ccc;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	max-height: 200px;
	overflow-y: auto;
	list-style: none;
	padding: 0;
	margin: 0;
	width: 36%;
	border-radius: 4px;
	white-space: nowrap;
}

.locations li {
	padding: 8px 16px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.locations li:hover {
	background-color: #f0f0f0;
}

.accordionItem{
	float:left;
	display:block;
	width:100%;
	box-sizing: border-box;
	font-family:'Open-sans',Arial,sans-serif;
	}
	.accordionItemHeading{
	cursor:pointer;
	margin:0px 0px 10px 0px;
	padding:15px;
	font-size: 15px;
	font-weight: 200;
	background:#eee;
	color:#000;
	width:100%;
	
	border-radius: 3px;
	    box-sizing: border-box;
	}
	.accordionItemHeading span{
	float: right;
	}
	.accordionItemHeading button{
	float: right;
	font-size: 10px;
	background-color:'red';
	color:'white';
	padding:5px;
	}
	.close .accordionItemContent{
	height:0px;
	transition:height 1s ease-out;
	
	  transform: scaleY(0);
	float:left;
	display:block;
	
	
	}
	.open .accordionItemContent{
	    padding: 20px;
	background-color: #f0f1f1;
	border: 1px solid #ddd;
	width: 100%;
	
	margin: 0px 0px 10px 0px;
	display:block;
	
	  transform: scaleY(1);
	
	  transform-origin: top;
	
	  transition: transform 0.4s ease;
	    box-sizing: border-box;
	}
	
	.open .accordionItemHeading{
	margin:0px;
	
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	
	border-bottom-right-radius: 0px;
	border-bottom-left-radius: 0px;
	background-color: #073e63;
	color: #cdd7d8;
	}

	.dot-icon {
		display: inline-block;
		width: 5px; /* Set width for the dot */
		height: 5px; /* Set height for the dot */
		background-color: #326AFF; /* Color of the dot */
		border-radius: 50%; /* Make it circular */
		margin-right: 5px; /* Space between the dot and text */
		vertical-align: middle; /* Aligns the dot vertically */
}