@import url("https://cdn.rawgit.com/theeluwin/NotoSansKR-Hestia/master/stylesheets/NotoSansKR-Hestia.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css");

:root {
  --body-line-height: 1.4;
  --heading-line-height: 1.2;
  --font-family: "Noto Sans Korean", -apple-system, BlinkMacSystemFont, Inter,
    Helvetica, Roboto, sans-serif;
  --space-unit: 18px;
  --space-xxxxs: calc(0.125 * var(--space-unit));
  --space-xxxs: calc(0.25 * var(--space-unit));
  --space-xxs: calc(0.375 * var(--space-unit));
  --space-xs: calc(0.5 * var(--space-unit));
  --space-sm: calc(0.75 * var(--space-unit));
  --space-md: calc(1.25 * var(--space-unit));
  --space-lg: calc(2 * var(--space-unit));
  --space-xl: calc(3.25 * var(--space-unit));
  --space-xxl: calc(5.25 * var(--space-unit));
  --space-xxxl: calc(8.5 * var(--space-unit));
  --space-xxxxl: calc(13.75 * var(--space-unit));
  --component-padding: var(--space-md);

  --btn-font-size: 1em;
  --btn-font-size-sm: 0.8em;
  --btn-font-size-md: 1.2em;
  --btn-font-size-lg: 1.4em;
  --btn-padding-x: var(--space-md);
  --btn-padding-y: var(--space-xs);

  --color-primary: #537cce;
  --color-secondary: #6494ed;
  --color-contrast-darker: #707784;
  --color-contrast-dark: #9da5b4;
  --color-contrast-medium: #cbd0d9;
  --color-contrast-light: #d7dae0;
  --color-contrast-lighter: #fafbff;
  --color-bg: #282c34;
  --color-bg-secondary: #2f333d;
  --color-secondary-bg: #21252b;
  --color-text: #fafbff;
  --color-selected: #171b21;
  --color-border: #181a1f;
  --color-input-bg: #2a2e37;
  --color-white: #ffffff;
  --color-black: #000;
  --color-btn-secondary: #393e4a;
  --color-file: #fad045;
  --color-green: #235541;
  --color-total: #998b11;
  --color-total-2: #cfbc1d;
  --color-approval: #ff6670;
}

.noto-sans-kr {
  font-family: "Noto Sans KR", sans-serif;
}

.open-sans {
  font-family: "Open Sans", sans-serif;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

* {
  max-height: 1000000px;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
hr {
  margin: 0;
  padding: 0;
  border: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main,
form legend {
  display: block;
}

body {
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 300;
  color: var(--color-text);
  line-height: var(--body-line-height);
  background-color: var(--color-bg);
  letter-spacing: -0.5px;
  min-width: 1400px;
}

body {
  scrollbar-highlight-color: #22252b;
  scrollbar-3dlight-color: #b58e63;
  scrollbar-face-color: #22252b;
  scrollbar-shadow-color: #b58e63;
  scrollbar-track-color: #22252b;
  scrollbar-arrow-color: #393d48;
}

::-webkit-scrollbar {
  width: 16px;
}
::-webkit-scrollbar-track {
  background-color: #393d48;
}
::-webkit-scrollbar-thumb {
  background-color: #22252b;
}
::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
  width: 16px;
  height: 16px;
  background: #292c34;
}

h1,
h2,
h3,
h4 {
  font-weight: 600;
  color: var(--color-contrast-darker);
  line-height: var(--heading-line-height, 1.2);
}

h1 {
  font-size: var(--text-xxxl);
}

h2 {
  font-size: var(--text-xxl);
}

h3 {
  font-size: var(--text-lg);
}

h4 {
  font-size: var(--text-md);
}

a,
.link {
  color: var(--color-contrast-darker);
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  transition: color 0.2s, background-color 0.2s;
}

a:hover,
.link:hover {
  color: var(--color-primary);
}

strong {
  font-weight: 700;
}

s,
del {
  text-decoration: line-through;
}

u,
.underline {
  text-decoration: underline;
}

em {
  font-style: italic;
}

abbr[title],
dfn[title] {
  text-decoration: none;
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.table-wrapper table thead th,
.table-wrapper table tbody td {
  padding: var(--space-sm) var(--space-md);
}

.table-wrapper table thead th {
  font-weight: 700;
  border-bottom: 1px solid var(--color-contrast-darker);
  text-align: center;
}

.table-wrapper table tbody td {
  text-align: left;
}

[type="color"],
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="search"],
[type="tel"],
[type="text"],
[type="time"],
[type="url"],
[type="week"],
input:not([type]),
textarea,
button,
[type="button"],
[type="reset"],
[type="submit"],
select {
  font-size: var(--text-md);
  background-color: transparent;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
}

.blind,
.sr-only,
form legend,
table caption {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.hide {
  display: none;
}

textarea {
  resize: none;
  overflow: auto;
  vertical-align: top;
}

input::--ms-clear,
input::--ms-reveal,
select:--ms-expand {
  display: none;
}

img,
svg,
video {
  max-width: 100%;
}

.block {
  display: block;
}

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

ul,
ol {
  list-style-type: none;
}

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
  width: 18px;
  height: 18px;
}

/****************************************************************/
/* LOGIN */
.login_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: url("../images/login/login_bg.jpg") 50% 50% no-repeat;
  background-size: cover;
}
.login_wrap {
  position: fixed;
  width: 610px;
  height: 330px;
  background: #fff;
  top: 50%;
  left: 50%;
  margin-left: -305px;
  margin-top: -165px;
  z-index: 10;
  border: 1px solid #000;
}
.login_wrap .login_box {
  display: table;
  width: 100%;
  height: 100%;
  table-layout: fixed;
}
.login_wrap .login_box .desc_box,
.login_wrap .login_box .field_box {
  display: table-cell;
  vertical-align: top;
}
.login_wrap .login_box .desc_box {
  width: 280px;
  border: 1px solid #0082c8;
  background: #0082c8;
  text-align: center;
}
.login_wrap .login_box .desc_box h1 {
  font-size: 38px;
  color: #fff;
  padding: 42px 0 38px;
  letter-spacing: 0;
}
.login_wrap .login_box .desc_box p.desc {
  color: #dae2eb;
  font-size: 13px;
  padding-bottom: 33px;
  line-height: 20px;
  color: #dae2eb;
}
.login_wrap .login_box .desc_box a.btn_passwd_reset {
  display: inline-block;
  border: 1px solid #06337b;
  background: #20a8d8;
  width: 190px;
  padding: 11px 0 10px;
}
.login_wrap .login_box .desc_box a.btn_passwd_reset span {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
}
.login_wrap .login_box .desc_box p.contact {
  display: inline-block;
  position: relative;
  padding-left: 10px;
  color: #dae2eb;
  font-size: 12px;
  margin-top: 15px;
}
.login_wrap .login_box .desc_box p.contact:after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: #dae2eb;
  top: 50%;
  left: 0;
  margin-top: -2px;
}
.login_wrap .login_box .field_box {
}
.login_wrap .login_box .field_box .form_wrap {
  width: 240px;
  margin: 0 auto;
}
.login_wrap .login_box .field_box .form_wrap .logo {
  padding-top: 45px;
  padding-bottom: 29px;
  margin: 0 auto;
  text-align: center;
}
.login_wrap .login_box .field_box .form_wrap .logo img {
  width: 120px;
  margin: 0 auto;
}
.login_wrap .login_box .field_box .form_wrap .field_wrap {
  display: table;
  width: 100%;
  table-layout: fixed;
  height: 35px;
  border-top: 1px solid #c8cdd2;
  border-left: 1px solid #c8cdd2;
  margin-bottom: 15px;
}
.login_wrap .login_box .field_box .form_wrap .field_wrap > span {
  display: table-cell;
  vertical-align: middle;
  border-bottom: 1px solid #c8cdd2;
  border-right: 1px solid #c8cdd2;
}
.login_wrap .login_box .field_box .form_wrap .field_wrap span.label {
  position: relative;
  width: 40px;
  background-color: #f0f3f5;
}
.login_wrap .login_box .field_box .form_wrap .field_wrap span.label:after {
  content: "";
  position: absolute;
  width: 16px;
  height: 17px;
  top: 50%;
  left: 50%;
  margin: -8px 0 0 -8px;
  background: url("../images/login/icon_login.gif") 0 0 no-repeat;
}
.login_wrap
  .login_box
  .field_box
  .form_wrap
  .field_wrap
  span.label.login_passwd:after {
  background-position: 0 -17px;
}

.login_wrap .login_box .field_box .form_wrap .field_wrap span.field {
  width: 199px;
}
.login_wrap .login_box .field_box .form_wrap .field_wrap span.field input.txt {
  border: none;
  background: #fff;
  padding: 7px 7px;
  width: 100%;
  color: #333;
}
.login_wrap
  .login_box
  .field_box
  .form_wrap
  .field_wrap
  span.field
  input::-webkit-input-placeholder {
  color: #999;
}
.login_wrap .login_box .field_box .form_wrap .btn_wrap {
  padding-top: 0;
  padding-bottom: 13px;
}
.login_wrap .login_box .field_box .form_wrap .btn_wrap a {
  display: block;
  border: 1px solid #294584;
  background: #2e4e91;
  text-align: center;
  padding: 13px 0 12px;
}
.login_wrap .login_box .field_box .form_wrap .btn_wrap a span {
  font-size: 15px;
  color: #fff;
  font-weight: 500;
}
.login_wrap .login_box .field_box .form_wrap .check_wrap {
}
.login_wrap .login_box .field_box .form_wrap .check_wrap label {
  display: inline-block;
}
.login_wrap .login_box .field_box .form_wrap .check_wrap label * {
  vertical-align: middle;
}
.login_wrap .login_box .field_box .form_wrap .check_wrap label input + span {
  position: relative;
  top: -1px;
  font-size: 13px;
  color: #64646e;
}
/****************************************************************/

/* -- */
html {
  overflow-y: auto;
}

body {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#wrap,
#container {
  position: relative;
  height: 100%;
}

#header {
  position: relative;
  z-index: 30;
}

#nav {
  position: relative;
  z-index: 30;
}

#content-wrap {
  min-height: 100%;
  margin: -103px auto -43px;
}

#content-wrap #contents {
  padding: 128px 0 146px;
}

#content-wrap #contents.no-padding-bottom {
  position: relative;
  padding-bottom: 43px;
}

#footer {
  position: relative;
  z-index: 20;
}

/* -- */

.btn-wrapper {
  margin: 20px 0 0;
  padding-right: 30px;
  text-align: right;
}

.btn-wrapper.center {
  margin: 20px 0 0;
  padding-right: 0;
  text-align: center;
}

.btn-wrapper.center button {
  margin: 0 3px;
}

.btn {
  display: inline-flex;
  position: relative;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.2;
  font-size: var(--btn-font-size, 1em);
  justify-content: center;
  align-items: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
  color: var(--color-white);
  cursor: pointer;
  overflow: hidden;
  background-color: var(--color-primary);
  border: 1px solid var(--color-border);
  min-width: 100px;
  padding-top: 7px;
  padding-bottom: 8px;
  padding-left: 22px;
  padding-right: 22px;
  border-radius: 3px;
}

.btn.green {
  background-color: var(--color-green);
}

.btn span {
  font-weight: 400;
}

.btn.btn-secondary {
  background-color: var(--color-btn-secondary);
}

.btn.btn-file,
.btn.btn-save {
  background-color: var(--color-file);
  color: var(--color-selected);
}


.btn.btn-approval {
  background-color: var(--color-approval);
  color: var(--color-selected);
}

input.txt {
  border: 1px solid var(--color-contrast-darker);
  background-color: var(--color-input-bg);
  padding: 5px 10px;
  min-width: 130px;
  color: var(--color-text);
  font-weight: 300;
  outline: none;
}

input.searchinput {
  border: 1px solid var(--color-contrast-darker);
  background-color: var(--color-input-bg);
  padding: 5px 10px;
  min-width: 215px;
  color: var(--color-text);
  font-weight: 300;
  margin-left: 10px;
}

input.readonly,
input[readonly],
input[readonly="readonly"] {
  color: var(--color-secondary);
}

input.txt.full {
  width: 100%;
  min-width: 100%;
}

input.txt::-webkit-input-placeholder,
.form-control ::-webkit-input-placeholder,
input.txt ::-webkit-input-placeholder,
textarea.txt ::-webkit-input-placeholder {
  color: var(--color-text);
}

select :-moz-placeholder,
.form-control :-moz-placeholder,
input.txt :-moz-placeholder,
textarea.txt :-moz-placeholder {
  color: var(--color-text);
}

select ::-moz-placeholder,
.form-control ::-moz-placeholder,
input.txt ::-moz-placeholder,
textarea.txt ::-moz-placeholder {
  color: var(--color-text);
}

select :-ms-input-placeholder,
.form-control :-ms-input-placeholder,
input.txt :-ms-input-placeholder,
textarea.txt :-ms-input-placeholder {
  color: var(--color-text);
}

select {
  background: var(--color-input-bg) url("../images/icon/icon-select-arr.png")
    95% 50% no-repeat;
}

select.sm {
  background-position: 92% 50%;
}

select.marginleft {
  margin-left: 10px;
}

span.totallet {
  margin-left: 20px;
  margin-right: 7px;
}

input.txt.cal {
  width: 150px !important;
  padding-left: 33px;
  background: url("../images/icon/icon-calendar.png") 10px 49% no-repeat;
}

/* ----- */

.container {
  padding: 0 25px;
}

#wrap {
  border-top: 3px solid #568af2;
}

#header {
  background-color: var(--color-secondary-bg);
}

