html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}
.cabinet-img {
  background-image: url("../img/common/cabinetSmall.svg"); /* 이미지 경로를 맞게 수정 */
}

.category-img {
  background-image: url("../img/common/fileIcon.svg");
}

.inner-content.tab3 .icon {
  background-image: url("../img/common/pdfIcon.svg"); /* 이미지 경로 */
}
/* 기존 스타일 그대로 유지 */

.content {
  display: flex;
  height: 100vh;
  margin: 0;
}

.unity-box {
  flex-grow: 1;
  background-color: black;
  overflow: hidden;
}

.web-box {
  width: 500px;
  display: flex;
  flex-direction: column;
  background-color: blue;
  height: 100vh;
}

.header {
  background-color: #46b0e0;
  padding: 10px 20px;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.content-area {
  flex: 1;
  background-color: #1e5e81;
  display: flex;
  flex-direction: column;
  padding: 0 20px;
  overflow: hidden;
}

.content-header {
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.title {
  font-size: 18px;
  font-weight: bold;
  color: white;
}

.action-button {
  padding: 8px 16px;
  font-size: 14px;
  color: white;
  background-color: gray;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.action-button.active {
  background-color: #2671a0;
}

.inner-content {
  flex: 1;
  background-color: #2671a0;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
  justify-content: flex-start;
  align-content: flex-start;
  height: 100%;
}

.box {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  color: white;
}

.cabinet-img {
  width: 40px;
  height: 40px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 5px;
}
.category-img {
  width: 40px;
  height: 40px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 5px;
}
.download-button {
  padding: 8px 16px;
  font-size: 14px;
  color: white;
  background-color: gray;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  margin-left: 20px;
}
.inner-content.tab3 {
  display: block;
  padding: 10px;
  overflow-x: hidden; /* 가로 스크롤 제거 */
}

.inner-content.tab3 .box {
  width: 100%;
  height: auto;
  padding: 10px;
  background-color: #1e5e81;
  margin-bottom: 10px;
  display: -webkit-box;
  align-items: center; /* 세로 중앙 정렬 */
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  font-size: 13px;
}

.inner-content.tab3 .icon {
  width: 20px; /* 아이콘 너비 */
  height: 20px; /* 아이콘 높이 */
  background-size: cover; /* 이미지를 요소 크기에 맞게 */
  background-position: center; /* 이미지의 중앙을 표시 */
  margin-right: 10px; /* 텍스트와의 간격 */
}

.inner-content.tab0 {
  display: block;
  padding: 10px;
  overflow-x: hidden; /* 가로 스크롤 제거 */
}

.inner-content.tab0 .box {
  width: 100%;
  height: auto;
  padding: 10px;
  background-color: #1e5e81;
  margin-bottom: 10px;
  display: -webkit-box;
  align-items: center; /* 세로 중앙 정렬 */
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  font-size: 13px;
}

.ellipsis-text {
  white-space: nowrap; /* 텍스트를 한 줄로 표시 */
  overflow: hidden; /* 넘치는 텍스트를 잘라내기 */
  text-overflow: ellipsis; /* 넘치는 텍스트에 말줄임표 추가 */
  max-width: 410px; /* 최대 너비를 설정, 필요에 따라 조정 */
  display: inline-block; /* span 요소가 ellipsis를 적용받도록 설정 */
  margin-top: 3px;
}

.link-like {
  text-decoration: none; /* 기본 상태에서 밑줄 제거 */
  cursor: pointer; /* 마우스 오버 시 포인터로 변경 */
  transition: color 0.3s ease; /* 색상 변경에 트랜지션 추가 */
}

.link-like:hover {
  color: #0b78e3; /* 마우스 오버 시 색상 변경 */
  text-decoration: underline; /* 마우스 오버 시 밑줄 추가 */
}

.content {
  display: flex;
  height: 100vh;
  margin: 0;
}

.pdf-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.unity-box {
  flex-grow: 1;
  background-color: red;
  overflow: hidden;
  position: relative; /* 팝업 위치를 위해 상대적 위치 설정 */
}

/* 레이어 팝업 스타일 */
.layer-popup {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* 반투명 배경 */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100; /* 팝업이 다른 요소보다 위에 표시되도록 설정 */
}

.popup-content {
  position: relative; /* 닫기 버튼을 절대 위치로 배치하기 위한 설정 */
  width: 90%;
  height: 90%;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
}

/* 닫기 버튼 스타일 */
.close-button {
  position: absolute;
  top: 10px; /* 상단에서의 거리 */
  right: 10px; /* 우측에서의 거리 */
  background-color: transparent; /* 배경 투명하게 */
  border: none; /* 테두리 제거 */
  font-size: 18px; /* 버튼 크기 */
  cursor: pointer; /* 마우스 커서 포인터로 변경 */
  color: #333; /* X 모양의 색상 */
  font-weight: bold; /* X 모양의 두께 */
  transition: color 0.3s ease; /* 색상 변경 효과 */
}

.close-button:hover {
  color: red; /* 마우스 오버 시 X 모양의 색상 변경 */
}
/* 추가적으로 모든 요소에 box-sizing 적용 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Login */
#printDiv {
  border: 1px solid #d2d7dc;
  background-color: #ffffff;
}
#printDiv .headerTable {
  width: 100%;
  background-color: white;
  height: 28px;
  font-size: 13px;
}
printDiv table.headerTable,
#printDiv .headerTable tr,
#printDiv .headerTable th,
#printDiv .headerTable td {
  border: 1px solid #888 !important;
  border-collapse: collapse;
  text-align: center;
}
#printDiv .headerTable td:first-child,
#printDiv .headerTable td:nth-child(3) {
  background: #f8f8f8;
}
.sample-spreadsheets[data-v-4e1c73ac] {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border: 1px solid #d2d7dc;
}
.sample-spreadsheets {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border: 1px solid #d2d7dc;
}

@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@600;700&display=swap");
@import url("http://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css");

@-webkit-keyframes height-auto {
  0% {
    height: 0;
  }
  100% {
    height: auto;
  }
}
@keyframes height-auto {
  0% {
    height: 0;
  }
  100% {
    height: auto;
  }
}
.opensans {
  font-family: "Open Sans", sans-serif;
}
@font-face {
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 3400;
  src: local(Ã¢â‚¬Â»), url("../fonts/NotoSansKR-Light.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 400;
  src: local(Ã¢â‚¬Â»), url("../fonts/NotoSansKR-Medium.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 700;
  src: local(Ã¢â‚¬Â»), url("../fonts/NotoSansKR-Bold.woff") format("woff");
}
html body {
  position: relative;
  font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont,
    "Malgun Gothic", helvetica, "Apple SD Gothic Neo", sans-serif;
  background: #f4f5f7;
  color: #2f2f2f;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.3px;
}
body,
html {
  height: 100%;
  min-height: 100%;
}
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
dialog,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
font,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
hr,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
meter,
nav,
object,
ol,
output,
p,
pre,
progress,
q,
rp,
rt,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video,
xmp {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont,
    "Malgun Gothic", helvetica, "Apple SD Gothic Neo", sans-serif;
}
a {
  color: #2f2f2f;
  text-decoration: none;
}
[disabled="disabled"],
[disabled],
a.disabled,
button.disabled {
  cursor: not-allowed;
  pointer-events: all !important;
}
.readonly,
[disabled="disabled"],
[disabled],
[readonly] {
  background-color: #f4f5f7 !important;
  color: #adadad !important;
}
.shadow-box,
.shadow-box p.desc,
input.readonly,
input[readonly] {
  color: #767676 !important;
}
*,
:after,
:before {
  box-sizing: border-box;
}
input[type="button"],
input[type="color"],
input[type="date"],
input[type="datetime-local"],
input[type="email"],
input[type="file"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="range"],
input[type="search"],
input[type="submit"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
textarea {
  -webkit-appearance: none;
  border-radius: 0;
  outline: 0;
  margin: 0;
  font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont,
    "Malgun Gothic", helvetica, "Apple SD Gothic Neo", sans-serif;
  color: #2f2f2f;
}
input[type="checkbox"] {
  -webkit-apperance: checkbox;
  margin: 0;
}
input[type="radio"] {
  -webkit-apperance: radio;
  margin: 0;
}
[type="reset"],
[type="submit"],
button,
html [type="button"] {
  -webkit-appearance: button;
}
textarea {
  resize: none;
}
ul {
  list-style-type: none;
}
ol li,
ul li {
  color: var(--color-text);
}
abbr[title],
dfn[title] {
  cursor: help;
}
sub {
  vertical-align: sub;
}
sup {
  vertical-align: super;
}
.fl,
.float-left {
  float: left;
}
.float-right,
.fr {
  float: right;
}
.hidden,
.hide {
  display: none;
  visibility: hidden;
}
.align-center,
.modal-popup-wrapper.modal-popup-m605-2
  .modal-popup
  .modal-body
  table.fixed-header.full-width
  tbody
  td:last-child,
.modal-popup-wrapper.modal-popup-m605-2
  .modal-popup
  .modal-body
  table.fixed-header.full-width
  tr
  td,
.modal-popup-wrapper.modal-popup-m605-2
  .modal-popup
  .modal-body
  table.fixed-header.full-width
  tr
  th,
.table-basic-wrapper table.align-center tbody tr td,
.table-performance-wrapper table tbody tr.total td:first-child,
table.fixed-header tbody tr td.chkecbox,
table.fixed-header tbody tr td.test-no {
  text-align: center;
}
.align-right {
  text-align: right;
}
.align-left {
  text-align: left !important;
}
.item-group,
.modal-popup-wrapper.modal-popup-u305
  .modal-popup
  .modal-body
  .companion
  .field-box,
.no-padding {
  padding: 0;
}
.no-margin {
  margin: 0;
}
.clear::after,
.clearfix::after {
  clear: both;
  content: "";
  display: block;
}
.pointer,
[type="image"],
[type="submit"],
a,
a[href],
button,
label,
label[for],
select {
  cursor: pointer;
  outline: none;
}
.blind {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  margin: -1px;
  width: 1px;
  height: 1px;
}
code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New",
    monospace;
}
p,
td {
  word-break: break-all;
}
input.txt {
  font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont,
    "Malgun Gothic", helvetica, "Apple SD Gothic Neo", sans-serif;
  border: 1px solid #d2d7dc;
  border-radius: 2px;
  font-size: 14px;
  padding: 6px 10px;
  width: 100%;
  background-color: #fff;
}
input.txt.blue {
  background-color: #e9f2ff !important;
  color: #2f2f2f !important;
}
select {
  font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont,
    "Malgun Gothic", helvetica, "Apple SD Gothic Neo", sans-serif;
  border: 1px solid #d2d7dc;
  border-radius: 2px;
  font-size: 14px;
  padding: 6px;
  width: 100%;
  background-color: #fff;
  color: #767676;
  font-size: 13px;
  height: 35px;
}
input.txt,
textarea {
  padding: 6px 10px 7px;
}
input.txt::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #adadad;
}
input.txt:-moz-placeholder,
textarea:-moz-placeholder {
  color: #adadad;
}
input.txt::-moz-placeholder,
textarea::-moz-placeholder {
  color: #adadad;
}
input.txt:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #adadad;
}
#content-wrapper.dashboard
  .dashboard-wrapper
  .fluid-area
  .new-request-box
  > ul
  li
  input.rdo:checked
  + label,
.search-area .search-item .search-keyword-box.on,
input.txt:focus {
  border-color: #5564ff;
}
img {
  display: block;
  width: 100%;
  max-width: 100%;
}
.field-box,
.grade-layout #grade-container #grade-rnb .rnb-desc,
.table-performance-wrapper table thead tr th,
table.fixed-header thead th {
  font-size: 13px;
}
.field-box + .field-box,
.item-group + .item-group {
  padding-top: 15px;
}
.field-box .label,
.shadow-box .login-util-box .util-box {
  font-size: 13px;
  color: #767676;
}
.field-box .field {
  padding-top: 6px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
#grade-content
  .content-body
  .image-regist-box.image-2x2
  > div.image-regist-item
  .image-field-box
  .field-wrapper,
.field-box .field.wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.field-box .field .with-btn,
.graph-wrapper,
.shadow-box .field-box .field .with-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.field-box .field .with-btn input.txt,
.shadow-box .field-box .field .with-btn input.txt {
  width: 200px;
}
#grade-content {
  height: 100%;
  overflow: scroll;
}
#grade-content
  .content-body
  .image-regist-box.image-2x2
  > div.image-regist-item
  .image-field-box
  .field-wrapper
  .field-box,
.attatch-file,
.field-box .field select,
.grade-layout
  #grade-container
  #grade-rnb
  .sanction-list-wrapper
  .sanction-item-box
  .sanction-header
  p,
.modal-popup-wrapper.modal-popup-u104-2
  .modal-popup
  .doc-preview-wrapper
  .doc-preview-info
  .doc-preview-box
  .btn-box
  a,
.modal-popup-wrapper.modal-popup-u104-2
  .modal-popup
  .doc-preview-wrapper
  .doc-preview-info
  .doc-preview-box
  .field-wrapper
  .field-box
  input,
.shadow-box .field-box .field input.txt {
  width: 100%;
}
.field-box .field select + .txt {
  margin-top: 6px;
}
.field-box + .btn-box {
  padding-top: 30px;
}
.field-box.horizontal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.field-box.horizontal .field {
  padding-top: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.field-box.horizontal .field .half-inbox,
.modal-popup-wrapper .modal-popup .modal-body .field-box .field .half-inbox {
  width: calc(50% - 2.5px);
}
.field-box.horizontal .field .half-inbox + .half-gap {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 20px;
}
.field-box.horizontal .address-1,
.field-box.horizontal .address-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}
.field-box.horizontal .address-1,
.modal-popup-wrapper.modal-popup-u201-2
  .modal-popup
  .photo-list-wrapper
  .photo-list-box
  .photo-thumb {
  margin-bottom: 10px;
}
.field-box.horizontal .address-1 .btn {
  min-width: 100px;
  padding: 0;
  margin-right: 10px;
}
.field-box.horizontal textarea {
  width: 100%;
  height: 35px;
  background: #fff;
  border: 1px solid #d2d7dc;
  border-radius: 2px;
}
.field-box.horizontal textarea.cs-textarea {
  height: 320px;
}
label {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
label input.chk {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
}
label input.chk + span {
  position: relative;
  padding-left: 28px;
  background: url("../images/common/icon_check_normal.svg") 0 2px no-repeat;
}
.header-checkbox input:checked + .check-box,
.photo-thumb input:checked + .check-box,
label input.chk:checked + span {
  background-image: url("../images/common/icon_check_checked.svg");
}
.all-agree-box {
  font-size: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e8ebf0;
}
.all-agree-box label span,
.grade-layout #grade-container #grade-rnb .rnb-desc ul li span.blue,
.grade-layout
  #grade-container
  #grade-rnb
  .sanction-list-wrapper
  .sanction-item-box
  .sanction-header
  .status.blue,
.grade-layout #grade-container #grade-rnb .test-item-box .field span.pass,
.pagination-wrapper .pagination ul li a.current {
  color: #5564ff;
}
.grade-layout #grade-container #grade-rnb .rnb-desc ul li span.red {
  color: #ea4335;
}
#wrap #container #lnb > ul li:first-child,
.all-agree-box ~ .field-box .field,
.modal-popup-wrapper .modal-popup .modal-body .field-box.horizontal .field {
  padding-top: 0;
}
.all-agree-box ~ .field-box label {
  height: 19px;
  color: #767676;
}
.all-agree-box ~ .field-box label span,
.modal-popup-wrapper.modal-fulltype .modal-popup .modal-body p.desc,
.modal-popup-wrapper.modal-popup-charge-change .sub-group .field-box .label,
.modal-popup-wrapper.modal-popup-charge-setting .sub-group .field-box .label {
  font-size: 14px;
}
.all-agree-box ~ .field-box label a {
  color: #767676;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-decoration: underline;
}
.error {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding-top: 6px;
  padding-left: 20px;
  color: #ea4335;
  background: url("../images/common/icon_error.svg") 0 9px no-repeat;
}
.shadow-box {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 380px;
  box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  background-color: #fff;
  padding: 0 50px 40px;
}
.shadow-box.login-box {
  padding-bottom: 0;
}
.shadow-box.signup-box {
  min-height: 480px;
}
.shadow-box.signup-box .btn-box {
  position: absolute;
  bottom: 40px;
  left: 50px;
  width: calc(100% - 100px);
}
.shadow-box .header .header-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 52px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 14px;
  margin: 0 -50px;
}
.shadow-box .header .header-box a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 30px;
  height: 30px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: url("../images/common/icon_back.svg") 50% 50% no-repeat;
}
.shadow-box p.title {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  padding-bottom: 35px;
}
.shadow-box p.desc {
  text-align: center;
  padding-bottom: 30px;
  color: #333;
}
.shadow-box p.desc em {
  font-style: normal;
  color: #5564ff;
}
.shadow-box .img-box {
  width: 147px;
  height: 110px;
  margin: 22px auto 46px;
}
.btn {
  padding: 0 10px;
  margin: 0;
  border: 0;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 32px;
  line-height: 32px;
  border-radius: 2px;
  background-color: #5564ff;
  color: #fff;
  font-size: 14px;
  min-width: 55px;
  border: 1px solid #5564ff;
}
.btn.btn-confirm:hover,
.btn:hover {
  background-color: #4b5aeb;
  border-color: #4b5aeb;
}
.btn i {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 5px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  width: 16px;
  height: 16px;
}
.btn span {
  line-height: 1;
  margin-top: -1px;
}
.btn.border {
  border: 1px solid #5564ff;
  background-color: #fff;
  color: #5564ff;
}
.btn.border:hover {
  background-color: #f7f7f7;
}
.btn.btn-cancel {
  background-color: #adadad;
  border-color: #adadad;
  min-width: 75px;
}
.btn.btn-cancel:hover {
  background-color: #8d8d8d;
  border-color: #8d8d8d;
}
.btn.btn-confirm {
  background-color: #5564ff;
  border-color: #5564ff;
  min-width: 75px;
}
.btn.btn-error {
  background-color: #ff6670;
  border-color: #ff6670;
}
.btn.btn-photo-upload i {
  background-image: url("../images/common/icon_photo_white.svg");
}
.btn.btn-setting-sign i {
  background-image: url("../images/common/icon_sign_btn.svg");
}
.btn.btn-charge i {
  background-image: url("../images/common/icon_charge.svg");
}
.btn.btn-invite-member i {
  background-image: url("../images/common/icon_button_plus.svg");
}
.btn.btn-excel {
  background-color: #34a853;
  border-color: #34a853;
}
.btn.btn-excel i {
  background-image: url("../images/common/icon_excel.svg");
}
.btn.btn-excel:hover {
  background-color: #3c9c54;
  border-color: #3c9c54;
}
.btn.gray {
  border-color: #d2d7dc;
  background-color: #fff;
  color: #767676;
}
.btn.border.gray {
  border-color: #d2d7dc;
  color: #6b6c73;
}
.btn.border.gray.btn-reset i {
  background-image: url("../images/common/icon_reset.svg");
}
.btn.border.gray.btn-upload i {
  background-image: url("../images/common/icon_upload2.svg");
}
.btn.btn-add {
  min-width: auto;
  min-width: 35px;
  width: 35px;
  height: 35px;
  padding: 0;
}
.btn.btn-add i {
  margin-right: 0;
  background-image: url("../images/common/icon_add_item2.svg");
}
.btn.btn-del-template {
  min-width: auto;
  min-width: 35px;
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
}
.btn.btn-del-template i {
  margin-right: 0;
  background-image: url("../images/common/icon_del_template.svg");
}
.btn.btn-file-search {
  width: 85px;
  height: 35px;
  padding: 0;
}
.btn.btn-file-search i {
  background-image: url("../images/common/icon_file_search.svg");
}
.btn.btn-category-manage i {
  background-image: url("../images/common/icon_doc_blue.svg");
}
.btn.btn-add-doc i,
.btn.btn-upload i {
  background-image: url("../images/common/icon_upload_white.svg");
}
.btn.btn-write i {
  background-image: url("../images/common/icon_write.svg");
}
.btn.btn-excel-download i {
  background-image: url("../images/common/icon_download_gray.svg");
}
.btn.capsule {
  border-radius: 35px;
}
.btn-del-item {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 14px;
  height: 14px;
  background: url("../images/common/icon_delete_item.svg") no-repeat;
  font-size: 0;
  line-height: 0;
}
.contents-header .btn {
  height: 35px;
  min-height: 35px;
}
.modal-popup-wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: rgba(244, 245, 247, 0.95);
}
#wrap #container #lnb .sub-nav.on,
.alarm-wrapper.on,
.drop-button.on .drop-button-nav,
.dropdown-box.on .dropdown-subbox,
.grade-layout
  #grade-container
  #grade-content-wrap
  #grade-content
  .content-header
  .dropdown-grade-nav.on
  .drop-button-nav,
.grade-layout #grade-container #grade-rnb .rnb-tab-wrapper .rnb-tab-contents.on,
.member-wrapper.on,
.modal-popup-wrapper.modal-popup-period .modal-body .period-direct-box.on,
.modal-popup-wrapper.on,
.tab-wrapper .tab-content-wrapper .tab-content.on {
  display: block;
  z-index: 10;
}
.grade-layout.on {
  display: contents;
}
.modal-popup-wrapper.on {
  z-index: 1000;
}
.modal-popup-wrapper .modal-popup {
  position: fixed;
  top: 50%;
  left: calc(50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  min-width: 380px;
  min-height: 225px;
  background-color: #fff;
  border-radius: 5px;
  border: 2px solid #2f2f2f;
}
.modal-popup-wrapper .modal-popup .modal-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 38px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 0 5px;
}
.modal-popup-wrapper .modal-popup .modal-header .btn-modal-close,
.modal-popup-wrapper.modal-fulltype .modal-popup .modal-header .btn-modal-close,
.modal-popup-wrapper.modal-popup-photo-viewer
  .modal-photo-viewer-header
  .btn-modal-close {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 30px;
  height: 30px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: url("../images/common/icon_modal_close.svg") 50% 50% no-repeat;
  border: none;
}
.modal-popup-wrapper .modal-popup .modal-body {
  color: #767676;
  padding: 0 25px;
}
.modal-popup-wrapper .modal-popup .modal-body > p {
  font-size: 17px;
  text-align: center;
  margin-bottom: 20px;
}
.modal-popup-wrapper .modal-popup .modal-body .field-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
}
.modal-popup-wrapper .modal-popup .modal-body .field-box .label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 35px;
  font-size: 14px;
  min-width: 100px;
}
#wrap.full-page-layout .full-page-body .page-info p.desc,
.modal-popup-wrapper .modal-popup .modal-body .field-box .val {
  font-size: 14px;
  color: #767676;
}
.modal-popup-wrapper .modal-popup .modal-body .field-box .field {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.modal-popup-wrapper .modal-popup .modal-body .field-box textarea {
  width: 100%;
  height: 90px;
  border-radius: 2px;
  background-color: #fff;
  border: 1px solid #d2d7dc;
  font-size: 14px;
  padding: 10px;
}
.modal-popup-wrapper
  .modal-popup
  .modal-body
  .field-box
  textarea::-webkit-input-placeholder {
  color: #adadad;
}
.modal-popup-wrapper
  .modal-popup
  .modal-body
  .field-box
  textarea:-moz-placeholder {
  color: #adadad;
}
.modal-popup-wrapper
  .modal-popup
  .modal-body
  .field-box
  textarea::-moz-placeholder {
  color: #adadad;
}
.modal-popup-wrapper
  .modal-popup
  .modal-body
  .field-box
  textarea:-ms-input-placeholder {
  color: #adadad;
}
.modal-popup-wrapper .modal-popup .modal-body .field-box.horizontal {
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.gap,
.modal-popup-wrapper .modal-popup .modal-body .field-box + .gap {
  position: relative;
  padding: 12px 0;
}
.gap:before,
.modal-popup-wrapper .modal-popup .modal-body .field-box + .gap:before {
  content: "";
  position: absolute;
  top: 50%;
  width: 100%;
  height: 1px;
  background-color: #e8ebf0;
}
.draw-box,
.modal-popup-wrapper .modal-popup .modal-body .field-box .draw-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  border: 1px dashed #767676;
}
.draw-box img,
.modal-popup-wrapper .modal-popup .modal-body .field-box .draw-box img {
  width: auto !important;
  max-width: 100%;
  height: 30px;
}
.modal-popup-wrapper .modal-popup .modal-body .field-box .rdo-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.modal-popup-wrapper .modal-popup .modal-body .field-box .rdo-box > * {
  margin-right: 20px;
}
.modal-popup-wrapper .modal-popup .modal-body .field-box .rdo-box > label span,
.modal-popup-wrapper .modal-popup .modal-footer a:last-child {
  margin-left: 5px;
}
.modal-popup-wrapper .modal-popup .modal-footer {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 32px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 15px;
  padding: 0 25px;
  margin-top: 25px;
}
.modal-popup-wrapper .modal-popup .modal-footer .btn-addition-box {
  position: absolute;
  top: 0;
  left: 18px;
  z-index: 1;
}
.modal-popup-wrapper.modal-popup-confirm .modal-body p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 145px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 14px;
  color: #767676;
  margin-bottom: 0;
}
.modal-popup-wrapper.modal-popup-confirm .modal-footer,
.modal-popup-wrapper.modal-popup-u201-2
  .modal-popup
  .photo-list-wrapper
  .photo-list-box
  .photo-thumb
  .date,
.scroll-box .scroll-inbox > ul > li:first-child,
.test-attach-wrapper .test-attach-box ul li:first-child {
  margin-top: 0;
}
.modal-popup-wrapper.modal-popup-period .modal-body .period-button-wrapper,
.photo-list-wrapper .photo-list-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.modal-popup-wrapper.modal-popup-period
  .modal-body
  .period-button-wrapper
  .period-button {
  position: relative;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 33.3333%;
  -ms-flex: 0 1 33.3333%;
  flex: 0 1 33.3333%;
  border: 1px solid #d2d7dc;
}
.modal-popup-wrapper.modal-popup-period
  .modal-body
  .period-button-wrapper
  .period-button.on:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #4b5aeb;
}
#content-wrapper.dashboard
  .dashboard-wrapper
  .fluid-area
  .summary-info-box
  > div
  > ul
  li:first-child,
.modal-popup-wrapper.modal-popup-period
  .modal-body
  .period-button-wrapper
  .period-button
  ~ .period-button {
  border-left: none;
}
.modal-popup-wrapper.modal-popup-period
  .modal-body
  .period-button-wrapper
  .period-button:nth-child(1),
.modal-popup-wrapper.modal-popup-period
  .modal-body
  .period-button-wrapper
  .period-button:nth-child(2),
.modal-popup-wrapper.modal-popup-period
  .modal-body
  .period-button-wrapper
  .period-button:nth-child(3) {
  border-bottom: none;
}
.modal-popup-wrapper.modal-popup-period
  .modal-body
  .period-button-wrapper
  .period-button:nth-child(4) {
  border-left: 1px solid #d2d7dc;
}
.modal-popup-wrapper.modal-popup-period
  .modal-body
  .period-button-wrapper
  .period-button
  a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 35px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.modal-popup-wrapper.modal-popup-period .modal-body .period-direct-box {
  display: none;
  margin-top: 15px;
  border: 1px solid #d2d7dc;
}
.modal-popup-wrapper.modal-popup-period .modal-body .period-direct-box input {
  width: 100%;
  border: none;
  padding: 7px 0 7px 26px;
  background-color: #fff !important;
}
.modal-popup-wrapper.modal-popup-charge-change .sub-group ~ .sub-group,
.modal-popup-wrapper.modal-popup-charge-setting .sub-group ~ .sub-group {
  margin-top: 17px;
}
.modal-popup-wrapper.modal-popup-charge-change .sub-group p.sub-title,
.modal-popup-wrapper.modal-popup-charge-setting .sub-group p.sub-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 35px;
  font-size: 14px;
  border-bottom: 1px solid #e8ebf0;
}
#wrap #container #lnb > ul,
#wrap #container #lnb > ul li,
.modal-popup-wrapper.modal-popup-charge-change .sub-group .field-box,
.modal-popup-wrapper.modal-popup-charge-change
  .sub-group
  .field-box
  + .field-box,
.modal-popup-wrapper.modal-popup-charge-setting .sub-group .field-box,
.modal-popup-wrapper.modal-popup-charge-setting
  .sub-group
  .field-box
  + .field-box {
  padding-top: 10px;
}
.modal-popup-wrapper.modal-popup-charge-change
  .sub-group
  .field-box
  .label
  span,
.modal-popup-wrapper.modal-popup-charge-setting
  .sub-group
  .field-box
  .label
  span,
.modal-popup-wrapper.modal-popup-m602-1 .modal-popup .member-invite-form > div,
.modal-popup-wrapper.modal-popup-u301-2
  .modal-popup
  .template-setting-box
  .field
  .btn,
