.alphabet-links {
	display:flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 25px 0px 30px 0px;
	padding: 0;
}

.alphabet-links li {
	margin: 0px 6px 0px 0px;
}

.alphabet-links li::before {
	display: none !important;
	content: unset !important;
}

.alphabet-links a {
	position: relative;
	display: inline-block;
	box-sizing: border-box;
	width: 32px;
	height: 32px;
	text-align: center;
	font-size: 15px;
	line-height: 32px;
	font-weight: bolder;
	border: 1px solid rgb(165, 165, 165);
	border-radius: 16px;
}

.alphabet-links a:hover {
	text-decoration: none;
}

.alphabet-links a::before {
	content: "";
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0;
	border-radius: 16px;
	box-shadow: inset 5px 5px 5px 0px rgba(0, 0, 0, 0.2);
	transition: opacity 250ms ease-in-out;
}

.alphabet-links a:hover::before {
	opacity: 1;
}
