html {
  position: relative;
  padding: 0;
  margin: 0;
}

body {
  height: 100% !important;
  padding: 0;
  margin: 0;
  background-color: #2196f3;
}

#app {
  height: 100%;
}

#gameBoard,
#endOfGameScreen {
  text-align: center;
  padding: 10px;
  position: relative;
  display: block;
  margin: auto;
  height: 100vh;
  width: 100%;
  max-width: 768px;
}

.clickable-word-div {
  border-radius: 5px;
  width: 30%;
  height: 35px;
  cursor: pointer;
  margin: 4px;
  font-size: 16px;
  max-width: 200px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  position: relative;
  vertical-align: top;
}

.boxshadow {
  box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.75);
  border: 1px solid darkgray;
}

.hint {
  animation: hint 0.5s 0.5s ease-in-out infinite;
}

@keyframes hint {
  0% {
    background-color: white;
  }
  50% {
    background-color: rgba(136,238,152,1);
  }
  100% {
    background-color: white;
  }
}

.correct {
  pointer-events: none;
  animation-name: correct;
  animation-duration: 0.5s;
  backface-visibility: hidden;
  opacity: 0.5;
}

@keyframes correct {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.no-click {
  pointer-events: none;
}

#canvasPrompt {
  width: 100%;
  margin-top: 15px;
  margin-bottom: 15px;
}

.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[v-cloak] {
  display: none;
}

button,
input {
  outline: none !important;
}

#missing-word-container {
  margin-bottom: 10px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.missing-word,
.punc {
  border-radius: 5px;
  font-size: 24px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1px;
  padding: 5px;
}

.missing-word {
  background-color: white;
}

.punc {
  color: white;
}

.img-prompt {
  height: 100px;
  width: 100px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 90%;
  display: block;
  background-color: white;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.49) -3px 3px 3px -1px;
  border: 1px solid black;
  padding: 10px;
  margin: auto;
  margin-top: 5px;
}

.big-img {
  width: 200px;
  height: 200px;
}

.big-img-inline {
  position: initial;
  margin-bottom: 10px;
}

/* Width */

.scroll-list::-webkit-scrollbar {
  width: 10px;
}

/* Track */

.scroll-list::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */

.scroll-list::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */

.scroll-list::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.link-unstyled,
.link-unstyled:hover,
.link-unstyled:visited,
.link-unstyled:active {
  color: black;
}

.link-unstyled-white,
.link-unstyled-white:hover,
.link-unstyled-white:visited,
.link-unstyled-white:active {
  color: white;
}

/* kosugi-maru-regular - latin_japanese */

@font-face {
  font-family: "Kosugi Maru";
  font-style: normal;
  font-weight: 400;
  src: local("Kosugi Maru"), local("KosugiMaru-Regular"),
    url("/fonts/kosugi-maru-v6-latin_japanese-regular.woff2") format("woff2"),
    /* Chrome 26+, Opera 23+, Firefox 39+ */
      url("/fonts/kosugi-maru-v6-latin_japanese-regular.woff") format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* baloo-paaji-2-500 - latin */

@font-face {
  font-family: "Baloo Paaji 2";
  font-style: normal;
  font-weight: 500;
  src: local("Baloo Paaji 2 Medium"), local("BalooPaaji2-Medium"),
    url("https://study.lingolab.online/fonts/baloo-paaji-2-v1-latin-500.woff2")
      format("woff2"),
    /* Chrome 26+, Opera 23+, Firefox 39+ */
      url("https://study.lingolab.online/fonts/baloo-paaji-2-v1-latin-500.woff")
      format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* baloo-paaji-2-800 - latin */

@font-face {
  font-family: "Baloo Paaji 2";
  font-style: normal;
  font-weight: 800;
  src: local("Baloo Paaji 2 ExtraBold"), local("BalooPaaji2-ExtraBold"),
    url("https://study.lingolab.online/fonts/baloo-paaji-2-v1-latin-800.woff2")
      format("woff2"),
    /* Chrome 26+, Opera 23+, Firefox 39+ */
      url("https://study.lingolab.online/fonts/baloo-paaji-2-v1-latin-800.woff")
      format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* catamaran-500 - latin */

@font-face {
  font-family: "Catamaran";
  font-style: normal;
  font-weight: 500;
  src: local("Catamaran Medium"), local("Catamaran-Medium"),
    url("https://study.lingolab.online/fonts/catamaran-v6-latin-500.woff2")
      format("woff2"),
    /* Chrome 26+, Opera 23+, Firefox 39+ */
      url("https://study.lingolab.online/fonts/catamaran-v6-latin-500.woff")
      format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

.baloo-paaji2 {
  font-family: "Baloo Paaji 2" !important;
  font-weight: 500;
}

.baloo-paaji2-bold {
  font-family: "Baloo Paaji 2" !important;
  font-weight: 800;
}

.catamaran {
  font-family: "Catamaran" !important;
  font-weight: 500;
}

.star {
  background-image: url(https://study.lingolab.online/images/star.png);
  background-position: center;
  background-size: contain;
  width: 300px;
  height: 300px;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-repeat: no-repeat;
}

.star-point {
  background-color: white;
  border-radius: 50px;
  width: 100px;
  height: 40px;
  position: absolute;
  -webkit-box-shadow: 5px 5px 10px -2px rgba(0, 0, 0, 0.5);
  box-shadow: 5px 5px 10px -2px rgba(0, 0, 0, 0.5);
}

.star-point-inner {
  background-color: white;
  border-radius: 50px;
  width: 100px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  line-height: 1;
  font-family: "Baloo Paaji 2", sans-serif;
}

.star-holder {
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  width: 350px;
  height: 300px;
  margin-top: 5px;
}

#point1 {
  left: 0;
  right: 0;
  margin: auto;
}

#point2 {
  right: 0;
  top: 85px;
}

#point3 {
  right: 50px;
  bottom: 0;
}

#point4 {
  bottom: 0;
  left: 50px;
}

#point5 {
  left: 0;
  top: 85px;
}

.star_target_word {
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 180px;
  height: 50px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-align: center;
  font-family: "Baloo Paaji 2", sans-serif;
  line-height: 1;
}