.modal-popup-wrapper.modal-popup-u301-2
  .modal-popup
  .template-setting-box
  .field
  .txt
  + .txt,
.modal-popup-wrapper.modal-popup-u301-2
  .modal-popup
  .template-setting-box
  .field
  select,
.search-wrapper .field + .btn {
  margin-left: 8px;
}
.modal-popup-wrapper.modal-popup-charge-change .sub-group .field-box .field,
.modal-popup-wrapper.modal-popup-charge-setting .sub-group .field-box .field {
  padding-top: 0;
  width: auto;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.modal-popup-wrapper.modal-popup-charge-change .sub-group .field-box .field p,
.modal-popup-wrapper.modal-popup-charge-setting .sub-group .field-box .field p {
  font-size: 13px;
  color: #adadad;
}
.modal-popup-wrapper.modal-popup-charge-change .error-msg,
.modal-popup-wrapper.modal-popup-charge-setting .error-msg {
  padding-top: 18px;
  font-size: 13px;
  color: #ea4335;
}
.modal-popup-wrapper.modal-popup-charge-change .modal-body .field-box .field {
  width: auto;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-top: 0;
}
.grade-layout
  #grade-container
  #grade-content-wrap
  #grade-content
  .content-header
  .dropdown-grade-nav,
.header-checkbox,
.modal-popup-wrapper.modal-popup-photo-viewer,
.photo-thumb,
.table-wrapper {
  position: relative;
}
.modal-popup-wrapper.modal-fulltype .modal-popup .modal-header,
.modal-popup-wrapper.modal-popup-photo-viewer .modal-photo-viewer-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 38px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 30px;
}
.modal-popup-wrapper.modal-popup-photo-viewer .modal-photo-viewer-body {
  position: fixed;
  top: 50%;
  left: 50%;
  width: calc(100% - 200px);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1000;
}
.modal-popup-wrapper.modal-popup-photo-viewer
  .modal-photo-viewer-body
  .photo-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
}
.modal-popup-wrapper.modal-popup-photo-viewer
  .modal-photo-viewer-body
  .photo-desc {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 70px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.modal-popup-wrapper.modal-popup-photo-viewer
  .modal-photo-viewer-body
  .photo-desc
  p {
  text-align: center;
  color: #767676;
}
.modal-popup-wrapper.modal-popup-photo-viewer
  .modal-photo-viewer-body
  .swiper-container {
  position: static !important;
}
.modal-popup-wrapper.modal-popup-photo-viewer
  .modal-photo-viewer-body
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  img {
  width: auto;
  object-fit: contain;
  margin: 0 auto;
  max-height: 784px;
}
.modal-popup-wrapper.modal-popup-photo-viewer
  .modal-photo-viewer-body
  .swiper-container
  .swiper-button-next,
.modal-popup-wrapper.modal-popup-photo-viewer
  .modal-photo-viewer-body
  .swiper-container
  .swiper-button-prev {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 40px;
  height: 40px;
  z-index: 10;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 0;
  opacity: 1 !important;
}
#content-wrapper.dashboard
  .dashboard-wrapper
  .fixed-area
  .guide-swiper
  .swiper-button-next:after,
#content-wrapper.dashboard
  .dashboard-wrapper
  .fixed-area
  .guide-swiper
  .swiper-button-prev:after,
#wrap #container #header .util a.member-info:after,
.drop-button.type-2 > a:after,
.grade-layout #grade-container #grade-rnb .rnb-tab-wrapper .rnb-tab-contents,
.grade-layout
  #grade-container
  #grade-rnb
  .sanction-list-wrapper
  .sanction-item-box.default:after,
.modal-popup-wrapper.modal-popup-photo-viewer
  .modal-photo-viewer-body
  .swiper-container
  .swiper-button-next:after,
.modal-popup-wrapper.modal-popup-photo-viewer
  .modal-photo-viewer-body
  .swiper-container
  .swiper-button-prev:after,
.tab-wrapper .tab-content-wrapper .tab-content {
  display: none;
}
.modal-popup-wrapper.modal-popup-photo-viewer
  .modal-photo-viewer-body
  .swiper-container
  .swiper-button-prev {
  left: -60px;
  right: auto;
  background: url("../images/common/icon_photo_swiper_prev.svg") 50% 50%
    no-repeat;
}
.modal-popup-wrapper.modal-popup-photo-viewer
  .modal-photo-viewer-body
  .swiper-container
  .swiper-button-next {
  right: -60px;
  left: auto;
  background: url("../images/common/icon_photo_swiper_next.svg") 50% 50%
    no-repeat;
}
.modal-popup-wrapper.modal-fulltype .modal-popup {
  width: 100%;
  height: 100%;
  background: 0 0;
  border: none;
  min-width: 600px;
}
.modal-popup-wrapper.modal-fulltype .modal-popup .modal-body {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  min-width: 600px;
  padding: 0;
}
.modal-popup-wrapper.modal-fulltype .modal-popup .modal-body p.title,
.modal-popup-wrapper.modal-fulltype .modal-popup .modal-body > p:first-child {
  font-size: 19px;
  color: #2f2f2f;
}
#wrap.full-page-layout .full-page-body .page-info p.desc .error,
.modal-popup-wrapper.modal-fulltype .modal-popup .modal-body p.desc .error {
  padding: 0;
  background: 0 0;
}
.modal-popup-wrapper.modal-fulltype .modal-popup .modal-body .reg-quality-box {
  width: 380px;
  min-height: 470px;
  background-color: #fff;
  border: 1px solid #d2d7dc;
  border-radius: 5px;
  padding: 40px 50px;
  margin: 0 auto;
}
.modal-popup-wrapper.modal-fulltype
  .modal-popup
  .modal-body
  .reg-quality-box
  .btn-box,
.reg-quality-box .btn-box {
  position: relative;
  text-align: center;
  height: 32px;
  padding-top: 0;
}
.modal-popup-wrapper.modal-fulltype
  .modal-popup
  .modal-body
  .reg-quality-box
  .btn-box:before,
.reg-quality-box .btn-box:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #d2d7dc;
  z-index: 1;
}
.modal-popup-wrapper.modal-fulltype
  .modal-popup
  .modal-body
  .reg-quality-box
  .btn-box
  .btn-add,
.reg-quality-box .btn-box .btn-add {
  position: relative;
  z-index: 10;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100px;
  height: 32px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 15px;
  background: #fff;
  border: 1px solid #5554ff;
  color: #5564ff;
}
.modal-popup-wrapper.modal-fulltype
  .modal-popup
  .modal-body
  .reg-quality-box
  .btn-box
  .btn-add
  i,
.reg-quality-box .btn-box .btn-add i {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 14px;
  height: 14px;
  background: url("../images/common/icon_add_item.svg") no-repeat;
  margin-right: 5px;
}
.modal-popup-wrapper.modal-popup-reg-quality2 .modal-popup {
  width: 650px;
  min-height: 488px;
}
.modal-popup-wrapper.modal-popup-m601-2 .modal-popup {
  width: 420px;
  min-height: 338px;
}
.modal-popup-wrapper.modal-popup-m601-2 .modal-popup .sign-msg {
  padding-top: 14px;
  padding-bottom: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #767676;
}
.modal-popup-wrapper.modal-popup-m602-1 .modal-popup {
  width: 650px;
  min-height: 467px;
}
.modal-popup-wrapper.modal-popup-m602-1 .modal-popup .member-invite-box {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e8ebf0;
  color: #767676;
}
.modal-popup-wrapper.modal-popup-m602-1 .modal-popup .member-invite-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
#grade-content
  .content-body
  .image-regist-box.image-2x2
  > div.image-regist-item
  .image-field-box
  .field-wrapper
  .field-box:nth-child(2),
#grade-content
  .content-body
  .image-regist-box.image-2x2
  > div.image-regist-item
  .image-field-box
  .field-wrapper
  .field-box:nth-child(4),
.modal-popup-wrapper.modal-popup-m602-1
  .modal-popup
  .member-invite-form
  > div:first-child {
  margin-left: 0;
}
.modal-popup-wrapper.modal-popup-m602-1
  .modal-popup
  .member-invite-form
  > div
  .field-box
  .label {
  height: 18px;
}
#grade-content
  .content-body
  .image-regist-box
  .image-regist-item
  .image-field-box
  .field-wrapper
  .field-box
  .label,
.modal-popup-wrapper.modal-popup-m602-1
  .modal-popup
  .member-invite-form
  .member-name {
  width: 80px;
}
.modal-popup-wrapper.modal-popup-m602-1
  .modal-popup
  .member-invite-form
  .member-email {
  width: 230px;
}
.modal-popup-wrapper.modal-popup-m602-1
  .modal-popup
  .member-invite-form
  .member-phone-number {
  width: 120px;
}
.modal-popup-wrapper.modal-popup-m602-1
  .modal-popup
  .member-invite-form
  .member-grant {
  width: 96px;
}
#grade-content .content-body .grade-inner-box .scroll-box,
#grade-content
  .content-body
  .image-regist-box
  .image-regist-item
  + .image-regist-item,
.grade-layout #grade-container #grade-rnb .my-sanction-wrapper,
.modal-popup-wrapper.modal-popup-m602-1 .modal-popup .invite-list-wrapper {
  margin-top: 20px;
}
.modal-popup-wrapper.modal-popup-m602-1
  .modal-popup
  .invite-list-wrapper
  p
  .cnt {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  min-width: 30px;
  height: 18px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 20px;
  background-color: #5564ff;
  color: #fff;
  margin-left: 2px;
}
.modal-popup-wrapper.modal-popup-m602-1
  .modal-popup
  .invite-list-wrapper
  .invite-list-box {
  margin-top: 7px;
  min-height: 140px;
  height: 140px;
  overflow-y: auto;
  border-top: 1px solid #e8ebf0;
  border-bottom: 1px solid #e8ebf0;
}
.modal-popup-wrapper.modal-popup-m602-1
  .modal-popup
  .invite-list-wrapper
  .invite-list-box
  .invite-list-item {
  display: table;
  width: 100%;
  table-layout: fixed;
  min-height: 35px;
}
.modal-popup-wrapper.modal-popup-m602-1
  .modal-popup
  .invite-list-wrapper
  .invite-list-box
  .invite-list-item
  > div {
  display: table-cell;
  word-wrap: break-word;
  word-break: break-all;
  vertical-align: middle;
  border-bottom: 1px solid #e8ebf0;
  text-align: center;
}
.modal-popup-wrapper.modal-popup-m602-1
  .modal-popup
  .invite-list-wrapper
  .invite-list-box
  .invite-list-item
  > div.no,
table.fixed-header tbody tr td.chkecbox {
  width: 40px;
}
.modal-popup-wrapper.modal-popup-m602-1
  .modal-popup
  .invite-list-wrapper
  .invite-list-box
  .invite-list-item
  > div.name,
.modal-popup-wrapper.modal-popup-m605-2
  .modal-popup
  .modal-body
  table.fixed-header.full-width
  tr
  td:nth-child(2),
.modal-popup-wrapper.modal-popup-m605-2
  .modal-popup
  .modal-body
  table.fixed-header.full-width
  tr
  td:nth-child(9),
.modal-popup-wrapper.modal-popup-m605-2
  .modal-popup
  .modal-body
  table.fixed-header.full-width
  tr
  th:nth-child(2),
.modal-popup-wrapper.modal-popup-m605-2
  .modal-popup
  .modal-body
  table.fixed-header.full-width
  tr
  th:nth-child(9) {
  width: 70px;
}
.modal-popup-wrapper.modal-popup-m602-1
  .modal-popup
  .invite-list-wrapper
  .invite-list-box
  .invite-list-item
  > div.del {
  width: 60px;
}
.modal-popup-wrapper.modal-popup-m602-1
  .modal-popup
  .invite-list-wrapper
  .invite-list-box
  .invite-list-item
  > div.del
  a
  i {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 16px;
  height: 16px;
  background: url("../images/common/icon_del_invite.svg") no-repeat;
}
.modal-popup-wrapper.modal-popup-m602-1
  .modal-popup
  .invite-list-wrapper
  .invite-list-box
  .invite-list-item
  > div.phone-number {
  width: 110px;
}
#wrap.full-page-layout .full-page-body td:nth-child(2),
#wrap.full-page-layout .full-page-body th:nth-child(2),
.modal-popup-wrapper.modal-popup-m602-1
  .modal-popup
  .invite-list-wrapper
  .invite-list-box
  .invite-list-item
  > div.grant,
table.fixed-header.table-test-item tbody td.bg-gray {
  width: 40px;
}
#wrap.full-page-layout .full-page-body tbody tr td:nth-child(2n),
.modal-popup-wrapper.modal-popup-m602-1
  .modal-popup
  .invite-list-wrapper
  .invite-list-box
  .invite-list-item
  > div:nth-child(2n),
.table-performance-wrapper table thead tr:nth-child(2) {
  background-color: #f4f5f7;
}
.modal-popup-wrapper.modal-popup-m602-2 .modal-popup,
.modal-popup-wrapper.modal-popup-m602-3 .modal-popup,
.modal-popup-wrapper.modal-popup-u301-2 .modal-popup {
  width: 420px;
}
.modal-popup-wrapper.modal-popup-u301-2 .modal-popup.content-size {
  width: auto;
}
.modal-popup-wrapper.modal-popup-m602-3 .modal-popup .field-box .label {
  height: 20px;
}
.modal-popup-wrapper.modal-popup-m604-2 .modal-popup,
.modal-popup-wrapper.modal-popup-m604-3 .modal-popup {
  width: 1200px;
}
.modal-popup-wrapper.modal-popup-m604-2 .excel-upload-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.modal-popup-wrapper.modal-popup-m604-2 .excel-upload-box .label {
  width: 155px;
}
.modal-popup-wrapper.modal-popup-m604-2 .excel-upload-box .field {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.modal-popup-wrapper.modal-popup-m604-2 .test-item-edit-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 13px;
  padding: 14px 0 5px;
  border-top: 1px solid #e8ebf0;
}
.modal-popup-wrapper.modal-popup-u201-1 .modal-popup {
  width: 380px;
}
.modal-popup-wrapper.modal-popup-u201-1 .modal-popup .upload-box .field {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.modal-popup-wrapper.modal-popup-u201-1
  .modal-popup
  .upload-box
  .field
  .filename {
  width: 236px;
}
.modal-popup-wrapper.modal-popup-u201-2 .modal-popup {
  width: 725px;
}
.modal-popup-wrapper.modal-popup-u201-2 .modal-popup .photo-list-wrapper {
  margin-top: 15px;
  border-bottom: none;
}
.modal-popup-wrapper.modal-popup-u201-2
  .modal-popup
  .photo-list-wrapper
  .photo-list-box {
  height: 380px;
  overflow-y: auto;
}
.modal-popup-wrapper.modal-popup-u201-2
  .modal-popup
  .photo-list-wrapper
  .photo-list-box
  .photo-thumb
  .thumb-box {
  width: 100px;
  height: 92px;
}
.modal-popup-wrapper.modal-popup-u301-2 .modal-popup .modal-body {
  min-height: 303px;
}
.modal-popup-wrapper.modal-popup-u301-2 .modal-popup p.no-data-msg {
  margin-top: 33px;
  font-size: 13px;
  text-align: center;
}
.modal-popup-wrapper.modal-popup-u301-2 .modal-popup .template-list-box,
.modal-popup-wrapper.modal-popup-u301-2 .modal-popup .template-setting-box {
  margin-top: 24px;
}
.modal-popup-wrapper.modal-popup-u301-2
  .modal-popup
  .template-setting-box
  .label {
  height: 22px;
}
.modal-popup-wrapper.modal-popup-u301-2 .modal-popup .template-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  border: 1px solid #e8ebf0;
  font-size: 13px;
}
#grade-content
  .content-body
  .image-regist-box
  .image-regist-item
  .image-field-box,
.draw-box + .btn,
.grade-layout #grade-container #grade-rnb .field-wrapper,
.modal-popup-wrapper.modal-popup-u104-2
  .modal-popup
  .doc-preview-wrapper
  .doc-preview-info
  .doc-preview-box
  .btn-box,
.modal-popup-wrapper.modal-popup-u301-2
  .modal-popup
  .template-item
  ~ .template-item,
.scroll-box .scroll-inbox > ul > li,
.sign-draw-box + .btn,
.test-attach-wrapper .test-attach-box ul li {
  margin-top: 10px;
}
.modal-popup-wrapper.modal-popup-u301-2
  .modal-popup
  .template-item
  .template-tit {
  position: relative;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 40%;
  -ms-flex: 0 0 40%;
  flex: 0 0 40%;
  padding: 0 13px;
}
.modal-popup-wrapper.modal-popup-u301-2
  .modal-popup
  .template-item
  .template-tit
  label {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  height: auto;
}
.modal-popup-wrapper.modal-popup-u301-2
  .modal-popup
  .template-item
  .template-tit
  label
  input {
  position: relative;
  margin-right: 5px;
}
.modal-popup-wrapper.modal-popup-u301-2
  .modal-popup
  .template-item
  .template-meta {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 60%;
  -ms-flex: 1 0 60%;
  flex: 1 0 60%;
  border-left: 1px solid #e8ebf0;
  padding: 12px 42px 12px 15px;
}
.modal-popup-wrapper.modal-popup-u301-2
  .modal-popup
  .template-item
  .template-meta
  .field-box {
  font-size: 14px;
  padding-top: 0;
}
.modal-popup-wrapper.modal-popup-u301-2
  .modal-popup
  .template-item
  .template-meta
  .field-box
  .label {
  height: 25px;
  color: #adadad;
}
.grade-layout #grade-container #grade-content-wrap .grade-tab-nav ul li.on a,
.grade-layout
  #grade-container
  #grade-content-wrap
  .grade-tab-nav.btype
  ul
  li.on
  a,
.grade-layout #grade-container #grade-rnb .rnb-tab-nav ul li.on a,
.modal-popup-wrapper.modal-popup-u301-2
  .modal-popup
  .template-item
  .template-meta
  .field-box
  .val {
  color: #2f2f2f;
}
.modal-popup-wrapper.modal-popup-u301-2
  .modal-popup
  .template-item
  .template-meta
  .template-del {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.modal-popup-wrapper.modal-popup-u301-2
  .modal-popup
  .template-item
  .template-meta
  .template-del
  a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 30px;
  height: 30px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: url("../images/common/icon_trash.svg") 50% 50% no-repeat;
  border: 1px solid #d2d7dc;
  border-radius: 2px;
}
.modal-popup-wrapper.modal-popup-u301-1 .upload-loading-box .loading-image-box {
  position: relative;
  width: 173px;
  height: 170px;
  margin: 0 auto;
}
.modal-popup-wrapper.modal-popup-u301-1
  .upload-loading-box
  .loading-image-box
  img {
  width: 173px;
  height: 170px;
  margin: 0 auto;
}
.modal-popup-wrapper.modal-popup-u301-1
  .upload-loading-box
  .loading-image-box:after {
  content: "";
  position: absolute;
  bottom: 40px;
  right: 30px;
  width: 55px;
  height: 55px;
  background: url("../images/common/signature.gif");
  background-size: 55px auto;
}
.modal-popup-wrapper.modal-popup-u301-1 .upload-loading-box p {
  margin-top: 20px;
  text-align: center;
  font-size: 13px;
}
.modal-popup-wrapper.modal-popup-m604-1 .modal-popup .progress-box,
.modal-popup-wrapper.modal-popup-m605-1 .modal-popup .progress-box {
  margin-top: 4px;
  margin-bottom: 20px;
}
.modal-popup-wrapper.modal-popup-m604-1 .modal-popup .button-wrapper,
.modal-popup-wrapper.modal-popup-m605-1 .modal-popup .button-wrapper {
  text-align: right;
  margin-top: 15px;
}
.modal-popup-wrapper.modal-popup-m604-4
  .modal-popup
  .search-area
  .search-item
  input.txt {
  width: 260px !important;
}
.modal-popup-wrapper.modal-popup-m604-4
  .modal-popup
  .search-area
  .button-wrapper
  .btn,
.shadow-box .field-box .field .with-btn .btn-confirm {
  height: 35px;
}
.grade-layout #grade-container #grade-content-wrap .grade-tab-nav,
.modal-popup-wrapper.modal-popup-m604-4
  .modal-popup
  .search-area
  .button-wrapper
  .btn.gray {
  background: #fff;
}
.modal-popup-wrapper.modal-popup-m604-4 .modal-popup .test-list-wrapper {
  margin-top: 15px;
  width: 100%;
  height: 455px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #797979;
}
.modal-popup-wrapper.modal-popup-m604-4
  .modal-popup
  .test-list-wrapper
  .test-list-box
  ul
  li
  div.tree-item,
.test-list-wrapper .test-list-box ul li div.tree-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 35px;
  padding-left: 25px;
  border-bottom: 1px solid #e8ebf0;
  font-size: 14px;
}
.modal-popup-wrapper.modal-popup-m604-4
  .modal-popup
  .test-list-wrapper
  .test-list-box
  ul
  li
  div.tree-item
  strong,
.test-list-wrapper .test-list-box ul li div.tree-item strong {
  color: #4b5aeb;
  margin-left: 10px;
  margin-right: 10px;
}
.modal-popup-wrapper.modal-popup-m604-4
  .modal-popup
  .test-list-wrapper
  .test-list-box
  ul
  li
  div.tree-item
  a.fold,
.modal-popup-wrapper.modal-popup-m604-4
  .modal-popup
  .test-list-wrapper
  .test-list-box
  ul
  li
  div.tree-item
  a.unfold,
.test-list-wrapper .test-list-box ul li div.tree-item a.fold,
.test-list-wrapper .test-list-box ul li div.tree-item a.unfold {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 15px;
  height: 15px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #2f2f2f;
  border-radius: 2px;
  margin-left: 10px;
}
.modal-popup-wrapper.modal-popup-m604-4
  .modal-popup
  .test-list-wrapper
  .test-list-box
  ul
  li
  div.tree-item
  a.fold:after,
.test-list-wrapper .test-list-box ul li div.tree-item a.fold:after {
  content: "+";
}
.modal-popup-wrapper.modal-popup-m604-4
  .modal-popup
  .test-list-wrapper
  .test-list-box
  ul
  li
  div.tree-item
  a.unfold:after,
.test-list-wrapper .test-list-box ul li div.tree-item a.unfold:after {
  content: "-";
  font-size: 20px;
  position: relative;
  top: -2px;
}
.modal-popup-wrapper.modal-popup-m604-4
  .modal-popup
  .test-list-wrapper
  .test-list-box
  ul
  li
  div.tree-item
  .doc-1,
.modal-popup-wrapper.modal-popup-m604-4
  .modal-popup
  .test-list-wrapper
  .test-list-box
  ul
  li
  div.tree-item
  .doc-2,
.test-list-wrapper .test-list-box ul li div.tree-item .doc-1,
.test-list-wrapper .test-list-box ul li div.tree-item .doc-2 {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 13px;
  height: 15px;
}
.modal-popup-wrapper.modal-popup-m604-4
  .modal-popup
  .test-list-wrapper
  .test-list-box
  ul
  li
  div.tree-item
  .doc-1,
.test-list-wrapper .test-list-box ul li div.tree-item .doc-1 {
  margin-left: 10px;
  margin-right: 10px;
  background: url("../images/common/icon_doc_1.svg") no-repeat;
}
.modal-popup-wrapper.modal-popup-m604-4
  .modal-popup
  .test-list-wrapper
  .test-list-box
  ul
  li
  div.tree-item
  .doc-2,
.test-list-wrapper .test-list-box ul li div.tree-item .doc-2 {
  background: url("../images/common/icon_doc_2.svg") no-repeat;
}
.doc-2 {
  background: url("../images/common/icon_doc_2.svg") no-repeat;
}
.modal-popup-wrapper.modal-popup-m604-4
  .modal-popup
  .test-list-wrapper
  .test-list-box
  ul
  li
  li
  .tree-item,
.test-list-wrapper .test-list-box ul li li .tree-item {
  padding-left: 50px;
}
.modal-popup-wrapper.modal-popup-m604-4
  .modal-popup
  .test-list-wrapper
  .test-list-box
  ul
  li
  li
  li
  .tree-item,
.test-list-wrapper .test-list-box ul li li li .tree-item {
  padding-left: 75px;
}
.modal-popup-wrapper.modal-popup-m604-4
  .modal-popup
  .test-list-wrapper
  .test-list-box
  ul
  li
  li
  li
  li
  .tree-item,
.test-list-wrapper .test-list-box ul li li li li .tree-item {
  padding-left: 100px;
}
.modal-popup-wrapper.modal-popup-m604-4
  .modal-popup
  .test-list-wrapper
  .test-list-box
  ul
  li
  li
  li
  li
  li
  .tree-item,
.setting-wrapper .field-box .error-box,
.test-list-wrapper .test-list-box ul li li li li li .tree-item {
  padding-left: 125px;
}
.modal-popup-wrapper.modal-popup-m605-1 .excel-download-box {
  margin-top: 18px;
  width: 100%;
  height: 60px;
  padding: 0 20px 0 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border: 1px solid #d2d7dc;
  background: url("../images/common/icon_excel_big.svg") 20px 50% no-repeat
    #f5fbf7;
  background-size: 32px;
}
.modal-popup-wrapper.modal-popup-m605-2 .modal-popup .modal-body {
  width: 1120px;
}
.modal-popup-wrapper.modal-popup-m605-2
  .modal-popup
  .modal-body
  .review-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}
.modal-popup-wrapper.modal-popup-m605-2
  .modal-popup
  .modal-body
  table.fixed-header.full-width
  tr
  td:first-child,
.modal-popup-wrapper.modal-popup-m605-2
  .modal-popup
  .modal-body
  table.fixed-header.full-width
  tr
  th:first-child {
  width: 40px;
  text-align: center;
}
.modal-popup-wrapper.modal-popup-m605-2
  .modal-popup
  .modal-body
  table.fixed-header.full-width
  tr
  td:nth-child(3),
.modal-popup-wrapper.modal-popup-m605-2
  .modal-popup
  .modal-body
  table.fixed-header.full-width
  tr
  th:nth-child(3) {
  width: 135px;
}
.modal-popup-wrapper.modal-popup-m605-2
  .modal-popup
  .modal-body
  table.fixed-header.full-width
  tr
  td:nth-child(5),
.modal-popup-wrapper.modal-popup-m605-2
  .modal-popup
  .modal-body
  table.fixed-header.full-width
  tr
  th:nth-child(5) {
  width: 160px;
}
.modal-popup-wrapper.modal-popup-m605-2
  .modal-popup
  .modal-body
  table.fixed-header.full-width
  tr
  td:nth-child(6),
.modal-popup-wrapper.modal-popup-m605-2
  .modal-popup
  .modal-body
  table.fixed-header.full-width
  tr
  th:nth-child(6) {
  width: 130px;
}
.modal-popup-wrapper.modal-popup-m605-2
  .modal-popup
  .modal-body
  table.fixed-header.full-width
  tr
  td:nth-child(7),
.modal-popup-wrapper.modal-popup-m605-2
  .modal-popup
  .modal-body
  table.fixed-header.full-width
  tr
  td:nth-child(8),
.modal-popup-wrapper.modal-popup-m605-2
  .modal-popup
  .modal-body
  table.fixed-header.full-width
  tr
  th:nth-child(7),
.modal-popup-wrapper.modal-popup-m605-2
  .modal-popup
  .modal-body
  table.fixed-header.full-width
  tr
  th:nth-child(8) {
  width: 90px;
}
#wrap.full-page-layout .full-page-body td:nth-child(1),
#wrap.full-page-layout .full-page-body th:nth-child(1),
.modal-popup-wrapper.modal-popup-m605-2
  .modal-popup
  .modal-body
  table.fixed-header.full-width
  tr
  td:last-child,
.modal-popup-wrapper.modal-popup-m605-2
  .modal-popup
  .modal-body
  table.fixed-header.full-width
  tr
  th:last-child {
  width: 35px;
}
.modal-popup-wrapper.modal-popup-m605-2
  .modal-popup
  .modal-body
  table.fixed-header.full-width
  tbody {
  max-height: 550px;
  height: 550px;
  background-color: #fff;
}
.modal-popup-wrapper.modal-popup-m605-2
  .modal-popup
  .modal-body
  table.fixed-header.full-width
  tbody
  td {
  padding: 15px 5px;
}
.modal-popup-wrapper.modal-popup-m605-2
  .modal-popup
  .modal-body
  table.fixed-header.full-width
  .btn-del-review {
  padding: 0;
  font-size: 13px;
  height: 25px;
  width: 60px;
}
.modal-popup-wrapper.modal-popup-m605-2
  .modal-popup
  .modal-body
  table.fixed-header.full-width
  .btn-del-review
  i {
  width: 11px;
  background-image: url("../images/common/icon_del_review.svg");
}
.modal-popup-wrapper.modal-popup-m605-2
  .modal-popup
  .modal-body
  table.fixed-header.full-width
  td
  .btn-del-review {
  width: 23px;
  height: 23px;
  min-width: 23px;
}
.modal-popup-wrapper.modal-popup-m605-2
  .modal-popup
  .modal-body
  table.fixed-header.full-width
  td
  .btn-del-review
  i {
  margin-right: 0;
}
.modal-popup-wrapper.modal-popup-u104-1 .modal-popup {
  width: 650px;
  height: 488px;
}
.modal-popup-wrapper.modal-popup-u104-1 .modal-popup .file-dropdown-box {
  height: 350px;
  background-position: 50% 40px;
  padding-top: 80px;
  padding-bottom: 40px;
}
.grade-layout
  #grade-container
  #grade-rnb
  .sanction-list-wrapper
  .sanction-item-box
  .sanction-header
  .status.red,
