@charset "UTF-8";
@media all {
	.scroll3 {
		display: flex;
		align-items: center;
	}

	.scroll3-item {
		height: 50px;
		width: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.scroll3-item a {
		height: 25px;
		width: 25px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: 1px solid #000000;
		text-decoration: none;
		color: #3c3c3c;
		background-color: #FFFFFF;
	}

	.scroll3-item a:focus {
		background-color: #dedede;
	}

	.scroll3-item a:hover {
		background-color: #a0a0a0;
		color: #ffffff;
	}

	.scroll3-item.disabled a{
		background-color: #a0a0a0;
		color: #ffffff;
		cursor: default;
		pointer-events: none;
	}

	.scroll3-item:first-of-type {
		letter-spacing: -3px;
	}
}