@charset "utf-8";
body {
  height: 100%;
  font-family: "Pretendard", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #3a3a3a;
}

/* FLEX */
.flex {
  display: flex;
}
.justify-content-start {
  justify-content: start;
}
.justify-content-center {
  justify-content: center;
}
.justify-content-end {
  justify-content: end;
}
.justify-content-sa {
  justify-content: space-around;
}
.justify-content-sb {
  justify-content: space-between;
}
.align-items-start {
  align-items: start;
}
.align-items-center {
  align-items: center;
}
.align-items-end {
  align-items: end;
}
.wrap {
  flex-wrap: wrap;
}
.nowrap {
  flex-wrap: nowrap;
}
.column {
  flex-direction: column;
}

/* BUTTON */
button[class*="btn-"] {
  text-align: center;
  border-radius: 7px;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
button[class*="btn-"] img {
  margin-right: 4px;
}
.btn-prim {
  color: #fff;
  background-color: #5d88f1 !important;
}
.btn-prim:hover {
  background-color: #6995ff !important;
}
.btn-second {
  color: #fff;
  background-color: #2e3341;
}
.btn-second:hover {
  background-color: #4b5265;
}
.btn-ghost {
  color: #2e3341 !important;
  font-weight: 600 !important;
  border: 1px solid #2e3341 !important;
  border-radius: 7px !important;
}
.btn-text {
  color: #2e3341;
}
.btn-disabled {
  color: #888;
  background-color: #d1d1d1;
}
.btn-danger {
  color: #fff;
  background-color: #dc5047;
}
.btn-danger:hover {
  background-color: #f16e65;
}

/* SIDE BAR */
#sidebar {
  width: 250px;
  background-color: #2e3341;
  height: 100%;
  transition: all 0.5s ease-out;
  position: fixed;
  top: 0;
  left: 0;
  overflow-y: auto;
  z-index: 1;
}
#sidebar.hide {
  transform: translateX(-250px);
}
#sidebar::-webkit-scrollbar {
  width: 22px;
}
#sidebar::-webkit-scrollbar-thumb {
  height: 20%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  border: 8px solid #2e3341;
}
#sidebar::-webkit-scrollbar-track {
  background: none;
}
h1 {
  margin: 16px 0;
  padding: 0 1rem;
}
h1 a {
  display: block;
  width: 70px;
  height: 26px;
}
h1 a img {
  display: block;
  width: 100%;
}
dl.list {
  padding: 0 1rem;
  margin-top: 40px;
  color: #fff;
}
dl.list dt {
  margin-bottom: 8px;
  font-weight: 600;
}
dl.list dd {
  height: 40px;
  padding: 0 1rem 0 2.5rem;
  opacity: 0.5;
  position: relative;
  border-radius: 7px;
  margin-bottom: 1px;
}
dl.list dd.active {
  background: rgba(174, 197, 254, 0.15);
  color: #a7bef4;
  opacity: 1;
}
dl.list dd:hover {
  background: rgba(174, 197, 254, 0.15);
  color: #a7bef4;
  opacity: 1;
}
dl.list dd a {
  display: block;
  height: 40px;
  line-height: 40px;
}
.menu-icon {
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
}
.menu-icon.search {
  background: url("../images/icon-search.png") no-repeat center center;
  background-size: 16px 16px;
}
.menu-icon.write {
  background: url("../images/icon-write.png") no-repeat center center;
  background-size: 16px 16px;
}
.menu-icon.mypage {
  background: url("../images/icon-mypage.png") no-repeat center center;
  background-size: 16px 16px;
}
.menu-icon.all {
  background: url("../images/icon-all.png") no-repeat center center;
  background-size: 16px 16px;
}
.menu-icon.complete {
  background: url("../images/icon-complete.png") no-repeat center center;
  background-size: 16px 16px;
}
.menu-icon.proceed {
  background: url("../images/icon-proceeding.png") no-repeat center center;
  background-size: 16px 16px;
}

/* SELECT */
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("../images/icon-selectarr.png");
  background-repeat: no-repeat;
  background-position: right 8px center;
}

dl.list dd.state-box {
  height: auto;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 1;
  margin-bottom: 4px;
}
dl.list dd.state-box:hover {
  color: #fff;
}
dl.list dd.state-box ul li span {
  color: #ff8585;
}
.progress-bar {
  width: 100%;
  height: 2px;
  border-radius: 1px;
  margin: 16px 0;
  background-color: rgba(167, 190, 244, 0.3);
  position: relative;
}
.progress-bar::after {
  content: "";
  display: block;
  width: 75%;
  height: 2px;
  border-radius: 1px;
  background-color: #a7bef4;
  position: absolute;
  top: 0;
  left: 0;
}
dl.list dd.state-box p {
  font-size: 0.8rem;
  opacity: 0.5;
}
.new-work {
  padding: 0 1rem;
  margin-top: 40px;
}
.new-work button {
  width: 100%;
  padding: 0 1rem;
  border: 1px solid #fff;
  box-sizing: border-box;
  border-radius: 7px;
  height: 40px;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease-out;
  text-align: left;
  opacity: 0.6;
}
.new-work button:hover {
  opacity: 1;
}
.new-work button i {
  margin-right: 4px;
}
/* .new-work button::before { content: ''; display:block; width: 12px; height:2px; background-color:#527FED; position: absolute; top:50%; left:16px; transform: translateY(-50%); } 
.new-work button::after { content: ''; display:block; width: 2px; height:12px; background-color:#527FED; position: absolute; top:50%; left:21px; transform: translateY(-50%); } */
/* .new-work button:hover { background-color: #fff; color:#4675E7; } 
.new-work button:hover::before, .new-work button:hover::after { background-color:#4675E7; } */