#header .container {
  display: flex;
  height: 57px;
  align-items: center;
  justify-content: space-between;
}

#header .container > div {
}

#header .container > div.logo {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 13px;
}

#header .container > div.logo .logo-img {
  width: 94px;
}

#header .container > div.logo .logo-img img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

#header .container > div.logo .logo-img strong {
  font-weight: 600;
  font-size: 27px;
  color: var(--color-primary);
}

#header .container > div.logo p {
  font-weight: 600;
  color: var(--color-contrast-dark);
}

#header .container > div.user-info {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#header .container > div.user-info .user,
#header .container > div.user-info .passwd {
  position: relative;
  display: flex;
  align-items: center;
}

#header .container > div.user-info .passwd span {
  font-size: 12px;
  color: var(--color-contrast-dark);
  padding-left: 6px;
  padding-right: 15px;
}

#header .container > div.user-info .user span {
  font-size: 12px;
  color: var(--color-contrast-dark);
  padding-left: 5px;
}

#header .container > div.user-info .logout {
  margin-left: 5px;
}

#header .container > div.user-info .logout button {
  position: relative;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#header .container > div.user-info .logout button:before {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  background: url("../images/icon/icon-logout.png") 50% 50% no-repeat;
}

#nav {
  background-color: #383d48;
}

#nav .container {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#nav a,
#nav button {
  color: var(--color-contrast-dark);
}

#nav a:hover,
#nav button:hover {
  color: var(--color-secondary);
}

#nav ul {
  display: flex;
  height: inherit;
  flex-wrap: nowrap;
  align-items: center;
  height: 46px;
}

#nav ul li {
  display: flex;
  align-items: center;
  height: 46px;
  border-left: 1px solid var(--color-border);
  color: var(--color-contrast-dark);
}

#nav ul li .breadcrumb {
  padding-left: 20px;
  font-size: 12px;
}

#nav ul li .breadcrumb span {
  margin: 0 10px;
}

#nav ul li a {
  display: flex;
  height: inherit;
  align-items: center;
  justify-content: center;
  padding-left: 19px;
  padding-right: 19px;
}

#nav ul li a.home {
  width: 46px;
  padding-left: 0;
  padding-right: 0;
  background: url("../images/icon/icon-home.png") 50% 50% no-repeat;
}

#nav ul li a.home:hover,
#nav ul li a.home.on {
  background-image: url("../images/icon/icon-home-on.png");
}

#nav ul li a.face-mapping span,
#nav ul li a.data-3d span,
#nav ul li a.codemng span,
#nav ul li a.usermng span {
  position: relative;
  padding-left: 28px;
}

#nav ul li a.face-mapping span:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("../images/icon/icon-face-mapping.png") 50% 50% no-repeat;
}

#nav ul li a.face-mapping:hover span:before,
#nav ul li a.face-mapping.on span:before {
  background-image: url("../images/icon/icon-face-mapping-on.png");
}

#nav ul li a.data-3d span:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("../images/icon/icon-3d.png") 50% 50% no-repeat;
}

#nav ul li a.data-3d:hover span:before,
#nav ul li a.data-3d.on span:before {
  background-image: url("../images/icon/icon-3d-on.png");
}

#nav ul li a.codemng span:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("../images/icon/icon-codemng.png") 50% 50% no-repeat;
}

#nav ul li a.codemng:hover span:before,
#nav ul li a.codemng.on span:before {
  background-image: url("../images/icon/icon-codemng-on.png");
}

#nav ul li a.usermng span:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("../images/icon/icon-usermng.png") 50% 50% no-repeat;
}

#nav ul li a.usermng:hover span:before,
#nav ul li a.usermng.on span:before {
  background-image: url("../images/icon/icon-usermng-on.png");
}

#nav ul li a.on {
  color: var(--color-secondary);
}

#nav .alrim {
  position: relative;
  padding-left: 19px;
  font-size: 12px;
  color: var(--color-secondary);
}

#nav .alrim:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 14px;
  height: 12px;
  background: url("../images/icon/icon-alaim.png") 0 0 no-repeat;
}

#footer {
  border-top: 1px solid var(--color-border);
  background-color: var(--color-secondary-bg);
}

#footer .container {
  display: flex;
  height: 42px;
  justify-content: space-between;
  align-items: center;
}

#footer .container .copyright {
  font-size: 12px;
  color: var(--color-contrast-darker);
}

#content-wrap {
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  padding: 0 24px;
}

/* --- */

.search-wrapper {
  border: 1px solid var(--color-border);
  background-color: var(--color-bg-secondary);
}

.search-wrapper .tab-nav-box {
  padding: 6px 0 0 0;
}

.search-wrapper .tab-nav-box ul {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 19px;
  height: 38px;
}

.search-wrapper .tab-nav-box ul:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-border);
}

.search-wrapper .tab-nav-box ul li {
  margin-left: 5px;
}

.search-wrapper .tab-nav-box ul li:first-child {
  margin-left: 0;
}

.search-wrapper .tab-nav-box ul li a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 38px;
  color: var(--color-contrast-darker);
  border: 1px solid var(--color-border);
  background-color: var(--color-bg);
  padding: 0 28px;
}

.search-wrapper .tab-nav-box ul li.on a {
  border-bottom: none;
  color: var(--color-contrast-medium);
  background-color: var(--color-bg-secondary);
}

.search-wrapper .tab-content-box {
  display: none;
  align-items: center;
  flex-wrap: nowrap;
  padding: 18px 28px;
}

.search-wrapper .tab-content-box.on {
  display: flex;
}

.search-wrapper .tab-content-box .field-box {
  display: flex;
  align-items: center;
}

.search-wrapper .tab-content-box .field-box label {
  position: relative;
  padding-left: 8px;
  padding-right: 15px;
  color: var(--color-contrast-medium);
}

.search-wrapper .tab-content-box .field-box label:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 4px;
  transform: translateY(-50%);
  background-color: var(--color-contrast-medium);
  border-radius: 50%;
}

.search-wrapper .tab-content-box .field-box + .field-box {
  margin-left: 20px;
}

.search-wrapper .search_btn {
  display: flex;
}

.search-wrapper .search_btn .btn {
  position: relative;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.2;
  font-size: var(--btn-font-size, 1em);
  justify-content: center;
  align-items: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
  color: var(--color-white);
  cursor: pointer;
  overflow: hidden;
  background-color: var(--color-primary);
  border: 1px solid var(--color-border);
  min-width: 80px;
  padding-top: 7px;
  padding-bottom: 8px;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 3px;
  margin-left: 10px;
}

.search-wrapper .tab-content-btn-wrapper {
  width: calc(100% - 540px);
  text-align: right;
}

.search-wrapper .tab-content-btn-wrapper .btn {
  margin-left: 8px;
}

.search-wrapper .tab-content-btn-wrapper-right {
  width: calc(100% - 10px);
  text-align: right;
}


/* --- */

.list-wrapper {
  margin-top: 20px;
}

.list-top-btn-wrapper {
  margin: 10px 0;
  padding-right: 30px;
  text-align: right;
}

.list-box {
  border: 1px solid var(--color-border);
  background-color: var(--color-bg-secondary);
}

/* --- */

.step-info-box {
  border-left: 1px solid var(--color-border);
}

.step-info-box ul {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

.step-info-box ul li {
  position: relative;
  flex: 0 0 20%;
  max-width: 20%;
  height: 45px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  color: var(--color-contrast-darker);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.step-info-box ul li:after {
  content: "";
  position: absolute;
  top: -1px;
  right: 0;
  width: 22px;
  height: 45px;
  background: url("../images/icon/icon-step-off.png") 0 0 no-repeat;
}

.step-info-box ul li.on {
  background-color: var(--color-bg-secondary);
  color: var(--color-white);
}

.step-info-box ul li.on:after {
  background-image: url("../images/icon/icon-step-on.png");
}

.step-info-box ul li:last-child {
  border-right: 1px solid var(--color-border);
}

.step-info-box ul.step-1 li:first-child {
  background-color: var(--color-bg-secondary);
  color: var(--color-white);
}

.step-info-box ul.step-1 li:first-child:after {
  background-image: url("../images/icon/icon-step-on.png");
}

.step-info-box ul.step-2 li:nth-child(2) {
  background-color: var(--color-bg-secondary);
  color: var(--color-white);
}

.step-info-box ul.step-2 li:nth-child(1):after {
  background-image: url("../images/icon/icon-step-gap.png");
}

.step-info-box ul.step-2 li:nth-child(2):after {
  background-image: url("../images/icon/icon-step-on.png");
}

.step-info-box ul.step-3 li:nth-child(3) {
  background-color: var(--color-bg-secondary);
  color: var(--color-white);
}

.step-info-box ul.step-3 li:nth-child(2):after {
  background-image: url("../images/icon/icon-step-gap.png");
}

.step-info-box ul.step-3 li:nth-child(3):after {
  background-image: url("../images/icon/icon-step-on.png");
}

.step-info-box ul.step-4 li:nth-child(4) {
  background-color: var(--color-bg-secondary);
  color: var(--color-white);
}

.step-info-box ul.step-4 li:nth-child(3):after {
  background-image: url("../images/icon/icon-step-gap.png");
}

.step-info-box ul.step-4 li:nth-child(4):after {
  display: none;
}

.step-info-box ul.step-5 li:nth-child(5) {
  background-color: var(--color-bg-secondary);
  color: var(--color-white);
}

.step-info-box ul.step-5 li:nth-child(4):after {
  background-image: url("../images/icon/icon-step-gap.png");
}

.step-info-box ul.step-5 li:nth-child(5):after {
  display: none;
}

.step-info-box ul li:last-child:after {
  display: none;
}

table.fms {
  margin-top: 20px;
  border: 1px solid var(--color-border);
}

table.fms {
  width: 100%;
  table-layout: fixed;
}

table.fms th,
table.fms td {
  border-left: 1px solid #3f444f;
  border-top: 1px solid #3f444f;
  vertical-align: middle;
  height: 51px;
}

table.md th,
table.md td {
  height: 40px;
}


table.fms th:first-child,
table.fms td:first-child {
  border-left: none;
}

table.fms tr:first-child th,
table.fms tr:first-child td {
  border-top: none;
}

table.fms th {
  color: var(--color-contrast-medium);
  text-align: center;
  font-weight: 400;
}

table.fms td {
  background-color: var(--color-bg-secondary);
  padding-left: 15px;
  padding-right: 15px;
}

table.fms.td-center td {
  text-align: center;
}

table.fms.td-left th,
table.fms.td-left td {
  text-align: left;
  padding-left: 20px;
  padding-right: 20px;
}

table.fms th.inner-head {
  border-bottom: 1px solid #3f444f;
  background-color: #383d48;
  color: var(--color-text);
}

table.fms tr.green-td td {
  background-color: var(--color-green);
  color: var(--color-text);
  height: 28px;
}

table.fms tr .primary-td {
  background-color: #445984;
  color: var(--color-text);
}

.reg-form-box table.fms td select,
.reg-form-box table.fms td input.txt {
  min-width: 150px;
}

.reg-form-box table.fms td select.sm,
.reg-form-box table.fms td input.txt.sm {
  width: 85px;
  min-width: 85px;
  max-width: 85px;
}

.reg-form-box table.fms td input.txt + span,
.reg-form-box table.fms td select + span {
  font-size: 13px;
  margin-left: 5px;
  margin-right: 16px;
}

.reg-form-box table.fms td select {
  padding: 5px 8px;
  border: 1px solid var(--color-contrast-darker);
}

table.fms td span.stano {
  margin-left: 30px;
  margin-right: 15px;
}

table.fms th.blackline,
table.fms td.blackline {
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 10px;
}
table.fms th.blackline-right,
table.fms td.blackline-right {
  border-right: 1px solid var(--color-border);
}

table.fms th.linenone,
table.fms td.linenone {
  border-left: 0px !important;
}

table.fms th.right,
table.fms td.right {
  text-align: right;
  padding-right: 20px;
}

table.fms th.center,
table.fms td.center {
  text-align: center;
}

input.result {
  background-color: var(--color-green);
  padding: 5px 10px;
  width: 80px;
  color: var(--color-text);
  font-weight: 300;
  outline: none;
}

table.fms th.bgb {
  background-color: var(--color-secondary-bg);
}

table.fms th.bgb1 {
  background-color: #1e2026;
}

table.fms th span.value {
  font-size: 11px;
  color: var(--color-total-2);
  margin-left: 5px;
}


/* 20200909  */
.left_table {
  width: 50%;
  position: relative;
  display: inline-block;
  float: left;
}

.right_table {
  width: 50%;
  position: relative;
  display: block;
  float: right;
}

.intablebody {
  width: 100%;
  display: table;
}

table.fms td.pad {
  padding: 0;
}

.step-3-container table.fms th.hgt,
.step-3-container table.fms td.hgt {
  height: 26px !important;
}

table.blacktb {
  width: 100%;
  margin: 0;
  border: 0;
  background: #000;
}

table.blacktb tr {
  margin: 0;
  border: 0 !important;
}

table.blacktb tr th,
table.blacktb tr td {
  height: 30px;
}

tr.center,
th.center,
td.center {
  text-align: center;
}

tr.left,
th.left,
td.left {
  text-align: left;
}

tr.right,
th.right,
td.right {
  text-align: right;
}
/* 20200909 -->  */


/* -- */
table.fms_photo {
  margin-top: 20px;
  border: 1px solid var(--color-border);
}

table.fms_photo {
  width: 100%;
  table-layout: fixed;
}

table.fms_photo th,
table.fms_photo td {
  border-left: 1px solid #3f444f;
  border-top: 1px solid #3f444f;
  vertical-align: middle;
  height: 41px;
}

table.fms_photo th:first-child,
table.fms_photo td:first-child {
  border-left: none;
}

table.fms_photo tr:first-child th,
table.fms_photo tr:first-child td {
  border-top: none;
}

table.fms_photo th {
  color: var(--color-contrast-medium);
  text-align: center;
  font-weight: 400;
}

table.fms_photo td {
  background-color: #000;
  padding: 15px;
}

table.fms_photo td a.upload_done_read {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 420px;
  background: #000;
  overflow: hidden;
}

table.fms_photo td a.upload_done {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 420px;
  background: #000;
  overflow: hidden;
}

table.fms_photo td a.upload_done::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background-image: url(../images/icon/pic_close.png);
  background-repeat: no-repeat;
}

table.fms_photo td a.upload {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 420px;
  background: #000;
  overflow: hidden;
}

table.fms_photo td a.upload.short {
  height: 250px;
}

table.fms_photo td a.upload::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background-image: url(../images/icon/pic_upload.png);
  background-repeat: no-repeat;
}

