@charset "UTF-8";
@import url(reset.css);
@import url(font.css);

/* Common */
.main-blue-color {
  color: #246af4;
}
.main-red-color {
  color: #df0808;
}

/* Layout */
:root {
  --vh: 100%;
}
html {
  height: -webkit-fill-available;
  font-size: 1.5789vw;
}
body {
  font-family: 'Noto Sans KR', Dotum, 'Apple SD Gothic Neo', sans-se rif;
  color: black;
  background: #fff;
  word-break: keep-all;
  height: -webkit-fill-available;
  overflow: hidden;
}
@media all and (min-width: 1200px) {
  html {
    font-size: 18px;
  }
}
@media all and (max-width: 760px) {
  html {
    font-size: 12px;
  }
}
@media all and (max-width: 500px) {
  html {
    font-size: 11px;
  }
}
@media all and (max-width: 400px) {
  html {
    font-size: 10px;
  }
}
@media all and (max-width: 350px) {
  html {
    font-size: 9px;
  }
}

.chapter-subtitle {
  font-size: 13px;
  color: white;
  font-weight: 900;
  margin-left: 10px;
}

button {
  cursor: pointer;
}
.wrap {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  padding: 0;
  background: #f7fafc;
}
.bg {
  position: absolute;
  top: 0;
  left: 0;
  clear: both;
  display: block;
  width: 100%;
  height: 8.33rem;
  background: #246af4;
  border-radius: 0 0 5% 5%;
  z-index: 1;
}

/* Container */
.container {
  position: relative;
  /* width: 100%; */
  /* height: 100%; */
  margin: 0 auto;
  padding: 0.83rem 1.66rem 1.66rem;
  /* background: #fff; */
  box-sizing: border-box;
  z-index: 1;
}
.container header {
  height: 2.91rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.container header .header-left .quiz {
  display: flex;
  flex-direction: row;
  padding: 0.41rem 1.25rem;
  font-size: 1.16rem;
  font-weight: bold;
  color: #ffe482;
  border: 1px solid #fff;
  border-radius: 1.66rem;
}
.container header .header-right {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}
.container header .header-right p {
  display: inline-block;
}
.container header .header-right .title {
  font-size: 1.08rem;
  font-weight: bold;
  color: #fff;
}
.container header .header-right .semi-title {
  font-size: 0.92rem;
  color: #fff;
}

/* Box-container */
.box-container {
  position: relative;
  margin-top: 0.83rem;
  height: calc(var(--vh) - 14.16rem);
  background: #fff;
  padding: 1.66rem;
  border-radius: 1.66rem;
  /* padding-bottom: 0; */
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
}
.scroll-wrap {
  overflow: hidden;
  height: inherit;
}
.box-container .box-header {
  position: relative;
  padding-top: 0.41rem;
}
.box-container .box-header p {
  display: inline-block;
  padding: 0.41rem 0.83rem;
  margin-bottom: 0.83rem;
  border-radius: 0.41rem;
  background: #2c6be7;
  font-weight: 600;
  color: #fff;
}
.circle-area {
}
.circle-area svg {
  position: absolute;
  top: 0.66rem;
  left: 0.16rem;
}
.circle-area .circle svg {
  width: 4.58rem;
  height: 4.58rem;
  transform: translate(20px, 0px);
}
.circle-area .check svg {
  width: 4.25rem;
  height: 4.08rem;
}
.circle-area.incorrect {
  position: absolute;
  top: -0.41rem;
  left: 1.25rem !important;
}

.box-container .quiz-title {
  display: flex;
  gap: 0.41rem;
  font-size: 15px;
  font-weight: 500;
}
.box-container .quiz-title.gapNone {
  gap: 0;
}
.box-container .quiz-subTitle {
  margin-top: 1.25rem;
  display: flex;
  font-size: 15px;
  font-weight: 500;
}
.box-container .quiz-subTitle .quiz-num {
  width: 1.83rem;
  font-size: 10px;
  position: relative;
}
.box-container .quiz-subTitle .quiz-num .prob-area .circle svg {
  top: 0;
  left: 0;
  width: 3.75rem;
  height: 3.75rem;
}
.box-container .quiz-subTitle .quiz-num .prob-area .check svg {
  top: 0;
  left: 0;
  width: 3.41rem;
  height: 3.25rem;
}
.box-container .quiz-num-area {
  display: flex;
  font-size: 1rem;
  margin-top: 1.25rem;
  flex-direction: column;
  gap: 0.83rem;
}
.box-container .quiz-num-area .quiz-num-box {
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 0.83rem 1.66rem;
  font-weight: 500;
  font-size: 12px;
  border-radius: 1.25rem;
  border: 1px solid #bfbfbf;
  cursor: pointer;
  padding-left: 2.08rem;
  text-align: center;
}

.box-container .quiz-num-area .quiz-num-box.select {
  color: #fff;
  background: #000;
}
.box-container .quiz-num-area .quiz-num-box.select .quiz-num {
  background: #fff;
  color: #000;
}
.box-container .quiz-num-area .quiz-num-box.incorrect {
  border-color: #df0808;
  color: #df0808;
  background: #fff0ef;
}
.box-container .quiz-num-area .quiz-num-box.incorrect .quiz-num {
  border-color: #df0808;
  background: #fff0ef;
  color: #df0808;
}
.box-container .quiz-num-area .quiz-num-box.correct {
  border-color: #028804;
  color: #fff;
  background: #028804;
}
.box-container .quiz-num-area .quiz-num-box.correct .quiz-num {
  border-color: #028804;
  background: #fff;
  color: #028804;
}

.box-container .quiz-num-area .quiz-num-box .quiz-num {
  margin-right: 0.83rem;
  padding: 0.08rem 0.45rem;
  border: 1px solid #000;
  border-radius: 50%;
  font-size: 0.75rem;
  line-height: 1.5;
}

/* bottom-menu */
.bottom-menu {
  position: fixed;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 85%;
  bottom: 0.8rem;
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.66rem;
  z-index: 99;
}

/* Tablet styles */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .container {
    width: 50%;
  }

  .bottom-menu {
    width: 45%;
  }
}