.modal-popup-wrapper.modal-popup-u104-1
  .modal-popup
  .file-dropdown-box
  .error-msg,
.test-list-wrapper + .test-list-desc ul li span {
  color: #ff6670;
}
#grade-content .content-body .progress-box,
.modal-popup-wrapper.modal-popup-u104-1
  .modal-popup
  .file-dropdown-box
  + .progress-box {
  margin-top: 5px;
}
.modal-popup-wrapper.modal-popup-u104-2 .modal-popup {
  width: 1500px;
  height: 90%;
}
.modal-popup-wrapper.modal-popup-u104-2 .modal-popup .doc-preview-title {
  text-align: left;
  font-size: 16px;
}
.modal-popup-wrapper.modal-popup-u104-2 .modal-popup .doc-preview-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
.modal-popup-wrapper.modal-popup-u104-2
  .modal-popup
  .doc-preview-wrapper
  .doc-preview {
  width: 90%;
  height: 90%;
  border: 1px solid #797979;
  overflow: auto;
}
.modal-popup-wrapper.modal-popup-u104-2
  .modal-popup
  .doc-preview-wrapper
  .doc-preview-info {
  position: relative;
  width: 185px;
  height: 655px;
}
.modal-popup-wrapper.modal-popup-u104-2
  .modal-popup
  .doc-preview-wrapper
  .doc-preview-info
  .doc-btn-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  text-align: right;
}
.modal-popup-wrapper.modal-popup-u305 .modal-popup {
  width: 368px;
  height: 254px;
}
.modal-popup-wrapper.modal-popup-u305 .modal-popup .modal-body {
  padding-top: 20px;
  height: 140px;
}
.modal-popup-wrapper.modal-popup-u305 .modal-popup .modal-body p {
  font-size: 14px;
  color: #767676;
  text-align: center;
}
.modal-popup-wrapper.modal-popup-u305 .modal-popup .modal-body .companion {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
  width: 250px;
  height: 45px;
  border: 1px solid #d2d7dc;
}
.modal-popup-wrapper.modal-popup-u305
  .modal-popup
  .modal-body
  .companion
  .field-box
  label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 45px;
  margin: 0 8px;
}
.modal-popup-wrapper.modal-popup-u305
  .modal-popup
  .modal-body
  .companion
  .field-box
  label
  input {
  position: relative;
  top: 1px;
  margin-right: 5px;
}
.grade-layout .modal-popup-wrapper {
  background-color: rgba(0, 0, 0, 0.5);
}
.shadow-box p.title {
  color: #2f2f2f !important;
}
.shadow-box .logo {
  padding: 45px 0;
  width: 100%;
}
.shadow-box .logo img {
  display: block;
  margin: 0 auto;
  width: 50px;
  height: 60px;
}
.shadow-box .logo span {
  display: block;
  text-align: center;
}
.shadow-box .logo .logo-text {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.7px;
}
.shadow-box .logo .logo-desc {
  color: #767676;
  font-size: 14px;
}
.shadow-box .field-wrapper {
  width: 100%;
  z-index: 20;
}
.shadow-box .field-box .field {
  display: block;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.shadow-box .login-util-box {
  padding-top: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.shadow-box .login-util-box .util-box a {
  color: #767676;
  text-decoration: underline;
}
.shadow-box .btn-box .btn {
  width: 100%;
  height: 45px;
}
.shadow-box .btn.btn-capsule {
  color: #5564ff;
  background-color: #fff;
  border-radius: 50px;
  border: 1px solid #5564ff;
}
.bottom-fixed {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 17px;
  padding-bottom: 18px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: 1px solid #e8ebf0;
  margin: 27px -50px 0;
}
#wrap {
  position: relative;
  height: 100%;
  background-color: #fff;
}
#wrap #container {
  height: 100%;
}
#wrap #container #header {
  position: fixed;
  top: 0;
  left: 60px;
  z-index: 105;
  width: calc(100% - 60px);
  height: 55px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid #d2d7dc;
  padding: 0 20px 0 15px;
  background-color: #fff;
}
#wrap #container #header .logo img {
  height: 40px;
}
#wrap #container #header .util {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 55px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
#wrap #container #header .util a {
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 24px;
  height: 24px;
  margin-left: 17px;
}
#wrap #container #header .util a:after {
  content: "";
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
#wrap #container #header .util a.setting:after {
  background-image: url("../images/common/icon_setting.svg");
}
#wrap #container #header .util a.setting.on:after,
#wrap #container #header .util a.setting:hover:after {
  background-image: url("../images/common/icon_setting_on.svg");
}
#wrap #container #header .util a.add-member:after {
  background-image: url("../images/common/icon_add_member.svg");
}
#wrap #container #header .util a.add-member.on:after,
#wrap #container #header .util a.add-member:hover:after {
  background-image: url("../images/common/icon_add_member_on.svg");
}
#wrap #container #header .util a.alarm:after {
  background-image: url("../images/common/icon_alarm.svg");
}
#wrap #container #header .util a.alarm.active:after,
#wrap #container #header .util a.alarm:hover:after {
  background-image: url("../images/common/icon_alarm_on.svg");
}
#wrap #container #header .util a.alarm.on:before {
  content: "";
  position: absolute;
  top: 3px;
  right: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ea4335;
}
#wrap #container #header .util a.member-info {
  width: 24px;
  height: 24px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #5564ff;
  color: #fff;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
}

#wrap #container #header .util a.member-info img {
  border-radius: 50%;
  width: 24px;
  height: 24px;
}

#wrap #container #header .util a.member-info span {
  position: relative;
  top: -1px;
}
#wrap #container #lnb {
  position: fixed;
  top: 0;
  left: 0;
  width: 60px;
  height: 100%;
  background-color: #1b1d24;
}
#wrap #container #lnb .lnb-logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 54px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #5564ff;
}
#wrap #container #lnb .lnb-logo img {
  width: 24px;
}
#wrap #container #lnb > ul li > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  height: 70px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#wrap #container #lnb > ul li > a span[class^="icon"] {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 27px;
  height: 27px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  margin-top: 10px;
}
#wrap #container #lnb > ul li > a span[class^="icon"] + span {
  display: block;
  text-align: center;
  color: #8c8e96;
  line-height: normal;
  font-size: 12px;
}
#wrap #container #lnb > ul li > a span[class^="icon"].icon-nav-1 {
  background-image: url("../images/common/icon_nav_1.svg");
}
#wrap #container #lnb > ul li > a span[class^="icon"].icon-nav-2 {
  background-image: url("../images/common/icon_nav_2.svg");
}
#wrap #container #lnb > ul li > a span[class^="icon"].icon-nav-3 {
  background-image: url("../images/common/icon_nav_3.svg");
}
#wrap #container #lnb > ul li > a span[class^="icon"].icon-nav-4 {
  background-image: url("../images/common/icon_nav_4.svg");
}
#wrap #container #lnb > ul li > a span[class^="icon"].icon-nav-5 {
  background-image: url("../images/common/icon_nav_5.svg");
}
#wrap #container #lnb > ul li > a span[class^="icon"].icon-nav-6 {
  background-image: url("../images/common/icon_nav_6.svg");
}
#wrap #container #lnb > ul li > a span[class^="icon"].icon-nav-7 {
  background-image: url("../images/common/icon_nav_7.svg");
}
#wrap #container #lnb > ul li > a span[class^="icon"].icon-nav-remicon {
  background-image: url("../images/common/icon_nav_remicon.svg");
}
#wrap #container #lnb > ul li > a span[class^="icon"].icon-nav-tasul {
  background-image: url("../images/common/icon_nav_tasul.svg");
}
#wrap #container #lnb > ul li > a span[class^="icon"].icon-nav-xr {
  background-image: url("../images/common/icon_nav_xr.svg");
}
#wrap #container #lnb > ul li > a span[class^="icon"].icon-nav-8 {
  background-image: url("../images/menu/m08_off.svg");
}
#wrap #container #lnb > ul li > a span[class^="icon"].icon-nav-request {
  background-image: url("../images/common/m08_off.svg");
}

#wrap #container #lnb > ul li > a.active span[class^="icon"] + span,
#wrap #container #lnb > ul li > a.on span[class^="icon"] + span,
#wrap #container #lnb > ul li > a:hover span[class^="icon"] + span {
  color: #6e8cff;
}
#wrap #container #lnb > ul li > a.active span[class^="icon"].icon-nav-1,
#wrap #container #lnb > ul li > a.on span[class^="icon"].icon-nav-1,
#wrap #container #lnb > ul li > a:hover span[class^="icon"].icon-nav-1 {
  background-image: url("../images/common/icon_nav_1_on.svg");
}
#wrap #container #lnb > ul li > a.active span[class^="icon"].icon-nav-2,
#wrap #container #lnb > ul li > a.on span[class^="icon"].icon-nav-2,
#wrap #container #lnb > ul li > a:hover span[class^="icon"].icon-nav-2 {
  background-image: url("../images/common/icon_nav_2_on.svg");
}
#wrap #container #lnb > ul li > a.active span[class^="icon"].icon-nav-3,
#wrap #container #lnb > ul li > a.on span[class^="icon"].icon-nav-3,
#wrap #container #lnb > ul li > a:hover span[class^="icon"].icon-nav-3 {
  background-image: url("../images/common/icon_nav_3_on.svg");
}
#wrap #container #lnb > ul li > a.active span[class^="icon"].icon-nav-4,
#wrap #container #lnb > ul li > a.on span[class^="icon"].icon-nav-4,
#wrap #container #lnb > ul li > a:hover span[class^="icon"].icon-nav-4 {
  background-image: url("../images/common/icon_nav_4_on.svg");
}
#wrap #container #lnb > ul li > a.active span[class^="icon"].icon-nav-5,
#wrap #container #lnb > ul li > a.on span[class^="icon"].icon-nav-5,
#wrap #container #lnb > ul li > a:hover span[class^="icon"].icon-nav-5 {
  background-image: url("../images/common/icon_nav_5_on.svg");
}
#wrap #container #lnb > ul li > a.active span[class^="icon"].icon-nav-6,
#wrap #container #lnb > ul li > a.on span[class^="icon"].icon-nav-6,
#wrap #container #lnb > ul li > a:hover span[class^="icon"].icon-nav-6 {
  background-image: url("../images/common/icon_nav_6_on.svg");
}

#wrap #container #lnb > ul li > a.active span[class^="icon"].icon-nav-7,
#wrap #container #lnb > ul li > a.on span[class^="icon"].icon-nav-7,
#wrap #container #lnb > ul li > a:hover span[class^="icon"].icon-nav-7 {
  background-image: url("../images/common/icon_nav_7_on.svg");
}

#wrap #container #lnb > ul li > a.active span[class^="icon"].icon-nav-remicon,
#wrap #container #lnb > ul li > a.on span[class^="icon"].icon-nav-remicon,
#wrap #container #lnb > ul li > a:hover span[class^="icon"].icon-nav-remicon {
  background-image: url("../images/common/icon_nav_remicon_on.svg");
}

#wrap #container #lnb > ul li > a.active span[class^="icon"].icon-nav-tasul,
#wrap #container #lnb > ul li > a.on span[class^="icon"].icon-nav-tasul,
#wrap #container #lnb > ul li > a:hover span[class^="icon"].icon-nav-tasul {
  background-image: url("../images/common/icon_nav_tasul_on.svg");
}

#wrap #container #lnb > ul li > a.active span[class^="icon"].icon-nav-xr,
#wrap #container #lnb > ul li > a.on span[class^="icon"].icon-nav-xr,
#wrap #container #lnb > ul li > a:hover span[class^="icon"].icon-nav-xr {
  background-image: url("../images/common/icon_nav_xr_on.svg");
}

#wrap #container #lnb > ul li > a.active span[class^="icon"].icon-nav-8,
#wrap #container #lnb > ul li > a.on span[class^="icon"].icon-nav-8,
#wrap #container #lnb > ul li > a:hover span[class^="icon"].icon-nav-8 {
  background-image: url("../images/menu/m08.svg");
}

#wrap #container #lnb > ul li > a.active span[class^="icon"].icon-nav-request,
#wrap #container #lnb > ul li > a.on span[class^="icon"].icon-nav-request,
#wrap #container #lnb > ul li > a:hover span[class^="icon"].icon-nav-request {
  background-image: url("../images/common/m08.svg");
}

#wrap #container #lnb .sub-nav {
  display: none;
  position: fixed;
  top: 55px;
  left: 60px;
  width: 190px;
  height: calc(100% - 55px);
  z-index: 100;
  background: #f4f5f7;
  border-right: 1px solid #d2d7dc;
}
#wrap #container #lnb .sub-nav .sub-nav-header {
  padding: 0 10px 15px;
}
#wrap #container #lnb .sub-nav .sub-nav-header .sub-nav-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 60px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
}

.date-year-area {
  padding: 3px 0 7px 0;
  border: 1px solid #d2d7dc;
  font-size: 14px;
  color: #767676;
  text-align: center;
  width: 47%;
}
.pre_btn,
.next_btn {
  min-width: 40px !important;
  border: 0px;
  background-color: rgba(232, 235, 240, 1);
  border: 1px solid #d2d7dc;
}
.pre_btn {
  /* top: 33px;
    left: 1px;
    position: relative; */
  color: #828080;
  font-size: 11px;
}
.next_btn {
  /* top: -33px;
    left: 128px;
    position: relative; */
  color: #828080;
  font-size: 11px;
}
.pre_btn:hover,
.next_btn:hover {
  background-color: #cccccc !important;
}

#wrap #container #lnb .sub-nav .sub-nav-header .field-wrap input[type="text"] {
  max-width: 170px;
}
#wrap
  #container
  #lnb
  .sub-nav
  .sub-nav-header
  .select-year-month-box
  .select-year {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 35px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 35px;
  margin-bottom: 5px;
}
#wrap
  #container
  #lnb
  .sub-nav
  .sub-nav-header
  .select-year-month-box
  .select-year
  input.txt.year {
  text-align: center;
  background-color: #fff !important;
}
#wrap
  #container
  #lnb
  .sub-nav
  .sub-nav-header
  .select-year-month-box
  .select-year
  .year-next,
#wrap
  #container
  #lnb
  .sub-nav
  .sub-nav-header
  .select-year-month-box
  .select-year
  .year-prev {
  position: absolute;
  top: 0;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 35px;
  height: 35px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 2;
  background-color: #e8ebf0;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  border: 1px solid #d2d7dc;
}
#wrap
  #container
  #lnb
  .sub-nav
  .sub-nav-header
  .select-year-month-box
  .select-year
  .year-prev {
  left: 0;
  border-right: none;
  background-image: url("../images/common/icon_year_prev.svg");
}
#wrap
  #container
  #lnb
  .sub-nav
  .sub-nav-header
  .select-year-month-box
  .select-year
  .year-next {
  right: 0;
  border-left: none;
  background-image: url("../images/common/icon_year_next.svg");
}
#wrap #container #lnb .sub-nav .sub-nav-body ul li a,
.item-group .item-box,
.table-performance-wrapper table.fixed-header tbody tr.total td strong.gray {
  color: #767676;
}
#wrap #container #lnb .sub-nav .sub-nav-body .sub-nav-msg {
  border-top: 1px solid #e8ebf0;
  margin: 17px 15px;
  padding: 13px 0;
  font-size: 12px;
  color: #8d8d8d;
}
input[type="text"].date,
input[type="text"].date-range {
  border: 1px solid #d2d7dc;
  font-size: 14px;
  padding: 6px 0 6px 26px;
  color: #767676;
  border-radius: 2px;
  background: url("../images/common/icon_calendar.svg") 7px 50% no-repeat #fff;
}
.item-group p.item-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 22px;
  font-size: 12px;
  color: #adadad;
  text-transform: uppercase;
  padding-left: 15px;
  padding-right: 15px;
}
.item-group .item-box a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 32px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #767676;
  padding: 0 15px;
  width: 100%;
}

.item-group.setting .item-box a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 39px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #767676;
  padding: 0 15px;
  width: 100%;
}

.item-group .item-box a.on,
.item-group .item-box a:hover {
  background-color: #e8ebf0;
}
.item-group .item-box a[class^="icon-setting"] {
  padding-left: 39px;
  background-repeat: no-repeat;
  background-position: 15px 50%;
}
.item-group .item-box a.icon-setting-1 {
  background-image: url("../images/common/icon_setting_1.svg");
}
.item-group .item-box a.icon-setting-2 {
  background-image: url("../images/common/icon_setting_2.svg");
}
.item-group .item-box a.icon-setting-3 {
  background-image: url("../images/common/icon_setting_3.svg");
}
.item-group .item-box a.icon-setting-4 {
  background-image: url("../images/common/icon_setting_4.svg");
}
.item-group .item-box a.icon-setting-5 {
  background-image: url("../images/common/icon_setting_5.svg");
}
.item-group .item-box a.icon-setting-6 {
  background-image: url("../images/common/icon_setting_6.svg");
}
.item-group .item-box a.icon-setting-7 {
  background-image: url("../images/common/icon_setting_7.svg");
}
.item-group .item-box a.icon-setting-8 {
  background-image: url("../images/common/icon_setting_8.svg");
}
.item-group .item-box a.icon-setting-9 {
  background-image: url("../images/common/icon_setting_9.svg");
}
.item-group .item-box span {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 32px;
  /* padding-left: 15px; */
}
.item-group .item-box .title {
  position: relative;
  padding-left: 19px;
  line-height: 1;
}
.item-group .item-box .title:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.item-group .item-box .title.division-item:after {
  display: block;
  width: 11px;
  height: 11px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  border-radius: 2px;
  border: 2px solid #767676;
}
.item-group .item-box .title.result-item-pass:after {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  border: 2px solid #00a3fa;
}
.item-group .item-box .title.result-item-fail:after {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  border: 2px solid #ff6670;
}
.item-group .item-box .title.result-item-retest:after {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  border: 2px solid #f59a23;
}
.item-group .item-box .title.round-gray:after {
  width: 12px;
  height: 12px;
  border: 2px solid #6b6c73;
  border-radius: 50%;
}
.item-group .item-box .title.round-green:after {
  width: 12px;
  height: 12px;
  border: 2px solid #34a853;
  border-radius: 50%;
}
.item-group .item-box .title.round-blue:after {
  width: 12px;
  height: 12px;
  border: 2px solid #00a3fa;
  border-radius: 50%;
}
.item-group .item-box .title.round-red:after {
  width: 12px;
  height: 12px;
  border: 2px solid #ff6670;
  border-radius: 50%;
}
.item-group .item-box .title.round-yellow:after {
  width: 12px;
  height: 12px;
  border: 2px solid #fbbc05;
  border-radius: 50%;
}
.item-group .item-box .title.round-purple:after {
  width: 12px;
  height: 12px;
  border: 2px solid #6300bf;
  border-radius: 50%;
}
.item-group .item-box .title.photo-item {
  padding-left: 18px;
}
.item-group .item-box .title.photo-item:after {
  width: 12px;
  height: 12px;
  background: url("../images/common/icon_photo.svg") no-repeat;
}
.item-group .item-box .title.folder {
  padding-left: 22px;
}
.item-group .item-box .title.folder:after {
  width: 15px;
  height: 13px;
  background: url("../images/common/icon_folder.svg") no-repeat;
}
.item-group .item-box .title.folder + .cnt {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 30px;
  height: 18px;
  color: #fff;
  background-color: #5564ff;
  border-radius: 20px;
  font-size: 11px;
}
.item-group .item-box .cnt {
  color: #2f2f2f;
  font-family: "Open Sans", sans-serif;
}
.item-group .item-box .cnt.cumulative {
  color: #0f3cff;
}
.member-wrapper {
  display: none;
  position: fixed;
  top: 42px;
  right: 20px;
  padding-top: 8px;
}
.member-wrapper .member-container {
  width: 222px;
  height: 134px;
  border-radius: 5px;
  border: 1px solid #797979;
  background-color: #fff;
  overflow: hidden;
}
.alarm-wrapper:after,
.member-wrapper:after {
  content: "";
  position: absolute;
  z-index: 10;
  top: 1px;
  right: 5px;
  width: 11px;
  height: 7px;
  background: url("../images/common/icon_header_arrow.svg") no-repeat;
}
.member-wrapper .member-box {
  position: relative;
  height: 100%;
}
.member-wrapper .member-box .member-info-box {
  padding: 15px;
}
.grade-layout #grade-container #grade-rnb .test-item-box .field span.fail,
.grade-layout #grade-container #grade-rnb .test-item-box .field span.pass,
.member-wrapper .member-box .member-info-box p.name {
  font-size: 15px;
}
.member-wrapper .member-box .member-info-box p.email,
.member-wrapper .member-box .member-info-box p.updated-date {
  color: #adadad;
  font-size: 13px;
  padding-top: 2px;
}
.member-wrapper .member-box .button-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: 1px solid #e8ebf0;
}
.member-wrapper .member-box .button-wrapper a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 50%;
  height: 40px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #767676;
}
.member-wrapper .member-box .button-wrapper a:first-child,
.table-wrapper table tr td:nth-child(3) {
  border-right: 1px solid #e8ebf0;
}
.alarm-wrapper {
  display: none;
  padding-top: 8px;
  position: fixed;
  top: 42px;
  right: 61px;
  width: 298px;
}
.alarm-wrapper .alarm-container {
  border-radius: 5px;
  border: 1px solid #797979;
  background-color: #fff;
  max-height: 374px;
  overflow-x: hidden;
  overflow-y: auto;
}
.alarm-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid #e8ebf0;
  padding: 18px 20px;
  background: #fff;
  min-width: 0;
}
.alarm-item:first-child {
  border-top: none;
}
.alarm-item p {
  width: 100%;
  color: #767676;
}
.alarm-item p em {
  color: #5564ff;
  font-style: normal;
  font-family: "Noto Sans KR", "Open Sans", sans-serif;
  font-size: 15px;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
}
.alarm-item p.meta-info {
  padding-top: 3px;
  font-size: 13px;
  color: #8d8d8d;
}
.alarm-item.error {
  background: #ffebeb;
}
.alarm-item.warning {
  background: #ffffcd;
}
.drop-button {
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.drop-button {
  margin-bottom: 1px;
}
.drop-button > a {
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 80px;
  height: 26px;
  border-radius: 15px;
  background-color: #fff;
  border: 2px solid #767676;
  color: #2f2f2f;
  font-size: 12px;
  padding-left: 20px;
  text-decoration: none !important;
}
.drop-button > a:after {
  position: absolute;
  right: 9px;
  border-style: solid;
  height: 0;
  width: 0;
  border-color: transparent transparent transparent #333;
  border-width: 3px 0 3px 4px;
  content: "";
}
.drop-button .drop-button-nav {
  display: none;
  position: absolute;
  top: 17px;
  right: -85px;
  min-width: 120px;
  border-radius: 1px;
  border: 1px solid #797979;
  background-color: #fff;
}
.drop-button .drop-button-nav > ul > li > a,
.grade-layout
  #grade-container
  #grade-content-wrap
  #grade-content
  .content-header
  .dropdown-grade-nav
  .drop-button-nav
  ul
  > li
  > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 120px;
  height: 35px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  color: #767676;
  padding: 0 10px;
  text-decoration: none;
}
.drop-button .drop-button-nav > ul > li > a:hover,
.dropdown-box .dropdown-subbox > ul li a:hover,
.grade-layout
  #grade-container
  #grade-content-wrap
  #grade-content
  .content-header
  .dropdown-grade-nav
  .drop-button-nav
  ul
  > li
  > a:hover {
  background-color: #ebf5ff;
}
.drop-button.on > a:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.drop-button.orange2 > a,
.drop-button.orange > a {
  padding-left: 5px;
  color: #fbbc05;
  border-color: #fbbc05;
}
.drop-button.orange2 > a:after,
.drop-button.orange > a:after {
  border-color: transparent transparent transparent #fbbc05;
}
.drop-button.orange2 > a {
  padding-left: 14px;
}
.drop-button.purple > a {
  padding-left: 5px;
  color: #6f5de5;
  border-color: #6f5de5;
}
.drop-button.purple > a:after {
  border-color: transparent transparent transparent #6f5de5;
}
.drop-button.green2 > a,
.drop-button.green > a {
  padding-left: 14px;
  color: #34a853;
  border-color: #34a853;
}
.drop-button.green2 > a:after,
.drop-button.green > a:after {
  border-color: transparent transparent transparent #34a853;
}
.drop-button.green2 > a {
  padding-left: 20px;
}
.drop-button.blue > a {
  padding-left: 14px;
  color: #00a3fa;
  border-color: #00a3fa;
}
.drop-button.blue > a:after {
  border-color: transparent transparent transparent #00a3fa;
}

.drop-button.gray > a {
  padding-left: 14px;
  color: #919392;
  border-color: #919392;
}
.drop-button.gray > a:after {
  border-color: transparent transparent transparent #919392;
}

.drop-button.red > a {
  padding-left: 14px;
  color: #ff6670;
  border-color: #ff6670;
}
.drop-button.red > a:after {
  border-color: transparent transparent transparent #ff6670;
}

