.main .card__img {
  width: 73%;
}
@media screen and (min-width: 436px) {
  .main .card__img {
    width: 82%;
  }
}
.card__wrap-blocked .main .card__img {
  width: 85%;
}

.markup-interactive {
  position: relative;
}
.text-confirm-answer {
  font-size: 16px;
  font-weight: 400;
  color: grey;
  position: absolute;
  top: 100%;
  left: 0%;
  width: 100%;
  transform: translate(0, 0);
  opacity: 1;
  transition: all 250ms;
  display: flex;
  justify-content: flex-end;
}
.text-confirm-answer.transparent {
  opacity: 0;
  transition: all 250ms;
}

.broken-digital-clock {
  width: 39%;
  margin-left: 25px;
  margin-top: 82px;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  float: right;
  shape-outside: inset(36% 0% 0% 25%);
  z-index: 5;
  transition: all 1500ms;
  justify-content: center;
}

@media screen and (min-width: 436px) {
  .broken-digital-clock {
    width: 33%;
    margin-top: 98px;
    shape-outside: inset(41% 0% 0% 26%);
    transition: all 500ms;
  }
}

.for-float-wrapper .card__text {
  text-align: start;
  margin-bottom: 30px;
}
@media screen and (min-width: 436px) {
  .for-float-wrapper .card__text {
    margin-bottom: 25px;
  }
}

.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* position: relative; */
}

.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: 15px;
  position: relative;
}
.arrow {
  display: none; /* Hide the arrow */
  width: 0;
  height: 0;
  border: 10px solid transparent;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.up-arrow::after,
.down-arrow::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  z-index: 1;
}
.up-arrow::after {
  border-width: 0 25px 43.3px 25px; /* 43.3 = 25 * tan(30°) */
  border-color: transparent transparent green transparent;
  top: -21.6px;
  left: -25px;
}
.down-arrow::after {
  border-width: 43.3px 25px 0 25px; /* 43.3 = 25 * tan(30°) */
  border-color: green transparent transparent transparent;
  bottom: -21.6px;
  left: -25px;
}
.digit {
  font-size: 28px;
  margin-bottom: 0px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; /* Prevent text selection */
  color: navy;
  line-height: 1;
}

#digit2 {
  opacity: 1;
  font-size: 21px;
  margin-bottom: 0px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: navy;

  line-height: 1;
  /* margin-bottom: 2px; */
}

.digit-h,
.digit-m {
  color: grey;
  font-size: 21px;
  line-height: 1;
  /* margin-bottom: 2px; */
}
.digit-h {
  margin-right: 5px;
}
.digit-m {
}
.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: 10px;
}
.triangle.down {
  border-top: 37px solid green; /* 43.3 = 25 * tan(30°) */
  margin-top: 10px;
}

.digit-container {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-end;
}
.inactive {
  cursor: default;
  opacity: 0.4;
  -webkit-filter: grayscale();
  filter: grayscale();
}
.moveable {
  position: absolute;
}
#moveable-image1 {
  cursor: pointer;
  width: 67px;
  top: 20%;
  left: 105px;
  z-index: 30;
}
@media screen and (min-width: 436px) {
  #moveable-image1 {
    top: 20%;
    left: 105px;
  }
}
.click-path {
  width: 95%;
  height: 63%;
  border-radius: 23px;
  cursor: pointer;
  position: absolute;
  top: 54%;
  left: 50%;
  transform: translate(-50%, -50%);
}