#content {
  width: calc(100% - 250px);
  height: 100vh;
  margin-left: 250px;
  transition: all 0.5s ease-out;
}
#content.full {
  width: 100%;
  margin-left: 0;
}
.header {
  width: calc(100% - 250px - 3rem);
  height: 44px;
  padding: 0 1.5rem;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  position: fixed;
  z-index: 1;
}
#content.full .header {
  width: calc(100% - 3rem);
}
.header .logout {
  font-size: 0.8rem;
  color: #9a9a9a;
  font-weight: 600;
}
.header .logout i {
  margin-right: 2px;
  z-index: 1;
}

.container {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding-top: 44px;
}
.left {
  width: 22%;
  max-width: 40%;
  min-width: 500px;
  padding: 2rem;
  overflow-y: auto;
}
.left::-webkit-scrollbar {
  width: 22px;
}
.left::-webkit-scrollbar-thumb {
  height: 20%;
  background: #ddd;
  border-radius: 12px;
  border: 8px solid #fff;
}
.left::-webkit-scrollbar-track {
  background: none;
}

.left h2,
.right h2 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 24px;
}
.left h2 a.tip {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 400;
  color: #9a9a9a;
  margin-left: 4px;
  cursor: pointer;
}
.left h2 a.tip i {
  margin-left: 4px;
}

.set-theme-wrap {
  margin-bottom: 10px;
}
.theme-wrap {
  padding-top: 0px !important;
  display: flex;
}
.theme-wrap button {
  width: 180px;
  height: 40px;
  display: flex;
}
.theme-wrap button.load-theme {
  margin-right: 4px;
}
.theme-wrap button img {
  display: block;
  margin-right: 2px;
}
button.refresh {
  padding: 0.5rem 1rem;
}

.writeboard {
  width: 100%;
  height: calc(100% - 3rem);
  position: relative;
}
.writeboard .board-box {
  background-color: rgba(70, 117, 231, 0.07);
  padding: 0.7rem;
  border-radius: 7px;
  margin-bottom: 8px;
}
.writeboard .board-box dl dt {
  color: #7a7a7a;
}
.writeboard .board-box dl dt .thumb-img {
  width: 36px;
  height: 36px;
  margin-right: 8px;
  border-radius: 18px;
  overflow: hidden;
}
.writeboard .board-box dl dd {
  margin: 1rem 0;
  font-size: 1rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 600;
}
.writeboard .board-box button.comment {
  padding-top: 0.7rem;
  color: #7a7a7a;
}
.writeboard .board-box button.comment i {
  margin-right: 4px;
}

.writeboard .inputbox-wrap {
  overflow-y: auto;
}
.writeboard .inputbox-wrap::-webkit-scrollbar {
  width: 22px;
}
.writeboard .inputbox-wrap::-webkit-scrollbar-thumb {
  height: 20%;
  background: #ddd;
  border-radius: 12px;
  border: 8px solid #fff;
}
.writeboard .inputbox-wrap::-webkit-scrollbar-track {
  background: none;
}

.inputbox-wrap .add-data {
  width: 100%;
  height: 40px;
  background-color: #f0f0f0;
  border-radius: 7px;
  display: flex;
  margin-bottom: 10px;
}
.inputbox-wrap .add-data input {
  padding: 8px 16px;
  margin: 0;
  width: calc(70% - 32px);
  height: 24px;
  line-height: 24px;
  background: none;
  border: 0;
}
.inputbox-wrap .add-data input:focus {
  border: 0;
  outline: 0;
}
.inputbox-wrap .add-data input:focus-visible {
  border: 0;
  outline: 0;
}
.inputbox-wrap .add-data input::placeholder {
  color: #9a9a9a;
}
.inputbox-wrap .add-data input:focus::-webkit-input-placeholder {
  color: transparent;
}
.inputbox-wrap .add-data input:focus::-moz-placeholder {
  color: transparent;
}
.inputbox-wrap .add-data input:focus:-ms-input-placeholder {
  color: transparent;
}
.inputbox-wrap .add-data input:focus::-ms-input-placeholder {
  color: transparent;
}
.inputbox-wrap .add-data button {
  width: 30%;
  height: 40px;
  background-color: #2e3341;
  color: #fff;
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
  transition: all 0.3s ease;
}
.inputbox-wrap .add-data button:hover {
  background-color: #4b5265;
}