table.fms_photo td a .att_pic {
  display: table-cell;
  vertical-align: middle;
}

table.fms_photo td a .att_pic img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

table.fms_photo td a .att_pic1 {
  display: table-cell;
  vertical-align: middle;
}

table.fms_photo td a .att_pic1 img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* -- */

.step-2-container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.sm-info-box {
  flex: 0 0 336px;
  /* max-width: 24.95%; */
  max-width: 336px;
  overflow-y: auto;
}

.sm-info-box table.fms {
}

.sm-info-box table.fms + .btn-wrapper button {
  margin: 0 3px;
}

.sm-info-box table.fms th {
  width: 135px;
  text-align: left;
  padding-left: 18px;
}

.editor-box {
  margin-top: 20px;
  margin-left: 10px;
  flex: 0 0 calc(100% - 336px);
  max-width: calc(100% - 336px);
  border: 1px solid var(--color-border);
  background-color: var(--color-black);
}

.editor-header {
  margin-top: 18px;
  background-color: var(--color-selected);
}

.editor-header ul {
  display: flex;
  /* height: 45px; */
  flex-wrap: wrap;
  align-items: center;
  padding-left: 19px;
  padding-right: 19px;
}

.editor-header > ul > li {
  position: relative;
  margin-left: 4px;
  margin-right: 6px;
}

.editor-header > ul > li.gap {
  margin-left: 4px;
  margin-right: 4px;
}

.editor-header > ul > li.gap + li {
  margin-left: 10px;
}

.editor-header > ul > li.gap:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 18px;
  background-color: #3f444f;
}

.editor-header > ul > li > button,
.editor-header > ul > li > a {
  position: relative;
  display: inline-flex;
  height: 45px;
  align-items: center;
  justify-content: center;
  padding-left: 6px;
  padding-right: 6px;
  color: var(--color-contrast-darker);
  font-size: 12px;
  padding-left: 22px;
  outline: none;
}

.editor-header > ul > li .rmr span {
  border: 1px solid #707784;
  width: 43px;
  height: 22px;
  padding-top: 1px;
  border-radius: 3px;
}

.editor-header > ul > li:first-child {
  margin-left: 0;
}

.editor-header > ul > li:first-child button,
.editor-header > ul > li:first-child a {
  padding-left: 0;
}

.editor-header > ul > li button.reset,
.editor-header > ul > li a.reset {
  padding-left: 6px;
}

.editor-header > ul > li button:hover,
.editor-header > ul > li a:hover {
  /* color: var(--color-white); */
  color: #fad045;
}

.editor-header > ul > li.on > button > i,
.editor-header > ul > li.on > a > i,
.editor-header > ul > li > button:hover i,
.editor-header > ul > li > a:hover i {
  /* filter: brightness(0) invert(1); */
}

.editor-header > ul > li i {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  transform: translateY(-50%);
  background-repeat: no-repeat;
}

.editor-header > ul > li i.undo {
  width: 16px;
  height: 19px;
  background-image: url("../images/editor/editor-undo.png");
}

.editor-header > ul > li i.redo {
  width: 16px;
  height: 19px;
  background-image: url("../images/editor/editor-redo.png");
}

.editor-header > ul > li i.delete {
  width: 15px;
  height: 17px;
  background-image: url("../images/editor/editor-delete.png");
}

.editor-header > ul > li i.obj-select {
  width: 18px;
  height: 18px;
  background-image: url("../images/editor/editor-obj-select.png");
}

.editor-header > ul > li i.rotate-left {
  width: 15px;
  height: 18px;
  background-image: url("../images/editor/edtior-rotate-left.png");
}

.editor-header > ul > li i.rotate-right {
  width: 15px;
  height: 18px;
  background-image: url("../images/editor/edtior-rotate-right.png");
}

.editor-header > ul > li i.func-1 {
  width: 19px;
  height: 9px;
  background-image: url("../images/editor/editor-func-1.png");
}

.editor-header > ul > li i.func-2 {
  width: 18px;
  height: 18px;
  background-image: url("../images/editor/editor-func-2.png");
}

.editor-header > ul > li i.func-3 {
  width: 18px;
  height: 18px;
  background-image: url("../images/editor/editor-func-3.png");
}

.editor-header > ul > li i.text {
  width: 14px;
  height: 15px;
  background-image: url("../images/editor/editor-text.png");
}

.editor-header > ul > li i.erase {
  width: 15px;
  height: 16px;
  background-image: url("../images/editor/editor-erase.png");
}

.editor-header ul li:hover i.undo {
  background-image: url("../images/editor/editor-undo_on.png");
}

.editor-header ul li:hover i.redo {
  background-image: url("../images/editor/editor-redo_on.png");
}

.editor-header ul li:hover i.erase {
  background-image: url("../images/editor/editor-erase_on.png");
}

.editor-header ul li:hover i.obj-select {
  background-image: url("../images/editor/editor-erase_on.png");
}

.editor-header > ul > li .editor-sub {
  display: none;
  position: absolute;
  left: -137px;
  border: 1px soli var(--color-border);
  background-color: #383d48;
}

.editor-header > ul > li.on .editor-sub {
  display: block;
}

.editor-header > ul > li .editor-sub ul {
  display: flex;
  flex-wrap: nowrap;
}

.editor-header > ul > li .editor-sub ul li {
}

.editor-header ul.pen {
  display: flex;
  height: 70px;
  width: 320px;
  padding-left: 19px;
  padding-right: 19px;
}

.editor-header > ul > li .editor-sub ul li button,
.editor-header > ul > li .editor-sub ul li a {
  position: relative;
  display: inline-flex;
  padding-left: 8px;
  padding-right: 8px;
  width: 40px;
  height: 35px;
  align-items: center;
  box-sizing: initial;
}

.editor-header > ul > li .editor-sub ul li button i,
.editor-header > ul > li .editor-sub ul li a i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 40px;
  height: 35px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.editor-header > ul > li .editor-sub ul li i.func-1-1 {
  background-image: url("../images/editor/editor-func-1-1.png");
}

.editor-header > ul > li .editor-sub ul li i.func-1-2 {
  background-image: url("../images/editor/editor-func-1-2.png");
}

.editor-header > ul > li .editor-sub ul li i.func-1-3 {
  background-image: url("../images/editor/editor-func-1-3.png");
}

.editor-header > ul > li .editor-sub ul li i.func-1-4 {
  background-image: url("../images/editor/editor-func-1-4.png");
}

.editor-header > ul > li .editor-sub ul li i.func-1-5 {
  background-image: url("../images/editor/editor-func-1-5.png");
}

.editor-header > ul > li .editor-sub ul li i.func-1-6 {
  background-image: url("../images/editor/editor-func-1-6.png");
}

.editor-header > ul > li .editor-sub ul li *:hover i {
  filter: none;
}

.editor-header ul.rock {
  display: flex;
  height: 80px;
  width: 760px;
  padding-left: 19px;
  padding-right: 19px;
}

.editor-header > ul > li .editor-sub ul.rock li.rock button,
.editor-header > ul > li .editor-sub ul.rock li.rock a {
  position: relative;
  display: inline-flex;
  padding-left: 0px;
  padding-right: 0px;
  width: 80px;
  height: 40px;
  align-items: center;
  box-sizing: initial;
}

.editor-header > ul > li .editor-sub ul.rock li.rock button i,
.editor-header > ul > li .editor-sub ul.rock li.rock a i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 80px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.editor-header > ul > li .editor-sub ul.rock li.rock button i,
.editor-header > ul > li .editor-sub ul.rock li.rock a i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 80px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.editor-header > ul > li .editor-sub ul.rock li.rock i.func-2-1 {
  background-image: url("../images/editor/editor-func-2-1.png");
}
.editor-header > ul > li .editor-sub ul.rock li.rock i.func-2-2 {
  background-image: url("../images/editor/editor-func-2-2.png");
}
.editor-header > ul > li .editor-sub ul.rock li.rock i.func-2-3 {
  background-image: url("../images/editor/editor-func-2-3.png");
}
.editor-header > ul > li .editor-sub ul.rock li.rock i.func-2-4 {
  background-image: url("../images/editor/editor-func-2-4.png");
}
.editor-header > ul > li .editor-sub ul.rock li.rock i.func-2-5 {
  background-image: url("../images/editor/editor-func-2-5.png");
}
.editor-header > ul > li .editor-sub ul.rock li.rock i.func-2-6 {
  background-image: url("../images/editor/editor-func-2-6.png");
}
.editor-header > ul > li .editor-sub ul.rock li.rock i.func-2-7 {
  background-image: url("../images/editor/editor-func-2-7.png");
}
.editor-header > ul > li .editor-sub ul.rock li.rock i.func-2-8 {
  background-image: url("../images/editor/editor-func-2-8.png");
}
.editor-header > ul > li .editor-sub ul.rock li.rock i.func-2-9 {
  background-image: url("../images/editor/editor-func-2-9.png");
}

.editor-header ul.water {
  display: flex;
  height: 90px;
  width: 320px;
  padding-left: 19px;
  padding-right: 19px;
}

.editor-header > ul > li .editor-sub ul.water li.water button,
.editor-header > ul > li .editor-sub ul.water li.water a {
  position: relative;
  display: inline-flex;
  padding-left: 10px;
  padding-right: 10px;
  width: 50px;
  height: 52px;
  align-items: center;
  box-sizing: initial;
}

.editor-header > ul > li .editor-sub ul.water li.rock button i,
.editor-header > ul > li .editor-sub ul.water li.rock a i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 50px;
  height: 52px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.editor-header > ul > li .editor-sub ul.water li.water button i,
.editor-header > ul > li .editor-sub ul.water li.water a i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 50px;
  height: 52px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.editor-header > ul > li .editor-sub ul.water li.water i.func-3-1 {
  background-image: url("../images/editor/editor-func-3-1.png");
}
.editor-header > ul > li .editor-sub ul.water li.water i.func-3-2 {
  background-image: url("../images/editor/editor-func-3-2.png");
}
.editor-header > ul > li .editor-sub ul.water li.water i.func-3-3 {
  background-image: url("../images/editor/editor-func-3-3.png");
}
.editor-header > ul > li .editor-sub ul.water li.water i.func-3-4 {
  background-image: url("../images/editor/editor-func-3-4.png");
}

.editor-header > ul > li .editor-sub ul li *:hover i {
  filter: none;
}

.photo-box {
  padding: 5px;
}

.photo-box img {
  display: block;
  width: 100%;
  border: 1px solid var(--color-border);
}

.photo-list-box {
}

.photo-list-box ul {
  display: flex;
  flex-wrap: wrap;
}

.photo-list-box ul li {
  flex: 0 0 25%;
  width: 25%;
  padding: 5px;
}

