.pangolin-scroll {
	max-width: 40px;
	margin: 0 auto;
	background-color: transparent;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	height: 120px; /* Adjust height as needed */
	overflow: visible;
	padding-bottom: 20px;
}

.pangolin-scroll .pangolin-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	opacity: 0.5;
	transition: opacity 500ms ease-in-out;
}

.pangolin-scroll .pangolin-frame {
	width: 40px;
	height: auto;
	display: none;
}

.pangolin-scroll .pangolin-frame.active {
	display: block;
}

.pangolin-scroll .chevron-container {
	position: absolute;
	top: 40px; /* Adjust based on pangolin final position */
	display: flex;
	flex-direction: column;
	align-items: center;
	opacity: 0;
	transition: opacity 500ms ease-in-out;
}

.pangolin-scroll .chevron {
	width: 16px;
	height: 10px;
	margin-bottom: 8px;
	animation: bounce 2s infinite ease-in-out;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0.4;
}

.pangolin-scroll .chevron svg {
	width: 100%;
	height: auto;
}

.pangolin-scroll .scroll-text {
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: rgba(255, 255, 255, 0.3);
}

@keyframes bounce {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(8px);
	}
}
