.card__wrap .main .card__img {
  width: 78%;
}

@media screen and (min-width: 436px) {
  .card__wrap .main .card__img {
    width: 81%;
  }
}

.markup-interactive {
  position: relative;
}
.break-to-use {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0px;
  z-index: 5;
}

.text-confirm-answer {
  font-size: 0;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
}
.text-confirm-answer.transparent {
  opacity: 0;
  transition: all 250ms;
}
.for-float-wrapper .card__text {
  text-align: start;
  margin-bottom: 35px;
  font-size: 18px;
}
@media screen and (min-width: 436px) {
  .for-float-wrapper .card__text {
    margin-bottom: 30px;
  }
}

.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  position: relative;
}
.drop-zone {
  font-size: 34px;
  width: 10vw;
  height: 32px;
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background-color: transparent;
  border-bottom: 2px solid #000;
  color: var(--main-text-color);
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 436px) {
  .drop-zone {
    width: 38px;
  }
}

.drop-zone:not(:last-child) {
  margin-right: 10px;
}

.starting-letter {
  font-size: 34px;
  height: 32px;
  margin: 10px 16px 10px 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background-color: transparent;
  border-bottom: 2px solid transparent;
  color: var(--main-text-color);
  position: relative;
  cursor: pointer;
}

.spot-container {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.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 {
  left: 44%;
}
.spot-2 {
  left: 58%;
}
.spot-3 {
  left: 72%;
}

.spot-1.show {
  animation: fade-in-out-1 600ms ease-in-out 1;
}

.spot-2.show {
  animation: fade-in-out-2 600ms ease-in-out 1;
}

.spot-3.show {
  animation: fade-in-out-3 600ms ease-in-out 1;
}

@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;
  }
}

.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: 10vw;
  height: 10vw;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 7vw;
  font-weight: bold;
  color: #ccc;
  background-color: #fff;
  border: 2px solid #ccc;
  border-radius: 10px;
  margin: 3px 4px;
  cursor: pointer;
  transform-origin: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media screen and (min-width: 436px) {
  .tile {
    width: 35px;
    height: 35px;
    font-size: 24px;
    margin: 4px 4px;
  }
}

.click-path {
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.main .card__img svg {
  top: 0;
}

.card__wrap .bookmark-switch-text {
  top: 35%;
}
.markup-interactive.winner {
  display: none;
}
.card__wrap .restart {
  display: flex;
  width: 34px;
  position: absolute;
  top: 55px;
  right: 15px;
  cursor: pointer;
  z-index: 34;
  opacity: 1;
}
@media screen and (min-width: 436px) {
  .card__wrap .restart,
  .card__wrap .reload {
    top: 64px;
  }
}