.inputbox-wrap .data-wrap {
  height: 530px;
  overflow-y: auto;
}

.inputbox-wrap dl.inputbox {
  width: 100%;
  margin-bottom: 8px;
  display: flex;
}
.inputbox-wrap dl.inputbox:last-child {
  margin-bottom: 220px;
}
.inputbox-wrap dl.inputbox dt {
  width: 100px;
  margin-right: 16px;
  font-weight: 800;
  padding: 8px 0;
  line-height: 22px;
}
.inputbox-wrap dl.inputbox dd:nth-child(2) {
  width: 356px;
  min-height: 38px;
  background-color: #f0f0f0;
  box-sizing: border-box;
  border-radius: 7px;
  margin: 0;
  padding: 8px 16px;
  display: flex;
  margin-right: 8px;
}
.inputbox-wrap dl.inputbox dd textarea {
  resize: none;
  overflow-y: hidden;
  width: 100%;
  min-height: 20px;
  font-size: 14px;
  border: 0;
  font-weight: 500;
  font-family: "Pretendard", sans-serif;
  padding: 0;
  background: none;
}
.inputbox-wrap dl.inputbox dd textarea:focus {
  border: 0;
  outline: 0;
}
.inputbox-wrap dl.inputbox dd textarea:focus-visible {
  border: 0;
  outline: 0;
}
.inputbox-wrap dl.inputbox dd button.del-data {
  width: 20px;
  height: 20px;
  background: url("../images/btn-del-data.png") no-repeat center center;
  margin-top: 8px;
}
#resizableTextarea::placeholder {
  font-size: 1rem;
  color: #ad4747;
}
.inputbox-wrap dl.inputbox dd textarea::placeholder {
  font-size: 0.8rem;
  color: #9a9a9a;
}
.inputbox-wrap dl.inputbox dd textarea:focus::-webkit-input-placeholder {
  color: transparent;
}
.inputbox-wrap dl.inputbox dd textarea:focus::-moz-placeholder {
  color: transparent;
}
.inputbox-wrap dl.inputbox dd textarea:focus:-ms-input-placeholder {
  color: transparent;
}
.inputbox-wrap dl.inputbox dd textarea:focus::-ms-input-placeholder {
  color: transparent;
}

.inputbox-wrap .data-wrap::-webkit-scrollbar {
  display: none;
}
/* button.create { width: 100%; max-width: 350px; height: 40px; margin:24px auto; background-color:#fff; border:1px solid #527FED; color:#527FED; border-radius: 7px; transition: all .3s ease; } */
.resizer {
  cursor: ew-resize;
  height: 100%;
  width: 3px;
}

.creat-btn-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 0;
  background: #fff;
}
.creat-btn-wrap button.add-file {
  width: 150px;
  box-sizing: border-box;
  margin-right: 4px;
}
.creat-btn-wrap button.create {
  width: 250px;
  height: 40px;
  box-sizing: border-box;
  color: #fff;
}

.right {
  padding: 2rem;
  flex: 1;
  position: relative;
  min-width: 600px;
  border-left: 1px solid #ddd;
  transform: rotate(0);
}
/* .right::-webkit-scrollbar { width: 22px; } 
.right::-webkit-scrollbar-thumb { height: 20%; background: #ddd; border-radius: 12px; border:8px solid #fff; } 
.right::-webkit-scrollbar-track { background:none; } */
.right .editwrap {
  position: relative;
  height: 100%;
}
.right .editwrap .editcont {
  height: calc(100% - 160px);
  overflow-y: auto;
  white-space: pre-line;
  font-size: 1rem;
  line-height: 1.5;
  padding-right: 1rem;
  padding-bottom: 1rem;
}

.right .editwrap .editcont::-webkit-scrollbar {
  width: 22px;
}
.right .editwrap .editcont::-webkit-scrollbar-thumb {
  height: 20%;
  background: #ddd;
  border-radius: 12px;
  border: 8px solid #fff;
}
.right .editwrap .editcont::-webkit-scrollbar-track {
  background: none;
}