.photo-list-box ul li a {
  display: block;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.photo-list-box ul li a img {
  display: block;
  margin: 0 auto;
  height: 100%;
  width: auto;
  object-fit: cover;
}

.photo-list-box ul li.on a {
  border-color: var(--color-contrast-dark);
}

.photo-script-box {
  margin-top: 0;
}

table.fms1 {
  margin-top: 0px;
  border-bottom: 2px solid var(--color-border);
  border-left: 1px solid var(--color-border);
}

table.fms1 {
  width: 100%;
  table-layout: fixed;
}

table.fms1 th,
table.fms1 td {
  border-left: 1px solid #000;
  border-top: 1px solid #000;
  vertical-align: middle;
}

table.fms1 th.long,
table.fms1 td.long {
  height: 170px;
}

table.fms1 th:first-child,
table.fms1 td:first-child {
  border-left: none;
}

table.fms1 tr:first-child th,
table.fms1 tr:first-child td {
  border-top: none;
}

table.fms1 th {
  color: var(--color-contrast-medium);
  text-align: center;
  font-weight: 400;
  background-color: #282c34;
}

table.fms1 td {
  background-color: var(--color-bg-secondary);
  padding-left: 15px;
  padding-right: 15px;
}

table.fms1 td textarea {
  border: 1px solid var(--color-contrast-darker);
  background-color: var(--color-input-bg);
  padding: 5px 10px;
  min-width: 130px;
  color: var(--color-text);
  font-weight: 300;
  outline: none;
}

table.fms1 td textarea.full {
  width: 100%;
  min-width: 100%;
  height: 140px;
  outline: none;
}

table.fms1 td textarea.full1 {
  width: 100%;
  min-width: 100%;
  height: 100px;
  outline: none;
}

table.fms1 td textarea.full2 {
  width: 100%;
  min-width: 100%;
  height: 150px;
  outline: none;
}
/* -- */

/* -- */
.step-3-container {
  margin-top: 20px;
  border: 0px solid var(--color-border);
}

.step-3-container table.fms {
  border: none;
}

.step-3-container table {
  margin-top: 0;
  font-size: 14px;
}

.step-3-container table tr {
  border: 1px solid var(--color-border);
}

.step-3-container table.top-script {
  margin-bottom: 20px;
}

.step-3-container table.top-script th,
.step-3-container table.top-script td {
  height: 41px;
}

.step-3-container table th,
.step-3-container table td {
  height: 49px;
}

.step-3-container table th.left,
.step-3-container table td.left {
  text-align: left;
  padding-left: 20px;
}

.step-3-container table td input.dual {
  border: 1px solid var(--color-contrast-darker);
  background-color: var(--color-input-bg);
  padding: 5px 10px;
  min-width: 150px;
  color: var(--color-text);
  font-weight: 300;
  margin-left: 10px;
  outline: none;
}

.step-3-container table.fms th textarea {
  border: 1px solid var(--color-contrast-darker);
  background-color: var(--color-input-bg);
  padding: 5px 10px;
  width: 100%;
  color: var(--color-text);
  font-weight: 300;
  vertical-align: top;
  height: 410px;
  outline: none;
}

.step-3-container table.fms th.balckline-top,
.step-3-container table.fms td.balckline-top {
  border-top: 1px solid var(--color-border);
  vertical-align: middle;
  height: 51px;
}

.step-3-container table td.short {
  height: 22px;
}

.step-3-container table.total {
  border: none;
  width: 100%;
  table-layout: fixed;
}

.step-3-container table.total th {
  background-color: var(--color-total);
}

.step-3-container table.total td {
  background-color: var(--color-total-2);
}

.step-3-container table.total th,
.step-3-container table.total td {
  font-weight: normal;
  border-left: 1px solid var(--color-border);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  color: var(--color-secondary-bg);
  text-align: center;
}

.step-3-container table.total td strong {
  font-size: 24px;
  font-weight: 900;
}

.step-3-container table.total th:first-child {
  border-left: none;
}

.result-input-box {
}

.result-input-box > p {
  display: flex;
  height: 44px;
  justify-content: center;
  align-items: center;
  background-color: #383d48;
  color: var(--color-text);
}

.result-input-box .result-input {
  padding: 19px;
  background: var(--color-bg-secondary);
}

.result-input-box .result {
  border: 1px solid #3f444f;
  background: #383d48;
  padding: 18px;
  line-height: 1.8;
  width: 100%;
  min-height: 195px;
  font-weight: 300;
}

span.primary {
  color: var(--color-secondary);
}

/* --- */
.thumbnail-list-box {
}

.thumbnail-list-box.null {
  background: #30333d;
  height: 185px;
  border: 1px solid var(--color-border);
  padding: 80px;
}

.thumbnail-list-box.null p {
  font-weight: 300;
  text-align: center;
}

.thumbnail-list-box > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.thumbnail-list-box > ul > li {
  flex: 0 0 49%;
  max-width: 49%;
  margin-top: 15px;
}

.thumbnail-list-box > ul > li:nth-child(1),
.thumbnail-list-box > ul > li:nth-child(2) {
  margin-top: 0;
}

.thumbnail-list-box > ul > li label {
  display: block;
  position: relative;
}

.thumbnail-list-box > ul > li label:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 43px;
  height: 83px;
  background: url("../images/sub/label-bg.png") 0 0 no-repeat;
}

.thumbnail-list-box > ul > li label input[type="radio"] {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
  width: 18px;
  height: 18px;
}

.thumbnail-list-box > ul > li label .thumbnail-list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  height: 185px;
  border: 1px solid var(--color-border);
  background-color: var(--color-bg-secondary);
}

.thumbnail-list-box > ul > li label .thumbnail-list .thumb {
  margin-left: 65px;
}

.thumbnail-list-box > ul > li label .thumbnail-list .thumb img {
  display: block;
  max-height: 151px !important;
  border: 1px solid var(--color-border);
}

.thumbnail-list-box > ul > li label .thumbnail-list .meta {
  margin-left: 30px;
}

.thumbnail-list-box > ul > li label .thumbnail-list .meta ul {
}

.thumbnail-list-box > ul > li label .thumbnail-list .meta ul li {
  display: flex;
  align-items: center;
  height: 26px;
}

.thumbnail-list-box > ul > li label .thumbnail-list .meta ul li span {
}

.thumbnail-list-box
  > ul
  > li
  label
  .thumbnail-list
  .meta
  ul
  li
  span:first-child {
  position: relative;
  color: var(--color-secondary);
  padding-left: 10px;
  flex: 0 0 105px;
  max-width: 105px;
  white-space: nowrap;
}

.thumbnail-list-box
  > ul
  > li
  label
  .thumbnail-list
  .meta
  ul
  li
  span:first-child:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--color-secondary);
}

.thumbnail-list-box > ul > li label .thumbnail-list .meta ul li span + span {
  white-space: nowrap;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 31px;
}

.pagination > ul > li {
  display: flex;
  justify-content: center;
}

.pagination > ul > li a {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  font-size: 13px;
  color: var(--color-contrast-lighter);
  border: 1px solid var(--color-contrast-darker);
  background-color: var(--color-secondary-bg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.pagination > ul > li a.prev {
  border-left: none;
  margin-right: 20px;
}

.pagination > ul > li a.next {
  border-right: none;
  margin-left: 20px;
}

.pagination > ul > li a.first {
  background-image: url("../images/sub/pagination-first.png");
}

.pagination > ul > li a.prev {
  background-image: url("../images/sub/pagination-prev.png");
}

.pagination > ul > li a.next {
  background-image: url("../images/sub/pagination-next.png");
}

.pagination > ul > li a.last {
  background-image: url("../images/sub/pagination-last.png");
}

/* -- */
.data-list-box {
  /* display: flex;
    height: 100%;
    min-height: 100%;
    justify-content: space-between; */
  overflow: hidden;
}
/* 23-08 수정 */
.data-list-box .data-list-nav {
  position: fixed;
  top: 130px;
  left: 20px;
  width: 264px;
  /* height: calc(100% - 103px - 43px - 24px); */
  height: calc(100% - 103px - 24px);
  border: 1px solid var(--color-border);
  background: var(--color-secondary-bg);
  overflow-y: auto;
}

.data-list-box .data-list-view {
  float: right;
  width: calc(100% - 264px - 15px);
  border: 1px solid var(--color-border);
  background-color: var(--color-bg-secondary);
}

.data-list-box .data-list-nav {
  padding-top: 0px;
  padding-bottom: 10px;
  color: var(--color-contrast-dark);
}

.data-list-box .data-list-nav .data-head {
  background-color: var(--color-bg-secondary);
  height: 45px;
  position: relative;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
  line-height: 45px;
  text-align: center;
  font-weight: 400;
  color: var(--color-contrast-medium);
}

.data-list-box .data-list-nav .data-head a {
  position: absolute;
  color: #333;
  font-weight: 500;
  background: var(--color-file);
  top: 10px;
  right: 10px;
  padding: 5px 0;
  width: 60px;
  line-height: 100%;
  border-radius: 3px;
}

.data-list-box .data-list-nav ul {
}

.data-list-box .data-list-nav ul li {
  position: relative;
}

.data-list-box .data-list-nav ul li a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.data-list-box .data-list-nav ul li a span {
  position: relative;
  padding-left: 19px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.data-list-box .data-list-nav ul li a span:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-6px);
  width: 14px;
  height: 12px;
  background: url("../images/sub/folder.png") 0 0 no-repeat;
}

.data-list-box .data-list-nav li ul {
  display: none;
}

.data-list-box .data-list-nav li.on > ul {
  display: block;
}

.data-list-box
  .data-list-nav
  > ul
  > li
  > ul
  > li
  > ul
  > li
  > ul
  > li
  > a
  span:before {
  width: 12px;
  height: 14px;
  background-image: url("../images/sub/file.png");
}

.data-list-box .data-list-nav ul li a span:after {
  content: "";
  position: absolute;
  top: 50%;
  left: -16px;
  transform: translateY(-5px) rotate(-90deg);
  width: 14px;
  height: 7px;
  background: url("../images/sub/folder-fold.png") 0 0 no-repeat;
}

.data-list-box .data-list-nav li.on > a span:after {
  transform: translateY(-50%) rotate(0);
}

.data-list-box
  .data-list-nav
  > ul
  > li
  > ul
  > li
  > ul
  > li
  > ul
  > li
  > a
  span:after {
  display: none;
}

/* 1depth */
.data-list-box .data-list-nav ul li a {
  display: flex;
  height: 25px;
  align-items: center;
  color: var(--color-contrast-dark);
}

.data-list-box .data-list-nav > ul > li > a {
  padding-left: 23px;
}

/* 2depth */
.data-list-box .data-list-nav > ul > li > ul > li > a {
  padding-left: 40px;
}

/* 3depth */
.data-list-box .data-list-nav > ul > li > ul > li > ul > li > a {
  padding-left: 57px;
}

/* 4depth */
.data-list-box .data-list-nav > ul > li > ul > li > ul > li > ul > li > a {
  padding-left: 77px;
}

.data-list-box .data-list-nav > ul > li > ul > li > ul > li > ul > li > a span {
}

.data-list-box .data-list-nav ul li a:hover {
  background-color: #2c313a;
}

.data-list-box .data-list-view .tab-nav-box {
  padding: 6px 0 0 0;
}

.data-list-box .data-list-view .tab-nav-box ul {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 19px;
  height: 38px;
}

.data-list-box .data-list-view .tab-nav-box ul:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-border);
}

.data-list-box .data-list-view .tab-nav-box ul li {
  margin-left: 5px;
}

.data-list-box .data-list-view .tab-nav-box ul li:first-child {
  margin-left: 0;
}

.data-list-box .data-list-view .tab-nav-box ul li a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 38px;
  color: var(--color-contrast-darker);
  border: 1px solid var(--color-border);
  background-color: var(--color-bg);
  padding: 0 28px;
}

.data-list-box .data-list-view .tab-nav-box ul li.on a {
  border-bottom: none;
  color: var(--color-contrast-medium);
  background-color: var(--color-bg-secondary);
}

.data-list-box .data-list-view .tab-content-box {
  display: none;
  align-items: center;
  flex-wrap: nowrap;
  padding: 0 20px 20px 8px;
}

.data-list-box .data-list-view .tab-content-box.on {
  display: block;
}

.data-list-box .data-list-view .tab-content-box > ul {
  display: flex;
  flex-wrap: wrap;
}

.data-list-box .data-list-view .tab-content-box > ul li {
  flex: 0 0 25%;
  max-width: 25%;
  padding-left: 12px;
  margin-top: 20px;
}

.data-list-box .data-list-view .tab-content-box > ul li a {
  display: block;
  text-align: center;
}

.data-list-box .data-list-view .tab-content-box > ul li a .thumb {
}

.data-list-box .data-list-view .tab-content-box > ul li a .thumb img {
  display: block;
  width: 100%;
}

.data-list-box .data-list-view .tab-content-box > ul li a .meta {
  background-color: var(--color-secondary-bg);
  color: var(--color-contrast-medium);
  display: flex;
  height: 28px;
  line-height: 20px;
  padding-bottom: 3px;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.data-3d-box {
  margin-top: 20px;
  border: 1px solid var(--color-border);
}

.data-3d-box p {
  display: flex;
  height: 35px;
  justify-content: center;
  align-items: center;
  color: var(--color-contrast-light);
  background-color: var(--color-secondary-bg);
}

.data-3d-box .data-3d img {
  display: block;
  width: 100%;
}

/* -- */
.ui-jqgrid {
  border-radius: 0 !important;
  background: none !important;
}

.ui-jqgrid .ui-jqgrid-caption {
  display: none;
}

.ui-jqgrid .ui-jqgrid-htable th {
  font-weight: 400;
  background: #383d48;
  color: var(--color-contrast-medium);
  font-size: 12px;
}

.ui-jqgrid .ui-jqgrid-htable th:last-child {
  border-right: 0px;
}

.ui-widget-content .ui-state-default {
  border: 1px solid #181a1f;
}

.ui-widget.ui-widget-content {
  border: none;
}

.ui-jqgrid tr.jqgrow td {
  background: #2f333d;
  color: #fafbff;
  border-right-width: 0;
  border-bottom-color: #3f444f;
  padding-top: 5px !important;
  padding-bottom: 5px !important;
  height: 37px;
  font-size: 13px;
}

.ui-jqgrid-view {
  background: #2f333d;
}

.ui-jqgrid .ui-jqgrid-htable th {
  padding-top: 5px;
  padding-bottom: 5px;
}

a.grid_modify {
  display: block;
  margin: 0 auto;
  text-align: center;
  width: 46px;
  height: 20px;
  font-size: 11px;
  color: #fff !important;
  background: #5a7dd1;
  line-height: 22px;
  border-radius: 2px;
}

a.grid_del {
  display: block;
  margin: 0 auto;
  text-align: center;
  width: 46px;
  height: 20px;
  font-size: 11px;
  color: #fff !important;
  background: #ff6670;
  line-height: 22px;
  border-radius: 2px;
}

.ui-jqgrid .ui-jqgrid-pager {
  background: #21252b;
  color: #6494ed;
  height: 40px;
}

#pg_pager {
  height: 40px;
}

.ui-jqgrid .ui-pg-button:not(.ui-state-disabled) {
  border-radius: 0;
}

.ui-jqgrid .ui-pg-button:hover {
  padding: 0 1px;
}

.ui-jqgrid .ui-pg-button:not(.ui-state-disabled) span {
  border: 1px solid #707784;
  margin: 0;
  width: 20px !important;
  height: 20px !important;
}

