/* Face the Divide Theme – Silver & Yellow Accent */
.headlines {
  color: #FCEA2B; /* logo yellow headlines */
  font-family: 'face-the-divide', 'Headline', sans-serif;
}
a:link,
a:visited {
  color: #D0CFCE; /* logo silver for body links */
}
a:hover {
  color: #FCEA2B; /* shift to yellow on hover */
}
/* Game theme selected state — add new .selected selectors here as needed */
.wizardChoice.selected,
.hostVoteBtn.selected {
    background: linear-gradient(135deg, #2a2a2a, #4a4a48, #6e6d68) !important;
    border-top: 0.25vw solid #FCEA2B !important;
    border-left: 0.25vw solid #FCEA2B !important;
    border-right: 0.25vw solid #6e6d68 !important;
    border-bottom: 0.25vw solid #6e6d68 !important;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, select:focus, select:active, div.checkboxGroup label:focus, div.checkboxGroup label:active, textarea:focus, input[type="number"], input[type="datetime-local"]:focus {
    border-top: 0.25vw solid #FCEA2B !important;
    border-left: 0.25vw solid #FCEA2B !important;
    border-right: 0.25vw solid #6e6d68 !important;
    border-bottom: 0.25vw solid #6e6d68 !important;
}
@keyframes drift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}