/* AI 툴바 디자인 수정 (2024-02-29) */
.toolbox {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.toolbox .edit-txt {
  min-width: 520px;
  min-height: 52px;
  background-color: #fff;
  border-radius: 16px;
  padding: 0 8px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.3);
}
.toolbox .edit-txt .user-write {
  width: calc(100% - 168px);
  position: relative;
}
.toolbox .edit-txt .user-write i {
  content: "";
  display: inline-block;
  width: 25px;
  height: 28px;
  background: url("../images/logo-haap.png") no-repeat center center;
  margin: 0 10px;
}
.toolbox .edit-txt .user-write input {
  width: calc(100% - 41px);
  border: 0;
  padding: 0;
  font-size: 1rem;
}
.toolbox .edit-txt .user-write input::placeholder {
  color: #9a9a9a;
}
.toolbox .edit-txt .user-write input:focus-visible {
  outline: 0;
}
.toolbox .edit-txt .user-write input:focus::-webkit-input-placeholder {
  color: transparent;
}
.toolbox .edit-txt .user-write input:focus::-moz-placeholder {
  color: transparent;
}
.toolbox .edit-txt .user-write input:focus:-ms-input-placeholder {
  color: transparent;
}
.toolbox .edit-txt .user-write input:focus::-ms-input-placeholder {
  color: transparent;
}
.toolbox .edit-txt .user-write button.all-del {
  width: 15px;
  height: 15px;
  background: url("../images/btn-all-del.png") no-repeat center center;
}
.toolbox .quick-list {
  width: 154px;
  height: 0;
  background-color: #5d88f1;
  border-radius: 8px;
  margin-right: 8px;
  margin-top: 8px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.3);
  transition: ease 0.2s 0s; /* overflow-y: auto; */
}
.toolbox .quick-list::-webkit-scrollbar {
  width: 18px;
}
.toolbox .quick-list::-webkit-scrollbar-thumb {
  height: 10%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  border: 6px solid #5d88f1;
}
.toolbox .quick-list::-webkit-scrollbar-track {
  background: none;
}

.toolbox .corr-text {
  min-width: 520px;
  width: 100%;
  padding: 1rem;
  border-radius: 16px;
  margin-bottom: 8px;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.toolbox .corr-text textarea {
  width: calc(100% - 2rem);
  border: 0;
  padding: 1rem;
  background-color: #f0f0f0;
  border-radius: 8px;
  resize: none;
}
.toolbox .corr-text textarea:focus {
  outline: 0;
}
.toolbox .corr-text textarea:focus-visible {
  outline: 0;
}
.toolbox .corr-text button {
  margin-top: 8px;
  font-weight: 500;
  color: #5d88f1;
}
.toolbox .corr-text button img {
  margin-right: 4px;
}

.quick-list-animate {
  animation: drop 0.3s;
  animation-fill-mode: forwards;
  opacity: 1;
}
@keyframes drop {
  from {
    height: 0;
  }
  to {
    height: 164px;
    animation-timing-function: ease-out;
  }
}
.toolbox .quick-list ul {
  padding: 0.5rem 1rem;
}
.toolbox .quick-list ul li {
  height: 30px;
  display: flex;
  justify-content: start;
  align-items: center;
  color: #fff;
  cursor: pointer;
  opacity: 0.75;
}
.toolbox .quick-list ul li:hover {
  opacity: 1;
}
.toolbox .quick-list ul li img {
  margin-right: 8px;
}
.toolbox .edit-txt button.quick-write {
  width: 154px;
  height: 36px;
  background-color: #5d88f1;
  border-radius: 8px;
  color: #fff;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.toolbox .edit-txt button.quick-write img {
  margin-left: 4px;
}
.toolbox .edit-txt dl dd a {
  color: #527fed;
  margin-left: 8px;
}
.toolbox .edit-txt dl dd a i {
  margin-left: 2px;
}

/* .toolbox .edit-hdr { min-width: 200px; max-height: 270px; overflow-y: auto; background-color: #fff; border-radius: 7px; padding: 1rem .5rem 1rem 1rem; box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.3); -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.3); display:inline-block; } 
.toolbox .edit-hdr dl { margin-bottom: 24px; } 
.toolbox .edit-hdr dl:last-child { margin-bottom: 0; } 
.toolbox .edit-hdr dl dt { margin-bottom: 4px; color:#7a7a7a; font-size: .8rem; } 
.toolbox .edit-hdr dl dd { line-height: 2rem; padding: 0 .5rem; cursor:pointer; border-radius: 7px; } 
.toolbox .edit-hdr dl dd:hover { background-color:rgba(82, 127, 237, 0.10); } 
.toolbox .edit-hdr dl dd i { display:inline-block; width:16px; margin-right: 8px; text-align: center; color:rgba(70, 117, 231, 0.40); } 
.toolbox .edit-hdr dl dd.depth { position: relative; } 
.toolbox .edit-hdr dl dd.depth .fa-angle-right { position: absolute; top:50%; right:.5rem; transform: translateY(-50%); width: auto; margin-right:0; font-weight: 800; } 

.toolbox .edit-hdr::-webkit-scrollbar { width: 22px; } 
.toolbox .edit-hdr::-webkit-scrollbar-thumb { height: 20%; background: #ddd; border-radius: 12px; border:8px solid #fff; } 
.toolbox .edit-hdr::-webkit-scrollbar-track { background:none; }  */

.send {
  width: 100%;
  padding: 24px 0;
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #fff;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.send button {
  width: 50%;
  max-width: 350px;
  height: 40px;
}
.send button.opinion {
  width: 20%;
  max-width: 200px;
  margin-right: 8px;
}
.send button.send-btn img {
  margin-left: 4px;
}

.list-table {
  width: 100%;
  padding: 2rem;
  overflow-y: auto;
}
.list-table .title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.list-table h2 {
  font-size: 1.2rem;
  font-weight: 800;
}
.view-style {
  display: flex;
}
.view-style li {
  margin-left: 4px;
  width: 26px;
  height: 26px;
}
.view-style li button {
  width: 26px;
  height: 26px;
}
.view-style li button.view-gall {
  background: url("../images/btn-gallery.png") no-repeat center center;
}
.view-style li button.view-list {
  background: url("../images/btn-list.png") no-repeat center center;
}
.list-table .table-wrap {
  width: 100%;
  border-top: 1px solid #2e3341;
}
.list-table .table-wrap table {
  width: 100%;
}
.list-table .table-wrap table tr {
  border-bottom: 1px solid #ddd;
}
.list-table .table-wrap table tr th {
  vertical-align: middle;
  text-align: center;
  background-color: rgba(70, 117, 231, 0.07);
  padding: 15px 0;
  font-weight: 600;
}
.list-table .table-wrap table tr td {
  vertical-align: middle;
  text-align: center;
  padding: 10px 20px;
}
.list-table .table-wrap table tr td:nth-child(2) {
  text-align: left;
}
.list-table .table-wrap table tr td a {
  display: block;
}
.list-table .table-wrap table tr td a:hover {
  font-weight: 500;
}
.process p {
  display: inline-block;
  padding: 4px 0;
  width: 64px;
  color: #fff;
  border-radius: 4px;
}
/* 진행상태 - 작성중 */
.process p.tag-01 {
  background-color: #32bf95;
}
/* 진행상태 - 접수대기 */
.process p.tag-02 {
  background-color: #999999;
}
/* 진행상태 - 접수 */
.process p.tag-03 {
  background-color: #ffac0b;
}
/* 진행상태 - 보완요청 */
.process p.tag-04 {
  background-color: #ef6961;
}
/* 진행상태 - 완료 */
.process p.tag-05 {
  background-color: #5d88f1;
}

.list-table .table-wrap table tr td button.delete {
  width: 16px;
  height: 16px;
  background: url("../images/icon-delete.png") no-repeat center center;
}

.pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 1rem;
}
.page-num {
  display: flex;
  align-items: center;
}
.page-num li a {
  padding: 0 8px;
  color: #b1b1b1;
}
.page-num li a:hover {
  color: #2e3341;
}
.page-num li a.active {
  color: #2e3341;
  text-decoration: underline;
}
.btn-next-wrap,
.btn-prev-wrap {
  display: flex;
  justify-content: start;
  align-items: center;
}
button.page-prev {
  width: 17px;
  height: 17px;
  background: url("../images/btn-pagination-prev.png") no-repeat center center;
  margin: 0 16px;
}
button.page-next {
  width: 17px;
  height: 17px;
  background: url("../images/btn-pagination-next.png") no-repeat center center;
  margin: 0 16px;
}
.go-first,
.go-last {
  font-weight: 500;
}