.ui-jqgrid .ui-pg-selbox {
  min-width: 45px;
  border-radius: 0;
  border: 1px solid #707784;
  padding-left: 10px;
  height: 20px;
  background-color: transparent;
  color: #fafbff;
  margin-left: 15px;
  background: transparent url("../images/sub/jqgrid-select-arr.png") 90% 50%
    no-repeat;
}
/* 23-08 수정 */
.ui-jqgrid .ui-pg-selbox option {
  color: #222;
}

.ui-widget select {
  max-width: 130px;
  width: 100% !important;
}
/* 23-08 수정 */
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  background: #171b21 !important;
  border: none;
  color: #fafbff;
}

.ui-jqgrid tr.jqgrow.ui-state-highlight td {
  background: #171b21 !important;
  border: none;
  color: #fafbff;
}

.ui-jqgrid .ui-icon.ui-icon-seek-first {
  background: url("../images/sub/jqgrid-page-first.png") 50% 50% no-repeat;
}

.ui-jqgrid .ui-icon.ui-icon-seek-prev {
  background: url("../images/sub/jqgrid-page-prev.png") 50% 50% no-repeat;
}

.ui-jqgrid .ui-icon.ui-icon-seek-next {
  background: url("../images/sub/jqgrid-page-next.png") 50% 50% no-repeat;
}

.ui-jqgrid .ui-icon.ui-icon-seek-end {
  background: url("../images/sub/jqgrid-page-last.png") 50% 50% no-repeat;
}

.ui-jqgrid #input_pager {
  color: #fafbff;
}
.ui-jqgrid #input_pager input.ui-pg-input {
  border-radius: 0;
  border: 1px solid #707784;
  text-align: center;
  color: #fafbff;
  height: 20px;
}

.ui-jqgrid .ui-separator {
  border: none !important;
  margin: 0 10px !important;
}

.ui-jqgrid .ui-icon {
  width: 20px !important;
  height: 20px !important;
  border: 1px solid #707784;
}

.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
  color: #fafbff;
}

/* CODE MANAGEMENT*/
.order-wrapper {
  position: relative;
  width: 100%;
  height: 900px;
  padding: 20px;
}
.order-wrapper .order-header {
  position: relative;
  height: 40px;
}
.order-wrapper .order-header p {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  font-weight: 400;
}
.order-wrapper .order-header a.add {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 80px;
  height: 28px;
  line-height: 24px;
  border: 1px solid var(--color-border);
  background-color: var(--color-primary);
  color: #fff;
  text-align: center;
  font-size: 13px;
  border-radius: 3px;
}
.order-wrapper .order-header a.save {
  position: absolute;
  top: 50%;
  right: 90px;
  transform: translateY(-50%);
  width: 80px;
  height: 28px;
  line-height: 24px;
  border: 1px solid var(--color-border);
  background-color: var(--color-primary);
  color: #fff;
  text-align: center;
  font-size: 13px;
  border-radius: 3px;
}

.order-list-wrapper {
  position: relative;
  height: 830px;
}
.order-list-header {
  position: relative;
  padding-right: 15px;
  background: #393d48;
  border: 1px solid var(--color-border);
}
.order-list-header ul {
  display: table;
  width: 100%;
  table-layout: fixed;
}
.order-list-header ul li {
  display: table-cell;
  vertical-align: middle;
  color: #fff;
  font-weight: 400;
  padding: 8px 0;
  word-break: break-all;
}
.order-list-header ul li:nth-child(1) {
  width: 100px;
  text-align: center;
}
.order-list-header ul li:nth-child(2) {
  width: auto;
  text-align: center;
}
.order-list-header ul li:nth-child(3) {
  width: 150px;
  text-align: center;
}
.order-list-header ul li:nth-child(4) {
  width: 100px;
  text-align: center;
}
.order-list-header ul li:nth-child(5) {
  width: 100px;
  text-align: center;
}

.order-list-body {
  position: absolute;
  top: 35px;
  left: 0;
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  border: 1px solid var(--color-border);
  height: calc(100% - 35px);
}
.order-list-body table {
  width: 100%;
  table-layout: fixed;
}
.order-list-body table tr td {
  vertical-align: middle;
  padding: 8px 10px;
  border-left: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.order-list-body table tr td:nth-child(1) {
  width: 100px;
  text-align: center;
  border-left: 0px;
}
.order-list-body table tr td:nth-child(2) {
  width: auto;
  text-align: center;
}
.order-list-body table tr td:nth-child(3) {
  width: 150px;
  text-align: center;
}
.order-list-body table tr td:nth-child(4) {
  width: 100px;
  text-align: center;
}
.order-list-body table tr td:nth-child(5) {
  width: 100px;
  text-align: center;
}
.order-list-body table tr:first-child td .btn-order-up {
  display: none;
}
.order-list-body table tr:last-child td .btn-order-down {
  display: none;
}

.btn-order-modify,
.btn-order-del {
  display: inline-block;
  width: 45px;
  height: 22px;
  line-height: 21px;
  border-radius: 2px;
  font-size: 12px;
  color: #fff;
}
.btn-order-modify {
  background: #607ed4;
}
.btn-order-del {
  background: #f6656e;
}

.btn-order-down,
.btn-order-up {
  position: relative;
  top: 2px;
  display: inline-block;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: 0 0;
}
.btn-order-down {
  background-image: url("../images/icon/bg-order-down.png");
}
.btn-order-up {
  background-image: url("../images/icon/bg-order-up.png");
}

/* TOAST MSG BOX */
.toast_msg_box {
  clear: both;
  position: relative;
  padding: 10px;
  border: 1px solid;
  border-radius: 3px;
  margin: 10px auto;
  max-width: 520px;
}
.toast_msg_box.yellow {
  border-color: #f7e7c4;
  background: #f9eed5;
  color: #755721;
}
.toast_msg_box.blue {
  border-color: #cce2f9;
  background: #daebfb;
  color: #255084;
}
.toast_msg_box.red {
  border-color: #f2d4d4;
  background: #f6e1e1;
  color: #6d3540;
}
.toast_msg_box p {
  padding-right: 30px;
}
.toast_msg_box a.close_msg_box {
  position: absolute;
  top: 7px;
  right: 10px;
  width: 20px;
  height: 20px;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.toast_msg_box.yellow a.close_msg_box {
  background-image: url("../images/icon/close_toast_msg_box_yellow.png");
}
.toast_msg_box.blue a.close_msg_box {
  background-image: url("../images/icon/close_toast_msg_box_blue.png");
}
.toast_msg_box.red a.close_msg_box {
  background-image: url("../images/icon/close_toast_msg_box_red.png");
}

/* SELECT */
select {
  border: 1px solid #717785;
  color: #fff;
  font-weight: 300;
  padding: 5px 9px;
  width: 150px !important;
  outline: none;
}
.select-selected {
  color: #64696e;
  padding: 10px 5px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0) transparent;
  cursor: pointer;
  user-select: none;
}
.select-selected:after {
  position: absolute;
  content: "";
  top: 12px;
  right: 12px;
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-color: #fff transparent transparent transparent;
}

/* MODAL LAYER */
.modal {
  position: fixed;
  top: -9999px;
  left: -9999px;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}
.modal.on {
  top: 0;
  left: 0;
}
.modal .modal_layer {
  position: relative;
  border: 2px solid #000;
  width: 650px;
  background: #fff;
  left: 50%;
  top: 30%;
  z-index: 10000;
  margin-left: -325px;
}
.modal .modal_layer .modal_header {
  padding: 14px 16px;
  border-bottom: 1px solid #374c64;
  background: #393d48;
  overflow: hidden;
}
.modal .modal_layer .modal_header .tit {
  font-size: 14px;
  color: #fff;
}
.modal .modal_layer .modal_close {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 11px;
  right: 10px;
  z-index: 10;
}
.modal .modal_layer .modal_close a {
  display: block;
  width: 20px;
  height: 20px;
  background: url("../images/icon/icon_modal_close.png") 50% 50% no-repeat;
  text-indent: -9999px;
}
.modal .modal_layer .modal_body {
  position: relative;
  padding: 0;
}
.modal .modal_layer .modal_body p.tit {
  font-size: 16px;
  color: #222;
  text-align: center;
  padding-top: 40px;
}

.modal.modal_alarm .modal_layer {
  width: 400px;
}
.modal.modal_alarm .modal_layer .modal_body {
  padding: 40px 20px;
}
.modal.modal_alarm .modal_layer .alarm_msg {
  padding: 0;
}
.modal.modal_alarm .modal_layer .alarm_msg p {
  text-align: center;
  font-size: 14px;
  color: #333;
  font-weight: 400;
  margin-bottom: 20px;
}
.modal.modal_alarm .modal_layer .btn_wrap {
  padding: 20px 0 0;
  text-align: center;
}
.modal.modal_alarm .modal_layer .btn_wrap .btn {
  display: inline-flex;
  position: relative;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.2;
  font-size: var(--btn-font-size, 1em);
  justify-content: center;
  align-items: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
  color: var(--color-white);
  cursor: pointer;
  overflow: hidden;
  background-color: var(--color-primary);
  border: 0px;
  min-width: 100px;
  padding-top: 9px;
  padding-bottom: 9px;
  padding-left: 22px;
  padding-right: 22px;
  border-radius: 4px;
  margin-left: 8px;
}
.modal.modal_alarm .modal_layer .btn_wrap .btn.btn_cancle {
  background: #babdc4;
  color: #fff;
  margin-left: 0px;
}
.modal.modal_alarm .modal_layer .btn_wrap .btn.btn_confirm {
  background: var(--color-primary);
  color: #fff;
}

.modal.modal_passwd .modal_layer {
  width: 400px;
}
.modal.modal_passwd .modal_layer .modal_body {
  padding: 40px 40px 30px;
}
.modal.modal_passwd .modal_layer .modal_body p {
  text-align: center;
  font-size: 14px;
  color: #333;
  font-weight: 400;
  margin-bottom: 15px;
}
.modal.modal_passwd .modal_layer .modal_body p.caution {
  text-align: center;
  font-size: 13px;
  color: #777;
  font-weight: 300;
  margin-top: 10px;
}
.modal.modal_passwd .modal_layer .modal_body .field-form {
  padding: 20px 0 10px;
  text-align: center;
  border-top: 1px solid #2f333d;
  border-bottom: 1px solid #2f333d;
}
.modal.modal_passwd .modal_layer .modal_body .field-form .field-box {
  margin-bottom: 10px;
}
.modal.modal_passwd .modal_layer .modal_body .field-form .field-box label {
  position: relative;
  font-size: 13px;
  color: #777;
  font-weight: 400;
  text-align: left;
  padding: 5px 20px 5px 0;
  text-align: left;
}
.modal.modal_passwd .modal_layer .modal_body .field-form .field-box label.long {
  padding: 5px 8px 5px 0;
}
.modal.modal_passwd .modal_layer .modal_body .field-form .field-box input.txt {
  border: 1px solid #babdc4;
  background-color: #fff;
  padding: 5px 10px;
  width: 200px;
  color: var(--color-text);
  font-weight: 300;
  color: #333;
  outline: none;
}

.modal.modal_passwd .modal_layer .btn_wrap {
  padding: 20px 0 0;
  text-align: center;
}
.modal.modal_passwd .modal_layer .btn_wrap .btn {
  display: inline-flex;
  position: relative;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.2;
  font-size: var(--btn-font-size, 1em);
  justify-content: center;
  align-items: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
  color: var(--color-white);
  cursor: pointer;
  overflow: hidden;
  background-color: var(--color-primary);
  border: 0px;
  min-width: 100px;
  padding-top: 9px;
  padding-bottom: 9px;
  padding-left: 22px;
  padding-right: 22px;
  border-radius: 4px;
  margin-left: 8px;
}
.modal.modal_passwd .modal_layer .btn_wrap .btn.btn_cancle {
  background: #babdc4;
  color: #fff;
  margin-left: 0px;
}
.modal.modal_passwd .modal_layer .btn_wrap .btn.btn_confirm {
  background: var(--color-primary);
  color: #fff;
}

.modal.modal_common .modal_layer {
  width: 450px;
}
.modal.modal_common .modal_layer .modal_body {
  padding: 40px 40px 30px;
}
.modal.modal_common .modal_layer .modal_body p {
  text-align: center;
  font-size: 14px;
  color: #333;
  font-weight: 400;
  margin-bottom: 15px;
}
.modal.modal_common .modal_layer .modal_body p.caution {
  text-align: center;
  font-size: 13px;
  color: #777;
  font-weight: 300;
  margin-top: 10px;
}
.modal.modal_common .modal_layer .modal_body .field-form {
  padding: 20px 0 10px;
  text-align: center;
  border-top: 1px solid #2f333d;
  border-bottom: 1px solid #2f333d;
}
.modal.modal_common .modal_layer .modal_body .field-form .field-box {
  margin-bottom: 10px;
}
.modal.modal_common .modal_layer .modal_body .field-form .field-box label {
  position: relative;
  font-size: 13px;
  color: #777;
  font-weight: 400;
  text-align: left;
  padding: 5px 20px 5px 0;
  text-align: left;
}
.modal.modal_common .modal_layer .modal_body .field-form .field-box label.long {
  padding: 5px 8px 5px 0;
}
.modal.modal_common .modal_layer .modal_body .field-form .field-box input.txt {
  border: 1px solid #babdc4;
  background-color: #fff;
  padding: 5px 10px;
  width: 200px;
  color: var(--color-text);
  font-weight: 300;
  color: #333;
  outline: none;
}

.modal.modal_common .modal_layer .btn_wrap {
  padding: 20px 0 0;
  text-align: center;
}
.modal.modal_common .modal_layer .btn_wrap .btn {
  display: inline-flex;
  position: relative;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.2;
  font-size: var(--btn-font-size, 1em);
  justify-content: center;
  align-items: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
  color: var(--color-white);
  cursor: pointer;
  overflow: hidden;
  background-color: var(--color-primary);
  border: 0px;
  min-width: 100px;
  padding-top: 9px;
  padding-bottom: 9px;
  padding-left: 22px;
  padding-right: 22px;
  border-radius: 4px;
  margin-left: 8px;
}
.modal.modal_common .modal_layer .btn_wrap .btn.btn_cancle {
  background: #babdc4;
  color: #fff;
  margin-left: 0px;
}
.modal.modal_common .modal_layer .btn_wrap .btn.btn_confirm {
  background: var(--color-primary);
  color: #fff;
}

/* ITEM-BOX */
.item-box {
  display: table;
  border: 1px solid #babdc4;
  width: 320px;
  margin: 0 auto;
  margin-bottom: 10px;
}
.item-box div.tit {
  display: table-cell;
  padding: 5px 0;
  text-align: center;
  background: #eef0f5;
  color: #333;
  width: 120px;
}
.item-box div.field {
  display: table-cell;
  border-left: 1px solid #babdc4;
  width: 200px;
}
.item-box div.field input.txt {
  border: 0px solid #babdc4;
  background-color: #fff;
  padding: 7px 10px;
  width: 100%;
  color: var(--color-text);
  font-weight: 300;
  color: #333;
  outline: none;
}
.item-box div.field select {
  border: 0px;
  width: 100% !important;
  color: #333;
  font-weight: 300;
  padding: 7px 10px;
  outline: none;
  background: #fff url("../images/icon/icon-select-arr.png") 95% 50% no-repeat;
}
.item-box div.field .select-selected {
  color: #64696e;
  padding: 10px 5px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0) transparent;
  cursor: pointer;
  user-select: none;
}
.item-box div.field .select-selected:after {
  position: absolute;
  content: "";
  top: 12px;
  right: 12px;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-color: #000 transparent transparent transparent;
}
.item-box div.field ul {
  width: 100%;
  display: table;
  height: 22px;
}
.item-box div.field ul li {
  width: 50%;
  display: table-cell;
  padding-top: 3px;
}
.item-box div.field ul li span {
  color: #333;
  margin-left: 10px;
  padding: 5px 0;
}

