.spelling-bee-solver {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 2.5rem 0;
}
.spelling-bee-solver p {
	width: 100%;
}
.letters-container {
	display: flex;
    flex-wrap: wrap;
	margin: 1.5rem 0;
}
.letters-column-side {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	margin: 0 -0.8rem;
}
.letters-column-middle {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
}
.letter input {
	width: 4rem;
	height: 4rem;
	border: 0.125rem solid #e7e7e7;
	background-color: #e7e7e7;
	margin: 0.4rem 0;
	padding: 0.3125rem;
	font-family: sans-serif;
	font-size: 2.5rem;
	font-weight: bold;
	text-transform: uppercase;
	text-align: center;
    outline: none;
	clip-path: polygon(25% 0,75% 0,100% 50%,75% 100%,25% 100%,0 50%);
}
.letter.required-letter input {
	border-color: #f7da21;
	background-color: #f7da21;
}
.button-container {
	margin: 0.625rem 0;
}
.submit-button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 3.125rem;
	height: 3.125rem;
	border: none;
	border-radius: 50%;
	color: white;
	font-size: 1.75rem;
	cursor: pointer;
	background-color: midnightblue;
	box-shadow: 0.125rem 0.125rem 0.3125rem rgba(0, 0, 0, 0.2);
}
.solution-count-container {
	margin: 0.625rem 0;
}
.alphabetical-list-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0.625rem 0;
}
.word-box {
	margin: 0.125rem;
	padding: 0.625rem;
	border-radius: 0.625rem;
	font-weight: bold;
	background-color: #d3d6da;
}
.panagram {
	background-color: #f7da21;
}
.loader {
	display: none;
	width: 2rem;
	height: 2rem;
	border: 0.25rem solid #f3f3f3;
	border-top: 0.25rem solid #3498db;
	border-radius: 50%;
	animation: spin 2s linear infinite;
}
@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}
.visually-hidden {
	border: 0;
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
}