.drop-button.red-sec > a {
  padding-left: 6px;
  color: #ff6670;
  border-color: #ff6670;
}
.drop-button.red-sec > a:after {
  border-color: transparent transparent transparent #ff6670;
}
.drop-button.type-2 > a {
  height: 35px;
  border: 0;
  padding: 0;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 2px;
  background-color: #5564ff;
  color: #fff;
  min-width: 90px;
}
.drop-button.type-2 > a:before {
  content: "";
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 12px;
  height: 12px;
  margin-right: 4px;
  background: url("../images/common/icon_button_plus.svg") no-repeat;
}
.drop-button.type-2 > a:hover {
  background-color: #4b5aeb;
}
.drop-button.type-2 .drop-button-nav {
  top: 35px;
  right: 0;
}
#content-wrapper {
  position: fixed;
  top: 55px;
  left: 60px;
  width: calc(100% - 60px);
  height: calc(100% - 55px);
  padding: 0 20px 50px;
  min-width: 1100px;
  overflow-x: hidden;
  overflow-y: auto;
}
#wrap.lnb-view #content-wrapper {
  left: 250px;
  width: calc(100% - 250px);
}
#content-wrapper.dashboard {
  padding: 0 20px;
  background-color: #f4f5f7;
}
#content-wrapper.dashboard .dashboard-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px 0;
}
#content-wrapper.dashboard .dashboard-wrapper .fluid-area {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-right: 15px;
}
#content-wrapper.dashboard .dashboard-wrapper .fluid-area .summary-info-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 15px;
}
#content-wrapper.dashboard
  .dashboard-wrapper
  .fluid-area
  .summary-info-box
  > div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  height: 140px;
  border-radius: 5px;
  padding: 10px 20px 20px;
}
#content-wrapper.dashboard
  .dashboard-wrapper
  .fluid-area
  .summary-info-box
  > div
  p.sub-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  font-size: 15px;
}
#content-wrapper.dashboard
  .dashboard-wrapper
  .fluid-area
  .summary-info-box
  > div
  > ul {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: -20px;
}
#content-wrapper.dashboard
  .dashboard-wrapper
  .fluid-area
  .summary-info-box
  > div
  > ul
  li {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 25%;
  -ms-flex: 0 1 25%;
  flex: 0 1 25%;
  height: 60px;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
#content-wrapper.dashboard
  .dashboard-wrapper
  .fluid-area
  .summary-info-box
  > div
  > ul
  li
  span {
  display: block;
  color: #fff;
}
#content-wrapper.dashboard
  .dashboard-wrapper
  .fluid-area
  .summary-info-box
  > div
  > ul
  li
  span.cnt {
  font-size: 25px;
  font-family: "Open Sans", san-serif;
}
#content-wrapper.dashboard
  .dashboard-wrapper
  .fluid-area
  .summary-info-box
  > div.summary-primary {
  width: 65.4545%;
  background-color: #5564ff;
}
#content-wrapper.dashboard
  .dashboard-wrapper
  .fluid-area
  .summary-info-box
  > div.summary-secondary {
  margin-left: 15px;
  width: calc(100% - 65.4545% - 15px);
  background-color: #34a853;
}

#content-wrapper.dashboard
  .dashboard-wrapper
  .fluid-area
  .summary-info-box
  > div.summary-secondary
  > ul {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
#content-wrapper.dashboard
  .dashboard-wrapper
  .fluid-area
  .summary-info-box
  > div.summary-secondary
  > ul
  li {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}
#content-wrapper.dashboard
  .dashboard-wrapper
  .fluid-area
  .summary-info-box
  > div.summary-third {
  margin-left: 15px;
  width: calc(100% - 65.4545% - 15px);
  background-color: blueviolet;
}
#content-wrapper.dashboard
  .dashboard-wrapper
  .fluid-area
  .summary-info-box
  > div.summary-third
  > ul {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
#content-wrapper.dashboard
  .dashboard-wrapper
  .fluid-area
  .summary-info-box
  > div.summary-third
  > ul
  li {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}
#content-wrapper.dashboard .dashboard-wrapper .fluid-area .new-request-box {
  text-align: center;
  background-color: #fff;
  min-height: 575px;
  max-height: 575px;
  border: 1px solid #d2d7dc;
}
#content-wrapper.dashboard .dashboard-wrapper .fluid-area .new-request-box > p {
  padding-top: 71px;
  padding-bottom: 81px;
  font-size: 18px;
}
#content-wrapper .contents-header .content-title ul,
#content-wrapper.dashboard .dashboard-wrapper .fluid-area .new-request-box > ul,
.graph-wrapper .graph-box .graph-header ul {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
#content-wrapper.dashboard
  .dashboard-wrapper
  .fluid-area
  .new-request-box
  > ul
  li {
  position: relative;
  width: 160px;
  margin: 0 10px;
}
#content-wrapper.dashboard
  .dashboard-wrapper
  .fluid-area
  .new-request-box
  > ul
  li
  label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  text-align: center;
  border-radius: 2px;
  border: 1px solid #d2d7dc;
}
#content-wrapper.dashboard
  .dashboard-wrapper
  .fluid-area
  .new-request-box
  > ul
  li
  label
  span.icon {
  width: 90px;
  height: 90px;
  background-repeat: no-repeat;
  background-position: center;
}
#content-wrapper.dashboard
  .dashboard-wrapper
  .fluid-area
  .new-request-box
  > ul
  li
  label.request-1
  span.icon {
  background-image: url("../images/dashboard/icon_request_1.svg");
}
#content-wrapper.dashboard
  .dashboard-wrapper
  .fluid-area
  .new-request-box
  > ul
  li
  label.request-2
  span.icon {
  background-image: url("../images/dashboard/icon_request_2.svg");
}
#content-wrapper.dashboard
  .dashboard-wrapper
  .fluid-area
  .new-request-box
  > ul
  li
  label.request-3
  span.icon {
  background-image: url("../images/dashboard/icon_request_3.svg");
}
#content-wrapper.dashboard
  .dashboard-wrapper
  .fluid-area
  .new-request-box
  > ul
  li
  label.request-4
  span.icon {
  background-image: url("../images/dashboard/icon_request_4.svg");
}
#content-wrapper.dashboard
  .dashboard-wrapper
  .fluid-area
  .new-request-box
  > ul
  li
  label.request-5
  span.icon {
  background-image: url("../images/dashboard/icon_request_5.svg");
}
#content-wrapper.dashboard
  .dashboard-wrapper
  .fluid-area
  .new-request-box
  > ul
  li
  label.request-supervisor-1
  span.icon {
  background-image: url("../images/dashboard/icon_swiper_3.svg");
}
#content-wrapper.dashboard
  .dashboard-wrapper
  .fluid-area
  .new-request-box
  > ul
  li
  label.request-supervisor-2
  span.icon {
  background-image: url("../images/dashboard/icon_swiper_1.svg");
}
#content-wrapper.dashboard
  .dashboard-wrapper
  .fluid-area
  .new-request-box
  > ul
  li
  label
  span {
  width: 100%;
  display: block;
  font-size: 14px;
  color: #767676;
}
#content-wrapper.dashboard
  .dashboard-wrapper
  .fluid-area
  .new-request-box
  > ul
  li
  input.rdo,
.header-checkbox input,
.photo-thumb input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
#content-wrapper.dashboard
  .dashboard-wrapper
  .fluid-area
  .new-request-box
  .button-wrapper {
  padding-top: 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#content-wrapper.dashboard
  .dashboard-wrapper
  .fluid-area
  .new-request-box
  .button-wrapper
  a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-color: #5564ff;
  color: #fff;
  width: 160px;
  height: 45px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#content-wrapper.dashboard .dashboard-wrapper .fixed-area {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 340px;
  -ms-flex: 0 1 340px;
  flex: 0 1 340px;
}
#content-wrapper.dashboard .dashboard-wrapper .fixed-area .guide-swiper {
  position: relative;
  width: 340px;
  height: 140px;
  border: 1px solid #d2d7dc;
  border-radius: 5px;
  background-color: #fff;
}
#content-wrapper.dashboard
  .dashboard-wrapper
  .fixed-area
  .guide-swiper
  .swiper-container,
#content-wrapper.dashboard
  .dashboard-wrapper
  .fixed-area
  .guide-swiper
  .swiper-wrapper,
#content-wrapper.dashboard
  .dashboard-wrapper
  .fixed-area
  .guide-swiper
  .swiper-wrapper
  .swiper-slide {
  height: inherit;
}
#content-wrapper.dashboard
  .dashboard-wrapper
  .fixed-area
  .guide-swiper
  .guide-box {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 20px;
}
#content-wrapper.dashboard
  .dashboard-wrapper
  .fixed-area
  .guide-swiper
  .guide-box:after {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 10px;
  width: 80px;
  height: 80px;
  background-size: 65px 65px;
  background-position: 100% 100%;
  background-repeat: no-repeat;
}
#content-wrapper.dashboard
  .dashboard-wrapper
  .fixed-area
  .guide-swiper
  .guide-box
  p.title {
  font-size: 16px;
  padding: 0 87px 0 0;
}
#content-wrapper.dashboard
  .dashboard-wrapper
  .fixed-area
  .guide-swiper
  .guide-box
  p.desc {
  padding: 0 70px 0 0;
  color: #767676;
  font-size: 14px;
  margin-top: 16px;
  letter-spacing: -0.3px;
}
#content-wrapper.dashboard
  .dashboard-wrapper
  .fixed-area
  .guide-swiper
  .guide-box.guide-box-1:after {
  background-image: url("../images/dashboard/icon_swiper_1.svg");
}
#content-wrapper.dashboard
  .dashboard-wrapper
  .fixed-area
  .guide-swiper
  .guide-box.guide-box-2:after {
  background-image: url("../images/dashboard/icon_swiper_2.svg");
}
#content-wrapper.dashboard
  .dashboard-wrapper
  .fixed-area
  .guide-swiper
  .guide-box.guide-box-3:after {
  background-image: url("../images/dashboard/icon_swiper_3.svg");
}
#content-wrapper.dashboard
  .dashboard-wrapper
  .fixed-area
  .guide-swiper
  .guide-box.guide-box-4:after {
  background-image: url("../images/dashboard/icon_swiper_4.svg");
}
#content-wrapper.dashboard
  .dashboard-wrapper
  .fixed-area
  .guide-swiper
  .swiper-button-next,
#content-wrapper.dashboard
  .dashboard-wrapper
  .fixed-area
  .guide-swiper
  .swiper-button-prev {
  position: absolute;
  top: 10px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 22px;
  height: 22px;
  z-index: 10;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #e8ebf0;
  margin-top: 0;
  opacity: 1 !important;
}
#content-wrapper.dashboard
  .dashboard-wrapper
  .fixed-area
  .guide-swiper
  .swiper-button-prev {
  left: auto;
  right: 31px;
  background: url("../images/dashboard/icon_swiper_prev.svg") 50% 50% no-repeat
    #fff;
}
#content-wrapper.dashboard
  .dashboard-wrapper
  .fixed-area
  .guide-swiper
  .swiper-button-next {
  background: url("../images/dashboard/icon_swiper_next.svg") 50% 50% no-repeat
    #fff;
}
#content-wrapper .contents-body,
#content-wrapper.dashboard .dashboard-wrapper .fixed-area .alarm-list-container,
.grade-layout #grade-container #grade-rnb .my-sanction-wrapper .my-sanction-box,
.test-list-wrapper + .test-list-desc {
  margin-top: 0px;
}
#content-wrapper.dashboard
  .dashboard-wrapper
  .fixed-area
  .alarm-list-container
  .alarm-list-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 50px;
  background-color: #fff;
  padding: 0 20px;
  border: 1px solid #d2d7dc;
  border-bottom: none;
}
#content-wrapper.dashboard
  .dashboard-wrapper
  .fixed-area
  .alarm-list-container
  .alarm-list-header
  p,
.setting-wrapper .field-box .val p.detail-subject {
  font-size: 16px;
  color: #2f2f2f;
}
#content-wrapper.dashboard
  .dashboard-wrapper
  .fixed-area
  .alarm-list-container
  .alarm-list-header
  span {
  font-size: 12px;
  color: #adadad;
}
#content-wrapper.dashboard
  .dashboard-wrapper
  .fixed-area
  .alarm-list-container
  .alarm-list-box {
  overflow-y: auto;
  background-color: #fff;
  min-height: 525px;
  max-height: 525px;
  border: 1px solid #d2d7dc;
}
#content-wrapper .contents-header .content-title {
  margin-left: 20px;
  height: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font-size: 18px;
}
#content-wrapper .contents-header .content-title a.btn-lnb {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 30px;
  height: 30px;
  background: url("../images/common/icon_content_nav.svg") 50% 50% no-repeat;
}
#content-wrapper .contents-header .content-title ul li a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 130px;
  height: 21px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #adadad;
  border-left: 1px solid #e8ebf0;
}
#content-wrapper .contents-header .content-title ul li a.on {
  color: #333;
}
#content-wrapper .contents-header .content-title ul li:first-child a {
  width: 90px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  border-left: none;
}
.btn-modal {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0 15px;
  height: 30px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  background-color: #00a3fa;
}
.dropdown-box {
  position: relative;
  z-index: 1;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.dropdown-box > a {
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  height: 35px;
  min-width: 110px;
  border: 1px solid #d2d7dc;
  padding: 0 10px;
  color: #767676;
}
.dropdown-box > a:after {
  content: "";
  position: absolute;
  top: 16px;
  right: 7px;
  width: 8px;
  height: 5px;
  background: url("../images/common/icon_dropdown_arrow.svg") no-repeat;
}
.dropdown-box .dropdown-subbox {
  display: none;
  position: absolute;
  top: 35px;
  border: 1px solid #797979;
  width: 100%;
  background-color: #fff;
}
.dropdown-box .dropdown-subbox > ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 35px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 0 7px;
  color: #767676;
}
.dropdown-box.on > a {
  border: 1px solid #5564ff;
}
.table-scroll {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}
#wrap.lnb-view .table-wrapper table {
  min-width: calc(1000px + 190px) !important;
}
.table-wrapper .table-box {
  width: calc(100% - 400px);
  overflow-x: auto;
  margin-left: 400px;
}
.table-wrapper .table-box.th2 {
  width: calc(100% - 200px);
  overflow-x: auto;
  margin-left: 200px;
}
.table-wrapper table {
  width: 100%;
  min-width: 1000px;
  border-collapse: collapse;
  border-spacing: 0;
}
.table-wrapper table td,
.table-wrapper table th {
  white-space: nowrap;
}
.table-wrapper table thead th {
  font-weight: 400;
  font-size: 13px;
  height: 32px;
  border-bottom: 1px solid #5564ff;
}
.list-wrapper table thead th .btn-sort,
.table-basic-wrapper table thead tr th .btn-sort,
.table-wrapper table thead th .btn-sort,
table.fixed-header thead th .btn-sort {
  margin-left: 5px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 7px;
  height: 10px;
  background: url("../images/common/icon_table_sort.svg") no-repeat;
}
.table-wrapper table tbody tr td {
  height: 50px;
  color: #767676;
  text-align: center;
  background-color: #fff;
  padding: 0 15px;
  /* border-bottom: 1px solid #e8ebf0; */
}
.table-wrapper table .remicon-2-line td {
  height: 60px;
}

.table-wrapper table tbody tr td span.truncate {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 150px;
  margin: 0 auto;
}
.table-wrapper table tbody tr td .charge {
  position: relative;
  top: -5px;
}
.table-wrapper table tbody tr td .sign {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  top: 2px;
}
.table-wrapper table tbody tr td .sign img {
  width: auto;
  height: 26px;
}
.table-wrapper table tbody tr a {
  text-decoration: underline;
  color: #767676;
}
.table-wrapper table tbody tr.yellow td {
  background-color: #ffffcd;
}
.table-wrapper table tbody tr.red td {
  background-color: #ffebeb;
}
.table-wrapper table tbody tr:hover td {
  background-color: #f1f7ff;
}
.search-area .search-item .search-keyword-box .dropdown-box > a,
.table-wrapper table tr th:first-child,
.table-wrapper table tr th:nth-child(2),
.table-wrapper table tr th:nth-child(3) {
  border: none;
}
.table-wrapper table tr td:first-child,
.table-wrapper table tr th:first-child {
  position: absolute;
  left: 0;
  width: 110px;
}
.table-wrapper table tr td:nth-child(2),
.table-wrapper table tr th:nth-child(2) {
  position: absolute;
  left: 100px;
  width: 110px;
}
.table-wrapper table tr td:nth-child(3),
.table-wrapper table tr th:nth-child(3) {
  position: absolute;
  left: 210px;
  width: 200px;
  text-align: center;
}
.table-wrapper table td .flex-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}
.table-wrapper table td .flex-box:after {
  content: "";
  position: absolute;
  top: -0.5px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #e8ebf0;
}
.table-wrapper table td.center .flex-box {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.table-wrapper table td img.sign {
  width: auto;
  height: 25px;
}
#wrap.full-page-layout .full-page-body .step-info .rect.on,
.table-wrapper table tr:first-child td .flex-box:after {
  background-color: #5564ff;
}
.table-wrapper table th .flex-box {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 31px;
}
.table-wrapper .table-box.two {
  width: calc(100% - 460px);
  margin-left: 460px;
}
.table-wrapper .table-box.two tr td:nth-child(1),
.table-wrapper .table-box.two tr th:nth-child(1) {
  position: absolute;
  left: 0;
  width: 40px;
}
.table-wrapper .table-box.two tr:first-child td:nth-child(1) {
  border-top: 1px solid #5564ff;
}
.table-wrapper .table-box.two tr td input.chk {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.table-wrapper .table-box.two tr td:nth-child(2),
.table-wrapper .table-box.two tr th:nth-child(2) {
  position: absolute;
  left: 40px;
  width: 80px;
  padding: 0;
}
.table-wrapper .table-box.two tr td:nth-child(3),
.table-wrapper .table-box.two tr th:nth-child(3) {
  position: absolute;
  left: 120px;
  width: 340px;
}
.table-wrapper .table-box.two tr td:nth-child(4) {
  text-align: left;
}
.list-wrapper table,
.table-basic-wrapper table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
#wrap.full-page-layout .full-page-body td,
#wrap.full-page-layout .full-page-body th,
.table-basic-wrapper table td,
.table-basic-wrapper table th {
  vertical-align: middle;
}
.table-basic-wrapper table thead tr th {
  font-size: 13px;
  color: #2f2f2f;
  border-bottom: 1px solid #5564ff;
  height: 32px;
  font-weight: 400;
}
.table-basic-wrapper table tbody tr td {
  color: #767676;
  padding: 15px 5px;
  border-bottom: 1px solid #e8ebf0;
}
.pagination-wrapper {
  margin-top: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  height: 30px;
  color: #767676;
}
.pagination-wrapper .pagination {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
}
.pagination-wrapper .pagination ul {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 35px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.pagination-wrapper .pagination ul li {
  margin: 0 3px;
}
.pagination-wrapper .pagination ul li a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 30px;
  color: #adadad;
}
.pagination-wrapper .pagination ul li a.next,
.pagination-wrapper .pagination ul li a.prev {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid #d2d7dc;
  font-family: "Open Sans", sans-serif;
}
.pagination-wrapper .dropdown-box > a {
  height: 30px;
}
.pagination-wrapper .dropdown-box > a:after {
  top: 11px;
}
.pagination-wrapper .dropdown-box .dropdown-subbox {
  top: 30px;
}
.photo-list-wrapper {
  margin-left: -10px;
  border-bottom: 1px solid #d2d7dc;
}
.photo-list-wrapper .photo-list-box .photo-thumb {
  margin-left: 10px;
  margin-bottom: 22px;
}
.photo-list-wrapper .photo-list-box .date {
  margin-top: 3px;
  display: block;
  font-size: 13px;
  color: #6b6c73;
}
.header-checkbox .thumb-box,
.photo-thumb .thumb-box {
  width: 132px;
  height: 132px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid #d2d7dc;
  position: relative;
  padding-bottom: 100%;
  background-color: #d2d7dc;
}
.header-checkbox .thumb-box img,
.photo-thumb .thumb-box img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.header-checkbox .check-box,
.photo-thumb .check-box {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 18px;
  height: 18px;
  z-index: 10;
  background: url("../images/common/icon_check_normal.svg") no-repeat;
}
.header-checkbox {
  position: relative;
  width: 38px;
  height: 35px;
  border: 1px solid #d2d7dc;
  background-color: #f4f5f7;
  border-radius: 2px;
  margin-right: 6px;
}
.header-checkbox .check-box {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.table-performance-wrapper table {
  width: 100% !important;
  table-layout: fixed;
  border-collapse: collapse;
  border-bottom: 1px solid #e8ebf0;
}
.table-performance-wrapper table td,
.table-performance-wrapper table th {
  border-left: 1px solid #e8ebf0;
  border-top: 1px solid #e8ebf0;
  font-weight: 400;
  vertical-align: middle;
  height: 32px;
  text-align: center;
}
.table-performance-wrapper table td:first-child,
.table-performance-wrapper table th:first-child {
  border-left: 0;
}
.table-performance-wrapper table thead tr:first-child {
  background-color: #fff;
}
.table-performance-wrapper table.fixed-header {
  border-bottom: 1px solid #d2d7dc;
}
.table-performance-wrapper table.fixed-header thead tr {
  max-width: 100% !important;
}
.table-performance-wrapper table.fixed-header thead tr th {
  border: none !important;
  height: 32px;
}
.table-performance-wrapper table.fixed-header tbody {
  max-width: 100% !important;
  max-height: 675px !important;
  height: 675px !important;
}
.table-performance-wrapper table.fixed-header tbody tr {
  max-width: 100% !important;
  table-layout: fixed;
}
.table-performance-wrapper table.fixed-header tbody tr.total td {
  background-color: #ffffcf !important;
  height: 32px;
}
.table-performance-wrapper table.fixed-header tbody tr td {
  padding-left: 0;
  padding-right: 0;
}
.table-performance-wrapper table.fixed-header tbody tr td .truncate {
  max-width: 100%;
}
.table-performance-wrapper table.fixed-header tbody tr:first-child td {
  border-top: none !important;
}
.table-performance-wrapper table tbody tr:first-child td {
  border-top: 1px solid #5564ff !important;
}
.table-performance-wrapper table tbody tr td {
  height: 36px;
}
.table-performance-wrapper table tbody tr td .truncate {
  /* display: table-row;  */
  white-space: pre-line;
  /* overflow: hidden; */
  /* text-overflow: ellipsis;
    max-width: 100px;
    margin: 0 auto;
    padding: 0 10px; */
}

.table-performance-wrapper table tbody tr td.statistics_menu {
  padding: 0 10px;
  text-align: left;
}

.table-performance-wrapper table tbody tr td:first-child {
  background-color: #f4f5f7;
  text-align: left;
  padding-left: 10px;
}

.table-performance-wrapper table tbody tr td.yellow,
.test-list-wrapper .test-list-box ul li li .tree-item-reg {
  background-color: #ffffcf;
}
.table-performance-wrapper table tbody tr td.total {
  background-color: #faedea;
  color: #5564ff;
}
.table-performance-wrapper table tbody tr.total td {
  color: #5564ff;
  background-color: #faedea;
  font-size: 14px;
}
.graph-wrapper .graph-box {
  border-radius: 5px;
  border: 1px solid #d2d7dc;
  background-color: #fff;
  min-height: 480px;
  width: calc(50% - 10px);
}
.graph-wrapper .graph-box .graph-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 60px;
  font-size: 16px;
  color: #3a3b44;
  padding: 0 13px 0 10px;
}
.graph-wrapper .graph-box .graph-header ul li {
  font-size: 13px;
  color: #6b6c73;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 10px;
}
.graph-wrapper .graph-box .graph-header ul li span.item-yellow-box {
  position: relative;
  top: 1px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 26px;
  height: 12px;
  margin-right: 5px;
  background-color: #fbbc05;
}
.graph-wrapper .graph-box .graph-header ul li span.item-green-box {
  position: relative;
  top: 1px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 26px;
  height: 12px;
  margin-right: 5px;
  background-color: #34a853;
}
.graph-wrapper .graph-box .graph-header ul li span.item-count {
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 24px;
  height: 12px;
  margin-right: 5px;
}
.graph-wrapper .graph-box .graph-header ul li span.item-count:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #0064ff;
}
.graph-wrapper .graph-box .graph-header ul li span.item-count:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: url("../images/common/icon_blue_circle.svg");
}
.tab-wrapper .tab-nav {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.tab-wrapper .tab-nav:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #d2d7dc;
  z-index: 1;
}
.tab-wrapper .tab-nav li a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 35px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 15px;
  padding: 0 15px;
  color: #adadad;
  background-color: #fff;
}
.tab-wrapper .tab-nav li.on a {
  position: relative;
  z-index: 11;
  color: #333;
  border: 1px solid #d2d7dc;
  border-bottom: none;
  padding-bottom: 1px;
}
table.fixed-header {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  border-bottom: 1px solid #797979;
}
table.fixed-header thead tr {
  display: table;
  width: calc(100% + 25px);
  /* max-width: calc(600px - 20px); */
  table-layout: fixed;
}
table.fixed-header td,
table.fixed-header th {
  font-size: 14px;
  color: #767676;
  padding: 7px 0;
  word-break: break-all;
  vertical-align: middle;
}
table.fixed-header tbody {
  display: block;
  position: relative;
  min-height: 240px;
  max-height: 240px;
  overflow-y: scroll;
  border-top: 1px solid #5564ff;
  /* max-width: calc(600px); */
}
table.fixed-header tbody tr {
  display: table;
  width: 100%;
  /* max-width: 600px; */
}
table.fixed-header tbody tr td {
  padding-left: 5px;
  padding-right: 5px;
  border-bottom: 1px solid #e8ebf0;
}
table.fixed-header tbody tr td strong {
  font-weight: 900;
}
.setting-wrapper .field-box .field.inline-flex .btn,
table.fixed-header tbody tr td strong + span {
  margin-left: 10px;
}
table.fixed-header tbody tr td.bg-gray {
  background-color: rgba(244, 245, 247, 0.95);
}
table.fixed-header.full-width thead tr {
  width: calc(100% - 15px);
  max-width: calc(100% - 15px);
  table-layout: fixed;
}
table.fixed-header.full-width tbody,
table.fixed-header.full-width tbody tr {
  width: 100%;
  max-width: 100%;
  table-layout: fixed;
}
#wrap.full-page-layout .full-page-body td:nth-child(4),
#wrap.full-page-layout .full-page-body th:nth-child(4),
table.fixed-header.table-test-item tbody td.test-item {
  width: 170px;
}
table.fixed-header.table-test-item tbody td.text-date {
  text-align: center;
  padding-left: 0;
}

/* test-guide / attach file*/