.item-box div.field ul li input[type="radio"] {
  position: relative;
  margin-left: 10px;
}

/* */
/* --- */
.mapping-detail-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  padding: 18px;
}

.mapping-detail-box.title {
  height: 50px;
}

.mapping-detail-box + .mapping-detail-box {
  margin-top: 20px;
}

.mapping-detail-box p {
  padding-left: 25px;
  background: url("../images/icon/icon-mapping-detail.png") 0 0 no-repeat;
  color: var(--color-contrast-medium);
}

.mapping-detail-box .btn-wrapper {
  margin: 0;
  padding-right: 0;
}

.mapping-detail-box .detail-table {
  width: 100%;
  background-color: #f1f3f4;
  padding: 29px;
}

.mapping-detail-box .detail-table table {
  width: 100%;
  table-layout: fixed;
  border-bottom: 1px solid #c8cdd2;
  border-left: 1px solid #c8cdd2;
}

.mapping-detail-box .detail-table table th {
}

.mapping-detail-box .detail-table table th,
.mapping-detail-box .detail-table table td {
  font-weight: normal;
  border-top: 1px solid #c8cdd2;
  border-right: 1px solid #c8cdd2;
}

.mapping-detail-box .detail-table table th.title {
  background-color: #e0e2e6 !important;
  color: #333333;
  font-size: 18px;
  text-align: center;
  height: 42px;
  font-weight: normal;
}

.mapping-detail-box .detail-table table th {
  color: #777777;
  background-color: #eff2f4;
  text-align: center;
  padding: 12px 15px 11px;
}

.mapping-detail-box .detail-table table th.sub-title {
  height: 42px;
}

.mapping-detail-box .detail-table table td {
  color: #333333;
  text-align: left;
  background-color: #fff;
  padding: 12px 15px 11px;
}

.mapping-detail-box .detail-table table td.align-right {
  position: relative;
  width: 100%;
  text-align: right;
}

.mapping-detail-box .detail-table .image-box,
.mapping-detail-box .detail-table .image-box img {
  display: block;
  margin: 0 auto;
}

.detail-inner-box {
  font-size: 14px;
  display: flex;
  width: 100%;
  background: #fff;
  justify-content: space-between;
  border: 1px solid #c8cdd2;
  border-top: none;
}

.detail-inner-box .detail-inner {
  flex: 0 0 50%;
  max-width: 50%;
  border-right: 1px solid #c8cdd2;
}

.detail-inner-box .detail-inner + .detail-inner {
  border-right: none;
}

.detail-inner-box .detail-inner * {
  box-sizing: initial;
}

.detail-inner-box .detail-inner table {
  border-left: none;
  border-bottom: none;
}

.detail-inner-box .detail-inner table th,
.detail-inner-box .detail-inner table td {
  padding: 0;
  height: 40px;
}

.detail-inner-box .detail-inner table tr th:last-child,
.detail-inner-box .detail-inner table tr td:last-child {
  border-right: none;
}

.detail-inner-box .detail-inner table tr:first-child th,
.detail-inner-box .detail-inner table tr:first-child td {
  border-top: none;
}

.detail-inner-box .detail-inner table tr:last-child td {
  border-bottom: none;
}

.detail-inner-box .detail-inner table tr th {
  background: #e0e2e6;
}

.detail-inner-box .detail-inner table tr td {
  color: #333;
  padding-left: 18px;
}

.detail-inner-box .detail-inner table tr td[rowspan="5"]:last-child {
  border-bottom: none;
}

.mapping-detail-box .detail-table table tr td.align-center {
  text-align: center;
  padding-right: 18px;
}

.mapping-detail-box .detail-table table tr td span.primary {
  color: #537cce;
}

.mapping-detail-box .detail-table table tr td span.circle {
  position: relative;
  left: -9px;
  display: block;
  margin: 0 auto;
  width: 20px;
  height: 20px;
  background: url("../images/icon/icon-circle.png") 0 0 no-repeat;
}

.mapping-detail-box .detail-table table tr td span.sm {
  font-size: 12px;
}

table tr td.no-padding {
  padding: 0 !important;
}

table tr td.vertical-top {
  vertical-align: top !important;
}

table tr td.picture {
  text-align: center !important;
  height: 370px !important;
}

table tr td.no-padding img {
  display: block;
  margin: 0 auto;
}

table + .inner-info-title {
  border-top: 1px solid #c8cdd2;
}

.inner-info-title {
  display: flex;
  align-items: center;
  background-color: #eff2f4;
  border-bottom: 1px solid #c8cdd2;
  height: 40px;
  padding-left: 18px;
  padding-right: 18px;
  color: #777777;
}

.inner-info-value {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-bottom: 1px solid #c8cdd2;
  height: 40px;
  padding-left: 35px;
  padding-right: 18px;
  color: #333333;
  justify-content: space-between;
}

.inner-info-value span.primary {
  color: #537cce;
}

.inner-info-value.rmr_score {
  border-bottom: none;
  padding: 20px;
}

.inner-info-value.rmr_score span {
  line-height: 1.8;
}

.daterangepicker .calendar-table th,
.daterangepicker .calendar-table td {
  color: var(--color-bg) !important;
}
.daterangepicker .calendar-table td.active {
  color: #fff !important;
}

/* ///// */
.editor-draw-wrpper {
  margin-top: 24px;
  border: 1px solid #181a1f;
  background: #393d48;
}

.editor-header {
  margin-top: 0;
}

.editor-draw-box {
}

.editor-draw-box p {
  color: #d7dae0;
  background-color: #282c34;
  height: 36px;
  display: flex;
  align-items: center;
  padding-left: 24px;
}

.editor-draw-box .draw-box {
  padding: 14px 14px 5px;
}

.editor-draw-box.editor-draw-check {
  display: flex;
  align-items: center;
  height: 63px;
  background-color: #171b21;
}

.editor-draw-box.editor-draw-check .check-wrap {
  display: flex;
  width: 100%;
  height: 33px;
  align-items: center;
  margin: 0 26px;
  background: #393e4a;
  padding-left: 7px;
}

.editor-draw-box.editor-draw-check .check-wrap label {
  position: relative;
  display: flex;
  width: 100%;
  height: 33px;
  align-items: center;
}

.editor-draw-box.editor-draw-check .check-wrap label input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
}

.editor-draw-box.editor-draw-check .check-wrap label span {
  padding-left: 30px;
  background: url("../images/icon/icon-check-off.png") 0 0 no-repeat;
}

.editor-draw-box.editor-draw-check .check-wrap label input:checked + span {
  background: url("../images/icon/icon-check-on.png") 0 0 no-repeat;
}

.editor-draw-box .draw-box .rock-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -23px;
}

.editor-draw-box .draw-box .rock-list li {
  width: 80px;
  margin-left: 23px;
}

.editor-draw-box .draw-box .rock-list li button {
  display: flex;
  width: 80px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: #333333;
  margin-bottom: 5px;
  outline: none;
}

.editor-draw-box .draw-box ul li i {
  display: block;
}

.editor-draw-box .draw-box .rock-list li button.rock-1 {
  background: #c9c9c9;
}
.editor-draw-box .draw-box .rock-list li button.rock-2 {
  background: #78a3de;
}
.editor-draw-box .draw-box .rock-list li button.rock-3 {
  background: #faf99e;
}
.editor-draw-box .draw-box .rock-list li button.rock-4 {
  background: #afa28b;
}
.editor-draw-box .draw-box .rock-list li button.rock-5 {
  background: #96be80;
}
.editor-draw-box .draw-box .rock-list li button.rock-6 {
  background: #4aa9cc;
}
.editor-draw-box .draw-box .rock-list li button.rock-7 {
  background: #f5ba72;
}
.editor-draw-box .draw-box .rock-list li button.rock-8 {
  background: #c25b12;
}
.editor-draw-box .draw-box .rock-list li button.rock-none {
  background: #fff;
}

.editor-draw-box .draw-box ul.func-list-1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.editor-draw-box .draw-box ul.func-list-1 li {
}
.editor-draw-box .draw-box ul.func-list-1 li button {
  width: 54px;
  height: 54px;
  outline: none;
}
.editor-draw-box .draw-box ul.func-list-1 li button i {
  margin: 0 auto;
}

.editor-draw-box .draw-box ul li i[class^="func-1"] {
  width: 40px;
  height: 20px;
}
.editor-draw-box .draw-box ul li i.func-1-1 {
  background-image: url("../images/editor/editor-func-1-1.png");
}
.editor-draw-box .draw-box ul li i.func-1-2 {
  background-image: url("../images/editor/editor-func-1-2.png");
}
.editor-draw-box .draw-box ul li i.func-1-3 {
  background-image: url("../images/editor/editor-func-1-3.png");
}
.editor-draw-box .draw-box ul li i.func-1-4 {
  background-image: url("../images/editor/editor-func-1-4.png");
}
.editor-draw-box .draw-box ul li i.func-1-5 {
  background-image: url("../images/editor/editor-func-1-5.png");
}

.editor-draw-box .draw-box ul.func-list-3 {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.editor-draw-box .draw-box ul.func-list-3 li {
}
.editor-draw-box .draw-box ul.func-list-3 li button {
  width: 63px;
  height: 69px;
  outline: none;
}
.editor-draw-box .draw-box ul.func-list-3 li button i {
  margin: 0 auto;
}

.editor-draw-box .draw-box ul li i[class^="func-3"] {
  width: 50px;
  height: 52px;
}
.editor-draw-box .draw-box ul.func-list-3 li i.func-3-1 {
  background-image: url("../images/editor/editor-func-3-1.png");
}
.editor-draw-box .draw-box ul.func-list-3 li i.func-3-2 {
  background-image: url("../images/editor/editor-func-3-2.png");
}
.editor-draw-box .draw-box ul.func-list-3 li i.func-3-3 {
  background-image: url("../images/editor/editor-func-3-3.png");
}
.editor-draw-box .draw-box ul.func-list-3 li i.func-3-4 {
  background-image: url("../images/editor/editor-func-3-4.png");
}

.editor-draw-box .draw-box ul li button.on {
  position: relative;
}
.editor-draw-box .draw-box ul li button.on:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #fad045;
}

/* 23-08 */
.data-list-view {
  position: relative;
}
.data-list-view .data-list-btns {
  position: absolute;
  top: 5px;
  right: 20px;
  margin: 0;
  padding-right: 0;
}
.data-list-view .data-list-btns button {
  background: #393e4a;
  margin-left: 5px;
}
.data-list-view .data-list-btns button:first-of-type {
  margin-left: 0;
}

.data-box-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  border-bottom: 1px solid #181a1f;
  margin-right: -20px;
  margin-left: -8px;
}
.data-box-head .head-title {
  padding-left: 20px;
}
.data-box-head .head-btn {
  padding-right: 20px;
  margin-top: 0;
  display: flex;
  align-items: flex-start;
}
.data-box-head .head-btn .btn {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  height: 28px;
  padding: 0 19px;
  background: #181a1f;
  border: 1px solid #537cce;
  border-radius: 1px;
  color: #537cce;
  margin-left: 6px;
}
.data-box-head .head-btn .btn:first-of-type {
  margin-left: 0;
}
.data-box-head .head-btn .btn span {
  line-height: 1;
}
.data-box-head .head-btn .btn.btn_prev img {
  padding-right: 12px;
}
.data-box-head .head-btn .btn.btn_next img {
  padding-left: 12px;
}