.search-wrap {
  display: flex;
}
.search-wrap select {
  width: 160px;
  height: 36px;
  margin-right: 8px;
  border: 1px solid #d1d1d1;
  border-radius: 7px;
}
.search-wrap select:focus-visible {
  outline: 0;
}
.search-wrap select:focus {
  outline: 0;
}
.srch-input-wrap {
  width: 240px;
  height: 36px;
  border: 1px solid #d1d1d1;
  border-radius: 7px;
  padding: 0 8px;
  box-sizing: border-box;
  position: relative;
}
.srch-input-wrap input {
  border: 0;
  padding: 0;
  height: 34px;
}
.srch-input-wrap input:focus-visible {
  outline: 0;
}
.srch-input-wrap input:focus {
  outline: 0;
}
.srch-input-wrap button.btn-search {
  width: 18px;
  height: 18px;
  background: url("../images/btn-list-search.png") no-repeat center center;
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
}

/* 추가 수정 2021-02-20 */
.box-btn-wrap {
  height: 16px;
}
.box-btn-wrap button {
  width: 16px;
  height: 16px;
  opacity: 0.4;
}
.box-btn-wrap button.btnWrite {
  background: url("../images/icon-write-1.png") no-repeat center center;
  margin-right: 12px;
}
.box-btn-wrap button.btnDelete {
  background: url("../images/icon-delete.png") no-repeat center center;
  margin-right: 12px;
}
.box-btn-wrap button.btnEyecl {
  background: url("../images/icon-eyecl-op.png") no-repeat center center;
  margin-right: 12px;
}
.box-btn-wrap button.btnEye {
  background: url("../images/icon-eye-op.png") no-repeat center center;
  margin-right: 12px;
}

