@charset "UTF-8";
/*     반응형 화면 크기     */
/*     폰트 모음     */
@font-face {
  font-family: "KimjungchulGothic-Bold";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2302_01@1.0/KimjungchulGothic-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
/*     때깔 모음     */
/*     기본 디자인     */
.box {
  display: flex;
  height: 100%;
  min-height: 1000px;
  padding: 0;
}
@media (min-width: 768px) and (max-width: 1250px) {
  .box {
    flex-direction: column;
    height: auto;
  }
  .box .left {
    border-bottom: 2px solid #f1f1f1;
  }
}
.box .left {
  display: flex;
  flex-direction: column;
  padding: 20px;
  width: 40%;
  height: auto;
  overflow: hidden;
}
@media (min-width: 1251px) {
  .box .left {
    border-right: 2px solid #f1f1f1;
    flex: 0.8;
  }
}
@media (min-width: 768px) and (max-width: 1250px) {
  .box .left {
    max-height: 1600px;
    width: 100%;
  }
}
.box .left .search-wrap {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.box .left .search-wrap button {
  background: #FF6800;
  padding: 15px 20px;
  border: none;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  min-width: 115px;
  max-width: 115px;
  flex: 1;
}
.box .left .search-wrap .search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  flex: 2;
  border: 1px solid #eaeaea;
  border-radius: 5px;
}
.box .left .search-wrap .search-input-wrap input {
  border: none;
  padding-left: 20px;
  padding-right: 30px;
  font-size: 16px;
  color: black;
  outline: none;
  min-width: 105px;
  width: 100%;
}
.box .left .search-wrap .search-input-wrap .search-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 12px;
  cursor: pointer;
}
.box .left .search-wrap .search-input-wrap #askButton.disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: default;
}
.box .left .result-wrap {
  margin-top: 20px;
  height: 100%;
}
@media (min-width: 768px) and (max-width: 1250px) {
  .box .left .result-wrap {
    max-height: 1000px;
  }
}
.box .left .result-wrap .init-msg {
  background: #f4f4f4;
  border: 1px solid #eaeaea;
  border-radius: 5px;
  padding: 15px 20px;
  font-size: 14px;
  margin-bottom: 20px;
}
.box .left .result-wrap .init-msg a {
  font-size: 12px;
  background: #333333;
  color: white;
  width: 40px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  display: inline-block;
  border-radius: 5px;
}
.box .left .result-wrap .init-msg b {
  font-weight: 700;
}
.box .left .result-wrap .sentence-wrap {
  height: fit-content;
  overflow: auto;
  margin-bottom: 7.5px;
}
.box .left .result-wrap .sentence-wrap .sentence {
  background: #f9f9f9;
  border: 1px solid #cbcbcb;
  border-radius: 5px;
  padding: 15px 20px;
  margin-bottom: 20px;
  line-height: 160%;
  font-size: 14px;
  display: flex;
  cursor: pointer;
  width: 100%;
}
.box .left .result-wrap .sentence-wrap .sentence:hover {
  background: #E9E9E9;
  transition: all 0.2s;
}
.box .right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  overflow: hidden;
}
@media (min-width: 1251px) {
  .box .right {
    flex: 1;
  }
}
@media (min-width: 768px) and (max-width: 1250px) {
  .box .right {
    min-height: 1000px;
  }
}

/*     modals     */
#wordcloud1-modal {
  max-width: 500px;
}
#wordcloud1-modal .modal-title {
  margin-bottom: 5px !important;
  font-size: 25px;
}
#wordcloud1-modal .btn-wrap {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}
#wordcloud1-modal .btn-wrap button {
  background: #FF6800;
  font-size: 16px;
  outline: none;
  border: none;
  border-radius: 5px;
  padding: 15px 20px;
  box-sizing: border-box;
  color: white;
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  font-weight: 700;
  padding: 25px 40px;
  letter-spacing: 1px;
}

#wordcloud2-modal {
  width: 600px;
}
#wordcloud2-modal .desc-wrap {
  padding: 30px;
  border-radius: 5px;
  background: #F1F1F1;
}
#wordcloud2-modal .desc-wrap .desc-title {
  font-size: 25px;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}
#wordcloud2-modal .desc-wrap .desc-content {
  text-align: center;
}
#wordcloud2-modal .wordcloud {
  width: 100%;
  height: 300px;
}
#wordcloud2-modal .wordcloud span {
  cursor: pointer;
}

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