.data-box-content {
  display: flex;
  width: 100%;
}
.content-box {
  width: calc(100% - 600px);
  flex-shrink: 0;
}
.content-box.box-3d {
  width: 600px;
  margin-left: -8px;
  border-right: 1px solid #181a1f;
}
.content-box.box-planar {
  position: relative;
}
.content-box.box-3d.full {
  width: 100%;
}
.content-box .content-box-head {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  position: relative;
  background: #21252b;
  border-bottom: 1px solid #181a1f;
}

.content-box-head .box-head-btns {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
}
.content-box-head .box-head-btns .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #21252b;
  width: 40px;
  height: 40px;
  padding: 0;
  min-width: auto;
  border-radius: 0;
  border-right: 0;
  border-bottom: 0;
  border-top: 0;
}
.content-box-head .box-head-btns .btn.btn-zoom-in {
  display: none;
}

.data-list-wrap {
  display: flex;
  border-right: 1px solid #181a1f;
  flex-wrap: nowrap;
  overflow: auto;
}
.data-list-wrap img {
  vertical-align: top;
}
.data-list-wrap .data-list-item {
  border-right: 1px solid #181a1f;
  flex-shrink: 0;
  width: 120px;
}

.data-list-wrap .data-list-item .item-top {
  text-align: center;
  border-bottom: 1px solid #181a1f;
}
.data-list-wrap .data-list-item .item-top .top-title {
  padding-top: 23px;
  padding-bottom: 8px;
  font-size: 13px;
  color: #9ea5b4;
}
.data-list-wrap .data-list-item .item-top .item-top-lipids {
  /* padding: 16px 0 13px; */
  padding: 100px 0 13px;
  margin-left: -65px;
  position: relative;
  width: 10px;
  height: 271px;
}
.data-list-wrap .data-list-item .item-top .item-top-lipids::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: #626978;
}
.data-list-wrap .data-list-item .item-bottom {
  text-align: center;
  border-top: 1px solid #181a1f;
  border-bottom: 1px solid #181a1f;
}
.data-list-wrap .data-list-item .item-bottom .bottom-title {
  padding-top: 23px;
  padding-bottom: 8px;
  font-size: 13px;
  color: #9ea5b4;
  position: relative;
}
.data-list-wrap .data-list-item .item-bottom .bottom-title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 23px;
  background: #626978;
}

.data-list-wrap .data-list-item.active .item-top {
  background: #0e1015;
}
.data-list-wrap .data-list-item.active .item-bottom {
  background: #0e1015;
}
/* 231127 수정 */
.data-list-wrap .data-list-item .item-middle {
  background: url(../images/sample/bg_data.png) repeat-x;
  height: 310px;
  display: inline-flex;
  align-items: center;
  perspective: 1000px;
}
.data-list-wrap .data-list-item .item-middle img {
  transform: rotate3d(0, 1, 0, -35deg);
  transition: transform 0.5s;
}
.data-list-wrap .data-list-item .item-middle:hover img {
  transform: rotate3d(0, 1, 0, 0deg);
}
/* 231127 수정 */
.data-list-wrap .data-list-item.active .item-middle {
  position: relative;
}
.data-list-wrap .data-list-item.active .item-middle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 20px;
  background: url(../images/icon/icon_logo_active.png) no-repeat center center;
}

/* 231128 수정 */
.box-planar .prev_btn {
  position: absolute;
  top: 50%;
  left: 0;
  width: 25px;
  height: 50px;
  margin-top: -30px;
}
.box-planar .next_btn {
  position: absolute;
  top: 50%;
  right: 0;
  width: 25px;
  height: 50px;
  margin-top: -30px;
}

.btn-wrapper.center {
  display: flex;
}

.rock-patton-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.rock-patton-list li {
  width: 50px;
  margin-bottom: 10px;
}
.rock-patton-list li button {
  display: block;
  width: 50px;
  text-align: center;
}
.rock-patton-list li button i {
  display: block;
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #2d2e38;
}

.rock-patton-list li button i.rock-patton-1 {
  background-image: url(../images/icon/icon_stone_patton_01.png);
}
.rock-patton-list li button i.rock-patton-2 {
  background-image: url(../images/icon/icon_stone_patton_02.png);
}
.rock-patton-list li button i.rock-patton-3 {
  background-image: url(../images/icon/icon_stone_patton_03.png);
}
.rock-patton-list li button i.rock-patton-4 {
  background-image: url(../images/icon/icon_stone_patton_04.png);
}
.rock-patton-list li button i.rock-patton-5 {
  background-image: url(../images/icon/icon_stone_patton_05.png);
}
.rock-patton-list li button i.rock-patton-6 {
  background-image: url(../images/icon/icon_stone_patton_06.png);
}
.rock-patton-list li button i.rock-patton-7 {
  background-image: url(../images/icon/icon_stone_patton_07.png);
}
.rock-patton-list li button i.rock-patton-8 {
  background-image: url(../images/icon/icon_stone_patton_08.png);
}
.rock-patton-list li button i.rock-patton-9 {
  background-image: url(../images/icon/icon_stone_patton_09.png);
}
.rock-patton-list li button i.rock-patton-10 {
  background-image: url(../images/icon/icon_stone_patton_10.png);
}
.rock-patton-list li button i.rock-patton-11 {
  background-image: url(../images/icon/icon_stone_patton_11.png);
}
.rock-patton-list li button i.rock-patton-12 {
  background-image: url(../images/icon/icon_stone_patton_12.png);
}
.rock-patton-list li button i.rock-patton-13 {
  background-image: url(../images/icon/icon_stone_patton_13.png);
}
.rock-patton-list li button i.rock-patton-14 {
  background-image: url(../images/icon/icon_stone_patton_14.png);
}
.rock-patton-list li button i.rock-patton-15 {
  background-image: url(../images/icon/icon_stone_patton_15.png);
}
.rock-patton-list li button i.rock-patton-16 {
  background-image: url(../images/icon/icon_stone_patton_16.png);
}
.rock-patton-list li button i.rock-patton-17 {
  background-image: url(../images/icon/icon_stone_patton_17.png);
}
.rock-patton-list li button i.rock-patton-18 {
  background-image: url(../images/icon/icon_stone_patton_18.png);
}
.rock-patton-list li button i.rock-patton-19 {
  background-image: url(../images/icon/icon_stone_patton_19.png);
}
.rock-patton-list li button i.rock-patton-20 {
  background-image: url(../images/icon/icon_stone_patton_20.png);
}

.rock-patton-list li span {
  display: inline-block;
  margin-top: 7px;
  font-size: 13px;
  color: #d7dae0;
  text-align: center;
  width: 100%;
  white-space: nowrap;
}
.editor-box {
  background: none;
  border: 0;
}
.photo-script-box {
  margin-top: 10px;
  border-top: 1px solid #181a1f;
  border-right: 1px solid #181a1f;
}
.editor-img {
  display: flex;
}

.editor-draw {
  width: calc(100% - 325px);
}
.editor-draw .draw-title {
  writing-mode: vertical-lr;
  width: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.editor-draw .draw-top-img {
  display: flex;
  border: 1px solid #181a1f;
}
.editor-draw .draw-top-img .draw-inner {
  border-left: 1px solid #181a1f;
  text-align: center;
  padding: 40px 20px;
  background: #0e1015;
  width: 100%;
}
/* 231127 수정 */
.editor-draw .draw-top-img .draw-inner .draw-content {
  width: 655px;
  background: #fff;
  margin: 0 auto;
}
/*
.editor-draw .draw-top-img .draw-inner .draw-content img {
  vertical-align: top;
}
*/
/* //231127 수정 */
.editor-draw .draw-bot-img {
  display: flex;
  border: 1px solid #181a1f;
  margin-top: 10px;
}
.editor-draw .draw-bot-img .draw-inner {
  width: 100%;
  /* height: 888px; */
  border-left: 1px solid #181a1f;
}
/* 231127 수정 */
.editor-draw .draw-bot-img .draw-inner .draw-content {
  width: 655px;
  background: #fff;
  margin: 0 auto;
}
.editor-draw .draw-bot-img .draw-inner .draw-content img {
  vertical-align: top;
}
/* //231127 수정 */

.editor-draw .draw-bot-img .draw-inner img {
  width: 100%;
  vertical-align: top;
}

.editor-img .editor-list {
  width: 315px;
  box-sizing: border-box;
  border: 1px solid #181a1f;
  margin-left: 10px;
  height: 1002px;
  overflow: auto;
  position: relative;
  padding-bottom: 30px;
  background: #0e1015;
  box-sizing: border-box;
}

.editor-img .editor-list .editor-list-title {
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #181a1f;
  border-right: 1px solid #181a1f;
  background: #282c34;
  font-size: 15px;
}
.editor-img .editor-list .editor-list-item {
  padding-top: 20px;

  text-align: center;
}

.editor-img .editor-list .editor-list-item p {
  margin-top: 5px;
}
.editor-img .editor-list .editor-list-item p:first-of-type {
  margin-top: 0;
}
.editor-img .editor-list .editor-list-item p.item-title {
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #282c34;
  color: #fff;
  font-size: 13px;
}

.jcrop-holder {
  margin-left: auto;
  margin-right: auto;
}

.loadgo-wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background: #151515;
  opacity: 0.8;
  /* background: red; */
  text-align: center;
}
.loadgo-wrapper.on {
  display: block;
}
.loadgo-wrapper .lodago-box {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* 20200915 CSS 추가 */
#header.popup_view {
  border-bottom: 1px solid var(--color-border);
}

#content-wrap.popup_view {
  padding-top: 120px;
}

.mapping-view-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
}

.mapping-view-box .detail-table {
  width: 100%;
  background-color: var(--color-bg-secondary);
}

.mapping-view-box .detail-table table {
  width: 100%;
  table-layout: fixed;
  border: 0px;
}

.mapping-view-box .detail-table table th,
.mapping-view-box .detail-table table td {
  font-weight: normal;
  border-top: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
}

.mapping-view-box .detail-table table th:last-child,
.mapping-view-box .detail-table table td:last-child {
  border-right: 0px;
}

.mapping-view-box .detail-table table td {
  padding: 8px;
}

.mapping-view-box .detail-table table th {
  color: #fff;
  background-color: var(--color-secondary-bg);
  text-align: center;
  padding: 12px 15px 11px;
  border-top: 0px;
}

table tr td img {
  display: block;
  margin: 0 auto;
}