/* PC styles */
@media screen and (min-width: 1024px) {
  .container {
    width: 50%;
  }
  .bottom-menu {
    width: 45%;
  }
}

@media screen {
}
.bottom-menu svg {
  width: 0.58rem;
  height: 1rem;
}
.btn button {
  display: inline-block;
  padding: 0.58rem 3.33rem;
  font-size: 1.083rem;
  font-weight: 700;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 1.66rem;
  background: #2c6be7;
}

.btn_answer.type2 button {
  background: #664ef7;
  color: #fff;
}
.btn_answer.retry button {
  background: #e13105;
  color: #fff !important;
}
.btn_answer.disabled button {
  background: #bfbfbf;
  color: #fff;
}

.bottom-menu .arrow-btn {
  display: inline-block;
  padding: 0.83rem 1.25rem;
  font-size: 1.083rem;
  font-weight: 700;
  border: 1px solid #dadada;
  border-radius: 1.25rem;
  background: #fff;
}

/* answer-box */
.answer-box {
  display: none;
  position: absolute;
  left: 50%;
  /* bottom: 70px; */
  bottom: -0%;
  transform: translateX(-50%);
  width: calc(100%);
  height: 13.33rem;
  padding: 1.66rem;
  /* margin-top: 1.66rem; */
  background: #fff;
  border: 3px solid #2f6fee;
  border-radius: 2.91rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 0;
  z-index: 1;
  box-sizing: border-box;
  box-shadow: 0px -3px 3px 2px #eee;
}
.answer-box .answer-container {
  font-size: 1rem;
}
.answer-box .answer-container .answer-header {
  z-index: 20;
  display: flex;
  justify-content: start;
  align-items: center;
  padding-bottom: 1.25rem;
  margin-bottom: 0.83rem;
  gap: 0.83rem;
  border-bottom: 1px solid #bfbfbf;
}
.answer-box .answer-container .answer-header .answer-title {
  font-weight: 700;
  color: #246af4;
}
.answer-box .answer-container .answer-header .answer-content {
  font-weight: 500;
  color: #246af4;
}
.answer-box .answer-container .answer-content {
  max-height: 6.5rem;
  overflow-y: auto;
  display: flex;
  justify-content: space-between;
}
.answer-box .answer-container .answer-content::-webkit-scrollbar {
  width: 0.33rem;
}
.answer-box .answer-container .answer-content::-webkit-scrollbar-thumb {
  border-radius: 0.16rem;
  background: #767676;
}
.answer-box .answer-container .answer-content::-webkit-scrollbar-track {
  border-radius: 0.16rem;
  background: #dadada;
}
.answer-box .answer-container .answer-content .answer-title {
  width: 1.83rem;
  word-break: keep-all;
  font-weight: 700;
}
.answer-box .answer-container .answer-content .answer-desc {
  font-size: 12px;
  width: calc(100% - 2.66rem);
  font-weight: 500;
}
.answer-box .answer-container .answer-content.type2 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.25rem;
}
.answer-box .answer-container .answer-content.type2 .answer-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.answer-box .btn-close {
  position: absolute;
  display: none;
  padding: 0.58rem;
  background: #246af4;
  line-height: 1;
  border-radius: 100%;
  top: -0.3rem;
  right: 0;
}
.answer-box .btn-close img {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  object-fit: cover;
}