.content-body.testguide {
  padding-top: 10px;
}
.testguide-inner-box {
  width: 700px;
  margin: 0 auto;
  margin-bottom: 40px;
  border: 1px dashed #767676;
  background: #fff;
  padding: 35px 25px 25px;
  /*	overflow-y: auto; */
}
.test-guide-box .upload-inbox {
  margin-bottom: 20px;
}
.test-guide-box p.guide-title {
  text-align: center;
  padding-bottom: 20px;
  font-size: 18px;
}
.test-guide-box .upload-inbox .upload-item {
  background: #4b5aeb;
  color: #fff;
  font-size: 13px;
  padding: 10px 15px;
  height: 50px;
  border-radius: 3px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.test-guide-box .upload-inbox .upload-item .docu_title {
  width: 40px;
}
.test-guide-box .upload-inbox .upload-item .docu_input {
  width: 225px;
  padding: 10px 0;
}
.test-guide-box .upload-inbox .upload-item .docu_input input {
  height: 30px;
  border: 0;
  width: 225px;
  padding-right: 10px;
}
.test-guide-box .upload-inbox .upload-item .docu_up {
  width: 90px;
  padding: 10px 0;
}
.test-guide-box .upload-inbox .upload-item .docu_up .docu_up_btn {
  width: 80px;
  padding: 10px 8px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.6);
  height: 30px;
  line-height: 30px;
  border-radius: 2px;
  background-color: #303de2;
  color: #fff;
  font-size: 13px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.test-guide-box .upload-inbox .upload-item .docu_up .docu_up_btn span {
  line-height: 1;
  margin-top: -1px;
}
.test-guide-box .upload-inbox .upload-item .docu_up .docu_up_btn:hover {
  background-color: #2b262f;
}
.test-guide-box .upload-inbox .upload-item .docu_up_file {
  width: 190px;
  padding: 10px 0 9px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.test-guide-box .upload-inbox .upload-item .docu_up_file {
  text-align: left;
}
.test-guide-box .upload-inbox .upload-item .docu_add_btn {
  width: 50px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  background-color: #303de2;
  text-align: center;
}
.test-guide-box .upload-inbox .upload-item .docu_add_btn a {
  color: #fff;
  line-height: 2.1;
}
.test-guide-box .upload-inbox .upload-item .docu_add_btn:hover {
  background-color: #2b262f;
}

.test-guide-box .attach-inbox .upfile-item {
  width: 650px;
  margin-bottom: 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background: url("../images/common/icon_attach_file.svg") 47% 50% no-repeat
    #ebf5ff;
}
.test-guide-box .attach-inbox .upfile-item {
  background-color: #e9f2ff;
  border: 1px solid #c6dcea;
  height: 50px;
  padding: 10px 15px;
  border-radius: 3px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.test-guide-box .attach-inbox .upfile-item .upfile-title {
  border-right: 1px solid #c6dcea;
  width: 270px;
  height: 100%;
  line-height: 29px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 10px;
}
.test-guide-box .attach-inbox .upfile-item .upfile-name {
  width: 310px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.test-guide-box .attach-inbox .upfile-item .upfile-name a {
  color: #4b5aeb;
  text-decoration: underline;
  padding-left: 18px;
}
/* */

.test-guide-box .attach-inbox .upfile-item-plan {
  width: 650px;
  margin-bottom: 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.test-guide-box .attach-inbox .upfile-item-plan {
  background-color: #e9f2ff;
  border: 1px solid #c6dcea;
  height: 50px;
  padding: 10px 15px;
  border-radius: 3px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.test-guide-box .attach-inbox .upfile-item-plan .upfile-title {
  border-right: 1px solid #c6dcea;
  width: 270px;
  height: 100%;
  line-height: 29px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 10px;
}
.test-guide-box .attach-inbox .upfile-item-plan .upfile-name {
  width: 310px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.test-guide-box .attach-inbox .upfile-item-plan .upfile-name.full-name {
  width: 100%;
}

.test-guide-box .attach-inbox .upfile-item-plan .upfile-name a {
  color: #4b5aeb;
  text-decoration: underline;
  padding-left: 18px;
}

.scroll-box {
  max-height: 170px;
  overflow-y: auto;
  margin-top: 10px;
}
.scroll-box .scroll-inbox {
  padding-right: 10px;
}
.scroll-box .scroll-inbox .no-selected-msg,
.scroll-box .scroll-inbox .scroll-box-item {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 35px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.scroll-box .scroll-inbox .no-selected-msg {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px dashed #d2d7dc;
}
.scroll-box .scroll-inbox .scroll-box-item {
  background-color: #e9f2ff;
  border: 1px solid #d2d7dc;
  padding: 0 10px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.scroll-box .scroll-inbox .scroll-box-item strong {
  font-weight: 400;
  color: #5564ff;
}
.scroll-box .scroll-inbox .scroll-box-item span.ing {
  color: #adadad !important;
}
.filename {
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 354px;
  height: 35px;
  border: 1px solid #d2d7dc;
  background-color: #f4f5f7;
  padding: 0 40px 0 10px;
  border-radius: 2px;
}
.filename .btn-del-item {
  position: absolute;
  top: 50%;
  right: 7px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
}
.search-wrapper {
  margin: 20px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.search-wrapper .field {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 260px;
  -ms-flex: 0 0 260px;
  flex: 0 0 260px;
}
ul.error {
  margin-top: 10px;
  background: 0 0;
  padding-left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.search-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 35px;
  margin-bottom: 10px;
}

.search-area + .search-area {
  margin-top: 6px;
}

.search-area.align-right {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.search-area .search-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.search-area .search-item .header-util,
.search-area .search-item .header-util .btn {
  margin-right: 3px;
}
.search-area .search-item .header-util + .search-keyword + .btn {
  margin-left: 6px;
}
.search-area .search-item .dropdown-box {
  margin-right: 5px;
  height: 35px;
}
.search-area .search-item .search-keyword-box {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  border: 1px solid #d2d7dc;
  margin-right: 5px;
  border-radius: 2px;
}
.search-area .search-item .search-keyword-box .dropdown-box {
  position: relative;
  padding-right: 5px;
}
.search-area .search-item .search-keyword-box .dropdown-box:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5px;
  width: 1px;
  height: 21px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #d2d7dc;
}
.search-area .search-item .search-keyword-box .dropdown-box select {
  border: none;
  width: 95px;
}
.search-area .search-item .search-keyword-box .search-keyword input.txt {
  border: 0;
  width: 153px;
}
.setting-wrapper {
  width: calc(100% - 339px);
  max-width: 800px;
  color: #767676;
}
.setting-wrapper .button-wrapper {
  margin-top: 10px;
  padding-left: 125px;
}
.setting-wrapper .field-box {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 14px;
}
.setting-wrapper .field-box .label {
  width: 125px;
}
.setting-wrapper .field-box .field,
.setting-wrapper .field-box .val {
  width: calc(100% - 125px);
}
.setting-wrapper .field-box .field.inline-flex {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.setting-wrapper .field-box .field.inline-flex .profile-box {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 75px;
  height: 75px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: "Open Sans", sans-serif;
  font-size: 35px;
  font-weight: 700;
  background-color: #5564ff;
  border-radius: 50%;
  color: #fff;
  line-height: 1;
}

.setting-wrapper .field-box .field.inline-flex .profile-box img {
  border-radius: 50%;
  width: 75px;
  height: 75px;
}

.setting-wrapper .draw-box {
  height: 140px;
}
.sign-draw-box {
  width: 100%;
  height: 140px;
  border: 1px dashed #767676;
  background-color: #fff;
  padding: 5px;
}
.sign-draw-box .sign-draw {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #8c8e96;
  height: 100%;
  background-color: #f4f5f7;
}
.file-dropdown-box {
  margin-top: 32px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 600px;
  height: 160px;
  text-align: center;
  background-color: #fff;
  border: 2px dashed #767676;
  border-radius: 2px;
  background: url("../images/common/icon_cloud.svg") 50% 13px no-repeat #fff;
}
.file-dropdown-box > p {
  width: 100%;
  line-height: 1.8;
}
.file-dropdown-box > p > span {
  color: #adadad;
}
.file-dropdown-box > p .btn {
  margin-top: 3px;
  background-color: #fff !important;
}
.file-dropdown-box > p .btn:hover {
  margin-top: 3px;
  background-color: #f1f7ff !important;
}

.progress-box {
  position: relative;
  margin-top: 40px;
  display: block;
  width: 600px;
  height: 6px;
  border-radius: 6px;
  background: #d2d7dc;
  overflow: hidden;
}
.progress-box span {
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  display: block;
  background: #5564ff;
  -webkit-transition: 3s;
  transition: 3s;
}
.progress-box.load span {
  -webkit-animation: 3s forwards load;
  animation: 3s forwards load;
}
@-webkit-keyframes load {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes load {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.attatch-file .upload-file {
  position: relative;
  margin-top: 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 32px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f4f5f7;
  border: 1px solid #d2d7dc;
  padding-left: 11px;
  padding-right: 40px;
  background-image: url(../images/common/attach.svg);
  padding-left: 29px;
  background-repeat: no-repeat;
  background-position: 3px 50%;
  background-size: 23px;
}
.attatch-file .upload-file p {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.attatch-file .upload-file .btn-del-item {
  position: absolute;
  top: 7px;
  right: 11px;
}
.test-attach-wrapper {
  margin: 0 auto;
  width: 600px;
  min-height: 350px;
  border: 1px dashed #767676;
  background: #fff;
  padding: 45px 100px;
}
.test-attach-wrapper .test-attach-box > p {
  text-align: center;
  font-size: 16px;
}
.test-attach-wrapper .test-attach-box ul {
  margin-top: 50px;
}
.test-attach-wrapper .test-attach-box ul li a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  min-height: 45px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font-size: 14px;
  padding-left: 40px;
  background: url("../images/common/icon_attach_file.svg") 18px 50% no-repeat
    #ebf5ff;
  border: 1px solid #c6dcea;
}
.reg-quality-box {
  width: 380px;
  background-color: #fff;
  border: 1px solid #d2d7dc;
  border-radius: 5px;
  padding: 40px 50px;
  margin: 0 auto;
}
#wrap.full-page-layout {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f4f5f7;
}
#wrap.full-page-layout .full-page-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 35px;
}
#wrap.full-page-layout .full-page-header a.btn-back {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 30px;
  height: 30px;
  background: url("../images/common/icon_fullpage_back.svg") 50% 50% no-repeat;
}
#grade-content .content-body .grade-image-box,
#wrap.full-page-layout .full-page-body {
  margin: 0 auto;
}
#wrap.full-page-layout .full-page-body .reg-quality-wrapper {
  width: 380px;
  margin: 0 auto;
}
#wrap.full-page-layout .full-page-body .tab-wrapper,
#wrap.full-page-layout .full-page-body .table-box {
  width: 700px;
  margin: 0 auto;
  padding: 40px 50px 44px;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #d2d7dc;
}
/* <<- 20220209 ì‹œí—˜ë“±ë¡ í¬ê¸°ì¡°ì •*/
#wrap.full-page-layout .full-page-body .tab-wrapper.full2x,
#wrap.full-page-layout .full-page-body .table-box.full2x {
  width: 1400px;
  margin: 0 auto;
  padding: 40px 50px 44px;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #d2d7dc;
}
#wrap.full-page-layout
  .full-page-body
  .table-box.full2x
  table.fixed-header
  thead
  tr {
  display: table;
  width: calc(100% + 25px);
  /* max-width: calc(800px - 20px); */
  table-layout: fixed;
}

#wrap.full-page-layout .full-page-body th:nth-child(1) {
}
#wrap.full-page-layout
  .full-page-body
  .tab-wrapper.full2x
  table.fixed-header
  tbody
  tr {
  display: table;
  width: 100%;
  max-width: 100%;
  table-layout: fixed;
  overflow-x: hidden;
}
#wrap.full-page-layout
  .full-page-body
  .tab-wrapper.full2x
  table.fixed-header
  tbody,
#wrap.full-page-layout
  .full-page-body
  .table-box.full2x
  table.fixed-header
  tbody {
  display: block;
  position: relative;
  min-height: 460px;
  max-height: 460px;
  overflow-y: scroll;
  overflow-x: hidden;
  border-top: 1px solid #5564ff;
  max-width: calc(1300px);
}
#wrap.full-page-layout .full-page-body .tab-wrapper.full2x th:nth-child(1) {
  width: 300px !important;
}
#wrap.full-page-layout .full-page-body .tab-wrapper.full2x th:nth-child(2) {
  width: 490px !important;
}
#wrap.full-page-layout .full-page-body .tab-wrapper.full2x th:nth-child(3) {
  width: 500px !important;
}
#wrap.full-page-layout .full-page-body .tab-wrapper.full2x th:nth-child(4) {
  width: 210px !important;
}
#wrap.full-page-layout
  .full-page-body
  .tab-wrapper.full2x
  tbody
  tr
  td:nth-child(1) {
  width: 40px !important;
}
#wrap.full-page-layout
  .full-page-body
  .tab-wrapper.full2x
  tbody
  tr
  td:nth-child(2) {
  width: 90px !important;
}
#wrap.full-page-layout
  .full-page-body
  .tab-wrapper.full2x
  tbody
  tr
  td:nth-child(3) {
  width: 230px !important;
}
#wrap.full-page-layout
  .full-page-body
  .tab-wrapper.full2x
  tbody
  tr
  td:nth-child(4) {
  width: 150px !important;
}
#wrap.full-page-layout
  .full-page-body
  .tab-wrapper.full2x
  tbody
  tr
  td:nth-child(5) {
  width: 210px !important;
}

#wrap.full-page-layout
  .full-page-body
  .table-box.full2x
  tbody
  tr
  td:nth-child(1) {
  width: 50px !important;
}
#wrap.full-page-layout
  .full-page-body
  .table-box.full2x
  tbody
  tr
  td:nth-child(2) {
  width: 100px !important;
}
#wrap.full-page-layout
  .full-page-body
  .table-box.full2x
  tbody
  tr
  td:nth-child(3) {
  width: 250px !important;
}
#wrap.full-page-layout
  .full-page-body
  .table-box.full2x
  tbody
  tr
  td:nth-child(4) {
  width: 300px !important;
}
#wrap.full-page-layout
  .full-page-body
  .table-box.full2x
  tbody
  tr
  td:nth-child(5) {
  width: 100px !important;
}
#wrap.full-page-layout .full-page-body .tab-wrapper.full2x + .btn-box,
#wrap.full-page-layout .full-page-body .table-box.full2x + .btn-box {
  width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
/* 20220209 ->>*/

#wrap.full-page-layout .full-page-body .tab-wrapper + .btn-box,
#wrap.full-page-layout .full-page-body .table-box + .btn-box {
  width: 700px;
  margin-left: auto;
  margin-right: auto;
}

#wrap.full-page-layout .full-page-body td:nth-child(3),
#wrap.full-page-layout .full-page-body th:nth-child(3) {
  width: 175px;
}
#wrap.full-page-layout .full-page-body td:nth-child(5),
#wrap.full-page-layout .full-page-body th:nth-child(5) {
  width: 85px;
}
#wrap.full-page-layout .full-page-body td a.btn-del-item,
#wrap.full-page-layout .full-page-body th a.btn-del-item {
  position: relative;
  top: -7px;
  left: 0;
}
#wrap.full-page-layout .full-page-body tbody tr {
  table-layout: fixed;
  overflow-x: hidden;
  /* width: calc(600px - 25px); */
}
#wrap.full-page-layout .full-page-body tbody tr td {
  text-align: left;
  height: 35px;
  padding: 0 50px;
}
#wrap.full-page-layout .full-page-body tbody tr td:nth-child(1) {
  text-align: center;
  padding: 0;
}
#wrap.full-page-layout .full-page-body tbody tr td a.btn.border {
  height: 22px;
  font-size: 12px;
}
#wrap.full-page-layout .full-page-body .step-info {
  position: relative;
  width: 120px;
  height: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto 17px;
}
#wrap.full-page-layout .full-page-body .step-info .rect {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 10px;
  height: 10px;
  background-color: #d2d6dc;
  margin: 0 6px;
  position: relative;
  top: -6px;
  z-index: 1;
}
#wrap.full-page-layout .full-page-body .step-info:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #d2d6dc;
}
#wrap.full-page-layout .full-page-body .page-info {
  text-align: center;
  margin-bottom: 45px;
}
#wrap.full-page-layout .full-page-body .page-info h2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 19px;
  color: #2f2f2f;
  padding-bottom: 10px;
}
#wrap.full-page-layout .full-page-body .btn-box {
  margin-top: 20px;
  text-align: right;
}
#wrap.full-page-layout .full-page-body .btn-box .btn ~ .btn {
  margin-left: 3px;
}
.test-list-wrapper {
  margin-top: 15px;
  width: 100%;
  height: 525px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #e8ebf0;
}
.test-list-wrapper .test-list-box ul li li .tree-item input.txt.code {
  width: 75px;
  height: 25px;
  margin: 0 6px;
}
.test-list-wrapper .test-list-box ul li li .tree-item input.txt.test-name {
  width: 300px;
  height: 25px;
}
.test-list-wrapper + .test-list-desc ul li {
  font-size: 14px;
  color: #7f7f7f;
}
.daterangepicker {
  z-index: 20000;
}
.list-wrapper table thead th {
  height: 32px;
  vertical-align: middle;
  font-size: 13px;
  color: #2f2f2f;
  border-bottom: 1px solid #5564ff;
}
.list-wrapper table tbody td {
  height: 50px;
  vertical-align: middle;
  text-align: center;
  color: #767676;
  border-bottom: 1px solid #e8ebf0;
}
.list-wrapper table tbody td a {
  color: #767676;
  /* display: block; */
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.list-wrapper table tbody td a.reply {
  padding-left: 24px;
  background: url("../images/common/icon_reply.svg") 0 50% no-repeat;
}
.list-wrapper table tbody td.align-left {
  text-align: left;
  padding-left: 10px;
  padding-right: 10px;
}
.grade-layout {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  min-width: 1024px;
  padding-top: 55px;
}
.grade-layout .grade-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 55px;
  border-bottom: 1px solid #d2d7dc;
  padding: 0 0 0 18px;
  background-color: #fff;
}
.grade-layout #grade-container #grade-content-wrap .grade-tab-nav ul,
.grade-layout .grade-header .logo-title-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.grade-layout .grade-header .logo-title-box .logo {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 24px;
  height: 28px;
  margin-right: 10px;
}
.grade-layout .grade-header .logo-title-box p {
  font-size: 18px;
}
.grade-layout .grade-header .grade-util {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.grade-layout .grade-header .grade-util .btn {
  margin-right: 10px;
  height: 32px;
}
.grade-layout .grade-header .grade-util .btn-grade-close {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-left: 1px solid #d2d7dc;
  border-bottom: 1px solid #d2d7dc;
  background: url("../images/common/icon_modal_close.svg") 50% 50% no-repeat
    #f4f5f7;
}
.grade-layout #grade-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: calc(100%);
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.grade-layout #grade-container #grade-rnb {
  width: 370px;
  border-left: 1px solid #d2d7dc;
  background-color: #fff;
  padding: 0 25px;
  color: #333;
  margin-top: 55px;
}
.grade-layout #grade-container #grade-rnb .rnb-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 45px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 16px;
}
.grade-layout #grade-container #grade-rnb .rnb-tab-nav {
  margin-left: -25px;
  margin-right: -25px;
}
.grade-layout #grade-container #grade-rnb .rnb-tab-nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.grade-layout #grade-container #grade-rnb .rnb-tab-nav ul li {
  position: relative;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}
.grade-layout #grade-container #grade-rnb .rnb-tab-nav.remicon ul li {
  flex: 0 0 33.3%;
}

.grade-layout #grade-container #grade-rnb .rnb-tab-nav ul li:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1px;
  height: 15px;
  background-color: #d2d7dc;
}
.grade-layout #grade-container #grade-rnb .rnb-tab-nav ul li a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 45px;
  font-size: 16px;
  color: #adadad;
}
.grade-layout #grade-container #grade-rnb .field-wrapper .field-box {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.grade-layout #grade-container #grade-rnb .field-wrapper .field-box .field {
  width: 220px;
}
.grade-layout #grade-container #grade-rnb .test-item-box {
  margin-top: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 25px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.grade-layout #grade-container #grade-rnb .test-item-box .label {
  font-size: 13px;
  color: #767676;
  width: 100px;
}
.grade-layout #grade-container #grade-rnb .test-item-box .field {
  width: calc(100% - 100px);
  font-size: 14px;
}
.grade-layout
  #grade-container
  #grade-rnb
  .my-sanction-wrapper
  .my-sanction-box
  > p
  span.require,
.grade-layout #grade-container #grade-rnb .test-item-box .field span.fail {
  color: #ea4335;
}
.grade-layout #grade-container #grade-rnb .my-sanction-wrapper > p.title {
  margin-left: -25px;
  margin-right: -25px;
  padding-left: 25px;
  padding-right: 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 40px;
  border-top: 1px solid #d2d7dc;
  border-bottom: 1px solid #d2d7dc;
  font-size: 15px;
}
.grade-layout
  #grade-container
  #grade-rnb
  .my-sanction-wrapper
  .my-sanction-box
  > p {
  font-size: 13px;
  color: #767676;
  padding-bottom: 8px;
}
.grade-layout
  #grade-container
  #grade-rnb
  .my-sanction-wrapper
  .my-sanction-box
  .my-sanction-blue-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid #c6dcea;
  background-color: #ebf5ff;
  border-radius: 2px;
  padding: 5px;
}
.grade-layout
  #grade-container
  #grade-rnb
  .my-sanction-wrapper
  .my-sanction-box
  .my-sanction-blue-box
  > a {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  height: 65px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #c6dcea;
  border-radius: 2px;
  padding: 0 10px;
  background: url("../images/common/icon_rbn_sign.svg") 99% 50% no-repeat;
}
.grade-layout
  #grade-container
  #grade-rnb
  .my-sanction-wrapper
  .my-sanction-box
  .my-sanction-blue-box
  > a
  > span {
  display: block;
  color: #1e82af;
}
.grade-layout
  #grade-container
  #grade-rnb
  .my-sanction-wrapper
  .my-sanction-box
  .my-sanction-blue-box
  > a
  > span:first-child {
  padding-top: 5px;
  font-size: 16px;
}
.grade-layout
  #grade-container
  #grade-rnb
  .my-sanction-wrapper
  .my-sanction-box
  .my-sanction-blue-box
  > a
  > span:last-child {
  padding-bottom: 5px;
  font-size: 12px;
}
.grade-layout
  #grade-container
  #grade-rnb
  .my-sanction-wrapper
  .my-sanction-box
  .my-sanction-blue-box
  label:first-child {
  margin-right: 30px;
}
.grade-layout
  #grade-container
  #grade-rnb
  .my-sanction-wrapper
  .my-sanction-box
  .my-sanction-blue-box
  label
  span {
  margin-left: 5px;
  font-size: 14px;
}
.grade-layout
  #grade-container
  #grade-rnb
  .my-sanction-wrapper
  .my-sanction-box
  textarea {
  width: 100%;
  height: 100px;
  border: 1px solid #d2d7dc;
  font-size: 14px;
}
.grade-layout #grade-container #grade-rnb .sanction-list-wrapper .btn-box {
  text-align: center;
}
.grade-layout #grade-container #grade-rnb .sanction-list-wrapper .btn-box > a {
  margin-top: 15px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 150px;
  height: 33px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #d2d7dc;
  background: #fff;
  color: #333;
  border-radius: 32px;
  font-size: 13px;
}
.grade-layout
  #grade-container
  #grade-rnb
  .sanction-list-wrapper
  .btn-box:hover
  > a {
  background-color: #e9f2ff;
}
.grade-layout #grade-container #grade-rnb .sanction-list-wrapper > a {
  float: right;
  margin-top: 15px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 150px;
  height: 33px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #d2d7dc;
  background: #fff;
  color: #333;
  border-radius: 32px;
  font-size: 13px;
}
.grade-layout #grade-container #grade-rnb .sanction-list-wrapper .btn-box > a i,
.grade-layout #grade-container #grade-rnb .sanction-list-wrapper > a i {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 12px;
  height: 12px;
  background: url("../images/common/icon_sanction_plus.svg") no-repeat;
  margin-right: 7px;
}
.grade-layout
  #grade-container
  #grade-rnb
  .sanction-list-wrapper
  .sanction-item-box {
  position: relative;
  margin-top: 10px;
  border: 1px solid #d2d7dc;
  background-color: #fff;
  color: #333;
  font-size: 13px;
  padding: 15px 10px;
}
.grade-layout
  #grade-container
  #grade-rnb
  .sanction-list-wrapper
  .sanction-item-box:after {
  content: "";
  position: absolute;
  top: 20px;
  left: 10px;
  width: 18px;
  height: 18px;
  background: url("../images/common/icon_sanction_wait.svg") no-repeat;
}
.grade-layout
  #grade-container
  #grade-rnb
  .sanction-list-wrapper
  .sanction-item-box.done:after {
  background-image: url("../images/common/icon_sanction_done.svg");
}
.grade-layout
  #grade-container
  #grade-rnb
  .sanction-list-wrapper
  .sanction-item-box
  .sanction-header {
  position: relative;
  padding-left: 30px;
  min-height: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.grade-layout
  #grade-container
  #grade-rnb
  .sanction-list-wrapper
  .sanction-item-box
  .sanction-header
  > p:first-child {
  font-size: 13px;
  color: #767676;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 2px;
}
.grade-layout
  #grade-container
  #grade-rnb
  .sanction-list-wrapper
  .sanction-item-box
  .sanction-header
  > p.charge {
  font-size: 16px;
  color: #333;
}
.grade-layout
  #grade-container
  #grade-rnb
  .sanction-list-wrapper
  .sanction-item-box
  .sanction-header
  .status {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 75px;
  text-align: center;
  font-size: 12px;
  border: 1px solid #d2d7dc;
}
.grade-layout
  #grade-container
  #grade-rnb
  .sanction-list-wrapper
  .sanction-item-box
  .sanction-body {
  border: 1px solid #e8ebf0;
  background: rgba(244, 245, 247, 0.5);
  color: #767676;
  margin-top: 14px;
  font-size: 13px;
  padding: 10px;
}
.grade-layout
  #grade-container
  #grade-rnb
  .sanction-list-wrapper
  .sanction-item-box.default
  .sanction-header {
  padding-left: 0;
}
.grade-layout
  #grade-container
  #grade-rnb
  .sanction-list-wrapper
  .sanction-item-box.default
  + .btn-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.grade-layout #grade-container #grade-rnb .rnb-desc ul li {
  position: relative;
  padding-left: 10px;
  color: #333;
}
.grade-layout #grade-container #grade-rnb .rnb-desc ul li:after {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 3px;
  height: 3px;
  background-color: #333;
}
.grade-layout #grade-container #grade-content-wrap {
  width: calc(100% - 370px);
  background-color: #f4f5f7;
  margin-top: 55px;
}
.grade-layout #grade-container #grade-content-wrap .grade-tab-nav ul li {
  width: 20%;
  border-bottom: 1px solid #d2d7dc;
  border-right: 1px solid #d2d7dc;
}
.grade-layout
  #grade-container
  #grade-content-wrap
  .grade-tab-nav
  ul
  li:first-child {
  width: 40%;
}
.grade-layout
  #grade-container
  #grade-content-wrap
  .grade-tab-nav
  ul
  li:first-child.rnb-tab-60 {
  width: 60%;
}
.grade-layout
  #grade-container
  #grade-content-wrap
  .grade-tab-nav
  ul
  li:last-child {
  border-right: 0px solid #d2d7dc;
}
.grade-layout #grade-container #grade-content-wrap .grade-tab-nav ul li a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  height: 45px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 16px;
  color: #adadad;
  padding-bottom: 2px;
}
/* Btype */
.grade-layout #grade-container #grade-content-wrap .grade-tab-nav.btype ul li {
  width: 30%;
  border-bottom: 1px solid #d2d7dc;
  border-right: 1px solid #d2d7dc;
}
.grade-layout
  #grade-container
  #grade-content-wrap
  .grade-tab-nav.btype
  ul
  li:first-child {
  width: 40%;
}
.grade-layout
  #grade-container
  #grade-content-wrap
  .grade-tab-nav.btype
  ul
  li:last-child {
  border-right: 0px solid #d2d7dc;
}
.grade-layout
  #grade-container
  #grade-content-wrap
  .grade-tab-nav.btype
  ul
  li
  a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  height: 45px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 16px;
  color: #adadad;
  padding-bottom: 2px;
}
/* Btype */
.grade-layout #grade-container #grade-content-wrap #grade-content {
  padding: 10px 25px;
}
.grade-layout
  #grade-container
  #grade-content-wrap
  #grade-content
  .content-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 10px;
}
.grade-layout
  #grade-container
  #grade-content-wrap
  #grade-content
  .content-header
  a,
.grade-layout
  #grade-container
  #grade-content-wrap
  #grade-content
  .content-header
  span {
  font-size: 13px;
  color: #333;
  background-color: transparent;
}

.grade-layout
  #grade-container
  #grade-content-wrap
  #grade-content
  .content-header
  > span:first-child {
  position: relative;
  padding-left: 10px;
}
.grade-layout
  #grade-container
  #grade-content-wrap
  #grade-content
  .content-header
  > span:first-child:after {
  content: "";
  position: absolute;
  top: 55%;
  left: 0;
  width: 4px;
  height: 4px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #333;
  border-radius: 50%;
}
.grade-layout
  #grade-container
  #grade-content-wrap
  #grade-content
  .content-header
  .dropdown-grade-nav
  a.btn {
  background-color: #fff;
}
.grade-layout
  #grade-container
  #grade-content-wrap
  #grade-content
  .content-header
  .dropdown-grade-nav
  a.btn:hover {
  background-color: #e9f2ff;
}
.grade-layout
  #grade-container
  #grade-content-wrap
  #grade-content
  .content-header
  .dropdown-grade-nav
  .btn-box
  input {
  height: 10px;
  border: 1px solid #d2d7dc;
  margin-left: 4px;
}
.grade-layout
  #grade-container
  #grade-content-wrap
  #grade-content
  .content-header
  .dropdown-grade-nav
  .drop-button-nav {
  display: none;
  position: absolute;
  top: 28px;
  left: 0;
  width: 100%;
  background-color: #fff;
  border: 1px solid #797979;
}
#grade-content .content-body .file-dropdown-box,
#grade-content .content-body .progress-box {
  margin-left: auto;
  margin-right: auto;
}
#grade-content .content-body .file-dropdown-box {
  position: relative;
  height: 350px;
  background-position: 50% 70px;
  background-size: 91px 60px;
}
#grade-content .content-body .file-dropdown-box p {
  padding-top: 50px;
  line-height: 20px;
}
#grade-content .content-body .file-dropdown-box p.caution {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  padding-top: 0;
  font-size: 13px;
  color: #ea4335;
  line-height: 20px;
}
#grade-content .content-body .grade-image-box {
  /*  height: calc(100vh - 180px);
    border: 1px solid #d2d7dc; */
}
#grade-content .content-body .grade-image-box img {
  height: 100%;
  margin: 0 auto;
}
#grade-content .content-body .image-regist-box {
  position: relative;
  width: 860px;
  margin: 6px auto 40px;
  min-height: 1020px;
  border: 1px solid #d2d6dc;
  background-color: #fff;
  padding: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#grade-content .content-body .image-regist-box .image-regist-item {
  position: relative;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-height: 50%;
  min-height: 50%;
}
#grade-content
  .content-body
  .image-regist-box
  .image-regist-item
  .image-upload-box {
  position: relative;
  border: 1px dashed #767676;
  background-color: #f4f5f7;
  border-radius: 2px;
  height: 385px;
}
#grade-content
  .content-body
  .image-regist-box
  .image-regist-item
  .image-upload-box
  img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
