.word-tile {
	display: flex;
	flex-direction: row;
    border-style: none;
    border-radius: 5px;
    width: 40%;
    align-items: center;
    min-width: 150px;
    max-width: 170px;
    padding: 0px 10px;
    background-color: rgb(253, 94, 83);
    flex-grow: 1;
    cursor: pointer;
}

.word-tile:hover {
	background-color: #ffb18b;
}

.word-tile-text {
	font-family: hand;
	font-size: 16px;
	text-align: left;
	padding: 3px 5px;
	min-width: 50%;
	user-select: none;
	margin: 0px;
	color: whitesmoke;
}

.word-progress-bar-container {
	flex-grow: 1;
	background-color: #ddd;
	width: 100%;
	height: 7px;
	border-width: 0px;
	border-radius: 20px;
}

.word-progress-bar {
	background-color: #72cc50;
	height: 100%;
	border-radius: 20px;
}

.word-tile-progress-bar-green, .word-tile-progress-bar-grey {
	flex-grow: 1;
	height: 5px;
	border-width: 0px;
}

.word-tile-progress-bar-green {
	background-color: #72cc50;
}

.word-tile-progress-bar-grey {
	background-color: #e3e3e3;
}