.card__wrap .main .card__img {
  width: 91%;
}

/* @media screen and (min-width: 436px) {
  .card__wrap .main .card__img {
    width: 70%;
  }
} */
.markup-interactive {
  position: relative;
}
.a-unique-10-digit-number {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 10px;
  z-index: 5;
}

@media screen and (min-width: 436px) {
  .a-unique-10-digit-number {
    margin-bottom: 25px;
  }
}

.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,
.spot-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  position: absolute;
  top: -93%;
  width: 99%;
}

.spot-wrap {
  top: -82%;
}
@media screen and (min-width: 436px) {
  .container {
    top: -90%;
  }

  .spot-wrap {
    top: -79%;
  }
}
.drop-zone {
  font-size: 23px;
  font-weight: 500;
  color: white;
  width: 6.2vw;
  height: 34px;
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background-color: transparent;
  border-bottom: 2px solid #ffffff;
  position: relative;
  cursor: pointer;
}

.drop-zone-1,
.spot-1 {
  margin-right: 13px;
  margin-left: 5px;
}
.drop-zone-2,
.spot-2 {
  margin-right: 8px;
}
.drop-zone-3,
.spot-3 {
  margin-right: 8px;
}
.drop-zone-4,
.spot-4 {
  margin-right: 6px;
}
.drop-zone-5,
.spot-5 {
  margin-right: 8px;
  margin-left: 8px;
}
.drop-zone-6,
.spot-6 {
  margin-right: 8px;
}
.drop-zone-7,
.spot-7 {
  margin-right: 8px;
}
.drop-zone-8,
.spot-8 {
  margin-right: 8px;
  margin-left: 3px;
}
.drop-zone-9,
.spot-9 {
  margin-right: 8px;
}
.drop-zone-10,
.spot-10 {
  margin-right: 2px;
}
/* .drop-zone:not(:last-child) {
  margin-right: 10px;
} */

.spot {
  width: 6.2vw;
  height: 6.2vw;
  border: 1px solid silver;
  border-radius: 50%;
  box-shadow: 1px 1px var(--main-text-color);
  pointer-events: none;
  background-color: #ffffffbf;
  opacity: 0;
  transition: all 200ms;
  transform: scale(0.7);
}

@media screen and (min-width: 436px) {
  .drop-zone {
    width: 23px;
    font-size: 22px;
  }
  .spot {
    width: 23px;
    height: 23px;
    transform: scale(0.5);
  }
  .drop-zone-1,
  .spot-1 {
    margin-right: 10px;
    margin-left: 5px;
  }
  .drop-zone-2,
  .spot-2 {
    margin-right: 5px;
  }
  .drop-zone-3,
  .spot-3 {
    margin-right: 5px;
  }
  .drop-zone-4,
  .spot-4 {
    margin-right: 5px;
  }
  .drop-zone-5,
  .spot-5 {
    margin-right: 5px;
    margin-left: 6px;
  }
  .drop-zone-6,
  .spot-6 {
    margin-right: 5px;
  }
  .drop-zone-7,
  .spot-7 {
    margin-right: 7px;
  }
  .drop-zone-8,
  .spot-8 {
    margin-right: 5px;
    margin-left: 3px;
  }
  .drop-zone-9,
  .spot-9 {
    margin-right: 5px;
  }
  .drop-zone-10,
  .spot-10 {
    margin-right: 2px;
  }
}
.spot-1.show {
  animation: fade-in-out-1 600ms ease-in-out 3;
}

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

.spot-3.show {
  animation: fade-in-out-2 600ms ease-in-out 3;
}
.spot-4.show {
  animation: fade-in-out-3 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-1 600ms ease-in-out 3;
}

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

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

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

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

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.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; /* 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: 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-figure {
  cursor: pointer;
}
.main .card__img svg {
  top: 0;
}
/* .main .card__img.for-win {
  width: 70%;
  transition: all 1000ms;
}
@media screen and (min-width: 436px) {
  .main .card__img.for-win {
    width: 78%;
    transition: all 1000ms;
  }
} */
.card__wrap-blocked .a-unique-10-digit-number {
  display: none;
}

.card__wrap .bookmark-switch-text {
  top: 25%;
}
