.card__img img.one,
.card__img img.two,
.card__img img.three,
.card__img img.four,
.card__img img.five,
.card__img img.six,
.card__img img.seven,
.card__img img.eight,
.card__img img.nine {
  display: block;
  width: auto;
  height: 15%;
}

.card__img img.two {
  margin-bottom: 3px;
}

@media screen and (min-width: 436px) {
  .card__img img.one,
  .card__img img.two,
  .card__img img.three,
  .card__img img.four,
  .card__img img.five,
  .card__img img.six,
  .card__img img.seven,
  .card__img img.eight,
  .card__img img.nine {
    height: 14.4%;
  }
  .card__img img.two {
    margin-bottom: 3px;
  }
}

/* =========== */
.card__wrap .main .card__img {
  width: 86%;
}
.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;
}
.for-1-2-3-4-5-6-7-8-and-9-to-100 {
  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 -13px;
  transition: font-size 250ms;
  min-width: 26px;
}
@media screen and (min-width: 436px) {
  .drop-zone {
    font-size: 25px;
    padding: 13px;
    height: 60px;
    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: 14vw;
  height: 14vw;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 17vw;
  font-weight: bold;
  color: var(--main-text-color);
  background-color: #fff;
  border: 1px solid var(--main-text-color);
  border-radius: 10px;
  margin: 6px 6px;
  cursor: pointer;
  transform-origin: center;
  transition: color 350ms, background-color 350ms, border 350ms;
}
.tile.slash {
  font-size: 13vw;
}
@media screen and (min-width: 436px) {
  .tile {
    width: 45px;
    height: 45px;
    font-size: 51px;
  }
  .tile.slash {
    font-size: 40px;
  }
}

.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;
}
