.main .card__img {
  width: 67%;
}
@media screen and (min-width: 436px) {
  .main .card__img {
    width: 78%;
  }
}
.text-confirm-answer {
  font-size: 14px;
  font-weight: 400;
  color: grey;
  width: 100%;
  text-align: end;
  margin-top: 8px;
  opacity: 1;
  transition: all 250ms;
}
.text-confirm-answer.transparent {
  opacity: 0;
  transition: all 250ms;
}
.markup-interactive {
  position: relative;
}
.digits-in-the-1-100-range {
  width: 100%;
  min-height: 138px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 10px;

  z-index: 5;
}
@media screen and (min-width: 436px) {
  .digits-in-the-1-100-range {
    margin-bottom: 14px;
    margin-top: 15px;
  }
}

.for-float-wrapper .card__text {
  text-align: start;
  margin-bottom: 10px;
  min-height: 122px;
  transition: all 700ms;
}
.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-around;
  width: 88%;
  margin: 0 auto;
}

.changer {
  width: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 21px 2px 0 8px;
  position: relative;
}

.digit {
  font-size: 28px; /* Increased font size */
  margin-bottom: 0px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; /* Prevent text selection */
  color: navy;
}

.triangle {
  width: 0;
  height: 0;
  border-left: 24px solid transparent;
  border-right: 24px solid transparent;
  position: relative;
  cursor: pointer;
}
.triangle.up {
  border-bottom: 37px solid green; /* 43.3 = 25 * tan(30°) */
  margin-bottom: 5px;
}
.triangle.down {
  border-top: 37px solid green; /* 43.3 = 25 * tan(30°) */
  margin-top: 5px;
}
@media screen and (min-width: 436px) {
  .triangle {
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
  }
  .triangle.up {
    border-bottom: 31px solid green; /* 43.3 = 25 * tan(30°) */
    margin-bottom: 5px;
  }
  .triangle.down {
    border-top: 31px solid green; /* 43.3 = 25 * tan(30°) */
    margin-top: 5px;
  }
}

.digit-container {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* Add this line */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; /* Add this line */
}
.inactive {
  cursor: default;
  opacity: 0.4;
  -webkit-filter: grayscale();
  filter: grayscale();
}
.moveable {
  position: absolute;
}
#moveable-image1 {
  cursor: pointer;
  width: 45px;
  height: 82px;
  top: 20%;
  left: 90px;
  z-index: 30;
}
@media screen and (min-width: 436px) {
  #moveable-image1 {
    top: 20%;
    left: 92px;
  }
}

.volumes-ratio {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  bottom: 5px;
}
.delimiter {
  font-size: 30px;
  color: silver;
  margin: -15px 0 0 10px;
}
.volumes-ratio-digit,
.volumes-ratio-times {
  font-weight: 600;
  color: silver;
}
.volumes-ratio-digit {
  left: -21px;
}
.volumes-ratio-times {
  left: -30px;
}
.number-keyboard {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 129px;
  flex-wrap: wrap;
  position: relative;
}
@media screen and (min-width: 436px) {
  .number-keyboard {
    margin-top: -5px;
  }
}
.number {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 7px;
  background-color: transparent;
  border: 2px solid transparent;
  transition: all 100ms;
  cursor: pointer;
}
.number.active {
  border: 2px solid #92b9fd;
}
#click-path {
  top: 0;
}
#click-path path {
  cursor: pointer;
}
