.guess-the-number-1-to-100 .card__img-wrapper {
  position: relative;
}
.guess-the-number-1-to-100 .card__img {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.guess-the-number-1-to-100 {
  position: relative;
}
.text-confirm-answer {
  font-size: 15px;
  font-weight: 400;
  color: grey;
  position: absolute;
  top: 0;
  left: 19%;
  width: auto;
  transform: translate(0, 100%);
  opacity: 1;
  transition: all 250ms ease 0s;
  z-index: 9;
}

.text-confirm-answer.transparent {
  opacity: 0;
  transition: all 250ms;
}

.guess-the-number-1-to-100 .card__text {
  font-size: 18px;
  margin-bottom: 30px;
  text-align: start;
  width: 88%;
}

.grid-draw-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.5fr 0 1.5fr 0 1.5fr 0 1.5fr 0 1.5fr 0 1.5fr 0 1.5fr 0
    1.5fr 0 1.5fr 0 1.5fr 0;
  grid-template-columns: repeat(10, 1.5fr);
  gap: 0;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  width: 90vw;
  height: 90vw;
}
@media screen and (min-width: 436px) {
  .grid-draw-container {
    width: 300px;
    height: 300px;
  }
}

.draw-cell {
  color: white;
  font-weight: 700;
  width: 9vw;
  height: 9vw;
  margin: 0;
  padding: 0;
  border: 0.5px solid white;
  background-color: var(--main-text-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 436px) {
  .draw-cell {
    width: 30px;
    height: 30px;
  }
}
.red {
  background-color: #e60000;
  color: #ff7878;
}
.clickable {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.card__img-wrapper {
  width: 88vw;
  height: 90vw;
  position: relative;
  margin-top: 1vw;
}
@media screen and (min-width: 436px) {
  .card__img-wrapper {
    width: 300px;
    height: 300px;
    margin-top: 15px;
  }
}
.card__img .restart {
  display: flex;
  width: 32px;
  position: absolute;
  top: 101%;
  left: 90%;
  cursor: pointer;
}
@media screen and (min-width: 436px) {
  .card__img .restart {
  }
}

.card__wrap-blocked .restart {
  display: none;
}
.card__wrap .card__text {
  font-size: 18px;
  margin-bottom: 30px;
  text-align: left;
}
@media screen and (min-width: 436px) {
  .card__wrap .card__text {
    font-size: 17px;
  }
}
.text-answer {
  width: 88vw;
  margin: 3px auto;
  color: var(--main-text-color);
  display: flex;
  align-items: center;
  font-size: 15px;
}
.text-answer span {
  width: 19px;
  height: 19px;
  border: 1px solid !important;
  border-radius: 50%;
  margin-right: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.text-answer.correct {
  color: #16a116;
}
.text-answer.correct span {
  color: white;
  background-color: #16a116;
  border: none;
}
@media screen and (min-width: 436px) {
  .text-answer {
    width: 310px;
  }
}
.card__img {
  z-index: 2;
}
.card__wrap .bookmark-switch-text {
  top: 82%;
}
