/*
	Typography mixin
 */
/* CSS Document */
#matching-template-container {
  background-color: #afdff9;
  font-family: twinkl, Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

:focus {
  outline: none;
}

.border-radius {
  border-radius: 8px;
}

.text-button.play {
  width: 40%;
  line-height: 1.15;
  padding: 2.5% 1.5% 2.5% 1.5%;
  font-size: 2vw;
  border: none;
  margin: 0 auto !important;
}

#lets-go-button {
  width: 20%;
  font-size: 3vw;
  height: 12%;
  padding: 0.6%;
}

.fit-me-button {
  height: 100%;
  width: 80%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.title-text {
  font-size: 14vw;
  width: 70%;
  left: 15%;
  height: 40%;
  margin-top: 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#titlePage {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#subContainer {
  position: absolute;
  height: auto;
  top: 55%;
  width: 100%;
  color: white;
  padding: 1%;
  font-weight: 600;
  font-size: 3vw;
}

.foreground-container {
  width: 100%;
  position: absolute;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 100;
}

.jodal .jodal-title {
  font-size: 5vw;
  margin: 0 auto;
}
.jodal .jodal-text {
  font-size: 2.6vw;
  height: 45% !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.jodal .answer-text {
  text-align: center;
  z-index: 100;
  width: 90%;
  height: 15%;
  margin: 0 auto;
  margin-bottom: 5%;
}
.jodal .jodal-sub-text {
  font-size: 2.6vw;
}

#mainPage {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
}

.panel {
  border-radius: 8px;
  position: absolute;
  top: 2%;
  left: 1.75%;
  width: 90%;
  height: 96%;
  padding: 1%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.matching-cards-drop-area {
  height: 60%;
}

.matching-cards {
  height: 30%;
  width: 100%;
  transition: all 0.5s ease;
}

.justify-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  justify-content: space-evenly;
}

.movable-matching-card {
  background-color: white;
  height: 100%;
  width: 100%;
  border: 2px solid black;
  padding: 5%;
  border-radius: 0 0 12px 12px;
  user-select: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.movable-matching-card:hover {
  cursor: pointer;
}

.matching-card-drop {
  height: 100%;
  width: 24%;
  display: flex;
  flex-direction: column;
}

.drop-area-top {
  background-color: white;
  height: 50%;
  width: 100%;
  border: 2px solid black;
  padding: 5%;
  user-select: none;
  border-radius: 12px 12px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.image-area {
  width: 100%;
  height: 70%;
  padding-bottom: 5%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.drop-area-bottom {
  background-color: rgba(255, 255, 255, 0.3);
  height: 50%;
  width: 100%;
  border-radius: 0 0 12px 12px;
}
.drop-area-bottom .movable-matching-card {
  background-color: white;
  height: 100%;
  width: 100%;
  border: 2px solid black;
  padding: 5%;
  border-top: none;
}

.text-area {
  height: 25%;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  text-align: center;
  font-size: 1.5vw;
  align-items: center;
}

.full-page-jodal-overlay {
  position: absolute;
  z-index: 101;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
}

.round-result-screen {
  transition: background-color 2s;
}

.card-wrapper {
  width: 24%;
  height: 100%;
}

.stars-container {
  z-index: 100;
  height: 25%;
  width: 40%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.star-outer {
  color: #fcaf17;
  margin: 0.5rem;
  width: 30%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-area {
  width: 100%;
  height: 25%;
}

.drop-area-top-text .image-area {
  display: none;
}
.drop-area-top-text .text-area {
  height: 60%;
  width: 100%;
  font-weight: 500;
}

.drop-area-top-image .text-area {
  display: none;
}
.drop-area-top-image .image-area {
  height: 100%;
}

.shake {
  animation: shake 2s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}
.pulsate {
  animation-name: pulsate;
  animation-duration: 0.5s !important;
}

@keyframes pulsate {
  0% {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
.font-button {
  font-family: "twinkl-buttons", sans-serif !important;
}
.font-button span {
  font-family: "twinkl-buttons", sans-serif !important;
}

.square-buttons-container {
  font-family: "twinkl-buttons", sans-serif !important;
}

.fraction-styling {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-size: smaller;
  width: 3em;
  vertical-align: middle !important;
  line-height: 1 !important;
  display: inline-flex;
  align-items: center;
}
.fraction-styling .top-num {
  height: 45%;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  font-size: smaller;
}
.fraction-styling .top-num sup {
  font-size: 60%;
  top: -0.1em !important;
}
.fraction-styling .mid-line {
  height: 2%;
  border-bottom: 2px solid black;
  width: 100%;
}
.fraction-styling .bottom-num {
  height: 45%;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  font-size: smaller;
}
.fraction-styling .bottom-num sup {
  font-size: 60%;
  top: -0.1em !important;
}

.cars-branding #title,
.cars-branding .text-button,
.cars-branding .jodal-title,
.cars-branding .text-button,
.cars-branding .sub-heading,
.cars-branding .text-area {
  font-family: industry, sans-serif;
  font-style: italic;
  font-weight: 900;
}

sup {
  line-height: 1 !important;
  height: 1em;
  vertical-align: super;
  top: -0.2em;
}
sup .fraction-styling {
  font-weight: 600;
  line-height: 1 !important;
}

/*# sourceMappingURL=matching-activity.css.map */