#grade-content
  .content-body
  .image-regist-box
  .image-regist-item
  .image-upload-box
  .image-upload-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background: url("../images/common/icon_photo_close.svg") 50% 50% no-repeat
    rgba(0, 0, 0, 0.85);
}
#grade-content
  .content-body
  .image-regist-box
  .image-regist-item
  .image-upload-box
  .image-upload-close
  span {
  display: none;
}
#grade-content
  .content-body
  .image-regist-box
  .image-regist-item
  .image-upload-box
  .btn-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#grade-content
  .content-body
  .image-regist-box
  .image-regist-item
  .image-upload-box
  .btn-wrapper
  .btn-upload-rect {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 120px;
  height: 90px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #fff;
  border: 1px solid #d2d7dc;
  text-align: center;
  font-size: 13px;
  color: #6b6c73;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 15px;
}
#grade-content
  .content-body
  .image-regist-box
  .image-regist-item
  .image-upload-box
  .btn-wrapper
  .btn-upload-rect
  span {
  display: block;
  text-align: center;
  width: 100%;
}
#grade-content
  .content-body
  .image-regist-box
  .image-regist-item
  .image-upload-box
  .btn-wrapper
  .btn-upload-rect
  i {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
#grade-content
  .content-body
  .image-regist-box
  .image-regist-item
  .image-upload-box
  .btn-wrapper
  .btn-upload-rect.my-pc
  i {
  background-image: url("../images/common/icon_arrow_up.svg");
}
#grade-content
  .content-body
  .image-regist-box
  .image-regist-item
  .image-upload-box
  .btn-wrapper
  .btn-upload-rect.my-photo-list
  i {
  background-image: url("../images/common/icon_photo_gray.svg");
}
#grade-content
  .content-body
  .image-regist-box
  .image-regist-item
  .image-field-box
  .field-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#grade-content
  .content-body
  .image-regist-box
  .image-regist-item
  .image-field-box
  .field-wrapper
  .field-box {
  display: table;
  width: calc(50% - 10px);
  table-layout: fixed;
  padding: 0;
  margin: 0 0 3px;
}
#grade-content
  .content-body
  .image-regist-box
  .image-regist-item
  .image-field-box
  .field-wrapper
  .field-box.wide {
  display: table;
  width: 100%;
  table-layout: fixed;
  padding: 0;
  margin: 0 0 3px;
}

#grade-content
  .content-body
  .image-regist-box
  .image-regist-item
  .image-field-box
  .field-wrapper
  .field-box:nth-child(2),
#grade-content
  .content-body
  .image-regist-box
  .image-regist-item
  .image-field-box
  .field-wrapper
  .field-box:nth-child(4) {
  margin-left: 20px;
}
#grade-content
  .content-body
  .image-regist-box
  .image-regist-item
  .image-field-box
  .field-wrapper
  .field-box
  > div {
  display: table-cell;
  vertical-align: middle;
  height: 30px;
}
#grade-content
  .content-body
  .image-regist-box
  .image-regist-item
  .image-field-box
  .field-wrapper
  .field-box
  .field {
  width: calc(100% - 80px);
}
#grade-content
  .content-body
  .image-regist-box
  .image-regist-item
  .image-field-box
  .field-wrapper
  .field-box
  .field
  input {
  padding-top: 4px;
  padding-bottom: 4px;
}
#grade-content .content-body .image-regist-box.image-2x2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
#grade-content
  .content-body
  .image-regist-box.image-2x2
  > div.image-regist-item {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 400px;
  -ms-flex: 0 0 400px;
  flex: 0 0 400px;
  margin-top: 0;
}
#grade-content
  .content-body
  .image-regist-box.image-2x2
  > div.image-regist-item:first-child {
  margin-bottom: 15px;
}
#grade-content
  .content-body
  .image-regist-box.image-2x2
  > div.image-regist-item
  .image-upload-box
  .btn-wrapper {
  left: 0;
  width: 100%;
  text-align: center;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
#grade-content
  .content-body
  .image-regist-box.image-2x2
  > div.image-regist-item
  .image-upload-box
  .btn-wrapper
  > a {
  margin: 0 2px;
}
#grade-content .content-body .test-result-wrapper {
  width: 860px;
  min-height: 1020px;
  margin: 0 auto;
  padding: 10px 0 16px;
  border: 1px solid #d2d6dc;
  background-color: #fff;
}
#grade-content .content-body .test-result-wrapper img {
  width: 795px;
  max-width: auto;
  max-width: initial;
  margin: 0 auto;
}
#grade-content .content-body .grade-inner-box {
  width: 600px;
  margin: 0 auto;
}

.underline-title {
  text-decoration: underline;
  font-weight: bold;
  color: #443737 !important;
}
.swiper-slide {
  margin: auto;
}
.form-control.reportrange-text {
  padding: 7px 16px 7px 1px !important;
  background: url(../images/common/icon_calendar.svg) 7px 50% no-repeat #fff !important;
}
.vue-daterange-picker.date-range div span {
  left: 7px;
  position: relative;
  border: 1px solid #d2d7dc;
  font-size: 14px;
  padding: 1px 0 0px 11px;
  color: #767676;
  border-radius: 2px;
  border: 0px !important;
}
.daterangepicker .drp-buttons .btn {
  padding: 0px 8px !important;
}

.loading-process {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  margin: 0 0 2em;
  width: 100%;
  height: 100%;
  text-align: center;
  background: #151515;
  padding: 1em;
  margin: 0 auto 1em;
  display: inline-block;
  vertical-align: top;
  opacity: 0.8;
}
body {
  background: #333333;
}
@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
  }
}

@-moz-keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
  }
}

@-webkit-keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
  }
}

@-o-keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
  }
}

@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
  }
}

@-moz-keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
  }
}

@-webkit-keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
  }
}

@-o-keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
  }
}

@keyframes loading-text-opacity {
  0% {
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-moz-keyframes loading-text-opacity {
  0% {
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes loading-text-opacity {
  0% {
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-o-keyframes loading-text-opacity {
  0% {
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.loading {
  height: 100px;
  position: relative;
  width: 100px;
  border-radius: 100%;
}

.loading {
  border: 2px solid transparent;
  border-color: transparent #fff transparent #fff;
  -moz-animation: rotate-loading 1.5s linear 0s infinite normal;
  -moz-transform-origin: 50% 50%;
  -o-animation: rotate-loading 1.5s linear 0s infinite normal;
  -o-transform-origin: 50% 50%;
  -webkit-animation: rotate-loading 1.5s linear 0s infinite normal;
  -webkit-transform-origin: 50% 50%;
  animation: rotate-loading 1.5s linear 0s infinite normal;
  transform-origin: 50% 50%;

  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
}

.loading {
  border-color: transparent #3568e4 transparent #e45635;
}

.loading {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.loading-text {
  -moz-animation: loading-text-opacity 2s linear 0s infinite normal;
  -o-animation: loading-text-opacity 2s linear 0s infinite normal;
  -webkit-animation: loading-text-opacity 2s linear 0s infinite normal;
  animation: loading-text-opacity 2s linear 0s infinite normal;
  color: #ffffff;
  font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont,
    "Malgun Gothic", helvetica, "Apple SD Gothic Neo", sans-serif;
  font-size: 14px;
  font-weight: bold;
  margin-top: 45px;
  opacity: 0;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  width: 100px;
  display: inline-block;
  position: absolute;
  top: 49.5%;
  left: 50%;
}

.answer-area {
  white-space: pre-line;
}

.single-date-area {
  min-width: 100% !important;
}
.statistics-area a {
  cursor: text;
}

.save-btn-area {
  width: calc(100% - 339px);
  max-width: 800px;
}

tr.no-data {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100% !important;
  height: 100px;
}
tr.no-data2 {
  height: 100px;
}
.no-data3 {
  height: 100px;
  text-align: center;
  border-top: 1px solid #d2d7dc;
}
.no-data3 p {
  position: relative;
  top: 39px;
}

tr.no-data td {
  border-top: 1px solid #5564ff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100% !important;
  height: 100px !important;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
tr.no-data td p {
  width: 100% !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#content-wrapper.dashboard {
  left: 60px !important;
  width: calc(100% - 60px) !important;
}

/* mobile */

:root {
  --sat: env(safe-area-inset-top, constant(safe-area-inset-top));
  --sar: env(safe-area-inset-right, constant(safe-area-inset-right));
  --sab: env(safe-area-inset-bottom, constant(safe-area-inset-bottom));
  --sal: env(safe-area-inset-left, constant(safe-area-inset-left));
}

#wrap.mw .header.header-photo,
#wrap.mw header.header.header-sub-type.header-M5 {
  height: 55px;
}

#wrap.mw .header.header-sub-type {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 105px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #fff;
  padding-left: calc(var(--sal));
  padding-right: calc(var(--sar));
}

#wrap.mw .header .header-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 55px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #fff;
  padding-left: calc(var(--sal));
  padding-right: calc(var(--sar));
}

#wrap.mw .header .header-container .btn-box {
  position: relative;
  z-index: 10;
}

#wrap.mw .btn-box {
  padding: 20px 0;
  text-align: center;
}

#wrap.mw .header.header-sub-type .header-title {
  position: absolute;
  top: 0;
  right: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 18px;
}

#wrap.mw .header .header-container .btn-box > a {
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 34px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-color: #fff;
}

#wrap.mw .header.header-sub-type .btn-back {
  margin-left: 7px;
  background-image: url(../images/common/icon_back.svg);
}

#wrap.mw .m5-tab-wrapper .m5-tab-nav {
  position: fixed;
  top: 50px;
  left: 0;
  width: 100%;
  height: 50px;
  z-index: 999;
  padding: 0 15px;
  border-bottom: 1px solid #797979;
  background-color: #fff;
}

#wrap.mw .m5-tab-wrapper .m5-tab-nav ul li {
  padding: 0 15px 0 5px;
  /*    width: 25%;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 25%;
    -ms-flex: 1 1 25%;
    flex: 1 1 25%;
*/
}
#wrap.mw .m5-tab-wrapper .m5-tab-nav ul li a {
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  /*	width: 100px;
	width: 100%; */
  height: 50px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 16px;
  color: #adadad;
}

#wrap.mw .m5-tab-wrapper .m5-tab-nav ul li a:after {
  content: "";
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #5564ff;
}

#wrap.mw .m5-tab-wrapper .m5-tab-nav ul li.on a {
  color: #2f2f2f;
}

#wrap.mw
  .header.header-sub-type
  .header-search-container.on
  .keyword-search-box,
#wrap.mw .m5-tab-wrapper .m5-tab-nav ul,
#wrap.mw
  .modal-popup-wrapper.fulltype
  .modal-popup
  .modal-header.fixed-header
  .modal-tab-nav
  ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

#wrap.mw .m5-tab-wrapper .m5-tab-nav ul li a:after {
  content: "";
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #5564ff;
}

#wrap.mw .m5-tab-wrapper .m5-tab-content {
  padding-top: 55px;
  display: none;
}

#wrap.mw .gnb-wrapper.is-on,
#wrap.mw
  .m5-tab-wrapper
  .m5-tab-content
  .upload-wrapper
  .upload-list-box
  ul
  li
  a,
#wrap.mw .m5-tab-wrapper .m5-tab-content.on,
#wrap.mw .m5-tab-wrapper .m5-tab-nav ul li.on a:after,
#wrap.mw
  .modal-popup-wrapper.fulltype
  .modal-popup
  .modal-body
  .modal-tab-content.on,
#wrap.mw .modal-popup-wrapper.on,
html.off #wrap.mw .regist-dimmed {
  display: block;
}

#wrap.mw .btn-wrapper.sticky-btn-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  padding-bottom: var(--sab);
  width: 100%;
}

#wrap.mw .btn-wrapper.sticky-btn-wrapper a.btn {
  border-radius: 0;
}

#wrap.mw .btn-wrapper.sticky-btn-wrapper a.btn.reject {
  background-color: #ff6670;
  color: #fff;
}

#wrap.mw .btn.btn-border {
  border: 1px solid #d2d7dc;
  background-color: #fff;
  height: 35px;
  border-radius: 35px;
  color: #6b6c73;
  width: auto;
  padding: 0 15px;
}

#wrap.mw .btn-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top: 1px solid #e8ebf0;
}

#wrap.mw .btn-wrapper .btn,
#wrap.mw
  .modal-popup-wrapper.fulltype
  .modal-popup
  .modal-body
  .form-wrapper.confirm-line-form
  .field-box
  .field
  :nth-child(2) {
  width: 50%;
}

#wrap.mw .btn {
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  background-color: #5564ff;
  width: 100%;
  height: 50px;
  font-size: 15px;
  border-radius: 2px;
}

#wrap.mw .btn-wrapper .btn:first-child:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #fff;
}

html body #wrap.mw {
  position: relative;
  font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont,
    "Malgun Gothic", helvetica, "Apple SD Gothic Neo", sans-serif;
  background: #fff;
  color: #2f2f2f;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: -0.3px;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

#wrap.mw .field-box {
  margin-top: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  align-items: normal;
}

#wrap.mw .header.header-sub-type + #content-wrap #contents {
  padding-top: 105px !important;
  padding-left: 15px;
  padding-right: 15px;
}

#wrap.mw header.header.header-sub-type.header-M5 + #content-wrap #contents {
  padding-top: calc(var(--sat) + 55px) !important;
}

#wrap.mw .m5-tab-wrapper .m5-tab-content .form-wrapper,
#wrap.mw .m5-tab-wrapper .m5-tab-content .photo-layout-wrapper {
  padding-bottom: 81px;
}

#wrap.mw .m5-tab-wrapper .m5-tab-content .form-wrapper .field.cnt-2 input.txt {
  width: 60%;
}

#wrap.mw
  .m5-tab-wrapper
  .m5-tab-content
  .form-wrapper
  .field.cnt-2
  input.txt:first-child {
  margin-right: 10px;
  width: calc(40% - 10px);
}

#wrap.mw input.txt {
  font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont,
    "Malgun Gothic", helvetica, "Apple SD Gothic Neo", sans-serif;
  border: 1px solid #d2d7dc;
  border-radius: 2px;
  font-size: 14px;
  padding: 11px 10px 12px;
  width: 100%;
  background-color: #fff;
}

#wrap.mw input.txt.blue {
  background-color: #e9f2ff !important;
  color: #2f2f2f !important;
}

#wrap.mw .pass-fail-rdo {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  margin-top: 11px;
}

#wrap.mw .pass-fail-rdo > label {
  position: relative;
  width: 50%;
  font-size: 16px;
}

#wrap.mw .pass-fail-rdo > label span {
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  border: 1px solid #d2d7dc;
  font-size: 16px;
}

#wrap.mw .pass-fail-rdo > label + label span {
  border-left: none;
}

#wrap.mw .pass-fail-rdo > label input.pass:checked + span {
  color: #5564ff;
  border-color: #5564ff;
}

#wrap.mw .pass-fail-rdo > label input.fail:checked + span {
  position: relative;
  left: -1px;
  color: #ff6670;
  border: 1px solid #ff6670;
}

#wrap.mw .pass-fail-rdo > label input.rdo,
#wrap.mw label input.chk,
#wrap.mw label input.rdo {
  position: absolute;
  top: 0;
  left: 0;
}

#wrap.mw label {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

#wrap.mw .pass-fail-rdo > label span:after,
.btn-wrapper .btn.full:first-child:after,
.modal-popup-wrapper.fulltype .modal-popup .btn-wrapper a.btn:after,
.modal-popup-wrapper.fulltype .modal-popup .modal-body .modal-tab-content {
  display: none;
}

#wrap.mw .modal-popup-wrapper .modal-inner {
  width: 100%;
  padding: 24px 20px;
}

#wrap.mw .modal-popup-wrapper .modal-inner .radio-group-list label {
  position: relative;
  display: block;
  font-size: 15px;
}

#wrap.mw .modal-popup-wrapper .modal-inner .radio-group-list label input {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

#wrap.mw .modal-popup-wrapper .modal-inner .radio-group-list li,
.modal-popup-wrapper.fulltype
  .modal-popup
  .modal-body
  .form-wrapper.confirm-line-form
  + .save-template-box,
.modal-popup-wrapper.fulltype .modal-popup .modal-body .template-box {
  padding-top: 20px;
}

#wrap.mw .modal-popup-wrapper .modal-inner .radio-group-list li:first-child {
  padding-top: 0;
}

#wrap.mw .modal-popup-wrapper.fulltype {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
}

#wrap.mw .modal-popup-wrapper.fulltype .modal-popup {
  position: static;
  -webkit-transform: translate(0);
  transform: translate(0);
  width: 100%;
  min-height: 100%;
}

#wrap.mw .modal-popup-wrapper.fulltype .modal-popup .modal-header.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  display: block;
  padding: 0;
}

#wrap.mw
  .modal-popup-wrapper.fulltype
  .modal-popup
  .modal-header.fixed-header
  .modal-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 55px;
  position: relative;
}

#wrap.mw
  .modal-popup-wrapper.fulltype
  .modal-popup
  .modal-header.fixed-header
  .modal-title
  a.btn-modal-close {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 48px;
  height: 55px;
  background: url(../images/common/icon_modal_close.svg) 50% 50% no-repeat;
}

#wrap.mw
  .modal-popup-wrapper.fulltype
  .modal-popup
  .modal-header.fixed-header
  .modal-title
  .title-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 18px;
  color: #333;
  font-weight: 500;
  letter-spacing: -0.5px;
}

#wrap.mw
  .modal-popup-wrapper.fulltype
  .modal-popup
  .modal-header.fixed-header
  .modal-tab-nav {
  border-bottom: 1px solid #d2d6dc;
}

#wrap.mw
  .modal-popup-wrapper.fulltype
  .modal-popup
  .modal-header.fixed-header
  .modal-tab-nav
  ul
  li {
  width: 50%;
  -webkit-flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}

#wrap.mw
  .modal-popup-wrapper.fulltype
  .modal-popup
  .modal-header.fixed-header
  .modal-tab-nav
  ul
  li
  a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 55px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 16px;
  color: #2f2f2f;
  font-weight: 500;
  padding: 0 15px;
}

#wrap.mw
  .modal-popup-wrapper.fulltype
  .modal-popup
  .modal-header.fixed-header
  .modal-tab-nav
  ul
  li
  a
  span {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 55px;
  width: 100%;
}

#wrap.mw
  .modal-popup-wrapper.fulltype
  .modal-popup
  .modal-header.fixed-header
  .modal-tab-nav
  ul
  li.on
  a
  span:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #5564ff;
}

#wrap.mw .modal-popup-wrapper.fulltype .modal-popup .modal-body {
  display: block;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  padding: 110px 35px 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
  max-height: calc(100vh - 0px);
  overflow-y: auto;
}

#wrap.mw
  .modal-popup-wrapper.fulltype
  .modal-popup
  .modal-body
  .form-wrapper.confirm-line-form {
  padding-bottom: 30px;
  border-bottom: 1px solid #e8ebf0;
}

#wrap.mw
  .modal-popup-wrapper.fulltype
  .modal-popup
  .modal-body
  .form-wrapper.confirm-line-form
  .field-box
  .field {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#wrap.mw
  .modal-popup-wrapper.fulltype
  .modal-popup
  .modal-body
  .form-wrapper.confirm-line-form
  .field-box
  .field
  :nth-child(1) {
  width: 30%;
}

#wrap.mw
  .modal-popup-wrapper.fulltype
  .modal-popup
  .modal-body
  .form-wrapper.confirm-line-form
  .field-box
  .field
  a.btn-add-line,
.modal-popup-wrapper.fulltype
  .modal-popup
  .modal-body
  .form-wrapper.confirm-line-form
  .field-box
  .field
  a.btn-del-line {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 2px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

#wrap.mw
  .modal-popup-wrapper.fulltype
  .modal-popup
  .modal-body
  .form-wrapper.confirm-line-form
  .field-box
  .field
  a.btn-add-line {
  border: 1px solid #5564ff;
  background-image: url(../images/common/icon_add_line.svg);
}

#wrap.mw
  .modal-popup-wrapper.fulltype
  .modal-popup
  .modal-body
  .form-wrapper.confirm-line-form
  .field-box
  .field
  a.btn-del-line {
  border: 1px solid #ff6670;
  background-image: url(../images/common/icon_del_line.svg);
}

#wrap.mw
  .modal-popup-wrapper.fulltype
  .modal-popup
  .modal-body
  .form-wrapper.confirm-line-form
  + .save-template-box
  label {
  font-size: 15px;
  font-weight: 500;
  color: #5564ff;
}

#wrap.mw
  .modal-popup-wrapper.fulltype
  .modal-popup
  .modal-body
  .template-box
  .template-inbox {
  margin-top: 6px;
  border: 1px solid #d2d7dc;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 9px 15px;
}

#wrap.mw
  .modal-popup-wrapper.fulltype
  .modal-popup
  .modal-body
  .template-box
  .template-inbox
  .info-box {
  width: calc(100% - 45px);
  padding-right: 15px;
  border-right: 1px solid #e8ebf0;
}

#wrap.mw
  .modal-popup-wrapper.fulltype
  .modal-popup
  .modal-body
  .template-box
  .template-inbox
  .info-box
  ul
  li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#wrap.mw
  .modal-popup-wrapper.fulltype
  .modal-popup
  .modal-body
  .template-box
  .template-inbox
  .info-btn-box {
  padding-left: 14px;
}

#wrap.mw
  .modal-popup-wrapper.fulltype
  .modal-popup
  .modal-body
  .template-box
  .template-inbox
  .info-btn-box
  a.btn-del-template {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 30px;
  height: 30px;
  border-radius: 2px;
  border: 1px solid #e8ebf0;
  background: url(../images/common/icon_trash.svg) 50% 50% no-repeat;
}

#wrap.mw .modal-popup-wrapper.fulltype .modal-popup .btn-wrapper {
  border: none;
  padding: 30px 0;
}

#wrap.mw .modal-popup-wrapper.fulltype .modal-popup .btn-wrapper a.btn {
  width: 100%;
  background-color: #5564ff;
  color: #fff;
  font-size: 15px;
  border-radius: 2px;
}

#wrap.mw .modal-popup-wrapper.modal-m521 .sign-draw-msg {
  padding: 25px 0;
  text-align: center;
}

#wrap.mw .modal-popup-wrapper.modal-m521 .sign-draw-box {
  margin: 0 -15px;
  height: 265px;
  padding: 8px;
  border-radius: 2px;
  border: 1px dashed #767676;
}

#wrap.mw .modal-popup-wrapper.modal-m521 .sign-draw-box .sign-draw-inner {
  background-color: #f4f5f7;
  min-height: 200px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#wrap.mw .modal-popup-wrapper.modal-m521 .sign-draw-box .sign-draw-inner img {
  width: auto;
  max-height: 84px;
}

#wrap.mw .modal-popup-wrapper.modal-m521 .sign-draw-box .sign-btn-box {
  margin-bottom: 10px;
}

#wrap.mw .modal-popup-wrapper.modal-m521 .sign-draw-box .sign-btn-box a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 35px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 100px;
  border: 1px solid #d2d7dc;
  border-radius: 35px;
  color: #6b6c73;
}

#wrap.mw .modal-popup-wrapper.modal-m521 .sign-draw-box .sign-btn-box a i {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 7px;
}

#wrap.mw
  .modal-popup-wrapper.modal-m521
  .sign-draw-box
  .sign-btn-box
  a.btn-reset
  i {
  width: 15px;
  height: 17px;
  background-image: url(../images/common/icon_reset.svg);
}

#wrap.mw
  .modal-popup-wrapper.modal-m521
  .sign-draw-box
  .sign-btn-box
  a.btn-upload
  i {
  width: 16px;
  height: 16px;
  background-image: url(../images/common/icon_upload.svg);
}

#wrap.mw
  .modal-popup-wrapper.modal-m531_1
  .modal-popup
  .modal-body
  .modal-title,
.modal-popup-wrapper.modal-m531_2 .modal-popup .modal-body .modal-title {
  font-size: 20px;
  color: #2f2f2f;
  padding-bottom: 40px;
  text-align: center;
}

#wrap.mw
  .modal-popup-wrapper.modal-m531_1
  .modal-popup
  .modal-body
  .field-box
  textarea,
.modal-popup-wrapper.modal-m531_2 .modal-popup .modal-body .field-box textarea {
  width: 100%;
  height: 250px;
  border: 1px solid #d2d7dc;
  font-size: 14px;
  padding: 4px 8px;
}

#wrap.mw .field-box + .field-box,
#wrap.mw .item-group + .item-group {
  padding-top: 0px;
}

#wrap.mw .m5-tab-wrapper .m5-tab-content .form-wrapper .add-btn-box {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 45px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 30px;
}

#wrap.mw .m5-tab-wrapper .m5-tab-content .form-wrapper .add-btn-box:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #5564ff;
}

#wrap.mw
  .m5-tab-wrapper
  .m5-tab-content
  .form-wrapper
  .add-btn-box
  a.setting-line {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 180px;
  height: 45px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 25px;
  border: 1px solid #5564ff;
  background-color: #fff;
  color: #5564ff;
  font-size: 15px;
}

#wrap.mw
  .m5-tab-wrapper
  .m5-tab-content
  .form-wrapper
  .add-btn-box
  a.setting-line
  i {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 18px;
  height: 18px;
  margin-right: 5px;
  background: url(../images/common/icon_setting_line.svg) no-repeat;
}

#wrap.mw .m5-tab-wrapper .m5-tab-content .form-wrapper,
#wrap.mw .m5-tab-wrapper .m5-tab-content .photo-layout-wrapper {
  padding-bottom: 81px;
}

#wrap.mw
  .m5-tab-wrapper
  .m5-tab-content
  .photo-layout-wrapper
  .select-photo-layout {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 15px;
}

#wrap.mw
  .m5-tab-wrapper
  .m5-tab-content
  .photo-layout-wrapper
  .select-photo-layout
  span {
  font-size: 14px;
  color: #767676;
  width: calc(100% - 228px);
}

#wrap.mw
  .m5-tab-wrapper
  .m5-tab-content
  .photo-layout-wrapper
  .select-photo-layout
  .sel-box
  select {
  min-width: 100px;
}

#wrap.mw
  .m5-tab-wrapper
  .m5-tab-content
  .photo-layout-wrapper
  .photo-layout-box {
  border: 1px solid #d2d7dc;
}

#wrap.mw
  .m5-tab-wrapper
  .m5-tab-content
  .photo-layout-wrapper
  .photo-layout-box
  .photo-box {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 52.9411%;
  background-color: #f4f5f7;
}

#wrap.mw
  .m5-tab-wrapper
  .m5-tab-content
  .photo-layout-wrapper
  .photo-layout-box
  .photo-box
  img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  width: 100%;
  max-height: 100%;
}

#wrap.mw
  .m5-tab-wrapper
  .m5-tab-content
  .photo-layout-wrapper
  .photo-layout-box
  .photo-box
  .btn-del-pic {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 60px;
  height: 60px;
  border: 4px solid #e8ebf0;
  border-radius: 50%;
  background: url(../images/common/icon_del_pic.svg) 50% 50% no-repeat
    rgba(0, 0, 0, 0.5);
}

#wrap.mw
  .m5-tab-wrapper
  .m5-tab-content
  .photo-layout-wrapper
  .photo-layout-box
  .photo-box
  .photo-btn-box {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

#wrap.mw
  .m5-tab-wrapper
  .m5-tab-content
  .photo-layout-wrapper
  .photo-layout-box
  .photo-box
  .photo-btn-box
  > a {
  border: 4px solid #e8ebf0;
  margin: 0 15px;
}

#wrap.mw
  .m5-tab-wrapper
  .m5-tab-content
  .photo-layout-wrapper
  .photo-layout-box
  .meta-box {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top: 1px solid #d2d7dc;
  background-color: #f4f5f7;
  height: 95px;
}

#wrap.mw
  .m5-tab-wrapper
  .m5-tab-content
  .photo-layout-wrapper
  .photo-layout-box
  .meta-box
  span:first-child {
  width: 85px;
  text-align: center;
}

#wrap.mw
  .m5-tab-wrapper
  .m5-tab-content
  .photo-layout-wrapper
  .photo-layout-box
  .meta-box
  span:last-child {
  background-color: #fff;
  width: calc(100% - 85px);
  height: 95px;
  padding: 6px 10px;
  border-bottom: 1px solid #d2d7dc;
  border-left: 1px solid #d2d7dc;
}

#wrap.mw
  .m5-tab-wrapper
  .m5-tab-content
  .photo-layout-wrapper
  .photo-layout-box
  .meta-box
  span:last-child
  textarea {
  width: 100%;
  height: 100%;
  padding: 8px;
  border-radius: 2px;
  border-color: #d2d7dc;
}

#wrap.mw
  .m5-tab-wrapper
  .m5-tab-content
  .photo-layout-wrapper
  .photo-layout-box
  .meta-box.view-box {
  height: auto;
}

#wrap.mw
  .m5-tab-wrapper
  .m5-tab-content
  .photo-layout-wrapper
  .photo-layout-box
  .meta-box.view-box
  span:first-child {
  text-align: left;
  padding-left: 5px;
  padding-right: 5px;
}

#wrap.mw
  .m5-tab-wrapper
  .m5-tab-content
  .photo-layout-wrapper
  .photo-layout-box
  .meta-box.view-box
  span:last-child {
  background-color: #fff;
  height: auto;
  border-bottom: 0;
}

#wrap.mw .m5-tab-wrapper .m5-tab-content .upload-wrapper .btn-box a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  height: 50px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #5564ff;
  border: 1px solid #5564ff;
  font-size: 15px;
}

#wrap.mw .m5-tab-wrapper .m5-tab-content .upload-wrapper .btn-box a i {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 16px;
  height: 20px;
  background: url(../images/common/icon_upload_file.svg) no-repeat;
  margin-right: 10px;
}

#wrap.mw
  .m5-tab-wrapper
  .m5-tab-content
  .upload-wrapper
  .upload-list-box
  ul
  li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 40px;
  padding: 0 0 0 8px;
  border-radius: 2px;
  border: 1px solid #d2d7dc;
  background-color: #e9f2ff;
  font-size: 14px;
  margin-top: 10px;
}

#wrap.mw
  .m5-tab-wrapper
  .m5-tab-content
  .upload-wrapper
  .upload-list-box
  ul
  li
  a.btn-del-file {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 40px;
  height: 40px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: url(../images/common/icon_del_file.svg) 50% 50% no-repeat;
}

#wrap.mw .btn-album,
#wrap.mw .btn-camera {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
}

#wrap.mw .btn-album span,
#wrap.mw .btn-camera span {
  font-size: 0;
}

#wrap.mw .btn-album:after,
#wrap.mw .btn-camera:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  bottom: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 30px 30px;
  background-color: #fff;
}

#wrap.mw .btn-camera:after {
  background-image: url(../images/common/icon_camera.svg);
}