.progress-tag {
  width: 60px;
  height: 24px;
  font-size: 13px;
  line-height: 24px;
  text-align: center;
  border-radius: 4px;
  color: #fff;
  margin-bottom: 8px;
}

.process-bar {
  width: 100%;
  height: 4px;
  background-color: #d1d1d1;
  border-radius: 2px;
  position: relative;
  margin-bottom: 16px;
}
.process-bar span {
  display: block;
  width: 30%;
  height: 4px;
  border-radius: 2px;
  position: absolute;
  top: 0;
  left: 0;
}

/* 진행상태 - 작성중 */
.progress-tag.tag-01 {
  background-color: #32bf95;
}
.process-bar.bar-01 span {
  background-color: #32bf95;
}
/* 진행상태 - 접수대기 */
.progress-tag.tag-02 {
  background-color: #999999;
}
.process-bar.bar-02 span {
  background-color: #999999;
}
/* 진행상태 - 접수 */
.progress-tag.tag-03 {
  background-color: #ffac0b;
}
.process-bar.bar-03 span {
  background-color: #ffac0b;
}
/* 진행상태 - 보완요청 */
.progress-tag.tag-04 {
  background-color: #ef6961;
}
.process-bar.bar-04 span {
  background-color: #ef6961;
}
/* 진행상태 - 완료 */
.progress-tag.tag-05 {
  background-color: #5d88f1;
}
.process-bar.bar-05 span {
  background-color: #5d88f1;
}
/* 진행상태 - 반려 */
.progress-tag.tag-06 {
  background-color: #515151;
}
.process-bar.bar-06 span {
  background-color: #515151;
}

.sub-info {
  color: #2e3341;
  font-size: 0.8rem;
  opacity: 0.6;
}
button.file-list {
  background-color: #ffffff;
  position: absolute;
  right: 0;
  top: 80px;
  padding: 0.75rem 1.25rem;
  border-radius: 0;
  border-radius: 0px !important;
  border-top-left-radius: 20px !important;
  border-bottom-left-radius: 20px !important;
  display: flex;
  align-items: center;
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2);
  border-right: 0; /* background-color:#6E5DDC; color: #fff; */
}
button.file-list img {
  margin-right: 4px;
}