/* retry-bubble */
.retry-bubble {
  display: none;
  position: absolute;
  left: 50%;
  bottom: 6.66rem;
  transform: translateX(-50%);
  padding: 0.83rem 4.16rem;
  width: 50%;
  background: #ff791c;
  border-radius: 1.25rem;
  text-align: center;
  color: #fff;
  font-size: 1.33rem;
  z-index: 99;
}
.retry-bubble::after {
  content: '';
  position: absolute;
  top: 100%; /* 세모를 하단에 위치시킵니다. */
  left: 50%;
  margin-left: -0.83rem; /* 세모의 가운데를 맞추기 위한 조정 */
  border-width: 0.83rem;
  border-style: solid;
  border-color: #ff791c transparent transparent transparent; /* 하단에 흰색 삼각형을 만듭니다. */
}

/* 초성 */
.quiz-prob {
  margin-top: 0.83rem;
  padding: 1.33rem 1rem 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  background: #f7fafc;
  border-radius: 0.66rem;
  border: 1px solid #cfdce5;
}
.quiz-prob .prob-ex {
  width: 1.66rem;
  height: 1.66rem;
  margin-right: 0.41rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  border-radius: 100%;
  background: #664ef7;
  margin-top: 7px;
}
.quiz-prob .prob-box {
  width: calc(100% - 2.08rem);
  display: inline;
  align-items: center;
  justify-content: flex-start;
  font-size: 15px;
}
.quiz-prob .prob-inpBox {
  margin: 4px 0rem;
  display: inline-flex;
  gap: 0.16rem;
}
.quiz-prob .prob-inpBox.ml0 {
  margin-left: 0;
}
.quiz-prob .prob-inpBox.mr0 {
  margin-right: 0;
}
.quiz-prob .prob-inpBox input {
  width: 2rem;
  height: 2rem;
  border: 1px solid #767676;
  border-radius: 0.33rem;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  color: #000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: transparent;
  text-align: center;
  font-family: 'Noto Sans KR';
}
.quiz-prob .prob-inpBox input.value {
  background: #000;
  border: 1px solid #000;
  color: #fff;
}
.quiz-prob .prob-inpBox input:focus,
.quiz-prob .prob-inpBox input:focus-visible {
  border: 1px solid #246af4;
  color: #246af4;
  outline: unset;
  background: transparent;
}
.quiz-prob .prob-inpBox input.incorrect {
  border: 1px solid #df0808;
  background: #fff0ef;
  color: #df0808;
}
.quiz-prob .prob-inpBox input.correct {
  border: 1px solid #028804;
  background: #028804;
  color: #fff;
}

