
/* page */
/* 
.game-title span.icon::after {
	content: "\3a";
}
 */
.game-title span.icon::before {
    color: var(--medblue);;
}

p.pageSubhead.start {
    margin-bottom: 5px;
    font-size: 18px;
}
.play-area .round #choices {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
	column-gap: 6px;
    overflow: hidden;
    width: 104%;
	padding: 5px 2%;
    margin-left: -2%;
}
.play-area .round #choices .item {
    border-radius: 10px;
	cursor: pointer;
    width: 100%;
    text-transform: capitalize;
    font-family: "Arvo", serif;
    text-align: center;
    font-size: 18px;
	letter-spacing: 0.235px;
	-webkit-tap-highlight-color: transparent;
    padding: 10px 5px;
	line-height: 20px;
}

/* user selections */
.selections {
    justify-content: center;
    column-gap: 15px;
    overflow: hidden;
}
.selections .item.pop {
    line-height: 26px;
}
.selections .item span.choice,
.selections .item span.answer,
.selections .item span.displayWord {
    display: inline-block;
}
.selections .item span.choice {
	padding-right: 3px;
}
.selections span.answer.cw {
    color: green;
}
.selections span.word-1:after,
.selections span.word-3:after {
	content: ":";
}
.selections span.word-2:after {
	content: "::";
}
.selections span.word-1:after,
.selections span.word-2:after,
.selections span.word-3:after {
	padding: 0 3px;
	color: black;
}
.selections .item.incorrect span.displayWord {
    color: red;
    text-decoration: line-through;
    padding-left: 4px;
}

/* testing */
.link-1 {
    background: var(--ch-dkblue);
}
.link-2 {
    background: var(--ch-salmon);
}
.link-3 {
    background: var(--ch-coral);
}
.link-4 {
    background: var(--ch-pink);
}
.link-5 {
    background: var(--ch-blue);
}



@media only screen and (max-width: 599px) {
	.play-area .round #choices .item {
		font-size: 16px;
	}
	.play-area .round #choices .item.xs {
		font-size: 14px;
	}
}
@media only screen and (max-width: 410px) {
	.play-area .round #choices .item.lg {
		font-size: 16px;
	}
	.play-area .round #choices .item.ml {
		font-size: 15px;
	}
	.play-area .round #choices .item.med {
		font-size: 14px;
	}
	.play-area .round #choices .item.ms {
		font-size: 13px;
	}
	.play-area .round #choices .item.sm {
		font-size: 12px;
	}
	.play-area .round #choices .item.xs {
		font-size: 11px;
	}
}

/* for while testing in place */
@media screen and (max-height: 710px) and (max-width: 500px) {
	.selections {
		height: 140px;
		overflow-y: scroll;
		overflow-x: hidden;
		justify-content: start;
	}
	.selections.full {
		height: initial;
		overflow: hidden;
	}
	.finish-inner p.result.show {
		margin: 10px 0;
	}
	p.thank-you {
		margin-top: 0;
	}
}
@media screen and (max-height: 600px) and (max-width: 320px) {
	.selections {
		height: 80px;
	}
}
