/* Desktop Animation */
.msa-car-wrapper {
	position: absolute;
	width: 223.39px;
	height: 1566px;
	left: -15%;
	top: -100px !important;
	overflow-y: visible;
}

#car {
	width: 44px;
	height: 55px;
	background-image: url('../images/bike.png');
	background-size: contain;
	background-repeat: no-repeat;
	pointer-events: none;
	z-index: 5;
	transform-origin: center center;
	position: absolute;
	top: 0;
	left: 0;
	transition: transform 0.1s linear;
}

#stopContainer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 10;
}


.stop-card {
	position: absolute;

	z-index: 11;
	width: 330px;

	height: fit-content;
	background: #FFFFFF;
	box-shadow: 0px 0px 14px 5px #0000002E;
	border-radius: 11px;
	padding: 12px;
	display: flex;
	gap: 10px;
	font-family: var(--font-primary);
	box-sizing: border-box;

	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
}

.side-box {
	position: absolute;
	width: 12px;
	height: 26px;
	background: #806D61;
	border: 0.8px solid #000000;
	z-index: 10;
	border-radius: 2px;
	opacity: 0;
	transform-origin: center center;
}

.stop-card img {
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	align-self: flex-start;
}

.stop-card-content {
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}

.stop-card-title {
	font-weight: 500;
	font-size: 20px;
	line-height: 28px;
	letter-spacing: 0%;
	text-decoration: underline;
	color: #000000;
}


@media (max-width: 1200px) {

	.side-box {
		height: 23px;
	}

	.stop-card{
		width: 250px;
	}
}

@media (max-width: 992px) {
	.stop-card{
		width: 330px;
	}
	
	.stop-card-title {
		font-size: 18px;
	}

	.side-box {
		height: 22px;
	}

}


/* Mobile Animation */
#msaMobileWrapper{
	position: relative;
	overflow: hidden;
}

.msa-car-wrapper-mobile {
	/* position: relative; */
	width: 100vw;
	height: 450px;
	overflow: hidden;
}

.msa-car-scroll-container {
	position: absolute;
    bottom: 46%;
    width: 100%;
    height: 80px;
    /* overflow-x: auto; */
}
.msa-car-scroll-container.scroll {
	will-change: transform;
	transition: transform 1s ease-in;
}

.msa-path {
	width: 300%;
	height: 190px;
	min-width: 1000px;
}

#carMobile {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 55px;
	height: 66px;
	background-image: url('../images/bike.png');
	background-size: contain;
	background-repeat: no-repeat;
	z-index: 10;
}

@media (max-width: 768px) {
	#carMobile {
		left: 10%;
	}
}

@media (max-width: 576px) {
	#carMobile {
		left: 8%;
		width: 45px;
		height: 54px;
	}
	.msa-car-scroll-container {
    	bottom: 47%;
	}
}

@media (max-width: 360px) {
	#carMobile {
		left: 5%;
		width: 40px;
		height: 48px;
	}
	.msa-car-scroll-container {
		bottom: 48%;
	}
}

.mobile-dot {
	transform: translate(90%, 20%) rotate(108deg);
}


.side-box-mobile {
	position: absolute;
	width: 26px;
	height: 12px;
	background: #806D61;
	border: 0.8px solid #000000;
	z-index: 10;
	border-radius: 2px;
}