#wrap.mw .btn-album:after {
  background-image: url(../images/common/icon_album.svg);
}

/*
Ã¬Â¶â€ÃªÂ°â‚¬
*/
#content-wrapper.dashboard
  .dashboard-wrapper
  .fixed-area
  .alarm-list-container
  .alarm-list-box
  li {
  border-bottom: 1px solid #e8ebf0;
}

/*
 select Ã­â€¢ËœÃ«â€šËœ Ã¬Â¶â€ÃªÂ°â‚¬Ã­â€¢ËœÃªÂ¸Â°
*/
.my-sanction-box .my-sanction-blue-box.select {
  background-color: #ffffcd !important;
}

.statis_sort {
  font-size: 11px;
  /* min-width: 55px; */
  border: 1px solid #d2d7dc !important;
  width: 31.5%;
  /* padding: 0 10px; */
  margin: 0;
  border: 0;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 32px;
  line-height: 32px;
  border-radius: 2px;
  background-color: #e8ebf0;
  color: #828080;
}
.statis_sort.on {
  color: #ffff;
  background-color: #828080;
}

.date_selecter {
  background: #fff;
  cursor: pointer;
  padding: 3px 0 3px 4px;
  border: 1px solid #ccc;
  width: 76%;
  overflow: hidden;
  color: #767676 !important;
  font-size: 12px;
}
.date-first {
  margin-bottom: 7px;
}
.date-title {
  color: #767676;
}
.statisSelect {
  width: 98% !important;
}

.search-wrapper-radio {
  margin: -15px 0 5px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.search-wrapper-radio .field-box .label span {
  margin-left: 8px;
}

#wrap.mw .m5-tab-wrapper .m5-tab-nav ul {
  white-space: nowrap;
  overflow-x: auto;
}

#wrap.mw
  .m5-tab-wrapper
  .m5-tab-content
  .photo-layout-wrapper
  .select-photo-layout
  .download-box {
  border: 1px solid #5564ff;
  padding: 0 6px;
  height: 36px;
  line-height: 35px;
  width: 125px;
  border-radius: 2px;
}
#wrap.mw
  .m5-tab-wrapper
  .m5-tab-content
  .photo-layout-wrapper
  .select-photo-layout
  .download-box
  a {
  color: #5564ff;
  text-align: center;
}

#wrap.mw
  .m5-tab-wrapper
  .m5-tab-content
  .photo-layout-wrapper
  .select-photo-layout
  select {
  font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont,
    "Malgun Gothic", helvetica, "Apple SD Gothic Neo", sans-serif;
  border: 1px solid #d2d7dc;
  border-radius: 2px;
  font-size: 14px;
  padding: 0 6px;
  width: 100px;
  height: 36px;
  background-color: #fff;
  color: #767676;
  margin-right: 8px;
}

#wrap.mw
  .m5-tab-wrapper
  .m5-tab-content
  .photo-layout-wrapper
  .photo-layout-box
  .meta-box.narrow {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border: 0px solid #d2d7dc;
  background-color: #f4f5f7;
  height: 55px;
}

#wrap.mw
  .m5-tab-wrapper
  .m5-tab-content
  .photo-layout-wrapper
  .photo-layout-box
  .meta-box.narrow
  span:first-child {
  width: 85px;
  height: 55px;
  text-align: center;
  color: #767676;
  line-height: 55px;
  border-top: 1px solid #d2d7dc;
}
#wrap.mw
  .m5-tab-wrapper
  .m5-tab-content
  .photo-layout-wrapper
  .photo-layout-box
  .meta-box.narrow
  span:last-child {
  background-color: #fff;
  width: calc(100% - 85px);
  height: 55px;
  padding: 6px 10px;
  border-top: 1px solid #d2d7dc;
  border-left: 1px solid #d2d7dc;
}
#wrap.mw
  .m5-tab-wrapper
  .m5-tab-content
  .photo-layout-wrapper
  .photo-layout-box
  .meta-box.narrow
  span:last-child
  input {
  width: 100%;
  height: 100%;
  padding: 7px 8px 6px;
  border-radius: 2px;
  border-color: #d2d7dc;
}

#wrap.mw
  .m5-tab-wrapper
  .m5-tab-content
  .photo-layout-wrapper
  .photo-layout-box
  .meta-box
  span:last-child
  textarea {
  width: 100%;
  height: 100%;
  padding: 8px;
  border-radius: 2px;
  border-color: #d2d7dc;
}

#wrap.mw
  .m5-tab-wrapper
  .m5-tab-content
  .photo-layout-wrapper
  .photo-layout-box
  p {
  position: absolute;
  top: 80%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  width: 100%;
  max-height: 178px;
  font-size: 13px;
  text-align: center;
  color: #adadad;
}

/*ducu-add-form */
.m5-tab-content .form-wrapper.docu-add-form .field-box .field {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.m5-tab-content .form-wrapper.docu-add-form .field-box .field a:nth-child(1) {
  width: calc(100% - 50px);
  margin-right: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.m5-tab-content .form-wrapper.docu-add-form .field-box .field a.btn-add-line,
.m5-tab-content .form-wrapper.docu-add-form .field-box .field a.btn-del-line {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 2px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.m5-tab-content
  .form-wrapper.docu-add-form
  .field-box
  .field-box
  .field
  a.btn-add-line {
  border: 1px solid #5564ff;
  background-image: url(../images/common/icon_add_line.svg);
}
.m5-tab-content .form-wrapper.docu-add-form .field-box .field a.btn-del-line {
  border: 1px solid #ff6670;
  background-image: url(../images/common/icon_del_line.svg);
}
.modal-body.add-file .add-file-box .field a.file-list,
.m5-tab-content .form-wrapper.docu-add-form .field-box .field .file-list {
  font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont,
    "Malgun Gothic", helvetica, "Apple SD Gothic Neo", sans-serif;
  border: 1px solid #d2d7dc;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 400;
  padding: 10px 10px 11px;
  width: 100%;
  background-color: #fff;
}
.modal-body.add-file .add-file-box .field-box .field {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.modal-body.add-file .add-file-box .field a.btn-add-file {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 40px;
  border-radius: 2px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  border: 1px solid #5564ff;
}
.modal-body.add-file .add-file-box .field a:nth-child(1) {
  width: calc(100% - 90px);
  margin-right: 10px;
  background-color: #f4f5f7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.modal-body.add-file .add-file-box .field a:nth-child(2) {
  width: 80px;
  color: #5564ff;
}

/* Ã¬â€¹Å“Ã­â€”ËœÃ«â€œÂ±Ã«Â¡Â */
#wrap.mw .regtest-wrapper {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
  padding-bottom: 50px;
}
#wrap.mw .regtest-wrapper .regtest-header.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 105px;
  background-color: #fff;
}
/*
#wrap.mw .regtest-wrapper .regtest-header.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
	height: 105px;
    background-color: #fff;
}
*/
#wrap.mw .regtest-wrapper .regtest-header.fixed-header .title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 55px;
  position: relative;
}
#wrap.mw .regtest-wrapper .regtest-header.fixed-header .title a.btn-back {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 48px;
  height: 48px;
  background: url(../images/common/icon_back.svg) 50% 50% no-repeat;
}

#wrap.mw .regtest-wrapper .regtest-header.fixed-header .title .title-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 17px;
  color: #333;
  font-weight: 500;
  letter-spacing: -0.5px;
}
#wrap.mw
  .regtest-wrapper
  .regtest-header.fixed-header
  .title
  .title-wrapper
  span {
  font-family: "Open Sans", sans-serif;
}
#wrap.mw .regtest-wrapper .regtest-header.fixed-header .sub-tab-nav {
  border-bottom: 1px solid #d2d6dc;
}
#wrap.mw .regtest-wrapper .regtest-header.fixed-header .sub-tab-nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
#wrap.mw .regtest-wrapper .regtest-header.fixed-header .sub-tab-nav ul li.sub {
  width: 100%;
  -webkit-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}
#wrap.mw
  .regtest-wrapper
  .regtest-header.fixed-header
  .sub-tab-nav
  ul
  li.sub
  span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 14px;
  color: #adadad;
  font-weight: 500;
  padding: 0 15px;
}
#wrap.mw .regtest-wrapper .regtest-header.fixed-header .sub-tab-nav ul li {
  width: 50%;
  -webkit-flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}
#wrap.mw .regtest-wrapper .regtest-header.fixed-header .sub-tab-nav ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 15px;
  color: #adadad;
  font-weight: 500;
  padding: 0 15px;
}
#wrap.mw
  .regtest-wrapper
  .regtest-header.fixed-header
  .sub-tab-nav
  ul
  li
  a
  span {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 50px;
  width: 100%;
}
#wrap.mw
  .regtest-wrapper
  .regtest-header.fixed-header
  .sub-tab-nav
  ul
  li.on
  a
  span {
  color: #5564ff;
}
#wrap.mw
  .regtest-wrapper
  .regtest-header.fixed-header
  .sub-tab-nav
  ul
  li.on
  a
  span:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #5564ff;
}
#wrap.mw .regtest-wrapper .test-body {
  display: block;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  padding: 105px 0 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
  max-height: calc(100vh - 50px);
  overflow-y: auto;
  padding-bottom: calc(var(--sab));
}
.btn-wrapper .btn.full {
  width: 100%;
}

.new-request-box {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  /*	background-color: #f3f5fc; */
  padding: 20px 0;
}

.new-request-box > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.new-request-box > ul li {
  position: relative;
  width: calc((100% - 30px) / 3);
  margin: 0 5px;
  background-color: #fff;
  border-radius: 3px;
}
.new-request-box > ul li input.rdo {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.new-request-box > ul li input.rdo:checked + label {
  border-color: #5564ff;
}
.new-request-box > ul li input.rdo:checked + label span {
  color: #5564ff;
}
.new-request-box > ul li label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 120px;
  text-align: center;
  border-radius: 3px;
  border: 1px solid #d2d7dc;
  padding-top: 10px;
}
.new-request-box > ul li label.request-1 span.icon {
  background-image: url(../images/common/icon_request_1.svg);
}
.new-request-box > ul li label.request-2 span.icon {
  background-image: url(../images/common/icon_request_2.svg);
}
.new-request-box > ul li label.request-3 span.icon {
  background-image: url(../images/common/icon_request_3.svg);
}
.new-request-box > ul li label span.icon {
  width: 46%;
  height: 46%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.new-request-box > ul li label span {
  width: 100%;
  display: block;
  font-size: 13px;
  color: #969696;
}

#wrap.mw .regtest-wrapper .test-body .sub-tab-content.on {
  display: block;
}
#wrap.mw .regtest-wrapper .test-body .sub-tab-content {
  display: none;
}
#wrap.mw .regtest-wrapper .test-body .sub-tab-content .search-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 45px;
  border: 1px solid #e8ebf0;
  margin: 15px 0 10px;
  border-radius: 3px;
}
#wrap.mw .regtest-wrapper .test-body .sub-tab-content .search-box input.txt {
  border: none;
  padding-top: 0;
  padding-bottom: 0;
}

#wrap.mw .regtest-wrapper .test-body .sub-tab-content .search-box a {
  width: 70px;
  height: 33px;
  margin: 5px 5px 5px 5px;
  border: 1px solid #5564ff;
  text-align: center;
  border-radius: 3px;
  background-color: #f3f5fc;
  padding: 5px 0;
}
#wrap.mw
  .regtest-wrapper
  .test-body
  .sub-tab-content
  .code-list-box
  .code-item {
  position: relative;
  display: block;
  min-height: 84px;
  border-bottom: 1px solid #e8ebf0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
}
#wrap.mw
  .regtest-wrapper
  .test-body
  .sub-tab-content
  .code-list-box
  .code-item
  .code-label {
  width: 110px;
}
#wrap.mw
  .regtest-wrapper
  .test-body
  .sub-tab-content
  .code-list-box
  .code-item
  label
  input.chk
  + span {
  padding-left: 35px;
  font-size: 14px;
  color: #969696;
}
#wrap.mw
  .regtest-wrapper
  .test-body
  .sub-tab-content
  .code-list-box
  .code-item
  .code-info {
  width: calc(100% - 110px);
}
#wrap.mw
  .regtest-wrapper
  .test-body
  .sub-tab-content
  .code-list-box
  .code-item
  .code-info
  span {
  display: block;
  font-size: 14px;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#wrap.mw
  .regtest-wrapper
  .test-body
  .sub-tab-content
  .code-list-box
  .code-item
  .code-info
  span
  strong {
  display: inline-block;
  color: #5564ff;
  font-family: "Open Sans", sans-serif;
  width: 35px;
}
#wrap.mw .regtest-wrapper .test-body .sub-tab-content .code-list-box.top {
  margin-top: 10px;
}
#wrap.mw .regtest-wrapper .test-body .sub-content .code-list-box .code-item {
  position: relative;
  display: block;
  min-height: 84px;
  border-bottom: 1px solid #e8ebf0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
}
#wrap.mw
  .regtest-wrapper
  .test-body
  .sub-content
  .code-list-box
  .code-item
  .tcode-del {
  width: 35px;
}
#wrap.mw
  .regtest-wrapper
  .test-body
  .sub-content
  .code-list-box
  .code-item
  .tcode-del
  .btn-del-small {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: url(../images/common/icon_trash.svg) 50% 50% no-repeat;
  width: 25px;
  height: 25px;
  border: 1px solid #dcdfe5;
  border-radius: 3px;
}
#wrap.mw
  .regtest-wrapper
  .test-body
  .sub-content
  .code-list-box
  .code-item
  .tcode-title {
  width: 65px;
  font-size: 14px;
  color: #969696;
}
#wrap.mw
  .regtest-wrapper
  .test-body
  .sub-content
  .code-list-box
  .code-item
  .tcode-info {
  width: calc(100% - 170px);
}
#wrap.mw
  .regtest-wrapper
  .test-body
  .sub-content
  .code-list-box
  .code-item
  .tcode-info
  span {
  display: block;
  font-size: 14px;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#wrap.mw
  .regtest-wrapper
  .test-body
  .sub-content
  .code-list-box
  .code-item
  .tcode-info
  span
  strong {
  display: inline-block;
  color: #5564ff;
  font-family: "Open Sans", sans-serif;
  width: 35px;
}
#wrap.mw
  .regtest-wrapper
  .test-body
  .sub-content
  .code-list-box
  .code-item
  .tcode-etc {
  width: 70px;
  text-align: center;
}
#wrap.mw
  .regtest-wrapper
  .test-body
  .sub-content
  .code-list-box
  .code-item
  .tcode-etc
  a {
  font-size: 13px;
  text-align: center;
  border-radius: 3px;
  width: 100%;
  color: #5564ff;
  border: 1px solid #5564ff;
  background-color: #f3f5fc;
  padding: 7px 5px;
}

#wrap.mw
  .regtest-wrapper
  .test-body
  .sub-content
  .code-list-box
  .code-item
  .tcode-etc
  a.blue {
  color: #5564ff;
  border: 1px solid #5564ff;
  background-color: #f3f5fc;
}
#wrap.mw
  .regtest-wrapper
  .test-body
  .sub-content
  .code-list-box
  .code-item
  .tcode-etc
  a.red {
  color: #ff6670;
  border: 1px solid #ff6670;
  background-color: #fdfaf6;
}

/* modal - Ã­ÂÂ°Ã¬â€”ÂÃ¬â€žÅ“ Ã­Å’Å’Ã¬ÂÂ¼ Ã¬Â°Â¾ÃªÂ¸Â° */
.modal-body .adds-file .add-file-box .field a.file-list {
  font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont,
    "Malgun Gothic", helvetica, "Apple SD Gothic Neo", sans-serif;
  border: 1px solid #d2d7dc;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 400;
  padding: 10px 10px 11px;
  width: 100%;
  background-color: #fff;
}
.modal-body .adds-file .add-file-box .field-box .field {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.modal-body .adds-file .add-file-box .field a.btn-add-file {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 40px;
  border-radius: 2px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  border: 1px solid #5564ff;
}
.modal-body .adds-file .add-file-box .field a:nth-child(1) {
  width: calc(100% - 90px);
  margin-right: 10px;
  background-color: #f4f5f7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.modal-body .adds-file .add-file-box .field a:nth-child(2) {
  width: 80px;
  color: #5564ff;
}

/* Ã¬â€žÅ“Ã«Â²â€žÃ¬â€”ÂÃ¬â€žÅ“ Ã­Å’Å’Ã¬ÂÂ¼ Ã¬Â°Â¾ÃªÂ¸Â° */
.modal-body .search-sfile .search-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 45px;
  border: 1px solid #e8ebf0;
  margin: 15px 0 10px;
  border-radius: 3px;
}
.modal-body .search-sfile .search-box input.txt {
  border: none;
  padding-top: 0;
  padding-bottom: 0;
}
.modal-body .search-sfile .search-box a {
  width: 70px;
  height: 33px;
  margin: 5px 5px 5px 5px;
  border: 1px solid #5564ff;
  text-align: center;
  border-radius: 3px;
  background-color: #f3f5fc;
  padding: 5px 0;
}
.modal-body .search-sfile .excel-list-box .excel-item {
  position: relative;
  display: block;
  min-height: 70px;
  border-bottom: 1px solid #e8ebf0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
}
.modal-body .search-sfile .excel-list-box .excel-item .option {
  width: 40px;
}
.modal-body .search-sfile .excel-list-box .excel-item label input.chk + span {
  padding-left: 5px;
  font-size: 14px;
  color: #969696;
}
.modal-body .search-sfile .excel-list-box .excel-item .file-info {
  width: calc(100% - 40px);
}
.modal-body
  .search-sfile
  .excel-list-box
  .excel-item
  .file-info
  span.file-name {
  display: block;
  font-size: 15px;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 3px;
}
.modal-body .search-sfile .excel-list-box .excel-item .file-info span.file-etc {
  display: block;
  font-size: 13px;
  color: #979797;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.modal-body
  .search-sfile
  .excel-list-box
  .excel-item
  .file-info
  span.file-etc
  strong {
  display: inline-block;
  color: #5564ff;
  font-family: "Open Sans", sans-serif;
  width: 75px;
  font-weight: 300;
}

.modal-popup-wrapper.fulltype .modal-popup .modal-body.ttop {
  display: block;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  padding: 0 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
  max-height: calc(100vh - 165px);
  overflow-y: auto;
  margin-top: 110px;
}

.modal-popup-wrapper.fulltype
  .modal-popup
  .modal-header.fixed-header
  .modal-tab-nav.wide
  ul
  li {
  width: 100%;
  -webkit-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}

.modal-popup-wrapper.fulltype
  .modal-popup
  .modal-header.fixed-header
  .modal-tab-nav.wide
  ul
  li
  a {
  font-size: 14px;
}

.thumb-box .thumb {
  position: relative;
  padding-bottom: 100%;
  border-radius: 2px;
  overflow: hidden;
}
.thumb-box .thumb img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumb-box .thumb label {
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 10;
}
.thumb-box .meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.thumb-box .meta .comments {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 12px;
  height: 12px;
  background: url(../images/common/icon_thumb_comments.svg);
}
.thumb-list-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: -9px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.thumb-list-box a {
  display: block;
  width: calc(33.333% - 9px);
  margin-top: 15px;
  margin-right: 12px;
}
.thumb-list-box a:nth-child(3n) {
  margin-right: 0;
}

.sample-tutorial {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.sample-spreadsheets {
  width: 100%;
  height: 100%;
}
/*----- 20220324 */
.field-box .label:nth-child(2) {
  font-size: 16px;
  color: #fff;
  padding: 0 6px 2px;
  border-radius: 5px;
  cursor: pointer;
}
.field-box .label:nth-child(2).on {
  background: #5564ff;
}
.field-box .label:nth-child(2).off {
  background: #ff6670;
}
.field-box .label:nth-child(2).on::before {
  font-size: 16px;
  content: "\f058";
  font-family: "FontAwesome";
}
.field-box .label:nth-child(2).off::before {
  font-size: 16px;
  content: "\f06a";
  font-family: "FontAwesome";
}

.reportrange-text .fa {
  font: inherit;
}

/*css ì¶”ê°€ */

.btn.border.red {
  border-color: #ea4335;
  margin-right: 3px;
}

#grade-container #grade-content-wrap #grade-content .content-header a.red span {
  color: #ea4335;
}

#grade-container
  #grade-content-wrap
  #grade-content
  .content-header
  .btn-box
  select {
  width: 120px;
  padding: 4px 6px 5px;
  margin-right: 4px;
}

#wrap.mw .btn.full {
  width: 100%;
}

.badge {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 80px;
  height: 28px;
  border-style: solid;
  border-width: 1px;
  font-size: 12px;
  background-color: #fff;
  border-radius: 25px;
}

.badge.green {
  border-color: #59b96f;
  color: #59b96f;
}

.badge.blue {
  border-color: #00a3fa;
  color: #00a3fa;
}

.badge.yellow {
  border-color: #fbbc05;
  color: #fbbc05;
}

.badge.purple {
  border-color: #6300bf;
  color: #6300bf;
}

.badge.red {
  border-color: #ff6670;
  color: #ff6670;
}

.badge.blue2 {
  border-color: #5564ff;
  color: #5564ff;
}

.badge.gray {
  border-color: #d2d7dc;
  color: #d2d7dc;
}

#wrap.mw .sign-nav-wrapper {
  position: fixed;
  right: 35px;
  bottom: 35px;
  left: 35px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% - 70px);
  height: 50px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #5564ff;
  border-radius: 35px;
}

#wrap.mw .sign-nav-wrapper > a {
  width: 33.3333%;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 50px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
}

#wrap.mw .sign-nav-wrapper > a i {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  margin-right: 5px;
}

#wrap.mw .sign-nav-wrapper > a.btn-reset i {
  width: 20px;
  height: 20px;
  background-image: url(../images/common/icon_sign_reset.svg);
}

#wrap.mw .sign-nav-wrapper > a.btn-sign i {
  width: 20px;
  height: 20px;
  background-image: url(../images/common/icon_sign_position.svg);
}

#wrap.mw .sign-nav-wrapper > a.btn-confirm i {
  width: 20px;
  height: 20px;
  background-image: url(../images/common/icon_sign_confirm.svg);
}

#wrap.mw label input.rdo + span {
  padding-left: 30px;
  font-size: 15px;
}

#wrap.mw label input.rdo + span:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  z-index: 1;
  width: 20px;
  height: 20px;
  background: url(../images/common/icon_radio_off.svg) no-repeat;
}

#wrap.mw label input.rdo:checked + span:after {
  background-image: url(../images/common/icon_radio_on.svg);
}

#wrap.mw label input.chk + span {
  padding-left: 30px;
  font-size: 14px;
}

#wrap.mw label input.chk + span:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  z-index: 1;
  width: 20px;
  height: 20px;
  background: url(../images/common/icon_check_off.svg) no-repeat;
}

#wrap.mw label input.chk:checked + span:after {
  background-image: url(../images/common/icon_check_on.svg);
}

#wrap.mw .modal-popup-wrapper .modal-popup .modal-footer {
  height: 50px;
}

#wrap.mw .modal-popup-wrapper .modal-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 310px;
  width: 44.444%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #fff;
  z-index: 10000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 5px;
  overflow: hidden;
}

#wrap.mw .modal-popup-wrapper .modal-popup .modal-body {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding: 0 10px;
}

#wrap.mw .modal-popup-wrapper .modal-popup .modal-body > p.msg {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 140px;
  width: 100%;
  text-align: center;
  font-size: 15px;
  color: #767676;
}

#wrap.mw .modal-popup-wrapper .modal-popup .modal-footer {
  height: 50px;
}

#wrap.mw .btn-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top: 1px solid #e8ebf0;
}

#wrap.mw .btn.btn-confirm {
  background-color: #fff;
  color: #5564ff;
}

#wrap.mw .btn.btn-cancel {
  background-color: #fff;
  color: #adadad;
}

#wrap.mw .btn.btn-gray {
  background-color: #f4f5f7;
  color: #5564ff;
}

#wrap.mw .btn.btn-capsule {
  border-radius: 25px;
}

#wrap.mw .btn.btn-border {
  border: 1px solid #d2d7dc;
  background-color: #fff;
  height: 35px;
  border-radius: 35px;
  color: #6b6c73;
  width: auto;
  padding: 0 15px;
}

.fixed-header.table-test-item .list:after,
.tree-item .list:after {
  content: "";
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: end;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  padding: 5px;
}

.fixed-header.table-test-item .list:after,
.tree-item .list:after {
  background-image: url("../images/common/icon_doc_1.svg");
}

.mvrdo {
  opacity: 0;
}

#wrap.mw .btn.border.gray {
  color: #6b6c73;
  background-color: #fff;
}

.zoom-box {
  text-align: right !important;
}

#grade-container.wide #grade-content-wrap {
  width: 100%;
}

#grade-container.wide #grade-rnb {
  display: none;
}

@media all and (max-width: 700px) {
  #wrap.mw .btn-box {
    padding: 20px 0;
    width: 100%;
    white-space: nowrap;
    overflow-x: auto;
    text-align: left;
  }

  .zoom-box {
    text-align: left !important;
  }
}

.dayTest {
  display: inline-block;
  width: 80px;
  height: 24px;
  border-radius: 3px;
  color: white !important;
  text-align: center;
  font-size: 13px;
  line-height: 24px;
  font-weight: 300;
}

.dayTest.null {
  background: #ff6670;
}
.dayTest.notnull {
  background: #34a853;
}

.dayTest.notnull.waiting {
  background: #fbbc05;
}

.dayTest.notnull.approval {
  background: #00a3fa;
}

.dayTestDesc {
  margin-bottom: 10px;
}

.margintop3 {
  margin-top: 3px !important;
}

.fa.fa-arrow-circle-right {
  margin-left: 5px;
  margin-right: 0px;
}

.tab-container {
  margin: 15px 0 15px 0;
}

.tab-label {
  display: inline-flex;
  width: 100%;
  border-bottom: 1px solid #dcdcdc;
  margin-bottom: 15px;
}

.tab-label .label {
  margin-right: 0;
  width: 28px;
  height: 25px;
  padding-top: 2px;
  padding-bottom: 2px;
  cursor: pointer;
  text-align: center;
  background: #f4f5f7;
  border-top: 1px solid #dcdcdc;
  border-left: 1px solid #dcdcdc;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}

.tab-label .label:last-child,
.tab-label .label:first-child {
  background: #9fa0a2;
  color: #fff;
  border: 1px solid #9fa0a2;
  font-size: 18px;
  line-height: 18px;
}
.tab-label .label:last-child {
  border-left: 0;
}
.tab-label .label:first-child {
  border-right: 0;
}

.tab-label .label.on {
  background: #5663ff;
  color: #fff;
  border-top: 1px solid #5663ff;
  border-left: 1px solid #5663ff;
}

.tab-content {
  display: none;
}

.tab-content.on {
  display: block;
}

.field-box .info-label {
  font-size: 16px;
  color: #fff;
  padding: 0 8px 1px;
  border-radius: 5px;
  cursor: pointer;
  background: #c3c5c9;
}

.field-box .info-label::before {
  font-size: 16px;
  content: "\f103";
  font-family: "FontAwesome";
}

.field-box .del-label {
  font-size: 16px;
  color: #f00;
  padding: 0 8px 1px;
  border-radius: 5px;
  cursor: pointer;
  background: #c3c5c9;
}

.field-box .del-label::before {
  font-size: 16px;
  content: "\f014";
  font-family: "FontAwesome";
}

.info-container {
  padding: 8px 10px;
  margin: 15px 0 15px 0;
  background: #f4f5f7;
  border-radius: 4px;
  display: none;
}

.info-container.on {
  display: block;
}

.field-box .strength .text {
  width: 50px;
  margin-top: 10px;
}

.field-box .strength .day {
  width: 100px;
}

/*
.multiselect {
    box-sizing: content-box;
    display: block;
    position: relative;
    width: 100%;
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Malgun Gothic', helvetica, 'Apple SD Gothic Neo', sans-serif;
    height: 35px;
    text-align: left;
    color: #767676;
    font-size: 13px;
    line-height: 140%;
}

.multiselect__single {
    padding-left: 5px;
    margin-bottom: 8px;
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Malgun Gothic', helvetica, 'Apple SD Gothic Neo', sans-serif;
    color: #767676;
    font-size: 13px;
    line-height: 140%;
}

.multiselect__tags {
    height: 35px;
    display: block;
    padding: 8px 40px 0 8px;
    border-radius: 2px;
    background: #fff;
    color: #767676;
    font-size: 13px;
    border: 1px solid #d2d7dc;
}
*/

fieldset[disabled] .multiselect {
  pointer-events: none;
}

.multiselect__spinner {
  position: absolute;
  right: 1px;
  top: 1px;
  width: 0;
  height: 0;
  background: #fff;
  display: none !important;
}

.multiselect__spinner:after,
.multiselect__spinner:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  margin: -8px 0 0 -8px;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  border: 2px solid transparent;
  border-top-color: #41b883;
  box-shadow: 0 0 0 1px transparent;
  display: none !important;
}