.tbm .slide-area {
  position: absolute;
  left: 59px;
  font-size: 36px;
  color: var(--color-contrast-medium);
}
.tbm .slide-area.left {
  top: 303px;
}
.tbm .slide-area.right {
  top: 583px;
}
.tbm .tbm-area-left {
  width: 90%;
  margin: 0px 0px 10px 184px;
}
.tbm .tbm-area-right {
  width: 90%;
  margin: 10px 0px 0px 184px;
}
.tbm .tbm-area-left .thumb img {
  width: 100%;
  height: 281px; /*object-fit: contain;*/
}
.tbm .tbm-area-right .thumb img {
  width: 100%;
  height: 281px; /*object-fit: contain;*/
}
.tbm .tbm-area-left .meta {
  background-color: var(--color-secondary-bg);
  color: var(--color-contrast-medium);
  display: flex;
  height: 28px;
  line-height: 20px;
  padding-bottom: 3px;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tbm .tbm-area-right .meta {
  background-color: var(--color-secondary-bg);
  color: var(--color-contrast-medium);
  display: flex;
  height: 28px;
  line-height: 20px;
  padding-bottom: 3px;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tbm .btn-wrapper img {
  border-radius: 5px;
  cursor: pointer;
}
.natm .btn-wrapper img {
  border-radius: 5px;
  cursor: pointer;
}

.natm .slide-area {
  position: absolute;
  left: 59px;
  font-size: 36px;
  color: var(--color-contrast-medium);
}
.natm .slide-area.left {
  top: 303px;
}
.natm .tbm-area-left {
  width: 100%;
}
.natm .tbm-area-left .thumb img {
  width: 100%;
  height: 281px; /*object-fit: contain;*/
}
.natm .tbm-area-left .meta {
  background-color: var(--color-secondary-bg);
  color: var(--color-contrast-medium);
  display: flex;
  height: 28px;
  line-height: 20px;
  padding-bottom: 3px;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tbm .tbm-area-left {
  display: "none";
}
.tbm .tbm-area-right {
  display: "none";
}
.natm .tbm-area-left {
  display: "none";
}

.tbm .tbm-area-left.slick-initialized {
  display: "block";
}
.tbm .tbm-area-right.slick-initialized {
  display: "block";
}
.natm .tbm-area-left.slick-initialized {
  display: "block";
}
.modal_tbm .thumb-inner.left {
  float: left;
  width: 49%;
  margin-right: 4px;
}
.modal_tbm .thumb-inner.right {
  float: right;
  width: 49%;
}

.threedimensional-key {
  position: absolute;
  width: 100px;
  height: 100px;
  border: none;
  padding: 0;
  z-index: 1000;
  opacity: 0.5;
  outline: 0;
}

.three-up {
  background: url(../images/common/up.png) 50% 50% no-repeat;
  top: calc(703px + env(safe-area-inset-top));
  right: 95px;
}
.three-down {
  background: url(../images/common/down.png) 50% 50% no-repeat;
  top: calc(855px + env(safe-area-inset-top));
  right: 95px;
}
.three-left {
  background: url(../images/common/left.png) 50% 50% no-repeat;
  top: calc(778px + env(safe-area-inset-top));
  right: 173px;
}
.three-right {
  background: url(../images/common/right.png) 50% 50% no-repeat;
  top: calc(778px + env(safe-area-inset-top));
  right: 17px;
}

.prev-img{position:absolute;left: 314px;top: 304px;}
.next-img{position:absolute;left: 1269px;top: 304px;}

.img-modal .modal_layer{position:relative; solid #000;width: 610px !important; height: 473px !important;background:#fff;z-index:10000;}
.img-modal .modal_layer .modal_header{padding:14px 16px;border-bottom:1px solid #374c64;background:#393d48;overflow:hidden;border-bottom: 0;}

.img-modal .modal_layer .modal_header .tit{font-size:14px;color:#fff;}
.img-modal .modal_layer .modal_close{position:absolute;width:20px;height:20px;top:11px;right:10px;z-index:10;}
.img-modal .modal_layer .modal_close a{display:block;width:20px;height:20px;background:url("../images/icon/icon_modal_close.png") 50% 50% no-repeat;text-indent:-9999px;}
.img-modal .modal_layer .modal_body{position:relative;padding:0;}
.img-modal .modal_layer .modal_body p.tit{font-size:16px;color:#222;text-align:center;padding-top:40px;}
.img-modal.modal_common .modal_layer{width:650px;}
.img-modal.modal_common .modal_layer .modal_body p{text-align:center;font-size:14px;color:#333;font-weight:400;margin-bottom: 15px;}
.img-modal.modal_common .modal_layer .modal_body p.caution{text-align:center;font-size:13px;color:#777;font-weight:300;margin-top:10px;}
.img-modal.modal_common .modal_layer .modal_body .field-form {padding: 20px 0 10px;text-align:center;border-top: 1px solid #2f333d;border-bottom: 1px solid #2f333d;}
.img-modal.modal_common .modal_layer .modal_body .field-form .field-box {margin-bottom: 10px;}
.img-modal.modal_common .modal_layer .modal_body .field-form .field-box label {position:relative;font-size: 13px;color: #777;font-weight: 400;text-align: left;padding: 5px 20px 5px 0;text-align:left;}
.img-modal.modal_common .modal_layer .modal_body .field-form .field-box label.long{padding: 5px 8px 5px 0;}
.img-modal.modal_common .modal_layer .modal_body .field-form .field-box input.txt{border: 1px solid #babdc4;background-color: #fff;padding: 5px 10px;width: 200px;color: var(--color-text);font-weight: 300;color: #333;outline: none;}
.img-modal.modal_common .modal_layer .modal_body img{width: 610px !important; height: 425px !important;}


.img-modal.modal_common .modal_layer .btn_wrap{padding:20px 0 0;text-align:center;}
.img-modal.modal_common .modal_layer .btn_wrap .btn {display: inline-flex;position: relative;white-space: nowrap;text-decoration: none;line-height: 1.2;font-size: var(--btn-font-size, 1em);justify-content: center;align-items: center;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;transition: background-color .2s, color .2s, box-shadow .2s;color: var(--color-white);cursor: pointer;overflow: hidden;background-color: var(--color-primary);border: 0px;min-width: 100px;padding-top: 9px;padding-bottom: 9px;padding-left: 22px;padding-right: 22px;border-radius: 4px;margin-left: 8px;}
.img-modal.modal_common .modal_layer .btn_wrap .btn.btn_cancle {background:#babdc4;color:#fff;margin-left:0px;}
.img-modal.modal_common .modal_layer .btn_wrap .btn.btn_confirm {background:var(--color-primary);color:#fff;}


.rotate-90 {
  transform: rotate(90deg);
}


.h-image-container {
  width: 250px; /* 원하는 너비 */
  height: 69px; /* 원하는 높이 */
  transform: rotate(90deg); /* 90도 회전 */
  overflow: hidden; /* `div` 범위를 벗어나는 이미지 숨김 */
  border: 2px solid white;
  background-color: white;
  z-index: 10;
  position: absolute;
}

.h-image-container img {
  width: 100%; /* 이미지가 `div`의 너비에 맞게 조정 */
  height: auto; /* 이미지 비율 유지 */
}

.editor-draw .draw-bot-img .draw-inner .white-background {
    background-color: white;
	  width: 900px;
    height: 250px;
  	margin: 0 auto;
}



.editor-draw .draw-top-img .draw-inner .background2 {
  width: 100%;
  display: flex; /* Flexbox를 활성화합니다. */
  justify-content: center; /* 수평 중앙 정렬 */
  align-items: center; /* 수직 중앙 정렬 */
}

.center-box {
  width: 900px; /* 너비를 800px 설정 */
  height: 660px; /* 높이를 800px로 설정 */
  /* 배경색 또는 테두리를 추가하여 요소가 보이게 할 수 있습니다. */
  background-color: #f0f0f0; /* 예시 배경색 */
}


.black-color {
  color: black /* 원하는 색상으로 변경 가능 */
}

.blue-color {
  color: blue /* 원하는 색상으로 변경 가능 */
}

#non-face span {
  color: black;
  display: block;
  width: 100%;
  word-wrap: break-word; 
  word-break: break-all; /* 단어가 너무 길 때 줄바꿈 */
}

.left-padding {
  color: black;
  display: block;
  width: 100%;
  word-wrap: break-word; 
  word-break: break-all; /* 단어가 너무 길 때 줄바꿈 */
  text-align: left;
  padding-left: 10px;
}

.msg-padding {
  color: blue;
  display: block;
  width: 100%;
  word-wrap: break-word; 
  word-break: break-all; /* 단어가 너무 길 때 줄바꿈 */
  text-align: left;
}


.large-font {
  font-size: 1.3em;
}


.span-padding {
  padding-left: 10px;
}


textarea.comment {
  border: 1px solid var(--color-contrast-darker);
  background-color: var(--color-input-bg);
  min-width: 130px;
  color: var(--color-text);
  font-weight: 300;
  outline: none;
  width: calc(100% - 110px);
  padding-left: 5px;
  padding-top: 5px;

}


.table-gap {
  height: 1px;
  background-color: #000;
}
.table-gap + table {
  border-top-width: 1px !important;
}


.border-right {
  border-right: 1px solid #3f444f !important;
}

table th.large-title, table td.large-title {
  font-size: 20px;
  font-weight: 800;
  padding: 7px 0;
}
table th.big-title, table td.big-title {
  font-size: 17px;
  font-weight: 800;
  padding: 7px 0;
}

table.border-weight-all th, table.border-weight-all td {
  border-width: 2px;
  border-right-width: 1px;
}
table.border-bottom-none th, table.border-bottom-none td {
  border-bottom: 0;
}

table th.inner-title, table td.inner-title {
  font-size: 16px;
  font-weight: 800;
  padding: 5px 0;
}

table th.align-left, table td.align-left {
  text-align: left !important;
  padding-left: 4px !important;
}

table th img.check, table td img.check {
  display: block;
  margin: 0 auto;
  width: 15px;
  height: 15px;
}


table.report.td-center td {
  text-align: center;
}

.sign-row .sign {
  justify-content: right; /* 수평 중앙 정렬 */
  align-items: center; /* 수직 중앙 정렬 */
}

.sign span, .sign img{
  display: inline-block; /* 인라인 블록으로 설정하여 텍스트와 이미지의 수평 정렬을 맞춤 */
  vertical-align: middle; /* 수직 중앙 정렬 */
}

.sign-row {
  height: 50px; /* 원하는 높이로 설정 */
}

.small-font {
  font-size: 0.9em;
}


.limited-height {
  max-height: 500px; /* 이미지의 최대 높이를 200px로 설정 */
}


.cell-content {
  padding: 5px;
  height: 35px;
  width: 100%;
  box-sizing: border-box;
}

div.rock-1 {
  background-color: #c9c9c9 !important;
}


div.rock-2 {
  background-color: #78a3de;
}
div.rock-3 {
  background-color: #faf99e;
}
div.rock-4 {
  background-color: #afa28b;
}
div.rock-5 {
  background-color: #96be80;
}
div.rock-6 {
  background-color: #4aa9cc;
}
div.rock-7 {
  background-color: #f5ba72;
}
div.rock-8 {
  background-color: #c25b12;
}
div.rock-none {
  background-color: #fff;
}


#cropImgUrl, #svgContainer{
  display: flex;
  justify-content: center;
  align-items: center;
}


.center-btn{
  display: flex;
  justify-content: center;
  align-items: center;
}






.modal.modal_crop .modal_layer {
  width: 700px;
}
.modal.modal_crop .modal_layer .modal_body {
  padding: 40px 40px 30px;
}
.modal.modal_crop .modal_layer .modal_body p {
  text-align: center;
  font-size: 14px;
  color: #333;
  font-weight: 400;
  margin-bottom: 15px;
}
.modal.modal_crop .modal_layer .modal_body p.caution {
  text-align: center;
  font-size: 13px;
  color: #777;
  font-weight: 300;
  margin-top: 10px;
}
.modal.modal_crop .modal_layer .modal_body .field-form {
  padding: 20px 0 10px;
  text-align: center;
  border-top: 1px solid #2f333d;
  border-bottom: 1px solid #2f333d;
}
.modal.modal_crop .modal_layer .modal_body .field-form .field-box {
  margin-bottom: 10px;
}
.modal.modal_crop .modal_layer .modal_body .field-form .field-box label {
  position: relative;
  font-size: 13px;
  color: #777;
  font-weight: 400;
  text-align: left;
  padding: 5px 20px 5px 0;
  text-align: left;
}
.modal.modal_crop .modal_layer .modal_body .field-form .field-box label.long {
  padding: 5px 8px 5px 0;
}
.modal.modal_crop .modal_layer .modal_body .field-form .field-box input.txt {
  border: 1px solid #babdc4;
  background-color: #fff;
  padding: 5px 10px;
  width: 200px;
  color: var(--color-text);
  font-weight: 300;
  color: #333;
  outline: none;
}

.modal.modal_crop .modal_layer .btn_wrap {
  padding: 20px 0 0;
  text-align: center;
}
.modal.modal_crop .modal_layer .btn_wrap .btn {
  display: inline-flex;
  position: relative;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.2;
  font-size: var(--btn-font-size, 1em);
  justify-content: center;
  align-items: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
  color: var(--color-white);
  cursor: pointer;
  overflow: hidden;
  background-color: var(--color-primary);
  border: 0px;
  min-width: 100px;
  padding-top: 9px;
  padding-bottom: 9px;
  padding-left: 22px;
  padding-right: 22px;
  border-radius: 4px;
  margin-left: 8px;
}
.modal.modal_crop .modal_layer .btn_wrap .btn.btn_cancle {
  background: #babdc4;
  color: #fff;
  margin-left: 0px;
}
.modal.modal_crop .modal_layer .btn_wrap .btn.btn_confirm {
  background: var(--color-primary);
  color: #fff;
}

.folder-box a:after {
    content: '';
    margin-top: 7px;
    margin-left: 10px;
    background: url(../images/common/bg_arrow_down.png) 0 0 no-repeat;
    -webkit-transform: translateY(-50%) rotate(0);
    transform: translateY(-50%) rotate(0);
    width: 13px;
    height: 9px;
    cursor: pointer;
}

.folder-box a.close:after {
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}


.editor-draw-box a {
  color: #d7dae0;
  background-color: #282c34;
  height: 36px;
  display: flex;
  align-items: center;
  padding-left: 24px;
}



ul.options li {
  display: flex; /* Flexbox를 활용한 정렬 */
  align-items: center; /* 세로 방향 중앙 정렬 */
}


.height-span {
  display: inline-block; /* 인라인 블록으로 설정 */
  height: 30%; /* 원하는 높이 설정 */
  width: 50px;
  justify-content: center; /* 수평 중앙 정렬 */
  align-items: center;
  margin: auto;
}



.editor-draw-box .draw-box2 {
  padding: 5px 5px 5px !important;
}


.editor-draw-box .draw-box .jc-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -2px;
}

.editor-draw-box .draw-box .jc-list2 {
  display: flex;
  flex-wrap: wrap;
  margin-left: -2px;
}

.editor-draw-box .draw-box .jc-list li {
  width: 75px;
  margin-left: 5px;
}

.editor-draw-box .draw-box .jc-list2 li {
  width: 55px;
  margin-left: 5px;
}

.editor-draw-box .draw-box .jc-list li button {
  display: flex;
  width: 75px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  margin-bottom: 5px;
  outline: none;
}

.editor-draw-box .draw-box .jc-list2 li button {
  display: flex;
  width: 55px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  margin-bottom: 5px;
  outline: none;
}

.editor-draw-box .draw-box .jc-list li button.rock-1 {
  background: #A9A9A9;
}

.editor-draw-box .draw-box .jc-list2 li button.rock-1 {
  background: #A9A9A9;
}


.editor-draw-box .draw-box .jc-list li button.rock-2 {
  background: #A9C9C9;
}

.editor-draw-box .draw-box .jc-list li button.rock-3 {
  background: #A9B111;
}


.rock-patton-list li button i.rock-patton-new-1 {
  background-image: url(../images/icon/pattern1.png);
}
.rock-patton-list li button i.rock-patton-new-2 {
  background-image: url(../images/icon/pattern2.png);
}
.rock-patton-list li button i.rock-patton-new-3 {
  background-image: url(../images/icon/pattern3.png);
}
.rock-patton-list li button i.rock-patton-new-4 {
  background-image: url(../images/icon/pattern4.png);
}
.rock-patton-list li button i.rock-patton-new-5 {
  background-image: url(../images/icon/pattern5.png);
}


#pre-gs-container {
  padding: 10px; /* 내부 패딩을 추가 */
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
}

#pre-gs-container img {
  max-width: 100%;
  max-height: 100%;
  border: 1px solid red; /* 테두리를 빨간색으로 설정 */
}