.modal-steps {
  display: none;
  position: fixed;
  z-index: 5000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(95, 94, 96, 0.7607843137);
  backdrop-filter: blur(10px);
  justify-content: center;
  align-items: center;
  touch-action: none;
}
.modal-steps.active {
  display: flex;
}
.modal-steps__content {
  overflow-y: auto;
  border-radius: 12px;
  width: 80%;
  max-width: 1400px;
  position: relative;
  color: #fff;
  background-color: #242323;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  max-height: 90vh;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 1rem;
}
.modal-steps__close {
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
  color: #fff;
}
.modal-steps__close:hover {
  color: rgb(190.5793991416, 16.9206008584, 20.482832618);
}
.modal-steps__question {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
.modal-steps__question.hide {
  display: none;
}
.modal-steps__question.completed .modal-steps__answ-item:has(input.false) {
  display: none;
}
.modal-steps__video {
  width: 100%;
  height: auto;
  border-radius: 0.8rem;
}
.modal-steps__lr {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1.5rem solid #79AEDF;
  border-radius: 0.8rem;
  color: #0a0a0a;
  background-color: #fff;
  padding: 0 1rem 1rem 1rem;
  font-size: 1.3rem;
}
.modal-steps__lr::-webkit-scrollbar-thumb {
  background-color: #F05B5E;
}
.modal-steps__lr-wrapper {
  display: grid;
  grid-template-columns: 1fr 4fr;
  place-items: end;
  gap: 0.5rem;
}
.modal-steps__lr-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  align-self: center;
}
.modal-steps__answ-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 1rem;
}
@media (max-width: 767px) {
  .modal-steps__lr .text.fz-lg {
    font-size: 1.8rem;
  }
  .modal-steps__lr .text.fz-s {
    font-size: 1.5rem;
  }
}
@media (max-width: 600px) {
  .modal-steps__lr .text.fz-lg {
    font-size: 1.3rem;
  }
  .modal-steps__lr .text.fz-s {
    font-size: 1.1rem;
  }
}

/*# sourceMappingURL=modalSteps.css.map */