/* 로그인 - INTRO */
.layout-wrapper.login {
  width: calc(100% - 4rem);
  height: calc(100vh - 4rem);
  padding: 2rem;
  background-color: #f2f5fd;
}
.login-header {
  height: 36px;
}
.layout-wrapper.login h1 {
  height: 36px;
  margin: 0;
  padding: 0;
}
.login-btn-wrap button.btn-join {
  width: 100px;
  height: 36px;
  color: #5d88f1;
  font-weight: 600;
}
.login-btn-wrap button.btn-login {
  width: 140px;
  height: 36px;
}
.intro-img {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-box-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.login-box {
  width: 360px;
  height: auto;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(75, 111, 194, 0.15);
  padding: 4.8rem 3.5rem;
}
.login-box h2 {
  font-size: 1.75rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
}
.info-wrap {
  width: 100%;
}
.layout-wrapper.login .id-wrap {
  margin-bottom: 1rem;
}
.layout-wrapper.login .pw-wrap {
  margin-bottom: 3rem;
}
.info-wrap label {
  display: block;
  margin-bottom: 4px;
}
.info-wrap input {
  width: 100%;
  height: 36px;
  line-height: 36px;
  padding: 0 0.5rem;
  margin: 0;
  border: 1px solid #ddd;
  border-radius: 7px;
  box-sizing: border-box;
}
.info-wrap input:focus {
  border: 1px solid #5d88f1;
  outline: 0;
}
.login-box button {
  text-align: center;
  margin: 0 auto;
}
.login-box button.login {
  width: 100%;
  height: 40px;
  margin-bottom: 3rem;
}
.layout-wrapper.login .login-box button.join {
  color: #5d88f1;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.login-box button.findpw {
  color: #888;
}

/* 회원가입 */
.layout-wrapper.join {
  width: calc(100% - 4rem);
  height: calc(100vh - 4rem);
  padding: 2rem;
  background-color: #f2f5fd;
}
.name-wrap {
  margin-bottom: 3rem;
}
.layout-wrapper.join .info-wrap > div {
  margin-bottom: 1rem;
}
.layout-wrapper.join .info-wrap > div.name-wrap {
  margin-bottom: 3rem;
}
.layout-wrapper.join .login-box button.join {
  width: 100%;
  height: 40px;
  margin-bottom: 0;
}

.search-wrap span {
  margin: 0 0.5rem;
}
.search-wrap select {
  padding: 0 0.5rem;
}
.search-wrap input {
  /* padding: 0 0.5rem;
  margin: 0;
  border: 1px solid #ddd;
  box-sizing: border-box;
  width: 140px;
  height: 36px;
  border-radius: 7px; */
}
.search-wrap input[type="text"] {
  width: 200px;
}
.search-wrap input[type="text"]:focus {
  outline: 0;
  /* border: 1px solid #5d88f1; */
}
.search-wrap input[type="text"]:focus::-webkit-input-placeholder {
  color: transparent;
}
.search-wrap input[type="text"]:focus::-moz-placeholder {
  color: transparent;
}
.search-wrap input[type="text"]:focus:-ms-input-placeholder {
  color: transparent;
}
.search-wrap button {
  width: 36px;
  height: 36px;
  margin-left: 8px;
}
.search-wrap button img {
  margin-right: 0;
}

.search-date-wrap {
  display: flex;
  align-items: center; /* 아이템들을 수직 중앙 정렬 */
  justify-content: space-between; /* 아이템들 사이의 공간을 균등하게 분배 */
}

.search-date-wrap,
.srch-date-input-wrap {
  display: flex;
  align-items: center; /* 날짜 입력란과 검색란 내의 아이템들을 수직 중앙 정렬 */
}

.search-date-wrap input[type="date"],
.srch-date-input-wrap input {
  margin: 0 5px; /* 입력 필드와 기타 요소 사이의 간격 */
}
.srch-date-input-wrap input:focus-visible {
  outline: 0;
}
.srch-date-input-wrap input:focus {
  outline: 0;
}

.search-date-wrap select {
  width: 160px;
  height: 36px;
  margin-right: 8px;
  border: 1px solid #d1d1d1;
  border-radius: 7px;
}
.search-date-wrap select:focus-visible {
  outline: 0;
}
.search-date-wrap select:focus {
  outline: 0;
}

.search-date-wrap select {
  padding: 0 0.5rem;
}
.search-date-wrap input {
  padding: 0 0.5rem;
  margin: 0;
  border: 1px solid #ddd;
  box-sizing: border-box;
  width: 140px;
  height: 36px;
  border-radius: 7px;
}

.search-input-wrap {
  width: 60%;
  height: 48px;
  max-width: 700px;
  border: 1px solid #5d88f1;
  border-radius: 16px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
}

.search-input-wrap img {
  width: 25px;
  margin-right: 16px;
}

.search-input-wrap button {
  width: 25px;
  height: 25px;
  background: url("../images/btn-search.png") no-repeat center center;
}
.search-input-wrap input[type="text"] {
  width: calc(100% - 66px);
  font-size: 1rem;
  height: 36px;
  border: 0;
  margin: 0;
  padding: 0;
}
.search-input-wrap input[type="text"]:focus {
  outline: 0;
}
.search-input-wrap input[type="text"]:focus::-webkit-input-placeholder {
  color: transparent;
}
.search-input-wrap input[type="text"]:focus::-moz-placeholder {
  color: transparent;
}
.search-input-wrap input[type="text"]:focus:-ms-input-placeholder {
  color: transparent;
}
.search-wrap button {
  width: 36px;
  height: 36px;
  margin-left: 8px;
}

.refer-box {
  width: 80%;
  max-width: 1000px;
  margin: 0 auto 1rem;
  background-color: #f0f0f0;
  padding: 1.5rem;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.refer-box:hover {
  background-color: rgba(70, 117, 231, 0.07);
}

.refer-box dl dt {
  color: #7a7a7a;
  margin-bottom: 1rem;
}
.refer-box dl dt .thumb-img {
  width: 36px;
  height: 36px;
  margin-right: 8px;
  border-radius: 18px;
  overflow: hidden;
}
.refer-box dl dd.title {
  font-size: 1rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 800;
  margin-bottom: 0.25rem;
  color: #2e3341;
}
.refer-box dl dd.list-text {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
}

.writeboard .data-wrap::-webkit-scrollbar {
  display: none;
}

.left.summary-txt {
  width: calc(50% - 4rem);
  padding: 2rem;
  position: relative;
}
.left.summary-txt .summary {
  margin-bottom: 40px;
}
.left.summary-txt .spell-check {
  margin-bottom: 40px;
}
.summary textarea,
.reference textarea {
  width: calc(100% - 2rem);
  min-height: 180px;
  border: 0;
  padding: 1rem;
  background-color: #f0f0f0;
  border-radius: 8px;
  resize: none;
}
.summary textarea:focus,
.reference textarea:focus {
  outline: 0;
}

.spell-check textarea {
  /* width: calc(100% - 2rem); */
  min-height: 600px;
  border: 0;
  /* padding: 1rem; */
  background-color: #ffffff;
  border-radius: 8px;
  resize: none;
}
.spell-check textarea:focus{
  outline: 0;
}

.summ-btn-wrap {
  width: calc(100% - 4rem);
  position: absolute;
  bottom: 0;
  padding: 2rem 0;
  background-color: #fff;
}
.summ-btn-wrap select {
  width: 160px;
  height: 36px;
  margin-right: 8px;
  border: 1px solid #d1d1d1;
  border-radius: 7px;
  padding: 0 0.5rem;
}
.summ-btn-wrap select:focus-visible {
  outline: 0;
}
.summ-btn-wrap button {
  width: 220px;
}

.of-scroll {
  height: calc(100% - 70px);
  overflow-y: auto;
}

.of-scroll::-webkit-scrollbar {
  width: 22px;
}
.of-scroll::-webkit-scrollbar-thumb {
  height: 20%;
  background: #ddd;
  border-radius: 12px;
  border: 8px solid #fff;
}
.of-scroll::-webkit-scrollbar-track {
  background: none;
}

.right.summ-result {
  width: calc(50% - 4rem);
  padding: 2rem;
  border-left: 1px solid #ddd;
}
.right.summ-result div {
  height: calc(100% - 160px);
  overflow-y: auto;
  white-space: pre-line;
  font-size: 1rem;
  line-height: 1.5;
  padding-right: 1rem;
  padding-bottom: 1rem;
}

.left.summary-txt h2,
.right.summ-result h2 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.markdown {
  max-width: none;
}
.markdown h1 {
  font-weight: 600;
}
.markdown h1:first-child {
  margin-top: 0;
}
.markdown h2 {
  font-weight: 600;
  margin-bottom: 0.1rem;
  margin-top: 0.2rem;
}
.markdown h2:first-child {
  margin-top: 0;
}
.markdown h3 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  margin-top: 0.1rem;
}
.markdown h3:first-child {
  margin-top: 0;
}
.markdown h4 {
  font-weight: 400;
  margin-bottom: 0.5rem;
  margin-top: 0.1rem;
}
.markdown h4:first-child {
  margin-top: 0;
}
.markdown h5 {
  font-weight: 600;
}
.markdown h5:first-child {
  margin-top: 0;
}
.markdown blockquote {
  --tw-border-opacity: 1;
  border-color: rgba(142, 142, 160, var(--tw-border-opacity));
  border-left-width: 2px;
  line-height: 1.5rem;
  margin: 0;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  padding-top: 0.5rem;
}
.markdown blockquote > p {
  margin: 0;
}
.markdown blockquote > p:after,
.markdown blockquote > p:before {
  display: none;
}

.markdown table {
  --tw-border-spacing-x: 0px;
  --tw-border-spacing-y: 0px;
  border-collapse: separate;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
  margin-bottom: 0.25rem;
  margin-top: 0.25rem;
  width: 100%;
}
.markdown th {
  background-color: rgba(236, 236, 241, 0.2);
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
  padding: 0.25rem 0.75rem;
  border: 0.3px solid #c3c1c1;
}
.markdown th:first-child {
  border-top-left-radius: 0.375rem;
}
.markdown th:last-child {
  border-right-width: 1px;
  border-top-right-radius: 0.375rem;
}
.markdown td {
  border-bottom-width: 1px;
  border-left-width: 1px;
  padding: 0.25rem 0.75rem;
  border: 0.3px solid #c3c1c1;
}
.markdown tr {
  border: 0.3px solid #c3c1c1;
}

.markdown td:last-child {
  border-right-width: 1px;
}
.markdown tbody tr:last-child td:first-child {
  border-bottom-left-radius: 0.375rem;
}
.markdown tbody tr:last-child td:last-child {
  border-bottom-right-radius: 0.375rem;
}
.markdown a {
  --tw-text-opacity: 1;
  color: rgba(41, 100, 170, var(--tw-text-opacity));
  font-weight: 400;
  text-decoration-line: none;
}
.markdown a:hover {
  --tw-text-opacity: 1;
  color: rgba(98, 154, 221, var(--tw-text-opacity));
}
.gizmo .markdown > :not(pre),
.gizmo .markdown > :not(pre) > :not(a) {
  color: #0f0f0f;
  color: var(--text-primary);
}

.layout-wrapper.dev {
  background-color: #f0f0f0;
}

.logo-a.dev {
  width: 192px;
}

/* Hart Login Page */
.wrapper.hart-login {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #efefef;
}
.wrapper.hart-login .hart-login-box {
  width: 90%;
  max-width: 960px;
  padding: 7rem 1.5rem;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-top: -2rem;
}
.hart-login-box h2 {
  margin-bottom: 2rem;
}
.hart-login-box h2 img {
  width: 170px;
}
.hart-login-box p {
  margin-bottom: 2rem;
  font-size: 0.9rem;
  line-height: 1.2rem;
  word-break: keep-all;
  color: #777;
}
.form-wrap {
  line-height: 1;
  font-size: 16px;
  font-family: "Noto Sans KR", sans-serif;
  color: #323232;
}
footer {
  width: 100%;
  position: absolute;
  bottom: 1rem;
  left: 0;
  text-align: center;
}
footer p.copyright {
  width: 60%;
  margin: 0 auto;
  color: #999;
  font-size: 0.8rem;
  line-height: 1rem;
}

@media screen and (max-width: 767px) {
  .wrapper.hart-login .hart-login-box {
    padding: 4rem 1.5rem;
  }
}