.rectangle-into-6-identical-parts .card__img-wrapper {
  position: relative;
}
.rectangle-into-6-identical-parts .card__img {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 96%;
}

.rectangle-into-6-identical-parts {
  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;
}

.rectangle-into-6-identical-parts .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;
  grid-template-columns: repeat(5, 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: 80vw;
  height: 96vw;
}
@media screen and (min-width: 436px) {
  .grid-draw-container {
    width: 250px;
    height: 300px;
  }
}

.draw-cell {
  border: 0.5px solid white;
  width: 16vw;
  height: 16vw;
  margin: 0;
  padding: 0;
  background-color: silver;
}
@media screen and (min-width: 436px) {
  .draw-cell {
    width: 50px;
    height: 50px;
  }
}

.clickable {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.button {
  position: relative;
}

.button::before {
  content: "";
  width: 30%;
  height: 30%;
  outline: 2px solid white;
  border-radius: 50%;
  position: absolute;
  top: 24%;
  left: 24%;
  transform: translate(-50%, -50%);
}
.button.select::after {
  content: "";
  width: 19%;
  height: 19%;
  background-color: white;
  border-radius: 50%;
  position: absolute;
  top: 24%;
  left: 24%;
  transform: translate(-50%, -50%);
}
.card__wrap-blocked .button::before,
.card__wrap-blocked .button.select::after {
  content: "";
  width: 0;
  height: 0;
  border: transparent;
  top: 0;
  left: 0;
}

.purpleblue,
.purpleblue-button {
  background-color: #791cb7;
}
.purple,
.purple-button {
  background-color: #df0bdf;
}
.red,
.red-button {
  background-color: #e60000;
}

.green,
.green-button {
  background-color: #34cc34;
}

.blue,
.blue-button {
  background-color: #648dd4;
}

.yellow,
.yellow-button {
  background-color: #ffc00c;
}

.card__img-wrapper {
  width: 88vw;
  height: 96vw;
  position: relative;
}
@media screen and (min-width: 436px) {
  .card__img-wrapper {
    width: 250px;
    height: 300px;
    margin-top: 15px;
  }
}
.card__wrap .restart {
  display: flex;
  width: 32px;
  position: absolute;
  top: 55px;
  left: 86%;
  cursor: pointer;
  z-index: 2;
}

.card__wrap-blocked .restart {
  display: none;
}
.card__wrap .card__text {
  text-align: left;
  font-size: 18px;
  margin-bottom: 30px;
}
#body_pzl-classics .card__wrap .intro__title-letter::before {
  width: 40px;
  height: 40px;
}
