.slots {
	background: var(--white);
	margin: auto;
	margin-bottom: 20px;
	border-radius: 7px;
}

.slot:empty {
	background: #f4ede2;
	border: solid 0px var(--black);
	z-index: -99;
	position: relative;
}

.message {
	height: 40px;
	line-height: 40px;
	padding-left: 10px;
	padding-right: 10px;
	border-radius: 7px;
	width: 100%;
	width: fit-content;
	margin: auto;
	margin-top: -70px;
	margin-bottom: 30px;
	background: var(--white);
	z-index: 99;
	position: relative;
}

.message:empty {
	background: none;
}

.letter,
.slot {
	font-weight: 800;
	text-align: center;
	font-size: 26px;
	background: #f5ce94;
	color: black;
	display: inline-block;
	margin: 2px;
	height: 60px;
	line-height: 60px;
	border-radius: 7px;
	vertical-align: bottom;
	border-bottom: 5px solid rgba(0, 0, 0, .1);
	cursor: pointer;
	/* Mobile touch optimization */
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}

.letter:empty {
	visibility: hidden;
}

.controls div {
	padding: 8px;
	color: var(--white);
	background: var(--black);
	border-radius: 7px;
	width: calc(25% - 4px);
	margin: 2px;
	cursor: pointer;
}

.word {
	color: red;
}

.share,
.playnow {
	background: #58a351;
	border-bottom: 5px solid rgba(0, 0, 0, .1);
	color: var(--white);
	font-weight: 600;
}

.button:hover {
	filter: invert(10%);
}

svg {
	vertical-align: middle;
}


.pastgame {
	display: flex;
	justify-content: space-between;
	padding: 5px 0;
	border-bottom: 1px solid #ddd;
}

.pastgamescore {
	color: grey;
}


/* To avoid whitespace between elements*/
.games {
	font-size: 0px;
}

.game {
	font-size: 22px;
	background: var(--white);
	border-radius: 7px;
	display: inline-block;
	width: calc(50% - 10px);
	margin-bottom: 20px;
	padding: 10px;
	padding-top: 20px;
	padding-bottom: 20px;
}


.game p {
	padding: 0px;
	font-size: 20px;
	color: #a2a2a2;
}

.green {
	color: #00a232 !important;
}


.game:nth-child(even) {
	margin-left: 10px;
}

.game:nth-child(odd) {
	margin-right: 10px;
}

.emoji {
	font-size: 32px;
}