.card__wrap .main .card__img {
  width: 79%;
}
@media screen and (min-width: 436px) {
  .card__wrap .main .card__img {
    width: 85%;
  }
}
.markup-interactive {
  position: relative;
}
.behind-each-other {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 10px;
  z-index: 5;
}

@media screen and (min-width: 436px) {
  .behind-each-other {
    margin-bottom: 25px;
  }
}

.text-confirm-answer {
  font-size: 31px;
  font-weight: 700;
  color: #0fa17c;
  text-align: center;
  text-shadow: 2px 1px 4px white;
  position: absolute;
  top: -37%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.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: -32%;
  width: 99%;
}

.spot-wrap {
  top: -24%;
}

.drop-zone {
  font-size: 31px;
  font-weight: 700;
  color: #0fa17c;
  text-shadow: 2px 1px 4px 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: 3px solid #0fa17c;
  position: relative;
  cursor: pointer;
}

.drop-zone-1,
.spot-1 {
  margin-right: 5px;
}
.drop-zone-2,
.spot-2 {
  margin-right: 5px;
}
.drop-zone-3,
.spot-3 {
  margin-right: 5px;
}
.drop-zone-4,
.spot-4 {
  margin-right: 20px;
}
.drop-zone-5,
.spot-5 {
  margin-right: 5px;
}
.drop-zone-6,
.spot-6 {
  margin-right: 20px;
}
.drop-zone-7,
.spot-7 {
  margin-right: 5px;
}
.drop-zone-8,
.spot-8 {
  margin-right: 5px;
}
.drop-zone-9,
.spot-9 {
  margin-right: 5px;
}
.drop-zone-10,
.spot-10 {
  margin-right: 0;
}
/* .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;
  }
  .spot {
    width: 23px;
    height: 23px;
    transform: scale(0.7);
  }
}
.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;
}

.card__wrap-blocked .behind-each-other {
  display: none;
}

.card__wrap .bookmark-switch-text {
  top: 23%;
}
@media screen and (min-width: 436px) {
  .card__wrap .bookmark-switch-text {
    top: 20%;
  }
}
