::-webkit-scrollbar {
	width: 1vw;
	height: 5vh;
}

/* Track */
::-webkit-scrollbar-track {
	background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: var(--main);
	border-radius: 150px;
}

.ic-mouse-scroll {
	position: absolute;
	bottom: 0;
	left: calc(50vw - 1rem);
	border-radius: 1rem;
	margin-bottom: 2rem;
}

.ic-mouse-scroll:before {
	content: "";
	display: block;
	width: 2rem;
	height: 3rem;
	border-radius: 1rem;
	background-color: rgba(0, 0, 0, 0.3);
	box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.6);
	transition: box-shadow 0.6s;
}

.ic-mouse-scroll:hover:before {
	box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 1);
}

.ic-mouse-scroll:after {
	content: "";
	display: block;
	position: absolute;
	right: 0;
	left: 0;
	width: 0.25rem;
	height: 0.25rem;
	border-radius: 50%;
	margin: auto;
	background-color: #fff;
	animation: ani-ic-mouse-scroll 2s infinite ease-out;
}

@keyframes ani-ic-mouse-scroll {
	0% {
		transform: scale(1);
		top: 0.25rem;
		opacity: 0;
	}

	75% {
		transform: scale(1.25);
		top: 1.25rem;
		opacity: 1;
	}

	100% {
		transform: scale(1);
		top: 1.5rem;
		opacity: 0;
	}
}

.ic-mouse-scroll p {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	margin: 0 0 0 3rem;
	font-size: 0.75rem;
	font-weight: bold;
	line-height: 3rem;
	letter-spacing: 0.125rem;
	white-space: nowrap;
	color: rgba(255, 255, 255, 1);
	text-shadow: 0 0 4px rgb(0 0 0 / 90%), 0 0 8px rgb(0 0 0 / 60%);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.6s;
}

.ic-mouse-scroll:hover p {
	opacity: 1;
}