button,
input[type='submit'] {
  border-radius: 3px;
  font-family: "Muli", "Helvetica", "Arial", "sans-serif";
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 1rem;
  outline: none;
  background-color: #5E636C;
  border: 0;
  cursor: pointer;
  color: #fff;
  min-width: 200px;
  padding: 0.5rem 2rem; }
  button:hover,
  input[type='submit']:hover {
    background-color: #52575e; }
  button.button-red,
  input[type='submit'].button-red {
    background-color: #E55935; }
    button.button-red:hover,
    input[type='submit'].button-red:hover {
      background-color: #e2461e; }
  button.button-blue,
  input[type='submit'].button-blue {
    background-color: #5BBFEC; }
    button.button-blue:hover,
    input[type='submit'].button-blue:hover {
      background-color: #44b6e9; }
  button.button-green,
  input[type='submit'].button-green {
    background-color: #9BC53E; }
    button.button-green:hover,
    input[type='submit'].button-green:hover {
      background-color: #8cb436; }
  button.button-yellow,
  input[type='submit'].button-yellow {
    background-color: #F9D023; }
    button.button-yellow:hover,
    input[type='submit'].button-yellow:hover {
      background-color: #f8cb0a; }
  button.button-purple,
  input[type='submit'].button-purple {
    background-color: #9C85C4; }
    button.button-purple:hover,
    input[type='submit'].button-purple:hover {
      background-color: #8e74bc; }
  button.button-orange,
  input[type='submit'].button-orange {
    background-color: #FF9F00; }
    button.button-orange:hover,
    input[type='submit'].button-orange:hover {
      background-color: #e68f00; }
  button.button-lightgray,
  input[type='submit'].button-lightgray {
    background-color: #DFE0E1;
    color: #3C424C; }
    button.button-lightgray:hover,
    input[type='submit'].button-lightgray:hover {
      background-color: #d2d3d5; }
  button:active,
  input[type='submit']:active {
    box-shadow: 0px 1px 15px 0px rgba(0, 0, 0, 0.1); }

label {
  color: #aaa;
  display: block;
  font-family: "Muli", "Helvetica", "Arial", "sans-serif";
  font-size: 0.8rem;
  font-weight: 300;
  width: 100%; }

input[type='text'],
input[type='password'],
input[type='email'],
input[type='search'],
input[type='tel'],
input[type='url'] {
  border-radius: 3px;
  font-family: "Muli", "Helvetica", "Arial", "sans-serif";
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 1rem;
  outline: none;
  background-color: #F9F9F9;
  border: 1px solid #DFE0E1;
  padding: 0.5rem;
  width: 100%; }
  input[type='text']:hover,
  input[type='password']:hover,
  input[type='email']:hover,
  input[type='search']:hover,
  input[type='tel']:hover,
  input[type='url']:hover {
    background-color: #EDEEEF; }
  input[type='text']:focus,
  input[type='password']:focus,
  input[type='email']:focus,
  input[type='search']:focus,
  input[type='tel']:focus,
  input[type='url']:focus {
    background-color: #EDEEEF;
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.1); }

label.checkbox-label {
  display: inline;
  margin-left: 1rem; }

input:required {
  box-shadow: none; }

select {
  border-radius: 3px;
  font-family: "Muli", "Helvetica", "Arial", "sans-serif";
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 1rem;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #F9F9F9;
  background-image: url("../img/icons/tiny-triange.svg");
  background-position: right 10px center;
  background-repeat: no-repeat;
  border: 1px solid #DFE0E1;
  padding: 0.5rem;
  width: 100%; }
  select:hover {
    background-color: #EDEEEF; }
  select:focus {
    background-color: #EDEEEF;
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.1); }

.toast {
  background-color: #3C424C;
  border-radius: 3px;
  bottom: -3rem;
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.1);
  color: #fff;
  font-family: "Muli", "Helvetica", "Arial", "sans-serif";
  font-weight: 700;
  opacity: 0;
  padding: 1rem 2rem;
  position: fixed;
  right: 1rem;
  transition: all ease 0.8s;
  z-index: 2000; }

.toast.active {
  bottom: 1rem;
  opacity: 1; }

.toast.success {
  background-color: #9BC53E; }

.toast.error {
  background-color: #E55935; }

.modal-container {
  align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  height: 100vh;
  justify-content: center;
  left: 0;
  padding-top: 90px;
  position: fixed;
  top: 0;
  transition: all ease 0.4s;
  width: 100vw; }
  .modal-container .modal-image {
    display: block;
    height: 80;
    margin: 1rem auto; }
  .modal-container h2 {
    text-align: center; }

* {
  box-sizing: border-box;
  line-height: 1.4; }

body {
  background-color: #F4F4F4;
  margin: 0; }

h1, h2, h3, h4, h5, h6 {
  color: #3C424C;
  font-family: "Muli", "Helvetica", "Arial", "sans-serif";
  font-weight: 800; }

p, span, small, li, table {
  color: #5E636C;
  font-family: "Muli", "Helvetica", "Arial", "sans-serif";
  font-weight: 300; }

a {
  color: #3C424C;
  text-decoration: none; }

hr {
  background-color: #EDEEEF;
  border: 0;
  height: 1px; }

table {
  border-collapse: separate;
  border-spacing: 0 15px;
  transition: all ease 0.3s;
  width: 100%; }

tr {
  background-color: #F9F9F9;
  transition: all ease 0.3s; }

td, th {
  border-bottom: 1px solid #DFE0E1;
  border-top: 1px solid #DFE0E1;
  padding: 0.5em;
  text-align: center;
  vertical-align: middle; }

th:first-child,
td:first-child {
  border-left: 1px solid #DFE0E1;
  border-radius: 3px 0 0 3px; }

th:last-child,
td:last-child {
  border-right: 1px solid #DFE0E1;
  border-radius: 0 3px 3px 0; }

.masthead {
  background-color: #fff;
  border-bottom: 1px solid #DFE0E1;
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  width: 100%;
  padding: 0 30px;
  position: fixed;
  top: 0;
  left: 0;
  user-select: none;
  z-index: 1001; }
  .masthead .top-logo-container a img {
    transition: all ease 0.3s; }
  .masthead .top-logo-container a img:hover {
    transform: scale(1.02);
    transition: all ease 0.3s; }
  .masthead .no-user a, .masthead .no-user button {
    margin-left: 2rem; }
  .masthead .no-user a:hover {
    text-decoration: underline; }
  .masthead .no-user button {
    margin-bottom: 0; }
  .masthead .user {
    align-items: center;
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    padding: 7px 12px;
    transition: all ease 0.3s; }
  .masthead .user:hover {
    background-color: #F9F9F9; }
  .masthead .user-name {
    font-weight: 800; }
  .masthead .user-avatar {
    padding: 0 16px;
    width: 80px; }
  .masthead .flipped {
    transform: rotate(180deg); }
  .masthead .user-menu {
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.1);
    list-style: none;
    margin: 0;
    padding-left: 0;
    position: absolute;
    top: 90px;
    right: 0;
    z-index: 1000; }
    .masthead .user-menu li a {
      background-color: #fff;
      border-bottom: 1px solid #DFE0E1;
      border-left: 1px solid #DFE0E1;
      display: block;
      padding: 1rem 0;
      text-align: center;
      width: 240px; }
    .masthead .user-menu li a:hover {
      background-color: #F9F9F9; }

.container {
  position: relative;
  width: 100vw; }

.main {
  padding-bottom: 340px;
  padding-top: 130px;
  width: 100vw; }

.background {
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: -100; }
  .background.partial {
    height: 340px; }
  .background.blue {
    background-image: url(../img/backgrounds/app/icons-blue.svg); }
  .background.clouds {
    background-image: url(../img/backgrounds/app/clouds.svg); }
  .background.green {
    background-image: url(../img/backgrounds/app/icons-green.svg); }
  .background.red {
    background-image: url(../img/backgrounds/app/icons-red.svg); }
  .background.yellow {
    background-image: url(../img/backgrounds/app/icons-yellow.svg); }
  .background.full {
    height: 100vh; }
  .background.fields {
    background-image: url("../img/backgrounds/game/fields.svg"); }
  .background.park {
    background-image: url("../img/backgrounds/game/park.svg"); }
  .background.rocket {
    background-image: url("../img/backgrounds/game/rocket.svg"); }
  .background.town {
    background-image: url("../img/backgrounds/game/town.svg"); }

.card {
  background-color: #fff;
  border: 1px solid #DFE0E1;
  border-radius: 5px;
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.1);
  margin: 20px auto;
  padding: 20px;
  transition: all ease 0.5s;
  width: 640px;
  z-index: 500; }

.card a {
  text-decoration: underline; }
  .card a:hover {
    text-decoration: none; }

.card .row {
  display: flex;
  margin-bottom: 1rem;
  width: 100%; }
  .card .row .col {
    margin: 0 10px; }
  .card .row .col:first-child {
    margin-left: 0; }
  .card .row .col:last-child {
    margin-right: 0; }
  .card .row .col-1 {
    flex-grow: 1; }
  .card .row .col-2 {
    flex-grow: 2; }
  .card .row .col-3 {
    flex-grow: 3; }
  .card .row .col-4 {
    flex-grow: 4; }

.card.loading {
  padding: 5rem 3rem;
  text-align: center; }

.card.hero {
  align-items: center;
  display: flex;
  min-height: 240px; }
  .card.hero .image {
    align-items: center;
    border-right: 1px solid #EDEEEF;
    display: flex;
    height: 180px;
    justify-content: center;
    padding: 0 2rem;
    width: 180px; }
    .card.hero .image img {
      max-height: 170px;
      max-width: 170px;
      width: 100%; }
  .card.hero .content {
    flex-grow: 1;
    padding: 1rem;
    text-align: center; }
  .card.hero .fg-score {
    color: #1A212D;
    font-family: "Didact Gothic", "Helvetica", "Arial", sans-serif;
    font-size: 3rem;
    margin: 1rem 0;
    vertical-align: middle; }
    .card.hero .fg-score img {
      height: 3.5rem;
      margin-right: 12px;
      transform: translateY(12px); }

.level-select-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  width: 640px; }
  .level-select-row .level-select {
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    margin: 10px;
    height: 200px;
    width: 200px;
    transition: all ease 0.3s; }
    .level-select-row .level-select:hover {
      transform: scale(1.05);
      transition: all ease 0.3s; }
    .level-select-row .level-select h3 {
      margin: 0; }
    .level-select-row .level-select p {
      margin: 0.5rem 0 0 0; }
  .level-select-row .level-select.disabled {
    cursor: default;
    opacity: 0.6; }
    .level-select-row .level-select.disabled:hover {
      transform: scale(1); }
  .level-select-row.nouns .level-select h3 {
    color: #E55935; }
  .level-select-row.nouns .level-select.completed {
    background-image: url("../img/backgrounds/level-complete/red-complete.svg"); }
  .level-select-row.verbs .level-select h3 {
    color: #9BC53E; }
  .level-select-row.verbs .level-select.completed {
    background-image: url("../img/backgrounds/level-complete/green-complete.svg"); }
  .level-select-row.adjectives .level-select h3 {
    color: #5BBFEC; }
  .level-select-row.adjectives .level-select.completed {
    background-image: url("../img/backgrounds/level-complete/blue-complete.svg"); }
  .level-select-row.prepositions .level-select h3 {
    color: #9C85C4; }
  .level-select-row.prepositions .level-select.completed {
    background-image: url("../img/backgrounds/level-complete/purple-complete.svg"); }
  .level-select-row.adverbs .level-select h3 {
    color: #FF9F00; }
  .level-select-row.adverbs .level-select.completed {
    background-image: url("../img/backgrounds/level-complete/orange-complete.svg"); }
  .level-select-row.pronouns .level-select h3 {
    color: #F9D023; }
  .level-select-row.pronouns .level-select.completed {
    background-image: url("../img/backgrounds/level-complete/yellow-complete.svg"); }
  .level-select-row .level-select:first-child {
    margin-left: 0; }
  .level-select-row .level-select:last-child {
    margin-right: 0; }

.avatar-selector {
  background-color: #fafafa;
  border: 1px solid #EDEEEF;
  border-radius: 2px;
  text-align: center; }
  .avatar-selector .other-avatar {
    align-items: center;
    display: inline-flex;
    font-size: 2rem;
    justify-content: center;
    height: 100px;
    margin: 1rem;
    position: relative;
    transition: 0.3s all ease;
    width: 100px; }
  .avatar-selector .other-avatar img {
    height: 95%;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    z-index: 900; }
  .avatar-selector .other-avatar span {
    font-weight: 700;
    opacity: 0;
    z-index: 1000; }
  .avatar-selector .other-avatar:hover {
    cursor: pointer;
    transform: scale(1.1);
    transition: 0.3s all ease; }
  .avatar-selector .other-avatar.disabled img {
    opacity: 0.5;
    transition: all ease 0.3s; }
  .avatar-selector .other-avatar.disabled span {
    opacity: 0;
    transition: all ease 0.3s;
    user-select: none; }
  .avatar-selector .other-avatar:hover.disabled {
    transform: none; }
    .avatar-selector .other-avatar:hover.disabled img {
      opacity: 0.1;
      transition: all ease 0.3s; }
    .avatar-selector .other-avatar:hover.disabled span {
      opacity: 1;
      transition: all ease 0.3s; }

.leaderboard tr td img {
  height: 1rem;
  padding: 0 1rem;
  transform: scale(3.75); }

.leaderboard tr td span.score {
  color: #FF9F00;
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 800;
  transform: scale(1.4); }

.leaderboard tr.me {
  background-color: #5E636C;
  color: white; }
  .leaderboard tr.me td {
    border-color: #5E636C; }
  .leaderboard tr.me td span.score {
    color: white; }

.manage-codes tbody tr td input[type=text] {
  border: 1px solid #F9F9F9;
  cursor: text;
  margin-bottom: 0;
  text-align: center;
  width: auto; }
.manage-codes tbody tr td input[type=text]:focus {
  border: 1px solid #DFE0E1; }
.manage-codes tbody tr td .action {
  cursor: pointer;
  transition: all ease 0.3s; }
  .manage-codes tbody tr td .action:hover {
    transform: scale(1.1);
    transition: all ease 0.3s; }

.device-warning {
  display: none; }

@media (max-width: 660px) {
  .device-warning {
    align-items: center;
    background-color: #fff;
    display: flex;
    height: 100vh;
    justify-content: center;
    left: 0;
    position: fixed;
    top: 0;
    width: 100vw; }
    .device-warning .card {
      text-align: center;
      width: 95%;
      z-index: 999999999; } }
.loader-container {
  align-items: center;
  background-color: white;
  display: none;
  height: 100vh;
  justify-content: center;
  left: 0;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 10000; }

.loader .dot {
  animation-duration: 1s;
  animation-name: loaderPulse;
  animation-iteration-count: infinite;
  background-color: #E55935;
  border-radius: 50%;
  display: inline-block;
  height: 18px;
  margin: 4px;
  width: 18px; }

.loader .dot:nth-child(1) {
  animation-delay: 0s; }

.loader .dot:nth-child(2) {
  animation-delay: 0.1s; }

.loader .dot:nth-child(3) {
  animation-delay: 0.2s; }

.footer {
  align-items: center;
  background-color: #fff;
  bottom: 0px;
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 300px;
  justify-content: space-around;
  padding: 2rem 0;
  position: absolute;
  width: 100vw; }

.footer .footer-links ul {
  list-style: none;
  padding: 0; }
  .footer .footer-links ul li {
    display: inline;
    padding: 0 1rem; }
  .footer .footer-links ul li a:hover {
    text-decoration: underline; }

@keyframes loaderBounce {
  0% {
    transform: translateY(0px); }
  20% {
    transform: translateY(-10px); }
  50% {
    transform: translateY(0px); } }
@keyframes loaderPulse {
  0% {
    transform: scale(1); }
  20% {
    transform: scale(1.2); }
  50% {
    transform: scale(1); } }
@keyframes pulse {
  0% {
    transform: scale(1); }
  45% {
    transform: scale(1.3); }
  100% {
    transform: scale(1); } }
@keyframes shake {
  0% {
    transform: translatex(0); }
  10% {
    transform: translatex(-50px); }
  20% {
    transform: translatex(50px); }
  30% {
    transform: translatex(-40px); }
  40% {
    transform: translatex(40px); }
  50% {
    transform: translatex(-30px); }
  60% {
    transform: translatex(30px); }
  70% {
    transform: translatex(-20px); }
  80% {
    transform: translatex(20px); }
  90% {
    transform: translatex(-10px); }
  100% {
    transform: translatex(0); } }
@keyframes glow {
  0% {
    opacity: 1; }
  50% {
    opacity: 0.6; }
  100% {
    opacity: 1; } }
.glow {
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-name: glow; }

.game {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: space-between;
  width: 100vw; }
  .game .meta {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 30px 30px;
    width: 100vw; }
  .game .meta-data {
    align-items: center;
    display: flex; }
    .game .meta-data img {
      display: inline-block;
      height: 40px;
      margin-right: 15px; }
    .game .meta-data div {
      display: inline-flex;
      flex-direction: column;
      text-align: center; }
    .game .meta-data span {
      font-family: "Didact Gothic", "Helvetica", "Arial", sans-serif;
      font-size: 2rem;
      margin-top: -5px; }
  .game .question {
    text-align: center; }
    .game .question .instruction {
      font-size: 1.2rem; }
    .game .question .sentence {
      font-family: "Didact Gothic", "Helvetica", "Arial", sans-serif;
      font-size: 3.2rem;
      user-select: none; }
    .game .question .sentence.disabled {
      animation-name: shake;
      animation-duration: 2.5s; }
      .game .question .sentence.disabled span {
        color: #E55935; }
    .game .question .word {
      display: inline-block;
      user-select: none;
      transition: all ease 0.2s; }
    .game .question .word:hover {
      cursor: pointer;
      transform: scale(1.05);
      transition: all ease 0.2s; }
    .game .question .word.incorrect {
      color: #E55935; }
    .game .question .word.correct {
      animation-name: pulse;
      animation-duration: 0.3s;
      color: #9BC53E; }
    .game .question .level {
      font-size: 1.2rem;
      font-weight: 800; }
    .game .question .level img {
      height: 2.2rem; }
  .game .controls {
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.1);
    padding-top: 1rem;
    text-align: center;
    width: 100vw; }

.modal-game {
  text-align: center; }

/*# sourceMappingURL=style.css.map */
