.card__wrap .main .card__img {
  width: 76%;
  margin-top: 5px;
}

@media screen and (min-width: 436px) {
  .card__wrap .main .card__img {
    width: 85%;
    margin-top: 13px;
  }
}
.card__img .goal-img.show {
  border-radius: 30px;
}
.markup-interactive {
  position: relative;
}
.if-you-divide-30-by {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0px;
  z-index: 5;
}

.text-confirm-answer {
  font-size: 18px;
  text-align: center;
  font-weight: 600;
  color: white;
  position: absolute;
  top: 83%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, 0%);
  opacity: 1;
  transition: all 250ms;
}

.text-confirm-answer.transparent {
  opacity: 0;
  transition: all 250ms;
}
.for-float-wrapper .card__text {
  text-align: start;
  margin-top: 15px;
  margin-bottom: 35px;
  font-size: 18px;
}
@media screen and (min-width: 436px) {
  .for-float-wrapper .card__text {
    margin-bottom: 30px;
    margin-top: 18px;
  }
}

.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  position: relative;
}

.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: 80%;
  height: 100%;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.spot {
  width: 5vw;
  height: 5vw;
  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;
}

.spot-1 {
  left: 40%;
}
.spot-2 {
  left: 60%;
}

@media screen and (min-width: 436px) {
  .spot {
    width: 20px;
    height: 20px;
  }
}
.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;
}

.spot-4.show {
  animation: fade-in-out-4 600ms ease-in-out 1;
}

.spot-5.show {
  animation: fade-in-out-1 600ms ease-in-out 1;
}

.spot-6.show {
  animation: fade-in-out-2 600ms ease-in-out 1;
}

.spot-7.show {
  animation: fade-in-out-3 600ms ease-in-out 1;
}
.spot-8.show {
  animation: fade-in-out-4 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;
  }
}
@keyframes fade-in-out-4 {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.drop-zone {
  font-size: 40px;
  width: 14vw;
  height: 50px;
  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: 50px;
  }
}
.drop-zone:not(:last-child) {
  margin-right: 10px;
}

.tiles {
  width: 100%;
  max-width: 80vw;
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  margin: 0 auto;
  justify-content: center;
}
@media screen and (min-width: 436px) {
  .tiles {
    width: 290px;
    max-width: unset;
  }
}

.tile {
  width: 12vw;
  height: 12vw;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10vw;
  font-weight: bold;
  color: #ccc; /* changed font color to match outline color */
  background-color: #fff;
  border: 2px solid #ccc; /* added border */
  border-radius: 10px; /* added border-radius for rounded tiles */
  margin: 6px;
  cursor: pointer;
  transform-origin: center;
}
@media screen and (min-width: 436px) {
  .tile {
    width: 42px;
    height: 42px;
    font-size: 34px;
  }
}

.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: 52px;
    right: 6px;
  }
}

.card__wrap-blocked .restart {
  display: none;
}
