.card__img .one,
.card__img .two,
.card__img .three,
.card__img .four,
.card__img .five,
.card__img .six,
.card__img .seven,
.card__img .eight,
.card__img .nine {
  display: flex;
  width: auto;
  width: 18%;
  font-size: 65px;
  font-weight: 800;
  text-shadow: 3px 3px 3px #664488;
  color: #949ae8;
  justify-content: center;
}

/* @media screen and (min-width: 436px) {
  .card__img .one,
  .card__img .two,
  .card__img .three,
  .card__img .four,
  .card__img .five,
  .card__img .six,
  .card__img .seven,
  .card__img .eight,
  .card__img .nine {
    width: 16%;
  }
} */
.card__img .one {
  color: #757ac9;
}
.card__img .two {
  color: #3ec29f;
}
.card__img .three {
  color: #6697f2;
}
.card__img .four {
  color: #757ac9;
}
.card__img .five {
  color: #3ec29f;
}

/* =========== */
.card__wrap .main .card__img {
  width: 92%;
}
.card__wrap .card__img img {
  width: 95%;
}
@media screen and (min-width: 436px) {
  .card__wrap .main .card__img {
    width: 93%;
  }
  .card__wrap .card__img img {
    width: 95%;
  }
}
.markup-interactive {
  position: relative;
}
.markup-interactive.winner {
  margin-top: 25px;
}
.five-3s-to-37 {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 5px;
  z-index: 5;
}

.text-confirm-answer {
  font-size: 17px;
  text-align: center;
  font-weight: 400;
  color: red;
  position: absolute;
  top: 33%;
  left: 50%;
  width: max-content;
  transform: translate(-50%, -50%);
  opacity: 1;
  transition: all 250ms;
  width: max-content;
}

.text-confirm-answer.transparent {
  opacity: 0;
  transition: all 250ms;
}
.for-float-wrapper .card__text {
  text-align: start;
  margin-top: 14px;
  margin-bottom: 30px;
  font-size: 18px;
}
@media screen and (min-width: 436px) {
  .for-float-wrapper .card__text {
    font-size: 17px;
    margin-top: 25px;
  }
}

.starting-letter {
  display: flex;
  align-items: center;
  font-size: 34px;
  margin-right: 10px;
}
.drop-zone {
  height: 20vw;
  color: var(--main-text-color);
  font-size: 28px;
  font-weight: 800;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin: 0px -18px;
  transition: font-size 250ms;
  min-width: 26px;
  white-space: nowrap;
}

@media screen and (min-width: 436px) {
  .drop-zone {
    padding: 0 10px;
    height: 71px;
    min-width: 40px;
  }
}

.spot {
  width: 4vw;
  height: 4vw;
  border: 1px solid silver;
  border-radius: 50%;
  box-shadow: 1px 1px var(--main-text-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  background-color: #ffffffbf;
  opacity: 0;
  transition: all 200ms;
}

@media screen and (min-width: 436px) {
  .spot {
    width: 15px;
    height: 15px;
  }
}

.spot-1.show {
  animation: fade-in-out-1 600ms ease-in-out 3;
}

.spot-2.show {
  animation: fade-in-out-2 600ms ease-in-out 3;
}

.spot-3.show {
  animation: fade-in-out-3 600ms ease-in-out 3;
}

.spot-4.show {
  animation: fade-in-out-4 600ms ease-in-out 3;
}

.spot-5.show {
  animation: fade-in-out-1 600ms ease-in-out 3;
}

.spot-6.show {
  animation: fade-in-out-2 600ms ease-in-out 3;
}
.spot-7.show {
  animation: fade-in-out-3 600ms ease-in-out 3;
}

.spot-8.show {
  animation: fade-in-out-4 600ms ease-in-out 3;
}

@keyframes fade-in-out-1 {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade-in-out-2 {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade-in-out-3 {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade-in-out-4 {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.tiles {
  width: 100%;
  max-width: 93vw;
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  margin: 0 auto;
  justify-content: center;
}
@media screen and (min-width: 436px) {
  .tiles {
    width: 310px;
    max-width: unset;
  }
}

.tile {
  width: 12vw;
  height: 12vw;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14vw;
  font-weight: bold;
  color: var(--main-text-color);
  background-color: #fff;
  border: 1px solid var(--main-text-color);
  border-radius: 10px;
  margin: 6px 6px;
  padding: 0 0 2px 0;
  cursor: pointer;
  transform-origin: center;
  transition: color 350ms, background-color 350ms, border 350ms;
}
.tile.slash {
  font-size: 12vw;
  padding: 0 0 1px 0;
}
.tile.opening-parenthesis,
.tile.closing-parenthesis {
  font-size: 11vw;
  padding: 0 0 8px 0;
}
.drop-zone-dot {
  color: #949ae8;
  margin: 0px 0 -11px 5px;
  transform: scale(1.4);
}
@media screen and (min-width: 436px) {
  .tile {
    width: 39px;
    height: 39px;
    font-size: 44px;
  }
  .tile.slash {
    font-size: 35px;
  }
  .tile.opening-parenthesis,
  .tile.closing-parenthesis {
    font-size: 32px;
    padding: 0 0 5px 0;
  }
}

.answer-number {
  position: absolute;
  top: 19%;
  left: 50%;
  transform: translate(-50%, 0%);
  color: var(--main-text-color);
  font-weight: 600;
  font-size: 28px;
  padding: 4px 8px;
  letter-spacing: 2px;
  z-index: 1;
}
@media screen and (min-width: 436px) {
  .answer-number {
    position: absolute;
    top: 21%;
  }
}
.card__wrap .main {
  position: relative;
}
.interactive-container {
  width: 111%;
  height: 100%;
  position: absolute;
  display: flex;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 436px) {
  .interactive-container {
    width: 100%;
    position: absolute;
    display: flex;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    align-items: center;
    justify-content: center;
  }
}
.drop-zone-spot-wrap {
  position: relative;
}
.card__wrap-blocked #drop-zone-1 {
  color: #54b03d;
}
.card__wrap-blocked .answer-number {
  color: #54b03d;
}
.card__wrap .restart {
  display: flex;
  width: 33px;
  position: absolute;
  top: 58px;
  left: 85%;
  cursor: pointer;
  z-index: 34;
}

.card__wrap-blocked .restart {
  display: none;
}
