#part-1-clin-1 {
  display: none;
}

.sidebar.active #part-1-clin-1-mobile {
  display: none;
}

.c-desc {
  padding-bottom: 40px;
}
.c-desc__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.c-desc__flexible {
  display: flex;
  gap: 24px;
  justify-content: space-between;
}
.c-desc__block {
  border: 1px solid #4B98D3;
  border-radius: 8px;
  padding: 20px;
  width: 100%;
}
.c-desc__block.dark {
  background-color: #0E2B58;
}
.c-desc__block.light {
  background-color: #1B4175;
}
.c-desc__block h4 {
  font-weight: 700;
  font-size: 20px;
  color: white;
  margin-bottom: 10px;
}
.c-desc__block p, .c-desc__block li {
  font-weight: 500;
  font-size: 20px;
  color: white;
  line-height: 150%;
}
.c-desc__block ul {
  padding-left: 16px;
}
.c-desc__name {
  font-weight: 600;
  font-size: 32px;
  color: white;
}

.quiz {
  padding: 0 0 60px;
  opacity: 0;
  transition: all 0.2s ease;
  pointer-events: none;
}
.quiz.active {
  opacity: 1;
  pointer-events: all;
}
.quiz__main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.quiz__main.disabled {
  display: none;
}
.quiz__label {
  border-radius: 8px 8px 0 0;
  margin-bottom: -8px;
  background-color: #ED4700;
  color: white;
  font-size: 20px;
  font-weight: 700;
  padding: 8px 8px 16px;
  text-align: center;
  max-width: 300px;
  width: 100%;
}

.cong {
  display: none;
  flex-direction: column;
  gap: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: #EDF3FF;
  overflow: hidden;
  padding: 25px 20px;
}
.cong h3 {
  font-size: 24px;
  font-weight: 700;
  color: #15499B;
  margin-bottom: 20px;
  text-align: center;
}
.cong p {
  font-size: 20px;
  font-weight: 700;
  color: #ED4700;
  margin-bottom: 0;
  text-align: center;
}
.cong.active {
  display: flex;
}

.bar {
  background: #AACEE4;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
}
.bar__progress {
  padding: 5px;
  display: flex;
  justify-content: center;
  background: #15499B;
  border-radius: 8px;
  width: 10%;
  transition: all 0.5s ease;
}
.bar__label {
  font-weight: 700;
  font-size: 30px;
  line-height: 100%;
  text-align: center;
  color: #fff;
  white-space: nowrap;
}

.question {
  display: flex;
  gap: 20px;
}
.question__wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.question__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: #EDF3FF;
  overflow: hidden;
  padding: 25px 20px;
}
.question__pic {
  width: 180px;
  height: 180px;
  min-width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  color: white;
  background-position: center;
  background-size: contain;
}
.question__text {
  font-weight: 600;
  font-size: 20px;
  line-height: 125%;
  color: #000;
}
.question__choices {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.question__result {
  margin-left: auto;
}
.question__notice {
  font-size: 16px;
  font-weight: 400;
  color: #ED4700;
  display: none;
}
.question__notice.active {
  display: inline;
}

.choice {
  display: block;
  position: relative;
  padding-left: 36px;
  cursor: pointer;
  margin: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.choice__text {
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}
.choice .checkmark {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.choice .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #15499B;
}
.choice input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.choice input:checked ~ .checkmark:after {
  display: block;
}
.choice:hover input ~ .checkmark:after {
  display: block;
}

.answer-overlay {
  backdrop-filter: blur(10px);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1100;
  overflow: hidden;
  justify-content: center;
  align-items: center;
}
.answer-overlay.active {
  display: flex;
}

.answer {
  background: #EDF3FF;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  max-height: calc(100vh - 32px);
}
.answer__line {
  position: absolute;
  height: 100%;
  width: 16px;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, #ffa600 0%, #a17baf 44%, #d2bbdc 73%, #eff0ff 100%);
}
.answer__content {
  display: flex;
  flex-direction: column;
  padding: 32px;
  gap: 20px;
  overflow-y: auto;
  position: relative;
  max-height: calc(100vh - 64px);
}
.answer__text {
  display: none;
  flex-direction: column;
  gap: 16px;
}
.answer__text.active {
  display: flex;
}
.answer__name {
  border-radius: 8px;
  padding: 10px 30px;
  min-width: 290px;
  width: fit-content;
  text-align: center;
  margin-left: -32px;
}
.answer__name span {
  font-weight: 700;
  font-size: 24px;
  color: white;
}
.answer__right .answer__name {
  background: linear-gradient(90deg, #666f78 0%, #b9b9b9 9.48%, #8696a0 26.61%, #8696a0 44%, #8696a0 63%, #666f78 80.43%, #8696a0 100%);
}
.answer__right .answer__choice span {
  background: #46B3AC;
}
.answer__wrong .answer__name {
  background: #afa094;
}
.answer__wrong .answer__choice span {
  background: #E61F5D;
}
.answer__text, .answer__choice {
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  color: black;
  margin: 0;
}
.answer__next {
  margin-left: auto;
}
.answer__wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.answer__choices {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.answer__choice {
  display: flex;
}
.answer__choice span {
  height: 24px;
  width: 24px;
  min-width: 24px;
  border-radius: 50%;
  margin-right: 16px;
  display: inline-block;
}

@media screen and (max-width: 1540px) {
  .c-desc__name {
    font-size: 24px;
  }
  .c-desc p, .c-desc li {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .c-desc__flexible {
    flex-direction: column;
    align-items: center;
  }
  .quiz__label {
    max-width: unset;
  }
  .question {
    flex-direction: column;
  }
  .question__content {
    padding: 16px;
  }
  .question__text {
    font-size: 16px;
  }
  .choice__text {
    font-size: 16px;
  }
  .bar__label {
    font-size: 20px;
  }
  .answer__text, .answer__choice {
    font-size: 16px;
  }
  .answer__text {
    padding: 16px 12px;
  }
  .answer__line {
    width: 8px;
  }
  .answer__name {
    margin-left: -16px;
    min-width: unset;
  }
  .answer__name span {
    font-size: 18px;
  }
  .answer__content {
    padding: 16px 12px;
  }
}

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