/* 선택형 */
.quiz-select {
  margin-top: 0.33rem;
  display: inline-block;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  font-size: 15px;
  font-weight: 500;
}
.quiz-select p {
  font-size: 15px;
  font-weight: 500;
  color: #000;
}
.quiz-select p.mr8 {
  margin-right: 0.33rem;
}
.quiz-select p.ml8 {
  margin-left: 0.33rem;
}
.quiz-select .quiz-selector {
  margin: 0 0.33rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.quiz-select .quiz-selector input {
  display: none;
}
.quiz-select .quiz-selector label {
  padding: 0.5rem 0.75rem;
  font-size: 15px;
  min-width: 6.66rem;
  font-weight: 500;
  color: #000;
  display: inline-flex;
  font-family: 'Noto Sans KR';
  align-items: center;
  justify-content: center;
  border-radius: 0.66rem;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  border: 1px solid #767676;
}
.quiz-select .quiz-selector label.select {
  color: #fff;
  background: #000;
  border: 1px solid #000;
}
.quiz-select .quiz-selector label.incorrect {
  background: #fff0ef;
  border: 1px solid #df0808;
  color: #df0808;
}
.quiz-select .quiz-selector label.correct {
  background: #028804;
  border: 1px solid #028804;
  color: #fff;
}

.quiz-select .quiz-shorttext-selector input {
  padding: 0.5rem 0.75rem;
  font-size: 15px;
  display: inline-flex;
  width: 2rem;
  text-align: center;
  font-weight: 500;
  color: #000;
  font-family: 'Noto Sans KR';
  align-items: center;
  justify-content: center;
  border-radius: 0.66rem;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  border: 1px solid #767676;
  color: #2c6be7;
}

.quiz-select .quiz-shorttext-selector input.select {
  color: #fff;
  background: #000;
  border: 1px solid #000;
}

.quiz-select .quiz-shorttext-selector input.correct {
  background: #028804;
  border: 1px solid #028804;
  color: #fff;
}

.quiz-select .quiz-shorttext-selector input.incorrect {
  background: #fff0ef;
  border: 1px solid #df0808;
  color: #df0808;
}
.quiz-shorttext-selector input.select {
  color: #fff;
  background: #000;
  border: 1px solid #000;
}

.quiz-shorttext-selector input.correct {
  background: #028804 !important;
  border: 1px solid #028804 !important;
  color: #fff !important;
}

.quiz-shorttext-selector input.incorrect {
  background: #fff0ef !important;
  border: 1px solid #df0808 !important;
  color: #df0808 !important;
}
/* 서술형 */
.quiz-desc {
  display: flex;
  height: 100%;
  flex-direction: column;
  margin-top: 1.25rem;
  gap: 20px;
}
.quiz-desc .quiz-desc-box {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.quiz-desc .quiz-desc-box + .quiz-desc-box {
  margin-top: 1.66rem;
}
.quiz-desc .quiz-desc-box.one-line {
  height: 3.33rem;
}
.quiz-desc .quiz-desc-box.two-line {
  height: 5.13rem;
}
.quiz-desc .quiz-desc-box.three-line {
  height: 6.3rem;
}

.one-line {
  height: 3.33rem !important;
}
.two-line {
  height: 5.13rem !important;
}
.three-line {
  height: 6.3rem !important;
}
.four-line {
  height: 9rem !important;
}

.quiz-desc .quiz-desc-num {
  width: 1.83rem;
  font-size: 1rem;
  font-weight: 500;
  color: #000;
  display: flex;
  position: relative;
}
.quiz-desc .quiz-desc-text {
  width: calc(100% - 1.83rem);
  height: 100%;
  position: relative;
  padding: 1rem;
  border-radius: 0.66rem;
  border: 1px solid #767676;
  background: #f6f6f6;
}
.quiz-desc .quiz-desc-text.focus {
  background: #eef7ff;
  border: 1px solid #2c6be7;
}
.quiz-desc .quiz-desc-text textarea {
  width: 100%;
  height: 100%;
  font-size: 15px;
  line-height: 1.7rem;
  font-weight: 500;
  color: #2c6be7;
  font-family: 'Noto Sans KR';
  height: 100%;
  overflow-y: auto;
  max-height: max-content;
  box-sizing: border-box;
  resize: none;
  display: block;
  border: 0;
  background: transparent;
}
.quiz-desc .quiz-desc-text textarea::-webkit-scrollbar {
  width: 0.33rem;
}
.quiz-desc .quiz-desc-text textarea::-webkit-scrollbar-thumb {
  border-radius: 0.16rem;
  background: #767676;
}
.quiz-desc .quiz-desc-text textarea::-webkit-scrollbar-track {
  border-radius: 0.16rem;
  background: #dadada;
}
.quiz-desc .quiz-desc-text textarea:focus,
.quiz-desc .quiz-desc-text textarea:focus-visible {
  outline: none;
}

.quiz-desc .quiz-desc-text input {
  width: 100%;
  height: 100%;
  font-size: 15px;
  line-height: 1.7rem;
  font-weight: 500;
  color: #2c6be7;
  font-family: 'Noto Sans KR';
  height: 100%;
  overflow-y: auto;
  max-height: max-content;
  box-sizing: border-box;
  resize: none;
  display: block;
  border: 0;
  background: transparent;
}
.quiz-desc .quiz-desc-text.correct {
  background: #028804 !important;
  border: 1px solid #028804 !important;
  color: #fff !important;
}

.quiz-desc .quiz-desc-text.incorrect {
  background: #fff0ef !important;
  border: 1px solid #df0808 !important;
  color: #df0808 !important;
}

.quiz-desc .quiz-desc-text.correct input {
  background: #028804 !important;
  color: #fff !important;
}

.quiz-desc .quiz-desc-text.incorrect input {
  background: #fff0ef !important;
  color: #df0808 !important;
}

.quiz-desc .quiz-desc-text input::-webkit-scrollbar {
  width: 0.33rem;
}
.quiz-desc .quiz-desc-text input::-webkit-scrollbar-thumb {
  border-radius: 0.16rem;
  background: #767676;
}
.quiz-desc .quiz-desc-text input::-webkit-scrollbar-track {
  border-radius: 0.16rem;
  background: #dadada;
}
.quiz-desc .quiz-desc-text input:focus,
.quiz-desc .quiz-desc-text input:focus-visible {
  outline: none;
}

.hidden {
  display: none;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.blink-animation {
  animation: blink 1s linear 2;
}

.inactive {
  pointer-events: none;
}

.quiz-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
  gap: 10px;
}

.quiz-line .quiz-line-content {
  display: flex;
  flex-direction: row;
  width: 100%;
  min-height: 100px;
}

.quiz-line .quiz-line-content .left {
  position: relative;
  margin-right: auto;
  width: 106px;
  font-size: 15px;
  display: flex;
  flex-direction: row;
}

.quiz-line .quiz-line-content .left .circle {
  position: absolute;
  margin-top: 6px;
  right: -20px;
  width: 10px;
  height: 10px;
  margin-left: auto;
  border-radius: 100%;
  background: #000;
  cursor: pointer;
  z-index: 40;
}

.quiz-line .quiz-line-content .right {
  margin-left: auto;
  width: 149px;
  font-size: 15px;
  display: flex;
  flex-direction: row;
}

.quiz-line .quiz-line-content .right .circle {
  margin-top: 6px;
  min-width: 10px;
  min-height: 10px;
  width: 10px;
  height: 10px;
  margin-right: auto;
  border-radius: 100%;
  background: #000;
  cursor: pointer;
  z-index: 40;
}

.quiz-line .quiz-line-content .right .txt {
  margin-left: 8px;
}

.quiz-line-svg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 44;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: '';
}

.select-box {
  /* text-box */

  display: block !important;
  box-sizing: border-box !important;

  /* Auto layout */
  justify-content: center !important;
  align-items: center !important;

  font-size: 16px !important;
  padding: 2px 2px !important;

  background: #ffffff;
  border: 1px solid #767676 !important;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2) !important;
  border-radius: 4px !important;
  width: 24px !important;
  height: 24px !important;
}

.select-box2 {
  /* text-box */

  display: block !important;
  box-sizing: border-box !important;

  /* Auto layout */
  justify-content: center !important;
  align-items: center !important;

  font-size: 13px !important;
  padding: 2px 2px !important;
  font-weight: 500 !important;

  background: #ffffff;
  border: 1px solid #767676;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2) !important;
  border-radius: 4px !important;
  min-width: 30px !important;
  min-height: 30px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.selection {
  display: flex;

  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.select-box.select {
  color: #fff;
  background: #000;
  border: 1px solid #000;
}

.select-box.correct {
  background: #028804;
  border: 1px solid #028804;
  color: #fff;
}

.select-box.incorrect {
  background: #fff0ef;
  border: 1px solid #df0808;
  color: #df0808;
}

.select-box2.correct {
  background: #028804;
  border: 1px solid #028804;
  color: #fff;
}

.select-box2.incorrect {
  background: #fff0ef;
  border: 1px solid #df0808;
  color: #df0808;
}

.quiz-progress {
  font-family: 'Noto Sans KR', Dotum, 'Apple SD Gothic Neo', sans-se rif;
  font-weight: 500;
  align-items: center;
  justify-content: center;
  display: none;
}

.quiz-new-subtitle {
  font-family: 'Noto Sans KR', Dotum, 'Apple SD Gothic Neo', sans-se rif;
  font-size: 15px;
  font-weight: 500;
  color: #000;
  display: flex;
  flex-direction: row;
  gap: 4px;
}

.shorttext-problem {
  display: inline-block;
  margin-top: 0.83rem;
  font-size: 15px;
}

.shorttext-problem .quiz-shorttext-selector {
  display: inline-flex;
}

.shorttext-problem .quiz-shorttext-selector input {
  padding: 0.5rem 0.75rem;
  font-size: 15px;
  display: inline-flex;
  width: 6.66rem;
  text-align: center;
  font-weight: 500;
  color: #000;
  font-family: 'Noto Sans KR';
  align-items: center;
  justify-content: center;
  border-radius: 0.66rem;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  border: 1px solid #767676;
  color: #2c6be7;
}

.shorttext-problem2 {
  display: inline-block;
  margin-top: 0.83rem;
  font-size: 15px;
}

.shorttext-problem2 .quiz-shorttext-selector {
  display: inline-flex;
  align-items: center;
}

.shorttext-problem2 .quiz-shorttext-selector input {
  padding: 6px 0px 6px 0px;
  font-size: 15px;
  display: inline-flex;
  width: 100px;
  height: 30px;
  text-align: center;
  font-weight: 500;
  color: #000;
  font-family: 'Noto Sans KR';
  align-items: center;
  justify-content: center;
  border-radius: 0.66rem;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  border: 1px solid #767676;
  color: #2c6be7;
}

.touch-quiz-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.dnd-box {
  width: 60px;
  height: 14px;
  border-radius: 8px;
  border: 1px #616b70 solid;
  background: #f7fafc;
  padding: 8px 10px 8px 10px;
  display: flex;
  margin-left: auto;
  margin-right: auto;
}

.quiz-prob2 {
  margin-top: 0.83rem;
  padding: 1.33rem 1rem 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-content: center;
  gap: 0.83rem;
  background: #f7fafc;
  border-radius: 0.66rem;
  border: 1px solid #cfdce5;
}

.noto-fam {
  font-family: 'Noto Sans KR', Dotum, 'Apple SD Gothic Neo', sans-se rif;
}

.exp-content {
  display: flex;
  flex-direction: row;
  justify-content: start;
  gap: 0.83rem;
  font-weight: 500;
}

.quiz-num-boxx {
  width: 60px !important;
  height: 14px !important;
  border-radius: 8px !important;
  border: 1px #616b70 solid !important;
  background: white !important;
  padding: 8px 10px 8px 10px !important;
}

.textarea-title {
  font-family: 'Noto Sans KR', Dotum, 'Apple SD Gothic Neo', sans-se rif;
  font-size: 15px;
}