.multiselect__spinner:before {
  animation: spinning 2.4s cubic-bezier(0.41, 0.26, 0.2, 0.62);
  animation-iteration-count: infinite;
  display: none !important;
}

.multiselect__spinner:after {
  animation: spinning 2.4s cubic-bezier(0.51, 0.09, 0.21, 0.8);
  animation-iteration-count: infinite;
  display: none !important;
}

.multiselect__loading-enter-active,
.multiselect__loading-leave-active {
  transition: opacity 0.4s ease-in-out;
  opacity: 1;
  display: none !important;
}

.multiselect__loading-enter,
.multiselect__loading-leave-active {
  opacity: 0;
  display: none !important;
}

.multiselect,
.multiselect__input,
.multiselect__single {
  font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont,
    "Malgun Gothic", helvetica, "Apple SD Gothic Neo", sans-serif;
  font-size: 13px;
  -ms-touch-action: none;
  touch-action: none;
  height: 35px;
}

.multiselect {
  box-sizing: content-box;
  display: block;
  position: relative;
  width: 100%;
  height: 35px;
  text-align: left;
  color: #767676;
  z-index: 500;
}

.multiselect * {
  box-sizing: border-box;
}

.multiselect:focus {
  outline: none;
}

.multiselect--disabled {
  background: #ededed;
  pointer-events: none;
  opacity: 0.6;
}

.multiselect--active {
  z-index: 50;
}

.multiselect--active:not(.multiselect--above) .multiselect__current,
.multiselect--active:not(.multiselect--above) .multiselect__input,
.multiselect--active:not(.multiselect--above) .multiselect__tags {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.multiselect--active .multiselect__select {
  transform: rotate(180deg);
}

.multiselect--above.multiselect--active .multiselect__current,
.multiselect--above.multiselect--active .multiselect__input,
.multiselect--above.multiselect--active .multiselect__tags {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.multiselect__input,
.multiselect__single {
  position: relative;
  display: inline-block;
  height: 35px;
  line-height: 35px;
  border: none;
  border-radius: 2px;
  padding: 0;
  width: 100%;
  margin-bottom: 0;
  transition: none;
  box-sizing: border-box;
  vertical-align: middle;
  background: transparent;
}

.multiselect__input:-ms-input-placeholder {
  color: #767676;
}

.multiselect__input::placeholder {
  color: #767676;
}

.multiselect__tag ~ .multiselect__input,
.multiselect__tag ~ .multiselect__single {
  width: auto;
}

.multiselect__input:hover,
.multiselect__single:hover {
  border-color: #d2d7dc;
}

.multiselect__input:focus,
.multiselect__single:focus {
  border-color: #d2d7dc;
  outline: none;
}

.multiselect__single {
  padding-left: 0;
  margin-bottom: 0;
  margin-top: -5px;
}

.multiselect__tags-wrap {
  display: inline;
}

.multiselect__tags {
  min-height: 35px;
  height: 35px;
  line-height: 35px;
  display: block;
  padding: 0 30px 0 8px;
  border-radius: 2px;
  border: 1px solid #d2d7dc;
  background: #fff;
  font-size: 13px;
  color: #767676;
}

.multiselect__tag {
  min-height: 35px;
  height: 35px;
  position: relative;
  display: inline-block;
  padding: 4px 26px 4px 10px;
  border-radius: 2px;
  margin-right: 10px;
  color: #fff;
  line-height: 1;
  background: #41b883;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
}

.multiselect__tag-icon {
  cursor: pointer;
  margin-left: 7px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  font-weight: 700;
  font-style: normal;
  width: 22px;
  text-align: center;
  line-height: 22px;
  transition: all 0.2s ease;
  border-radius: 5px;
}

.multiselect__tag-icon:after {
  content: "\D7";
  color: #266d4d;
  font-size: 14px;
}

.multiselect__tag-icon:focus,
.multiselect__tag-icon:hover {
  background: #369a6e;
}

.multiselect__tag-icon:focus:after,
.multiselect__tag-icon:hover:after {
  color: #fff;
}

.multiselect__current {
  height: 35px;
  overflow: hidden;
  padding: 8px 30px 0 12px;
  white-space: nowrap;
  border-radius: 5px;
  border: 1px solid #e8e8e8;
}

.multiselect__current,
.multiselect__select {
  line-height: 16px;
  box-sizing: border-box;
  display: block;
  margin: 0;
  text-decoration: none;
  cursor: pointer;
}

.multiselect__select {
  position: absolute;
  width: 10px;
  height: 35px;
  right: 8px;
  top: 0;
  padding: 0;
  text-align: center;
  transition: none;
}

.multiselect__select:before {
  position: relative;
  right: 0;
  top: 65%;
  color: #999;
  margin-top: 4px;
  border-color: #999 transparent transparent;
  border-style: solid;
  border-width: 4px 4px 0;
  content: "";
}

.multiselect__placeholder {
  color: #767676;
  display: inline-block;
  margin-bottom: 0;
  padding-top: 0;
}

.multiselect--active .multiselect__placeholder {
  display: none;
}

.multiselect__content-wrapper {
  position: absolute;
  display: block;
  background: #fff;
  width: 100%;
  max-height: 300px;
  overflow: auto;
  border: 1px solid #d2d7dc;
  border-top: none;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  z-index: 50;
  -webkit-overflow-scrolling: touch;
}

.multiselect__content {
  list-style: none;
  display: inline-block;
  padding: 0;
  margin: 0;
  min-width: 100%;
  vertical-align: top;
}

.multiselect--above .multiselect__content-wrapper {
  bottom: 100%;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  border-bottom: none;
  border: 1px solid #d2d7dc;
}

.multiselect__content::webkit-scrollbar {
  display: none;
}

.multiselect__element {
  display: block;
}

.multiselect__option {
  display: block;
  padding: 8px;
  height: 8px;
  line-height: 20px;
  text-decoration: none;
  text-transform: none;
  vertical-align: middle;
  position: relative;
  cursor: pointer;
  white-space: nowrap;
}

.multiselect__option:after {
  top: 0;
  right: 0;
  position: absolute;
  height: 8px;
  line-height: 18px;
  padding-right: 8px;
  padding-left: 20px;
  font-size: 13px;
}

.multiselect__option--highlight {
  background: #1e90ff;
  outline: none;
  color: #fff;
}

.multiselect__option--highlight:after {
  content: attr(data-select);
  background: #1e90ff;
  color: #fff;
}

.multiselect__option--selected {
  background: #1e90ff;
  color: #fff;
  font-weight: 700;
}

.multiselect__option--selected:after {
  content: attr(data-selected);
  color: silver;
}

.multiselect__option--selected.multiselect__option--highlight {
  background: #1e90ff;
  color: #fff;
}

.multiselect__option--selected.multiselect__option--highlight:after {
  background: #1e90ff;
  content: attr(data-deselect);
  color: #fff;
}

.multiselect--disabled .multiselect__current,
.multiselect--disabled .multiselect__select {
  background: #ededed;
  color: #a6a6a6;
}

.multiselect__option--disabled {
  background: #ededed !important;
  color: #a6a6a6 !important;
  cursor: text;
  pointer-events: none;
}

.multiselect__option--group {
  background: #1e90ff;
  color: #fff;
}

.multiselect__option--group.multiselect__option--highlight {
  background: #1e90ff;
  color: #fff;
}

.multiselect__option--group.multiselect__option--highlight:after {
  background: #1e90ff;
}

.multiselect__option--disabled.multiselect__option--highlight {
  background: #1e90ff;
}

.multiselect__option--group-selected.multiselect__option--highlight {
  background: #1e90ff;
  color: #fff;
}

.multiselect__option--group-selected.multiselect__option--highlight:after {
  background: #1e90ff;
  content: attr(data-deselect);
  color: #fff;
}

.multiselect-enter-active,
.multiselect-leave-active {
  transition: all 0.15s ease;
}

.multiselect-enter,
.multiselect-leave-active {
  opacity: 0;
}

.multiselect__strong {
  margin-bottom: 8px;
  line-height: 20px;
  display: inline-block;
  vertical-align: top;
}

[dir="rtl"] .multiselect {
  text-align: right;
}

[dir="rtl"] .multiselect__select {
  right: auto;
  left: 1px;
}

[dir="rtl"] .multiselect__tags {
  padding: 8px 8px 0 40px;
}

[dir="rtl"] .multiselect__content {
  text-align: right;
}

[dir="rtl"] .multiselect__option:after {
  right: auto;
  left: 0;
}

[dir="rtl"] .multiselect__clear {
  right: auto;
  left: 12px;
}

[dir="rtl"] .multiselect__spinner {
  right: auto;
  left: 1px;
}

@keyframes spinning {
  0% {
    transform: rotate(0);
  }

  to {
    transform: rotate(2turn);
  }
}

@media screen and (max-width: 1281px) {
  #content-wrapper.dashboard .dashboard-wrapper .fluid-area {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-right: 0;
  }

  #content-wrapper.dashboard .dashboard-wrapper .fixed-area {
    display: none;
  }
  /*
    #wrap #container #lnb > ul li > a span[class^='icon'] + span {
        display: none;
    }
    */

  #wrap #container #lnb > ul li > a span[class^="icon"] + span {
    display: block;
    text-align: center;
    color: #8c8e96;
    line-height: normal;
    font-size: 13px;
    margin-top: 1px;
  }

  #wrap #container #lnb > ul li > a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    height: 47px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  #content-wrapper.dashboard {
    padding: 0 15px;
    background-color: #f4f5f7;
  }
  #content-wrapper.dashboard .dashboard-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px 0;
  }

  #content-wrapper {
    position: fixed;
    top: 55px;
    left: 60px;
    width: calc(100% - 60px);
    height: calc(100% - 55px) !important;
    padding: 0 20px 50px;
    min-width: 760px;
    overflow-x: hidden;
    overflow-y: auto;
  }
}

.grade-layout #grade-container #grade-content-wrap .grade-tab-nav ul li.full {
  width: 100%;
}

.table-box .chk {
  margin-top: 17px;
}

.check-area {
  margin-right: 15px;
}

.tui-grid-table .left-padding {
  padding-left: 10px; /* 원하는 여백 크기 지정 */
}

.border-box {
  border: 1px solid royalblue;
}

[data-column-name="status"].tui-grid-cell-has-input {
  display: contents;
}

[data-column-name="status"].tui-grid-cell-has-input .flex-box {
  height: 40px;
}

.tui-grid-row-even
  [data-column-name="status"].tui-grid-cell-has-input
  .flex-box {
  background-color: #fee;
}

[data-column-name="status"].tui-grid-cell-has-input .flex-box .drop-button {
  margin-top: 5px;
}

.tui-grid-row-hover
  [data-column-name="status"].tui-grid-cell-has-input
  .flex-box {
  background-color: #99cc99;
}

[data-column-name="status"].tui-grid-cell-has-input
  .flex-box
  .drop-button
  .drop-button-nav {
  z-index: 20;
}

.supply-tr {
  height: 20px;
}

.file-li-div {
  display: inline-flex !important;
  width: 95% !important;
}

/* material */
.shadow-box.material .logo {
  padding: 45px 0 20px;
  width: 100%;
}
.shadow-box.material .logo .logo-text {
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: -0.7px;
  color: #212121;
}
.shadow-box.material .logo .logo-desc {
  color: #767676;
  font-size: 15px;
  margin-top: 5px;
}
.shadow-box.material .new-request-box > ul li {
  position: relative;
  width: calc((100% - 30px) / 2);
  margin: 0 5px;
  background-color: #fff;
  border-radius: 3px;
}
.shadow-box.material .new-request-box > ul li label.request-1 span.icon {
  background-image: url(../images/common/icon_select_test.png);
}
.shadow-box.material .new-request-box > ul li label.request-2 span.icon {
  background-image: url(../images/common/icon_select_material.png);
}
.shadow-box.material .new-request-box > ul li label span.icon {
  width: 52%;
  height: 52%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.shadow-box.material .btn.btn-capsule {
  border-radius: 50px;
  background-color: #5564ff;
  padding: 10px 25px;
  font-size: 15px;
  color: #fff;
}

#wrap.qbox-material #container #header {
  background-color: #074f51;
}
#wrap.qbox-material #container #header .logo a img {
  filter: brightness(100);
}

#wrap.qbox-material #container #header .util a.member-info {
  background-color: #fff;
  font-weight: 600;
  color: #074f51;
  font-size: 15px;
}
#wrap.qbox-material #container #header .util a.setting:after {
  background-image: url(../images/common/icon_setting_material.svg);
}
#wrap.qbox-material #container #header .util a.setting.on:after,
#wrap.qbox-material #container #header .util a.setting:hover:after {
  background-image: url(../images/common/icon_setting_material_on.svg);
}
#wrap.qbox-material #container #header .util a.add-member:after {
  background-image: url(../images/common/icon_add_member_material.svg);
}
#wrap.qbox-material #container #header .util a.add-member.on:after,
#wrap.qbox-material #container #header .util a.add-member:hover:after {
  background-image: url(../images/common/icon_add_member_material_on.svg);
}
#wrap.qbox-material #container #header .util a.alarm:after {
  background-image: url(../images/common/icon_alarm_material.svg);
}
#wrap.qbox-material #container #header .util a.alarm.on:after,
#wrap.qbox-material #container #header .util a.alarm:hover:after {
  background-image: url(../images/common/icon_alarm_material_on.svg);
}
#wrap.qbox-material #container #lnb .lnb-logo {
  background-color: #053537;
}
#wrap.qbox-material #container #lnb {
  position: fixed;
  top: 0;
  left: 0;
  width: 60px;
  height: 100%;
  background-color: #646e7d;
}
#wrap.qbox-material #container #lnb > ul li > a span[class^="icon"] + span {
  display: block;
  text-align: center;
  color: #fff;
  line-height: normal;
  font-size: 11px;
  letter-spacing: -0.5px;
  color: rgba(255, 255, 255, 0.6);
}
#wrap.qbox-material #container #lnb > ul li > a.on span[class^="icon"] + span,
#wrap.qbox-material
  #container
  #lnb
  > ul
  li
  > a:hover
  span[class^="icon"]
  + span {
  color: #fff;
}
#wrap.qbox-material #container #lnb > ul li > a span[class^="icon"].icon-nav-1 {
  background-image: url("../images/common/icon_nav_material_1.svg");
}
#wrap.qbox-material
  #container
  #lnb
  > ul
  li
  > a.active
  span[class^="icon"].icon-nav-1,
#wrap.qbox-material
  #container
  #lnb
  > ul
  li
  > a.on
  span[class^="icon"].icon-nav-1,
#wrap.qbox-material
  #container
  #lnb
  > ul
  li
  > a:hover
  span[class^="icon"].icon-nav-1 {
  background-image: url("../images/common/icon_nav_material_1_on.svg");
}
#wrap.qbox-material #container #lnb > ul li > a.on span[class^="icon"] + span,
#wrap.qbox-material
  #container
  #lnb
  > ul
  li
  > a:hover
  span[class^="icon"]
  + span {
  color: #fff;
}
#wrap.qbox-material #container #lnb > ul li > a span[class^="icon"].icon-nav-2 {
  background-image: url("../images/common/icon_nav_material_2.svg");
}
#wrap.qbox-material
  #container
  #lnb
  > ul
  li
  > a.active
  span[class^="icon"].icon-nav-2,
#wrap.qbox-material
  #container
  #lnb
  > ul
  li
  > a.on
  span[class^="icon"].icon-nav-2,
#wrap.qbox-material
  #container
  #lnb
  > ul
  li
  > a:hover
  span[class^="icon"].icon-nav-2 {
  background-image: url("../images/common/icon_nav_material_2_on.svg");
}

#wrap.qbox-material .item-group .item-box .title.folder + .cnt {
  background-color: #074f51;
}
#wrap.qbox-material .sub-nav-header .field-wrap {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
}

#wrap.qbox-material .sub-nav-header .field-wrap .date-title {
  color: #666;
  width: 20%;
}
#wrap.qbox-material .sub-nav-header .field-wrap .date_selecter {
  background: #fff;
  cursor: pointer;
  padding: 6px 5px 6px 6px;
  border: 1px solid #d2d7dc;
  width: 80%;
  overflow: hidden;
  color: #666 !important;
  font-size: 14px;
}
#wrap.qbox-material .search-area .search-item .dropdown-box {
  margin-right: 5px;
  padding-right: 5px;
  height: 36px;
  border: 1px solid #d2d7dc;
}
#wrap.qbox-material .search-area .search-item .dropdown-box select {
  font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont,
    "Malgun Gothic", helvetica, "Apple SD Gothic Neo", sans-serif;
  border: 0;
  border-radius: 2px;
  padding: 6px 10px;
  width: 100%;
  background-color: #fff;
  color: #666;
  font-size: 14px;
  height: 34px;
}
#wrap.qbox-material .search-area .search-item .search-keyword-box {
  border: 1px solid #d2d7dc;
  margin-right: 0;
}
#wrap.qbox-material
  .search-area
  .search-item
  .search-keyword-box
  .dropdown-box {
  border: 0;
  width: 95px;
}
#wrap.qbox-material .contents-header .btn {
  height: 36px;
  min-height: 36px;
  margin-left: 5px;
}

#wrap.qbox-material .btn.btn-cancel:hover {
  background-color: #8d8d8d;
  border-color: #8d8d8d;
}
#wrap.qbox-material .btn.btn-confirm:hover,
#wrap.qbox-material .btn:hover {
  background-color: #053537;
  border-color: #053537;
}
#wrap.qbox-material .btn.border {
  border: 1px solid #063d41;
  background-color: #fff;
  color: #063d41;
}
#wrap.qbox-material .btn.border:hover {
  border: 1px solid #074f51;
  background-color: #edf3f3;
  color: #074f51;
}

#wrap.qbox-material
  .grade-layout
  #grade-container
  #grade-rnb
  .sanction-list-wrapper
  .btn-box
  > a:hover {
  background-color: #edf3f3;
}

#wrap.qbox-material .button-wrapper {
  display: flex;
  align-items: center;
}
#wrap.qbox-material .drop-button {
  margin-bottom: 0;
}
#wrap.qbox-material .drop-button > a {
  min-width: 90px;
}
#wrap.qbox-material .drop-button.type-2 > a {
  height: 36px;
  border: 0;
  padding: 0 12px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 2px;
  background-color: #fff;
  font-size: 13px;
  color: #074f51;
  width: auto;
  margin-left: 5px;
  border: 1px solid #074f51;
}
#wrap.qbox-material .drop-button.type-2 > a:hover {
  border: 1px solid #074f51;
  background-color: #edf3f3;
  color: #074f51;
}

#wrap.qbox-material .btn.btn-invite-member {
  background-color: #074f51;
  border-color: #074f51;
  font-size: 13px;
}

#wrap.qbox-material .btn.btn-excel,
#wrap.qbox-material .btn.btn-charge {
  background-color: #074f51;
  border-color: #074f51;
  font-size: 13px;
}

#wrap.qbox-material .btn.btn-excel:hover {
  background-color: #053537;
  border-color: #053537;
}
#wrap.qbox-material .drop-button.type-2 > a:before {
  content: "";
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 12px;
  height: 12px;
  margin-right: 4px;
  background: url(../images/common/icon_button_plus_material.svg) no-repeat;
}
#wrap.qbox-material .drop-button.type-2:nth-child(2) > a:before {
  content: "";
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 12px;
  height: 16px;
  margin-right: 4px;
  background: url(../images/common/icon_button_pdf_material.svg) no-repeat;
}

/* table */
#wrap.qbox-material .tui-grid-border-line-top {
  border-top: 0;
  height: 0px;
}
#wrap.qbox-material .tui-grid-border-line-left {
  top: 0;
  bottom: 0;
  left: 0;
  border-left: 0;
}
#wrap.qbox-material .tui-grid-border-line-right {
  top: 0;
  bottom: 0;
  right: 17px;
  border-right: 1px solid #d2d7dc;
}
#wrap.qbox-material .tui-grid-border-line-bottom {
  bottom: 17px;
  border-bottom: 1px solid #d2d7dc;
}
#wrap.qbox-material .tui-grid-scrollbar-right-top {
  border-width: 0 0 1px 0;
  border-bottom: 1px solid #d2d7dc;
}
#wrap.qbox-material .tui-grid-scrollbar-y-inner-border {
  border: 0px;
}
#wrap.qbox-material .tui-grid-scrollbar-y-outer-border {
  width: 0px;
}
#wrap.qbox-material .tui-grid-container {
  width: 100%;
  position: relative;
  border-width: 0;
  clear: both;
  font-size: 13px;
  font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont,
    "Malgun Gothic", helvetica, "Apple SD Gothic Neo", sans-serif;
}
#wrap.qbox-material .tui-grid-body-container {
  width: 100%;
  position: relative;
  border-width: 0;
  margin: 0;
  font-size: 13px;
  font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont,
    "Malgun Gothic", helvetica, "Apple SD Gothic Neo", sans-serif;
}
#wrap.qbox-material .tui-grid-content-area {
  width: 100%;
  border: 1px solid #d2d7dc;
}
#wrap.qbox-material .contents-body.inspection .tui-grid-body-area {
  height: calc(100vh - 260px) !important;
  background-color: #f4f5f7;
  border-top: 1px solid #d2d7dc;
}
#wrap.qbox-material .contents-body.ledger .tui-grid-body-area {
  height: calc(100vh - 300px) !important;
  background-color: #f4f5f7;
  border-top: 1px solid #d2d7dc;
}
#wrap.qbox-material .tui-grid-header-area {
  background-color: #f4f5f7;
  border: 0px;
}
#wrap.qbox-material .tui-grid-cell-header {
  background-color: #eaedf1;
  border-right: 1px solid #d2d7dc;
  border-left: 0px;
  border-top: 0px;
  color: #212121;
  font-weight: 300;
}
#wrap.qbox-material .tui-grid-cell {
  border-right: 1px solid #d2d7dc;
  border-left: 0px;
  border-bottom: 1px solid #d2d7dc;
  border-top: 0px;
  color: #212121;
  font-weight: 300;
}
#wrap.qbox-material .tui-grid-row-odd > td {
  background-color: #fff;
}
#wrap.qbox-material .tui-grid-row-even > td {
  background-color: #eef5f6;
}
#wrap.qbox-material
  [data-column-name="status"].tui-grid-cell-has-input
  .flex-box {
  height: 39px !important;
  background: #fff;
  border-right: 1px solid #d2d7dc;
  border-top: 1px solid #d2d7dc;
}
#wrap.qbox-material
  .tui-grid-row-odd:first-child
  [data-column-name="status"].tui-grid-cell-has-input
  .flex-box {
  border-top: 0;
}
#wrap.qbox-material
  .tui-grid-row-even:last-child
  [data-column-name="status"].tui-grid-cell-has-input
  .flex-box {
  border-bottom: 1px solid #d2d7dc;
  height: 40px !important;
}

#wrap.qbox-material
  .tui-grid-row-even
  [data-column-name="status"].tui-grid-cell-has-input
  .flex-box {
  background-color: #eef5f6;
}
#wrap.qbox-material
  .tui-grid-layer-focus-deactive
  .tui-grid-layer-focus-border {
  background-color: transparent !important;
}
#wrap.qbox-material tui-grid-layer-focus-border {
  background-color: transparent !important;
}

#wrap.qbox-material .tui-grid-row-hover > td {
  background: #d7eaec;
}
#wrap.qbox-material
  .tui-grid-row-hover
  [data-column-name="status"].tui-grid-cell-has-input
  .flex-box {
  background-color: #d7eaec;
}
#wrap.qbox-material
  [data-column-name="status"].tui-grid-cell-has-input
  .flex-box
  .drop-button {
  margin-top: 6px;
}
#wrap.qbox-material .drop-button > a {
  width: 80px;
  min-width: 70px;
  height: 22px;
  background-color: #fff;
  border: 2px solid #ffad66;
  color: #ef9648;
  font-size: 13px;
  line-height: 120%;
  padding-left: 14px;
}
#wrap.qbox-material .drop-button > a:after {
  border-color: transparent transparent transparent #ffad66;
}
#wrap.qbox-material .drop-button.blue > a {
  width: 80px;
  height: 22px;
  padding-left: 14px;
  color: #074f51;
  border-color: #074f51;
}
#wrap.qbox-material .drop-button.blue > a:after {
  border-color: transparent transparent transparent #074f51;
}

/* material detail */
.lnb-view.qbox-material .modal-popup-wrapper .modal-footer .btn.btn-confirm {
  background-color: #074f51;
  border-color: #074f51;
  min-width: 75px;
}
.lnb-view.qbox-material .modal-popup-wrapper .modal-footer .btn.btn-delete {
  background-color: #e65532 !important;
  border-color: #e65532 !important;
  min-width: 75px;
  margin-right: 5px !important;
}
.lnb-view.qbox-material .btn.capsule {
  border-radius: 35px;
  background-color: #074f51;
  border: 1px solid #074f51;
}
.lnb-view.qbox-material
  .grade-layout
  #grade-container
  #grade-rnb
  .sanction-list-wrapper
  .btn-box
  > a
  i,
.lnb-view.qbox-material
  .grade-layout
  #grade-container
  #grade-rnb
  .sanction-list-wrapper
  > a
  i {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 12px;
  height: 12px;
  background: url(../images/common/icon_sanction_plus_green.svg) no-repeat;
  margin-right: 7px;
}
.lnb-view.qbox-material
  .modal-popup-wrapper
  .tab-content-wrapper
  .btn.btn-del-template
  i {
  margin-right: 0;
  background-image: url(../images/common/icon_del_template_green.svg);
}

.lnb-view.qbox-material
  .modal-popup-wrapper
  .tab-content-wrapper
  .btn.btn-add
  i {
  margin-right: 0;
  background-image: url(../images/common/icon_add_item2_green.svg);
}
.lnb-view.qbox-material .all-agree-box label span,
.lnb-view.qbox-material
  .grade-layout
  #grade-container
  #grade-rnb
  .rnb-desc
  ul
  li
  span.blue,
.lnb-view.qbox-material
  .grade-layout
  #grade-container
  #grade-rnb
  .sanction-list-wrapper
  .sanction-item-box
  .sanction-header
  .status.blue,
.lnb-view.qbox-material
  .grade-layout
  #grade-container
  #grade-rnb
  .test-item-box
  .field
  span.pass,
.lnb-view.qbox-material .pagination-wrapper .pagination ul li a.current {
  color: #074f51;
}
.lnb-view.qbox-material input.txt:focus {
  border-color: #333;
}

/* setting page */
#wrap.lnb-view.qbox-material #content-wrapper.material_setting {
  left: 250px;
  width: calc(100% - 250px);
  padding: 0 30px 50px;
}

#wrap.qbox-material .contents-header .btn.btn-confirm {
  background-color: #074f51;
  border-color: #074f51;
}
#wrap.qbox-material .profile-box {
  background-color: #074f51;
}
#wrap.qbox-material .btn.border.gray.btn-upload i {
  background-image: url(../images/common/icon_upload2_green.svg);
}

#wrap.qbox-material .table-wrapper.setting {
  width: 100%;
  overflow-y: auto;
  min-height: auto;
  margin: 0;
}
#wrap.qbox-material .table-wrapper.setting table thead th {
  font-weight: 400;
  font-size: 13px;
  height: 32px;
  border-bottom: 1px solid #074f51;
}
#wrap.qbox-material .table-wrapper.setting table thead th:first-child,
#wrap.qbox-material .table-wrapper.setting table thead th:nth-child(2),
#wrap.qbox-material .table-wrapper.setting table thead th:nth-child(3) {
  border-bottom: 0px;
}
#wrap.qbox-material .table-wrapper.setting .drop-button > a {
  width: 80px;
  min-width: 70px;
  height: 22px;
  background-color: #fff;
  border: 2px solid #074f51;
  color: #074f51;
  font-size: 13px;
  line-height: 120%;
  padding-left: 14px;
}
#wrap.qbox-material .table-wrapper.setting .drop-button > a:after {
  border-color: transparent transparent transparent #074f51;
}
#wrap.qbox-material
  .modal-popup-wrapper
  .member-invite-form
  .border.btn.btn-add
  i {
  margin-right: 0;
  background-image: url(../images/common/icon_add_item2_green.svg);
}
#wrap.qbox-material
  .modal-popup-wrapper.modal-popup-m602-1
  .modal-popup
  .invite-list-wrapper
  p
  .cnt {
  background-color: #074f51;
}
#wrap.qbox-material
  .table-wrapper.setting
  table
  tr:first-child
  td
  .flex-box:after {
  background-color: #074f51;
}
.child-testno p {
  font-size: 10px;
}
.hover-text {
  display: none;
}
.hover-container:hover .hover-text {
  display: block;
}
