@charset "UTF-8";
/*-------------------------------------------------------------------------------------------------------------
    Explain : 지앤파트너 통합관리자
    File : common.scss
    Date : 2024.12.30
    Ver : 1.0.0
/*------------------------------------------------------------------------------------------------------------*/
/* font */
/* nav */
/* input */
/* checkbox */
/* dashboard */
/* button */
/* 최종 파일 넘길 때 /assets////img/ */
/* images */
/* icon */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable-dynamic-subset.min.css");
/* font */
/* scroll */
/* layout */
/* components */
.checkbox {
  position: relative;
}
.checkbox input[type=checkbox] {
  display: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.checkbox input[type=checkbox]:checked + label::before {
  border-color: #435ebe;
  background-color: #435ebe;
}
.checkbox input[type=checkbox]:checked + label::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 4px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_check.svg");
          mask-image: url("/assets/img/icon/ico_check.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 12px;
  height: 12px;
}
.checkbox input[type=checkbox]:disabled + label {
  pointer-events: none;
  -webkit-filter: none;
          filter: none;
  opacity: 0.6;
}
.checkbox label {
  cursor: pointer;
}
.checkbox label::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border: 3px solid #e1e3ea;
  border-radius: 4px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}

.radio {
  position: relative;
}
.radio input[type=radio] {
  display: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.radio input[type=radio]:checked + label::before {
  border: 5px solid #435ebe;
  background: #ffffff;
}
.radio input[type=radio]:disabled + label {
  pointer-events: none;
  -webkit-filter: none;
          filter: none;
  opacity: 0.6;
}
.radio label {
  cursor: pointer;
  font-family: "Pretendard Variable";
  font-weight: 500;
  color: #222222;
  font-size: 14px;
}
.radio label::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border: 3px solid #e1e3ea;
  border-radius: 50%;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
  vertical-align: -5px;
  margin-right: 4px;
}

.pagination {
  margin: 18px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.pagination li {
  cursor: pointer;
  width: 26px;
  height: 26px;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.pagination li a {
  display: block;
  text-align: center;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  color: #555555;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.pagination li:hover a {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #435ebe;
}
.pagination li.active {
  background: #435ebe;
}
.pagination li.active a {
  color: #ffffff;
}
.pagination li.disabled {
  pointer-events: none;
  cursor: default;
}
.pagination li.disabled a {
  color: #aaa;
}
.pagination li:first-child a {
  background-color: #555555;
  -webkit-mask-image: url("/assets/img/icon/ico_arrow_left.svg");
          mask-image: url("/assets/img/icon/ico_arrow_left.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 16px;
}
.pagination li:first-child.disabled a {
  background-color: #aaa;
}
.pagination li:last-child a {
  background-color: #555555;
  -webkit-mask-image: url("/assets/img/icon/ico_arrow_right.svg");
          mask-image: url("/assets/img/icon/ico_arrow_right.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 16px;
}
.pagination li:last-child.disabled a {
  background-color: #aaa;
}

.toggle input[type=checkbox] {
  display: none;
}
.toggle input[type=checkbox] + label {
  position: relative;
  display: block;
  width: 60px;
  height: 28px;
  border-radius: 20px;
  background: #d4d4d4;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.toggle input[type=checkbox] + label::before {
  content: "OFF";
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: "Pretendard Variable";
  font-weight: 500;
  color: #ffffff;
}
.toggle input[type=checkbox] + label::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 100%;
  background: #ffffff;
  position: absolute;
  top: 50%;
  left: 3px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.toggle input[type=checkbox]:checked + label {
  background: #435ebe;
}
.toggle input[type=checkbox]:checked + label::before {
  content: "ON";
  right: 30px !important;
}
.toggle input[type=checkbox]:checked + label::after {
  background: #ffffff;
  left: auto;
  right: 3px !important;
}
.toggle input[type=checkbox]:disabled + label {
  border: 1px solid #e9ecef;
  background: #e9ecef;
  cursor: default;
}
.toggle input[type=checkbox]:disabled + label::after {
  background: #aaa;
}

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

html {
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
      -ms-text-size-adjust: none;
          text-size-adjust: none;
  width: 100%;
  height: 100%;
  font-size: 12px;
}

body {
  width: 100%;
  height: 100vh;
  font-size: 12px;
  cursor: default;
}

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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 12px;
  font-family: "Pretendard Variable", sans-serif;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

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

a {
  display: block;
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

button {
  background: transparent;
  border: 0;
  outline: 0;
  padding: 0;
  cursor: pointer;
}

input {
  background: transparent;
  border: 0;
  outline: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

em {
  font-style: normal;
}

.wrap {
  position: relative;
  width: 100%;
  height: 100%;
  background: #ffffff;
  overflow: hidden;
}
.wrap .contents {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.wrap .contents .sidebar {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  max-height: 100vh;
  height: 100%;
  z-index: 2;
}
.wrap .contents .sidebar.none {
  display: none;
}
.wrap .contents .sidebar.none + .container .page_heading {
  display: none;
}
.wrap .contents .sidebar .group_menu {
  position: relative;
  width: 100px;
  height: 100%;
  padding: 16px 10px;
  background: #ffffff;
  border-right: 1px solid #e5e7eb;
  z-index: 2;
}
.wrap .contents .sidebar .group_menu ul {
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}
.wrap .contents .sidebar .group_menu ul::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.wrap .contents .sidebar .group_menu ul::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.wrap .contents .sidebar .group_menu ul::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.wrap .contents .sidebar .group_menu ul::-webkit-scrollbar-track {
  background: #ffffff;
}
.wrap .contents .sidebar .group_menu ul::-webkit-scrollbar-button {
  display: none;
}
.wrap .contents .sidebar .group_menu ul li {
  position: relative;
  text-align: center;
}
.wrap .contents .sidebar .group_menu ul li + li:not(:nth-child(2)) {
  margin-top: 16px;
}
.wrap .contents .sidebar .group_menu ul li.user_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  cursor: default;
  height: 40px;
  margin-bottom: 10px;
}
.wrap .contents .sidebar .group_menu ul li.user_info div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.wrap .contents .sidebar .group_menu ul li.user_info div::before {
  content: "";
  display: inline-block;
  background-color: #25396f;
  -webkit-mask-image: url("/assets/img/icon/ico_user_circle.svg");
          mask-image: url("/assets/img/icon/ico_user_circle.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
}
.wrap .contents .sidebar .group_menu ul li.user_info div span {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 18px;
  color: #25396f;
  margin-right: 4px;
}
.wrap .contents .sidebar .group_menu ul li .menu_link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 14px 16px;
  border-radius: 8px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 15px;
  color: #25396f;
  text-align: center;
}
.wrap .contents .sidebar .group_menu ul li .menu_link::before {
  content: "";
  display: inline-block;
}
.wrap .contents .sidebar .group_menu ul li .menu_link:hover {
  background: #f0f1f5;
}
.wrap .contents .sidebar .group_menu ul li.common .menu_link::before {
  background-color: #25396f;
  -webkit-mask-image: url("/assets/img/icon/ico_common.svg");
          mask-image: url("/assets/img/icon/ico_common.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 22px;
  height: 22px;
}
.wrap .contents .sidebar .group_menu ul li.gn .menu_link::before {
  background-color: #25396f;
  -webkit-mask-image: url("/assets/img/icon/ico_gn.svg");
          mask-image: url("/assets/img/icon/ico_gn.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 22px;
  height: 22px;
}
.wrap .contents .sidebar .group_menu ul li.marketing .menu_link::before {
  background-color: #25396f;
  -webkit-mask-image: url("/assets/img/icon/ico_marketing.svg");
          mask-image: url("/assets/img/icon/ico_marketing.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 22px;
  height: 22px;
}
.wrap .contents .sidebar .group_menu ul li.capital .menu_link::before {
  background-color: #25396f;
  -webkit-mask-image: url("/assets/img/icon/ico_capital.svg");
          mask-image: url("/assets/img/icon/ico_capital.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 22px;
  height: 22px;
}
.wrap .contents .sidebar .group_menu ul li.active .menu_link {
  background: #435ebe;
  color: #ffffff;
}
.wrap .contents .sidebar .group_menu ul li.active .menu_link::before {
  background-color: #ffffff;
}
.wrap .contents .sidebar .page_menu {
  position: relative;
  width: 250px;
  height: 100%;
  overflow-y: auto;
  padding: 16px 10px;
  background: #ffffff;
  border-right: 1px solid #e5e7eb;
  z-index: 1;
  margin-left: 0;
  -webkit-transition: margin-left 0.3s ease-in-out;
  transition: margin-left 0.3s ease-in-out;
  /* 슬라이드 효과 */
}
.wrap .contents .sidebar .page_menu::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.wrap .contents .sidebar .page_menu::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.wrap .contents .sidebar .page_menu::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.wrap .contents .sidebar .page_menu::-webkit-scrollbar-track {
  background: #ffffff;
}
.wrap .contents .sidebar .page_menu::-webkit-scrollbar-button {
  display: none;
}
.wrap .contents .sidebar .page_menu .menu_search_box {
  width: 100%;
  position: relative;
  position: relative;
  margin-bottom: 10px;
}
.wrap .contents .sidebar .page_menu .menu_search_box label {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #435ebe;
}
.wrap .contents .sidebar .page_menu .menu_search_box input {
  width: 100%;
  height: 40px;
  border-radius: 8px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.wrap .contents .sidebar .page_menu .menu_search_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.wrap .contents .sidebar .page_menu .menu_search_box input::-moz-placeholder {
  color: #6c757d;
}
.wrap .contents .sidebar .page_menu .menu_search_box input:-ms-input-placeholder {
  color: #6c757d;
}
.wrap .contents .sidebar .page_menu .menu_search_box input::-ms-input-placeholder {
  color: #6c757d;
}
.wrap .contents .sidebar .page_menu .menu_search_box input::placeholder {
  color: #6c757d;
}
.wrap .contents .sidebar .page_menu .menu_search_box input:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.wrap .contents .sidebar .page_menu .menu_search_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.wrap .contents .sidebar .page_menu .menu_search_box input:disabled, .wrap .contents .sidebar .page_menu .menu_search_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.wrap .contents .sidebar .page_menu .menu_search_box.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.wrap .contents .sidebar .page_menu .menu_search_box.date .calendar {
  position: relative;
}
.wrap .contents .sidebar .page_menu .menu_search_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_calendar.svg");
          mask-image: url("/assets/img/icon/ico_calendar.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.wrap .contents .sidebar .page_menu .menu_search_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.wrap .contents .sidebar .page_menu .menu_search_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.wrap .contents .sidebar .page_menu .menu_search_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.wrap .contents .sidebar .page_menu .menu_search_box.search .input_search_btn {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.wrap .contents .sidebar .page_menu .menu_search_box.search .input_search_btn:hover {
  width: 20px;
  height: 20px;
}
.wrap .contents .sidebar .page_menu .menu_search_box input {
  padding-right: 34px;
}
.wrap .contents .sidebar .page_menu .menu_search_box .menu_search_btn {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  background-color: #7c8db5;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.wrap .contents .sidebar .page_menu .menu_search_box .menu_search_btn:hover {
  background-color: #435ebe;
}
.wrap .contents .sidebar .page_menu > ul > li {
  position: relative;
}
.wrap .contents .sidebar .page_menu > ul > li.hide {
  display: none;
}
.wrap .contents .sidebar .page_menu > ul > li + li {
  margin-top: 10px;
}
.wrap .contents .sidebar .page_menu > ul > li .slide_link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 14px 16px;
  border-radius: 8px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.wrap .contents .sidebar .page_menu > ul > li .slide_link::before {
  content: "";
  display: inline-block;
  margin-right: 10px;
}
.wrap .contents .sidebar .page_menu > ul > li .slide_link::after {
  content: "";
  display: inline-block;
  background-color: #aaa;
  -webkit-mask-image: url("/assets/img/icon/ico_arrow_right.svg");
          mask-image: url("/assets/img/icon/ico_arrow_right.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.wrap .contents .sidebar .page_menu > ul > li .slide_link.no_sub::after {
  content: none;
}
.wrap .contents .sidebar .page_menu > ul > li .slide_link.show::after {
  background-color: #7c8db5;
  -webkit-mask-image: url("/assets/img/icon/ico_arrow_down.svg");
          mask-image: url("/assets/img/icon/ico_arrow_down.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 15px;
  height: 15px;
}
.wrap .contents .sidebar .page_menu > ul > li .slide_link span {
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 15px;
  color: #25396f;
}
.wrap .contents .sidebar .page_menu > ul > li .slide_link:hover {
  background: #f0f1f5;
}
.wrap .contents .sidebar .page_menu > ul > li .slide_link.bookmark::before {
  background-color: #7c8db5;
  -webkit-mask-image: url("/assets/img/icon/ico_star_fill.svg");
          mask-image: url("/assets/img/icon/ico_star_fill.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
}
.wrap .contents .sidebar .page_menu > ul > li .slide_link.common::before {
  background-color: #7c8db5;
  -webkit-mask-image: url("/assets/img/icon/ico_dashboard.svg");
          mask-image: url("/assets/img/icon/ico_dashboard.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
}
.wrap .contents .sidebar .page_menu > ul > li .slide_link.user::before {
  background-color: #7c8db5;
  -webkit-mask-image: url("/assets/img/icon/ico_user.svg");
          mask-image: url("/assets/img/icon/ico_user.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
}
.wrap .contents .sidebar .page_menu > ul > li .slide_link.document::before {
  background-color: #7c8db5;
  -webkit-mask-image: url("/assets/img/icon/ico_document.svg");
          mask-image: url("/assets/img/icon/ico_document.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
}
.wrap .contents .sidebar .page_menu > ul > li .slide_link.coupon::before {
  background-color: #7c8db5;
  -webkit-mask-image: url("/assets/img/icon/ico_coupon.svg");
          mask-image: url("/assets/img/icon/ico_coupon.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
}
.wrap .contents .sidebar .page_menu > ul > li .slide_link.message::before {
  background-color: #7c8db5;
  -webkit-mask-image: url("/assets/img/icon/ico_message.svg");
          mask-image: url("/assets/img/icon/ico_message.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
}
.wrap .contents .sidebar .page_menu > ul > li .slide_link.car::before {
  background-color: #7c8db5;
  -webkit-mask-image: url("/assets/img/icon/ico_car.svg");
          mask-image: url("/assets/img/icon/ico_car.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
}
.wrap .contents .sidebar .page_menu > ul > li .slide_link.dealer::before {
  background-color: #7c8db5;
  -webkit-mask-image: url("/assets/img/icon/ico_dealer.svg");
          mask-image: url("/assets/img/icon/ico_dealer.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
}
.wrap .contents .sidebar .page_menu > ul > li .slide_link.fire::before {
  background-color: #7c8db5;
  -webkit-mask-image: url("/assets/img/icon/ico_fire.svg");
          mask-image: url("/assets/img/icon/ico_fire.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
}
.wrap .contents .sidebar .page_menu > ul > li .slide_link.board::before {
  background-color: #7c8db5;
  -webkit-mask-image: url("/assets/img/icon/ico_board.svg");
          mask-image: url("/assets/img/icon/ico_board.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
}
.wrap .contents .sidebar .page_menu > ul > li .slide_link.bookmark::before {
  background-color: #7c8db5;
  -webkit-mask-image: url("/assets/img/icon/ico_star_fill.svg");
          mask-image: url("/assets/img/icon/ico_star_fill.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
}
.wrap .contents .sidebar .page_menu > ul > li .slide_link.display::before {
  background-color: #7c8db5;
  -webkit-mask-image: url("/assets/img/icon/ico_display.svg");
          mask-image: url("/assets/img/icon/ico_display.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
}
.wrap .contents .sidebar .page_menu > ul > li .slide_link.capital::before {
  background-color: #7c8db5;
  -webkit-mask-image: url("/assets/img/icon/ico_capital.svg");
          mask-image: url("/assets/img/icon/ico_capital.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
}
.wrap .contents .sidebar .page_menu > ul > li.active .slide_link {
  background: #435ebe;
}
.wrap .contents .sidebar .page_menu > ul > li.active .slide_link span {
  color: #ffffff;
}
.wrap .contents .sidebar .page_menu > ul > li.active .slide_link::before {
  background-color: #ffffff;
}
.wrap .contents .sidebar .page_menu > ul > li.active .slide_link::after {
  background-color: #ffffff;
}
.wrap .contents .sidebar .page_menu > ul > li .submenu {
  padding-left: 32px;
  max-height: 0;
  -webkit-transition: max-height 1s cubic-bezier(0, 0.55, 0.45, 1);
  transition: max-height 1s cubic-bezier(0, 0.55, 0.45, 1);
  overflow: hidden;
}
.wrap .contents .sidebar .page_menu > ul > li .submenu.active {
  max-height: 999px;
}
.wrap .contents .sidebar .page_menu > ul > li .submenu li a {
  position: relative;
  padding: 16px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  color: #25396f;
  font-size: 14px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.wrap .contents .sidebar .page_menu > ul > li .submenu li:hover a {
  padding-left: 26px;
}
.wrap .contents .sidebar .page_menu > ul > li .submenu li.active a {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #435ebe;
}
.wrap .contents .sidebar .page_menu > ul > li .submenu li.active a::before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 14px;
  background: #435ebe;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.wrap .contents .sidebar.hide .page_menu {
  margin-left: -250px;
  pointer-events: none;
}
.wrap .contents .sidebar.hide .menu_show_btn::before {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.wrap .contents .sidebar .menu_show_btn {
  position: absolute;
  top: 16px;
  right: -26px;
  width: 30px;
  height: 34px;
  border: 1px solid #e5e7eb;
  border-left: none;
  border-radius: 8px;
  background: #ffffff;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
          box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.wrap .contents .sidebar .menu_show_btn::before {
  content: "";
  display: inline-block;
  background-color: #7c8db5;
  -webkit-mask-image: url("/assets/img/icon/ico_arrow_left_double.svg");
          mask-image: url("/assets/img/icon/ico_arrow_left_double.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 15px;
  height: 15px;
  margin-left: 4px;
  vertical-align: middle;
  -webkit-transition: -webkit-transform 0.2s ease-in;
  transition: -webkit-transform 0.2s ease-in;
  transition: transform 0.2s ease-in;
  transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
}
.wrap .contents .container {
  position: relative;
  min-width: calc(100vw - 350px);
  width: 100%;
  height: 100vh;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
.wrap .contents .container .page_heading {
  position: relative;
  border-bottom: 1px solid #e5e7eb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 20px 40px;
}
.wrap .contents .container .page_heading .bookmark_btn {
  font-size: 0;
  background-color: #7c8db5;
  -webkit-mask-image: url("/assets/img/icon/ico_star.svg");
          mask-image: url("/assets/img/icon/ico_star.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 24px;
  height: 24px;
}
.wrap .contents .container .page_heading .bookmark_btn.on {
  background-color: #7c8db5;
  -webkit-mask-image: url("/assets/img/icon/ico_star_fill.svg");
          mask-image: url("/assets/img/icon/ico_star_fill.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 24px;
  height: 24px;
}
.wrap .contents .container .page_heading ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.wrap .contents .container .page_heading ol li {
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #aaa;
  cursor: default;
}
.wrap .contents .container .page_heading ol li::after {
  content: "/";
  display: inline-block;
  margin: 0 6px;
}
.wrap .contents .container .page_heading ol li:last-child {
  color: #222222;
}
.wrap .contents .container .page_heading ol li:last-child::after {
  content: none;
}
.wrap .contents .container .page_heading .logout_btn {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  color: #222222;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.wrap .contents .container .page_heading .logout_btn::after {
  content: "";
  display: inline-block;
  background-color: #25396f;
  -webkit-mask-image: url("/assets/img/icon/ico_logout.svg");
          mask-image: url("/assets/img/icon/ico_logout.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 28px;
  height: 28px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.wrap .contents .container .page_heading .logout_btn:hover {
  color: #435ebe;
}
.wrap .contents .container .page_heading .logout_btn:hover::after {
  background-color: #435ebe;
}
.wrap .contents .container .page_content {
  height: 100%;
  max-height: calc(100vh - 65px);
  padding: 20px;
  overflow: hidden;
}
.wrap .contents .container .page_content:hover {
  overflow-y: auto;
}
.wrap .contents .container .page_content:hover::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.wrap .contents .container .page_content:hover::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.wrap .contents .container .page_content:hover::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.wrap .contents .container .page_content:hover::-webkit-scrollbar-track {
  background: #ffffff;
}
.wrap .contents .container .page_content:hover::-webkit-scrollbar-button {
  display: none;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  height: 100%;
  z-index: 100000;
}
.loading .loader {
  width: 17.6px;
  height: 17.6px;
  border-radius: 17.6px;
  -webkit-box-shadow: 44px 0px 0 0 rgba(71, 75, 255, 0.2), 35.6px 26px 0 0 rgba(71, 75, 255, 0.4), 13.64px 41.8px 0 0 rgba(71, 75, 255, 0.6), -13.64px 41.8px 0 0 rgba(71, 75, 255, 0.8), -35.6px 26px 0 0 #474bff;
          box-shadow: 44px 0px 0 0 rgba(71, 75, 255, 0.2), 35.6px 26px 0 0 rgba(71, 75, 255, 0.4), 13.64px 41.8px 0 0 rgba(71, 75, 255, 0.6), -13.64px 41.8px 0 0 rgba(71, 75, 255, 0.8), -35.6px 26px 0 0 #474bff;
  -webkit-animation: spinner-b87k6z 1.2s infinite linear;
          animation: spinner-b87k6z 1.2s infinite linear;
}
@-webkit-keyframes spinner-b87k6z {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spinner-b87k6z {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/* 메뉴별 */
.login {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  background: #7c8db5;
}
.login.bg {
  background: url("/assets/img/img_login_bg.jpg") no-repeat center;
  background-size: cover;
  -webkit-animation: bgZoom 5s ease-in-out forwards;
          animation: bgZoom 5s ease-in-out forwards;
}
.login.bg::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.login .login_box {
  position: relative;
  width: 600px;
  background: #ffffff;
  border-radius: 20px;
  padding: 100px 50px;
  -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
          box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.login .login_box h1 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
}
.login .login_box .input_box {
  position: relative;
}
.login .login_box .input_box label {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #435ebe;
}
.login .login_box .input_box input {
  width: 100%;
  height: 54px;
  border-radius: 8px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.login .login_box .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.login .login_box .input_box input::-moz-placeholder {
  color: #6c757d;
}
.login .login_box .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.login .login_box .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.login .login_box .input_box input::placeholder {
  color: #6c757d;
}
.login .login_box .input_box input:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.login .login_box .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.login .login_box .input_box input:disabled, .login .login_box .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.login .login_box .input_box.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.login .login_box .input_box.date .calendar {
  position: relative;
}
.login .login_box .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_calendar.svg");
          mask-image: url("/assets/img/icon/ico_calendar.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.login .login_box .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.login .login_box .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.login .login_box .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.login .login_box .input_box.search .input_search_btn {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.login .login_box .input_box.search .input_search_btn:hover {
  width: 20px;
  height: 20px;
}
.login .login_box .input_box label {
  display: block;
  font-size: 16px;
  margin-bottom: 10px;
}
.login .login_box .input_box input {
  font-size: 16px;
}
.login .login_box .input_box + .input_box {
  margin-top: 20px;
}
.login .login_box .checkbox {
  position: relative;
  margin-top: 12px;
}
.login .login_box .checkbox input[type=checkbox] {
  display: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.login .login_box .checkbox input[type=checkbox]:checked + label::before {
  border-color: #435ebe;
  background-color: #435ebe;
}
.login .login_box .checkbox input[type=checkbox]:checked + label::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 4px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_check.svg");
          mask-image: url("/assets/img/icon/ico_check.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 12px;
  height: 12px;
}
.login .login_box .checkbox input[type=checkbox]:disabled + label {
  pointer-events: none;
  -webkit-filter: none;
          filter: none;
  opacity: 0.6;
}
.login .login_box .checkbox label {
  cursor: pointer;
}
.login .login_box .checkbox label::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border: 3px solid #e1e3ea;
  border-radius: 4px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.login .login_box .checkbox label {
  font-size: 14px;
  color: #222222;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 6px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.login .login_box .checkbox label::before {
  border: 2px solid #e1e3ea;
}
.login .login_box .error {
  margin-top: 10px;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #dc3545;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  padding-left: 10px;
}
.login .login_box .error.hide {
  display: none;
}
.login .login_box .login_btn {
  margin-top: 50px;
  height: 56px;
  font-size: 18px;
  width: 100%;
  border-radius: 8px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
          box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.login .login_box .login_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.login .login_box .login_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.login .login_box .login_btn.gray {
  background: #999999;
  color: #ffffff;
}
.login .login_box .login_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.login .login_box .login_btn.gray:disabled {
  pointer-events: none;
}
.login .login_box .login_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.login .login_box .login_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.login .login_box .login_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.login .login_box .login_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.login .login_box .login_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.login .login_box .login_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.login .copyright {
  position: absolute;
  left: 50%;
  bottom: 40px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
}

@-webkit-keyframes bgZoom {
  0% {
    background-size: 120%;
  }
  100% {
    background-size: 140%;
  }
}

@keyframes bgZoom {
  0% {
    background-size: 120%;
  }
  100% {
    background-size: 140%;
  }
}
.password {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  background: #eef2f7;
}
.password .password_box {
  position: relative;
  width: 600px;
  background: #ffffff;
  border-radius: 20px;
  padding: 100px 50px;
  -webkit-box-shadow: rgba(100, 100, 111, 0.1) 0px 7px 29px 0px;
          box-shadow: rgba(100, 100, 111, 0.1) 0px 7px 29px 0px;
}
.password .password_box h1 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
}
.password .password_box .input_box {
  position: relative;
}
.password .password_box .input_box label {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #435ebe;
}
.password .password_box .input_box input {
  width: 100%;
  height: 54px;
  border-radius: 8px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.password .password_box .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.password .password_box .input_box input::-moz-placeholder {
  color: #6c757d;
}
.password .password_box .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.password .password_box .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.password .password_box .input_box input::placeholder {
  color: #6c757d;
}
.password .password_box .input_box input:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.password .password_box .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.password .password_box .input_box input:disabled, .password .password_box .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.password .password_box .input_box.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.password .password_box .input_box.date .calendar {
  position: relative;
}
.password .password_box .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_calendar.svg");
          mask-image: url("/assets/img/icon/ico_calendar.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.password .password_box .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.password .password_box .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.password .password_box .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.password .password_box .input_box.search .input_search_btn {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.password .password_box .input_box.search .input_search_btn:hover {
  width: 20px;
  height: 20px;
}
.password .password_box .input_box label {
  display: block;
  font-size: 16px;
  margin-bottom: 10px;
}
.password .password_box .input_box input {
  font-size: 16px;
}
.password .password_box .input_box + .input_box {
  margin-top: 20px;
}
.password .password_box .error {
  margin-top: 10px;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #dc3545;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  padding-left: 10px;
}
.password .password_box .error.hide {
  display: none;
}
.password .password_box .password_btn {
  margin-top: 50px;
  height: 56px;
  font-size: 18px;
  width: 100%;
  border-radius: 8px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
          box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.password .password_box .password_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.password .password_box .password_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.password .password_box .password_btn.gray {
  background: #999999;
  color: #ffffff;
}
.password .password_box .password_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.password .password_box .password_btn.gray:disabled {
  pointer-events: none;
}
.password .password_box .password_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.password .password_box .password_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.password .password_box .password_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.password .password_box .password_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.password .password_box .password_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.password .password_box .password_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}

.dashboard section .section_tit {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 20px;
  color: #222222;
}
.dashboard section + section {
  margin-top: 35px;
}
.dashboard .statistics {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.dashboard .statistics .card {
  position: relative;
  width: calc(25% - 20px);
  height: 120px;
  padding: 24px;
  border-radius: 16px;
  background: #e3f5ff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.dashboard .statistics .card .tit p {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 18px;
  color: #222222;
}
.dashboard .statistics .card .tit::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #222222;
  -webkit-mask-image: url("/assets/img/icon/ico_chart.svg");
          mask-image: url("/assets/img/icon/ico_chart.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 24px;
  height: 24px;
}
.dashboard .statistics .card .count p {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 30px;
  color: #222222;
}
.dashboard .statistics .card .count.percent p::after {
  content: "%";
}
.dashboard .statistics .card:nth-child(even) {
  background: #e5ecf6;
}
.dashboard .chart {
  position: relative;
  width: 100%;
}
.dashboard .chart .chart_wrap {
  position: relative;
  height: 280px;
}
.dashboard .chart .chart_wrap .chart_box {
  position: relative;
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  max-height: 280px;
  z-index: 1;
}
.dashboard .chart .chart_wrap .chart_box li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.dashboard .chart .chart_wrap .chart_box li .company {
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  color: #222222;
  text-align: center;
}
.dashboard .chart .chart_wrap .chart_box li .bar_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.dashboard .chart .chart_wrap .chart_box li .bar_box .count {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 16px;
  color: #435ebe;
  text-align: center;
}
.dashboard .chart .chart_wrap .chart_box li .bar_box .bar {
  background: #435ebe;
  width: 50px;
  max-height: 230px;
}
.dashboard .chart .chart_wrap .chart_line {
  position: absolute;
  bottom: 23px;
  left: 30px;
  width: calc(100% - 30px);
}
.dashboard .chart .chart_wrap .chart_line .line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #dce7f1;
}
.dashboard .chart .chart_wrap .chart_line .line::before {
  content: attr(data-value);
  position: absolute;
  left: -30px;
  top: -5px;
  width: 20px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 12px;
  color: #777777;
  text-align: right;
}
.dashboard .notice {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.dashboard .notice .notice_box {
  position: relative;
  width: calc(33.3333333333% - 40px);
}
.dashboard .notice .notice_box .notice_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.dashboard .notice .notice_box .notice_top .btn_box button {
  font-size: 0;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.dashboard .notice .notice_box .notice_top .btn_box button + button {
  margin-left: 10px;
}
.dashboard .notice .notice_box .notice_top .btn_box button.refresh_btn {
  background-color: #7c8db5;
  -webkit-mask-image: url("/assets/img/icon/ico_refresh.svg");
          mask-image: url("/assets/img/icon/ico_refresh.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
}
.dashboard .notice .notice_box .notice_top .btn_box button.go_btn {
  background-color: #7c8db5;
  -webkit-mask-image: url("/assets/img/icon/ico_arrow_right_type02.svg");
          mask-image: url("/assets/img/icon/ico_arrow_right_type02.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
}
.dashboard .notice .notice_box .notice_top .btn_box button:hover {
  background-color: #435ebe;
}
.dashboard .notice .notice_box .notice_list {
  margin-top: 20px;
  border: 1px solid #dce7f1;
  padding: 20px;
  border-radius: 8px;
  background: #ffffff;
  height: 280px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.dashboard .notice .notice_box .notice_list:active, .dashboard .notice .notice_box .notice_list:hover {
  overflow-y: auto;
}
.dashboard .notice .notice_box .notice_list:active::-webkit-scrollbar, .dashboard .notice .notice_box .notice_list:hover::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.dashboard .notice .notice_box .notice_list:active::-webkit-scrollbar-thumb, .dashboard .notice .notice_box .notice_list:hover::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.dashboard .notice .notice_box .notice_list:active::-webkit-scrollbar-thumb:hover, .dashboard .notice .notice_box .notice_list:hover::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.dashboard .notice .notice_box .notice_list:active::-webkit-scrollbar-track, .dashboard .notice .notice_box .notice_list:hover::-webkit-scrollbar-track {
  background: #ffffff;
}
.dashboard .notice .notice_box .notice_list:active::-webkit-scrollbar-button, .dashboard .notice .notice_box .notice_list:hover::-webkit-scrollbar-button {
  display: none;
}
.dashboard .notice .notice_box .notice_list li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  height: 20px;
}
.dashboard .notice .notice_box .notice_list li + li {
  margin-top: 16px;
}
.dashboard .notice .notice_box .notice_list li div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 6px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: calc(100% - 90px);
}
.dashboard .notice .notice_box .notice_list li div.new::before {
  content: "N";
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 10px;
  color: #ffffff;
  background: #e45649;
  padding: 3px 4px;
  border-radius: 4px;
  vertical-align: middle;
}
.dashboard .notice .notice_box .notice_list li div.file::after {
  content: "";
  display: inline-block;
  background-color: #7c8db5;
  -webkit-mask-image: url("/assets/img/icon/ico_file.svg");
          mask-image: url("/assets/img/icon/ico_file.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 14px;
}
.dashboard .notice .notice_box .notice_list li div .tit {
  position: relative;
  max-width: 90%;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 15px;
  color: #222222;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}
.dashboard .notice .notice_box .notice_list li div .tit:hover {
  text-decoration: underline;
}
.dashboard .notice .notice_box .notice_list li .date {
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  color: #777777;
  text-align: right;
  min-width: 90px;
}

.modal .modal_content.type_notice .modal_body .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  border-top: 1px solid #dce7f1;
  padding: 20px 0;
}
.modal .modal_content.type_notice .modal_body .flex > div {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.modal .modal_content.type_notice .modal_body .flex > div.wd50 {
  width: 50%;
}
.modal .modal_content.type_notice .modal_body .flex > div .label {
  width: 100px;
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #222222;
  font-size: 15px;
}
.modal .modal_content.type_notice .modal_body .flex > div .text {
  width: calc(100% - 100px);
  font-family: "Pretendard Variable";
  font-weight: 500;
  color: #222222;
  font-size: 15px;
}
.modal .modal_content.type_notice .modal_body .flex > div .text.important {
  color: #dc3545;
}
.modal .modal_content.type_notice .modal_body .flex > div .text.content {
  overflow-y: auto;
  max-height: 260px;
  line-height: 1.5;
  word-wrap: break-word;
  word-break: keep-all;
}
.modal .modal_content.type_notice .modal_body .flex > div .text.content::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.modal .modal_content.type_notice .modal_body .flex > div .text.content::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.modal .modal_content.type_notice .modal_body .flex > div .text.content::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.modal .modal_content.type_notice .modal_body .flex > div .text.content::-webkit-scrollbar-track {
  background: #ffffff;
}
.modal .modal_content.type_notice .modal_body .flex > div .text.content::-webkit-scrollbar-button {
  display: none;
}
.modal .modal_content.type_notice .modal_body .flex .file_box {
  width: 100%;
  max-height: 140px;
  overflow-y: auto;
}
.modal .modal_content.type_notice .modal_body .flex .file_box::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.modal .modal_content.type_notice .modal_body .flex .file_box::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.modal .modal_content.type_notice .modal_body .flex .file_box::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.modal .modal_content.type_notice .modal_body .flex .file_box::-webkit-scrollbar-track {
  background: #ffffff;
}
.modal .modal_content.type_notice .modal_body .flex .file_box::-webkit-scrollbar-button {
  display: none;
}
.modal .modal_content.type_notice .modal_body .flex .file_box table {
  width: 100%;
  table-layout: fixed;
}
.modal .modal_content.type_notice .modal_body .flex .file_box table th {
  padding: 10px 0;
  font-family: "Pretendard Variable";
  font-weight: 500;
  color: #222222;
  font-size: 15px;
  vertical-align: middle;
}
.modal .modal_content.type_notice .modal_body .flex .file_box table th:first-child {
  width: 20px;
  margin: 0 auto;
}
.modal .modal_content.type_notice .modal_body .flex .file_box table th:last-child {
  width: 120px;
  margin: 0 auto;
}
.modal .modal_content.type_notice .modal_body .flex .file_box table th a.file_save_btn {
  display: block;
}
.modal .modal_content.type_notice .modal_body .flex .file_box table th .file_save_btn {
  font-family: "Pretendard Variable";
  font-weight: 500;
  color: #222222;
  font-size: 15px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.modal .modal_content.type_notice .modal_body .flex .file_box table th .file_save_btn:hover {
  color: #435ebe;
  text-decoration: underline;
}
.modal .modal_content.type_notice .modal_body .flex .file_box table td {
  padding: 5px 0;
  font-family: "Pretendard Variable";
  font-weight: 500;
  color: #222222;
  font-size: 15px;
  vertical-align: middle;
}
.modal .modal_content.type_notice .modal_body .flex .file_box table td:first-child {
  width: 20px;
  margin: 0 auto;
  text-align: center;
}
.modal .modal_content.type_notice .modal_body .flex .file_box table td.file_name {
  padding: 0 20px;
  max-width: calc(100% - 20px - 120px - 20px);
}
.modal .modal_content.type_notice .modal_body .flex .file_box table td.file_name p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: "Pretendard Variable";
  font-weight: 500;
  color: #222222;
  font-size: 15px;
}
.modal .modal_content.type_notice .modal_body .flex .file_box table td:last-child {
  width: 120px;
  margin: 0 auto;
  text-align: center;
}
.modal .modal_content.type_notice .modal_body .flex .file_box table td a.file_save_btn {
  display: block;
  margin: 0 auto;
  line-height: 28px;
}
.modal .modal_content.type_notice .modal_body .flex .file_box table td .file_save_btn {
  height: 28px;
  font-size: 14px;
  width: 60px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 14px;
}
.modal .modal_content.type_notice .modal_body .flex .file_box table td .file_save_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.modal .modal_content.type_notice .modal_body .flex .file_box table td .file_save_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.modal .modal_content.type_notice .modal_body .flex .file_box table td .file_save_btn.gray {
  background: #999999;
  color: #ffffff;
}
.modal .modal_content.type_notice .modal_body .flex .file_box table td .file_save_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.modal .modal_content.type_notice .modal_body .flex .file_box table td .file_save_btn.gray:disabled {
  pointer-events: none;
}
.modal .modal_content.type_notice .modal_body .flex .file_box table td .file_save_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.modal .modal_content.type_notice .modal_body .flex .file_box table td .file_save_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.modal .modal_content.type_notice .modal_body .flex .file_box table td .file_save_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.modal .modal_content.type_notice .modal_body .flex .file_box table td .file_save_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.modal .modal_content.type_notice .modal_body .flex .file_box table td .file_save_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.modal .modal_content.type_notice .modal_body .flex .file_box table td .file_save_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.modal .modal_content.type_notice .modal_body .flex .file_box table td .file_save_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_download.svg");
          mask-image: url("/assets/img/icon/ico_download.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 14px;
  margin-right: 4px;
  vertical-align: middle;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.modal .modal_content.type_notice .modal_body .flex .file_box table td .file_save_btn:hover::before {
  background-color: #435ebe;
}

.hrm section {
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  -webkit-box-shadow: rgba(99, 99, 99, 0.15) 0px 0px 8px 0px;
          box-shadow: rgba(99, 99, 99, 0.15) 0px 0px 8px 0px;
}
.hrm section + section {
  margin-top: 16px;
}
.hrm .search_section {
  position: relative;
  width: 100%;
  padding: 16px;
}
.hrm .search_section .search_box {
  min-width: 380px;
  overflow-x: auto;
}
.hrm .search_section .search_box .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.hrm .search_section .search_box .flex + .flex {
  margin-top: 16px;
}
.hrm .search_section .search_box .input_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.hrm .search_section .search_box .input_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.hrm .search_section .search_box .input_box input {
  width: 160px;
  height: 28px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.hrm .search_section .search_box .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.hrm .search_section .search_box .input_box input::-moz-placeholder {
  color: #6c757d;
}
.hrm .search_section .search_box .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.hrm .search_section .search_box .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.hrm .search_section .search_box .input_box input::placeholder {
  color: #6c757d;
}
.hrm .search_section .search_box .input_box input:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.hrm .search_section .search_box .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.hrm .search_section .search_box .input_box input:disabled, .hrm .search_section .search_box .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.hrm .search_section .search_box .input_box.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.hrm .search_section .search_box .input_box.date .calendar {
  position: relative;
}
.hrm .search_section .search_box .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_calendar.svg");
          mask-image: url("/assets/img/icon/ico_calendar.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.hrm .search_section .search_box .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.hrm .search_section .search_box .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.hrm .search_section .search_box .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.hrm .search_section .search_box .input_box.search input {
  width: 450px;
}
.hrm .search_section .search_box .input_box.search .input_search_btn {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.hrm .search_section .search_box .input_box.search .input_search_btn:hover {
  width: 20px;
  height: 20px;
}
.hrm .search_section .search_box .input_box.search input {
  width: 450px;
}
.hrm .search_section .search_box .select_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.hrm .search_section .search_box .select_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.hrm .search_section .search_box .select_box select {
  width: 160px;
  height: 28px;
  padding: 0 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  font-size: 14px;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.hrm .search_section .search_box .select_box select::-webkit-input-placeholder {
  color: #6c757d;
}
.hrm .search_section .search_box .select_box select::-moz-placeholder {
  color: #6c757d;
}
.hrm .search_section .search_box .select_box select:-ms-input-placeholder {
  color: #6c757d;
}
.hrm .search_section .search_box .select_box select::-ms-input-placeholder {
  color: #6c757d;
}
.hrm .search_section .search_box .select_box select::placeholder {
  color: #6c757d;
}
.hrm .search_section .search_box .select_box select:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.hrm .search_section .search_box .select_box select:disabled {
  background: #e9ecef;
  cursor: default;
}
.hrm .search_section .btn_box {
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.hrm .search_section .btn_box div:first-of-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 16px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.hrm .search_section .btn_box div:last-of-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 16px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.hrm .search_section .btn_box div .submit_btn {
  height: 30px;
  font-size: 14px;
  width: 70px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
}
.hrm .search_section .btn_box div .submit_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.hrm .search_section .btn_box div .submit_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.hrm .search_section .btn_box div .submit_btn.gray {
  background: #999999;
  color: #ffffff;
}
.hrm .search_section .btn_box div .submit_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.hrm .search_section .btn_box div .submit_btn.gray:disabled {
  pointer-events: none;
}
.hrm .search_section .btn_box div .submit_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.hrm .search_section .btn_box div .submit_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.hrm .search_section .btn_box div .submit_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.hrm .search_section .btn_box div .submit_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.hrm .search_section .btn_box div .submit_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.hrm .search_section .btn_box div .submit_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.hrm .search_section .btn_box div .cancel_btn {
  height: 30px;
  font-size: 14px;
  width: 70px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
  border: 1px solid #dc3545 !important;
  background: #dc3545;
  color: #ffffff;
}
.hrm .search_section .btn_box div .cancel_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.hrm .search_section .btn_box div .cancel_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.hrm .search_section .btn_box div .cancel_btn.gray {
  background: #999999;
  color: #ffffff;
}
.hrm .search_section .btn_box div .cancel_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.hrm .search_section .btn_box div .cancel_btn.gray:disabled {
  pointer-events: none;
}
.hrm .search_section .btn_box div .cancel_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.hrm .search_section .btn_box div .cancel_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.hrm .search_section .btn_box div .cancel_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.hrm .search_section .btn_box div .cancel_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.hrm .search_section .btn_box div .cancel_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.hrm .search_section .btn_box div .cancel_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.hrm .search_section .btn_box div .cancel_btn:hover {
  background: #ffffff;
  color: #dc3545;
}
.hrm .search_section .btn_box div .excel_btn {
  height: 30px;
  font-size: 14px;
  width: 120px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
}
.hrm .search_section .btn_box div .excel_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.hrm .search_section .btn_box div .excel_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.hrm .search_section .btn_box div .excel_btn.gray {
  background: #999999;
  color: #ffffff;
}
.hrm .search_section .btn_box div .excel_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.hrm .search_section .btn_box div .excel_btn.gray:disabled {
  pointer-events: none;
}
.hrm .search_section .btn_box div .excel_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.hrm .search_section .btn_box div .excel_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.hrm .search_section .btn_box div .excel_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.hrm .search_section .btn_box div .excel_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.hrm .search_section .btn_box div .excel_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.hrm .search_section .btn_box div .excel_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.hrm .search_section .btn_box div .add_btn {
  height: 30px;
  font-size: 14px;
  width: 100px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
}
.hrm .search_section .btn_box div .add_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.hrm .search_section .btn_box div .add_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.hrm .search_section .btn_box div .add_btn.gray {
  background: #999999;
  color: #ffffff;
}
.hrm .search_section .btn_box div .add_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.hrm .search_section .btn_box div .add_btn.gray:disabled {
  pointer-events: none;
}
.hrm .search_section .btn_box div .add_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.hrm .search_section .btn_box div .add_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.hrm .search_section .btn_box div .add_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.hrm .search_section .btn_box div .add_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.hrm .search_section .btn_box div .add_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.hrm .search_section .btn_box div .add_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.hrm .search_section .btn_box div .add_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_user_add.svg");
          mask-image: url("/assets/img/icon/ico_user_add.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 16px;
  vertical-align: -4px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.hrm .search_section .btn_box div .add_btn:hover::before {
  background-color: #435ebe;
}
.hrm .search_section .btn_box div .delete_btn {
  height: 30px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  border: 1px solid #dc3545 !important;
  background: #dc3545;
  color: #ffffff;
  font-size: 14px;
}
.hrm .search_section .btn_box div .delete_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.hrm .search_section .btn_box div .delete_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.hrm .search_section .btn_box div .delete_btn.gray {
  background: #999999;
  color: #ffffff;
}
.hrm .search_section .btn_box div .delete_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.hrm .search_section .btn_box div .delete_btn.gray:disabled {
  pointer-events: none;
}
.hrm .search_section .btn_box div .delete_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.hrm .search_section .btn_box div .delete_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.hrm .search_section .btn_box div .delete_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.hrm .search_section .btn_box div .delete_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.hrm .search_section .btn_box div .delete_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.hrm .search_section .btn_box div .delete_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.hrm .search_section .btn_box div .delete_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_delete.svg");
          mask-image: url("/assets/img/icon/ico_delete.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 14px;
  margin-right: 4px;
  vertical-align: middle;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.hrm .search_section .btn_box div .delete_btn:hover {
  background: #ffffff;
  color: #dc3545;
}
.hrm .search_section .btn_box div .delete_btn:hover::before {
  background-color: #dc3545;
}
.hrm .table_section {
  position: relative;
  width: 100%;
  padding: 16px;
}
.hrm .table_section .table_box {
  position: relative;
  overflow-x: auto;
  overflow-y: auto;
  min-width: 1000px;
  max-height: 600px;
}
.hrm .table_section .table_box::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.hrm .table_section .table_box::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.hrm .table_section .table_box::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.hrm .table_section .table_box::-webkit-scrollbar-track {
  background: #ffffff;
}
.hrm .table_section .table_box::-webkit-scrollbar-button {
  display: none;
}
.hrm .table_section .table_box table {
  position: relative;
  width: 100%;
  table-layout: fixed;
}
.hrm .table_section .table_box table thead th {
  vertical-align: middle;
  background: #435ebe;
  border: none;
  padding: 10px 0;
  color: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 15px;
}
.hrm .table_section .table_box table thead th.fixed {
  position: sticky;
  top: 0;
  z-index: 1;
  border: 0;
}
.hrm .table_section .table_box table thead th.fixed::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  display: table-column-group;
  width: -webkit-fill-available;
  height: 100%;
  border-bottom: 1px solid #dce7f1;
  z-index: 1;
}
.hrm .table_section .table_box table tbody td {
  vertical-align: middle;
  background: #ffffff;
  border-bottom: 1px solid #dce7f1;
  padding: 10px 0;
  color: #222222;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  text-align: center;
}
.hrm .table_section .table_box table tbody tr {
  cursor: pointer;
}
.hrm .table_section .table_box table tbody tr:hover td {
  background: rgba(124, 141, 181, 0.2);
}
.hrm .table_section .select_box {
  position: relative;
  position: absolute;
  right: 16px;
  bottom: 16px;
}
.hrm .table_section .select_box label {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #435ebe;
}
.hrm .table_section .select_box select {
  width: 100px;
  height: 36px;
  border-radius: 4px;
  padding: 0px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.hrm .table_section .select_box select::-webkit-input-placeholder {
  color: #6c757d;
}
.hrm .table_section .select_box select::-moz-placeholder {
  color: #6c757d;
}
.hrm .table_section .select_box select:-ms-input-placeholder {
  color: #6c757d;
}
.hrm .table_section .select_box select::-ms-input-placeholder {
  color: #6c757d;
}
.hrm .table_section .select_box select::placeholder {
  color: #6c757d;
}
.hrm .table_section .select_box select:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.hrm .table_section .select_box select:disabled {
  background: #e9ecef;
  cursor: default;
}
.hrm .organization_section {
  position: relative;
  width: 100%;
  padding: 16px;
  overflow-y: auto;
  max-height: 100%;
}
.hrm .organization_section::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.hrm .organization_section::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.hrm .organization_section::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.hrm .organization_section::-webkit-scrollbar-track {
  background: #ffffff;
}
.hrm .organization_section::-webkit-scrollbar-button {
  display: none;
}
.hrm .organization_section .btn_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 8px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.hrm .organization_section .btn_box .edit_btn {
  height: 30px;
  font-size: 14px;
  width: 70px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.hrm .organization_section .btn_box .edit_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.hrm .organization_section .btn_box .edit_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.hrm .organization_section .btn_box .edit_btn.gray {
  background: #999999;
  color: #ffffff;
}
.hrm .organization_section .btn_box .edit_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.hrm .organization_section .btn_box .edit_btn.gray:disabled {
  pointer-events: none;
}
.hrm .organization_section .btn_box .edit_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.hrm .organization_section .btn_box .edit_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.hrm .organization_section .btn_box .edit_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.hrm .organization_section .btn_box .edit_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.hrm .organization_section .btn_box .edit_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.hrm .organization_section .btn_box .edit_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.hrm .organization_section .btn_box .edit_btn::before {
  content: "";
  display: inline-block;
  background-color: #000000;
  -webkit-mask-image: url("/assets/img/icon/ico_edit.svg");
          mask-image: url("/assets/img/icon/ico_edit.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.hrm .organization_section .btn_box .edit_btn:hover::before {
  background-color: #ffffff;
}
.hrm .organization_section .btn_box .cancel_btn {
  height: 30px;
  font-size: 14px;
  width: 70px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.hrm .organization_section .btn_box .cancel_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.hrm .organization_section .btn_box .cancel_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.hrm .organization_section .btn_box .cancel_btn.gray {
  background: #999999;
  color: #ffffff;
}
.hrm .organization_section .btn_box .cancel_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.hrm .organization_section .btn_box .cancel_btn.gray:disabled {
  pointer-events: none;
}
.hrm .organization_section .btn_box .cancel_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.hrm .organization_section .btn_box .cancel_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.hrm .organization_section .btn_box .cancel_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.hrm .organization_section .btn_box .cancel_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.hrm .organization_section .btn_box .cancel_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.hrm .organization_section .btn_box .cancel_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.hrm .organization_section .btn_box .cancel_btn::before {
  content: "";
  display: inline-block;
  background-color: #000000;
  -webkit-mask-image: url("/assets/img/icon/ico_x.svg");
          mask-image: url("/assets/img/icon/ico_x.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  vertical-align: -3px;
}
.hrm .organization_section .btn_box .cancel_btn:hover::before {
  background-color: #ffffff;
}
.hrm .organization_section .btn_box .save_btn {
  height: 30px;
  font-size: 14px;
  width: 70px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.hrm .organization_section .btn_box .save_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.hrm .organization_section .btn_box .save_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.hrm .organization_section .btn_box .save_btn.gray {
  background: #999999;
  color: #ffffff;
}
.hrm .organization_section .btn_box .save_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.hrm .organization_section .btn_box .save_btn.gray:disabled {
  pointer-events: none;
}
.hrm .organization_section .btn_box .save_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.hrm .organization_section .btn_box .save_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.hrm .organization_section .btn_box .save_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.hrm .organization_section .btn_box .save_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.hrm .organization_section .btn_box .save_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.hrm .organization_section .btn_box .save_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.hrm .organization_section .btn_box .save_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_file.svg");
          mask-image: url("/assets/img/icon/ico_file.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.hrm .organization_section .btn_box .save_btn:hover::before {
  background-color: #435ebe;
}
.hrm .organization_section .add_btn {
  background-color: #555555;
  -webkit-mask-image: url("/assets/img/icon/ico_plus.svg");
          mask-image: url("/assets/img/icon/ico_plus.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
}
.hrm .organization_section .tree {
  position: relative;
  margin-left: 30px;
  padding: 0;
  overflow: visible;
}
.hrm .organization_section .tree::before {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
  bottom: 0;
  left: -20px;
  width: 0;
  border-left: 1px solid #c7d3df;
}
.hrm .organization_section .tree .parents {
  position: relative;
}
.hrm .organization_section .tree .parents + .parents {
  padding-top: 10px;
}
.hrm .organization_section .tree .parents::before {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  border-top: 1px solid #c7d3df;
  margin-top: -1px;
  height: auto;
  top: 15px;
  bottom: 0;
  left: -20px;
}
.hrm .organization_section .tree .parents:last-child::before {
  background: #ffffff;
  height: auto;
  top: 15px;
  bottom: 0;
}
.hrm .organization_section .tree ul {
  position: relative;
  margin-left: 6px;
  padding: 0;
}
.hrm .organization_section .tree ul::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 4px;
  width: 0;
  border-left: 1px solid #c7d3df;
}
.hrm .organization_section .tree ul li {
  position: relative;
  margin: 0;
  padding: 10px 26px;
  line-height: 26px;
}
.hrm .organization_section .tree ul li::before {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 0;
  border-top: 1px solid #c7d3df;
  margin-top: -1px;
  top: 20px;
  left: 4px;
}
.hrm .organization_section .tree ul li:last-child::before {
  background: #ffffff;
  height: auto;
  top: 23px;
  bottom: 0;
}
.hrm .organization_section .tree .node {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.hrm .organization_section .tree .node .input_box {
  position: relative;
}
.hrm .organization_section .tree .node .input_box input {
  width: 130px;
  padding: 4px 8px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  font-size: 14px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.hrm .organization_section .tree .node .input_box input::-webkit-input-placeholder {
  color: #222222;
}
.hrm .organization_section .tree .node .input_box input::-moz-placeholder {
  color: #222222;
}
.hrm .organization_section .tree .node .input_box input:-ms-input-placeholder {
  color: #222222;
}
.hrm .organization_section .tree .node .input_box input::-ms-input-placeholder {
  color: #222222;
}
.hrm .organization_section .tree .node .input_box input::placeholder {
  color: #222222;
}
.hrm .organization_section .tree .node .input_box input:focus {
  outline: none;
}
.hrm .organization_section .tree .node .input_box input:-moz-read-only {
  background: #eef2f7;
  cursor: pointer;
}
.hrm .organization_section .tree .node .input_box input:read-only {
  background: #eef2f7;
  cursor: pointer;
}
.hrm .organization_section .tree .node .btn_box {
  display: none;
  opacity: 0;
}
.hrm .organization_section .tree .node .btn_box .add_btn {
  background-color: #555555;
  -webkit-mask-image: url("/assets/img/icon/ico_plus.svg");
          mask-image: url("/assets/img/icon/ico_plus.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
}
.hrm .organization_section .tree .node .btn_box .delete_btn {
  background-color: #aaa;
  -webkit-mask-image: url("/assets/img/icon/ico_minus.svg");
          mask-image: url("/assets/img/icon/ico_minus.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
}
.hrm .organization_section .tree.edit .btn_box {
  opacity: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 4px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.modal .modal_content.type_table {
  max-width: 900px !important;
}
.modal .modal_content.type_table .modal_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.modal .modal_content.type_table .modal_body .left {
  width: 33%;
}
.modal .modal_content.type_table .modal_body .right {
  width: 65%;
}
.modal .modal_content.type_table .modal_body .search_box {
  padding-bottom: 16px;
  border-bottom: 1px solid #dce7f1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 6px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.modal .modal_content.type_table .modal_body .search_box .select_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.modal .modal_content.type_table .modal_body .search_box .select_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.modal .modal_content.type_table .modal_body .search_box .select_box select {
  width: 160px;
  height: 28px;
  padding: 0 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  font-size: 14px;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.modal .modal_content.type_table .modal_body .search_box .select_box select::-webkit-input-placeholder {
  color: #6c757d;
}
.modal .modal_content.type_table .modal_body .search_box .select_box select::-moz-placeholder {
  color: #6c757d;
}
.modal .modal_content.type_table .modal_body .search_box .select_box select:-ms-input-placeholder {
  color: #6c757d;
}
.modal .modal_content.type_table .modal_body .search_box .select_box select::-ms-input-placeholder {
  color: #6c757d;
}
.modal .modal_content.type_table .modal_body .search_box .select_box select::placeholder {
  color: #6c757d;
}
.modal .modal_content.type_table .modal_body .search_box .select_box select:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.modal .modal_content.type_table .modal_body .search_box .select_box select:disabled {
  background: #e9ecef;
  cursor: default;
}
.modal .modal_content.type_table .modal_body .search_box .input_box {
  position: relative;
  margin-right: 14px;
}
.modal .modal_content.type_table .modal_body .search_box .input_box label {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #435ebe;
}
.modal .modal_content.type_table .modal_body .search_box .input_box input {
  width: 160px;
  height: 28px;
  border-radius: 4px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.modal .modal_content.type_table .modal_body .search_box .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.modal .modal_content.type_table .modal_body .search_box .input_box input::-moz-placeholder {
  color: #6c757d;
}
.modal .modal_content.type_table .modal_body .search_box .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.modal .modal_content.type_table .modal_body .search_box .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.modal .modal_content.type_table .modal_body .search_box .input_box input::placeholder {
  color: #6c757d;
}
.modal .modal_content.type_table .modal_body .search_box .input_box input:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.modal .modal_content.type_table .modal_body .search_box .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.modal .modal_content.type_table .modal_body .search_box .input_box input:disabled, .modal .modal_content.type_table .modal_body .search_box .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.modal .modal_content.type_table .modal_body .search_box .input_box.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.modal .modal_content.type_table .modal_body .search_box .input_box.date .calendar {
  position: relative;
}
.modal .modal_content.type_table .modal_body .search_box .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_calendar.svg");
          mask-image: url("/assets/img/icon/ico_calendar.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.modal .modal_content.type_table .modal_body .search_box .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.modal .modal_content.type_table .modal_body .search_box .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.modal .modal_content.type_table .modal_body .search_box .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.modal .modal_content.type_table .modal_body .search_box .input_box.search .input_search_btn {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.modal .modal_content.type_table .modal_body .search_box .input_box.search .input_search_btn:hover {
  width: 20px;
  height: 20px;
}
.modal .modal_content.type_table .modal_body .search_box .search_btn {
  height: 30px;
  font-size: 14px;
  width: 70px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
}
.modal .modal_content.type_table .modal_body .search_box .search_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.modal .modal_content.type_table .modal_body .search_box .search_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.modal .modal_content.type_table .modal_body .search_box .search_btn.gray {
  background: #999999;
  color: #ffffff;
}
.modal .modal_content.type_table .modal_body .search_box .search_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.modal .modal_content.type_table .modal_body .search_box .search_btn.gray:disabled {
  pointer-events: none;
}
.modal .modal_content.type_table .modal_body .search_box .search_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.modal .modal_content.type_table .modal_body .search_box .search_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.modal .modal_content.type_table .modal_body .search_box .search_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.modal .modal_content.type_table .modal_body .search_box .search_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.modal .modal_content.type_table .modal_body .search_box .search_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.modal .modal_content.type_table .modal_body .search_box .search_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.modal .modal_content.type_table .modal_body .table_box {
  margin-top: 16px;
  position: relative;
  overflow-x: auto;
  overflow-y: auto;
  min-height: 400px;
  max-height: 400px;
}
.modal .modal_content.type_table .modal_body .table_box::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.modal .modal_content.type_table .modal_body .table_box::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.modal .modal_content.type_table .modal_body .table_box::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.modal .modal_content.type_table .modal_body .table_box::-webkit-scrollbar-track {
  background: #ffffff;
}
.modal .modal_content.type_table .modal_body .table_box::-webkit-scrollbar-button {
  display: none;
}
.modal .modal_content.type_table .modal_body .table_box table {
  position: relative;
  width: 100%;
  table-layout: fixed;
}
.modal .modal_content.type_table .modal_body .table_box table thead th {
  vertical-align: middle;
  background: #435ebe;
  border: none;
  padding: 10px 0;
  color: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 15px;
}
.modal .modal_content.type_table .modal_body .table_box table thead th.fixed {
  position: sticky;
  top: 0;
  z-index: 1;
  border: 0;
}
.modal .modal_content.type_table .modal_body .table_box table thead th.fixed::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  display: table-column-group;
  width: -webkit-fill-available;
  height: 100%;
  border-bottom: 1px solid #dce7f1;
  z-index: 1;
}
.modal .modal_content.type_table .modal_body .table_box table tbody td {
  vertical-align: middle;
  background: #ffffff;
  border-bottom: 1px solid #dce7f1;
  padding: 10px 0;
  color: #222222;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  text-align: center;
}
.modal .modal_content.type_table .modal_body .table_box table {
  min-width: 300px;
}
.modal .modal_content.type_table .modal_body .table_box table thead th {
  border: 1px solid #dce7f1;
  line-height: 1.2;
}
.modal .modal_content.type_table .modal_body .table_box table thead th:nth-child(2) {
  max-width: 50%;
  width: 100%;
}
.modal .modal_content.type_table .modal_body .table_box table tbody tr td {
  cursor: pointer;
}
.modal .modal_content.type_table .modal_body .table_box table tbody tr td .select_box {
  position: relative;
}
.modal .modal_content.type_table .modal_body .table_box table tbody tr td .select_box label {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #435ebe;
}
.modal .modal_content.type_table .modal_body .table_box table tbody tr td .select_box select {
  width: 80px;
  height: 28px;
  border-radius: 4px;
  padding: 0px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.modal .modal_content.type_table .modal_body .table_box table tbody tr td .select_box select::-webkit-input-placeholder {
  color: #6c757d;
}
.modal .modal_content.type_table .modal_body .table_box table tbody tr td .select_box select::-moz-placeholder {
  color: #6c757d;
}
.modal .modal_content.type_table .modal_body .table_box table tbody tr td .select_box select:-ms-input-placeholder {
  color: #6c757d;
}
.modal .modal_content.type_table .modal_body .table_box table tbody tr td .select_box select::-ms-input-placeholder {
  color: #6c757d;
}
.modal .modal_content.type_table .modal_body .table_box table tbody tr td .select_box select::placeholder {
  color: #6c757d;
}
.modal .modal_content.type_table .modal_body .table_box table tbody tr td .select_box select:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.modal .modal_content.type_table .modal_body .table_box table tbody tr td .select_box select:disabled {
  background: #e9ecef;
  cursor: default;
}
.modal .modal_content.type_table .modal_body .table_box table tbody tr td .select_box select {
  padding: 0;
  text-align: center;
}
.modal .modal_content.type_table .modal_body .table_box table tbody tr:hover td {
  background: rgba(124, 141, 181, 0.2);
}
.modal .modal_content.type_table .modal_body .organization_box {
  border: 1px solid #dce7f1;
  padding: 16px;
  background: #ffffff;
  overflow-y: auto;
  min-height: 490px;
  max-height: 490px;
}
.modal .modal_content.type_table .modal_body .organization_box::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.modal .modal_content.type_table .modal_body .organization_box::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.modal .modal_content.type_table .modal_body .organization_box::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.modal .modal_content.type_table .modal_body .organization_box::-webkit-scrollbar-track {
  background: #ffffff;
}
.modal .modal_content.type_table .modal_body .organization_box::-webkit-scrollbar-button {
  display: none;
}
.modal .modal_content.type_table .modal_body .organization_box .tree_menu input[type=checkbox] {
  display: none;
  position: relative;
}
.modal .modal_content.type_table .modal_body .organization_box .tree_menu input[type=checkbox] + label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 4px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
}
.modal .modal_content.type_table .modal_body .organization_box .tree_menu input[type=checkbox] + label::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_company.svg");
          mask-image: url("/assets/img/icon/ico_company.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 14px;
  height: 14px;
}
.modal .modal_content.type_table .modal_body .organization_box .tree_menu input[type=checkbox] + label::after {
  content: "";
  display: inline-block;
  background-color: #7c8db5;
  -webkit-mask-image: url("/assets/img/icon/ico_arrow_down.svg");
          mask-image: url("/assets/img/icon/ico_arrow_down.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 12px;
  height: 12px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.modal .modal_content.type_table .modal_body .organization_box .tree_menu input[type=checkbox] + label + ul {
  display: none;
}
.modal .modal_content.type_table .modal_body .organization_box .tree_menu input[type=checkbox]:checked + label::after {
  content: "";
  display: inline-block;
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
}
.modal .modal_content.type_table .modal_body .organization_box .tree_menu input[type=checkbox]:checked + label + ul {
  display: block;
}
.modal .modal_content.type_table .modal_body .organization_box .tree_menu li {
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  cursor: pointer;
  padding-top: 12px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.modal .modal_content.type_table .modal_body .organization_box .tree_menu li.active {
  font-family: "Pretendard Variable";
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: #435ebe;
  color: #435ebe;
}
.modal .modal_content.type_table .modal_body .organization_box .tree_menu li.company {
  padding-top: 0;
}
.modal .modal_content.type_table .modal_body .organization_box .tree_menu li.company + .company {
  margin-top: 20px;
}
.modal .modal_content.type_table .modal_body .organization_box .children {
  padding-left: 16px;
  /* 맨 하위 ul에 padding-left 30px 적용 */
}
.modal .modal_content.type_table .modal_body .organization_box .children li input[type=checkbox] {
  display: none;
  position: relative;
}
.modal .modal_content.type_table .modal_body .organization_box .children li input[type=checkbox] + label {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 4px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
}
.modal .modal_content.type_table .modal_body .organization_box .children li input[type=checkbox] + label::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_folder_plus.svg");
          mask-image: url("/assets/img/icon/ico_folder_plus.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 16px;
}
.modal .modal_content.type_table .modal_body .organization_box .children li input[type=checkbox] + label::after {
  content: none;
}
.modal .modal_content.type_table .modal_body .organization_box .children li input[type=checkbox] + label + .children {
  display: none;
}
.modal .modal_content.type_table .modal_body .organization_box .children li input[type=checkbox]:checked + label::before {
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_folder_minus.svg");
          mask-image: url("/assets/img/icon/ico_folder_minus.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 16px;
}
.modal .modal_content.type_table .modal_body .organization_box .children li input[type=checkbox]:checked + label::after {
  content: none;
}
.modal .modal_content.type_table .modal_body .organization_box .children li input[type=checkbox]:checked + label + ul {
  display: block;
}
.modal .modal_content.type_table .modal_body .organization_box .children:last-child ul {
  padding-left: 26px;
}
.modal .modal_content.type_tab {
  max-width: 1000px !important;
}
.modal .modal_content.type_tab .modal_body .tab_section {
  position: relative;
  width: 100%;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 6px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  top: 1px;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab li {
  border-radius: 4px 4px 0 0;
  background: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 500;
  color: #777777;
  font-size: 15px;
  text-align: center;
  cursor: pointer;
  border: 1px solid #dce7f1;
  border-bottom: none;
  -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab li.active {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #435ebe;
  border: 1px solid #435ebe;
  border-bottom: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  z-index: 1;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab li:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  border-bottom: none;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box {
  display: none;
  position: relative;
  background: #ffffff;
  border: 1px solid #dce7f1;
  border-top: 1px solid #435ebe;
  width: 100%;
  padding: 16px;
  border-radius: 0 0 5px 5px;
  -webkit-box-shadow: rgba(99, 99, 99, 0.15) 0px 1px 8px 0px;
          box-shadow: rgba(99, 99, 99, 0.15) 0px 1px 8px 0px;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box.show {
  display: block;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab li {
  padding: 0 30px;
  height: 40px;
  line-height: 40px;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 12px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .flex + .flex {
  margin-top: 12px;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .password_btn {
  height: 28px;
  font-size: 14px;
  width: 120px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .password_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .password_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .password_btn.gray {
  background: #999999;
  color: #ffffff;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .password_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .password_btn.gray:disabled {
  pointer-events: none;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .password_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .password_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .password_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .password_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .password_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .password_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .input_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .input_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .input_box input {
  width: 152px;
  height: 28px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .input_box input::-moz-placeholder {
  color: #6c757d;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .input_box input::placeholder {
  color: #6c757d;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .input_box input:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .input_box input:disabled, .modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .input_box.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .input_box.date .calendar {
  position: relative;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_calendar.svg");
          mask-image: url("/assets/img/icon/ico_calendar.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .input_box.search input {
  width: 450px;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .input_box.search .input_search_btn {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .input_box.search .input_search_btn:hover {
  width: 20px;
  height: 20px;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .input_box input.wd125 {
  width: 124px;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .input_box input.wd180 {
  width: 180px;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .input_box input.wd385 {
  width: 386px;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .input_box.search input {
  width: 386px;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .select_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .select_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .select_box select {
  width: 152px;
  height: 28px;
  padding: 0 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  font-size: 14px;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .select_box select::-webkit-input-placeholder {
  color: #6c757d;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .select_box select::-moz-placeholder {
  color: #6c757d;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .select_box select:-ms-input-placeholder {
  color: #6c757d;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .select_box select::-ms-input-placeholder {
  color: #6c757d;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .select_box select::placeholder {
  color: #6c757d;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .select_box select:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .select_box select:disabled {
  background: #e9ecef;
  cursor: default;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 8px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .textarea_box {
  margin-top: 20px;
  width: 100%;
  position: relative;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .textarea_box textarea {
  width: 100%;
  height: 120px;
  border-radius: 4px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  overflow-y: auto;
  resize: none;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .textarea_box textarea::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .textarea_box textarea::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .textarea_box textarea::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .textarea_box textarea::-webkit-scrollbar-track {
  background: #ffffff;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .textarea_box textarea::-webkit-scrollbar-button {
  display: none;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .textarea_box textarea::-webkit-input-placeholder {
  color: #6c757d;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .textarea_box textarea::-moz-placeholder {
  color: #6c757d;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .textarea_box textarea:-ms-input-placeholder {
  color: #6c757d;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .textarea_box textarea::-ms-input-placeholder {
  color: #6c757d;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .textarea_box textarea::placeholder {
  color: #6c757d;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .textarea_box textarea:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .textarea_box textarea:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .textarea_box textarea:disabled, .modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .textarea_box textarea:read-only {
  background: #e9ecef;
  cursor: default;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .textarea_box .lable {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #435ebe;
  font-size: 15px;
  margin-bottom: 6px;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_upload_box {
  margin-top: 20px;
  position: relative;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_upload_box .file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_upload_box .file label {
  cursor: pointer;
  display: block;
  width: 100px;
  height: 32px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 32px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 0 4px 4px 0;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_upload_box .file label::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_file.svg");
          mask-image: url("/assets/img/icon/ico_file.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 4px;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_upload_box .file input[type=text] {
  width: 500px;
  height: 32px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  border-radius: 4px 0 0 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_upload_box .file input[type=text]::-webkit-input-placeholder {
  color: #6c757d;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_upload_box .file input[type=text]::-moz-placeholder {
  color: #6c757d;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_upload_box .file input[type=text]:-ms-input-placeholder {
  color: #6c757d;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_upload_box .file input[type=text]::-ms-input-placeholder {
  color: #6c757d;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_upload_box .file input[type=text]::placeholder {
  color: #6c757d;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_upload_box .file input[type=text]:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_upload_box .file input[type=text]:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_upload_box .file input[type=text]:disabled, .modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_upload_box .file input[type=text]:read-only {
  background: #e9ecef;
  cursor: default;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_upload_box .file input[type=file] {
  display: none;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_upload_box .file .upload_btn {
  height: 32px;
  font-size: 14px;
  width: 100px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
  margin-left: 20px;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_upload_box .file .upload_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_upload_box .file .upload_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_upload_box .file .upload_btn.gray {
  background: #999999;
  color: #ffffff;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_upload_box .file .upload_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_upload_box .file .upload_btn.gray:disabled {
  pointer-events: none;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_upload_box .file .upload_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_upload_box .file .upload_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_upload_box .file .upload_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_upload_box .file .upload_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_upload_box .file .upload_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_upload_box .file .upload_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_upload_box .lable {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #435ebe;
  font-size: 15px;
  margin-bottom: 6px;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_box {
  margin-top: 20px;
  width: 100%;
  max-height: 140px;
  overflow-y: auto;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_box::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_box::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_box::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_box::-webkit-scrollbar-track {
  background: #ffffff;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_box::-webkit-scrollbar-button {
  display: none;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_box table {
  width: 100%;
  table-layout: fixed;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_box table th {
  position: relative;
  padding: 10px 0;
  font-family: "Pretendard Variable";
  font-weight: 500;
  color: #222222;
  font-size: 15px;
  vertical-align: middle;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_box table th:first-child {
  width: 20px;
  margin: 0 auto;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_box table th:last-child {
  width: 120px;
  margin: 0 auto;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_box table th .file_delete_btn {
  font-family: "Pretendard Variable";
  font-weight: 500;
  color: #222222;
  font-size: 15px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_box table th .file_delete_btn:hover {
  color: #dc3545;
  text-decoration: underline;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_box table th .file_save_btn {
  font-family: "Pretendard Variable";
  font-weight: 500;
  color: #222222;
  font-size: 15px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #435ebe;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_box table th .file_save_btn:hover {
  color: #222222;
  text-decoration: underline;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_box table th .file_save_btn:hover::before {
  background-color: #222222;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_box table th .file_save_btn::before {
  margin-left: 10px;
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_download.svg");
          mask-image: url("/assets/img/icon/ico_download.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 14px;
  margin-right: 2px;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_box table td {
  padding: 5px 0;
  font-family: "Pretendard Variable";
  font-weight: 500;
  color: #222222;
  font-size: 15px;
  vertical-align: middle;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_box table td:first-child {
  width: 20px;
  margin: 0 auto;
  text-align: center;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_box table td.file_name {
  position: relative;
  padding: 0 0 0 20px;
  max-width: calc(100% - 20px - 120px);
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_box table td.file_name p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: "Pretendard Variable";
  font-weight: 500;
  color: #222222;
  font-size: 15px;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_box table td:last-child {
  width: 120px;
  margin: 0 auto;
  text-align: center;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_box table td .file_delete_btn {
  height: 28px;
  font-size: 14px;
  width: 60px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  border: 1px solid #dc3545 !important;
  background: #ffffff;
  color: #dc3545;
  font-size: 14px;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_box table td .file_delete_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_box table td .file_delete_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_box table td .file_delete_btn.gray {
  background: #999999;
  color: #ffffff;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_box table td .file_delete_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_box table td .file_delete_btn.gray:disabled {
  pointer-events: none;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_box table td .file_delete_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_box table td .file_delete_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_box table td .file_delete_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_box table td .file_delete_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_box table td .file_delete_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_box table td .file_delete_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_box table td .file_delete_btn::before {
  content: "";
  display: inline-block;
  background-color: #dc3545;
  -webkit-mask-image: url("/assets/img/icon/ico_delete.svg");
          mask-image: url("/assets/img/icon/ico_delete.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 14px;
  margin-right: 4px;
  vertical-align: middle;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_box table td .file_delete_btn:hover {
  background: #dc3545;
  color: #ffffff;
}
.modal .modal_content.type_tab .modal_body .tab_section .tab_box .tab_content .file_box table td .file_delete_btn:hover::before {
  background-color: #ffffff;
}
.modal .modal_content.type_tab .modal_body .tab_section .menu_tab {
  margin-top: 12px;
}
.modal .modal_content.type_tab .modal_body .tab_section .menu_tab ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.modal .modal_content.type_tab .modal_body .tab_section .menu_tab ul li {
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  color: #435ebe;
  background: #ffffff;
  border: 1px solid #435ebe;
  width: 100px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.modal .modal_content.type_tab .modal_body .tab_section .menu_tab ul li:first-child {
  border-radius: 4px 0 0 4px;
}
.modal .modal_content.type_tab .modal_body .tab_section .menu_tab ul li:first-child:hover {
  border-right: 1px solid #ffffff;
}
.modal .modal_content.type_tab .modal_body .tab_section .menu_tab ul li:last-child {
  border-radius: 0 4px 4px 0;
  border-left: none;
}
.modal .modal_content.type_tab .modal_body .tab_section .menu_tab ul li:last-child:hover {
  border-left: 1px solid #ffffff;
}
.modal .modal_content.type_tab .modal_body .tab_section .menu_tab ul li.active {
  background: #435ebe;
  color: #ffffff;
}
.modal .modal_content.type_tab .modal_body .tab_section .menu_tab ul li:hover {
  background: #435ebe;
  color: #ffffff;
}
.modal .modal_content.type_tab .modal_body .tab_section .menu_content {
  margin-top: 20px;
  display: none;
  position: relative;
}
.modal .modal_content.type_tab .modal_body .tab_section .menu_content.show {
  display: block;
}
.modal .modal_content.type_tab .modal_body .tab_section .allow_box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.modal .modal_content.type_tab .modal_body .tab_section .allow_box .menu_list {
  width: 46%;
}
.modal .modal_content.type_tab .modal_body .tab_section .allow_box .menu_list p {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 15px;
  color: #222222;
}
.modal .modal_content.type_tab .modal_body .tab_section .allow_box .menu_list ul {
  margin-top: 12px;
  overflow-y: auto;
  width: 100%;
  height: 428px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.modal .modal_content.type_tab .modal_body .tab_section .allow_box .menu_list ul::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.modal .modal_content.type_tab .modal_body .tab_section .allow_box .menu_list ul::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.modal .modal_content.type_tab .modal_body .tab_section .allow_box .menu_list ul::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.modal .modal_content.type_tab .modal_body .tab_section .allow_box .menu_list ul::-webkit-scrollbar-track {
  background: #ffffff;
}
.modal .modal_content.type_tab .modal_body .tab_section .allow_box .menu_list ul::-webkit-scrollbar-button {
  display: none;
}
.modal .modal_content.type_tab .modal_body .tab_section .allow_box .menu_list ul li {
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  padding: 10px 16px;
  border-bottom: 1px solid #e5e7eb;
  cursor: pointer;
}
.modal .modal_content.type_tab .modal_body .tab_section .allow_box .menu_list ul li:hover {
  background: rgba(124, 141, 181, 0.2);
}
.modal .modal_content.type_tab .modal_body .tab_section .allow_box .menu_list ul li.choice {
  background: rgba(124, 141, 181, 0.2);
  font-family: "Pretendard Variable";
  font-weight: 700;
}
.modal .modal_content.type_tab .modal_body .tab_section .allow_box .menu_list ul li:last-child {
  border-bottom: 0;
}
.modal .modal_content.type_tab .modal_body .tab_section .allow_box .btn_box .allow_btn {
  display: block;
  background-color: #7c8db5;
  -webkit-mask-image: url("/assets/img/icon/ico_caret_right.svg");
          mask-image: url("/assets/img/icon/ico_caret_right.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 30px;
  height: 30px;
}
.modal .modal_content.type_tab .modal_body .tab_section .allow_box .btn_box .not_allow_btn {
  margin-top: 10px;
  display: block;
  background-color: #7c8db5;
  -webkit-mask-image: url("/assets/img/icon/ico_caret_left.svg");
          mask-image: url("/assets/img/icon/ico_caret_left.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 30px;
  height: 30px;
}
.modal .modal_content.type_tab .modal_body .tab_section .allow_box .btn_box button:hover {
  background-color: #435ebe;
}
.modal .modal_content.type_tab .modal_body .tab_section .function_box {
  overflow-y: auto;
  height: 428px;
}
.modal .modal_content.type_tab .modal_body .tab_section .function_box::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.modal .modal_content.type_tab .modal_body .tab_section .function_box::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.modal .modal_content.type_tab .modal_body .tab_section .function_box::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.modal .modal_content.type_tab .modal_body .tab_section .function_box::-webkit-scrollbar-track {
  background: #ffffff;
}
.modal .modal_content.type_tab .modal_body .tab_section .function_box::-webkit-scrollbar-button {
  display: none;
}
.modal .modal_content.type_tab .modal_body .tab_section .function_box table {
  width: 100%;
}
.modal .modal_content.type_tab .modal_body .tab_section .function_box table td {
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  vertical-align: middle;
  color: #222222;
  text-align: center;
  padding: 10px;
}
.modal .modal_content.type_tab .modal_body .tab_section .function_box table td .toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

#calendar {
  position: relative;
  width: 100%;
  overflow-x: auto; /* 캘린더가 넘칠 경우 가로 스크롤 */
}

.day_count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: absolute;
  left: 50%;
  top: 7px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 25px;
  color: #25396f;
}
.day_count span {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 25px;
  color: #25396f;
}

.fc-view-container {
  min-width: 100%;
}

.fc .fc-toolbar {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 15px;
}

.fc-toolbar-chunk .fc-toolbar-title {
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 22px;
  color: #222222;
  padding-left: 60px;
  width: 185px;
}
.fc-toolbar-chunk:nth-child(2) {
  display: none;
}
.fc-toolbar-chunk:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.fc-toolbar-chunk:last-child .fc-today-button {
  outline: none;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  border-radius: 20px;
  padding: 6px 24px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  color: #7c8db5;
  background: #ffffff;
  border: 1px solid #7c8db5;
}
.fc-toolbar-chunk:last-child .fc-today-button:disabled {
  border: 1px solid rgba(31, 31, 31, 0.12);
  opacity: 1;
  color: rgba(0, 0, 0, 0.3);
  cursor: default;
}
.fc-toolbar-chunk:last-child .fc-today-button:disabled:hover {
  background: #ffffff;
}
.fc-toolbar-chunk:last-child .fc-today-button:hover {
  background: #eef2f7;
}
.fc-toolbar-chunk:last-child .fc-button-group {
  margin: 0;
  padding: 0;
}
.fc-toolbar-chunk:last-child .fc-button-group button {
  padding: 0;
  background: #ffffff;
  border: none;
  border-radius: 50% !important;
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  outline: none;
}
.fc-toolbar-chunk:last-child .fc-button-group button::before {
  content: "";
  display: inline-block;
}
.fc-toolbar-chunk:last-child .fc-button-group button.fc-prev-button {
  position: absolute;
  top: 50%;
  left: -190px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.fc-toolbar-chunk:last-child .fc-button-group button.fc-prev-button::before {
  background-color: #aaa;
  -webkit-mask-image: url("/assets/img/icon/ico_arrow_right.svg");
          mask-image: url("/assets/img/icon/ico_arrow_right.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.fc-toolbar-chunk:last-child .fc-button-group button.fc-next-button::before {
  background-color: #aaa;
  -webkit-mask-image: url("/assets/img/icon/ico_arrow_right.svg");
          mask-image: url("/assets/img/icon/ico_arrow_right.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
}
.fc-toolbar-chunk:last-child .fc-button-group button:hover {
  background: #eef2f7;
}
.fc-toolbar-chunk:last-child .fc-button-group button span {
  display: none;
}
.fc-toolbar-chunk:last-child .fc-button-group button span::before {
  content: none;
}

.fc table {
  border: none;
}
.fc table th {
  border: none;
  border-right: 1px solid #dce7f1;
}
.fc table td {
  border: none;
  border-right: 1px solid #dce7f1;
  border-bottom: 1px solid #dce7f1;
}

.fc .fc-col-header-cell-cushion {
  font-size: 13px;
  padding: 5px 0;
}

.fc-daygrid-day-number {
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
}

.fc .fc-day-other .fc-daygrid-day-top {
  opacity: 0.6;
}

.fc-day-today .fc-daygrid-day-number {
  color: #ffffff;
  background: #435ebe;
  border-radius: 50%;
}

.fc-scrollgrid-sync-table {
  min-height: calc(100vh - 200px) !important;
}

.modal .modal_body .event_regi {
  padding: 10px 0;
}
.modal .modal_body .event_regi .input_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.modal .modal_body .event_regi .input_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.modal .modal_body .event_regi .input_box input {
  width: 152px;
  height: 28px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.modal .modal_body .event_regi .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.modal .modal_body .event_regi .input_box input::-moz-placeholder {
  color: #6c757d;
}
.modal .modal_body .event_regi .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.modal .modal_body .event_regi .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.modal .modal_body .event_regi .input_box input::placeholder {
  color: #6c757d;
}
.modal .modal_body .event_regi .input_box input:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.modal .modal_body .event_regi .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.modal .modal_body .event_regi .input_box input:disabled, .modal .modal_body .event_regi .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.modal .modal_body .event_regi .input_box.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.modal .modal_body .event_regi .input_box.date .calendar {
  position: relative;
}
.modal .modal_body .event_regi .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_calendar.svg");
          mask-image: url("/assets/img/icon/ico_calendar.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.modal .modal_body .event_regi .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.modal .modal_body .event_regi .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.modal .modal_body .event_regi .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.modal .modal_body .event_regi .input_box.search input {
  width: 450px;
}
.modal .modal_body .event_regi .input_box.search .input_search_btn {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.modal .modal_body .event_regi .input_box.search .input_search_btn:hover {
  width: 20px;
  height: 20px;
}
.modal .modal_body .event_regi .input_box input.wd100 {
  width: 100%;
}
.modal .modal_body .event_regi .input_box + .input_box {
  margin-top: 20px;
}
.modal .modal_body .event_regi .input_box span {
  margin: 0 10px;
}
.modal .modal_body .event_regi .btn_box {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.modal .modal_body .event_regi .btn_box button {
  height: 30px;
  font-size: 14px;
  width: 70px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
}
.modal .modal_body .event_regi .btn_box button:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.modal .modal_body .event_regi .btn_box button:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.modal .modal_body .event_regi .btn_box button.gray {
  background: #999999;
  color: #ffffff;
}
.modal .modal_body .event_regi .btn_box button.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.modal .modal_body .event_regi .btn_box button.gray:disabled {
  pointer-events: none;
}
.modal .modal_body .event_regi .btn_box button.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.modal .modal_body .event_regi .btn_box button.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.modal .modal_body .event_regi .btn_box button.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.modal .modal_body .event_regi .btn_box button.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.modal .modal_body .event_regi .btn_box button.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.modal .modal_body .event_regi .btn_box button.excel_btn:hover::before {
  background-color: #1d6f42;
}
.modal .modal_body .event_regi .btn_box button.delete_btn {
  border: 1px solid #dc3545 !important;
  background: #dc3545;
  color: #ffffff;
}
.modal .modal_body .event_regi .btn_box button.delete_btn:hover {
  background: #ffffff;
  color: #dc3545;
}

.fc-h-event {
  background: #435ebe;
  border: 1px solid #435ebe;
}

.car .table_section {
  position: relative;
  width: 100%;
  padding: 16px;
}
.car .table_section .search_box {
  position: relative;
  width: 520px;
  margin-bottom: 20px;
}
.car .table_section .search_box .input_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.car .table_section .search_box .input_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.car .table_section .search_box .input_box input {
  width: auto;
  height: 28px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.car .table_section .search_box .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.car .table_section .search_box .input_box input::-moz-placeholder {
  color: #6c757d;
}
.car .table_section .search_box .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.car .table_section .search_box .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.car .table_section .search_box .input_box input::placeholder {
  color: #6c757d;
}
.car .table_section .search_box .input_box input:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.car .table_section .search_box .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.car .table_section .search_box .input_box input:disabled, .car .table_section .search_box .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.car .table_section .search_box .input_box.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.car .table_section .search_box .input_box.date .calendar {
  position: relative;
}
.car .table_section .search_box .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_calendar.svg");
          mask-image: url("/assets/img/icon/ico_calendar.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.car .table_section .search_box .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.car .table_section .search_box .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.car .table_section .search_box .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.car .table_section .search_box .input_box.search input {
  width: 450px;
}
.car .table_section .search_box .input_box.search .input_search_btn {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.car .table_section .search_box .input_box.search .input_search_btn:hover {
  width: 20px;
  height: 20px;
}
.car .table_section .search_box .input_box.search input {
  width: 450px;
}
.car .table_section .group_status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 15px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding-top: 5px;
  margin-bottom: 20px;
}
.car .table_section .group_status > p {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 15px;
  color: #222222;
}
.car .table_section .group_status .group_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 15px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.car .table_section .group_status .group_box .toggle_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.car .table_section .group_status .group_box .toggle_box p {
  padding: 4px 0;
  line-height: 30px;
  min-width: 70px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.car .table_section .group_status .group_box .toggle_box .toggle {
  border-radius: 0 4px 4px 0;
  background: #ffffff;
  border: 1px solid #dce7f1;
  padding: 4px 10px;
}
.car .table_section .table_box {
  position: relative;
  overflow-x: auto;
  overflow-y: auto;
  min-width: 1000px;
  max-height: 700px;
}
.car .table_section .table_box::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.car .table_section .table_box::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.car .table_section .table_box::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.car .table_section .table_box::-webkit-scrollbar-track {
  background: #ffffff;
}
.car .table_section .table_box::-webkit-scrollbar-button {
  display: none;
}
.car .table_section .table_box table {
  position: relative;
  width: 100%;
  table-layout: fixed;
}
.car .table_section .table_box table thead th {
  vertical-align: middle;
  background: #435ebe;
  border: none;
  padding: 10px 0;
  color: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 15px;
}
.car .table_section .table_box table thead th.fixed {
  position: sticky;
  top: 0;
  z-index: 1;
  border: 0;
}
.car .table_section .table_box table thead th.fixed::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  display: table-column-group;
  width: -webkit-fill-available;
  height: 100%;
  border-bottom: 1px solid #dce7f1;
  z-index: 1;
}
.car .table_section .table_box table tbody td {
  vertical-align: middle;
  background: #ffffff;
  border-bottom: 1px solid #dce7f1;
  padding: 10px 0;
  color: #222222;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  text-align: center;
}
.car .table_section .table_box table thead tr th {
  background: #eef2f7;
  color: #222222;
  padding: 8px 0;
  border-top: 1px solid #e1e3ea;
  border-bottom: 1px solid #e1e3ea;
}
.car .table_section .table_box table thead tr th.border {
  border-left: 1px solid #e1e3ea;
}
.car .table_section .table_box table thead tr th:last-child {
  border-left: 1px solid #e1e3ea;
}
.car .table_section .table_box table thead tr:nth-child(2) th {
  background: #eef2f7;
  color: #222222;
}
.car .table_section .table_box table thead tr:last-child th {
  color: #435ebe;
}
.car .table_section .table_box table tbody tr {
  cursor: pointer;
}
.car .table_section .table_box table tbody tr td .toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.car .table_section .table_box table tbody tr td .group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.car .table_section .table_box table tbody tr td .group input[type=radio] {
  display: none;
}
.car .table_section .table_box table tbody tr td .group input[type=radio] + label {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 14px;
  color: #222222;
  border: 1px solid #435ebe;
  padding: 6px 10px;
  cursor: pointer;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  background-color: #ffffff;
}
.car .table_section .table_box table tbody tr td .group input[type=radio]:checked + label {
  background: #435ebe;
  color: #ffffff;
}
.car .table_section .table_box table tbody tr td .group input[type=radio]:first-of-type + label {
  border-radius: 4px 0 0 4px;
  border-right: 0;
}
.car .table_section .table_box table tbody tr td .group input[type=radio]:last-of-type + label {
  border-radius: 0 4px 4px 0;
  border-left: 0;
}
.car .table_section .table_box table tbody tr td .group input[type=checkbox] {
  display: none;
}
.car .table_section .table_box table tbody tr td .group input[type=checkbox] + label {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 14px;
  color: #222222;
  border: 1px solid #435ebe;
  padding: 6px 10px;
  cursor: pointer;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  background-color: #ffffff;
}
.car .table_section .table_box table tbody tr td .group input[type=checkbox]:checked + label {
  background: #435ebe;
  color: #ffffff;
}
.car .table_section .table_box table tbody tr td .group input[type=checkbox]:first-of-type + label {
  border-radius: 4px 0 0 4px;
  border-right: 0;
}
.car .table_section .table_box table tbody tr td .group input[type=checkbox]:last-of-type + label {
  border-radius: 0 4px 4px 0;
  border-left: 0;
}
.car .table_section .table_box table tbody tr td .progress {
  position: relative;
  width: calc(100% - 25px);
  height: 24px;
  background: rgba(124, 141, 181, 0.2);
  border-radius: 20px;
}
.car .table_section .table_box table tbody tr td .progress .maker {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #435ebe;
  border-radius: 20px;
}
.car .table_section .table_box table tbody tr td .progress .percent {
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #000000;
  font-size: 14px;
}
.car .table_section .table_box table tbody tr td .progress .db {
  position: absolute;
  top: 50%;
  right: -20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #000000;
  font-size: 14px;
}
.car .table_section .table_box table tbody tr td .input_box {
  padding: 0 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
}
.car .table_section .table_box table tbody tr td .input_box label {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #435ebe;
}
.car .table_section .table_box table tbody tr td .input_box input {
  width: 130px;
  height: 30px;
  border-radius: 4px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.car .table_section .table_box table tbody tr td .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.car .table_section .table_box table tbody tr td .input_box input::-moz-placeholder {
  color: #6c757d;
}
.car .table_section .table_box table tbody tr td .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.car .table_section .table_box table tbody tr td .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.car .table_section .table_box table tbody tr td .input_box input::placeholder {
  color: #6c757d;
}
.car .table_section .table_box table tbody tr td .input_box input:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.car .table_section .table_box table tbody tr td .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.car .table_section .table_box table tbody tr td .input_box input:disabled, .car .table_section .table_box table tbody tr td .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.car .table_section .table_box table tbody tr td .input_box.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.car .table_section .table_box table tbody tr td .input_box.date .calendar {
  position: relative;
}
.car .table_section .table_box table tbody tr td .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_calendar.svg");
          mask-image: url("/assets/img/icon/ico_calendar.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.car .table_section .table_box table tbody tr td .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.car .table_section .table_box table tbody tr td .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.car .table_section .table_box table tbody tr td .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.car .table_section .table_box table tbody tr td .input_box.search .input_search_btn {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.car .table_section .table_box table tbody tr td .input_box.search .input_search_btn:hover {
  width: 20px;
  height: 20px;
}
.car .table_section .table_box table tbody tr td .input_box button {
  height: 28px;
  font-size: 14px;
  width: 46px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.car .table_section .table_box table tbody tr td .input_box button:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.car .table_section .table_box table tbody tr td .input_box button:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.car .table_section .table_box table tbody tr td .input_box button.gray {
  background: #999999;
  color: #ffffff;
}
.car .table_section .table_box table tbody tr td .input_box button.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.car .table_section .table_box table tbody tr td .input_box button.gray:disabled {
  pointer-events: none;
}
.car .table_section .table_box table tbody tr td .input_box button.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.car .table_section .table_box table tbody tr td .input_box button.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.car .table_section .table_box table tbody tr td .input_box button.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.car .table_section .table_box table tbody tr td .input_box button.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.car .table_section .table_box table tbody tr td .input_box button.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.car .table_section .table_box table tbody tr td .input_box button.excel_btn:hover::before {
  background-color: #1d6f42;
}
.car .table_section .table_box table tbody tr td .setting_btn {
  height: 30px;
  font-size: 14px;
  width: 50px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.car .table_section .table_box table tbody tr td .setting_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.car .table_section .table_box table tbody tr td .setting_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.car .table_section .table_box table tbody tr td .setting_btn.gray {
  background: #999999;
  color: #ffffff;
}
.car .table_section .table_box table tbody tr td .setting_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.car .table_section .table_box table tbody tr td .setting_btn.gray:disabled {
  pointer-events: none;
}
.car .table_section .table_box table tbody tr td .setting_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.car .table_section .table_box table tbody tr td .setting_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.car .table_section .table_box table tbody tr td .setting_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.car .table_section .table_box table tbody tr td .setting_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.car .table_section .table_box table tbody tr td .setting_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.car .table_section .table_box table tbody tr td .setting_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.car .table_section .table_box table tbody tr td.border {
  border-left: 1px solid #e1e3ea;
}
.car .table_section .table_box table tbody tr td:last-child {
  border-left: 1px solid #e1e3ea;
}
.car .table_section .table_box table tbody tr:hover td {
  background: rgba(124, 141, 181, 0.2);
}
.car .table_section .select_box {
  position: relative;
  position: absolute;
  right: 16px;
  bottom: 16px;
}
.car .table_section .select_box label {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #435ebe;
}
.car .table_section .select_box select {
  width: 100px;
  height: 36px;
  border-radius: 4px;
  padding: 0px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.car .table_section .select_box select::-webkit-input-placeholder {
  color: #6c757d;
}
.car .table_section .select_box select::-moz-placeholder {
  color: #6c757d;
}
.car .table_section .select_box select:-ms-input-placeholder {
  color: #6c757d;
}
.car .table_section .select_box select::-ms-input-placeholder {
  color: #6c757d;
}
.car .table_section .select_box select::placeholder {
  color: #6c757d;
}
.car .table_section .select_box select:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.car .table_section .select_box select:disabled {
  background: #e9ecef;
  cursor: default;
}

.modal .modal_content .modal_body .db_setting .all_check {
  margin-bottom: 10px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.modal .modal_content .modal_body .db_setting .all_check label {
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
}
.modal .modal_content .modal_body .db_setting .all_check label::before {
  vertical-align: -5px;
  margin-right: 4px;
}
.modal .modal_content .modal_body .db_setting table {
  width: 100%;
}
.modal .modal_content .modal_body .db_setting table thead th {
  vertical-align: middle;
  background: #435ebe;
  border: none;
  padding: 10px 0;
  color: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 15px;
}
.modal .modal_content .modal_body .db_setting table tbody td {
  vertical-align: middle;
  background: #ffffff;
  border-bottom: 1px solid #dce7f1;
  padding: 10px 0;
  color: #222222;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  text-align: center;
}
.modal .modal_content .modal_body .db_setting th {
  border-left: 1px solid #dce7f1 !important;
  font-weight: 500 !important;
}
.modal .modal_content .modal_body .db_setting td .checkbox input[type=checkbox]:checked + label::after {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.displayboard {
  max-height: 100% !important;
  padding-bottom: 60px !important;
  overflow: auto !important;
  overflow-y: auto;
}
.displayboard::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.displayboard::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.displayboard::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.displayboard::-webkit-scrollbar-track {
  background: #ffffff;
}
.displayboard::-webkit-scrollbar-button {
  display: none;
}
.displayboard .zoom_btn {
  position: absolute;
  right: 20px;
  background-color: #7c8db5;
  -webkit-mask-image: url("/assets/img/icon/ico_arrow_out.svg");
          mask-image: url("/assets/img/icon/ico_arrow_out.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 24px;
  height: 24px;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
.displayboard .zoom_btn:hover {
  background-color: #000000;
}
.displayboard .display_section h5 {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 20px;
  color: #222222;
  margin: 26px 0 14px;
}
.displayboard .display_section h5:first-of-type {
  margin-top: 0;
}
.displayboard .display_section .card_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.displayboard .display_section .card_box + ul {
  margin-top: 20px;
}
.displayboard .display_section .card_box:first-of-type li .tit::after {
  background-color: #222222;
  -webkit-mask-image: url("/assets/img/icon/ico_db.svg");
          mask-image: url("/assets/img/icon/ico_db.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 80px;
  height: 80px;
}
.displayboard .display_section .card_box:nth-of-type(2) li .tit::after {
  background-color: #222222;
  -webkit-mask-image: url("/assets/img/icon/ico_marketing.svg");
          mask-image: url("/assets/img/icon/ico_marketing.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 80px;
  height: 80px;
}
.displayboard .display_section .card_box:nth-of-type(3) li .tit::after {
  background-color: #222222;
  -webkit-mask-image: url("/assets/img/icon/ico_call.svg");
          mask-image: url("/assets/img/icon/ico_call.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 80px;
  height: 80px;
}
.displayboard .display_section .card_box:nth-of-type(3) li:nth-child(4) .tit::after {
  background-color: #222222;
  -webkit-mask-image: url("/assets/img/icon/ico_message.svg");
          mask-image: url("/assets/img/icon/ico_message.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 80px;
  height: 80px;
}
.displayboard .display_section .card_box li {
  position: relative;
  width: calc(25% - 20px);
  min-width: 280px;
  height: 120px;
  padding: 24px;
  border-radius: 16px;
  background: #e3f5ff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}
.displayboard .display_section .card_box li .tit {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 18px;
  color: #222222;
  word-break: keep-all;
  line-height: 1.2;
}
.displayboard .display_section .card_box li .tit::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: -16px;
  bottom: -16px;
  opacity: 0.1;
}
.displayboard .display_section .card_box li p {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 20px;
  color: #222222;
}
.displayboard .display_section .card_box li p.count {
  font-size: 30px;
}
.displayboard .display_section .card_box li span.count {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 30px;
  color: #222222;
}
.displayboard .display_section .card_box li > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.displayboard .display_section .card_box li > div p + p::before {
  content: "/";
  margin-right: 20px;
}
.displayboard .display_section .card_box li:nth-child(even) {
  background: #e5ecf6;
}
.displayboard .display_section .flowchart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 8px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.displayboard .display_section .flowchart li {
  position: relative;
  background: #ddd;
  text-align: center;
  width: 120px;
  height: 80px;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.displayboard .display_section .flowchart li .count {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 30px;
  color: #222222;
  word-break: keep-all;
}
.displayboard .display_section .flowchart li .company {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 18px;
  color: #222222;
}
.displayboard .display_section .flowchart li::after, .displayboard .display_section .flowchart li::before {
  content: "";
  display: inline-block;
  position: absolute;
  right: -38px;
  width: 0;
  height: 0;
  border-top: 40px solid transparent;
  border-bottom: 40px solid transparent;
  border-left: 40px solid #ddd;
  z-index: 2;
}
.displayboard .display_section .flowchart li::before {
  right: auto;
  left: 0;
  border-left: 40px solid #fff;
  z-index: 0;
}
.displayboard .display_section .flowchart li:first-child {
  padding-left: 20px;
}
.displayboard .display_section .flowchart li:first-child::before {
  border: none;
}
.displayboard .display_section .flowchart li:not(:first-child) {
  padding-left: 40px;
}
.displayboard .display_section .table table {
  width: 100%;
}
.displayboard .display_section .table table thead th {
  vertical-align: middle;
  background: #435ebe;
  border: none;
  padding: 10px 0;
  color: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 15px;
}
.displayboard .display_section .table table tbody td {
  vertical-align: middle;
  background: #ffffff;
  border-bottom: 1px solid #dce7f1;
  padding: 10px 0;
  color: #222222;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  text-align: center;
}
.displayboard.status {
  background: #f2f6f9;
}
.displayboard.status .status_section .card_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.displayboard.status .status_section .card_box + .card_box {
  margin-top: 14px;
}
.displayboard.status .status_section .card_box.realtime {
  position: relative;
  display: block;
  width: 100%;
  padding: 24px;
  background: #ffffff;
  border-radius: 10px;
}
.displayboard.status .status_section .card_box.realtime h5 {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 20px;
  color: #222222;
  margin-bottom: 14px;
}
.displayboard.status .status_section .card_box.realtime .quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: absolute;
  right: 0;
  bottom: 20px;
}
.displayboard.status .status_section .card_box.realtime .quantity label {
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  color: #777777;
}
.displayboard.status .status_section .card_box.realtime .quantity input {
  width: 80px;
  text-align: left;
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 22px;
  color: #222222;
  padding: 0 10px;
  border: 1px solid #dce7f1;
  border-radius: 4px;
}
.displayboard.status .status_section .card_box.realtime .quantity input:-moz-read-only {
  border: none;
}
.displayboard.status .status_section .card_box.realtime .quantity input:read-only {
  border: none;
}
.displayboard.status .status_section .card_box .card {
  width: 48%;
  padding: 24px 12px;
  background: #ffffff;
  border-radius: 10px;
  text-align: center;
}
.displayboard.status .status_section .card_box .card .tit {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 20px;
  color: #222222;
  word-break: keep-all;
  line-height: 1.2;
  margin-bottom: 14px;
}
.displayboard.status .status_section .card_box .card p {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 18px;
  color: #222222;
}
.displayboard.status .status_section .card_box .card p.count {
  font-size: 30px;
}
.displayboard.status .status_section .card_box .card p + p {
  margin-top: 12px;
}
.displayboard.status .status_section .card_box .card span {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 18px;
  color: #222222;
}
.displayboard.status .status_section .table {
  margin-top: 22px;
}
.displayboard.status .status_section .table table {
  width: 100%;
}
.displayboard.status .status_section .table table thead th {
  vertical-align: middle;
  background: #435ebe;
  border: none;
  padding: 10px 0;
  color: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 15px;
}
.displayboard.status .status_section .table table tbody td {
  vertical-align: middle;
  background: #ffffff;
  border-bottom: 1px solid #dce7f1;
  padding: 10px 0;
  color: #222222;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  text-align: center;
}
.displayboard.status .status_section .table table tbody tr:first-child td {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 15px;
}

@media screen and (max-width: 768px) {
  .displayboard .display_section .card_box li {
    padding: 12px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .displayboard .display_section .card_box li .tit {
    font-size: 20px;
  }
  .displayboard .display_section .card_box li .tit::after {
    opacity: 0.06;
  }
  .displayboard .display_section .card_box li p {
    font-size: 20px;
  }
  .displayboard .display_section .card_box li p.count {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .displayboard .display_section .card_box li span.count {
    font-size: 24px;
  }
  .displayboard .display_section .card_box li > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 6px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .displayboard .display_section .card_box li > div p {
    margin-bottom: 0 !important;
  }
  .displayboard .display_section .card_box li > div p + p::before {
    content: none;
  }
  .displayboard .display_section .flowchart li {
    width: 100px;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .displayboard .display_section .flowchart li .count {
    font-size: 24px;
  }
  .displayboard .display_section .flowchart li .company {
    font-size: 16px;
  }
  .displayboard .display_section .flowchart li::after, .displayboard .display_section .flowchart li::before {
    position: absolute;
    right: -30px;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 30px solid #ddd;
  }
  .displayboard .display_section .flowchart li::before {
    border-left: 30px solid #fff;
  }
  .displayboard .display_section .flowchart li:last-child {
    width: 120px;
    padding-left: 30px;
    padding-right: 20px;
  }
  .displayboard .display_section .flowchart li:last-child::after {
    border: none;
  }
  .displayboard .display_section .flowchart li:first-child, .displayboard .display_section .flowchart li:nth-child(6n+1) {
    padding-left: 15px !important;
  }
  .displayboard .display_section .flowchart li:first-child::before, .displayboard .display_section .flowchart li:nth-child(6n+1)::before {
    border: none;
  }
  .displayboard .display_section .flowchart li:not(:first-child), .displayboard .display_section .flowchart li:not(:nth-child(6n+1)) {
    padding-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  .displayboard .display_section .card_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 16px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .displayboard .display_section .card_box li {
    position: relative;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    justify-items: center;
    width: calc(50% - 10px);
    min-width: 140px;
    padding: 12px;
    gap: 16px;
  }
  .displayboard .display_section .card_box li .tit {
    font-size: 16px;
    text-align: center;
  }
  .displayboard .display_section .card_box li .tit::after {
    opacity: 0.06;
  }
  .displayboard .display_section .card_box li p {
    font-size: 16px;
  }
  .displayboard .display_section .card_box li p.count {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .displayboard .display_section .card_box li span.count {
    font-size: 24px;
  }
  .displayboard .display_section .card_box li > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 6px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .displayboard .display_section .card_box li > div p {
    margin-bottom: 0 !important;
  }
  .displayboard .display_section .card_box li > div p + p::before {
    content: none;
  }
  .displayboard .display_section .flowchart li {
    width: 100px;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .displayboard .display_section .flowchart li .count {
    font-size: 24px;
  }
  .displayboard .display_section .flowchart li .company {
    font-size: 16px;
  }
  .displayboard .display_section .flowchart li::after, .displayboard .display_section .flowchart li::before {
    position: absolute;
    right: -30px;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 30px solid #ddd;
  }
  .displayboard .display_section .flowchart li::before {
    border-left: 30px solid #fff;
  }
  .displayboard .display_section .flowchart li:last-child {
    width: 120px;
    padding-left: 30px;
    padding-right: 20px;
  }
  .displayboard .display_section .flowchart li:last-child::after {
    border: none;
  }
  .displayboard .display_section .flowchart li:first-child, .displayboard .display_section .flowchart li:nth-child(3n+1) {
    padding-left: 15px !important;
  }
  .displayboard .display_section .flowchart li:first-child::before, .displayboard .display_section .flowchart li:nth-child(3n+1)::before {
    border: none;
  }
  .displayboard .display_section .flowchart li:not(:first-child), .displayboard .display_section .flowchart li:not(:nth-child(3n+1)) {
    padding-left: 30px;
  }
}
.manage section {
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  -webkit-box-shadow: rgba(99, 99, 99, 0.15) 0px 0px 8px 0px;
          box-shadow: rgba(99, 99, 99, 0.15) 0px 0px 8px 0px;
}
.manage section + section {
  margin-top: 16px;
}
.manage .search_section {
  position: relative;
  width: 100%;
  padding: 16px;
}
.manage .search_section .search_box {
  min-width: 380px;
  overflow-x: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.manage .search_section .search_box > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 16px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.manage .search_section .search_box .input_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.manage .search_section .search_box .input_box label {
  min-width: 70px;
  height: 30px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 30px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.manage .search_section .search_box .input_box input {
  width: 240px;
  height: 30px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.manage .search_section .search_box .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.manage .search_section .search_box .input_box input::-moz-placeholder {
  color: #6c757d;
}
.manage .search_section .search_box .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.manage .search_section .search_box .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.manage .search_section .search_box .input_box input::placeholder {
  color: #6c757d;
}
.manage .search_section .search_box .input_box input:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.manage .search_section .search_box .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.manage .search_section .search_box .input_box input:disabled, .manage .search_section .search_box .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.manage .search_section .search_box .input_box.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.manage .search_section .search_box .input_box.date .calendar {
  position: relative;
}
.manage .search_section .search_box .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_calendar.svg");
          mask-image: url("/assets/img/icon/ico_calendar.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.manage .search_section .search_box .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.manage .search_section .search_box .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.manage .search_section .search_box .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.manage .search_section .search_box .input_box.search input {
  width: 450px;
}
.manage .search_section .search_box .input_box.search .input_search_btn {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.manage .search_section .search_box .input_box.search .input_search_btn:hover {
  width: 20px;
  height: 20px;
}
.manage .search_section .search_box .input_box label {
  width: 120px;
}
.manage .search_section .search_box .search_btn {
  height: 30px;
  font-size: 14px;
  width: 70px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
}
.manage .search_section .search_box .search_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.manage .search_section .search_box .search_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.manage .search_section .search_box .search_btn.gray {
  background: #999999;
  color: #ffffff;
}
.manage .search_section .search_box .search_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.manage .search_section .search_box .search_btn.gray:disabled {
  pointer-events: none;
}
.manage .search_section .search_box .search_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.manage .search_section .search_box .search_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.manage .search_section .search_box .search_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.manage .search_section .search_box .search_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.manage .search_section .search_box .search_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.manage .search_section .search_box .search_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.manage .search_section .search_box .reset_btn {
  height: 30px;
  font-size: 14px;
  width: 70px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
  border: 1px solid #dc3545 !important;
  background: #dc3545;
  color: #ffffff;
}
.manage .search_section .search_box .reset_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.manage .search_section .search_box .reset_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.manage .search_section .search_box .reset_btn.gray {
  background: #999999;
  color: #ffffff;
}
.manage .search_section .search_box .reset_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.manage .search_section .search_box .reset_btn.gray:disabled {
  pointer-events: none;
}
.manage .search_section .search_box .reset_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.manage .search_section .search_box .reset_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.manage .search_section .search_box .reset_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.manage .search_section .search_box .reset_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.manage .search_section .search_box .reset_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.manage .search_section .search_box .reset_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.manage .search_section .search_box .reset_btn:hover {
  background: #ffffff;
  color: #dc3545;
}
.manage .search_section .search_box .add_btn {
  height: 30px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
}
.manage .search_section .search_box .add_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.manage .search_section .search_box .add_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.manage .search_section .search_box .add_btn.gray {
  background: #999999;
  color: #ffffff;
}
.manage .search_section .search_box .add_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.manage .search_section .search_box .add_btn.gray:disabled {
  pointer-events: none;
}
.manage .search_section .search_box .add_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.manage .search_section .search_box .add_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.manage .search_section .search_box .add_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.manage .search_section .search_box .add_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.manage .search_section .search_box .add_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.manage .search_section .search_box .add_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.manage .search_section .search_box .add_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_plus.svg");
          mask-image: url("/assets/img/icon/ico_plus.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 16px;
  vertical-align: -4px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.manage .search_section .search_box .add_btn:hover::before {
  background-color: #435ebe;
}
.manage .table_section {
  position: relative;
  width: 100%;
  padding: 16px;
}
.manage .table_section .table_box {
  position: relative;
  overflow-x: auto;
  overflow-y: auto;
  min-width: 1000px;
  max-height: 670px;
}
.manage .table_section .table_box::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.manage .table_section .table_box::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.manage .table_section .table_box::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.manage .table_section .table_box::-webkit-scrollbar-track {
  background: #ffffff;
}
.manage .table_section .table_box::-webkit-scrollbar-button {
  display: none;
}
.manage .table_section .table_box table {
  position: relative;
  width: 100%;
  table-layout: fixed;
}
.manage .table_section .table_box table thead th {
  vertical-align: middle;
  background: #435ebe;
  border: none;
  padding: 10px 0;
  color: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 15px;
}
.manage .table_section .table_box table thead th.fixed {
  position: sticky;
  top: 0;
  z-index: 1;
  border: 0;
}
.manage .table_section .table_box table thead th.fixed::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  display: table-column-group;
  width: -webkit-fill-available;
  height: 100%;
  border-bottom: 1px solid #dce7f1;
  z-index: 1;
}
.manage .table_section .table_box table tbody td {
  vertical-align: middle;
  background: #ffffff;
  border-bottom: 1px solid #dce7f1;
  padding: 10px 0;
  color: #222222;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  text-align: center;
}
.manage .table_section .table_box table tbody tr {
  cursor: pointer;
}
.manage .table_section .table_box table tbody tr:hover td {
  background: rgba(124, 141, 181, 0.2);
}
.manage .table_section .select_box {
  position: relative;
  position: absolute;
  right: 16px;
  bottom: 16px;
}
.manage .table_section .select_box label {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #435ebe;
}
.manage .table_section .select_box select {
  width: 100px;
  height: 36px;
  border-radius: 4px;
  padding: 0px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.manage .table_section .select_box select::-webkit-input-placeholder {
  color: #6c757d;
}
.manage .table_section .select_box select::-moz-placeholder {
  color: #6c757d;
}
.manage .table_section .select_box select:-ms-input-placeholder {
  color: #6c757d;
}
.manage .table_section .select_box select::-ms-input-placeholder {
  color: #6c757d;
}
.manage .table_section .select_box select::placeholder {
  color: #6c757d;
}
.manage .table_section .select_box select:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.manage .table_section .select_box select:disabled {
  background: #e9ecef;
  cursor: default;
}

.manage_pop {
  max-width: 1200px !important;
}
.manage_pop .table_box table {
  width: 100%;
}
.manage_pop .table_box table thead th {
  vertical-align: middle;
  background: #435ebe;
  border: none;
  padding: 10px 0;
  color: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 15px;
}
.manage_pop .table_box table tbody td {
  vertical-align: middle;
  background: #ffffff;
  border-bottom: 1px solid #dce7f1;
  padding: 10px 0;
  color: #222222;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  text-align: center;
}
.manage_pop .table_box td .input_box {
  position: relative;
}
.manage_pop .table_box td .input_box label {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #435ebe;
}
.manage_pop .table_box td .input_box input {
  width: 140px;
  height: 30px;
  border-radius: 4px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.manage_pop .table_box td .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.manage_pop .table_box td .input_box input::-moz-placeholder {
  color: #6c757d;
}
.manage_pop .table_box td .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.manage_pop .table_box td .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.manage_pop .table_box td .input_box input::placeholder {
  color: #6c757d;
}
.manage_pop .table_box td .input_box input:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.manage_pop .table_box td .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.manage_pop .table_box td .input_box input:disabled, .manage_pop .table_box td .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.manage_pop .table_box td .input_box.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.manage_pop .table_box td .input_box.date .calendar {
  position: relative;
}
.manage_pop .table_box td .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_calendar.svg");
          mask-image: url("/assets/img/icon/ico_calendar.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.manage_pop .table_box td .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.manage_pop .table_box td .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.manage_pop .table_box td .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.manage_pop .table_box td .input_box.search .input_search_btn {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.manage_pop .table_box td .input_box.search .input_search_btn:hover {
  width: 20px;
  height: 20px;
}
.manage_pop .table_box td .select_box {
  position: relative;
}
.manage_pop .table_box td .select_box label {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #435ebe;
}
.manage_pop .table_box td .select_box select {
  width: 100px;
  height: 30px;
  border-radius: 4px;
  padding: 0px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.manage_pop .table_box td .select_box select::-webkit-input-placeholder {
  color: #6c757d;
}
.manage_pop .table_box td .select_box select::-moz-placeholder {
  color: #6c757d;
}
.manage_pop .table_box td .select_box select:-ms-input-placeholder {
  color: #6c757d;
}
.manage_pop .table_box td .select_box select::-ms-input-placeholder {
  color: #6c757d;
}
.manage_pop .table_box td .select_box select::placeholder {
  color: #6c757d;
}
.manage_pop .table_box td .select_box select:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.manage_pop .table_box td .select_box select:disabled {
  background: #e9ecef;
  cursor: default;
}
.manage_pop .table_box td.memo .input_box input {
  width: 300px;
}
.manage_pop .modal_delete_btn {
  height: 36px;
  font-size: 12px;
  width: 80px;
  border-radius: 8px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 14px;
  border: 1px solid #dc3545 !important;
  background: #dc3545;
  color: #ffffff;
  position: absolute;
  left: 20px;
}
.manage_pop .modal_delete_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.manage_pop .modal_delete_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.manage_pop .modal_delete_btn.gray {
  background: #999999;
  color: #ffffff;
}
.manage_pop .modal_delete_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.manage_pop .modal_delete_btn.gray:disabled {
  pointer-events: none;
}
.manage_pop .modal_delete_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.manage_pop .modal_delete_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.manage_pop .modal_delete_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.manage_pop .modal_delete_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.manage_pop .modal_delete_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.manage_pop .modal_delete_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.manage_pop .modal_delete_btn:hover {
  background: #ffffff;
  color: #dc3545;
}

.contents.crm_contents {
  max-height: 100vh;
}
.contents.crm_contents .sidebar {
  display: none;
}
.contents.crm_contents .container .page_heading {
  padding: 10px 20px;
}
.contents.crm_contents .container .page_heading .bookmark_btn,
.contents.crm_contents .container .page_heading nav {
  display: none;
}
.contents.crm_contents .container .page_heading .crm_status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 16px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.contents.crm_contents .container .page_heading .crm_status .box {
  position: relative;
  width: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 4px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}
.contents.crm_contents .container .page_heading .crm_status .box .tit {
  width: 100%;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  background: #444;
  color: #ffffff;
  text-align: center;
  padding: 8px 0;
}
.contents.crm_contents .container .page_heading .crm_status .box .count {
  width: 100%;
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 16px;
  background: #ffffff;
  color: #222222;
  text-align: center;
  padding: 10px 0;
}
.contents.crm_contents .container .page_heading .crm_status .box.call_count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.contents.crm_contents .container .page_heading .crm_status .box.call_count div {
  width: 50%;
}
.contents.crm_contents .container .page_heading .crm_status .box.call_count div:first-child .count {
  border-right: 1px solid #e5e7eb;
}
.contents.crm_contents .container .page_heading .crm_status .box.call_status .toggle {
  padding: 4px 0;
}
.contents.crm_contents .container .page_heading .crm_status .box.call_status .toggle input[type=checkbox] + label {
  width: 80px;
}
.contents.crm_contents .container .page_heading .crm_status .box.call_status .toggle input[type=checkbox] + label::before {
  content: "부재";
  font-size: 14px;
  right: 25px !important;
  color: #999;
}
.contents.crm_contents .container .page_heading .crm_status .box.call_status .toggle input[type=checkbox]:checked + label {
  background-color: #444;
}
.contents.crm_contents .container .page_heading .crm_status .box.call_status .toggle input[type=checkbox]:checked + label::before {
  content: "대기";
  font-size: 14px;
  right: 30px !important;
  color: #fff;
}
.contents.crm_contents .container .page_content {
  max-height: calc(100vh - 89px);
}
.contents.crm_contents .container .page_content .tab_section {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: calc(100vh - 89px);
  overflow: hidden;
}
.contents.crm_contents .container .page_content .tab_section .tab {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 6px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  top: 1px;
}
.contents.crm_contents .container .page_content .tab_section .tab li {
  border-radius: 4px 4px 0 0;
  background: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 500;
  color: #777777;
  font-size: 15px;
  text-align: center;
  cursor: pointer;
  border: 1px solid #dce7f1;
  border-bottom: none;
  -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.contents.crm_contents .container .page_content .tab_section .tab li.active {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #435ebe;
  border: 1px solid #435ebe;
  border-bottom: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  z-index: 1;
}
.contents.crm_contents .container .page_content .tab_section .tab li:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  border-bottom: none;
}
.contents.crm_contents .container .page_content .tab_section .tab_box {
  display: none;
  position: relative;
  background: #ffffff;
  border: 1px solid #dce7f1;
  border-top: 1px solid #435ebe;
  width: 100%;
  padding: 16px;
  border-radius: 0 0 5px 5px;
  -webkit-box-shadow: rgba(99, 99, 99, 0.15) 0px 1px 8px 0px;
          box-shadow: rgba(99, 99, 99, 0.15) 0px 1px 8px 0px;
}
.contents.crm_contents .container .page_content .tab_section .tab_box.show {
  display: block;
}
.contents.crm_contents .container .page_content .tab_section .tab li {
  padding: 0 30px;
  height: 34px;
  line-height: 34px;
}
.contents.crm_contents .container .page_content .tab_section .tab_box {
  border: none;
  border-top: 1px solid #dce7f1;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  padding: 16px 0;
  height: 100%;
  max-height: calc(100% - 34px);
  overflow: hidden;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content {
  width: 100%;
  height: 100%;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .flex {
  position: relative;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .flex .input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 12px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .left button {
  height: 28px;
  font-size: 14px;
  width: 100px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background-color: #ffffff;
  border: 1px solid #435ebe;
  color: #435ebe;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .left button:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .left button:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .left button.gray {
  background: #999999;
  color: #ffffff;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .left button.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .left button.gray:disabled {
  pointer-events: none;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .left button.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .left button.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .left button.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .left button.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .left button.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .left button.excel_btn:hover::before {
  background-color: #1d6f42;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .left button:hover {
  background-color: #435ebe;
  color: #ffffff;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right .reset_btn {
  height: 28px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right .reset_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right .reset_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right .reset_btn.gray {
  background: #999999;
  color: #ffffff;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right .reset_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right .reset_btn.gray:disabled {
  pointer-events: none;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right .reset_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right .reset_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right .reset_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right .reset_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right .reset_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right .reset_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right .search_btn {
  height: 28px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right .search_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right .search_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right .search_btn.gray {
  background: #999999;
  color: #ffffff;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right .search_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right .search_btn.gray:disabled {
  pointer-events: none;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right .search_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right .search_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right .search_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right .search_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right .search_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right .search_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .input_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .input_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .input_box input {
  width: 142px;
  height: 28px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .input_box input::-moz-placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .input_box input::placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .input_box input:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .input_box input:disabled, .contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .input_box.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .input_box.date .calendar {
  position: relative;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_calendar.svg");
          mask-image: url("/assets/img/icon/ico_calendar.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .input_box.search input {
  width: 450px;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .input_box.search .input_search_btn {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .input_box.search .input_search_btn:hover {
  width: 20px;
  height: 20px;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .input_box label {
  min-width: 80px;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .input_box.date span {
  display: block;
  margin: 0 10px;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .select_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .select_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .select_box select {
  width: 142px;
  height: 28px;
  padding: 0 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  font-size: 14px;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .select_box select::-webkit-input-placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .select_box select::-moz-placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .select_box select:-ms-input-placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .select_box select::-ms-input-placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .select_box select::placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .select_box select:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .select_box select:disabled {
  background: #e9ecef;
  cursor: default;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .search_section .select_box label {
  min-width: 80px;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.crm .table_section .table_box {
  max-height: 590px;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.send .text_box textarea {
  height: 600px !important;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.send .send_btn {
  bottom: -20px !important;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 16px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .input_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .input_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .input_box input {
  width: 142px;
  height: 28px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .input_box input::-moz-placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .input_box input::placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .input_box input:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .input_box input:disabled, .contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .input_box.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .input_box.date .calendar {
  position: relative;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_calendar.svg");
          mask-image: url("/assets/img/icon/ico_calendar.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .input_box.search input {
  width: 450px;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .input_box.search .input_search_btn {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .input_box.search .input_search_btn:hover {
  width: 20px;
  height: 20px;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .input_box label {
  min-width: 80px;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .input_box.date {
  width: auto;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .input_box.date span {
  display: block;
  margin: 0 10px;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .select_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .select_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .select_box select {
  width: 142px;
  height: 28px;
  padding: 0 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  font-size: 14px;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .select_box select::-webkit-input-placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .select_box select::-moz-placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .select_box select:-ms-input-placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .select_box select::-ms-input-placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .select_box select::placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .select_box select:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .select_box select:disabled {
  background: #e9ecef;
  cursor: default;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .select_box label {
  min-width: 80px;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .reset_btn {
  height: 28px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .reset_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .reset_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .reset_btn.gray {
  background: #999999;
  color: #ffffff;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .reset_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .reset_btn.gray:disabled {
  pointer-events: none;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .reset_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .reset_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .reset_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .reset_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .reset_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .reset_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .search_btn {
  height: 28px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .search_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .search_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .search_btn.gray {
  background: #999999;
  color: #ffffff;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .search_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .search_btn.gray:disabled {
  pointer-events: none;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .search_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .search_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .search_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .search_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .search_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .search_section .search_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .table_section {
  position: relative;
  overflow-x: auto;
  overflow-y: auto;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .table_section::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .table_section::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .table_section::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .table_section::-webkit-scrollbar-track {
  background: #ffffff;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .table_section::-webkit-scrollbar-button {
  display: none;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .table_section table {
  width: 100%;
  table-layout: fixed;
  min-width: 1500px;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .table_section table thead th {
  position: relative;
  vertical-align: middle;
  background: #435ebe;
  border: none;
  padding: 6px 0;
  color: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 14px;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .table_section table thead th.fixed {
  position: sticky;
  top: 0;
  z-index: 1;
  border: 0;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .table_section table thead th.fixed::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  display: table-column-group;
  width: -webkit-fill-available;
  height: 100%;
  border-bottom: 1px solid #dce7f1;
  z-index: 1;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .table_section table thead th .checkbox {
  z-index: 100;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .table_section table tbody tr {
  cursor: pointer;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .table_section table tbody tr:hover td {
  background: rgba(124, 141, 181, 0.2);
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .table_section table tbody td {
  position: relative;
  vertical-align: middle;
  background: #ffffff;
  border-bottom: 1px solid #dce7f1;
  padding: 8px 0;
  color: #222222;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .table_section table tbody td.overlap:hover .memo_tooltip {
  visibility: visible;
  opacity: 1;
  z-index: 10;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  height: auto;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .table_section table tbody td.overlap .memo {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 4px;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .table_section table tbody td.overlap .memo_tooltip {
  position: absolute;
  top: -25px;
  left: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  padding: 10px;
  color: white;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  text-align: left;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.9);
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  height: 0;
  overflow: hidden;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .table_section table tbody .ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 4px;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .table_section table .checkbox {
  width: 40px;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .table_section table .checkbox label::before {
  border-width: 2px;
  width: 16px;
  height: 16px;
  border: 1px solid #e1e3ea;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .table_section table .checkbox label::after {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .table_section .table_box {
  margin-top: 20px;
  max-height: 700px;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .table_section .bottom {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .table_section .bottom .select_box {
  position: relative;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .table_section .bottom .select_box label {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #435ebe;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .table_section .bottom .select_box select {
  width: 100px;
  height: 30px;
  border-radius: 4px;
  padding: 0px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .table_section .bottom .select_box select::-webkit-input-placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .table_section .bottom .select_box select::-moz-placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .table_section .bottom .select_box select:-ms-input-placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .table_section .bottom .select_box select::-ms-input-placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .table_section .bottom .select_box select::placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .table_section .bottom .select_box select:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .table_section .bottom .select_box select:disabled {
  background: #e9ecef;
  cursor: default;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.transfer .table_section .bottom .pagination {
  margin-top: 0;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 16px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .input_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .input_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .input_box input {
  width: 142px;
  height: 28px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .input_box input::-moz-placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .input_box input::placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .input_box input:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .input_box input:disabled, .contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .input_box.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .input_box.date .calendar {
  position: relative;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_calendar.svg");
          mask-image: url("/assets/img/icon/ico_calendar.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .input_box.search input {
  width: 450px;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .input_box.search .input_search_btn {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .input_box.search .input_search_btn:hover {
  width: 20px;
  height: 20px;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .input_box label {
  min-width: 80px;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .input_box.date {
  width: auto;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .input_box.date span {
  display: block;
  margin: 0 10px;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .select_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .select_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .select_box select {
  width: 142px;
  height: 28px;
  padding: 0 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  font-size: 14px;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .select_box select::-webkit-input-placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .select_box select::-moz-placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .select_box select:-ms-input-placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .select_box select::-ms-input-placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .select_box select::placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .select_box select:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .select_box select:disabled {
  background: #e9ecef;
  cursor: default;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .select_box label {
  min-width: 80px;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .reset_btn {
  height: 28px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .reset_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .reset_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .reset_btn.gray {
  background: #999999;
  color: #ffffff;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .reset_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .reset_btn.gray:disabled {
  pointer-events: none;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .reset_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .reset_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .reset_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .reset_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .reset_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .reset_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .search_btn {
  height: 28px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .search_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .search_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .search_btn.gray {
  background: #999999;
  color: #ffffff;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .search_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .search_btn.gray:disabled {
  pointer-events: none;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .search_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .search_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .search_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .search_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .search_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .search_section .search_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .table_section .table_box {
  margin-top: 20px;
  max-height: 700px;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .table_section .table_box table {
  width: 100%;
  min-width: 1500px;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .table_section .table_box table thead th {
  position: relative;
  vertical-align: middle;
  background: #435ebe;
  border: none;
  padding: 6px 0;
  color: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 14px;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .table_section .table_box table thead th.fixed {
  position: sticky;
  top: 0;
  z-index: 1;
  border: 0;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .table_section .table_box table thead th.fixed::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  display: table-column-group;
  width: -webkit-fill-available;
  height: 100%;
  border-bottom: 1px solid #dce7f1;
  z-index: 1;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .table_section .table_box table tbody td {
  position: relative;
  vertical-align: middle;
  background: #ffffff;
  border-bottom: 1px solid #dce7f1;
  padding: 8px 0;
  color: #222222;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .table_section .table_box.xscroll {
  overflow-y: auto;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .table_section .table_box.xscroll::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .table_section .table_box.xscroll::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .table_section .table_box.xscroll::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .table_section .table_box.xscroll::-webkit-scrollbar-track {
  background: #ffffff;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .table_section .table_box.xscroll::-webkit-scrollbar-button {
  display: none;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .table_section .table_box.xscroll table {
  table-layout: auto;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .table_section .table_box.xscroll table th {
  min-width: 80px;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .table_section .table_box.xscroll table th:first-child {
  left: 0;
  z-index: 2;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .table_section .table_box.xscroll table td.fixed {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 14px;
  position: sticky;
  left: 0;
  z-index: 1;
  border: 0;
  border-bottom: 1px solid #dce7f1;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .table_section .table_box.xscroll table td.fixed::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 1px;
  left: 0;
  display: table-column-group;
  width: -webkit-fill-available;
  height: 100%;
  border-bottom: 1px solid #dce7f1;
  z-index: 1;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .table_section .table_box.xscroll table tr:last-child td.fixed::before {
  top: 0;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .table_section .table_box.statics {
  margin-top: 10px;
  max-height: 550px;
  overflow-y: auto;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .table_section .table_box.statics::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .table_section .table_box.statics::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .table_section .table_box.statics::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .table_section .table_box.statics::-webkit-scrollbar-track {
  background: #ffffff;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .table_section .table_box.statics::-webkit-scrollbar-button {
  display: none;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .table_section .table_box.statics table thead {
  position: sticky;
  top: 0;
  z-index: 2;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .table_section .table_box.statics table tbody tr:first-child td {
  background-color: #eef2f7;
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 14px;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .table_section .bottom {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .table_section .bottom .select_box {
  position: relative;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .table_section .bottom .select_box label {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #435ebe;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .table_section .bottom .select_box select {
  width: 100px;
  height: 30px;
  border-radius: 4px;
  padding: 0px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .table_section .bottom .select_box select::-webkit-input-placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .table_section .bottom .select_box select::-moz-placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .table_section .bottom .select_box select:-ms-input-placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .table_section .bottom .select_box select::-ms-input-placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .table_section .bottom .select_box select::placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .table_section .bottom .select_box select:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .table_section .bottom .select_box select:disabled {
  background: #e9ecef;
  cursor: default;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .table_section .bottom .pagination {
  margin-top: 0;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .table_section + .table_section {
  margin-top: 30px;
}
.contents.crm_contents .container .page_content .tab_section .tab_box .tab_content.statistics .table_section + .table_section .tit {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 18px;
  color: #222222;
}
.contents.crm_contents .container .page_content .crm_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  width: 100%;
  height: 100%;
  max-height: calc(100% - 80px);
}
.contents.crm_contents .container .page_content .crm_box .schedule_section {
  position: relative;
  width: 400px;
  height: 100%;
  max-height: 100%;
  z-index: 2;
  margin-left: 0;
  -webkit-transition: margin-right 0.3s ease-in-out;
  transition: margin-right 0.3s ease-in-out;
  padding: 16px 10px;
  background: #ffffff;
  border-right: 1px solid #e5e7eb;
  padding-left: 30px;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section.hide {
  margin-right: -10px;
  padding-left: 0;
  padding-right: 0;
  width: 30px;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section.hide .top {
  opacity: 0;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section.hide .schedule_tab {
  opacity: 0;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section.hide .schedule_tab_box {
  opacity: 0;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .left {
  position: absolute;
  left: 0;
  top: 16px;
  width: 30px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  cursor: pointer;
  border-left: 1px solid #e5e7eb;
  background: #ffffff;
  z-index: 3;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .left p {
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_arrow_left_double.svg");
          mask-image: url("/assets/img/icon/ico_arrow_left_double.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 16px;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e7eb;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .top .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 6px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .top .flex p {
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  color: #222222;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .top .flex p span {
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  color: #435ebe;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .top .flex p:first-child::after {
  content: "/";
  margin-left: 6px;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .top .date_prev_btn {
  border: 1px solid #dce7f1;
  border-radius: 4px;
  width: 28px;
  height: 28px;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .top .date_prev_btn::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_arrow_left.svg");
          mask-image: url("/assets/img/icon/ico_arrow_left.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 16px;
  vertical-align: middle;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .top .date_prev_btn:hover {
  background-color: #eef2f7;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .top .date_next_btn {
  border: 1px solid #dce7f1;
  border-radius: 4px;
  width: 28px;
  height: 28px;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .top .date_next_btn::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_arrow_right.svg");
          mask-image: url("/assets/img/icon/ico_arrow_right.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 16px;
  vertical-align: middle;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .top .date_next_btn:hover {
  background-color: #eef2f7;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .top .input_box {
  position: relative;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .top .input_box label {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #435ebe;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .top .input_box input {
  width: 140px;
  height: 28px;
  border-radius: 4px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .top .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .top .input_box input::-moz-placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .top .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .top .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .top .input_box input::placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .top .input_box input:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .top .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .top .input_box input:disabled, .contents.crm_contents .container .page_content .crm_box .schedule_section .top .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .top .input_box.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .top .input_box.date .calendar {
  position: relative;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .top .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_calendar.svg");
          mask-image: url("/assets/img/icon/ico_calendar.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .top .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .top .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .top .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .top .input_box.search .input_search_btn {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .top .input_box.search .input_search_btn:hover {
  width: 20px;
  height: 20px;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .top .input_box input {
  text-align: center;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_tab {
  position: relative;
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 6px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_tab li {
  border-radius: 4px 4px 0 0;
  background: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 500;
  color: #777777;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  border: 1px solid #dce7f1;
  border-bottom: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  height: 28px;
  width: 100px;
  line-height: 28px;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_tab li.active {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #ffffff;
  border: 1px solid #444;
  background: #444;
  border-bottom: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  z-index: 1;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_tab li:hover {
  color: #444;
  border: 1px solid #444;
  border-bottom: none;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_add_btn {
  position: absolute;
  top: -2px;
  right: 5px;
  height: 24px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_add_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_add_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_add_btn.gray {
  background: #999999;
  color: #ffffff;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_add_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_add_btn.gray:disabled {
  pointer-events: none;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_add_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_add_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_add_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_add_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_add_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_add_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_tab_box {
  border-top: 1px solid #dce7f1;
  width: 100%;
  height: 100%;
  max-height: calc(100% - 40px);
  padding: 10px 0;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_tab_box.show {
  display: block;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_tab_box .tab_content {
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_tab_box .tab_content::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_tab_box .tab_content::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_tab_box .tab_content::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_tab_box .tab_content::-webkit-scrollbar-track {
  background: #ffffff;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_tab_box .tab_content::-webkit-scrollbar-button {
  display: none;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box {
  width: 100%;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 14px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 14px 10px;
  border-radius: 8px;
  border: 1px solid #dce7f1;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li + li {
  margin-top: 12px;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .schedule_top {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .schedule_top .schedule {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 14px;
  color: #222222;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .schedule_top .schedule::before {
  content: "🕓";
  margin-right: 4px;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .schedule_top .btn_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 6px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .schedule_top .btn_box button {
  height: 22px;
  font-size: 14px;
  width: 60px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .schedule_top .btn_box button:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .schedule_top .btn_box button:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .schedule_top .btn_box button.gray {
  background: #999999;
  color: #ffffff;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .schedule_top .btn_box button.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .schedule_top .btn_box button.gray:disabled {
  pointer-events: none;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .schedule_top .btn_box button.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .schedule_top .btn_box button.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .schedule_top .btn_box button.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .schedule_top .btn_box button.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .schedule_top .btn_box button.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .schedule_top .btn_box button.excel_btn:hover::before {
  background-color: #1d6f42;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .schedule_top .btn_box button.db_btn {
  background-color: #ffffff;
  border: 1px solid #435ebe;
  color: #435ebe;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .schedule_top .btn_box button.db_btn:hover {
  background-color: #435ebe;
  color: #ffffff;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .info {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 5px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .info p {
  width: 49%;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  color: #222222;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .info p span {
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  color: #222222;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .info p.tit, .contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .info p.desc {
  width: 100%;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .info p.tit span, .contents.crm_contents .container .page_content .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .info p.desc span {
  display: inline-block;
  width: calc(100% - 35px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.contents.crm_contents .container .page_content .crm_box .schedule_section.hide + .table_section {
  width: 100%;
}
.contents.crm_contents .container .page_content .crm_box .table_section {
  margin-top: 16px;
  position: relative;
  width: calc(100% - 400px);
}
.contents.crm_contents .container .page_content .crm_box .table_section .status_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.contents.crm_contents .container .page_content .crm_box .table_section .status_box .btn_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.contents.crm_contents .container .page_content .crm_box .table_section .status_box .btn_box button {
  width: 80px;
  height: 30px;
  color: #222222;
  background: #ffffff;
  border: 1px solid #435ebe;
  border-right: none;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 13px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.contents.crm_contents .container .page_content .crm_box .table_section .status_box .btn_box button:first-child {
  border-radius: 4px 0 0 4px;
}
.contents.crm_contents .container .page_content .crm_box .table_section .status_box .btn_box button:last-child {
  border-radius: 0 4px 4px 0;
  border-right: 1px solid #435ebe;
}
.contents.crm_contents .container .page_content .crm_box .table_section .status_box .btn_box button:hover {
  color: #ffffff;
  background: #435ebe;
  border-left: 1px solid #ffffff;
}
.contents.crm_contents .container .page_content .crm_box .table_section .status_box .btn_box button.on {
  color: #ffffff;
  background: #435ebe;
}
.contents.crm_contents .container .page_content .crm_box .table_section .status_box p {
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  color: #222222;
}
.contents.crm_contents .container .page_content .crm_box .table_section .status_box p span {
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  color: #222222;
}
.contents.crm_contents .container .page_content .crm_box .table_section .table_box {
  margin-top: 8px;
  position: relative;
  overflow-x: auto;
  overflow-y: auto;
  max-height: 694px;
}
.contents.crm_contents .container .page_content .crm_box .table_section .table_box::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.contents.crm_contents .container .page_content .crm_box .table_section .table_box::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.contents.crm_contents .container .page_content .crm_box .table_section .table_box::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.contents.crm_contents .container .page_content .crm_box .table_section .table_box::-webkit-scrollbar-track {
  background: #ffffff;
}
.contents.crm_contents .container .page_content .crm_box .table_section .table_box::-webkit-scrollbar-button {
  display: none;
}
.contents.crm_contents .container .page_content .crm_box .table_section .table_box table {
  width: 100%;
  table-layout: fixed;
  min-width: 1500px;
}
.contents.crm_contents .container .page_content .crm_box .table_section .table_box table thead th {
  position: relative;
  vertical-align: middle;
  background: #435ebe;
  border: none;
  padding: 6px 0;
  color: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 14px;
}
.contents.crm_contents .container .page_content .crm_box .table_section .table_box table thead th.fixed {
  position: sticky;
  top: 0;
  z-index: 1;
  border: 0;
}
.contents.crm_contents .container .page_content .crm_box .table_section .table_box table thead th.fixed::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  display: table-column-group;
  width: -webkit-fill-available;
  height: 100%;
  border-bottom: 1px solid #dce7f1;
  z-index: 1;
}
.contents.crm_contents .container .page_content .crm_box .table_section .table_box table thead th .checkbox {
  z-index: 100;
}
.contents.crm_contents .container .page_content .crm_box .table_section .table_box table tbody tr {
  cursor: pointer;
}
.contents.crm_contents .container .page_content .crm_box .table_section .table_box table tbody tr:hover td {
  background: rgba(124, 141, 181, 0.2);
}
.contents.crm_contents .container .page_content .crm_box .table_section .table_box table tbody td {
  position: relative;
  vertical-align: middle;
  background: #ffffff;
  border-bottom: 1px solid #dce7f1;
  padding: 8px 0;
  color: #222222;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.contents.crm_contents .container .page_content .crm_box .table_section .table_box table tbody td.overlap:hover .memo_tooltip {
  visibility: visible;
  opacity: 1;
  z-index: 10;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  height: auto;
}
.contents.crm_contents .container .page_content .crm_box .table_section .table_box table tbody td.overlap .memo {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 4px;
}
.contents.crm_contents .container .page_content .crm_box .table_section .table_box table tbody td.overlap .memo_tooltip {
  position: absolute;
  top: -25px;
  left: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  padding: 10px;
  color: white;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  text-align: left;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.9);
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  height: 0;
  overflow: hidden;
}
.contents.crm_contents .container .page_content .crm_box .table_section .table_box table tbody .ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 4px;
}
.contents.crm_contents .container .page_content .crm_box .table_section .table_box table .checkbox {
  width: 40px;
}
.contents.crm_contents .container .page_content .crm_box .table_section .table_box table .checkbox label::before {
  border-width: 2px;
  width: 16px;
  height: 16px;
  border: 1px solid #e1e3ea;
}
.contents.crm_contents .container .page_content .crm_box .table_section .table_box table .checkbox label::after {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
}
.contents.crm_contents .container .page_content .crm_box .table_section .bottom {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.contents.crm_contents .container .page_content .crm_box .table_section .bottom .select_box {
  position: relative;
}
.contents.crm_contents .container .page_content .crm_box .table_section .bottom .select_box label {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #435ebe;
}
.contents.crm_contents .container .page_content .crm_box .table_section .bottom .select_box select {
  width: 100px;
  height: 30px;
  border-radius: 4px;
  padding: 0px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.contents.crm_contents .container .page_content .crm_box .table_section .bottom .select_box select::-webkit-input-placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .crm_box .table_section .bottom .select_box select::-moz-placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .crm_box .table_section .bottom .select_box select:-ms-input-placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .crm_box .table_section .bottom .select_box select::-ms-input-placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .crm_box .table_section .bottom .select_box select::placeholder {
  color: #6c757d;
}
.contents.crm_contents .container .page_content .crm_box .table_section .bottom .select_box select:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.contents.crm_contents .container .page_content .crm_box .table_section .bottom .select_box select:disabled {
  background: #e9ecef;
  cursor: default;
}
.contents.crm_contents .container .page_content .crm_box .table_section .bottom .pagination {
  margin-top: 0;
}

.page_content.crm .tab_section {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: calc(100vh - 89px);
  overflow: hidden;
}
.page_content.crm .tab_section .tab {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 6px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  top: 1px;
}
.page_content.crm .tab_section .tab li {
  border-radius: 4px 4px 0 0;
  background: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 500;
  color: #777777;
  font-size: 15px;
  text-align: center;
  cursor: pointer;
  border: 1px solid #dce7f1;
  border-bottom: none;
  -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.page_content.crm .tab_section .tab li.active {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #435ebe;
  border: 1px solid #435ebe;
  border-bottom: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  z-index: 1;
}
.page_content.crm .tab_section .tab li:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  border-bottom: none;
}
.page_content.crm .tab_section .tab_box {
  display: none;
  position: relative;
  background: #ffffff;
  border: 1px solid #dce7f1;
  border-top: 1px solid #435ebe;
  width: 100%;
  padding: 16px;
  border-radius: 0 0 5px 5px;
  -webkit-box-shadow: rgba(99, 99, 99, 0.15) 0px 1px 8px 0px;
          box-shadow: rgba(99, 99, 99, 0.15) 0px 1px 8px 0px;
}
.page_content.crm .tab_section .tab_box.show {
  display: block;
}
.page_content.crm .tab_section .tab li {
  padding: 0 30px;
  height: 34px;
  line-height: 34px;
}
.page_content.crm .tab_section .tab_box {
  border: none;
  border-top: 1px solid #dce7f1;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  padding: 16px 0;
  height: 100%;
  max-height: calc(100% - 34px);
  overflow: hidden;
}
.page_content.crm .tab_section .tab_box .tab_content {
  width: 100%;
  height: 100%;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .flex {
  position: relative;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .flex .input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 12px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .left button {
  height: 28px;
  font-size: 14px;
  width: 100px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background-color: #ffffff;
  border: 1px solid #435ebe;
  color: #435ebe;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .left button:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .left button:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .left button.gray {
  background: #999999;
  color: #ffffff;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .left button.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .left button.gray:disabled {
  pointer-events: none;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .left button.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .left button.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .left button.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .left button.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .left button.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .left button.excel_btn:hover::before {
  background-color: #1d6f42;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .left button:hover {
  background-color: #435ebe;
  color: #ffffff;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right .reset_btn {
  height: 28px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right .reset_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right .reset_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right .reset_btn.gray {
  background: #999999;
  color: #ffffff;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right .reset_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right .reset_btn.gray:disabled {
  pointer-events: none;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right .reset_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right .reset_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right .reset_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right .reset_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right .reset_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right .reset_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right .search_btn {
  height: 28px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right .search_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right .search_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right .search_btn.gray {
  background: #999999;
  color: #ffffff;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right .search_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right .search_btn.gray:disabled {
  pointer-events: none;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right .search_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right .search_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right .search_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right .search_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right .search_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .flex .btn_box .right .search_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .input_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .input_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .input_box input {
  width: 142px;
  height: 28px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .input_box input::-moz-placeholder {
  color: #6c757d;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .input_box input::placeholder {
  color: #6c757d;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .input_box input:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .input_box input:disabled, .page_content.crm .tab_section .tab_box .tab_content.crm .search_section .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .input_box.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .input_box.date .calendar {
  position: relative;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_calendar.svg");
          mask-image: url("/assets/img/icon/ico_calendar.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .input_box.search input {
  width: 450px;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .input_box.search .input_search_btn {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .input_box.search .input_search_btn:hover {
  width: 20px;
  height: 20px;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .input_box label {
  min-width: 80px;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .input_box.date span {
  display: block;
  margin: 0 10px;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .select_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .select_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .select_box select {
  width: 142px;
  height: 28px;
  padding: 0 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  font-size: 14px;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .select_box select::-webkit-input-placeholder {
  color: #6c757d;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .select_box select::-moz-placeholder {
  color: #6c757d;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .select_box select:-ms-input-placeholder {
  color: #6c757d;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .select_box select::-ms-input-placeholder {
  color: #6c757d;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .select_box select::placeholder {
  color: #6c757d;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .select_box select:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .select_box select:disabled {
  background: #e9ecef;
  cursor: default;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .search_section .select_box label {
  min-width: 80px;
}
.page_content.crm .tab_section .tab_box .tab_content.crm .table_section .table_box {
  max-height: 590px;
}
.page_content.crm .tab_section .tab_box .tab_content.send .text_box textarea {
  height: 600px !important;
}
.page_content.crm .tab_section .tab_box .tab_content.send .send_btn {
  bottom: -20px !important;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 16px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .input_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .input_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .input_box input {
  width: 142px;
  height: 28px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .input_box input::-moz-placeholder {
  color: #6c757d;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .input_box input::placeholder {
  color: #6c757d;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .input_box input:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .input_box input:disabled, .page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .input_box.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .input_box.date .calendar {
  position: relative;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_calendar.svg");
          mask-image: url("/assets/img/icon/ico_calendar.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .input_box.search input {
  width: 450px;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .input_box.search .input_search_btn {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .input_box.search .input_search_btn:hover {
  width: 20px;
  height: 20px;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .input_box label {
  min-width: 80px;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .input_box.date {
  width: auto;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .input_box.date span {
  display: block;
  margin: 0 10px;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .select_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .select_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .select_box select {
  width: 142px;
  height: 28px;
  padding: 0 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  font-size: 14px;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .select_box select::-webkit-input-placeholder {
  color: #6c757d;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .select_box select::-moz-placeholder {
  color: #6c757d;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .select_box select:-ms-input-placeholder {
  color: #6c757d;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .select_box select::-ms-input-placeholder {
  color: #6c757d;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .select_box select::placeholder {
  color: #6c757d;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .select_box select:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .select_box select:disabled {
  background: #e9ecef;
  cursor: default;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .select_box label {
  min-width: 80px;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .reset_btn {
  height: 28px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .reset_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .reset_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .reset_btn.gray {
  background: #999999;
  color: #ffffff;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .reset_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .reset_btn.gray:disabled {
  pointer-events: none;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .reset_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .reset_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .reset_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .reset_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .reset_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .reset_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .search_btn {
  height: 28px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .search_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .search_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .search_btn.gray {
  background: #999999;
  color: #ffffff;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .search_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .search_btn.gray:disabled {
  pointer-events: none;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .search_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .search_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .search_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .search_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .search_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .search_section .search_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .table_section {
  position: relative;
  overflow-x: auto;
  overflow-y: auto;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .table_section::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .table_section::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .table_section::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .table_section::-webkit-scrollbar-track {
  background: #ffffff;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .table_section::-webkit-scrollbar-button {
  display: none;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .table_section table {
  width: 100%;
  table-layout: fixed;
  min-width: 1500px;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .table_section table thead th {
  position: relative;
  vertical-align: middle;
  background: #435ebe;
  border: none;
  padding: 6px 0;
  color: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 14px;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .table_section table thead th.fixed {
  position: sticky;
  top: 0;
  z-index: 1;
  border: 0;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .table_section table thead th.fixed::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  display: table-column-group;
  width: -webkit-fill-available;
  height: 100%;
  border-bottom: 1px solid #dce7f1;
  z-index: 1;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .table_section table thead th .checkbox {
  z-index: 100;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .table_section table tbody tr {
  cursor: pointer;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .table_section table tbody tr:hover td {
  background: rgba(124, 141, 181, 0.2);
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .table_section table tbody td {
  position: relative;
  vertical-align: middle;
  background: #ffffff;
  border-bottom: 1px solid #dce7f1;
  padding: 8px 0;
  color: #222222;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .table_section table tbody td.overlap:hover .memo_tooltip {
  visibility: visible;
  opacity: 1;
  z-index: 10;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  height: auto;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .table_section table tbody td.overlap .memo {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 4px;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .table_section table tbody td.overlap .memo_tooltip {
  position: absolute;
  top: -25px;
  left: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  padding: 10px;
  color: white;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  text-align: left;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.9);
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  height: 0;
  overflow: hidden;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .table_section table tbody .ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 4px;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .table_section table .checkbox {
  width: 40px;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .table_section table .checkbox label::before {
  border-width: 2px;
  width: 16px;
  height: 16px;
  border: 1px solid #e1e3ea;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .table_section table .checkbox label::after {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .table_section .table_box {
  margin-top: 20px;
  max-height: 700px;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .table_section .bottom {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .table_section .bottom .select_box {
  position: relative;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .table_section .bottom .select_box label {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #435ebe;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .table_section .bottom .select_box select {
  width: 100px;
  height: 30px;
  border-radius: 4px;
  padding: 0px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .table_section .bottom .select_box select::-webkit-input-placeholder {
  color: #6c757d;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .table_section .bottom .select_box select::-moz-placeholder {
  color: #6c757d;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .table_section .bottom .select_box select:-ms-input-placeholder {
  color: #6c757d;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .table_section .bottom .select_box select::-ms-input-placeholder {
  color: #6c757d;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .table_section .bottom .select_box select::placeholder {
  color: #6c757d;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .table_section .bottom .select_box select:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .table_section .bottom .select_box select:disabled {
  background: #e9ecef;
  cursor: default;
}
.page_content.crm .tab_section .tab_box .tab_content.transfer .table_section .bottom .pagination {
  margin-top: 0;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 16px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .input_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .input_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .input_box input {
  width: 142px;
  height: 28px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .input_box input::-moz-placeholder {
  color: #6c757d;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .input_box input::placeholder {
  color: #6c757d;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .input_box input:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .input_box input:disabled, .page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .input_box.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .input_box.date .calendar {
  position: relative;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_calendar.svg");
          mask-image: url("/assets/img/icon/ico_calendar.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .input_box.search input {
  width: 450px;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .input_box.search .input_search_btn {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .input_box.search .input_search_btn:hover {
  width: 20px;
  height: 20px;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .input_box label {
  min-width: 80px;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .input_box.date {
  width: auto;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .input_box.date span {
  display: block;
  margin: 0 10px;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .select_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .select_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .select_box select {
  width: 142px;
  height: 28px;
  padding: 0 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  font-size: 14px;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .select_box select::-webkit-input-placeholder {
  color: #6c757d;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .select_box select::-moz-placeholder {
  color: #6c757d;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .select_box select:-ms-input-placeholder {
  color: #6c757d;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .select_box select::-ms-input-placeholder {
  color: #6c757d;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .select_box select::placeholder {
  color: #6c757d;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .select_box select:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .select_box select:disabled {
  background: #e9ecef;
  cursor: default;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .select_box label {
  min-width: 80px;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .reset_btn {
  height: 28px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .reset_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .reset_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .reset_btn.gray {
  background: #999999;
  color: #ffffff;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .reset_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .reset_btn.gray:disabled {
  pointer-events: none;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .reset_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .reset_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .reset_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .reset_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .reset_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .reset_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .search_btn {
  height: 28px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .search_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .search_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .search_btn.gray {
  background: #999999;
  color: #ffffff;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .search_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .search_btn.gray:disabled {
  pointer-events: none;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .search_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .search_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .search_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .search_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .search_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .search_section .search_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .table_section .table_box {
  margin-top: 20px;
  max-height: 700px;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .table_section .table_box table {
  width: 100%;
  min-width: 1500px;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .table_section .table_box table thead th {
  position: relative;
  vertical-align: middle;
  background: #435ebe;
  border: none;
  padding: 6px 0;
  color: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 14px;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .table_section .table_box table thead th.fixed {
  position: sticky;
  top: 0;
  z-index: 1;
  border: 0;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .table_section .table_box table thead th.fixed::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  display: table-column-group;
  width: -webkit-fill-available;
  height: 100%;
  border-bottom: 1px solid #dce7f1;
  z-index: 1;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .table_section .table_box table tbody td {
  position: relative;
  vertical-align: middle;
  background: #ffffff;
  border-bottom: 1px solid #dce7f1;
  padding: 8px 0;
  color: #222222;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .table_section .table_box.xscroll {
  overflow-y: auto;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .table_section .table_box.xscroll::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .table_section .table_box.xscroll::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .table_section .table_box.xscroll::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .table_section .table_box.xscroll::-webkit-scrollbar-track {
  background: #ffffff;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .table_section .table_box.xscroll::-webkit-scrollbar-button {
  display: none;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .table_section .table_box.xscroll table {
  table-layout: auto;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .table_section .table_box.xscroll table th {
  min-width: 80px;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .table_section .table_box.xscroll table th:first-child {
  left: 0;
  z-index: 2;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .table_section .table_box.xscroll table td.fixed {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 14px;
  position: sticky;
  left: 0;
  z-index: 1;
  border: 0;
  border-bottom: 1px solid #dce7f1;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .table_section .table_box.xscroll table td.fixed::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 1px;
  left: 0;
  display: table-column-group;
  width: -webkit-fill-available;
  height: 100%;
  border-bottom: 1px solid #dce7f1;
  z-index: 1;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .table_section .table_box.xscroll table tr:last-child td.fixed::before {
  top: 0;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .table_section .table_box.statics {
  margin-top: 10px;
  max-height: 550px;
  overflow-y: auto;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .table_section .table_box.statics::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .table_section .table_box.statics::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .table_section .table_box.statics::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .table_section .table_box.statics::-webkit-scrollbar-track {
  background: #ffffff;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .table_section .table_box.statics::-webkit-scrollbar-button {
  display: none;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .table_section .table_box.statics table thead {
  position: sticky;
  top: 0;
  z-index: 2;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .table_section .table_box.statics table tbody tr:first-child td {
  background-color: #eef2f7;
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 14px;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .table_section .bottom {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .table_section .bottom .select_box {
  position: relative;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .table_section .bottom .select_box label {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #435ebe;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .table_section .bottom .select_box select {
  width: 100px;
  height: 30px;
  border-radius: 4px;
  padding: 0px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .table_section .bottom .select_box select::-webkit-input-placeholder {
  color: #6c757d;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .table_section .bottom .select_box select::-moz-placeholder {
  color: #6c757d;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .table_section .bottom .select_box select:-ms-input-placeholder {
  color: #6c757d;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .table_section .bottom .select_box select::-ms-input-placeholder {
  color: #6c757d;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .table_section .bottom .select_box select::placeholder {
  color: #6c757d;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .table_section .bottom .select_box select:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .table_section .bottom .select_box select:disabled {
  background: #e9ecef;
  cursor: default;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .table_section .bottom .pagination {
  margin-top: 0;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .table_section + .table_section {
  margin-top: 30px;
}
.page_content.crm .tab_section .tab_box .tab_content.statistics .table_section + .table_section .tit {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 18px;
  color: #222222;
}
.page_content.crm .crm_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  width: 100%;
  height: 100%;
  max-height: calc(100% - 65px);
}
.page_content.crm .crm_box .schedule_section {
  position: relative;
  width: 400px;
  height: 100%;
  max-height: 100%;
  z-index: 2;
  margin-left: 0;
  -webkit-transition: margin-right 0.3s ease-in-out;
  transition: margin-right 0.3s ease-in-out;
  padding: 16px 10px;
  background: #ffffff;
  border-right: 1px solid #e5e7eb;
  padding-left: 30px;
}
.page_content.crm .crm_box .schedule_section.hide {
  margin-right: -10px;
  padding-left: 0;
  padding-right: 0;
  width: 30px;
}
.page_content.crm .crm_box .schedule_section.hide .top {
  opacity: 0;
}
.page_content.crm .crm_box .schedule_section.hide .schedule_tab {
  opacity: 0;
}
.page_content.crm .crm_box .schedule_section.hide .schedule_tab_box {
  opacity: 0;
}
.page_content.crm .crm_box .schedule_section .left {
  position: absolute;
  left: 0;
  top: 16px;
  width: 30px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  cursor: pointer;
  border-left: 1px solid #e5e7eb;
  background: #ffffff;
  z-index: 3;
}
.page_content.crm .crm_box .schedule_section .left p {
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_arrow_left_double.svg");
          mask-image: url("/assets/img/icon/ico_arrow_left_double.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 16px;
}
.page_content.crm .crm_box .schedule_section .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e7eb;
}
.page_content.crm .crm_box .schedule_section .top .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 6px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.crm .crm_box .schedule_section .top .flex p {
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  color: #222222;
}
.page_content.crm .crm_box .schedule_section .top .flex p span {
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  color: #435ebe;
}
.page_content.crm .crm_box .schedule_section .top .flex p:first-child::after {
  content: "/";
  margin-left: 6px;
}
.page_content.crm .crm_box .schedule_section .top .date_prev_btn {
  border: 1px solid #dce7f1;
  border-radius: 4px;
  width: 28px;
  height: 28px;
}
.page_content.crm .crm_box .schedule_section .top .date_prev_btn::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_arrow_left.svg");
          mask-image: url("/assets/img/icon/ico_arrow_left.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 16px;
  vertical-align: middle;
}
.page_content.crm .crm_box .schedule_section .top .date_prev_btn:hover {
  background-color: #eef2f7;
}
.page_content.crm .crm_box .schedule_section .top .date_next_btn {
  border: 1px solid #dce7f1;
  border-radius: 4px;
  width: 28px;
  height: 28px;
}
.page_content.crm .crm_box .schedule_section .top .date_next_btn::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_arrow_right.svg");
          mask-image: url("/assets/img/icon/ico_arrow_right.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 16px;
  vertical-align: middle;
}
.page_content.crm .crm_box .schedule_section .top .date_next_btn:hover {
  background-color: #eef2f7;
}
.page_content.crm .crm_box .schedule_section .top .input_box {
  position: relative;
}
.page_content.crm .crm_box .schedule_section .top .input_box label {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #435ebe;
}
.page_content.crm .crm_box .schedule_section .top .input_box input {
  width: 140px;
  height: 28px;
  border-radius: 4px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.crm .crm_box .schedule_section .top .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.page_content.crm .crm_box .schedule_section .top .input_box input::-moz-placeholder {
  color: #6c757d;
}
.page_content.crm .crm_box .schedule_section .top .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.page_content.crm .crm_box .schedule_section .top .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.page_content.crm .crm_box .schedule_section .top .input_box input::placeholder {
  color: #6c757d;
}
.page_content.crm .crm_box .schedule_section .top .input_box input:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.page_content.crm .crm_box .schedule_section .top .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.page_content.crm .crm_box .schedule_section .top .input_box input:disabled, .page_content.crm .crm_box .schedule_section .top .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.page_content.crm .crm_box .schedule_section .top .input_box.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.crm .crm_box .schedule_section .top .input_box.date .calendar {
  position: relative;
}
.page_content.crm .crm_box .schedule_section .top .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_calendar.svg");
          mask-image: url("/assets/img/icon/ico_calendar.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.page_content.crm .crm_box .schedule_section .top .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.page_content.crm .crm_box .schedule_section .top .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.page_content.crm .crm_box .schedule_section .top .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.page_content.crm .crm_box .schedule_section .top .input_box.search .input_search_btn {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.page_content.crm .crm_box .schedule_section .top .input_box.search .input_search_btn:hover {
  width: 20px;
  height: 20px;
}
.page_content.crm .crm_box .schedule_section .top .input_box input {
  text-align: center;
}
.page_content.crm .crm_box .schedule_section .schedule_tab {
  position: relative;
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 6px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.crm .crm_box .schedule_section .schedule_tab li {
  border-radius: 4px 4px 0 0;
  background: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 500;
  color: #777777;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  border: 1px solid #dce7f1;
  border-bottom: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  height: 28px;
  width: 100px;
  line-height: 28px;
}
.page_content.crm .crm_box .schedule_section .schedule_tab li.active {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #ffffff;
  border: 1px solid #444;
  background: #444;
  border-bottom: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  z-index: 1;
}
.page_content.crm .crm_box .schedule_section .schedule_tab li:hover {
  color: #444;
  border: 1px solid #444;
  border-bottom: none;
}
.page_content.crm .crm_box .schedule_section .schedule_add_btn {
  position: absolute;
  top: -2px;
  right: 5px;
  height: 24px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
}
.page_content.crm .crm_box .schedule_section .schedule_add_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.page_content.crm .crm_box .schedule_section .schedule_add_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.page_content.crm .crm_box .schedule_section .schedule_add_btn.gray {
  background: #999999;
  color: #ffffff;
}
.page_content.crm .crm_box .schedule_section .schedule_add_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.page_content.crm .crm_box .schedule_section .schedule_add_btn.gray:disabled {
  pointer-events: none;
}
.page_content.crm .crm_box .schedule_section .schedule_add_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.page_content.crm .crm_box .schedule_section .schedule_add_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.page_content.crm .crm_box .schedule_section .schedule_add_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.page_content.crm .crm_box .schedule_section .schedule_add_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.crm .crm_box .schedule_section .schedule_add_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.page_content.crm .crm_box .schedule_section .schedule_add_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.page_content.crm .crm_box .schedule_section .schedule_tab_box {
  border-top: 1px solid #dce7f1;
  width: 100%;
  height: 100%;
  max-height: calc(100% - 40px);
  padding: 10px 0;
}
.page_content.crm .crm_box .schedule_section .schedule_tab_box.show {
  display: block;
}
.page_content.crm .crm_box .schedule_section .schedule_tab_box .tab_content {
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
.page_content.crm .crm_box .schedule_section .schedule_tab_box .tab_content::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.page_content.crm .crm_box .schedule_section .schedule_tab_box .tab_content::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.page_content.crm .crm_box .schedule_section .schedule_tab_box .tab_content::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.page_content.crm .crm_box .schedule_section .schedule_tab_box .tab_content::-webkit-scrollbar-track {
  background: #ffffff;
}
.page_content.crm .crm_box .schedule_section .schedule_tab_box .tab_content::-webkit-scrollbar-button {
  display: none;
}
.page_content.crm .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box {
  width: 100%;
}
.page_content.crm .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 14px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 14px 10px;
  border-radius: 8px;
  border: 1px solid #dce7f1;
}
.page_content.crm .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li + li {
  margin-top: 12px;
}
.page_content.crm .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .schedule_top {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.crm .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .schedule_top .schedule {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 14px;
  color: #222222;
}
.page_content.crm .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .schedule_top .schedule::before {
  content: "🕓";
  margin-right: 4px;
}
.page_content.crm .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .schedule_top .btn_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 6px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.crm .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .schedule_top .btn_box button {
  height: 22px;
  font-size: 14px;
  width: 60px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
}
.page_content.crm .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .schedule_top .btn_box button:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.page_content.crm .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .schedule_top .btn_box button:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.page_content.crm .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .schedule_top .btn_box button.gray {
  background: #999999;
  color: #ffffff;
}
.page_content.crm .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .schedule_top .btn_box button.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.page_content.crm .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .schedule_top .btn_box button.gray:disabled {
  pointer-events: none;
}
.page_content.crm .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .schedule_top .btn_box button.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.page_content.crm .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .schedule_top .btn_box button.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.page_content.crm .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .schedule_top .btn_box button.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.page_content.crm .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .schedule_top .btn_box button.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.crm .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .schedule_top .btn_box button.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.page_content.crm .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .schedule_top .btn_box button.excel_btn:hover::before {
  background-color: #1d6f42;
}
.page_content.crm .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .schedule_top .btn_box button.db_btn {
  background-color: #ffffff;
  border: 1px solid #435ebe;
  color: #435ebe;
}
.page_content.crm .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .schedule_top .btn_box button.db_btn:hover {
  background-color: #435ebe;
  color: #ffffff;
}
.page_content.crm .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .info {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 5px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page_content.crm .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .info p {
  width: 49%;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  color: #222222;
}
.page_content.crm .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .info p span {
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  color: #222222;
}
.page_content.crm .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .info p.tit, .page_content.crm .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .info p.desc {
  width: 100%;
}
.page_content.crm .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .info p.tit span, .page_content.crm .crm_box .schedule_section .schedule_tab_box .tab_content .schedule_box li .info p.desc span {
  display: inline-block;
  width: calc(100% - 35px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.page_content.crm .crm_box .schedule_section.hide + .table_section {
  width: 100%;
}
.page_content.crm .crm_box .table_section {
  margin-top: 16px;
  position: relative;
  width: calc(100% - 400px);
}
.page_content.crm .crm_box .table_section .status_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page_content.crm .crm_box .table_section .status_box .btn_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.crm .crm_box .table_section .status_box .btn_box button {
  width: 80px;
  height: 30px;
  color: #222222;
  background: #ffffff;
  border: 1px solid #435ebe;
  border-right: none;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 13px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.crm .crm_box .table_section .status_box .btn_box button:first-child {
  border-radius: 4px 0 0 4px;
}
.page_content.crm .crm_box .table_section .status_box .btn_box button:last-child {
  border-radius: 0 4px 4px 0;
  border-right: 1px solid #435ebe;
}
.page_content.crm .crm_box .table_section .status_box .btn_box button:hover {
  color: #ffffff;
  background: #435ebe;
  border-left: 1px solid #ffffff;
}
.page_content.crm .crm_box .table_section .status_box .btn_box button.on {
  color: #ffffff;
  background: #435ebe;
}
.page_content.crm .crm_box .table_section .status_box p {
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  color: #222222;
}
.page_content.crm .crm_box .table_section .status_box p span {
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  color: #222222;
}
.page_content.crm .crm_box .table_section .status_box .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.page_content.crm .crm_box .table_section .status_box .right p {
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  color: #222222;
}
.page_content.crm .crm_box .table_section .status_box .right p span {
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  color: #222222;
}
.page_content.crm .crm_box .table_section .status_box .right .excel_btn {
  height: 30px;
  font-size: 14px;
  width: 120px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
}
.page_content.crm .crm_box .table_section .status_box .right .excel_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.page_content.crm .crm_box .table_section .status_box .right .excel_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.page_content.crm .crm_box .table_section .status_box .right .excel_btn.gray {
  background: #999999;
  color: #ffffff;
}
.page_content.crm .crm_box .table_section .status_box .right .excel_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.page_content.crm .crm_box .table_section .status_box .right .excel_btn.gray:disabled {
  pointer-events: none;
}
.page_content.crm .crm_box .table_section .status_box .right .excel_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.page_content.crm .crm_box .table_section .status_box .right .excel_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.page_content.crm .crm_box .table_section .status_box .right .excel_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.page_content.crm .crm_box .table_section .status_box .right .excel_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.crm .crm_box .table_section .status_box .right .excel_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.page_content.crm .crm_box .table_section .status_box .right .excel_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.page_content.crm .crm_box .table_section .table_box {
  margin-top: 8px;
  position: relative;
  overflow-x: auto;
  overflow-y: auto;
  max-height: 694px;
}
.page_content.crm .crm_box .table_section .table_box::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.page_content.crm .crm_box .table_section .table_box::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.page_content.crm .crm_box .table_section .table_box::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.page_content.crm .crm_box .table_section .table_box::-webkit-scrollbar-track {
  background: #ffffff;
}
.page_content.crm .crm_box .table_section .table_box::-webkit-scrollbar-button {
  display: none;
}
.page_content.crm .crm_box .table_section .table_box table {
  width: 100%;
  table-layout: fixed;
  min-width: 1500px;
}
.page_content.crm .crm_box .table_section .table_box table thead th {
  position: relative;
  vertical-align: middle;
  background: #435ebe;
  border: none;
  padding: 6px 0;
  color: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 14px;
}
.page_content.crm .crm_box .table_section .table_box table thead th.fixed {
  position: sticky;
  top: 0;
  z-index: 1;
  border: 0;
}
.page_content.crm .crm_box .table_section .table_box table thead th.fixed::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  display: table-column-group;
  width: -webkit-fill-available;
  height: 100%;
  border-bottom: 1px solid #dce7f1;
  z-index: 1;
}
.page_content.crm .crm_box .table_section .table_box table thead th .checkbox {
  z-index: 100;
}
.page_content.crm .crm_box .table_section .table_box table tbody tr {
  cursor: pointer;
}
.page_content.crm .crm_box .table_section .table_box table tbody tr:hover td {
  background: rgba(124, 141, 181, 0.2);
}
.page_content.crm .crm_box .table_section .table_box table tbody td {
  position: relative;
  vertical-align: middle;
  background: #ffffff;
  border-bottom: 1px solid #dce7f1;
  padding: 8px 0;
  color: #222222;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.page_content.crm .crm_box .table_section .table_box table tbody td.overlap:hover .memo_tooltip {
  visibility: visible;
  opacity: 1;
  z-index: 10;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  height: auto;
}
.page_content.crm .crm_box .table_section .table_box table tbody td.overlap .memo {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 4px;
}
.page_content.crm .crm_box .table_section .table_box table tbody td.overlap .memo_tooltip {
  position: absolute;
  top: -25px;
  left: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  padding: 10px;
  color: white;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  text-align: left;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.9);
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  height: 0;
  overflow: hidden;
}
.page_content.crm .crm_box .table_section .table_box table tbody .ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 4px;
}
.page_content.crm .crm_box .table_section .table_box table .checkbox {
  width: 40px;
}
.page_content.crm .crm_box .table_section .table_box table .checkbox label::before {
  border-width: 2px;
  width: 16px;
  height: 16px;
  border: 1px solid #e1e3ea;
}
.page_content.crm .crm_box .table_section .table_box table .checkbox label::after {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
}
.page_content.crm .crm_box .table_section .bottom {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.crm .crm_box .table_section .bottom .select_box {
  position: relative;
}
.page_content.crm .crm_box .table_section .bottom .select_box label {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #435ebe;
}
.page_content.crm .crm_box .table_section .bottom .select_box select {
  width: 100px;
  height: 30px;
  border-radius: 4px;
  padding: 0px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.crm .crm_box .table_section .bottom .select_box select::-webkit-input-placeholder {
  color: #6c757d;
}
.page_content.crm .crm_box .table_section .bottom .select_box select::-moz-placeholder {
  color: #6c757d;
}
.page_content.crm .crm_box .table_section .bottom .select_box select:-ms-input-placeholder {
  color: #6c757d;
}
.page_content.crm .crm_box .table_section .bottom .select_box select::-ms-input-placeholder {
  color: #6c757d;
}
.page_content.crm .crm_box .table_section .bottom .select_box select::placeholder {
  color: #6c757d;
}
.page_content.crm .crm_box .table_section .bottom .select_box select:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.page_content.crm .crm_box .table_section .bottom .select_box select:disabled {
  background: #e9ecef;
  cursor: default;
}
.page_content.crm .crm_box .table_section .bottom .pagination {
  margin-top: 0;
}

.transfer .search_section .input_box {
  position: relative;
  width: 456px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.transfer .search_section .input_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.transfer .search_section .input_box input {
  width: 152px;
  height: 28px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.transfer .search_section .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.transfer .search_section .input_box input::-moz-placeholder {
  color: #6c757d;
}
.transfer .search_section .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.transfer .search_section .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.transfer .search_section .input_box input::placeholder {
  color: #6c757d;
}
.transfer .search_section .input_box input:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.transfer .search_section .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.transfer .search_section .input_box input:disabled, .transfer .search_section .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.transfer .search_section .input_box.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.transfer .search_section .input_box.date .calendar {
  position: relative;
}
.transfer .search_section .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_calendar.svg");
          mask-image: url("/assets/img/icon/ico_calendar.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.transfer .search_section .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.transfer .search_section .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.transfer .search_section .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.transfer .search_section .input_box.search input {
  width: 450px;
}
.transfer .search_section .input_box.search .input_search_btn {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.transfer .search_section .input_box.search .input_search_btn:hover {
  width: 20px;
  height: 20px;
}
.transfer .search_section .input_box.search input {
  width: 386px;
}
.transfer .search_section .check_section {
  margin-top: 16px;
  padding: 16px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  -webkit-box-shadow: rgba(99, 99, 99, 0.15) 0px 0px 8px 0px;
          box-shadow: rgba(99, 99, 99, 0.15) 0px 0px 8px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.transfer .search_section .check_section .checkbox label {
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  color: #222222;
}
.transfer .search_section .check_section .checkbox label::before {
  vertical-align: middle;
  margin-right: 6px;
}
.transfer .search_section .btn_box {
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.transfer .search_section .btn_box .submit_btn {
  height: 30px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
}
.transfer .search_section .btn_box .submit_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.transfer .search_section .btn_box .submit_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.transfer .search_section .btn_box .submit_btn.gray {
  background: #999999;
  color: #ffffff;
}
.transfer .search_section .btn_box .submit_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.transfer .search_section .btn_box .submit_btn.gray:disabled {
  pointer-events: none;
}
.transfer .search_section .btn_box .submit_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.transfer .search_section .btn_box .submit_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.transfer .search_section .btn_box .submit_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.transfer .search_section .btn_box .submit_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.transfer .search_section .btn_box .submit_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.transfer .search_section .btn_box .submit_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.transfer .search_section .btn_box .cancel_btn {
  height: 30px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
}
.transfer .search_section .btn_box .cancel_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.transfer .search_section .btn_box .cancel_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.transfer .search_section .btn_box .cancel_btn.gray {
  background: #999999;
  color: #ffffff;
}
.transfer .search_section .btn_box .cancel_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.transfer .search_section .btn_box .cancel_btn.gray:disabled {
  pointer-events: none;
}
.transfer .search_section .btn_box .cancel_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.transfer .search_section .btn_box .cancel_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.transfer .search_section .btn_box .cancel_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.transfer .search_section .btn_box .cancel_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.transfer .search_section .btn_box .cancel_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.transfer .search_section .btn_box .cancel_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.transfer .table_section {
  position: relative;
  width: 100%;
}
.transfer .table_section.agent {
  margin-top: 16px;
}
.transfer .table_section.agent .table_box {
  max-height: 620px;
}
.transfer .table_section.agent .btn_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.transfer .table_section .btn_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.transfer .table_section .btn_box div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.transfer .table_section .btn_box .add_btn {
  height: 30px;
  font-size: 14px;
  width: 100px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
}
.transfer .table_section .btn_box .add_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.transfer .table_section .btn_box .add_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.transfer .table_section .btn_box .add_btn.gray {
  background: #999999;
  color: #ffffff;
}
.transfer .table_section .btn_box .add_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.transfer .table_section .btn_box .add_btn.gray:disabled {
  pointer-events: none;
}
.transfer .table_section .btn_box .add_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.transfer .table_section .btn_box .add_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.transfer .table_section .btn_box .add_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.transfer .table_section .btn_box .add_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.transfer .table_section .btn_box .add_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.transfer .table_section .btn_box .add_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.transfer .table_section .btn_box .add_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_plus.svg");
          mask-image: url("/assets/img/icon/ico_plus.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 16px;
  vertical-align: -4px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.transfer .table_section .btn_box .add_btn:hover::before {
  background-color: #435ebe;
}
.transfer .table_section .btn_box .cancel_btn {
  height: 30px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
}
.transfer .table_section .btn_box .cancel_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.transfer .table_section .btn_box .cancel_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.transfer .table_section .btn_box .cancel_btn.gray {
  background: #999999;
  color: #ffffff;
}
.transfer .table_section .btn_box .cancel_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.transfer .table_section .btn_box .cancel_btn.gray:disabled {
  pointer-events: none;
}
.transfer .table_section .btn_box .cancel_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.transfer .table_section .btn_box .cancel_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.transfer .table_section .btn_box .cancel_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.transfer .table_section .btn_box .cancel_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.transfer .table_section .btn_box .cancel_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.transfer .table_section .btn_box .cancel_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.transfer .table_section .btn_box .save_btn {
  height: 30px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.transfer .table_section .btn_box .save_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.transfer .table_section .btn_box .save_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.transfer .table_section .btn_box .save_btn.gray {
  background: #999999;
  color: #ffffff;
}
.transfer .table_section .btn_box .save_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.transfer .table_section .btn_box .save_btn.gray:disabled {
  pointer-events: none;
}
.transfer .table_section .btn_box .save_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.transfer .table_section .btn_box .save_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.transfer .table_section .btn_box .save_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.transfer .table_section .btn_box .save_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.transfer .table_section .btn_box .save_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.transfer .table_section .btn_box .save_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.transfer .table_section .btn_box .save_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_file.svg");
          mask-image: url("/assets/img/icon/ico_file.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.transfer .table_section .btn_box .save_btn:hover::before {
  background-color: #435ebe;
}
.transfer .table_section .btn_box .delete_btn {
  height: 30px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  border: 1px solid #dc3545 !important;
  background: #dc3545;
  color: #ffffff;
  font-size: 13px;
}
.transfer .table_section .btn_box .delete_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.transfer .table_section .btn_box .delete_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.transfer .table_section .btn_box .delete_btn.gray {
  background: #999999;
  color: #ffffff;
}
.transfer .table_section .btn_box .delete_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.transfer .table_section .btn_box .delete_btn.gray:disabled {
  pointer-events: none;
}
.transfer .table_section .btn_box .delete_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.transfer .table_section .btn_box .delete_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.transfer .table_section .btn_box .delete_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.transfer .table_section .btn_box .delete_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.transfer .table_section .btn_box .delete_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.transfer .table_section .btn_box .delete_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.transfer .table_section .btn_box .delete_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_delete.svg");
          mask-image: url("/assets/img/icon/ico_delete.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 14px;
  margin-right: 4px;
  vertical-align: middle;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.transfer .table_section .btn_box .delete_btn:hover {
  background: #ffffff;
  color: #dc3545;
}
.transfer .table_section .btn_box .delete_btn:hover::before {
  background-color: #dc3545;
}
.transfer .table_section .table_box {
  margin-top: 16px;
  position: relative;
  overflow-x: auto;
  overflow-y: auto;
  max-height: 760px;
}
.transfer .table_section .table_box::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.transfer .table_section .table_box::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.transfer .table_section .table_box::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.transfer .table_section .table_box::-webkit-scrollbar-track {
  background: #ffffff;
}
.transfer .table_section .table_box::-webkit-scrollbar-button {
  display: none;
}
.transfer .table_section .table_box table {
  width: 100%;
  table-layout: fixed;
  min-width: 1500px;
}
.transfer .table_section .table_box table thead th {
  position: relative;
  vertical-align: middle;
  background: #435ebe;
  border: none;
  padding: 6px 0;
  color: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 14px;
}
.transfer .table_section .table_box table thead th.fixed {
  position: sticky;
  top: 0;
  z-index: 1;
  border: 0;
}
.transfer .table_section .table_box table thead th.fixed::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  display: table-column-group;
  width: -webkit-fill-available;
  height: 100%;
  border-bottom: 1px solid #dce7f1;
  z-index: 1;
}
.transfer .table_section .table_box table thead th .checkbox {
  z-index: 100;
}
.transfer .table_section .table_box table tbody tr {
  cursor: pointer;
}
.transfer .table_section .table_box table tbody tr:hover td {
  background: rgba(124, 141, 181, 0.2);
}
.transfer .table_section .table_box table tbody td {
  position: relative;
  vertical-align: middle;
  background: #ffffff;
  border-bottom: 1px solid #dce7f1;
  padding: 8px 0;
  color: #222222;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.transfer .table_section .table_box table tbody td.overlap:hover .memo_tooltip {
  visibility: visible;
  opacity: 1;
  z-index: 10;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  height: auto;
}
.transfer .table_section .table_box table tbody td.overlap .memo {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 4px;
}
.transfer .table_section .table_box table tbody td.overlap .memo_tooltip {
  position: absolute;
  top: -25px;
  left: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  padding: 10px;
  color: white;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  text-align: left;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.9);
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  height: 0;
  overflow: hidden;
}
.transfer .table_section .table_box table tbody .ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 4px;
}
.transfer .table_section .table_box table .checkbox {
  width: 40px;
}
.transfer .table_section .table_box table .checkbox label::before {
  border-width: 2px;
  width: 16px;
  height: 16px;
  border: 1px solid #e1e3ea;
}
.transfer .table_section .table_box table .checkbox label::after {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
}
.transfer .table_section .table_box table tbody tr {
  cursor: default;
}
.transfer .table_section .table_box table tbody tr:hover td {
  background: white;
}
.transfer .table_section .table_box table tbody tr td .input_box {
  position: relative;
}
.transfer .table_section .table_box table tbody tr td .input_box label {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #435ebe;
}
.transfer .table_section .table_box table tbody tr td .input_box input {
  width: 60px;
  height: 28px;
  border-radius: 4px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.transfer .table_section .table_box table tbody tr td .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.transfer .table_section .table_box table tbody tr td .input_box input::-moz-placeholder {
  color: #6c757d;
}
.transfer .table_section .table_box table tbody tr td .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.transfer .table_section .table_box table tbody tr td .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.transfer .table_section .table_box table tbody tr td .input_box input::placeholder {
  color: #6c757d;
}
.transfer .table_section .table_box table tbody tr td .input_box input:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.transfer .table_section .table_box table tbody tr td .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.transfer .table_section .table_box table tbody tr td .input_box input:disabled, .transfer .table_section .table_box table tbody tr td .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.transfer .table_section .table_box table tbody tr td .input_box.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.transfer .table_section .table_box table tbody tr td .input_box.date .calendar {
  position: relative;
}
.transfer .table_section .table_box table tbody tr td .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_calendar.svg");
          mask-image: url("/assets/img/icon/ico_calendar.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.transfer .table_section .table_box table tbody tr td .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.transfer .table_section .table_box table tbody tr td .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.transfer .table_section .table_box table tbody tr td .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.transfer .table_section .table_box table tbody tr td .input_box.search .input_search_btn {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.transfer .table_section .table_box table tbody tr td .input_box.search .input_search_btn:hover {
  width: 20px;
  height: 20px;
}
.transfer .table_section .table_box table tbody tr td .input_box input {
  padding: 0;
  text-align: center;
}
.transfer .table_section .table_box table tbody tr td .input_box input:hover {
  cursor: text;
}
.transfer .table_section .table_box table tbody tr td .edit_btn {
  height: 30px;
  font-size: 14px;
  width: 100px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
}
.transfer .table_section .table_box table tbody tr td .edit_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.transfer .table_section .table_box table tbody tr td .edit_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.transfer .table_section .table_box table tbody tr td .edit_btn.gray {
  background: #999999;
  color: #ffffff;
}
.transfer .table_section .table_box table tbody tr td .edit_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.transfer .table_section .table_box table tbody tr td .edit_btn.gray:disabled {
  pointer-events: none;
}
.transfer .table_section .table_box table tbody tr td .edit_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.transfer .table_section .table_box table tbody tr td .edit_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.transfer .table_section .table_box table tbody tr td .edit_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.transfer .table_section .table_box table tbody tr td .edit_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.transfer .table_section .table_box table tbody tr td .edit_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.transfer .table_section .table_box table tbody tr td .edit_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.transfer .table_section .table_box table tbody tr td .edit_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_edit.svg");
          mask-image: url("/assets/img/icon/ico_edit.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.transfer .table_section .table_box table tbody tr td .edit_btn:hover::before {
  background-color: #435ebe;
}
.transfer .table_section .table_box table tbody tr td .toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.template {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.template .left {
  width: 60%;
  min-height: 100%;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  -webkit-box-shadow: rgba(99, 99, 99, 0.15) 0px 0px 8px 0px;
          box-shadow: rgba(99, 99, 99, 0.15) 0px 0px 8px 0px;
}
.template .right {
  width: 38%;
  min-height: 100%;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  -webkit-box-shadow: rgba(99, 99, 99, 0.15) 0px 0px 8px 0px;
          box-shadow: rgba(99, 99, 99, 0.15) 0px 0px 8px 0px;
}
.template .search_section {
  position: relative;
  width: 100%;
  padding: 16px;
}
.template .search_section .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.template .search_section .flex.kakao {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.template .search_section .flex.kakao .input_box.short {
  width: 20%;
}
.template .search_section .flex.kakao .input_box.md {
  width: 39%;
}
.template .search_section .flex .input_box {
  width: 30%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.template .search_section .flex .input_box.long {
  width: 69%;
}
.template .search_section .flex .input_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.template .search_section .flex .input_box input {
  width: 100%;
  height: 28px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.template .search_section .flex .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.template .search_section .flex .input_box input::-moz-placeholder {
  color: #6c757d;
}
.template .search_section .flex .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.template .search_section .flex .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.template .search_section .flex .input_box input::placeholder {
  color: #6c757d;
}
.template .search_section .flex .input_box input:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.template .search_section .flex .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.template .search_section .flex .input_box input:disabled, .template .search_section .flex .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.template .search_section .flex .input_box.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.template .search_section .flex .input_box.date .calendar {
  position: relative;
}
.template .search_section .flex .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_calendar.svg");
          mask-image: url("/assets/img/icon/ico_calendar.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.template .search_section .flex .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.template .search_section .flex .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.template .search_section .flex .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.template .search_section .flex .input_box.search input {
  width: 450px;
}
.template .search_section .flex .input_box.search .input_search_btn {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.template .search_section .flex .input_box.search .input_search_btn:hover {
  width: 20px;
  height: 20px;
}
.template .search_section .flex .input_box label {
  min-width: 80px;
}
.template .search_section .btn_box {
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.template .search_section .btn_box .submit_btn {
  height: 30px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
}
.template .search_section .btn_box .submit_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.template .search_section .btn_box .submit_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.template .search_section .btn_box .submit_btn.gray {
  background: #999999;
  color: #ffffff;
}
.template .search_section .btn_box .submit_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.template .search_section .btn_box .submit_btn.gray:disabled {
  pointer-events: none;
}
.template .search_section .btn_box .submit_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.template .search_section .btn_box .submit_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.template .search_section .btn_box .submit_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.template .search_section .btn_box .submit_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.template .search_section .btn_box .submit_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.template .search_section .btn_box .submit_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.template .search_section .btn_box .cancel_btn {
  height: 30px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
}
.template .search_section .btn_box .cancel_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.template .search_section .btn_box .cancel_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.template .search_section .btn_box .cancel_btn.gray {
  background: #999999;
  color: #ffffff;
}
.template .search_section .btn_box .cancel_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.template .search_section .btn_box .cancel_btn.gray:disabled {
  pointer-events: none;
}
.template .search_section .btn_box .cancel_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.template .search_section .btn_box .cancel_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.template .search_section .btn_box .cancel_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.template .search_section .btn_box .cancel_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.template .search_section .btn_box .cancel_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.template .search_section .btn_box .cancel_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.template .table_section {
  position: relative;
  width: 100%;
  padding: 16px;
}
.template .table_section .delete_btn {
  position: absolute;
  right: 20px;
  height: 30px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  border: 1px solid #dc3545 !important;
  background: #dc3545;
  color: #ffffff;
  font-size: 13px;
}
.template .table_section .delete_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.template .table_section .delete_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.template .table_section .delete_btn.gray {
  background: #999999;
  color: #ffffff;
}
.template .table_section .delete_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.template .table_section .delete_btn.gray:disabled {
  pointer-events: none;
}
.template .table_section .delete_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.template .table_section .delete_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.template .table_section .delete_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.template .table_section .delete_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.template .table_section .delete_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.template .table_section .delete_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.template .table_section .delete_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_delete.svg");
          mask-image: url("/assets/img/icon/ico_delete.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 14px;
  margin-right: 4px;
  vertical-align: middle;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.template .table_section .delete_btn:hover {
  background: #ffffff;
  color: #dc3545;
}
.template .table_section .delete_btn:hover::before {
  background-color: #dc3545;
}
.template .table_section .table_box {
  margin-top: 46px;
  position: relative;
  overflow-x: auto;
  overflow-y: auto;
  max-height: 640px;
}
.template .table_section .table_box::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.template .table_section .table_box::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.template .table_section .table_box::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.template .table_section .table_box::-webkit-scrollbar-track {
  background: #ffffff;
}
.template .table_section .table_box::-webkit-scrollbar-button {
  display: none;
}
.template .table_section .table_box table {
  width: 100%;
  table-layout: fixed;
  min-width: 1500px;
}
.template .table_section .table_box table thead th {
  position: relative;
  vertical-align: middle;
  background: #435ebe;
  border: none;
  padding: 6px 0;
  color: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 14px;
}
.template .table_section .table_box table thead th.fixed {
  position: sticky;
  top: 0;
  z-index: 1;
  border: 0;
}
.template .table_section .table_box table thead th.fixed::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  display: table-column-group;
  width: -webkit-fill-available;
  height: 100%;
  border-bottom: 1px solid #dce7f1;
  z-index: 1;
}
.template .table_section .table_box table thead th .checkbox {
  z-index: 100;
}
.template .table_section .table_box table tbody tr {
  cursor: pointer;
}
.template .table_section .table_box table tbody tr:hover td {
  background: rgba(124, 141, 181, 0.2);
}
.template .table_section .table_box table tbody td {
  position: relative;
  vertical-align: middle;
  background: #ffffff;
  border-bottom: 1px solid #dce7f1;
  padding: 8px 0;
  color: #222222;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.template .table_section .table_box table tbody td.overlap:hover .memo_tooltip {
  visibility: visible;
  opacity: 1;
  z-index: 10;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  height: auto;
}
.template .table_section .table_box table tbody td.overlap .memo {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 4px;
}
.template .table_section .table_box table tbody td.overlap .memo_tooltip {
  position: absolute;
  top: -25px;
  left: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  padding: 10px;
  color: white;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  text-align: left;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.9);
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  height: 0;
  overflow: hidden;
}
.template .table_section .table_box table tbody .ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 4px;
}
.template .table_section .table_box table .checkbox {
  width: 40px;
}
.template .table_section .table_box table .checkbox label::before {
  border-width: 2px;
  width: 16px;
  height: 16px;
  border: 1px solid #e1e3ea;
}
.template .table_section .table_box table .checkbox label::after {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
}
.template .table_section .table_box.kakao {
  max-height: 600px;
}
.template .table_section .table_box table {
  min-width: 600px;
}
.template .table_section .table_box table th:last-child {
  padding: 10px;
}
.template .table_section .table_box table tbody tr {
  cursor: default;
}
.template .table_section .table_box table tbody tr:hover td {
  background: white;
}
.template .table_section .table_box table tbody tr td:last-child {
  padding: 10px 0;
}
.template .table_section .table_box table tbody tr td .edit_btn {
  height: 30px;
  font-size: 14px;
  width: 100px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
}
.template .table_section .table_box table tbody tr td .edit_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.template .table_section .table_box table tbody tr td .edit_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.template .table_section .table_box table tbody tr td .edit_btn.gray {
  background: #999999;
  color: #ffffff;
}
.template .table_section .table_box table tbody tr td .edit_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.template .table_section .table_box table tbody tr td .edit_btn.gray:disabled {
  pointer-events: none;
}
.template .table_section .table_box table tbody tr td .edit_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.template .table_section .table_box table tbody tr td .edit_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.template .table_section .table_box table tbody tr td .edit_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.template .table_section .table_box table tbody tr td .edit_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.template .table_section .table_box table tbody tr td .edit_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.template .table_section .table_box table tbody tr td .edit_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.template .table_section .table_box table tbody tr td .edit_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_edit.svg");
          mask-image: url("/assets/img/icon/ico_edit.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.template .table_section .table_box table tbody tr td .edit_btn:hover::before {
  background-color: #435ebe;
}
.template .table_section .table_box table tbody tr td .toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.template .template_section {
  position: relative;
  width: 100%;
  padding: 16px;
}
.template .template_section .regi_box.kakao .text_box textarea {
  height: 500px;
}
.template .template_section .regi_box .tit {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 18px;
  color: #222222;
}
.template .template_section .regi_box .input_box {
  margin-top: 16px;
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.template .template_section .regi_box .input_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.template .template_section .regi_box .input_box input {
  width: 100%;
  height: 28px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.template .template_section .regi_box .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.template .template_section .regi_box .input_box input::-moz-placeholder {
  color: #6c757d;
}
.template .template_section .regi_box .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.template .template_section .regi_box .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.template .template_section .regi_box .input_box input::placeholder {
  color: #6c757d;
}
.template .template_section .regi_box .input_box input:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.template .template_section .regi_box .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.template .template_section .regi_box .input_box input:disabled, .template .template_section .regi_box .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.template .template_section .regi_box .input_box.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.template .template_section .regi_box .input_box.date .calendar {
  position: relative;
}
.template .template_section .regi_box .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_calendar.svg");
          mask-image: url("/assets/img/icon/ico_calendar.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.template .template_section .regi_box .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.template .template_section .regi_box .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.template .template_section .regi_box .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.template .template_section .regi_box .input_box.search input {
  width: 450px;
}
.template .template_section .regi_box .input_box.search .input_search_btn {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.template .template_section .regi_box .input_box.search .input_search_btn:hover {
  width: 20px;
  height: 20px;
}
.template .template_section .regi_box .input_box label {
  min-width: 80px;
}
.template .template_section .regi_box .text_box {
  margin-top: 16px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.template .template_section .regi_box .text_box label {
  width: 100%;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 4px 0 0;
}
.template .template_section .regi_box .text_box textarea {
  resize: none;
  width: 100%;
  height: 640px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 0 4px 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.template .template_section .regi_box .text_box textarea::-webkit-input-placeholder {
  color: #6c757d;
}
.template .template_section .regi_box .text_box textarea::-moz-placeholder {
  color: #6c757d;
}
.template .template_section .regi_box .text_box textarea:-ms-input-placeholder {
  color: #6c757d;
}
.template .template_section .regi_box .text_box textarea::-ms-input-placeholder {
  color: #6c757d;
}
.template .template_section .regi_box .text_box textarea::placeholder {
  color: #6c757d;
}
.template .template_section .regi_box .text_box textarea:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.template .template_section .regi_box .text_box textarea:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.template .template_section .regi_box .text_box textarea:disabled, .template .template_section .regi_box .text_box textarea:read-only {
  background: #e9ecef;
  cursor: default;
}
.template .template_section .regi_box .save_btn {
  position: absolute;
  right: 16px;
  bottom: -30px;
  height: 30px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.template .template_section .regi_box .save_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.template .template_section .regi_box .save_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.template .template_section .regi_box .save_btn.gray {
  background: #999999;
  color: #ffffff;
}
.template .template_section .regi_box .save_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.template .template_section .regi_box .save_btn.gray:disabled {
  pointer-events: none;
}
.template .template_section .regi_box .save_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.template .template_section .regi_box .save_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.template .template_section .regi_box .save_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.template .template_section .regi_box .save_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.template .template_section .regi_box .save_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.template .template_section .regi_box .save_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.template .template_section .regi_box .save_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_file.svg");
          mask-image: url("/assets/img/icon/ico_file.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.template .template_section .regi_box .save_btn:hover::before {
  background-color: #435ebe;
}

.reject .search_section {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.reject .search_section .input_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.reject .search_section .input_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.reject .search_section .input_box input {
  width: 200px;
  height: 28px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.reject .search_section .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.reject .search_section .input_box input::-moz-placeholder {
  color: #6c757d;
}
.reject .search_section .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.reject .search_section .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.reject .search_section .input_box input::placeholder {
  color: #6c757d;
}
.reject .search_section .input_box input:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.reject .search_section .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.reject .search_section .input_box input:disabled, .reject .search_section .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.reject .search_section .input_box.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.reject .search_section .input_box.date .calendar {
  position: relative;
}
.reject .search_section .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_calendar.svg");
          mask-image: url("/assets/img/icon/ico_calendar.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.reject .search_section .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.reject .search_section .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.reject .search_section .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.reject .search_section .input_box.search input {
  width: 450px;
}
.reject .search_section .input_box.search .input_search_btn {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.reject .search_section .input_box.search .input_search_btn:hover {
  width: 20px;
  height: 20px;
}
.reject .search_section .btn_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 12px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.reject .search_section .btn_box .submit_btn {
  height: 28px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
}
.reject .search_section .btn_box .submit_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.reject .search_section .btn_box .submit_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.reject .search_section .btn_box .submit_btn.gray {
  background: #999999;
  color: #ffffff;
}
.reject .search_section .btn_box .submit_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.reject .search_section .btn_box .submit_btn.gray:disabled {
  pointer-events: none;
}
.reject .search_section .btn_box .submit_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.reject .search_section .btn_box .submit_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.reject .search_section .btn_box .submit_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.reject .search_section .btn_box .submit_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.reject .search_section .btn_box .submit_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.reject .search_section .btn_box .submit_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.reject .search_section .btn_box .reject_add_btn {
  height: 28px;
  font-size: 14px;
  width: 100px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
}
.reject .search_section .btn_box .reject_add_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.reject .search_section .btn_box .reject_add_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.reject .search_section .btn_box .reject_add_btn.gray {
  background: #999999;
  color: #ffffff;
}
.reject .search_section .btn_box .reject_add_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.reject .search_section .btn_box .reject_add_btn.gray:disabled {
  pointer-events: none;
}
.reject .search_section .btn_box .reject_add_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.reject .search_section .btn_box .reject_add_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.reject .search_section .btn_box .reject_add_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.reject .search_section .btn_box .reject_add_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.reject .search_section .btn_box .reject_add_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.reject .search_section .btn_box .reject_add_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.reject .search_section .btn_box .reject_add_btn::before {
  content: "";
  display: inline-block;
  background-color: #dc3545;
  -webkit-mask-image: url("/assets/img/icon/ico_reject.svg");
          mask-image: url("/assets/img/icon/ico_reject.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 16px;
  vertical-align: -4px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.reject .search_section .btn_box .reject_add_btn:hover::before {
  background-color: #ffffff;
}
.reject .table_section {
  margin-top: 24px;
  position: relative;
  width: 100%;
}
.reject .table_section .table_box {
  position: relative;
  overflow-x: auto;
  overflow-y: auto;
  max-height: 720px;
}
.reject .table_section .table_box::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.reject .table_section .table_box::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.reject .table_section .table_box::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.reject .table_section .table_box::-webkit-scrollbar-track {
  background: #ffffff;
}
.reject .table_section .table_box::-webkit-scrollbar-button {
  display: none;
}
.reject .table_section .table_box table {
  width: 100%;
  table-layout: fixed;
  min-width: 1500px;
}
.reject .table_section .table_box table thead th {
  position: relative;
  vertical-align: middle;
  background: #435ebe;
  border: none;
  padding: 6px 0;
  color: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 14px;
}
.reject .table_section .table_box table thead th.fixed {
  position: sticky;
  top: 0;
  z-index: 1;
  border: 0;
}
.reject .table_section .table_box table thead th.fixed::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  display: table-column-group;
  width: -webkit-fill-available;
  height: 100%;
  border-bottom: 1px solid #dce7f1;
  z-index: 1;
}
.reject .table_section .table_box table thead th .checkbox {
  z-index: 100;
}
.reject .table_section .table_box table tbody tr {
  cursor: pointer;
}
.reject .table_section .table_box table tbody tr:hover td {
  background: rgba(124, 141, 181, 0.2);
}
.reject .table_section .table_box table tbody td {
  position: relative;
  vertical-align: middle;
  background: #ffffff;
  border-bottom: 1px solid #dce7f1;
  padding: 8px 0;
  color: #222222;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.reject .table_section .table_box table tbody td.overlap:hover .memo_tooltip {
  visibility: visible;
  opacity: 1;
  z-index: 10;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  height: auto;
}
.reject .table_section .table_box table tbody td.overlap .memo {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 4px;
}
.reject .table_section .table_box table tbody td.overlap .memo_tooltip {
  position: absolute;
  top: -25px;
  left: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  padding: 10px;
  color: white;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  text-align: left;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.9);
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  height: 0;
  overflow: hidden;
}
.reject .table_section .table_box table tbody .ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 4px;
}
.reject .table_section .table_box table .checkbox {
  width: 40px;
}
.reject .table_section .table_box table .checkbox label::before {
  border-width: 2px;
  width: 16px;
  height: 16px;
  border: 1px solid #e1e3ea;
}
.reject .table_section .table_box table .checkbox label::after {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
}
.reject .table_section .table_box table {
  min-width: 600px;
}
.reject .table_section .table_box table th:last-child {
  padding: 10px;
}
.reject .table_section .table_box table tbody tr {
  cursor: default;
}
.reject .table_section .table_box table tbody tr:hover td {
  background: white;
}
.reject .table_section .table_box table tbody tr td:last-child {
  padding: 10px 0;
}
.reject .table_section .table_box table tbody tr td .cancel_btn {
  height: 28px;
  font-size: 14px;
  width: 100px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
}
.reject .table_section .table_box table tbody tr td .cancel_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.reject .table_section .table_box table tbody tr td .cancel_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.reject .table_section .table_box table tbody tr td .cancel_btn.gray {
  background: #999999;
  color: #ffffff;
}
.reject .table_section .table_box table tbody tr td .cancel_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.reject .table_section .table_box table tbody tr td .cancel_btn.gray:disabled {
  pointer-events: none;
}
.reject .table_section .table_box table tbody tr td .cancel_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.reject .table_section .table_box table tbody tr td .cancel_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.reject .table_section .table_box table tbody tr td .cancel_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.reject .table_section .table_box table tbody tr td .cancel_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.reject .table_section .table_box table tbody tr td .cancel_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.reject .table_section .table_box table tbody tr td .cancel_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.reject .table_section .table_box table tbody tr td .cancel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_x_circle.svg");
          mask-image: url("/assets/img/icon/ico_x_circle.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.reject .table_section .table_box table tbody tr td .cancel_btn:hover::before {
  background-color: #ffffff;
}

.send {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.send .left {
  width: 60%;
  min-height: 100%;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  -webkit-box-shadow: rgba(99, 99, 99, 0.15) 0px 0px 8px 0px;
          box-shadow: rgba(99, 99, 99, 0.15) 0px 0px 8px 0px;
}
.send .right {
  width: 38%;
  min-height: 100%;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  -webkit-box-shadow: rgba(99, 99, 99, 0.15) 0px 0px 8px 0px;
          box-shadow: rgba(99, 99, 99, 0.15) 0px 0px 8px 0px;
}
.send .search_section {
  position: relative;
  width: 100%;
  padding: 16px;
}
.send .search_section .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.send .search_section .flex .input_box {
  width: 30%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.send .search_section .flex .input_box.long {
  width: 69%;
}
.send .search_section .flex .input_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.send .search_section .flex .input_box input {
  width: 100%;
  height: 28px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.send .search_section .flex .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.send .search_section .flex .input_box input::-moz-placeholder {
  color: #6c757d;
}
.send .search_section .flex .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.send .search_section .flex .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.send .search_section .flex .input_box input::placeholder {
  color: #6c757d;
}
.send .search_section .flex .input_box input:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.send .search_section .flex .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.send .search_section .flex .input_box input:disabled, .send .search_section .flex .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.send .search_section .flex .input_box.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.send .search_section .flex .input_box.date .calendar {
  position: relative;
}
.send .search_section .flex .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_calendar.svg");
          mask-image: url("/assets/img/icon/ico_calendar.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.send .search_section .flex .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.send .search_section .flex .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.send .search_section .flex .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.send .search_section .flex .input_box.search input {
  width: 450px;
}
.send .search_section .flex .input_box.search .input_search_btn {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.send .search_section .flex .input_box.search .input_search_btn:hover {
  width: 20px;
  height: 20px;
}
.send .search_section .flex .input_box label {
  min-width: 80px;
}
.send .search_section .btn_box {
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.send .search_section .btn_box .submit_btn {
  height: 30px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
}
.send .search_section .btn_box .submit_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.send .search_section .btn_box .submit_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.send .search_section .btn_box .submit_btn.gray {
  background: #999999;
  color: #ffffff;
}
.send .search_section .btn_box .submit_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.send .search_section .btn_box .submit_btn.gray:disabled {
  pointer-events: none;
}
.send .search_section .btn_box .submit_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.send .search_section .btn_box .submit_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.send .search_section .btn_box .submit_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.send .search_section .btn_box .submit_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.send .search_section .btn_box .submit_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.send .search_section .btn_box .submit_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.send .search_section .btn_box .cancel_btn {
  height: 30px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
}
.send .search_section .btn_box .cancel_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.send .search_section .btn_box .cancel_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.send .search_section .btn_box .cancel_btn.gray {
  background: #999999;
  color: #ffffff;
}
.send .search_section .btn_box .cancel_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.send .search_section .btn_box .cancel_btn.gray:disabled {
  pointer-events: none;
}
.send .search_section .btn_box .cancel_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.send .search_section .btn_box .cancel_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.send .search_section .btn_box .cancel_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.send .search_section .btn_box .cancel_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.send .search_section .btn_box .cancel_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.send .search_section .btn_box .cancel_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.send .table_section {
  position: relative;
  width: 100%;
  padding: 16px;
}
.send .table_section .table_box {
  position: relative;
  overflow-x: auto;
  overflow-y: auto;
  max-height: 680px;
}
.send .table_section .table_box::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.send .table_section .table_box::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.send .table_section .table_box::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.send .table_section .table_box::-webkit-scrollbar-track {
  background: #ffffff;
}
.send .table_section .table_box::-webkit-scrollbar-button {
  display: none;
}
.send .table_section .table_box table {
  width: 100%;
  table-layout: fixed;
  min-width: 1500px;
}
.send .table_section .table_box table thead th {
  position: relative;
  vertical-align: middle;
  background: #435ebe;
  border: none;
  padding: 6px 0;
  color: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 14px;
}
.send .table_section .table_box table thead th.fixed {
  position: sticky;
  top: 0;
  z-index: 1;
  border: 0;
}
.send .table_section .table_box table thead th.fixed::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  display: table-column-group;
  width: -webkit-fill-available;
  height: 100%;
  border-bottom: 1px solid #dce7f1;
  z-index: 1;
}
.send .table_section .table_box table thead th .checkbox {
  z-index: 100;
}
.send .table_section .table_box table tbody tr {
  cursor: pointer;
}
.send .table_section .table_box table tbody tr:hover td {
  background: rgba(124, 141, 181, 0.2);
}
.send .table_section .table_box table tbody td {
  position: relative;
  vertical-align: middle;
  background: #ffffff;
  border-bottom: 1px solid #dce7f1;
  padding: 8px 0;
  color: #222222;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.send .table_section .table_box table tbody td.overlap:hover .memo_tooltip {
  visibility: visible;
  opacity: 1;
  z-index: 10;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  height: auto;
}
.send .table_section .table_box table tbody td.overlap .memo {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 4px;
}
.send .table_section .table_box table tbody td.overlap .memo_tooltip {
  position: absolute;
  top: -25px;
  left: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  padding: 10px;
  color: white;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  text-align: left;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.9);
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  height: 0;
  overflow: hidden;
}
.send .table_section .table_box table tbody .ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 4px;
}
.send .table_section .table_box table .checkbox {
  width: 40px;
}
.send .table_section .table_box table .checkbox label::before {
  border-width: 2px;
  width: 16px;
  height: 16px;
  border: 1px solid #e1e3ea;
}
.send .table_section .table_box table .checkbox label::after {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
}
.send .table_section .table_box table {
  min-width: 600px;
}
.send .table_section .table_box table th:last-child {
  padding: 10px;
}
.send .table_section .table_box table tbody tr td.ellipsis {
  padding: 10px;
}
.send .send_section {
  position: relative;
  width: 100%;
  padding: 16px;
}
.send .send_section .send_box .tit {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 18px;
  color: #222222;
}
.send .send_section .send_box .input_box {
  margin-top: 16px;
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.send .send_section .send_box .input_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.send .send_section .send_box .input_box input {
  width: 100%;
  height: 28px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.send .send_section .send_box .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.send .send_section .send_box .input_box input::-moz-placeholder {
  color: #6c757d;
}
.send .send_section .send_box .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.send .send_section .send_box .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.send .send_section .send_box .input_box input::placeholder {
  color: #6c757d;
}
.send .send_section .send_box .input_box input:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.send .send_section .send_box .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.send .send_section .send_box .input_box input:disabled, .send .send_section .send_box .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.send .send_section .send_box .input_box.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.send .send_section .send_box .input_box.date .calendar {
  position: relative;
}
.send .send_section .send_box .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_calendar.svg");
          mask-image: url("/assets/img/icon/ico_calendar.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.send .send_section .send_box .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.send .send_section .send_box .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.send .send_section .send_box .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.send .send_section .send_box .input_box.search input {
  width: 450px;
}
.send .send_section .send_box .input_box.search .input_search_btn {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.send .send_section .send_box .input_box.search .input_search_btn:hover {
  width: 20px;
  height: 20px;
}
.send .send_section .send_box .input_box label {
  min-width: 80px;
}
.send .send_section .send_box .text_box {
  margin-top: 16px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.send .send_section .send_box .text_box label {
  width: 100%;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 4px 0 0;
}
.send .send_section .send_box .text_box textarea {
  resize: none;
  width: 100%;
  height: 640px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 0 4px 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.send .send_section .send_box .text_box textarea::-webkit-input-placeholder {
  color: #6c757d;
}
.send .send_section .send_box .text_box textarea::-moz-placeholder {
  color: #6c757d;
}
.send .send_section .send_box .text_box textarea:-ms-input-placeholder {
  color: #6c757d;
}
.send .send_section .send_box .text_box textarea::-ms-input-placeholder {
  color: #6c757d;
}
.send .send_section .send_box .text_box textarea::placeholder {
  color: #6c757d;
}
.send .send_section .send_box .text_box textarea:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.send .send_section .send_box .text_box textarea:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.send .send_section .send_box .text_box textarea:disabled, .send .send_section .send_box .text_box textarea:read-only {
  background: #e9ecef;
  cursor: default;
}
.send .send_section .send_box .send_btn {
  position: absolute;
  right: 16px;
  bottom: -30px;
  height: 30px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.send .send_section .send_box .send_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.send .send_section .send_box .send_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.send .send_section .send_box .send_btn.gray {
  background: #999999;
  color: #ffffff;
}
.send .send_section .send_box .send_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.send .send_section .send_box .send_btn.gray:disabled {
  pointer-events: none;
}
.send .send_section .send_box .send_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.send .send_section .send_box .send_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.send .send_section .send_box .send_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.send .send_section .send_box .send_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.send .send_section .send_box .send_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.send .send_section .send_box .send_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.send .send_section .send_box .send_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_send.svg");
          mask-image: url("/assets/img/icon/ico_send.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.send .send_section .send_box .send_btn:hover::before {
  background-color: #435ebe;
}

.send_bulk {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.send_bulk .left {
  width: 38%;
  min-height: 100%;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  -webkit-box-shadow: rgba(99, 99, 99, 0.15) 0px 0px 8px 0px;
          box-shadow: rgba(99, 99, 99, 0.15) 0px 0px 8px 0px;
}
.send_bulk .right {
  width: 60%;
  min-height: 100%;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  -webkit-box-shadow: rgba(99, 99, 99, 0.15) 0px 0px 8px 0px;
          box-shadow: rgba(99, 99, 99, 0.15) 0px 0px 8px 0px;
}
.send_bulk .send_section {
  position: relative;
  width: 100%;
  padding: 16px;
}
.send_bulk .send_section .send_box .tit {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 18px;
  color: #222222;
}
.send_bulk .send_section .send_box .select_box {
  margin-top: 16px;
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.send_bulk .send_section .send_box .select_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.send_bulk .send_section .send_box .select_box select {
  width: 100%;
  height: 28px;
  padding: 0 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  font-size: 14px;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.send_bulk .send_section .send_box .select_box select::-webkit-input-placeholder {
  color: #6c757d;
}
.send_bulk .send_section .send_box .select_box select::-moz-placeholder {
  color: #6c757d;
}
.send_bulk .send_section .send_box .select_box select:-ms-input-placeholder {
  color: #6c757d;
}
.send_bulk .send_section .send_box .select_box select::-ms-input-placeholder {
  color: #6c757d;
}
.send_bulk .send_section .send_box .select_box select::placeholder {
  color: #6c757d;
}
.send_bulk .send_section .send_box .select_box select:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.send_bulk .send_section .send_box .select_box select:disabled {
  background: #e9ecef;
  cursor: default;
}
.send_bulk .send_section .send_box .select_box label {
  min-width: 80px;
}
.send_bulk .send_section .send_box .input_box {
  margin-top: 16px;
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.send_bulk .send_section .send_box .input_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.send_bulk .send_section .send_box .input_box input {
  width: 100%;
  height: 28px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.send_bulk .send_section .send_box .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.send_bulk .send_section .send_box .input_box input::-moz-placeholder {
  color: #6c757d;
}
.send_bulk .send_section .send_box .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.send_bulk .send_section .send_box .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.send_bulk .send_section .send_box .input_box input::placeholder {
  color: #6c757d;
}
.send_bulk .send_section .send_box .input_box input:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.send_bulk .send_section .send_box .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.send_bulk .send_section .send_box .input_box input:disabled, .send_bulk .send_section .send_box .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.send_bulk .send_section .send_box .input_box.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.send_bulk .send_section .send_box .input_box.date .calendar {
  position: relative;
}
.send_bulk .send_section .send_box .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_calendar.svg");
          mask-image: url("/assets/img/icon/ico_calendar.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.send_bulk .send_section .send_box .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.send_bulk .send_section .send_box .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.send_bulk .send_section .send_box .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.send_bulk .send_section .send_box .input_box.search input {
  width: 450px;
}
.send_bulk .send_section .send_box .input_box.search .input_search_btn {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.send_bulk .send_section .send_box .input_box.search .input_search_btn:hover {
  width: 20px;
  height: 20px;
}
.send_bulk .send_section .send_box .input_box label {
  min-width: 80px;
}
.send_bulk .send_section .send_box .text_box {
  margin-top: 16px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.send_bulk .send_section .send_box .text_box label {
  width: 100%;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 4px 0 0;
}
.send_bulk .send_section .send_box .text_box textarea {
  resize: none;
  width: 100%;
  height: 680px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 0 4px 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.send_bulk .send_section .send_box .text_box textarea::-webkit-input-placeholder {
  color: #6c757d;
}
.send_bulk .send_section .send_box .text_box textarea::-moz-placeholder {
  color: #6c757d;
}
.send_bulk .send_section .send_box .text_box textarea:-ms-input-placeholder {
  color: #6c757d;
}
.send_bulk .send_section .send_box .text_box textarea::-ms-input-placeholder {
  color: #6c757d;
}
.send_bulk .send_section .send_box .text_box textarea::placeholder {
  color: #6c757d;
}
.send_bulk .send_section .send_box .text_box textarea:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.send_bulk .send_section .send_box .text_box textarea:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.send_bulk .send_section .send_box .text_box textarea:disabled, .send_bulk .send_section .send_box .text_box textarea:read-only {
  background: #e9ecef;
  cursor: default;
}
.send_bulk .db_section {
  position: relative;
  width: 100%;
  padding: 16px;
}
.send_bulk .db_section .db_box .tit {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 18px;
  color: #222222;
}
.send_bulk .db_section .db_box .select_box {
  margin-top: 16px;
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.send_bulk .db_section .db_box .select_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.send_bulk .db_section .db_box .select_box select {
  width: 200px;
  height: 28px;
  padding: 0 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  font-size: 14px;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.send_bulk .db_section .db_box .select_box select::-webkit-input-placeholder {
  color: #6c757d;
}
.send_bulk .db_section .db_box .select_box select::-moz-placeholder {
  color: #6c757d;
}
.send_bulk .db_section .db_box .select_box select:-ms-input-placeholder {
  color: #6c757d;
}
.send_bulk .db_section .db_box .select_box select::-ms-input-placeholder {
  color: #6c757d;
}
.send_bulk .db_section .db_box .select_box select::placeholder {
  color: #6c757d;
}
.send_bulk .db_section .db_box .select_box select:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.send_bulk .db_section .db_box .select_box select:disabled {
  background: #e9ecef;
  cursor: default;
}
.send_bulk .db_section .db_box .select_box label {
  min-width: 80px;
}
.send_bulk .db_section .db_box .select_box.date select {
  width: 99px;
}
.send_bulk .db_section .db_box .input_box {
  margin-top: 16px;
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.send_bulk .db_section .db_box .input_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.send_bulk .db_section .db_box .input_box input {
  width: 200px;
  height: 28px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.send_bulk .db_section .db_box .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.send_bulk .db_section .db_box .input_box input::-moz-placeholder {
  color: #6c757d;
}
.send_bulk .db_section .db_box .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.send_bulk .db_section .db_box .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.send_bulk .db_section .db_box .input_box input::placeholder {
  color: #6c757d;
}
.send_bulk .db_section .db_box .input_box input:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.send_bulk .db_section .db_box .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.send_bulk .db_section .db_box .input_box input:disabled, .send_bulk .db_section .db_box .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.send_bulk .db_section .db_box .input_box.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.send_bulk .db_section .db_box .input_box.date .calendar {
  position: relative;
}
.send_bulk .db_section .db_box .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_calendar.svg");
          mask-image: url("/assets/img/icon/ico_calendar.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.send_bulk .db_section .db_box .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.send_bulk .db_section .db_box .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.send_bulk .db_section .db_box .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.send_bulk .db_section .db_box .input_box.search input {
  width: 450px;
}
.send_bulk .db_section .db_box .input_box.search .input_search_btn {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.send_bulk .db_section .db_box .input_box.search .input_search_btn:hover {
  width: 20px;
  height: 20px;
}
.send_bulk .db_section .db_box .input_box label {
  min-width: 80px;
}
.send_bulk .db_section .db_box .search_box {
  position: relative;
  width: 490px;
}
.send_bulk .db_section .db_box .search_box input {
  padding-right: 30px;
}
.send_bulk .db_section .db_box .send_btn {
  margin-left: 10px;
  height: 28px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
}
.send_bulk .db_section .db_box .send_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.send_bulk .db_section .db_box .send_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.send_bulk .db_section .db_box .send_btn.gray {
  background: #999999;
  color: #ffffff;
}
.send_bulk .db_section .db_box .send_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.send_bulk .db_section .db_box .send_btn.gray:disabled {
  pointer-events: none;
}
.send_bulk .db_section .db_box .send_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.send_bulk .db_section .db_box .send_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.send_bulk .db_section .db_box .send_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.send_bulk .db_section .db_box .send_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.send_bulk .db_section .db_box .send_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.send_bulk .db_section .db_box .send_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.send_bulk .db_section .db_box .send_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_send.svg");
          mask-image: url("/assets/img/icon/ico_send.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.send_bulk .db_section .db_box .send_btn:hover::before {
  background-color: #435ebe;
}
.send_bulk .db_section .db_box .time {
  margin-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 6px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.send_bulk .db_section .db_box .time .select_box {
  margin-top: 0;
}
.send_bulk .db_section .db_box .time .select_box select {
  width: 100px;
}
.send_bulk .db_section .db_box .reservation_btn {
  margin-left: 10px;
  height: 28px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
}
.send_bulk .db_section .db_box .reservation_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.send_bulk .db_section .db_box .reservation_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.send_bulk .db_section .db_box .reservation_btn.gray {
  background: #999999;
  color: #ffffff;
}
.send_bulk .db_section .db_box .reservation_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.send_bulk .db_section .db_box .reservation_btn.gray:disabled {
  pointer-events: none;
}
.send_bulk .db_section .db_box .reservation_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.send_bulk .db_section .db_box .reservation_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.send_bulk .db_section .db_box .reservation_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.send_bulk .db_section .db_box .reservation_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.send_bulk .db_section .db_box .reservation_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.send_bulk .db_section .db_box .reservation_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.send_bulk .db_section .db_box .reservation_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_clock.svg");
          mask-image: url("/assets/img/icon/ico_clock.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.send_bulk .db_section .db_box .reservation_btn:hover::before {
  background-color: #435ebe;
}

/* crm pop */
.crm_detail_pop table {
  width: 100%;
}
.crm_detail_pop table thead th {
  vertical-align: middle;
  background: #435ebe;
  border: none;
  padding: 10px 0;
  color: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 15px;
}
.crm_detail_pop table tbody td {
  vertical-align: middle;
  background: #ffffff;
  border-bottom: 1px solid #dce7f1;
  padding: 10px 0;
  color: #222222;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  text-align: center;
}
.crm_detail_pop h5 {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 10px;
  color: #222222;
}
.crm_detail_pop h5::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 16px;
  background: #435ebe;
  vertical-align: -3px;
  margin-right: 4px;
}
.crm_detail_pop table + h5 {
  margin-top: 16px;
}
.crm_detail_pop .db_back_btn {
  height: 28px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.crm_detail_pop .db_back_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.crm_detail_pop .db_back_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.crm_detail_pop .db_back_btn.gray {
  background: #999999;
  color: #ffffff;
}
.crm_detail_pop .db_back_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.crm_detail_pop .db_back_btn.gray:disabled {
  pointer-events: none;
}
.crm_detail_pop .db_back_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.crm_detail_pop .db_back_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.crm_detail_pop .db_back_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.crm_detail_pop .db_back_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.crm_detail_pop .db_back_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.crm_detail_pop .db_back_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.crm_detail_pop .db_back_btn::before {
  content: "";
  display: inline-block;
  background-color: #dc3545;
  -webkit-mask-image: url("/assets/img/icon/ico_arrow_back.svg");
          mask-image: url("/assets/img/icon/ico_arrow_back.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 20px;
  vertical-align: middle;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.crm_detail_pop .db_back_btn:hover::before {
  background-color: #ffffff;
}

.transfer_pop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.transfer_pop .input_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.transfer_pop .input_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.transfer_pop .input_box input {
  width: 160px;
  height: 28px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.transfer_pop .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.transfer_pop .input_box input::-moz-placeholder {
  color: #6c757d;
}
.transfer_pop .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.transfer_pop .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.transfer_pop .input_box input::placeholder {
  color: #6c757d;
}
.transfer_pop .input_box input:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.transfer_pop .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.transfer_pop .input_box input:disabled, .transfer_pop .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.transfer_pop .input_box.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.transfer_pop .input_box.date .calendar {
  position: relative;
}
.transfer_pop .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_calendar.svg");
          mask-image: url("/assets/img/icon/ico_calendar.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.transfer_pop .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.transfer_pop .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.transfer_pop .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.transfer_pop .input_box.search input {
  width: 450px;
}
.transfer_pop .input_box.search .input_search_btn {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.transfer_pop .input_box.search .input_search_btn:hover {
  width: 20px;
  height: 20px;
}
.transfer_pop .input_box label {
  min-width: 100px;
}
.transfer_pop .input_box.date span {
  display: block;
  margin: 0 10px;
}
.transfer_pop .select_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.transfer_pop .select_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.transfer_pop .select_box select {
  width: 160px;
  height: 28px;
  padding: 0 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  font-size: 14px;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.transfer_pop .select_box select::-webkit-input-placeholder {
  color: #6c757d;
}
.transfer_pop .select_box select::-moz-placeholder {
  color: #6c757d;
}
.transfer_pop .select_box select:-ms-input-placeholder {
  color: #6c757d;
}
.transfer_pop .select_box select::-ms-input-placeholder {
  color: #6c757d;
}
.transfer_pop .select_box select::placeholder {
  color: #6c757d;
}
.transfer_pop .select_box select:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.transfer_pop .select_box select:disabled {
  background: #e9ecef;
  cursor: default;
}
.transfer_pop .select_box label {
  min-width: 100px;
}

.type_call .modal_tit {
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e7eb;
}
.type_call .modal_tit::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_call.svg");
          mask-image: url("/assets/img/icon/ico_call.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 30px;
  height: 30px;
  vertical-align: -8px;
  margin-right: 6px;
  -webkit-animation: shake-call 1.2s infinite ease-in-out;
          animation: shake-call 1.2s infinite ease-in-out;
}
@-webkit-keyframes shake-call {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  20% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
  60% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  80% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes shake-call {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  20% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
  60% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  80% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.type_call .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 14px;
}
.type_call .info p {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 18px;
  color: #222222;
}
.type_call .info p span {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 18px;
  color: #222222;
}
.type_call .call_number {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 24px;
  color: #222222;
  text-align: center;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #dce7f1;
}
.type_call .call_accept_btn {
  margin-top: 20px;
  height: 50px;
  font-size: 14px;
  width: 100%;
  border-radius: 8px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 18px;
}
.type_call .call_accept_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.type_call .call_accept_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.type_call .call_accept_btn.gray {
  background: #999999;
  color: #ffffff;
}
.type_call .call_accept_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.type_call .call_accept_btn.gray:disabled {
  pointer-events: none;
}
.type_call .call_accept_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.type_call .call_accept_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.type_call .call_accept_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.type_call .call_accept_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_call .call_accept_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.type_call .call_accept_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}

.type_schedule .schedule_regi {
  padding: 10px 0;
}
.type_schedule .schedule_regi .date_box {
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_schedule .schedule_regi .date_box .time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 4px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_schedule .schedule_regi .date_box .time .select_box {
  position: relative;
}
.type_schedule .schedule_regi .date_box .time .select_box label {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #435ebe;
}
.type_schedule .schedule_regi .date_box .time .select_box select {
  width: 80px;
  height: 28px;
  border-radius: 4px;
  padding: 0px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_schedule .schedule_regi .date_box .time .select_box select::-webkit-input-placeholder {
  color: #6c757d;
}
.type_schedule .schedule_regi .date_box .time .select_box select::-moz-placeholder {
  color: #6c757d;
}
.type_schedule .schedule_regi .date_box .time .select_box select:-ms-input-placeholder {
  color: #6c757d;
}
.type_schedule .schedule_regi .date_box .time .select_box select::-ms-input-placeholder {
  color: #6c757d;
}
.type_schedule .schedule_regi .date_box .time .select_box select::placeholder {
  color: #6c757d;
}
.type_schedule .schedule_regi .date_box .time .select_box select:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.type_schedule .schedule_regi .date_box .time .select_box select:disabled {
  background: #e9ecef;
  cursor: default;
}
.type_schedule .schedule_regi .input_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_schedule .schedule_regi .input_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.type_schedule .schedule_regi .input_box input {
  width: 152px;
  height: 28px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_schedule .schedule_regi .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.type_schedule .schedule_regi .input_box input::-moz-placeholder {
  color: #6c757d;
}
.type_schedule .schedule_regi .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.type_schedule .schedule_regi .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.type_schedule .schedule_regi .input_box input::placeholder {
  color: #6c757d;
}
.type_schedule .schedule_regi .input_box input:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.type_schedule .schedule_regi .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.type_schedule .schedule_regi .input_box input:disabled, .type_schedule .schedule_regi .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.type_schedule .schedule_regi .input_box.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_schedule .schedule_regi .input_box.date .calendar {
  position: relative;
}
.type_schedule .schedule_regi .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_calendar.svg");
          mask-image: url("/assets/img/icon/ico_calendar.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.type_schedule .schedule_regi .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.type_schedule .schedule_regi .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.type_schedule .schedule_regi .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.type_schedule .schedule_regi .input_box.search input {
  width: 450px;
}
.type_schedule .schedule_regi .input_box.search .input_search_btn {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.type_schedule .schedule_regi .input_box.search .input_search_btn:hover {
  width: 20px;
  height: 20px;
}
.type_schedule .schedule_regi .input_box input.wd100 {
  width: 100%;
}
.type_schedule .schedule_regi .text_box {
  margin-top: 16px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.type_schedule .schedule_regi .text_box label {
  width: 100%;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 4px 0 0;
}
.type_schedule .schedule_regi .text_box textarea {
  resize: none;
  width: 100%;
  height: 120px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 0 4px 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_schedule .schedule_regi .text_box textarea::-webkit-input-placeholder {
  color: #6c757d;
}
.type_schedule .schedule_regi .text_box textarea::-moz-placeholder {
  color: #6c757d;
}
.type_schedule .schedule_regi .text_box textarea:-ms-input-placeholder {
  color: #6c757d;
}
.type_schedule .schedule_regi .text_box textarea::-ms-input-placeholder {
  color: #6c757d;
}
.type_schedule .schedule_regi .text_box textarea::placeholder {
  color: #6c757d;
}
.type_schedule .schedule_regi .text_box textarea:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.type_schedule .schedule_regi .text_box textarea:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.type_schedule .schedule_regi .text_box textarea:disabled, .type_schedule .schedule_regi .text_box textarea:read-only {
  background: #e9ecef;
  cursor: default;
}

.type_db {
  max-width: 94% !important;
}
.type_db .modal_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 10px 20px 8px !important;
  border-bottom: 1px solid #e5e7eb;
}
.type_db .modal_header .modal_tit span {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 20px;
  color: #222222;
}
.type_db .modal_header .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_db .modal_header button {
  height: 28px;
  font-size: 14px;
  width: 120px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_db .modal_header button:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.type_db .modal_header button:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.type_db .modal_header button.gray {
  background: #999999;
  color: #ffffff;
}
.type_db .modal_header button.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.type_db .modal_header button.gray:disabled {
  pointer-events: none;
}
.type_db .modal_header button.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.type_db .modal_header button.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.type_db .modal_header button.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.type_db .modal_header button.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_db .modal_header button.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.type_db .modal_header button.excel_btn:hover::before {
  background-color: #1d6f42;
}
.type_db .db_detail_pop {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_db .db_detail_pop .left {
  width: 50%;
  padding-right: 16px;
  border-right: 1px solid #e5e7eb;
}
.type_db .db_detail_pop .left .field:first-child {
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.type_db .db_detail_pop .left .field .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 12px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_db .db_detail_pop .left .field .flex + .flex {
  margin-top: 12px;
}
.type_db .db_detail_pop .left .field .flex .flex + .flex {
  margin-top: 0;
}
.type_db .db_detail_pop .left .field .flex.gap5 {
  gap: 5px;
}
.type_db .db_detail_pop .left .field .flex .input_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_db .db_detail_pop .left .field .flex .input_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.type_db .db_detail_pop .left .field .flex .input_box input {
  width: 140px;
  height: 28px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_db .db_detail_pop .left .field .flex .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.type_db .db_detail_pop .left .field .flex .input_box input::-moz-placeholder {
  color: #6c757d;
}
.type_db .db_detail_pop .left .field .flex .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.type_db .db_detail_pop .left .field .flex .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.type_db .db_detail_pop .left .field .flex .input_box input::placeholder {
  color: #6c757d;
}
.type_db .db_detail_pop .left .field .flex .input_box input:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.type_db .db_detail_pop .left .field .flex .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.type_db .db_detail_pop .left .field .flex .input_box input:disabled, .type_db .db_detail_pop .left .field .flex .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.type_db .db_detail_pop .left .field .flex .input_box.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_db .db_detail_pop .left .field .flex .input_box.date .calendar {
  position: relative;
}
.type_db .db_detail_pop .left .field .flex .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_calendar.svg");
          mask-image: url("/assets/img/icon/ico_calendar.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.type_db .db_detail_pop .left .field .flex .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.type_db .db_detail_pop .left .field .flex .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.type_db .db_detail_pop .left .field .flex .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.type_db .db_detail_pop .left .field .flex .input_box.search input {
  width: 450px;
}
.type_db .db_detail_pop .left .field .flex .input_box.search .input_search_btn {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.type_db .db_detail_pop .left .field .flex .input_box.search .input_search_btn:hover {
  width: 20px;
  height: 20px;
}
.type_db .db_detail_pop .left .field .flex .input_box:first-child {
  width: 384px;
}
.type_db .db_detail_pop .left .field .flex .input_box.long input {
  width: 100%;
}
.type_db .db_detail_pop .left .field .flex .input_box.nolabel input {
  width: 220px;
}
.type_db .db_detail_pop .left .field .flex .input_box label {
  min-width: 80px;
}
.type_db .db_detail_pop .left .field .flex .input_box span {
  display: block;
  margin: 0 5px;
}
.type_db .db_detail_pop .left .field .flex .select_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_db .db_detail_pop .left .field .flex .select_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.type_db .db_detail_pop .left .field .flex .select_box select {
  width: 142px;
  height: 28px;
  padding: 0 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  font-size: 14px;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_db .db_detail_pop .left .field .flex .select_box select::-webkit-input-placeholder {
  color: #6c757d;
}
.type_db .db_detail_pop .left .field .flex .select_box select::-moz-placeholder {
  color: #6c757d;
}
.type_db .db_detail_pop .left .field .flex .select_box select:-ms-input-placeholder {
  color: #6c757d;
}
.type_db .db_detail_pop .left .field .flex .select_box select::-ms-input-placeholder {
  color: #6c757d;
}
.type_db .db_detail_pop .left .field .flex .select_box select::placeholder {
  color: #6c757d;
}
.type_db .db_detail_pop .left .field .flex .select_box select:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.type_db .db_detail_pop .left .field .flex .select_box select:disabled {
  background: #e9ecef;
  cursor: default;
}
.type_db .db_detail_pop .left .field .flex .select_box label {
  min-width: 80px;
}
.type_db .db_detail_pop .left .field .flex .select_box.short select {
  width: 106px;
}
.type_db .db_detail_pop .left .field .flex .select_box select + select {
  margin-left: 12px;
  width: 150px;
}
.type_db .db_detail_pop .left .field .flex .text_box {
  margin-top: 10px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.type_db .db_detail_pop .left .field .flex .text_box label {
  width: 100%;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 4px 0 0;
}
.type_db .db_detail_pop .left .field .flex .text_box textarea {
  resize: none;
  width: 100%;
  height: 100px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 0 4px 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_db .db_detail_pop .left .field .flex .text_box textarea::-webkit-input-placeholder {
  color: #6c757d;
}
.type_db .db_detail_pop .left .field .flex .text_box textarea::-moz-placeholder {
  color: #6c757d;
}
.type_db .db_detail_pop .left .field .flex .text_box textarea:-ms-input-placeholder {
  color: #6c757d;
}
.type_db .db_detail_pop .left .field .flex .text_box textarea::-ms-input-placeholder {
  color: #6c757d;
}
.type_db .db_detail_pop .left .field .flex .text_box textarea::placeholder {
  color: #6c757d;
}
.type_db .db_detail_pop .left .field .flex .text_box textarea:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.type_db .db_detail_pop .left .field .flex .text_box textarea:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.type_db .db_detail_pop .left .field .flex .text_box textarea:disabled, .type_db .db_detail_pop .left .field .flex .text_box textarea:read-only {
  background: #e9ecef;
  cursor: default;
}
.type_db .db_detail_pop .left .field .flex .btn_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_db .db_detail_pop .left .field .flex .btn_box button {
  width: 68px;
  height: 28px;
  color: #222222;
  background: #ffffff;
  border: 1px solid #435ebe;
  border-right: none;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_db .db_detail_pop .left .field .flex .btn_box button:first-child {
  border-radius: 4px 0 0 4px;
}
.type_db .db_detail_pop .left .field .flex .btn_box button:last-child {
  border-radius: 0 4px 4px 0;
  border-right: 1px solid #435ebe;
}
.type_db .db_detail_pop .left .field .flex .btn_box button:hover {
  color: #ffffff;
  background: #435ebe;
  border-left: 1px solid #ffffff;
}
.type_db .db_detail_pop .left .field .flex button.take_btn {
  height: 28px;
  font-size: 14px;
  width: 70px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  margin-left: 12px;
}
.type_db .db_detail_pop .left .field .flex button.take_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.type_db .db_detail_pop .left .field .flex button.take_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.type_db .db_detail_pop .left .field .flex button.take_btn.gray {
  background: #999999;
  color: #ffffff;
}
.type_db .db_detail_pop .left .field .flex button.take_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.type_db .db_detail_pop .left .field .flex button.take_btn.gray:disabled {
  pointer-events: none;
}
.type_db .db_detail_pop .left .field .flex button.take_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.type_db .db_detail_pop .left .field .flex button.take_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.type_db .db_detail_pop .left .field .flex button.take_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.type_db .db_detail_pop .left .field .flex button.take_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_db .db_detail_pop .left .field .flex button.take_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.type_db .db_detail_pop .left .field .flex button.take_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.type_db .db_detail_pop .left .field .flex button.take_btn.call {
  background: #be4343;
}
.type_db .db_detail_pop .left .field .flex button.take_btn.call::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_call.svg");
          mask-image: url("/assets/img/icon/ico_call.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 16px;
  vertical-align: -3px;
  margin-right: 2px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.type_db .db_detail_pop .left .field .flex button.take_btn.call:hover {
  background: #ffffff;
  color: #be4343;
  border: 1px solid #be4343;
}
.type_db .db_detail_pop .left .field .flex button.take_btn.call:hover::before {
  background-color: #be4343;
}
.type_db .db_detail_pop .left .field .flex button.take_btn.phone {
  background: #369997;
}
.type_db .db_detail_pop .left .field .flex button.take_btn.phone:hover {
  background: #ffffff;
  color: #369997;
  border: 1px solid #369997;
}
.type_db .db_detail_pop .left .field .flex button.hang_up_btn {
  height: 28px;
  font-size: 14px;
  width: 186px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_db .db_detail_pop .left .field .flex button.hang_up_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.type_db .db_detail_pop .left .field .flex button.hang_up_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.type_db .db_detail_pop .left .field .flex button.hang_up_btn.gray {
  background: #999999;
  color: #ffffff;
}
.type_db .db_detail_pop .left .field .flex button.hang_up_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.type_db .db_detail_pop .left .field .flex button.hang_up_btn.gray:disabled {
  pointer-events: none;
}
.type_db .db_detail_pop .left .field .flex button.hang_up_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.type_db .db_detail_pop .left .field .flex button.hang_up_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.type_db .db_detail_pop .left .field .flex button.hang_up_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.type_db .db_detail_pop .left .field .flex button.hang_up_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_db .db_detail_pop .left .field .flex button.hang_up_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.type_db .db_detail_pop .left .field .flex button.hang_up_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.type_db .db_detail_pop .left .field .flex button.hang_up_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_call_close.svg");
          mask-image: url("/assets/img/icon/ico_call_close.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 16px;
  vertical-align: -3px;
  margin-right: 2px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.type_db .db_detail_pop .left .field .flex button.hang_up_btn.call {
  background: #be4343;
}
.type_db .db_detail_pop .left .field .flex button.hang_up_btn.call:hover {
  background: #ffffff;
  color: #be4343;
  border: 1px solid #be4343;
}
.type_db .db_detail_pop .left .field .flex button.hang_up_btn.call:hover::before {
  background-color: #be4343;
}
.type_db .db_detail_pop .left .field .flex button.hang_up_btn.phone {
  background: #369997;
}
.type_db .db_detail_pop .left .field .flex button.hang_up_btn.phone:hover {
  background: #ffffff;
  color: #369997;
  border: 1px solid #369997;
}
.type_db .db_detail_pop .left .field .flex button.hang_up_btn.phone:hover::before {
  background-color: #369997;
}
.type_db .db_detail_pop .left .field .flex button.basic_btn {
  height: 28px;
  font-size: 14px;
  width: 105px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_db .db_detail_pop .left .field .flex button.basic_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.type_db .db_detail_pop .left .field .flex button.basic_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.type_db .db_detail_pop .left .field .flex button.basic_btn.gray {
  background: #999999;
  color: #ffffff;
}
.type_db .db_detail_pop .left .field .flex button.basic_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.type_db .db_detail_pop .left .field .flex button.basic_btn.gray:disabled {
  pointer-events: none;
}
.type_db .db_detail_pop .left .field .flex button.basic_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.type_db .db_detail_pop .left .field .flex button.basic_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.type_db .db_detail_pop .left .field .flex button.basic_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.type_db .db_detail_pop .left .field .flex button.basic_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_db .db_detail_pop .left .field .flex button.basic_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.type_db .db_detail_pop .left .field .flex button.basic_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.type_db .db_detail_pop .left .field .flex button.basic_btn.reverse {
  background: #fff;
  color: #435ebe;
  border: 1px solid #435ebe;
}
.type_db .db_detail_pop .left .field .flex button.basic_btn.reverse:hover {
  background: #435ebe;
  color: #fff;
}
.type_db .db_detail_pop .left .field .flex button.basic_btn.long {
  width: 185px;
}
.type_db .db_detail_pop .left .field .flex button.basic_btn.short {
  width: 70px;
}
.type_db .db_detail_pop .left .field .flex .date_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 12px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_db .db_detail_pop .left .field .flex .date_box .input_box {
  width: 222px !important;
}
.type_db .db_detail_pop .left .field .flex .date_box .time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 4px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_db .db_detail_pop .left .field .flex .date_box .time .select_box {
  position: relative;
}
.type_db .db_detail_pop .left .field .flex .date_box .time .select_box label {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #435ebe;
}
.type_db .db_detail_pop .left .field .flex .date_box .time .select_box select {
  width: 73px;
  height: 28px;
  border-radius: 4px;
  padding: 0px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_db .db_detail_pop .left .field .flex .date_box .time .select_box select::-webkit-input-placeholder {
  color: #6c757d;
}
.type_db .db_detail_pop .left .field .flex .date_box .time .select_box select::-moz-placeholder {
  color: #6c757d;
}
.type_db .db_detail_pop .left .field .flex .date_box .time .select_box select:-ms-input-placeholder {
  color: #6c757d;
}
.type_db .db_detail_pop .left .field .flex .date_box .time .select_box select::-ms-input-placeholder {
  color: #6c757d;
}
.type_db .db_detail_pop .left .field .flex .date_box .time .select_box select::placeholder {
  color: #6c757d;
}
.type_db .db_detail_pop .left .field .flex .date_box .time .select_box select:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.type_db .db_detail_pop .left .field .flex .date_box .time .select_box select:disabled {
  background: #e9ecef;
  cursor: default;
}
.type_db .db_detail_pop .left .field .flex .date_box .time .select_box select {
  padding: 0 4px;
}
.type_db .db_detail_pop .right {
  width: 50%;
  padding-left: 16px;
}
.type_db .db_detail_pop .right .field + .field {
  border-top: 1px solid #e5e7eb;
  padding-top: 12px;
  margin-top: 12px;
}
.type_db .db_detail_pop .right .field .tit {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 16px;
  color: #222222;
  margin-bottom: 10px;
}
.type_db .db_detail_pop .right .field .transfer_btn_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 8px 6px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.type_db .db_detail_pop .right .field .transfer_btn_box button {
  min-width: 70px;
  border-radius: 10px;
  padding: 6px 12px;
  color: #ffffff;
  background: #444;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_db .db_detail_pop .right .field .transfer_btn_box button:hover {
  background: #000;
}
.type_db .db_detail_pop .right .field .transfer_history table {
  width: 100%;
  table-layout: fixed;
  border: 1px solid #aaa;
}
.type_db .db_detail_pop .right .field .transfer_history table tbody th {
  vertical-align: middle;
  background: #444;
  color: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  text-align: center;
  padding: 4px;
  border: 1px solid #aaa;
  width: 60px;
}
.type_db .db_detail_pop .right .field .transfer_history table tbody td {
  vertical-align: middle;
  background: #ffffff;
  color: #222222;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  text-align: center;
  padding: 4px 0;
  border: 1px solid #aaa;
  word-break: keep-all;
}
.type_db .db_detail_pop .right .field .transfer_history table tbody td .toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_db .db_detail_pop .right .field .transfer_history table tbody td .toggle input[type=checkbox] + label {
  height: 24px;
  width: 50px;
}
.type_db .db_detail_pop .right .field .transfer_history table tbody td .toggle input[type=checkbox] + label::before {
  right: 5px;
}
.type_db .db_detail_pop .right .field .transfer_history table tbody td .toggle input[type=checkbox] + label::after {
  width: 20px;
  height: 20px;
  left: 1px;
}
.type_db .db_detail_pop .right .field .transfer_history table tbody td .toggle input[type=checkbox]:checked + label {
  background-color: #444;
}
.type_db .db_detail_pop .right .field .transfer_history table tbody td .toggle input[type=checkbox]:checked + label::before {
  right: 25px !important;
}
.type_db .db_detail_pop .right .field .transfer_history table tbody td .toggle input[type=checkbox]:checked + label::after {
  width: 20px;
  height: 20px;
  right: 1px !important;
  left: auto;
}
.type_db .db_detail_pop .right .field .table_box.yscroll {
  max-height: 120px;
  overflow-y: auto;
}
.type_db .db_detail_pop .right .field .table_box.yscroll::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.type_db .db_detail_pop .right .field .table_box.yscroll::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.type_db .db_detail_pop .right .field .table_box.yscroll::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.type_db .db_detail_pop .right .field .table_box.yscroll::-webkit-scrollbar-track {
  background: #ffffff;
}
.type_db .db_detail_pop .right .field .table_box.yscroll::-webkit-scrollbar-button {
  display: none;
}
.type_db .db_detail_pop .right .field .table_box.yscroll table td {
  padding: 4px 0;
}
.type_db .db_detail_pop .right .field .table_box.max3 {
  height: 140px;
  overflow-y: auto;
}
.type_db .db_detail_pop .right .field .table_box.max3::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.type_db .db_detail_pop .right .field .table_box.max3::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.type_db .db_detail_pop .right .field .table_box.max3::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.type_db .db_detail_pop .right .field .table_box.max3::-webkit-scrollbar-track {
  background: #ffffff;
}
.type_db .db_detail_pop .right .field .table_box.max3::-webkit-scrollbar-button {
  display: none;
}
.type_db .db_detail_pop .right .field .table_box.xscroll table {
  width: 100%;
  table-layout: auto;
}
.type_db .db_detail_pop .right .field .table_box.xscroll table td {
  min-width: 100px;
  padding: 4px 0;
}
.type_db .db_detail_pop .right .field .table_box.xscroll table td.long {
  min-width: 300px;
}
.type_db .db_detail_pop .right .field .table_box table {
  width: 100%;
  table-layout: fixed;
}
.type_db .db_detail_pop .right .field .table_box table thead th {
  position: relative;
  vertical-align: middle;
  background: #435ebe;
  border: none;
  padding: 6px 0;
  color: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 14px;
}
.type_db .db_detail_pop .right .field .table_box table thead th.fixed {
  position: sticky;
  top: 0;
  z-index: 1;
  border: 0;
}
.type_db .db_detail_pop .right .field .table_box table thead th.fixed::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  display: table-column-group;
  width: -webkit-fill-available;
  height: 100%;
  border-bottom: 1px solid #dce7f1;
  z-index: 1;
}
.type_db .db_detail_pop .right .field .table_box table thead th .checkbox {
  z-index: 100;
}
.type_db .db_detail_pop .right .field .table_box table tbody td {
  position: relative;
  vertical-align: middle;
  background: #ffffff;
  border-bottom: 1px solid #dce7f1;
  padding: 8px 0;
  color: #222222;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  word-break: keep-all;
}
.type_db .db_detail_pop .right .field .table_box table tbody td .listen_btn {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  color: #222222;
  border-bottom: 1px solid #222222;
  padding: 0 2px;
}
.type_db .db_detail_pop .right .field .table_box table tbody td .listen_btn:hover {
  color: #435ebe;
  border-bottom: 1px solid #435ebe;
}
.type_db .db_detail_pop .right .field .table_box .db_back_btn {
  height: 28px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_db .db_detail_pop .right .field .table_box .db_back_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.type_db .db_detail_pop .right .field .table_box .db_back_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.type_db .db_detail_pop .right .field .table_box .db_back_btn.gray {
  background: #999999;
  color: #ffffff;
}
.type_db .db_detail_pop .right .field .table_box .db_back_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.type_db .db_detail_pop .right .field .table_box .db_back_btn.gray:disabled {
  pointer-events: none;
}
.type_db .db_detail_pop .right .field .table_box .db_back_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.type_db .db_detail_pop .right .field .table_box .db_back_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.type_db .db_detail_pop .right .field .table_box .db_back_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.type_db .db_detail_pop .right .field .table_box .db_back_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_db .db_detail_pop .right .field .table_box .db_back_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.type_db .db_detail_pop .right .field .table_box .db_back_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.type_db .db_detail_pop .right .field .table_box .db_back_btn::before {
  content: "";
  display: inline-block;
  background-color: #dc3545;
  -webkit-mask-image: url("/assets/img/icon/ico_arrow_back.svg");
          mask-image: url("/assets/img/icon/ico_arrow_back.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 20px;
  vertical-align: middle;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_db .db_detail_pop .right .field .table_box .db_back_btn:hover::before {
  background-color: #ffffff;
}
.type_db .db_detail_pop .right .field .text_box {
  margin-top: 10px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_db .db_detail_pop .right .field .text_box textarea {
  resize: none;
  padding: 0 10px 10px 10px;
  width: calc(100% - 100px);
  height: 28px;
  outline: none;
  border: 0;
  border-bottom: 1px solid #aaa;
  background: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_db .db_detail_pop .right .field .text_box textarea::-webkit-input-placeholder {
  color: #6c757d;
}
.type_db .db_detail_pop .right .field .text_box textarea::-moz-placeholder {
  color: #6c757d;
}
.type_db .db_detail_pop .right .field .text_box textarea:-ms-input-placeholder {
  color: #6c757d;
}
.type_db .db_detail_pop .right .field .text_box textarea::-ms-input-placeholder {
  color: #6c757d;
}
.type_db .db_detail_pop .right .field .text_box textarea::placeholder {
  color: #6c757d;
}
.type_db .db_detail_pop .right .field .text_box textarea:focus {
  border-bottom: 1px solid #435ebe;
  outline: none;
}
.type_db .db_detail_pop .right .field .text_box textarea:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.type_db .db_detail_pop .right .field .text_box textarea:disabled, .type_db .db_detail_pop .right .field .text_box textarea:read-only {
  background: #e9ecef;
  cursor: default;
}
.type_db .db_detail_pop .right .field .text_box button {
  height: 28px;
  font-size: 14px;
  width: 70px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_db .db_detail_pop .right .field .text_box button:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.type_db .db_detail_pop .right .field .text_box button:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.type_db .db_detail_pop .right .field .text_box button.gray {
  background: #999999;
  color: #ffffff;
}
.type_db .db_detail_pop .right .field .text_box button.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.type_db .db_detail_pop .right .field .text_box button.gray:disabled {
  pointer-events: none;
}
.type_db .db_detail_pop .right .field .text_box button.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.type_db .db_detail_pop .right .field .text_box button.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.type_db .db_detail_pop .right .field .text_box button.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.type_db .db_detail_pop .right .field .text_box button.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_db .db_detail_pop .right .field .text_box button.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.type_db .db_detail_pop .right .field .text_box button.excel_btn:hover::before {
  background-color: #1d6f42;
}
.type_db .db_detail_pop .right .field .tab_section {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.type_db .db_detail_pop .right .field .tab_section .tab {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 6px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  top: 1px;
}
.type_db .db_detail_pop .right .field .tab_section .tab li {
  border-radius: 4px 4px 0 0;
  background: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 500;
  color: #777777;
  font-size: 15px;
  text-align: center;
  cursor: pointer;
  border: 1px solid #dce7f1;
  border-bottom: none;
  -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.type_db .db_detail_pop .right .field .tab_section .tab li.active {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #435ebe;
  border: 1px solid #435ebe;
  border-bottom: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  z-index: 1;
}
.type_db .db_detail_pop .right .field .tab_section .tab li:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  border-bottom: none;
}
.type_db .db_detail_pop .right .field .tab_section .tab_box {
  display: none;
  position: relative;
  background: #ffffff;
  border: 1px solid #dce7f1;
  border-top: 1px solid #435ebe;
  width: 100%;
  padding: 16px;
  border-radius: 0 0 5px 5px;
  -webkit-box-shadow: rgba(99, 99, 99, 0.15) 0px 1px 8px 0px;
          box-shadow: rgba(99, 99, 99, 0.15) 0px 1px 8px 0px;
}
.type_db .db_detail_pop .right .field .tab_section .tab_box.show {
  display: block;
}
.type_db .db_detail_pop .right .field .tab_section .tab li {
  padding: 0 20px;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
}
.type_db .db_detail_pop .right .field .tab_section .tab_box {
  border: none;
  border-top: 1px solid #dce7f1;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  padding: 12px 0;
  height: 100%;
  max-height: 140px;
  overflow-y: auto;
}
.type_db .db_detail_pop .right .field .tab_section .tab_box::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.type_db .db_detail_pop .right .field .tab_section .tab_box::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.type_db .db_detail_pop .right .field .tab_section .tab_box::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.type_db .db_detail_pop .right .field .tab_section .tab_box::-webkit-scrollbar-track {
  background: #ffffff;
}
.type_db .db_detail_pop .right .field .tab_section .tab_box::-webkit-scrollbar-button {
  display: none;
}
.type_db .db_detail_pop .right .field .tab_section .tab_box .tab_content {
  width: 100%;
}
.type_db .db_detail_pop .right .field .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 12px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_db .db_detail_pop .right .field .flex .input_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_db .db_detail_pop .right .field .flex .input_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.type_db .db_detail_pop .right .field .flex .input_box input {
  width: 200px;
  height: 28px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_db .db_detail_pop .right .field .flex .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.type_db .db_detail_pop .right .field .flex .input_box input::-moz-placeholder {
  color: #6c757d;
}
.type_db .db_detail_pop .right .field .flex .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.type_db .db_detail_pop .right .field .flex .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.type_db .db_detail_pop .right .field .flex .input_box input::placeholder {
  color: #6c757d;
}
.type_db .db_detail_pop .right .field .flex .input_box input:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.type_db .db_detail_pop .right .field .flex .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.type_db .db_detail_pop .right .field .flex .input_box input:disabled, .type_db .db_detail_pop .right .field .flex .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.type_db .db_detail_pop .right .field .flex .input_box.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_db .db_detail_pop .right .field .flex .input_box.date .calendar {
  position: relative;
}
.type_db .db_detail_pop .right .field .flex .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_calendar.svg");
          mask-image: url("/assets/img/icon/ico_calendar.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.type_db .db_detail_pop .right .field .flex .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.type_db .db_detail_pop .right .field .flex .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.type_db .db_detail_pop .right .field .flex .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.type_db .db_detail_pop .right .field .flex .input_box.search input {
  width: 450px;
}
.type_db .db_detail_pop .right .field .flex .input_box.search .input_search_btn {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.type_db .db_detail_pop .right .field .flex .input_box.search .input_search_btn:hover {
  width: 20px;
  height: 20px;
}
.type_db .db_detail_pop .right .field .flex .input_box label {
  min-width: 80px;
}
.type_db .db_detail_pop .right .field .flex .select_box {
  margin-top: 10px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_db .db_detail_pop .right .field .flex .select_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.type_db .db_detail_pop .right .field .flex .select_box select {
  width: 142px;
  height: 28px;
  padding: 0 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  font-size: 14px;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_db .db_detail_pop .right .field .flex .select_box select::-webkit-input-placeholder {
  color: #6c757d;
}
.type_db .db_detail_pop .right .field .flex .select_box select::-moz-placeholder {
  color: #6c757d;
}
.type_db .db_detail_pop .right .field .flex .select_box select:-ms-input-placeholder {
  color: #6c757d;
}
.type_db .db_detail_pop .right .field .flex .select_box select::-ms-input-placeholder {
  color: #6c757d;
}
.type_db .db_detail_pop .right .field .flex .select_box select::placeholder {
  color: #6c757d;
}
.type_db .db_detail_pop .right .field .flex .select_box select:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.type_db .db_detail_pop .right .field .flex .select_box select:disabled {
  background: #e9ecef;
  cursor: default;
}
.type_db .db_detail_pop .right .field .flex .select_box label {
  min-width: 80px;
}
.type_db .db_detail_pop .right .field .flex .select_box select + select {
  margin-left: 12px;
}
.type_db .db_detail_pop .right .field .flex .text_box {
  margin-top: 10px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.type_db .db_detail_pop .right .field .flex .text_box label {
  width: 100%;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 4px 0 0;
}
.type_db .db_detail_pop .right .field .flex .text_box textarea {
  resize: none;
  width: 100%;
  height: 80px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 0 4px 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_db .db_detail_pop .right .field .flex .text_box textarea::-webkit-input-placeholder {
  color: #6c757d;
}
.type_db .db_detail_pop .right .field .flex .text_box textarea::-moz-placeholder {
  color: #6c757d;
}
.type_db .db_detail_pop .right .field .flex .text_box textarea:-ms-input-placeholder {
  color: #6c757d;
}
.type_db .db_detail_pop .right .field .flex .text_box textarea::-ms-input-placeholder {
  color: #6c757d;
}
.type_db .db_detail_pop .right .field .flex .text_box textarea::placeholder {
  color: #6c757d;
}
.type_db .db_detail_pop .right .field .flex .text_box textarea:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.type_db .db_detail_pop .right .field .flex .text_box textarea:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.type_db .db_detail_pop .right .field .flex .text_box textarea:disabled, .type_db .db_detail_pop .right .field .flex .text_box textarea:read-only {
  background: #e9ecef;
  cursor: default;
}
.type_db .modal_footer {
  padding: 10px 20px !important;
}

.type_history {
  max-width: 90% !important;
}
.type_history .history_detail_pop {
  position: relative;
  width: 100%;
  height: 600px;
}
.type_history .history_detail_pop .tab_section {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.type_history .history_detail_pop .tab_section .tab {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 6px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  top: 1px;
}
.type_history .history_detail_pop .tab_section .tab li {
  border-radius: 4px 4px 0 0;
  background: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 500;
  color: #777777;
  font-size: 15px;
  text-align: center;
  cursor: pointer;
  border: 1px solid #dce7f1;
  border-bottom: none;
  -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.type_history .history_detail_pop .tab_section .tab li.active {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #435ebe;
  border: 1px solid #435ebe;
  border-bottom: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  z-index: 1;
}
.type_history .history_detail_pop .tab_section .tab li:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  border-bottom: none;
}
.type_history .history_detail_pop .tab_section .tab_box {
  display: none;
  position: relative;
  background: #ffffff;
  border: 1px solid #dce7f1;
  border-top: 1px solid #435ebe;
  width: 100%;
  padding: 16px;
  border-radius: 0 0 5px 5px;
  -webkit-box-shadow: rgba(99, 99, 99, 0.15) 0px 1px 8px 0px;
          box-shadow: rgba(99, 99, 99, 0.15) 0px 1px 8px 0px;
}
.type_history .history_detail_pop .tab_section .tab_box.show {
  display: block;
}
.type_history .history_detail_pop .tab_section .tab li {
  padding: 0 30px;
  height: 38px;
  line-height: 38px;
}
.type_history .history_detail_pop .tab_section .tab_box {
  border: none;
  border-top: 1px solid #dce7f1;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  padding: 12px 0 0;
  height: 100%;
  max-height: calc(100% - 38px);
}
.type_history .history_detail_pop .tab_section .tab_box .tab_content {
  width: 100%;
  height: 100%;
}
.type_history .history_detail_pop .tab_section .table_box {
  height: 100%;
  overflow-y: auto;
}
.type_history .history_detail_pop .tab_section .table_box::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.type_history .history_detail_pop .tab_section .table_box::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.type_history .history_detail_pop .tab_section .table_box::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.type_history .history_detail_pop .tab_section .table_box::-webkit-scrollbar-track {
  background: #ffffff;
}
.type_history .history_detail_pop .tab_section .table_box::-webkit-scrollbar-button {
  display: none;
}
.type_history .history_detail_pop .tab_section .table_box.memo_table {
  height: calc(100% - 40px);
}
.type_history .history_detail_pop .tab_section .table_box.memo_table.long {
  height: calc(100% - 80px);
}
.type_history .history_detail_pop .tab_section .table_box.xscroll table {
  width: 100%;
  table-layout: auto;
}
.type_history .history_detail_pop .tab_section .table_box.xscroll table td {
  min-width: 100px;
}
.type_history .history_detail_pop .tab_section .table_box.xscroll table td.long {
  min-width: 300px;
}
.type_history .history_detail_pop .tab_section .table_box.xscroll table td .listen_btn {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  color: #222222;
  border-bottom: 1px solid #222222;
  padding: 0 2px;
}
.type_history .history_detail_pop .tab_section .table_box.xscroll table td .listen_btn:hover {
  color: #435ebe;
  border-bottom: 1px solid #435ebe;
}
.type_history .history_detail_pop .tab_section .table_box.noscroll {
  overflow-y: hidden;
  height: calc(100% - 50px);
}
.type_history .history_detail_pop .tab_section .table_box table {
  width: 100%;
  table-layout: fixed;
}
.type_history .history_detail_pop .tab_section .table_box table thead th {
  position: relative;
  vertical-align: middle;
  background: #435ebe;
  border: none;
  padding: 6px 0;
  color: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 14px;
}
.type_history .history_detail_pop .tab_section .table_box table thead th.fixed {
  position: sticky;
  top: 0;
  z-index: 1;
  border: 0;
}
.type_history .history_detail_pop .tab_section .table_box table thead th.fixed::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  display: table-column-group;
  width: -webkit-fill-available;
  height: 100%;
  border-bottom: 1px solid #dce7f1;
  z-index: 1;
}
.type_history .history_detail_pop .tab_section .table_box table thead th .checkbox {
  z-index: 100;
}
.type_history .history_detail_pop .tab_section .table_box table tbody td {
  position: relative;
  vertical-align: middle;
  background: #ffffff;
  border-bottom: 1px solid #dce7f1;
  padding: 8px 0;
  color: #222222;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  word-break: keep-all;
}
.type_history .history_detail_pop .tab_section .text_box {
  margin-top: 10px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_history .history_detail_pop .tab_section .text_box textarea {
  resize: none;
  padding: 0 10px 10px 10px;
  width: calc(100% - 100px);
  height: 28px;
  outline: none;
  border: 0;
  border-bottom: 1px solid #aaa;
  background: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_history .history_detail_pop .tab_section .text_box textarea::-webkit-input-placeholder {
  color: #6c757d;
}
.type_history .history_detail_pop .tab_section .text_box textarea::-moz-placeholder {
  color: #6c757d;
}
.type_history .history_detail_pop .tab_section .text_box textarea:-ms-input-placeholder {
  color: #6c757d;
}
.type_history .history_detail_pop .tab_section .text_box textarea::-ms-input-placeholder {
  color: #6c757d;
}
.type_history .history_detail_pop .tab_section .text_box textarea::placeholder {
  color: #6c757d;
}
.type_history .history_detail_pop .tab_section .text_box textarea:focus {
  border-bottom: 1px solid #435ebe;
  outline: none;
}
.type_history .history_detail_pop .tab_section .text_box textarea:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.type_history .history_detail_pop .tab_section .text_box textarea:disabled, .type_history .history_detail_pop .tab_section .text_box textarea:read-only {
  background: #e9ecef;
  cursor: default;
}
.type_history .history_detail_pop .tab_section .text_box button {
  height: 28px;
  font-size: 14px;
  width: 70px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_history .history_detail_pop .tab_section .text_box button:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.type_history .history_detail_pop .tab_section .text_box button:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.type_history .history_detail_pop .tab_section .text_box button.gray {
  background: #999999;
  color: #ffffff;
}
.type_history .history_detail_pop .tab_section .text_box button.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.type_history .history_detail_pop .tab_section .text_box button.gray:disabled {
  pointer-events: none;
}
.type_history .history_detail_pop .tab_section .text_box button.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.type_history .history_detail_pop .tab_section .text_box button.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.type_history .history_detail_pop .tab_section .text_box button.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.type_history .history_detail_pop .tab_section .text_box button.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_history .history_detail_pop .tab_section .text_box button.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.type_history .history_detail_pop .tab_section .text_box button.excel_btn:hover::before {
  background-color: #1d6f42;
}
.type_history .history_detail_pop .tab_section .text_box.long textarea {
  height: 56px;
  border: 1px solid #dce7f1;
  border-radius: 4px;
  padding: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.type_history .history_detail_pop .tab_section .text_box.long textarea:focus {
  border: 1px solid #435ebe;
}
.type_history .history_detail_pop .tab_section .transfer_history {
  height: 100%;
  overflow-y: auto;
}
.type_history .history_detail_pop .tab_section .transfer_history::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.type_history .history_detail_pop .tab_section .transfer_history::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.type_history .history_detail_pop .tab_section .transfer_history::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.type_history .history_detail_pop .tab_section .transfer_history::-webkit-scrollbar-track {
  background: #ffffff;
}
.type_history .history_detail_pop .tab_section .transfer_history::-webkit-scrollbar-button {
  display: none;
}
.type_history .history_detail_pop .tab_section .transfer_history table {
  width: 100%;
  table-layout: fixed;
  border: 1px solid #aaa;
}
.type_history .history_detail_pop .tab_section .transfer_history table tbody th {
  vertical-align: middle;
  background: #435ebe;
  color: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  text-align: center;
  padding: 4px;
  border: 1px solid #435ebe;
  width: 60px;
}
.type_history .history_detail_pop .tab_section .transfer_history table tbody td {
  vertical-align: middle;
  background: #ffffff;
  color: #222222;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  text-align: center;
  padding: 4px 0;
  border: 1px solid #aaa;
  word-break: keep-all;
}
.type_history .history_detail_pop .tab_section .transfer_history table + table {
  margin-top: 12px;
}
.type_history .history_detail_pop .tab_section .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 12px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_history .history_detail_pop .tab_section .flex .input_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_history .history_detail_pop .tab_section .flex .input_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.type_history .history_detail_pop .tab_section .flex .input_box input {
  width: 200px;
  height: 28px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_history .history_detail_pop .tab_section .flex .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.type_history .history_detail_pop .tab_section .flex .input_box input::-moz-placeholder {
  color: #6c757d;
}
.type_history .history_detail_pop .tab_section .flex .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.type_history .history_detail_pop .tab_section .flex .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.type_history .history_detail_pop .tab_section .flex .input_box input::placeholder {
  color: #6c757d;
}
.type_history .history_detail_pop .tab_section .flex .input_box input:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.type_history .history_detail_pop .tab_section .flex .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.type_history .history_detail_pop .tab_section .flex .input_box input:disabled, .type_history .history_detail_pop .tab_section .flex .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.type_history .history_detail_pop .tab_section .flex .input_box.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_history .history_detail_pop .tab_section .flex .input_box.date .calendar {
  position: relative;
}
.type_history .history_detail_pop .tab_section .flex .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_calendar.svg");
          mask-image: url("/assets/img/icon/ico_calendar.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.type_history .history_detail_pop .tab_section .flex .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.type_history .history_detail_pop .tab_section .flex .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.type_history .history_detail_pop .tab_section .flex .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.type_history .history_detail_pop .tab_section .flex .input_box.search input {
  width: 450px;
}
.type_history .history_detail_pop .tab_section .flex .input_box.search .input_search_btn {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.type_history .history_detail_pop .tab_section .flex .input_box.search .input_search_btn:hover {
  width: 20px;
  height: 20px;
}
.type_history .history_detail_pop .tab_section .flex .input_box label {
  min-width: 80px;
}
.type_history .history_detail_pop .tab_section .flex .select_box {
  margin-top: 10px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_history .history_detail_pop .tab_section .flex .select_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.type_history .history_detail_pop .tab_section .flex .select_box select {
  width: 142px;
  height: 28px;
  padding: 0 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  font-size: 14px;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_history .history_detail_pop .tab_section .flex .select_box select::-webkit-input-placeholder {
  color: #6c757d;
}
.type_history .history_detail_pop .tab_section .flex .select_box select::-moz-placeholder {
  color: #6c757d;
}
.type_history .history_detail_pop .tab_section .flex .select_box select:-ms-input-placeholder {
  color: #6c757d;
}
.type_history .history_detail_pop .tab_section .flex .select_box select::-ms-input-placeholder {
  color: #6c757d;
}
.type_history .history_detail_pop .tab_section .flex .select_box select::placeholder {
  color: #6c757d;
}
.type_history .history_detail_pop .tab_section .flex .select_box select:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.type_history .history_detail_pop .tab_section .flex .select_box select:disabled {
  background: #e9ecef;
  cursor: default;
}
.type_history .history_detail_pop .tab_section .flex .select_box label {
  min-width: 80px;
}
.type_history .history_detail_pop .tab_section .flex .select_box select + select {
  margin-left: 12px;
}
.type_history .history_detail_pop .tab_section .flex .text_box {
  margin-top: 10px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.type_history .history_detail_pop .tab_section .flex .text_box label {
  width: 100%;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 4px 0 0;
}
.type_history .history_detail_pop .tab_section .flex .text_box textarea {
  resize: none;
  width: 100%;
  height: 80px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 0 4px 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_history .history_detail_pop .tab_section .flex .text_box textarea::-webkit-input-placeholder {
  color: #6c757d;
}
.type_history .history_detail_pop .tab_section .flex .text_box textarea::-moz-placeholder {
  color: #6c757d;
}
.type_history .history_detail_pop .tab_section .flex .text_box textarea:-ms-input-placeholder {
  color: #6c757d;
}
.type_history .history_detail_pop .tab_section .flex .text_box textarea::-ms-input-placeholder {
  color: #6c757d;
}
.type_history .history_detail_pop .tab_section .flex .text_box textarea::placeholder {
  color: #6c757d;
}
.type_history .history_detail_pop .tab_section .flex .text_box textarea:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.type_history .history_detail_pop .tab_section .flex .text_box textarea:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.type_history .history_detail_pop .tab_section .flex .text_box textarea:disabled, .type_history .history_detail_pop .tab_section .flex .text_box textarea:read-only {
  background: #e9ecef;
  cursor: default;
}
.type_history .history_detail_pop .tab_section .file_upload_box {
  margin-top: 20px;
  position: relative;
}
.type_history .history_detail_pop .tab_section .file_upload_box .file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_history .history_detail_pop .tab_section .file_upload_box .file label {
  cursor: pointer;
  display: block;
  width: 100px;
  height: 32px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 32px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 0 4px 4px 0;
}
.type_history .history_detail_pop .tab_section .file_upload_box .file label::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_file.svg");
          mask-image: url("/assets/img/icon/ico_file.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 4px;
}
.type_history .history_detail_pop .tab_section .file_upload_box .file input[type=text] {
  width: 500px;
  height: 32px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  border-radius: 4px 0 0 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_history .history_detail_pop .tab_section .file_upload_box .file input[type=text]::-webkit-input-placeholder {
  color: #6c757d;
}
.type_history .history_detail_pop .tab_section .file_upload_box .file input[type=text]::-moz-placeholder {
  color: #6c757d;
}
.type_history .history_detail_pop .tab_section .file_upload_box .file input[type=text]:-ms-input-placeholder {
  color: #6c757d;
}
.type_history .history_detail_pop .tab_section .file_upload_box .file input[type=text]::-ms-input-placeholder {
  color: #6c757d;
}
.type_history .history_detail_pop .tab_section .file_upload_box .file input[type=text]::placeholder {
  color: #6c757d;
}
.type_history .history_detail_pop .tab_section .file_upload_box .file input[type=text]:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.type_history .history_detail_pop .tab_section .file_upload_box .file input[type=text]:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.type_history .history_detail_pop .tab_section .file_upload_box .file input[type=text]:disabled, .type_history .history_detail_pop .tab_section .file_upload_box .file input[type=text]:read-only {
  background: #e9ecef;
  cursor: default;
}
.type_history .history_detail_pop .tab_section .file_upload_box .file input[type=file] {
  display: none;
}
.type_history .history_detail_pop .tab_section .file_upload_box .file .upload_btn {
  height: 32px;
  font-size: 14px;
  width: 100px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
  margin-left: 20px;
}
.type_history .history_detail_pop .tab_section .file_upload_box .file .upload_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.type_history .history_detail_pop .tab_section .file_upload_box .file .upload_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.type_history .history_detail_pop .tab_section .file_upload_box .file .upload_btn.gray {
  background: #999999;
  color: #ffffff;
}
.type_history .history_detail_pop .tab_section .file_upload_box .file .upload_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.type_history .history_detail_pop .tab_section .file_upload_box .file .upload_btn.gray:disabled {
  pointer-events: none;
}
.type_history .history_detail_pop .tab_section .file_upload_box .file .upload_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.type_history .history_detail_pop .tab_section .file_upload_box .file .upload_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.type_history .history_detail_pop .tab_section .file_upload_box .file .upload_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.type_history .history_detail_pop .tab_section .file_upload_box .file .upload_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_history .history_detail_pop .tab_section .file_upload_box .file .upload_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.type_history .history_detail_pop .tab_section .file_upload_box .file .upload_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.type_history .history_detail_pop .tab_section .file_upload_box .lable {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #435ebe;
  font-size: 15px;
  margin-bottom: 6px;
}
.type_history .history_detail_pop .tab_section .file_box {
  width: 100%;
  height: calc(100% - 73px);
  overflow-y: auto;
}
.type_history .history_detail_pop .tab_section .file_box::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.type_history .history_detail_pop .tab_section .file_box::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.type_history .history_detail_pop .tab_section .file_box::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.type_history .history_detail_pop .tab_section .file_box::-webkit-scrollbar-track {
  background: #ffffff;
}
.type_history .history_detail_pop .tab_section .file_box::-webkit-scrollbar-button {
  display: none;
}
.type_history .history_detail_pop .tab_section .file_box table {
  width: 100%;
  table-layout: fixed;
}
.type_history .history_detail_pop .tab_section .file_box table th {
  position: relative;
  padding: 6px 0;
  font-family: "Pretendard Variable";
  font-weight: 500;
  color: #222222;
  font-size: 14px;
  vertical-align: middle;
  background: #435ebe;
  color: #ffffff;
}
.type_history .history_detail_pop .tab_section .file_box table th:first-child {
  width: 40px;
  margin: 0 auto;
  padding: 0 10px;
}
.type_history .history_detail_pop .tab_section .file_box table th:last-child {
  width: 120px;
  margin: 0 auto;
}
.type_history .history_detail_pop .tab_section .file_box table th .file_delete_btn {
  font-family: "Pretendard Variable";
  font-weight: 500;
  color: #ffffff;
  font-size: 14px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.type_history .history_detail_pop .tab_section .file_box table th .file_delete_btn:hover {
  text-decoration: underline;
}
.type_history .history_detail_pop .tab_section .file_box table th .file_save_btn {
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
}
.type_history .history_detail_pop .tab_section .file_box table th .file_save_btn:hover {
  text-decoration: underline;
}
.type_history .history_detail_pop .tab_section .file_box table th .file_save_btn:hover::before {
  background-color: #222222;
}
.type_history .history_detail_pop .tab_section .file_box table th .file_save_btn::before {
  margin-left: 10px;
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_download.svg");
          mask-image: url("/assets/img/icon/ico_download.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 14px;
  margin-right: 2px;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.type_history .history_detail_pop .tab_section .file_box table td {
  padding: 4px 0;
  font-family: "Pretendard Variable";
  font-weight: 500;
  color: #222222;
  font-size: 14px;
  vertical-align: middle;
  border-bottom: 1px solid #dce7f1;
}
.type_history .history_detail_pop .tab_section .file_box table td:first-child {
  width: 40px;
  margin: 0 auto;
  text-align: center;
  padding: 0 10px;
}
.type_history .history_detail_pop .tab_section .file_box table td.file_name {
  position: relative;
  padding: 0 0 0 20px;
  max-width: calc(100% - 40px - 120px);
}
.type_history .history_detail_pop .tab_section .file_box table td.file_name p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: "Pretendard Variable";
  font-weight: 500;
  color: #222222;
  font-size: 15px;
}
.type_history .history_detail_pop .tab_section .file_box table td:last-child {
  width: 120px;
  margin: 0 auto;
  text-align: center;
}
.type_history .history_detail_pop .tab_section .file_box table td .file_delete_btn {
  height: 28px;
  font-size: 14px;
  width: 60px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  border: 1px solid #dc3545 !important;
  background: #ffffff;
  color: #dc3545;
  font-size: 14px;
}
.type_history .history_detail_pop .tab_section .file_box table td .file_delete_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.type_history .history_detail_pop .tab_section .file_box table td .file_delete_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.type_history .history_detail_pop .tab_section .file_box table td .file_delete_btn.gray {
  background: #999999;
  color: #ffffff;
}
.type_history .history_detail_pop .tab_section .file_box table td .file_delete_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.type_history .history_detail_pop .tab_section .file_box table td .file_delete_btn.gray:disabled {
  pointer-events: none;
}
.type_history .history_detail_pop .tab_section .file_box table td .file_delete_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.type_history .history_detail_pop .tab_section .file_box table td .file_delete_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.type_history .history_detail_pop .tab_section .file_box table td .file_delete_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.type_history .history_detail_pop .tab_section .file_box table td .file_delete_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_history .history_detail_pop .tab_section .file_box table td .file_delete_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.type_history .history_detail_pop .tab_section .file_box table td .file_delete_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.type_history .history_detail_pop .tab_section .file_box table td .file_delete_btn::before {
  content: "";
  display: inline-block;
  background-color: #dc3545;
  -webkit-mask-image: url("/assets/img/icon/ico_delete.svg");
          mask-image: url("/assets/img/icon/ico_delete.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 14px;
  margin-right: 4px;
  vertical-align: middle;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_history .history_detail_pop .tab_section .file_box table td .file_delete_btn:hover {
  background: #dc3545;
  color: #ffffff;
}
.type_history .history_detail_pop .tab_section .file_box table td .file_delete_btn:hover::before {
  background-color: #ffffff;
}
.type_history .history_detail_pop .tab_section .file_box table .checkbox label::before {
  border-width: 2px;
  width: 16px;
  height: 16px;
}

.type_send .modal_body {
  height: 600px;
  overflow: hidden;
}
.type_send .send_pop {
  width: 100%;
  height: 100%;
}
.type_send .send_pop .send_section {
  position: relative;
  width: 100%;
}
.type_send .send_pop .send_section .send_box .select_box {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_send .send_pop .send_section .send_box .select_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.type_send .send_pop .send_section .send_box .select_box select {
  width: 200px;
  height: 28px;
  padding: 0 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  font-size: 14px;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_send .send_pop .send_section .send_box .select_box select::-webkit-input-placeholder {
  color: #6c757d;
}
.type_send .send_pop .send_section .send_box .select_box select::-moz-placeholder {
  color: #6c757d;
}
.type_send .send_pop .send_section .send_box .select_box select:-ms-input-placeholder {
  color: #6c757d;
}
.type_send .send_pop .send_section .send_box .select_box select::-ms-input-placeholder {
  color: #6c757d;
}
.type_send .send_pop .send_section .send_box .select_box select::placeholder {
  color: #6c757d;
}
.type_send .send_pop .send_section .send_box .select_box select:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.type_send .send_pop .send_section .send_box .select_box select:disabled {
  background: #e9ecef;
  cursor: default;
}
.type_send .send_pop .send_section .send_box .select_box label {
  min-width: 80px;
}
.type_send .send_pop .send_section .send_box .input_box {
  margin-top: 16px;
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_send .send_pop .send_section .send_box .input_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.type_send .send_pop .send_section .send_box .input_box input {
  width: 100%;
  height: 28px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_send .send_pop .send_section .send_box .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.type_send .send_pop .send_section .send_box .input_box input::-moz-placeholder {
  color: #6c757d;
}
.type_send .send_pop .send_section .send_box .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.type_send .send_pop .send_section .send_box .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.type_send .send_pop .send_section .send_box .input_box input::placeholder {
  color: #6c757d;
}
.type_send .send_pop .send_section .send_box .input_box input:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.type_send .send_pop .send_section .send_box .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.type_send .send_pop .send_section .send_box .input_box input:disabled, .type_send .send_pop .send_section .send_box .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.type_send .send_pop .send_section .send_box .input_box.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_send .send_pop .send_section .send_box .input_box.date .calendar {
  position: relative;
}
.type_send .send_pop .send_section .send_box .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_calendar.svg");
          mask-image: url("/assets/img/icon/ico_calendar.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.type_send .send_pop .send_section .send_box .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.type_send .send_pop .send_section .send_box .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.type_send .send_pop .send_section .send_box .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.type_send .send_pop .send_section .send_box .input_box.search input {
  width: 450px;
}
.type_send .send_pop .send_section .send_box .input_box.search .input_search_btn {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.type_send .send_pop .send_section .send_box .input_box.search .input_search_btn:hover {
  width: 20px;
  height: 20px;
}
.type_send .send_pop .send_section .send_box .input_box label {
  min-width: 80px;
}
.type_send .send_pop .send_section .send_box .text_box {
  margin-top: 16px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.type_send .send_pop .send_section .send_box .text_box label {
  width: 100%;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 4px 0 0;
}
.type_send .send_pop .send_section .send_box .text_box textarea {
  resize: none;
  width: 100%;
  height: 410px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 0 4px 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_send .send_pop .send_section .send_box .text_box textarea::-webkit-input-placeholder {
  color: #6c757d;
}
.type_send .send_pop .send_section .send_box .text_box textarea::-moz-placeholder {
  color: #6c757d;
}
.type_send .send_pop .send_section .send_box .text_box textarea:-ms-input-placeholder {
  color: #6c757d;
}
.type_send .send_pop .send_section .send_box .text_box textarea::-ms-input-placeholder {
  color: #6c757d;
}
.type_send .send_pop .send_section .send_box .text_box textarea::placeholder {
  color: #6c757d;
}
.type_send .send_pop .send_section .send_box .text_box textarea:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.type_send .send_pop .send_section .send_box .text_box textarea:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.type_send .send_pop .send_section .send_box .text_box textarea:disabled, .type_send .send_pop .send_section .send_box .text_box textarea:read-only {
  background: #e9ecef;
  cursor: default;
}
.type_send .send_pop .send_section .send_box .send_btn {
  position: absolute;
  right: 0;
  bottom: -42px;
  height: 30px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_send .send_pop .send_section .send_box .send_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.type_send .send_pop .send_section .send_box .send_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.type_send .send_pop .send_section .send_box .send_btn.gray {
  background: #999999;
  color: #ffffff;
}
.type_send .send_pop .send_section .send_box .send_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.type_send .send_pop .send_section .send_box .send_btn.gray:disabled {
  pointer-events: none;
}
.type_send .send_pop .send_section .send_box .send_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.type_send .send_pop .send_section .send_box .send_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.type_send .send_pop .send_section .send_box .send_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.type_send .send_pop .send_section .send_box .send_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_send .send_pop .send_section .send_box .send_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.type_send .send_pop .send_section .send_box .send_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.type_send .send_pop .send_section .send_box .send_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_send.svg");
          mask-image: url("/assets/img/icon/ico_send.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_send .send_pop .send_section .send_box .send_btn:hover::before {
  background-color: #435ebe;
}

.db_count_pop {
  position: relative;
  width: 100%;
  height: 600px;
}
.db_count_pop .search_box {
  width: 450px;
  margin-bottom: 16px;
}
.db_count_pop .input_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.db_count_pop .input_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.db_count_pop .input_box input {
  width: 200px;
  height: 28px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.db_count_pop .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.db_count_pop .input_box input::-moz-placeholder {
  color: #6c757d;
}
.db_count_pop .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.db_count_pop .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.db_count_pop .input_box input::placeholder {
  color: #6c757d;
}
.db_count_pop .input_box input:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.db_count_pop .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.db_count_pop .input_box input:disabled, .db_count_pop .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.db_count_pop .input_box.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.db_count_pop .input_box.date .calendar {
  position: relative;
}
.db_count_pop .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_calendar.svg");
          mask-image: url("/assets/img/icon/ico_calendar.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.db_count_pop .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.db_count_pop .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.db_count_pop .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.db_count_pop .input_box.search input {
  width: 450px;
}
.db_count_pop .input_box.search .input_search_btn {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.db_count_pop .input_box.search .input_search_btn:hover {
  width: 20px;
  height: 20px;
}
.db_count_pop .input_box label {
  min-width: 80px;
}
.db_count_pop .input_box .db_count_btn {
  height: 28px;
  font-size: 14px;
  width: 100px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
  margin-left: 10px;
}
.db_count_pop .input_box .db_count_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.db_count_pop .input_box .db_count_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.db_count_pop .input_box .db_count_btn.gray {
  background: #999999;
  color: #ffffff;
}
.db_count_pop .input_box .db_count_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.db_count_pop .input_box .db_count_btn.gray:disabled {
  pointer-events: none;
}
.db_count_pop .input_box .db_count_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.db_count_pop .input_box .db_count_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.db_count_pop .input_box .db_count_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.db_count_pop .input_box .db_count_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.db_count_pop .input_box .db_count_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.db_count_pop .input_box .db_count_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.db_count_pop .input_box .db_count_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_check.svg");
          mask-image: url("/assets/img/icon/ico_check.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 14px;
  height: 14px;
  vertical-align: middle;
  margin-right: 6px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.db_count_pop .input_box .db_count_btn:hover::before {
  background-color: #435ebe;
}
.db_count_pop .input_box .db_save_btn {
  height: 28px;
  font-size: 14px;
  width: 100px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
  margin-left: 10px;
}
.db_count_pop .input_box .db_save_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.db_count_pop .input_box .db_save_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.db_count_pop .input_box .db_save_btn.gray {
  background: #999999;
  color: #ffffff;
}
.db_count_pop .input_box .db_save_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.db_count_pop .input_box .db_save_btn.gray:disabled {
  pointer-events: none;
}
.db_count_pop .input_box .db_save_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.db_count_pop .input_box .db_save_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.db_count_pop .input_box .db_save_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.db_count_pop .input_box .db_save_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.db_count_pop .input_box .db_save_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.db_count_pop .input_box .db_save_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.db_count_pop .table_box {
  margin-top: 20px;
  max-height: 550px;
  position: relative;
  overflow-x: auto;
  overflow-y: auto;
}
.db_count_pop .table_box::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.db_count_pop .table_box::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.db_count_pop .table_box::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.db_count_pop .table_box::-webkit-scrollbar-track {
  background: #ffffff;
}
.db_count_pop .table_box::-webkit-scrollbar-button {
  display: none;
}
.db_count_pop .table_box table {
  width: 100%;
  table-layout: fixed;
  min-width: 1500px;
}
.db_count_pop .table_box table thead th {
  position: relative;
  vertical-align: middle;
  background: #435ebe;
  border: none;
  padding: 6px 0;
  color: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 14px;
}
.db_count_pop .table_box table thead th.fixed {
  position: sticky;
  top: 0;
  z-index: 1;
  border: 0;
}
.db_count_pop .table_box table thead th.fixed::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  display: table-column-group;
  width: -webkit-fill-available;
  height: 100%;
  border-bottom: 1px solid #dce7f1;
  z-index: 1;
}
.db_count_pop .table_box table thead th .checkbox {
  z-index: 100;
}
.db_count_pop .table_box table tbody tr {
  cursor: pointer;
}
.db_count_pop .table_box table tbody tr:hover td {
  background: rgba(124, 141, 181, 0.2);
}
.db_count_pop .table_box table tbody td {
  position: relative;
  vertical-align: middle;
  background: #ffffff;
  border-bottom: 1px solid #dce7f1;
  padding: 8px 0;
  color: #222222;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.db_count_pop .table_box table tbody td.overlap:hover .memo_tooltip {
  visibility: visible;
  opacity: 1;
  z-index: 10;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  height: auto;
}
.db_count_pop .table_box table tbody td.overlap .memo {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 4px;
}
.db_count_pop .table_box table tbody td.overlap .memo_tooltip {
  position: absolute;
  top: -25px;
  left: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  padding: 10px;
  color: white;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  text-align: left;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.9);
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  height: 0;
  overflow: hidden;
}
.db_count_pop .table_box table tbody .ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 4px;
}
.db_count_pop .table_box table .checkbox {
  width: 40px;
}
.db_count_pop .table_box table .checkbox label::before {
  border-width: 2px;
  width: 16px;
  height: 16px;
  border: 1px solid #e1e3ea;
}
.db_count_pop .table_box table .checkbox label::after {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
}
.db_count_pop .table_box.h500 {
  height: 500px;
}
.db_count_pop .table_box table {
  min-width: 600px;
}
.db_count_pop .flex {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.db_count_pop .flex .checkbox label {
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 5px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.db_count_pop table tr td .number {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.db_count_pop table tr td .number label {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #435ebe;
}
.db_count_pop table tr td .number input {
  width: 90%;
  height: 28px;
  border-radius: 4px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.db_count_pop table tr td .number input::-webkit-input-placeholder {
  color: #6c757d;
}
.db_count_pop table tr td .number input::-moz-placeholder {
  color: #6c757d;
}
.db_count_pop table tr td .number input:-ms-input-placeholder {
  color: #6c757d;
}
.db_count_pop table tr td .number input::-ms-input-placeholder {
  color: #6c757d;
}
.db_count_pop table tr td .number input::placeholder {
  color: #6c757d;
}
.db_count_pop table tr td .number input:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.db_count_pop table tr td .number input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.db_count_pop table tr td .number input:disabled, .db_count_pop table tr td .number input:read-only {
  background: #e9ecef;
  cursor: default;
}
.db_count_pop table tr td .number.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.db_count_pop table tr td .number.date .calendar {
  position: relative;
}
.db_count_pop table tr td .number.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_calendar.svg");
          mask-image: url("/assets/img/icon/ico_calendar.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.db_count_pop table tr td .number.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.db_count_pop table tr td .number.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.db_count_pop table tr td .number.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.db_count_pop table tr td .number.search .input_search_btn {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.db_count_pop table tr td .number.search .input_search_btn:hover {
  width: 20px;
  height: 20px;
}
.db_count_pop table tr td .number input {
  text-align: center;
}

.change_pop .search_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.change_pop .search_box .input_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  max-width: 530px;
}
.change_pop .search_box .input_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.change_pop .search_box .input_box input {
  width: 100%;
  height: 28px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.change_pop .search_box .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.change_pop .search_box .input_box input::-moz-placeholder {
  color: #6c757d;
}
.change_pop .search_box .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.change_pop .search_box .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.change_pop .search_box .input_box input::placeholder {
  color: #6c757d;
}
.change_pop .search_box .input_box input:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.change_pop .search_box .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.change_pop .search_box .input_box input:disabled, .change_pop .search_box .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.change_pop .search_box .input_box.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.change_pop .search_box .input_box.date .calendar {
  position: relative;
}
.change_pop .search_box .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_calendar.svg");
          mask-image: url("/assets/img/icon/ico_calendar.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.change_pop .search_box .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.change_pop .search_box .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.change_pop .search_box .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.change_pop .search_box .input_box.search input {
  width: 450px;
}
.change_pop .search_box .input_box.search .input_search_btn {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.change_pop .search_box .input_box.search .input_search_btn:hover {
  width: 20px;
  height: 20px;
}
.change_pop .search_box .input_box label {
  min-width: 100px;
}
.change_pop .search_box .select_box {
  position: relative;
}
.change_pop .search_box .select_box label {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #435ebe;
}
.change_pop .search_box .select_box select {
  width: 110px;
  height: 28px;
  border-radius: 4px;
  padding: 0px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.change_pop .search_box .select_box select::-webkit-input-placeholder {
  color: #6c757d;
}
.change_pop .search_box .select_box select::-moz-placeholder {
  color: #6c757d;
}
.change_pop .search_box .select_box select:-ms-input-placeholder {
  color: #6c757d;
}
.change_pop .search_box .select_box select::-ms-input-placeholder {
  color: #6c757d;
}
.change_pop .search_box .select_box select::placeholder {
  color: #6c757d;
}
.change_pop .search_box .select_box select:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.change_pop .search_box .select_box select:disabled {
  background: #e9ecef;
  cursor: default;
}
.change_pop .search_box + .search_box {
  margin-top: 10px;
}
.change_pop .table_box {
  margin-bottom: 20px;
  max-height: 350px;
  position: relative;
  overflow-x: auto;
  overflow-y: auto;
}
.change_pop .table_box::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.change_pop .table_box::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.change_pop .table_box::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.change_pop .table_box::-webkit-scrollbar-track {
  background: #ffffff;
}
.change_pop .table_box::-webkit-scrollbar-button {
  display: none;
}
.change_pop .table_box table {
  width: 100%;
  table-layout: fixed;
  min-width: 1500px;
}
.change_pop .table_box table thead th {
  position: relative;
  vertical-align: middle;
  background: #435ebe;
  border: none;
  padding: 6px 0;
  color: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 14px;
}
.change_pop .table_box table thead th.fixed {
  position: sticky;
  top: 0;
  z-index: 1;
  border: 0;
}
.change_pop .table_box table thead th.fixed::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  display: table-column-group;
  width: -webkit-fill-available;
  height: 100%;
  border-bottom: 1px solid #dce7f1;
  z-index: 1;
}
.change_pop .table_box table thead th .checkbox {
  z-index: 100;
}
.change_pop .table_box table tbody tr {
  cursor: pointer;
}
.change_pop .table_box table tbody tr:hover td {
  background: rgba(124, 141, 181, 0.2);
}
.change_pop .table_box table tbody td {
  position: relative;
  vertical-align: middle;
  background: #ffffff;
  border-bottom: 1px solid #dce7f1;
  padding: 8px 0;
  color: #222222;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.change_pop .table_box table tbody td.overlap:hover .memo_tooltip {
  visibility: visible;
  opacity: 1;
  z-index: 10;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  height: auto;
}
.change_pop .table_box table tbody td.overlap .memo {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 4px;
}
.change_pop .table_box table tbody td.overlap .memo_tooltip {
  position: absolute;
  top: -25px;
  left: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  padding: 10px;
  color: white;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  text-align: left;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.9);
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  height: 0;
  overflow: hidden;
}
.change_pop .table_box table tbody .ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 4px;
}
.change_pop .table_box table .checkbox {
  width: 40px;
}
.change_pop .table_box table .checkbox label::before {
  border-width: 2px;
  width: 16px;
  height: 16px;
  border: 1px solid #e1e3ea;
}
.change_pop .table_box table .checkbox label::after {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
}
.change_pop .table_box table {
  min-width: 600px;
}

.type_upload {
  max-width: 500px !important;
}
.type_upload .modal_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_upload .modal_header .form_down_btn {
  height: 28px;
  font-size: 14px;
  width: 120px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background: #1d6f42;
  color: #ffffff;
}
.type_upload .modal_header .form_down_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.type_upload .modal_header .form_down_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.type_upload .modal_header .form_down_btn.gray {
  background: #999999;
  color: #ffffff;
}
.type_upload .modal_header .form_down_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.type_upload .modal_header .form_down_btn.gray:disabled {
  pointer-events: none;
}
.type_upload .modal_header .form_down_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.type_upload .modal_header .form_down_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.type_upload .modal_header .form_down_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.type_upload .modal_header .form_down_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_upload .modal_header .form_down_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.type_upload .modal_header .form_down_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.type_upload .modal_header .form_down_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_upload .modal_header .form_down_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.type_upload .modal_header .form_down_btn:hover::before {
  background-color: #1d6f42;
}
.type_upload .upload_pop .file_upload_box {
  position: relative;
}
.type_upload .upload_pop .file_upload_box .file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_upload .upload_pop .file_upload_box .file label {
  cursor: pointer;
  display: block;
  width: 100px;
  height: 32px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 32px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 0 4px 4px 0;
}
.type_upload .upload_pop .file_upload_box .file label::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_file.svg");
          mask-image: url("/assets/img/icon/ico_file.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 4px;
}
.type_upload .upload_pop .file_upload_box .file input[type=text] {
  width: 100%;
  height: 32px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  border-radius: 4px 0 0 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_upload .upload_pop .file_upload_box .file input[type=text]::-webkit-input-placeholder {
  color: #6c757d;
}
.type_upload .upload_pop .file_upload_box .file input[type=text]::-moz-placeholder {
  color: #6c757d;
}
.type_upload .upload_pop .file_upload_box .file input[type=text]:-ms-input-placeholder {
  color: #6c757d;
}
.type_upload .upload_pop .file_upload_box .file input[type=text]::-ms-input-placeholder {
  color: #6c757d;
}
.type_upload .upload_pop .file_upload_box .file input[type=text]::placeholder {
  color: #6c757d;
}
.type_upload .upload_pop .file_upload_box .file input[type=text]:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.type_upload .upload_pop .file_upload_box .file input[type=text]:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.type_upload .upload_pop .file_upload_box .file input[type=text]:disabled, .type_upload .upload_pop .file_upload_box .file input[type=text]:read-only {
  background: #e9ecef;
  cursor: default;
}
.type_upload .upload_pop .file_upload_box .file input[type=file] {
  display: none;
}
.type_upload .upload_pop .file_upload_box .file .upload_btn {
  height: 32px;
  font-size: 14px;
  width: 100px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
  margin-left: 20px;
}
.type_upload .upload_pop .file_upload_box .file .upload_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.type_upload .upload_pop .file_upload_box .file .upload_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.type_upload .upload_pop .file_upload_box .file .upload_btn.gray {
  background: #999999;
  color: #ffffff;
}
.type_upload .upload_pop .file_upload_box .file .upload_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.type_upload .upload_pop .file_upload_box .file .upload_btn.gray:disabled {
  pointer-events: none;
}
.type_upload .upload_pop .file_upload_box .file .upload_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.type_upload .upload_pop .file_upload_box .file .upload_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.type_upload .upload_pop .file_upload_box .file .upload_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.type_upload .upload_pop .file_upload_box .file .upload_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_upload .upload_pop .file_upload_box .file .upload_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.type_upload .upload_pop .file_upload_box .file .upload_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.type_upload .upload_pop .file_upload_box.hide {
  display: none;
}
.type_upload .upload_pop .file_upload_box label {
  width: 110px !important;
}
.type_upload .upload_pop .file_upload_box button {
  width: 90px !important;
  margin-left: 10px !important;
}

.type_campaign {
  width: 550px !important;
}
.type_campaign .tab_section {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: calc(100vh - 89px);
  overflow: hidden;
}
.type_campaign .tab_section .tab {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 6px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  top: 1px;
}
.type_campaign .tab_section .tab li {
  border-radius: 4px 4px 0 0;
  background: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 500;
  color: #777777;
  font-size: 15px;
  text-align: center;
  cursor: pointer;
  border: 1px solid #dce7f1;
  border-bottom: none;
  -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.type_campaign .tab_section .tab li.active {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #435ebe;
  border: 1px solid #435ebe;
  border-bottom: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  z-index: 1;
}
.type_campaign .tab_section .tab li:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  border-bottom: none;
}
.type_campaign .tab_section .tab_box {
  display: none;
  position: relative;
  background: #ffffff;
  border: 1px solid #dce7f1;
  border-top: 1px solid #435ebe;
  width: 100%;
  padding: 16px;
  border-radius: 0 0 5px 5px;
  -webkit-box-shadow: rgba(99, 99, 99, 0.15) 0px 1px 8px 0px;
          box-shadow: rgba(99, 99, 99, 0.15) 0px 1px 8px 0px;
}
.type_campaign .tab_section .tab_box.show {
  display: block;
}
.type_campaign .tab_section .tab li {
  padding: 0 30px;
  height: 34px;
  line-height: 34px;
}
.type_campaign .tab_section .tab_box {
  border: none;
  border-top: 1px solid #dce7f1;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  padding: 0;
  height: 100%;
  max-height: calc(100% - 34px);
  overflow: hidden;
}
.type_campaign .tab_section .tab_box .tab_content {
  width: 100%;
  height: 100%;
}
.type_campaign .tab_section .tab_box .tab_content.recall .select_box, .type_campaign .tab_section .tab_box .tab_content.distribute .select_box {
  margin-top: 16px;
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_campaign .tab_section .tab_box .tab_content.recall .select_box label, .type_campaign .tab_section .tab_box .tab_content.distribute .select_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.type_campaign .tab_section .tab_box .tab_content.recall .select_box select, .type_campaign .tab_section .tab_box .tab_content.distribute .select_box select {
  width: 200px;
  height: 28px;
  padding: 0 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  font-size: 14px;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_campaign .tab_section .tab_box .tab_content.recall .select_box select::-webkit-input-placeholder, .type_campaign .tab_section .tab_box .tab_content.distribute .select_box select::-webkit-input-placeholder {
  color: #6c757d;
}
.type_campaign .tab_section .tab_box .tab_content.recall .select_box select::-moz-placeholder, .type_campaign .tab_section .tab_box .tab_content.distribute .select_box select::-moz-placeholder {
  color: #6c757d;
}
.type_campaign .tab_section .tab_box .tab_content.recall .select_box select:-ms-input-placeholder, .type_campaign .tab_section .tab_box .tab_content.distribute .select_box select:-ms-input-placeholder {
  color: #6c757d;
}
.type_campaign .tab_section .tab_box .tab_content.recall .select_box select::-ms-input-placeholder, .type_campaign .tab_section .tab_box .tab_content.distribute .select_box select::-ms-input-placeholder {
  color: #6c757d;
}
.type_campaign .tab_section .tab_box .tab_content.recall .select_box select::placeholder, .type_campaign .tab_section .tab_box .tab_content.distribute .select_box select::placeholder {
  color: #6c757d;
}
.type_campaign .tab_section .tab_box .tab_content.recall .select_box select:focus, .type_campaign .tab_section .tab_box .tab_content.distribute .select_box select:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.type_campaign .tab_section .tab_box .tab_content.recall .select_box select:disabled, .type_campaign .tab_section .tab_box .tab_content.distribute .select_box select:disabled {
  background: #e9ecef;
  cursor: default;
}
.type_campaign .tab_section .tab_box .tab_content.recall .select_box label, .type_campaign .tab_section .tab_box .tab_content.distribute .select_box label {
  min-width: 100px;
}
.type_campaign .tab_section .tab_box .tab_content.recall .select_box.date select, .type_campaign .tab_section .tab_box .tab_content.distribute .select_box.date select {
  width: 99px;
}
.type_campaign .tab_section .tab_box .tab_content.recall .input_box, .type_campaign .tab_section .tab_box .tab_content.distribute .input_box {
  margin-top: 16px;
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_campaign .tab_section .tab_box .tab_content.recall .input_box label, .type_campaign .tab_section .tab_box .tab_content.distribute .input_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.type_campaign .tab_section .tab_box .tab_content.recall .input_box input, .type_campaign .tab_section .tab_box .tab_content.distribute .input_box input {
  width: 200px;
  height: 28px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_campaign .tab_section .tab_box .tab_content.recall .input_box input::-webkit-input-placeholder, .type_campaign .tab_section .tab_box .tab_content.distribute .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.type_campaign .tab_section .tab_box .tab_content.recall .input_box input::-moz-placeholder, .type_campaign .tab_section .tab_box .tab_content.distribute .input_box input::-moz-placeholder {
  color: #6c757d;
}
.type_campaign .tab_section .tab_box .tab_content.recall .input_box input:-ms-input-placeholder, .type_campaign .tab_section .tab_box .tab_content.distribute .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.type_campaign .tab_section .tab_box .tab_content.recall .input_box input::-ms-input-placeholder, .type_campaign .tab_section .tab_box .tab_content.distribute .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.type_campaign .tab_section .tab_box .tab_content.recall .input_box input::placeholder, .type_campaign .tab_section .tab_box .tab_content.distribute .input_box input::placeholder {
  color: #6c757d;
}
.type_campaign .tab_section .tab_box .tab_content.recall .input_box input:focus, .type_campaign .tab_section .tab_box .tab_content.distribute .input_box input:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.type_campaign .tab_section .tab_box .tab_content.recall .input_box input:-moz-read-only, .type_campaign .tab_section .tab_box .tab_content.distribute .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.type_campaign .tab_section .tab_box .tab_content.recall .input_box input:disabled, .type_campaign .tab_section .tab_box .tab_content.recall .input_box input:read-only, .type_campaign .tab_section .tab_box .tab_content.distribute .input_box input:disabled, .type_campaign .tab_section .tab_box .tab_content.distribute .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.type_campaign .tab_section .tab_box .tab_content.recall .input_box.date, .type_campaign .tab_section .tab_box .tab_content.distribute .input_box.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_campaign .tab_section .tab_box .tab_content.recall .input_box.date .calendar, .type_campaign .tab_section .tab_box .tab_content.distribute .input_box.date .calendar {
  position: relative;
}
.type_campaign .tab_section .tab_box .tab_content.recall .input_box.date .calendar::before, .type_campaign .tab_section .tab_box .tab_content.distribute .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_calendar.svg");
          mask-image: url("/assets/img/icon/ico_calendar.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.type_campaign .tab_section .tab_box .tab_content.recall .input_box.date .calendar input, .type_campaign .tab_section .tab_box .tab_content.distribute .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.type_campaign .tab_section .tab_box .tab_content.recall .input_box.date .calendar input:-moz-read-only, .type_campaign .tab_section .tab_box .tab_content.distribute .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.type_campaign .tab_section .tab_box .tab_content.recall .input_box.date .calendar input:read-only, .type_campaign .tab_section .tab_box .tab_content.distribute .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.type_campaign .tab_section .tab_box .tab_content.recall .input_box.search input, .type_campaign .tab_section .tab_box .tab_content.distribute .input_box.search input {
  width: 450px;
}
.type_campaign .tab_section .tab_box .tab_content.recall .input_box.search .input_search_btn, .type_campaign .tab_section .tab_box .tab_content.distribute .input_box.search .input_search_btn {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.type_campaign .tab_section .tab_box .tab_content.recall .input_box.search .input_search_btn:hover, .type_campaign .tab_section .tab_box .tab_content.distribute .input_box.search .input_search_btn:hover {
  width: 20px;
  height: 20px;
}
.type_campaign .tab_section .tab_box .tab_content.recall .input_box label, .type_campaign .tab_section .tab_box .tab_content.distribute .input_box label {
  min-width: 100px;
}
.type_campaign .tab_section .tab_box .tab_content.recall .search_box, .type_campaign .tab_section .tab_box .tab_content.distribute .search_box {
  position: relative;
  width: 510px;
}
.type_campaign .tab_section .tab_box .tab_content.recall .search_box input, .type_campaign .tab_section .tab_box .tab_content.distribute .search_box input {
  padding-right: 30px;
}
.type_campaign .tab_section .tab_box .tab_content.recall .time, .type_campaign .tab_section .tab_box .tab_content.distribute .time {
  margin-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 6px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_campaign .tab_section .tab_box .tab_content.recall .time .select_box, .type_campaign .tab_section .tab_box .tab_content.distribute .time .select_box {
  margin-top: 0;
}
.type_campaign .tab_section .tab_box .tab_content.recall .time .select_box select, .type_campaign .tab_section .tab_box .tab_content.distribute .time .select_box select {
  width: 100px;
}
.type_campaign .tab_section .tab_box .tab_content.recall .flex, .type_campaign .tab_section .tab_box .tab_content.distribute .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_campaign .tab_section .tab_box .tab_content.recall .flex .input_box, .type_campaign .tab_section .tab_box .tab_content.distribute .flex .input_box {
  width: calc(50% - 5px);
}
.type_campaign .tab_section .tab_box .tab_content.recall .flex .input_box input, .type_campaign .tab_section .tab_box .tab_content.distribute .flex .input_box input {
  width: 148px;
}
.type_campaign .tab_section .tab_box .tab_content.recall .recall_btn,
.type_campaign .tab_section .tab_box .tab_content.recall .distribute_btn, .type_campaign .tab_section .tab_box .tab_content.distribute .recall_btn,
.type_campaign .tab_section .tab_box .tab_content.distribute .distribute_btn {
  height: 36px;
  font-size: 12px;
  width: 80px;
  border-radius: 8px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 14px;
  margin-top: 16px;
  margin-left: calc(100% - 80px);
}
.type_campaign .tab_section .tab_box .tab_content.recall .recall_btn:hover,
.type_campaign .tab_section .tab_box .tab_content.recall .distribute_btn:hover, .type_campaign .tab_section .tab_box .tab_content.distribute .recall_btn:hover,
.type_campaign .tab_section .tab_box .tab_content.distribute .distribute_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.type_campaign .tab_section .tab_box .tab_content.recall .recall_btn:disabled,
.type_campaign .tab_section .tab_box .tab_content.recall .distribute_btn:disabled, .type_campaign .tab_section .tab_box .tab_content.distribute .recall_btn:disabled,
.type_campaign .tab_section .tab_box .tab_content.distribute .distribute_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.type_campaign .tab_section .tab_box .tab_content.recall .recall_btn.gray,
.type_campaign .tab_section .tab_box .tab_content.recall .distribute_btn.gray, .type_campaign .tab_section .tab_box .tab_content.distribute .recall_btn.gray,
.type_campaign .tab_section .tab_box .tab_content.distribute .distribute_btn.gray {
  background: #999999;
  color: #ffffff;
}
.type_campaign .tab_section .tab_box .tab_content.recall .recall_btn.gray:hover,
.type_campaign .tab_section .tab_box .tab_content.recall .distribute_btn.gray:hover, .type_campaign .tab_section .tab_box .tab_content.distribute .recall_btn.gray:hover,
.type_campaign .tab_section .tab_box .tab_content.distribute .distribute_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.type_campaign .tab_section .tab_box .tab_content.recall .recall_btn.gray:disabled,
.type_campaign .tab_section .tab_box .tab_content.recall .distribute_btn.gray:disabled, .type_campaign .tab_section .tab_box .tab_content.distribute .recall_btn.gray:disabled,
.type_campaign .tab_section .tab_box .tab_content.distribute .distribute_btn.gray:disabled {
  pointer-events: none;
}
.type_campaign .tab_section .tab_box .tab_content.recall .recall_btn.reverse_red,
.type_campaign .tab_section .tab_box .tab_content.recall .distribute_btn.reverse_red, .type_campaign .tab_section .tab_box .tab_content.distribute .recall_btn.reverse_red,
.type_campaign .tab_section .tab_box .tab_content.distribute .distribute_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.type_campaign .tab_section .tab_box .tab_content.recall .recall_btn.reverse_red:hover,
.type_campaign .tab_section .tab_box .tab_content.recall .distribute_btn.reverse_red:hover, .type_campaign .tab_section .tab_box .tab_content.distribute .recall_btn.reverse_red:hover,
.type_campaign .tab_section .tab_box .tab_content.distribute .distribute_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.type_campaign .tab_section .tab_box .tab_content.recall .recall_btn.excel_btn,
.type_campaign .tab_section .tab_box .tab_content.recall .distribute_btn.excel_btn, .type_campaign .tab_section .tab_box .tab_content.distribute .recall_btn.excel_btn,
.type_campaign .tab_section .tab_box .tab_content.distribute .distribute_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.type_campaign .tab_section .tab_box .tab_content.recall .recall_btn.excel_btn::before,
.type_campaign .tab_section .tab_box .tab_content.recall .distribute_btn.excel_btn::before, .type_campaign .tab_section .tab_box .tab_content.distribute .recall_btn.excel_btn::before,
.type_campaign .tab_section .tab_box .tab_content.distribute .distribute_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_campaign .tab_section .tab_box .tab_content.recall .recall_btn.excel_btn:hover,
.type_campaign .tab_section .tab_box .tab_content.recall .distribute_btn.excel_btn:hover, .type_campaign .tab_section .tab_box .tab_content.distribute .recall_btn.excel_btn:hover,
.type_campaign .tab_section .tab_box .tab_content.distribute .distribute_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.type_campaign .tab_section .tab_box .tab_content.recall .recall_btn.excel_btn:hover::before,
.type_campaign .tab_section .tab_box .tab_content.recall .distribute_btn.excel_btn:hover::before, .type_campaign .tab_section .tab_box .tab_content.distribute .recall_btn.excel_btn:hover::before,
.type_campaign .tab_section .tab_box .tab_content.distribute .distribute_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}

.contract_pop .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 12px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.contract_pop .flex + .flex {
  margin-top: 12px;
}
.contract_pop .input_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.contract_pop .input_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.contract_pop .input_box input {
  width: 145px;
  height: 28px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.contract_pop .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.contract_pop .input_box input::-moz-placeholder {
  color: #6c757d;
}
.contract_pop .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.contract_pop .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.contract_pop .input_box input::placeholder {
  color: #6c757d;
}
.contract_pop .input_box input:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.contract_pop .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.contract_pop .input_box input:disabled, .contract_pop .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.contract_pop .input_box.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.contract_pop .input_box.date .calendar {
  position: relative;
}
.contract_pop .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_calendar.svg");
          mask-image: url("/assets/img/icon/ico_calendar.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.contract_pop .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.contract_pop .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.contract_pop .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.contract_pop .input_box.search input {
  width: 450px;
}
.contract_pop .input_box.search .input_search_btn {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.contract_pop .input_box.search .input_search_btn:hover {
  width: 20px;
  height: 20px;
}
.contract_pop .input_box label {
  min-width: 100px;
}
.contract_pop .select_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.contract_pop .select_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.contract_pop .select_box select {
  width: 145px;
  height: 28px;
  padding: 0 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  font-size: 14px;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.contract_pop .select_box select::-webkit-input-placeholder {
  color: #6c757d;
}
.contract_pop .select_box select::-moz-placeholder {
  color: #6c757d;
}
.contract_pop .select_box select:-ms-input-placeholder {
  color: #6c757d;
}
.contract_pop .select_box select::-ms-input-placeholder {
  color: #6c757d;
}
.contract_pop .select_box select::placeholder {
  color: #6c757d;
}
.contract_pop .select_box select:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.contract_pop .select_box select:disabled {
  background: #e9ecef;
  cursor: default;
}
.contract_pop .select_box label {
  min-width: 100px;
}
.contract_pop .date_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.contract_pop .date_box .time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 4px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.contract_pop .date_box .time .select_box {
  position: relative;
}
.contract_pop .date_box .time .select_box label {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #435ebe;
}
.contract_pop .date_box .time .select_box select {
  width: 80px;
  height: 28px;
  border-radius: 4px;
  padding: 0px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.contract_pop .date_box .time .select_box select::-webkit-input-placeholder {
  color: #6c757d;
}
.contract_pop .date_box .time .select_box select::-moz-placeholder {
  color: #6c757d;
}
.contract_pop .date_box .time .select_box select:-ms-input-placeholder {
  color: #6c757d;
}
.contract_pop .date_box .time .select_box select::-ms-input-placeholder {
  color: #6c757d;
}
.contract_pop .date_box .time .select_box select::placeholder {
  color: #6c757d;
}
.contract_pop .date_box .time .select_box select:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.contract_pop .date_box .time .select_box select:disabled {
  background: #e9ecef;
  cursor: default;
}
.contract_pop .text_box {
  margin-top: 12px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.contract_pop .text_box label {
  width: 100%;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 4px 0 0;
}
.contract_pop .text_box textarea {
  resize: none;
  width: 100%;
  height: 220px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 0 4px 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.contract_pop .text_box textarea::-webkit-input-placeholder {
  color: #6c757d;
}
.contract_pop .text_box textarea::-moz-placeholder {
  color: #6c757d;
}
.contract_pop .text_box textarea:-ms-input-placeholder {
  color: #6c757d;
}
.contract_pop .text_box textarea::-ms-input-placeholder {
  color: #6c757d;
}
.contract_pop .text_box textarea::placeholder {
  color: #6c757d;
}
.contract_pop .text_box textarea:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.contract_pop .text_box textarea:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.contract_pop .text_box textarea:disabled, .contract_pop .text_box textarea:read-only {
  background: #e9ecef;
  cursor: default;
}

.page_content.capital {
  position: relative;
  width: 100%;
}
.page_content.capital .crm .crm_status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 16px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.capital .crm .crm_status .box {
  position: relative;
  width: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 4px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}
.page_content.capital .crm .crm_status .box .tit {
  width: 100%;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  background: #444;
  color: #ffffff;
  text-align: center;
  padding: 8px 0;
}
.page_content.capital .crm .crm_status .box .count {
  width: 100%;
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 16px;
  background: #ffffff;
  color: #222222;
  text-align: center;
  padding: 10px 0;
}
.page_content.capital .crm .crm_status .box.call_count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.capital .crm .crm_status .box.call_count div {
  width: 50%;
}
.page_content.capital .crm .crm_status .box.call_count div:first-child .count {
  border-right: 1px solid #e5e7eb;
}
.page_content.capital .crm .crm_status .box.call_status .toggle {
  padding: 4px 0;
}
.page_content.capital .crm .crm_status .box.call_status .toggle input[type=checkbox] + label {
  width: 80px;
}
.page_content.capital .crm .crm_status .box.call_status .toggle input[type=checkbox] + label::before {
  content: "부재";
  font-size: 14px;
  right: 25px !important;
  color: #999;
}
.page_content.capital .crm .crm_status .box.call_status .toggle input[type=checkbox]:checked + label {
  background-color: #444;
}
.page_content.capital .crm .crm_status .box.call_status .toggle input[type=checkbox]:checked + label::before {
  content: "대기";
  font-size: 14px;
  right: 30px !important;
  color: #fff;
}
.page_content.capital .crm .search_section {
  margin-top: 20px;
}
.page_content.capital .crm .search_section .flex {
  position: relative;
}
.page_content.capital .crm .search_section .flex .input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page_content.capital .crm .search_section .flex .btn_box {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.capital .crm .search_section .flex .btn_box .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 12px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.capital .crm .search_section .flex .btn_box .left button {
  height: 28px;
  font-size: 14px;
  width: 100px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background-color: #ffffff;
  border: 1px solid #435ebe;
  color: #435ebe;
}
.page_content.capital .crm .search_section .flex .btn_box .left button:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.page_content.capital .crm .search_section .flex .btn_box .left button:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.page_content.capital .crm .search_section .flex .btn_box .left button.gray {
  background: #999999;
  color: #ffffff;
}
.page_content.capital .crm .search_section .flex .btn_box .left button.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.page_content.capital .crm .search_section .flex .btn_box .left button.gray:disabled {
  pointer-events: none;
}
.page_content.capital .crm .search_section .flex .btn_box .left button.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.page_content.capital .crm .search_section .flex .btn_box .left button.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.page_content.capital .crm .search_section .flex .btn_box .left button.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.page_content.capital .crm .search_section .flex .btn_box .left button.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.capital .crm .search_section .flex .btn_box .left button.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.page_content.capital .crm .search_section .flex .btn_box .left button.excel_btn:hover::before {
  background-color: #1d6f42;
}
.page_content.capital .crm .search_section .flex .btn_box .left button:hover {
  background-color: #435ebe;
  color: #ffffff;
}
.page_content.capital .crm .search_section .flex .btn_box .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.capital .crm .search_section .flex .btn_box .right .reset_btn {
  height: 28px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.capital .crm .search_section .flex .btn_box .right .reset_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.page_content.capital .crm .search_section .flex .btn_box .right .reset_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.page_content.capital .crm .search_section .flex .btn_box .right .reset_btn.gray {
  background: #999999;
  color: #ffffff;
}
.page_content.capital .crm .search_section .flex .btn_box .right .reset_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.page_content.capital .crm .search_section .flex .btn_box .right .reset_btn.gray:disabled {
  pointer-events: none;
}
.page_content.capital .crm .search_section .flex .btn_box .right .reset_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.page_content.capital .crm .search_section .flex .btn_box .right .reset_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.page_content.capital .crm .search_section .flex .btn_box .right .reset_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.page_content.capital .crm .search_section .flex .btn_box .right .reset_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.capital .crm .search_section .flex .btn_box .right .reset_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.page_content.capital .crm .search_section .flex .btn_box .right .reset_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.page_content.capital .crm .search_section .flex .btn_box .right .search_btn {
  height: 28px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.capital .crm .search_section .flex .btn_box .right .search_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.page_content.capital .crm .search_section .flex .btn_box .right .search_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.page_content.capital .crm .search_section .flex .btn_box .right .search_btn.gray {
  background: #999999;
  color: #ffffff;
}
.page_content.capital .crm .search_section .flex .btn_box .right .search_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.page_content.capital .crm .search_section .flex .btn_box .right .search_btn.gray:disabled {
  pointer-events: none;
}
.page_content.capital .crm .search_section .flex .btn_box .right .search_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.page_content.capital .crm .search_section .flex .btn_box .right .search_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.page_content.capital .crm .search_section .flex .btn_box .right .search_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.page_content.capital .crm .search_section .flex .btn_box .right .search_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.capital .crm .search_section .flex .btn_box .right .search_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.page_content.capital .crm .search_section .flex .btn_box .right .search_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.page_content.capital .crm .search_section .input_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.capital .crm .search_section .input_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.page_content.capital .crm .search_section .input_box input {
  width: 142px;
  height: 28px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.capital .crm .search_section .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.page_content.capital .crm .search_section .input_box input::-moz-placeholder {
  color: #6c757d;
}
.page_content.capital .crm .search_section .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.page_content.capital .crm .search_section .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.page_content.capital .crm .search_section .input_box input::placeholder {
  color: #6c757d;
}
.page_content.capital .crm .search_section .input_box input:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.page_content.capital .crm .search_section .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.page_content.capital .crm .search_section .input_box input:disabled, .page_content.capital .crm .search_section .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.page_content.capital .crm .search_section .input_box.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.capital .crm .search_section .input_box.date .calendar {
  position: relative;
}
.page_content.capital .crm .search_section .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_calendar.svg");
          mask-image: url("/assets/img/icon/ico_calendar.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.page_content.capital .crm .search_section .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.page_content.capital .crm .search_section .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.page_content.capital .crm .search_section .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.page_content.capital .crm .search_section .input_box.search input {
  width: 450px;
}
.page_content.capital .crm .search_section .input_box.search .input_search_btn {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.page_content.capital .crm .search_section .input_box.search .input_search_btn:hover {
  width: 20px;
  height: 20px;
}
.page_content.capital .crm .search_section .input_box label {
  min-width: 80px;
}
.page_content.capital .crm .search_section .input_box.date span {
  display: block;
  margin: 0 10px;
}
.page_content.capital .crm .search_section .select_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.capital .crm .search_section .select_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.page_content.capital .crm .search_section .select_box select {
  width: 142px;
  height: 28px;
  padding: 0 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  font-size: 14px;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.capital .crm .search_section .select_box select::-webkit-input-placeholder {
  color: #6c757d;
}
.page_content.capital .crm .search_section .select_box select::-moz-placeholder {
  color: #6c757d;
}
.page_content.capital .crm .search_section .select_box select:-ms-input-placeholder {
  color: #6c757d;
}
.page_content.capital .crm .search_section .select_box select::-ms-input-placeholder {
  color: #6c757d;
}
.page_content.capital .crm .search_section .select_box select::placeholder {
  color: #6c757d;
}
.page_content.capital .crm .search_section .select_box select:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.page_content.capital .crm .search_section .select_box select:disabled {
  background: #e9ecef;
  cursor: default;
}
.page_content.capital .crm .search_section .select_box label {
  min-width: 80px;
}
.page_content.capital .crm .table_section {
  margin-top: 16px;
  position: relative;
}
.page_content.capital .crm .table_section .status_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page_content.capital .crm .table_section .status_box .btn_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.capital .crm .table_section .status_box .btn_box button {
  width: 80px;
  height: 30px;
  color: #222222;
  background: #ffffff;
  border: 1px solid #435ebe;
  border-right: none;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 13px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.capital .crm .table_section .status_box .btn_box button:first-child {
  border-radius: 4px 0 0 4px;
}
.page_content.capital .crm .table_section .status_box .btn_box button:last-child {
  border-radius: 0 4px 4px 0;
  border-right: 1px solid #435ebe;
}
.page_content.capital .crm .table_section .status_box .btn_box button:hover {
  color: #ffffff;
  background: #435ebe;
  border-left: 1px solid #ffffff;
}
.page_content.capital .crm .table_section .status_box .btn_box button.on {
  color: #ffffff;
  background: #435ebe;
}
.page_content.capital .crm .table_section .status_box .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.page_content.capital .crm .table_section .status_box .right p {
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  color: #222222;
}
.page_content.capital .crm .table_section .status_box .right p span {
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  color: #222222;
}
.page_content.capital .crm .table_section .status_box .right .excel_btn {
  height: 30px;
  font-size: 14px;
  width: 120px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
}
.page_content.capital .crm .table_section .status_box .right .excel_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.page_content.capital .crm .table_section .status_box .right .excel_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.page_content.capital .crm .table_section .status_box .right .excel_btn.gray {
  background: #999999;
  color: #ffffff;
}
.page_content.capital .crm .table_section .status_box .right .excel_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.page_content.capital .crm .table_section .status_box .right .excel_btn.gray:disabled {
  pointer-events: none;
}
.page_content.capital .crm .table_section .status_box .right .excel_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.page_content.capital .crm .table_section .status_box .right .excel_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.page_content.capital .crm .table_section .status_box .right .excel_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.page_content.capital .crm .table_section .status_box .right .excel_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.capital .crm .table_section .status_box .right .excel_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.page_content.capital .crm .table_section .status_box .right .excel_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.page_content.capital .crm .table_section .table_box {
  margin-top: 8px;
  position: relative;
  overflow-x: auto;
  overflow-y: auto;
  max-height: 550px;
}
.page_content.capital .crm .table_section .table_box::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.page_content.capital .crm .table_section .table_box::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.page_content.capital .crm .table_section .table_box::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.page_content.capital .crm .table_section .table_box::-webkit-scrollbar-track {
  background: #ffffff;
}
.page_content.capital .crm .table_section .table_box::-webkit-scrollbar-button {
  display: none;
}
.page_content.capital .crm .table_section .table_box table {
  width: 100%;
  table-layout: fixed;
  min-width: 1500px;
}
.page_content.capital .crm .table_section .table_box table thead th {
  position: relative;
  vertical-align: middle;
  background: #435ebe;
  border: none;
  padding: 6px 0;
  color: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 14px;
}
.page_content.capital .crm .table_section .table_box table thead th.fixed {
  position: sticky;
  top: 0;
  z-index: 1;
  border: 0;
}
.page_content.capital .crm .table_section .table_box table thead th.fixed::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  display: table-column-group;
  width: -webkit-fill-available;
  height: 100%;
  border-bottom: 1px solid #dce7f1;
  z-index: 1;
}
.page_content.capital .crm .table_section .table_box table thead th .checkbox {
  z-index: 100;
}
.page_content.capital .crm .table_section .table_box table tbody tr {
  cursor: pointer;
}
.page_content.capital .crm .table_section .table_box table tbody tr:hover td {
  background: rgba(124, 141, 181, 0.2);
}
.page_content.capital .crm .table_section .table_box table tbody td {
  position: relative;
  vertical-align: middle;
  background: #ffffff;
  border-bottom: 1px solid #dce7f1;
  padding: 8px 0;
  color: #222222;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.page_content.capital .crm .table_section .table_box table tbody td.overlap:hover .memo_tooltip {
  visibility: visible;
  opacity: 1;
  z-index: 10;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  height: auto;
}
.page_content.capital .crm .table_section .table_box table tbody td.overlap .memo {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 4px;
}
.page_content.capital .crm .table_section .table_box table tbody td.overlap .memo_tooltip {
  position: absolute;
  top: -25px;
  left: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  padding: 10px;
  color: white;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  text-align: left;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.9);
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  height: 0;
  overflow: hidden;
}
.page_content.capital .crm .table_section .table_box table tbody .ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 4px;
}
.page_content.capital .crm .table_section .table_box table .checkbox {
  width: 40px;
}
.page_content.capital .crm .table_section .table_box table .checkbox label::before {
  border-width: 2px;
  width: 16px;
  height: 16px;
  border: 1px solid #e1e3ea;
}
.page_content.capital .crm .table_section .table_box table .checkbox label::after {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
}
.page_content.capital .crm .table_section .bottom {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.capital .crm .table_section .bottom .select_box {
  position: relative;
}
.page_content.capital .crm .table_section .bottom .select_box label {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #435ebe;
}
.page_content.capital .crm .table_section .bottom .select_box select {
  width: 100px;
  height: 30px;
  border-radius: 4px;
  padding: 0px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.capital .crm .table_section .bottom .select_box select::-webkit-input-placeholder {
  color: #6c757d;
}
.page_content.capital .crm .table_section .bottom .select_box select::-moz-placeholder {
  color: #6c757d;
}
.page_content.capital .crm .table_section .bottom .select_box select:-ms-input-placeholder {
  color: #6c757d;
}
.page_content.capital .crm .table_section .bottom .select_box select::-ms-input-placeholder {
  color: #6c757d;
}
.page_content.capital .crm .table_section .bottom .select_box select::placeholder {
  color: #6c757d;
}
.page_content.capital .crm .table_section .bottom .select_box select:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.page_content.capital .crm .table_section .bottom .select_box select:disabled {
  background: #e9ecef;
  cursor: default;
}
.page_content.capital .crm .table_section .bottom .pagination {
  margin-top: 0;
}
.page_content.capital .list .search_section {
  margin-top: 20px;
}
.page_content.capital .list .search_section .flex {
  position: relative;
}
.page_content.capital .list .search_section .flex + .flex {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.capital .list .search_section .flex .input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page_content.capital .list .search_section .flex .btn_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.capital .list .search_section .flex .btn_box .reset_btn {
  height: 28px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.capital .list .search_section .flex .btn_box .reset_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.page_content.capital .list .search_section .flex .btn_box .reset_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.page_content.capital .list .search_section .flex .btn_box .reset_btn.gray {
  background: #999999;
  color: #ffffff;
}
.page_content.capital .list .search_section .flex .btn_box .reset_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.page_content.capital .list .search_section .flex .btn_box .reset_btn.gray:disabled {
  pointer-events: none;
}
.page_content.capital .list .search_section .flex .btn_box .reset_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.page_content.capital .list .search_section .flex .btn_box .reset_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.page_content.capital .list .search_section .flex .btn_box .reset_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.page_content.capital .list .search_section .flex .btn_box .reset_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.capital .list .search_section .flex .btn_box .reset_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.page_content.capital .list .search_section .flex .btn_box .reset_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.page_content.capital .list .search_section .flex .btn_box .search_btn {
  height: 28px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.capital .list .search_section .flex .btn_box .search_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.page_content.capital .list .search_section .flex .btn_box .search_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.page_content.capital .list .search_section .flex .btn_box .search_btn.gray {
  background: #999999;
  color: #ffffff;
}
.page_content.capital .list .search_section .flex .btn_box .search_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.page_content.capital .list .search_section .flex .btn_box .search_btn.gray:disabled {
  pointer-events: none;
}
.page_content.capital .list .search_section .flex .btn_box .search_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.page_content.capital .list .search_section .flex .btn_box .search_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.page_content.capital .list .search_section .flex .btn_box .search_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.page_content.capital .list .search_section .flex .btn_box .search_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.capital .list .search_section .flex .btn_box .search_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.page_content.capital .list .search_section .flex .btn_box .search_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.page_content.capital .list .search_section .input_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.capital .list .search_section .input_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.page_content.capital .list .search_section .input_box input {
  width: 142px;
  height: 28px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.capital .list .search_section .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.page_content.capital .list .search_section .input_box input::-moz-placeholder {
  color: #6c757d;
}
.page_content.capital .list .search_section .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.page_content.capital .list .search_section .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.page_content.capital .list .search_section .input_box input::placeholder {
  color: #6c757d;
}
.page_content.capital .list .search_section .input_box input:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.page_content.capital .list .search_section .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.page_content.capital .list .search_section .input_box input:disabled, .page_content.capital .list .search_section .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.page_content.capital .list .search_section .input_box.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.capital .list .search_section .input_box.date .calendar {
  position: relative;
}
.page_content.capital .list .search_section .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_calendar.svg");
          mask-image: url("/assets/img/icon/ico_calendar.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.page_content.capital .list .search_section .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.page_content.capital .list .search_section .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.page_content.capital .list .search_section .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.page_content.capital .list .search_section .input_box.search input {
  width: 450px;
}
.page_content.capital .list .search_section .input_box.search .input_search_btn {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.page_content.capital .list .search_section .input_box.search .input_search_btn:hover {
  width: 20px;
  height: 20px;
}
.page_content.capital .list .search_section .input_box label {
  min-width: 80px;
}
.page_content.capital .list .search_section .input_box.date span {
  display: block;
  margin: 0 10px;
}
.page_content.capital .list .search_section .select_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.capital .list .search_section .select_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.page_content.capital .list .search_section .select_box select {
  width: 142px;
  height: 28px;
  padding: 0 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  font-size: 14px;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.capital .list .search_section .select_box select::-webkit-input-placeholder {
  color: #6c757d;
}
.page_content.capital .list .search_section .select_box select::-moz-placeholder {
  color: #6c757d;
}
.page_content.capital .list .search_section .select_box select:-ms-input-placeholder {
  color: #6c757d;
}
.page_content.capital .list .search_section .select_box select::-ms-input-placeholder {
  color: #6c757d;
}
.page_content.capital .list .search_section .select_box select::placeholder {
  color: #6c757d;
}
.page_content.capital .list .search_section .select_box select:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.page_content.capital .list .search_section .select_box select:disabled {
  background: #e9ecef;
  cursor: default;
}
.page_content.capital .list .search_section .select_box label {
  min-width: 80px;
}
.page_content.capital .list .search_section .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.capital .list .list_box .right {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.capital .list .list_box .right p {
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  color: #222222;
}
.page_content.capital .list .list_box .right p span {
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  color: #222222;
}
.page_content.capital .list .list_box .right .excel_btn {
  height: 30px;
  font-size: 14px;
  width: 120px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
}
.page_content.capital .list .list_box .right .excel_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.page_content.capital .list .list_box .right .excel_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.page_content.capital .list .list_box .right .excel_btn.gray {
  background: #999999;
  color: #ffffff;
}
.page_content.capital .list .list_box .right .excel_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.page_content.capital .list .list_box .right .excel_btn.gray:disabled {
  pointer-events: none;
}
.page_content.capital .list .list_box .right .excel_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.page_content.capital .list .list_box .right .excel_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.page_content.capital .list .list_box .right .excel_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.page_content.capital .list .list_box .right .excel_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.capital .list .list_box .right .excel_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.page_content.capital .list .list_box .right .excel_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.page_content.capital .list .table_section {
  margin-top: 8px;
  position: relative;
}
.page_content.capital .list .table_section .table_box {
  position: relative;
  overflow-x: auto;
  overflow-y: auto;
  max-height: 680px;
}
.page_content.capital .list .table_section .table_box::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.page_content.capital .list .table_section .table_box::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.page_content.capital .list .table_section .table_box::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.page_content.capital .list .table_section .table_box::-webkit-scrollbar-track {
  background: #ffffff;
}
.page_content.capital .list .table_section .table_box::-webkit-scrollbar-button {
  display: none;
}
.page_content.capital .list .table_section .table_box table {
  width: 100%;
  table-layout: fixed;
  min-width: 1500px;
}
.page_content.capital .list .table_section .table_box table thead th {
  position: relative;
  vertical-align: middle;
  background: #435ebe;
  border: none;
  padding: 6px 0;
  color: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 14px;
}
.page_content.capital .list .table_section .table_box table thead th.fixed {
  position: sticky;
  top: 0;
  z-index: 1;
  border: 0;
}
.page_content.capital .list .table_section .table_box table thead th.fixed::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  display: table-column-group;
  width: -webkit-fill-available;
  height: 100%;
  border-bottom: 1px solid #dce7f1;
  z-index: 1;
}
.page_content.capital .list .table_section .table_box table thead th .checkbox {
  z-index: 100;
}
.page_content.capital .list .table_section .table_box table tbody tr {
  cursor: pointer;
}
.page_content.capital .list .table_section .table_box table tbody tr:hover td {
  background: rgba(124, 141, 181, 0.2);
}
.page_content.capital .list .table_section .table_box table tbody td {
  position: relative;
  vertical-align: middle;
  background: #ffffff;
  border-bottom: 1px solid #dce7f1;
  padding: 8px 0;
  color: #222222;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.page_content.capital .list .table_section .table_box table tbody td.overlap:hover .memo_tooltip {
  visibility: visible;
  opacity: 1;
  z-index: 10;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  height: auto;
}
.page_content.capital .list .table_section .table_box table tbody td.overlap .memo {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 4px;
}
.page_content.capital .list .table_section .table_box table tbody td.overlap .memo_tooltip {
  position: absolute;
  top: -25px;
  left: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  padding: 10px;
  color: white;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  text-align: left;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.9);
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  height: 0;
  overflow: hidden;
}
.page_content.capital .list .table_section .table_box table tbody .ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 4px;
}
.page_content.capital .list .table_section .table_box table .checkbox {
  width: 40px;
}
.page_content.capital .list .table_section .table_box table .checkbox label::before {
  border-width: 2px;
  width: 16px;
  height: 16px;
  border: 1px solid #e1e3ea;
}
.page_content.capital .list .table_section .table_box table .checkbox label::after {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
}
.page_content.capital .list .table_section .bottom {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.capital .list .table_section .bottom .select_box {
  position: relative;
}
.page_content.capital .list .table_section .bottom .select_box label {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #435ebe;
}
.page_content.capital .list .table_section .bottom .select_box select {
  width: 100px;
  height: 30px;
  border-radius: 4px;
  padding: 0px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.capital .list .table_section .bottom .select_box select::-webkit-input-placeholder {
  color: #6c757d;
}
.page_content.capital .list .table_section .bottom .select_box select::-moz-placeholder {
  color: #6c757d;
}
.page_content.capital .list .table_section .bottom .select_box select:-ms-input-placeholder {
  color: #6c757d;
}
.page_content.capital .list .table_section .bottom .select_box select::-ms-input-placeholder {
  color: #6c757d;
}
.page_content.capital .list .table_section .bottom .select_box select::placeholder {
  color: #6c757d;
}
.page_content.capital .list .table_section .bottom .select_box select:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.page_content.capital .list .table_section .bottom .select_box select:disabled {
  background: #e9ecef;
  cursor: default;
}
.page_content.capital .list .table_section .bottom .pagination {
  margin-top: 0;
}
.page_content.capital .newcar .search_section {
  margin-top: 20px;
}
.page_content.capital .newcar .search_section .flex {
  position: relative;
}
.page_content.capital .newcar .search_section .flex .input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page_content.capital .newcar .search_section .flex .btn_box {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.capital .newcar .search_section .flex .btn_box .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 12px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.capital .newcar .search_section .flex .btn_box .left button {
  height: 28px;
  font-size: 14px;
  width: 100px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background-color: #ffffff;
  border: 1px solid #435ebe;
  color: #435ebe;
}
.page_content.capital .newcar .search_section .flex .btn_box .left button:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.page_content.capital .newcar .search_section .flex .btn_box .left button:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.page_content.capital .newcar .search_section .flex .btn_box .left button.gray {
  background: #999999;
  color: #ffffff;
}
.page_content.capital .newcar .search_section .flex .btn_box .left button.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.page_content.capital .newcar .search_section .flex .btn_box .left button.gray:disabled {
  pointer-events: none;
}
.page_content.capital .newcar .search_section .flex .btn_box .left button.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.page_content.capital .newcar .search_section .flex .btn_box .left button.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.page_content.capital .newcar .search_section .flex .btn_box .left button.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.page_content.capital .newcar .search_section .flex .btn_box .left button.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.capital .newcar .search_section .flex .btn_box .left button.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.page_content.capital .newcar .search_section .flex .btn_box .left button.excel_btn:hover::before {
  background-color: #1d6f42;
}
.page_content.capital .newcar .search_section .flex .btn_box .left button:hover {
  background-color: #435ebe;
  color: #ffffff;
}
.page_content.capital .newcar .search_section .flex .btn_box .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.capital .newcar .search_section .flex .btn_box .right .reset_btn {
  height: 28px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.capital .newcar .search_section .flex .btn_box .right .reset_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.page_content.capital .newcar .search_section .flex .btn_box .right .reset_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.page_content.capital .newcar .search_section .flex .btn_box .right .reset_btn.gray {
  background: #999999;
  color: #ffffff;
}
.page_content.capital .newcar .search_section .flex .btn_box .right .reset_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.page_content.capital .newcar .search_section .flex .btn_box .right .reset_btn.gray:disabled {
  pointer-events: none;
}
.page_content.capital .newcar .search_section .flex .btn_box .right .reset_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.page_content.capital .newcar .search_section .flex .btn_box .right .reset_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.page_content.capital .newcar .search_section .flex .btn_box .right .reset_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.page_content.capital .newcar .search_section .flex .btn_box .right .reset_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.capital .newcar .search_section .flex .btn_box .right .reset_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.page_content.capital .newcar .search_section .flex .btn_box .right .reset_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.page_content.capital .newcar .search_section .flex .btn_box .right .search_btn {
  height: 28px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.capital .newcar .search_section .flex .btn_box .right .search_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.page_content.capital .newcar .search_section .flex .btn_box .right .search_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.page_content.capital .newcar .search_section .flex .btn_box .right .search_btn.gray {
  background: #999999;
  color: #ffffff;
}
.page_content.capital .newcar .search_section .flex .btn_box .right .search_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.page_content.capital .newcar .search_section .flex .btn_box .right .search_btn.gray:disabled {
  pointer-events: none;
}
.page_content.capital .newcar .search_section .flex .btn_box .right .search_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.page_content.capital .newcar .search_section .flex .btn_box .right .search_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.page_content.capital .newcar .search_section .flex .btn_box .right .search_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.page_content.capital .newcar .search_section .flex .btn_box .right .search_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.capital .newcar .search_section .flex .btn_box .right .search_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.page_content.capital .newcar .search_section .flex .btn_box .right .search_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.page_content.capital .newcar .search_section .input_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.capital .newcar .search_section .input_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.page_content.capital .newcar .search_section .input_box input {
  width: 142px;
  height: 28px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.capital .newcar .search_section .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.page_content.capital .newcar .search_section .input_box input::-moz-placeholder {
  color: #6c757d;
}
.page_content.capital .newcar .search_section .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.page_content.capital .newcar .search_section .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.page_content.capital .newcar .search_section .input_box input::placeholder {
  color: #6c757d;
}
.page_content.capital .newcar .search_section .input_box input:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.page_content.capital .newcar .search_section .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.page_content.capital .newcar .search_section .input_box input:disabled, .page_content.capital .newcar .search_section .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.page_content.capital .newcar .search_section .input_box.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.capital .newcar .search_section .input_box.date .calendar {
  position: relative;
}
.page_content.capital .newcar .search_section .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_calendar.svg");
          mask-image: url("/assets/img/icon/ico_calendar.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.page_content.capital .newcar .search_section .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.page_content.capital .newcar .search_section .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.page_content.capital .newcar .search_section .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.page_content.capital .newcar .search_section .input_box.search input {
  width: 450px;
}
.page_content.capital .newcar .search_section .input_box.search .input_search_btn {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.page_content.capital .newcar .search_section .input_box.search .input_search_btn:hover {
  width: 20px;
  height: 20px;
}
.page_content.capital .newcar .search_section .input_box label {
  min-width: 80px;
}
.page_content.capital .newcar .search_section .input_box.date span {
  display: block;
  margin: 0 10px;
}
.page_content.capital .newcar .search_section .select_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.capital .newcar .search_section .select_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.page_content.capital .newcar .search_section .select_box select {
  width: 142px;
  height: 28px;
  padding: 0 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  font-size: 14px;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.capital .newcar .search_section .select_box select::-webkit-input-placeholder {
  color: #6c757d;
}
.page_content.capital .newcar .search_section .select_box select::-moz-placeholder {
  color: #6c757d;
}
.page_content.capital .newcar .search_section .select_box select:-ms-input-placeholder {
  color: #6c757d;
}
.page_content.capital .newcar .search_section .select_box select::-ms-input-placeholder {
  color: #6c757d;
}
.page_content.capital .newcar .search_section .select_box select::placeholder {
  color: #6c757d;
}
.page_content.capital .newcar .search_section .select_box select:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.page_content.capital .newcar .search_section .select_box select:disabled {
  background: #e9ecef;
  cursor: default;
}
.page_content.capital .newcar .search_section .select_box.long select {
  width: 180px;
}
.page_content.capital .newcar .search_section .select_box label {
  min-width: 80px;
}
.page_content.capital .newcar .table_section {
  margin-top: 16px;
  position: relative;
}
.page_content.capital .newcar .table_section .status_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.capital .newcar .table_section .status_box p {
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  color: #222222;
}
.page_content.capital .newcar .table_section .status_box p span {
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  color: #222222;
}
.page_content.capital .newcar .table_section .status_box .excel_btn {
  height: 30px;
  font-size: 14px;
  width: 120px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
}
.page_content.capital .newcar .table_section .status_box .excel_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.page_content.capital .newcar .table_section .status_box .excel_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.page_content.capital .newcar .table_section .status_box .excel_btn.gray {
  background: #999999;
  color: #ffffff;
}
.page_content.capital .newcar .table_section .status_box .excel_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.page_content.capital .newcar .table_section .status_box .excel_btn.gray:disabled {
  pointer-events: none;
}
.page_content.capital .newcar .table_section .status_box .excel_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.page_content.capital .newcar .table_section .status_box .excel_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.page_content.capital .newcar .table_section .status_box .excel_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.page_content.capital .newcar .table_section .status_box .excel_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.capital .newcar .table_section .status_box .excel_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.page_content.capital .newcar .table_section .status_box .excel_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.page_content.capital .newcar .table_section .table_box {
  margin-top: 8px;
  position: relative;
  overflow-x: auto;
  overflow-y: auto;
  max-height: 550px;
}
.page_content.capital .newcar .table_section .table_box::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.page_content.capital .newcar .table_section .table_box::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.page_content.capital .newcar .table_section .table_box::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.page_content.capital .newcar .table_section .table_box::-webkit-scrollbar-track {
  background: #ffffff;
}
.page_content.capital .newcar .table_section .table_box::-webkit-scrollbar-button {
  display: none;
}
.page_content.capital .newcar .table_section .table_box table {
  width: 100%;
  table-layout: fixed;
  min-width: 1500px;
}
.page_content.capital .newcar .table_section .table_box table thead th {
  position: relative;
  vertical-align: middle;
  background: #435ebe;
  border: none;
  padding: 6px 0;
  color: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 14px;
}
.page_content.capital .newcar .table_section .table_box table thead th.fixed {
  position: sticky;
  top: 0;
  z-index: 1;
  border: 0;
}
.page_content.capital .newcar .table_section .table_box table thead th.fixed::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  display: table-column-group;
  width: -webkit-fill-available;
  height: 100%;
  border-bottom: 1px solid #dce7f1;
  z-index: 1;
}
.page_content.capital .newcar .table_section .table_box table thead th .checkbox {
  z-index: 100;
}
.page_content.capital .newcar .table_section .table_box table tbody tr {
  cursor: pointer;
}
.page_content.capital .newcar .table_section .table_box table tbody tr:hover td {
  background: rgba(124, 141, 181, 0.2);
}
.page_content.capital .newcar .table_section .table_box table tbody td {
  position: relative;
  vertical-align: middle;
  background: #ffffff;
  border-bottom: 1px solid #dce7f1;
  padding: 8px 0;
  color: #222222;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.page_content.capital .newcar .table_section .table_box table tbody td.overlap:hover .memo_tooltip {
  visibility: visible;
  opacity: 1;
  z-index: 10;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  height: auto;
}
.page_content.capital .newcar .table_section .table_box table tbody td.overlap .memo {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 4px;
}
.page_content.capital .newcar .table_section .table_box table tbody td.overlap .memo_tooltip {
  position: absolute;
  top: -25px;
  left: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  padding: 10px;
  color: white;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  text-align: left;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.9);
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  height: 0;
  overflow: hidden;
}
.page_content.capital .newcar .table_section .table_box table tbody .ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 4px;
}
.page_content.capital .newcar .table_section .table_box table .checkbox {
  width: 40px;
}
.page_content.capital .newcar .table_section .table_box table .checkbox label::before {
  border-width: 2px;
  width: 16px;
  height: 16px;
  border: 1px solid #e1e3ea;
}
.page_content.capital .newcar .table_section .table_box table .checkbox label::after {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
}
.page_content.capital .newcar .table_section .bottom {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.capital .newcar .table_section .bottom .select_box {
  position: relative;
}
.page_content.capital .newcar .table_section .bottom .select_box label {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #435ebe;
}
.page_content.capital .newcar .table_section .bottom .select_box select {
  width: 100px;
  height: 30px;
  border-radius: 4px;
  padding: 0px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.capital .newcar .table_section .bottom .select_box select::-webkit-input-placeholder {
  color: #6c757d;
}
.page_content.capital .newcar .table_section .bottom .select_box select::-moz-placeholder {
  color: #6c757d;
}
.page_content.capital .newcar .table_section .bottom .select_box select:-ms-input-placeholder {
  color: #6c757d;
}
.page_content.capital .newcar .table_section .bottom .select_box select::-ms-input-placeholder {
  color: #6c757d;
}
.page_content.capital .newcar .table_section .bottom .select_box select::placeholder {
  color: #6c757d;
}
.page_content.capital .newcar .table_section .bottom .select_box select:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.page_content.capital .newcar .table_section .bottom .select_box select:disabled {
  background: #e9ecef;
  cursor: default;
}
.page_content.capital .newcar .table_section .bottom .pagination {
  margin-top: 0;
}

.type_capital {
  max-width: 94% !important;
}
.type_capital .modal_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 10px 20px 8px !important;
  border-bottom: 1px solid #e5e7eb;
}
.type_capital .modal_header .modal_tit span {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 20px;
  color: #222222;
}
.type_capital .modal_header .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_capital .modal_header button {
  height: 28px;
  font-size: 14px;
  width: 120px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_capital .modal_header button:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.type_capital .modal_header button:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.type_capital .modal_header button.gray {
  background: #999999;
  color: #ffffff;
}
.type_capital .modal_header button.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.type_capital .modal_header button.gray:disabled {
  pointer-events: none;
}
.type_capital .modal_header button.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.type_capital .modal_header button.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.type_capital .modal_header button.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.type_capital .modal_header button.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_capital .modal_header button.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.type_capital .modal_header button.excel_btn:hover::before {
  background-color: #1d6f42;
}
.type_capital .db_detail_pop {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_capital .db_detail_pop .left {
  width: 50%;
  padding-right: 16px;
  border-right: 1px solid #e5e7eb;
}
.type_capital .db_detail_pop .left .field {
  position: relative;
  width: 100%;
}
.type_capital .db_detail_pop .left .field + .field {
  margin-top: 12px;
}
.type_capital .db_detail_pop .left .field.f-s-b {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 20px;
}
.type_capital .db_detail_pop .left .field.f-s-b .dealer {
  width: 45%;
}
.type_capital .db_detail_pop .left .field.f-s-b .dealer .dealer_search_btn {
  height: 28px;
  font-size: 14px;
  width: 100%;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_capital .db_detail_pop .left .field.f-s-b .dealer .dealer_search_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.type_capital .db_detail_pop .left .field.f-s-b .dealer .dealer_search_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.type_capital .db_detail_pop .left .field.f-s-b .dealer .dealer_search_btn.gray {
  background: #999999;
  color: #ffffff;
}
.type_capital .db_detail_pop .left .field.f-s-b .dealer .dealer_search_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.type_capital .db_detail_pop .left .field.f-s-b .dealer .dealer_search_btn.gray:disabled {
  pointer-events: none;
}
.type_capital .db_detail_pop .left .field.f-s-b .dealer .dealer_search_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.type_capital .db_detail_pop .left .field.f-s-b .dealer .dealer_search_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.type_capital .db_detail_pop .left .field.f-s-b .dealer .dealer_search_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.type_capital .db_detail_pop .left .field.f-s-b .dealer .dealer_search_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_capital .db_detail_pop .left .field.f-s-b .dealer .dealer_search_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.type_capital .db_detail_pop .left .field.f-s-b .dealer .dealer_search_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.type_capital .db_detail_pop .left .field.f-s-b .dealer .dealer_search_btn::after {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 14px;
  height: 14px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  vertical-align: middle;
  margin-left: 10px;
}
.type_capital .db_detail_pop .left .field.f-s-b .dealer .dealer_search_btn:hover::after {
  background-color: #435ebe;
}
.type_capital .db_detail_pop .left .field.f-s-b .customer {
  width: 53%;
}
.type_capital .db_detail_pop .left .field.f-s-b .customer .input_box:first-child {
  width: 53% !important;
}
.type_capital .db_detail_pop .left .field.f-s-b .customer .input_box:nth-child(2) {
  width: 45% !important;
}
.type_capital .db_detail_pop .left .field.f-s-b .customer .input_box.resident input {
  padding: 8px 10px;
}
.type_capital .db_detail_pop .left .field.f-s-b .customer .select_box select {
  width: 124px;
}
.type_capital .db_detail_pop .left .field.f-s-b .row .input_box {
  width: calc(50% - 6px);
}
.type_capital .db_detail_pop .left .field.f-s-b .row .input_box input {
  width: calc(100% - 80px);
}
.type_capital .db_detail_pop .left .field.f-s-b .row .input_box.long {
  width: 100%;
}
.type_capital .db_detail_pop .left .field.f-s-b .row .input_box.long input {
  width: 160px;
}
.type_capital .db_detail_pop .left .field.f-s-b .row .input_box.datelong input {
  width: 216px;
}
.type_capital .db_detail_pop .left .field .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 12px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_capital .db_detail_pop .left .field .row + .row {
  margin-top: 12px;
}
.type_capital .db_detail_pop .left .field .row.j-c-e {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.type_capital .db_detail_pop .left .field .row .input_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_capital .db_detail_pop .left .field .row .input_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.type_capital .db_detail_pop .left .field .row .input_box input {
  width: 140px;
  height: 28px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_capital .db_detail_pop .left .field .row .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.type_capital .db_detail_pop .left .field .row .input_box input::-moz-placeholder {
  color: #6c757d;
}
.type_capital .db_detail_pop .left .field .row .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.type_capital .db_detail_pop .left .field .row .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.type_capital .db_detail_pop .left .field .row .input_box input::placeholder {
  color: #6c757d;
}
.type_capital .db_detail_pop .left .field .row .input_box input:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.type_capital .db_detail_pop .left .field .row .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.type_capital .db_detail_pop .left .field .row .input_box input:disabled, .type_capital .db_detail_pop .left .field .row .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.type_capital .db_detail_pop .left .field .row .input_box.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_capital .db_detail_pop .left .field .row .input_box.date .calendar {
  position: relative;
}
.type_capital .db_detail_pop .left .field .row .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_calendar.svg");
          mask-image: url("/assets/img/icon/ico_calendar.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.type_capital .db_detail_pop .left .field .row .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.type_capital .db_detail_pop .left .field .row .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.type_capital .db_detail_pop .left .field .row .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.type_capital .db_detail_pop .left .field .row .input_box.search input {
  width: 450px;
}
.type_capital .db_detail_pop .left .field .row .input_box.search .input_search_btn {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.type_capital .db_detail_pop .left .field .row .input_box.search .input_search_btn:hover {
  width: 20px;
  height: 20px;
}
.type_capital .db_detail_pop .left .field .row .input_box label {
  min-width: 80px;
}
.type_capital .db_detail_pop .left .field .row .input_box.datelong input {
  width: 200px;
}
.type_capital .db_detail_pop .left .field .row .select_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_capital .db_detail_pop .left .field .row .select_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.type_capital .db_detail_pop .left .field .row .select_box select {
  width: 136px;
  height: 28px;
  padding: 0 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  font-size: 14px;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_capital .db_detail_pop .left .field .row .select_box select::-webkit-input-placeholder {
  color: #6c757d;
}
.type_capital .db_detail_pop .left .field .row .select_box select::-moz-placeholder {
  color: #6c757d;
}
.type_capital .db_detail_pop .left .field .row .select_box select:-ms-input-placeholder {
  color: #6c757d;
}
.type_capital .db_detail_pop .left .field .row .select_box select::-ms-input-placeholder {
  color: #6c757d;
}
.type_capital .db_detail_pop .left .field .row .select_box select::placeholder {
  color: #6c757d;
}
.type_capital .db_detail_pop .left .field .row .select_box select:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.type_capital .db_detail_pop .left .field .row .select_box select:disabled {
  background: #e9ecef;
  cursor: default;
}
.type_capital .db_detail_pop .left .field .row .select_box label {
  min-width: 80px;
}
.type_capital .db_detail_pop .left .field .row .select_box select:disabled {
  opacity: 1;
}
.type_capital .db_detail_pop .left .field .row .text_box {
  margin-top: 10px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.type_capital .db_detail_pop .left .field .row .text_box label {
  width: 100%;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 4px 0 0;
}
.type_capital .db_detail_pop .left .field .row .text_box textarea {
  resize: none;
  width: 100%;
  height: 160px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 0 4px 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_capital .db_detail_pop .left .field .row .text_box textarea::-webkit-input-placeholder {
  color: #6c757d;
}
.type_capital .db_detail_pop .left .field .row .text_box textarea::-moz-placeholder {
  color: #6c757d;
}
.type_capital .db_detail_pop .left .field .row .text_box textarea:-ms-input-placeholder {
  color: #6c757d;
}
.type_capital .db_detail_pop .left .field .row .text_box textarea::-ms-input-placeholder {
  color: #6c757d;
}
.type_capital .db_detail_pop .left .field .row .text_box textarea::placeholder {
  color: #6c757d;
}
.type_capital .db_detail_pop .left .field .row .text_box textarea:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.type_capital .db_detail_pop .left .field .row .text_box textarea:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.type_capital .db_detail_pop .left .field .row .text_box textarea:disabled, .type_capital .db_detail_pop .left .field .row .text_box textarea:read-only {
  background: #e9ecef;
  cursor: default;
}
.type_capital .db_detail_pop .left .field .row button.take_btn {
  height: 28px;
  font-size: 14px;
  width: 70px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  margin-left: 6px;
}
.type_capital .db_detail_pop .left .field .row button.take_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.type_capital .db_detail_pop .left .field .row button.take_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.type_capital .db_detail_pop .left .field .row button.take_btn.gray {
  background: #999999;
  color: #ffffff;
}
.type_capital .db_detail_pop .left .field .row button.take_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.type_capital .db_detail_pop .left .field .row button.take_btn.gray:disabled {
  pointer-events: none;
}
.type_capital .db_detail_pop .left .field .row button.take_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.type_capital .db_detail_pop .left .field .row button.take_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.type_capital .db_detail_pop .left .field .row button.take_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.type_capital .db_detail_pop .left .field .row button.take_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_capital .db_detail_pop .left .field .row button.take_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.type_capital .db_detail_pop .left .field .row button.take_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.type_capital .db_detail_pop .left .field .row button.take_btn.call {
  background: #be4343;
}
.type_capital .db_detail_pop .left .field .row button.take_btn.call::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_call.svg");
          mask-image: url("/assets/img/icon/ico_call.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 16px;
  vertical-align: -3px;
  margin-right: 2px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.type_capital .db_detail_pop .left .field .row button.take_btn.call:hover {
  background: #ffffff;
  color: #be4343;
  border: 1px solid #be4343;
}
.type_capital .db_detail_pop .left .field .row button.take_btn.call:hover::before {
  background-color: #be4343;
}
.type_capital .db_detail_pop .left .field .row button.take_btn.phone {
  background: #369997;
}
.type_capital .db_detail_pop .left .field .row button.take_btn.phone:hover {
  background: #ffffff;
  color: #369997;
  border: 1px solid #369997;
}
.type_capital .db_detail_pop .left .field .row button.hang_up_btn {
  height: 28px;
  font-size: 14px;
  width: 90px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_capital .db_detail_pop .left .field .row button.hang_up_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.type_capital .db_detail_pop .left .field .row button.hang_up_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.type_capital .db_detail_pop .left .field .row button.hang_up_btn.gray {
  background: #999999;
  color: #ffffff;
}
.type_capital .db_detail_pop .left .field .row button.hang_up_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.type_capital .db_detail_pop .left .field .row button.hang_up_btn.gray:disabled {
  pointer-events: none;
}
.type_capital .db_detail_pop .left .field .row button.hang_up_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.type_capital .db_detail_pop .left .field .row button.hang_up_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.type_capital .db_detail_pop .left .field .row button.hang_up_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.type_capital .db_detail_pop .left .field .row button.hang_up_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_capital .db_detail_pop .left .field .row button.hang_up_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.type_capital .db_detail_pop .left .field .row button.hang_up_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.type_capital .db_detail_pop .left .field .row button.hang_up_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_call_close.svg");
          mask-image: url("/assets/img/icon/ico_call_close.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 16px;
  vertical-align: -3px;
  margin-right: 2px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.type_capital .db_detail_pop .left .field .row button.hang_up_btn.call {
  background: #be4343;
}
.type_capital .db_detail_pop .left .field .row button.hang_up_btn.call:hover {
  background: #ffffff;
  color: #be4343;
  border: 1px solid #be4343;
}
.type_capital .db_detail_pop .left .field .row button.hang_up_btn.call:hover::before {
  background-color: #be4343;
}
.type_capital .db_detail_pop .left .field .row button.hang_up_btn.phone {
  background: #369997;
}
.type_capital .db_detail_pop .left .field .row button.hang_up_btn.phone:hover {
  background: #ffffff;
  color: #369997;
  border: 1px solid #369997;
}
.type_capital .db_detail_pop .left .field .row button.hang_up_btn.phone:hover::before {
  background-color: #369997;
}
.type_capital .db_detail_pop .left .field .row button.basic_btn {
  height: 28px;
  font-size: 14px;
  width: 105px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_capital .db_detail_pop .left .field .row button.basic_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.type_capital .db_detail_pop .left .field .row button.basic_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.type_capital .db_detail_pop .left .field .row button.basic_btn.gray {
  background: #999999;
  color: #ffffff;
}
.type_capital .db_detail_pop .left .field .row button.basic_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.type_capital .db_detail_pop .left .field .row button.basic_btn.gray:disabled {
  pointer-events: none;
}
.type_capital .db_detail_pop .left .field .row button.basic_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.type_capital .db_detail_pop .left .field .row button.basic_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.type_capital .db_detail_pop .left .field .row button.basic_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.type_capital .db_detail_pop .left .field .row button.basic_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_capital .db_detail_pop .left .field .row button.basic_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.type_capital .db_detail_pop .left .field .row button.basic_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.type_capital .db_detail_pop .left .field .row button.basic_btn.reverse {
  background: #fff;
  color: #435ebe;
  border: 1px solid #435ebe;
}
.type_capital .db_detail_pop .left .field .row button.basic_btn.reverse:hover {
  background: #435ebe;
  color: #fff;
}
.type_capital .db_detail_pop .left .field .row button.basic_btn.long {
  width: 162px;
}
.type_capital .db_detail_pop .left .field .row button.basic_btn.coupon::after {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_send.svg");
          mask-image: url("/assets/img/icon/ico_send.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 14px;
  height: 14px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  vertical-align: middle;
  margin-left: 10px;
}
.type_capital .db_detail_pop .right {
  width: 50%;
  padding-left: 16px;
}
.type_capital .db_detail_pop .right .field {
  position: relative;
  width: 100%;
}
.type_capital .db_detail_pop .right .field + .field {
  margin-top: 12px;
  border-top: 1px solid #e5e7eb;
  padding-top: 12px;
}
.type_capital .db_detail_pop .right .field .tit {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 16px;
  color: #222222;
  margin-bottom: 10px;
}
.type_capital .db_detail_pop .right .table_box.yscroll {
  height: 120px;
}
.type_capital .db_detail_pop .right .table_box.xscroll table {
  width: 100%;
  table-layout: auto;
}
.type_capital .db_detail_pop .right .table_box.xscroll table td {
  min-width: 100px;
  padding: 4px 0;
}
.type_capital .db_detail_pop .right .table_box.xscroll table td.long {
  min-width: 300px;
}
.type_capital .db_detail_pop .right .table_box table {
  width: 100%;
  table-layout: fixed;
}
.type_capital .db_detail_pop .right .table_box table thead th {
  position: relative;
  vertical-align: middle;
  background: #435ebe;
  border: none;
  padding: 6px 0;
  color: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 14px;
}
.type_capital .db_detail_pop .right .table_box table thead th.fixed {
  position: sticky;
  top: 0;
  z-index: 1;
  border: 0;
}
.type_capital .db_detail_pop .right .table_box table thead th.fixed::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  display: table-column-group;
  width: -webkit-fill-available;
  height: 100%;
  border-bottom: 1px solid #dce7f1;
  z-index: 1;
}
.type_capital .db_detail_pop .right .table_box table thead th .checkbox {
  z-index: 100;
}
.type_capital .db_detail_pop .right .table_box table tbody td {
  position: relative;
  vertical-align: middle;
  background: #ffffff;
  border-bottom: 1px solid #dce7f1;
  padding: 8px 0;
  color: #222222;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  word-break: keep-all;
}
.type_capital .db_detail_pop .right .table_box table tbody td .listen_btn {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  color: #222222;
  border-bottom: 1px solid #222222;
  padding: 0 2px;
}
.type_capital .db_detail_pop .right .table_box table tbody td .listen_btn:hover {
  color: #435ebe;
  border-bottom: 1px solid #435ebe;
}
.type_capital .db_detail_pop .right .text_box {
  margin-top: 10px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_capital .db_detail_pop .right .text_box textarea {
  resize: none;
  padding: 0 10px 10px 10px;
  width: calc(100% - 100px);
  height: 28px;
  outline: none;
  border: 0;
  border-bottom: 1px solid #aaa;
  background: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_capital .db_detail_pop .right .text_box textarea::-webkit-input-placeholder {
  color: #6c757d;
}
.type_capital .db_detail_pop .right .text_box textarea::-moz-placeholder {
  color: #6c757d;
}
.type_capital .db_detail_pop .right .text_box textarea:-ms-input-placeholder {
  color: #6c757d;
}
.type_capital .db_detail_pop .right .text_box textarea::-ms-input-placeholder {
  color: #6c757d;
}
.type_capital .db_detail_pop .right .text_box textarea::placeholder {
  color: #6c757d;
}
.type_capital .db_detail_pop .right .text_box textarea:focus {
  border-bottom: 1px solid #435ebe;
  outline: none;
}
.type_capital .db_detail_pop .right .text_box textarea:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.type_capital .db_detail_pop .right .text_box textarea:disabled, .type_capital .db_detail_pop .right .text_box textarea:read-only {
  background: #e9ecef;
  cursor: default;
}
.type_capital .db_detail_pop .right .text_box button {
  height: 28px;
  font-size: 14px;
  width: 70px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_capital .db_detail_pop .right .text_box button:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.type_capital .db_detail_pop .right .text_box button:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.type_capital .db_detail_pop .right .text_box button.gray {
  background: #999999;
  color: #ffffff;
}
.type_capital .db_detail_pop .right .text_box button.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.type_capital .db_detail_pop .right .text_box button.gray:disabled {
  pointer-events: none;
}
.type_capital .db_detail_pop .right .text_box button.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.type_capital .db_detail_pop .right .text_box button.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.type_capital .db_detail_pop .right .text_box button.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.type_capital .db_detail_pop .right .text_box button.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_capital .db_detail_pop .right .text_box button.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.type_capital .db_detail_pop .right .text_box button.excel_btn:hover::before {
  background-color: #1d6f42;
}
.type_capital .db_detail_pop .right .tab_section {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.type_capital .db_detail_pop .right .tab_section .tab {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 6px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  top: 1px;
}
.type_capital .db_detail_pop .right .tab_section .tab li {
  border-radius: 4px 4px 0 0;
  background: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 500;
  color: #777777;
  font-size: 15px;
  text-align: center;
  cursor: pointer;
  border: 1px solid #dce7f1;
  border-bottom: none;
  -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.type_capital .db_detail_pop .right .tab_section .tab li.active {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #435ebe;
  border: 1px solid #435ebe;
  border-bottom: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  z-index: 1;
}
.type_capital .db_detail_pop .right .tab_section .tab li:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  border-bottom: none;
}
.type_capital .db_detail_pop .right .tab_section .tab_box {
  display: none;
  position: relative;
  background: #ffffff;
  border: 1px solid #dce7f1;
  border-top: 1px solid #435ebe;
  width: 100%;
  padding: 16px;
  border-radius: 0 0 5px 5px;
  -webkit-box-shadow: rgba(99, 99, 99, 0.15) 0px 1px 8px 0px;
          box-shadow: rgba(99, 99, 99, 0.15) 0px 1px 8px 0px;
}
.type_capital .db_detail_pop .right .tab_section .tab_box.show {
  display: block;
}
.type_capital .db_detail_pop .right .tab_section .tab li {
  padding: 0 20px;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
}
.type_capital .db_detail_pop .right .tab_section .tab_box {
  border: none;
  border-top: 1px solid #dce7f1;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  padding: 12px 0;
  height: 100%;
  max-height: 140px;
  overflow-y: auto;
}
.type_capital .db_detail_pop .right .tab_section .tab_box::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.type_capital .db_detail_pop .right .tab_section .tab_box::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.type_capital .db_detail_pop .right .tab_section .tab_box::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.type_capital .db_detail_pop .right .tab_section .tab_box::-webkit-scrollbar-track {
  background: #ffffff;
}
.type_capital .db_detail_pop .right .tab_section .tab_box::-webkit-scrollbar-button {
  display: none;
}
.type_capital .db_detail_pop .right .tab_section .tab_box .tab_content {
  width: 100%;
}
.type_capital .customer_detail_pop {
  width: 100%;
}
.type_capital .customer_detail_pop .field {
  position: relative;
  width: 100%;
}
.type_capital .customer_detail_pop .field .field_tit {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
  color: #222222;
}
.type_capital .customer_detail_pop .field + .field {
  margin-top: 12px;
}
.type_capital .customer_detail_pop .field .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 12px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_capital .customer_detail_pop .field .row + .row {
  margin-top: 12px;
}
.type_capital .customer_detail_pop .field .row.j-c-e {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.type_capital .customer_detail_pop .field .row .input_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_capital .customer_detail_pop .field .row .input_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.type_capital .customer_detail_pop .field .row .input_box input {
  width: 140px;
  height: 28px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_capital .customer_detail_pop .field .row .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.type_capital .customer_detail_pop .field .row .input_box input::-moz-placeholder {
  color: #6c757d;
}
.type_capital .customer_detail_pop .field .row .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.type_capital .customer_detail_pop .field .row .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.type_capital .customer_detail_pop .field .row .input_box input::placeholder {
  color: #6c757d;
}
.type_capital .customer_detail_pop .field .row .input_box input:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.type_capital .customer_detail_pop .field .row .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.type_capital .customer_detail_pop .field .row .input_box input:disabled, .type_capital .customer_detail_pop .field .row .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.type_capital .customer_detail_pop .field .row .input_box.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_capital .customer_detail_pop .field .row .input_box.date .calendar {
  position: relative;
}
.type_capital .customer_detail_pop .field .row .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_calendar.svg");
          mask-image: url("/assets/img/icon/ico_calendar.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.type_capital .customer_detail_pop .field .row .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.type_capital .customer_detail_pop .field .row .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.type_capital .customer_detail_pop .field .row .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.type_capital .customer_detail_pop .field .row .input_box.search input {
  width: 450px;
}
.type_capital .customer_detail_pop .field .row .input_box.search .input_search_btn {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.type_capital .customer_detail_pop .field .row .input_box.search .input_search_btn:hover {
  width: 20px;
  height: 20px;
}
.type_capital .customer_detail_pop .field .row .input_box label {
  min-width: 116px;
}
.type_capital .customer_detail_pop .field .row .input_box label.long {
  min-width: 116px;
}
.type_capital .customer_detail_pop .field .row .input_box.datelong input {
  width: 200px;
}
.type_capital .customer_detail_pop .field .row .input_box.long input {
  width: 160px;
}
.type_capital .customer_detail_pop .field .row .input_box.adress input {
  width: 500px;
}
.type_capital .customer_detail_pop .field .row .input_box.resident label {
  min-width: 100px;
}
.type_capital .customer_detail_pop .field .row .input_box.resident input {
  padding: 8px 10px;
}
.type_capital .customer_detail_pop .field .row .input_box.resident span {
  margin: 0 4px;
}
.type_capital .customer_detail_pop .field .row .input_box.resident span + input {
  border-radius: 4px;
}
.type_capital .customer_detail_pop .field .row .select_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_capital .customer_detail_pop .field .row .select_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.type_capital .customer_detail_pop .field .row .select_box select {
  width: 140px;
  height: 28px;
  padding: 0 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  font-size: 14px;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_capital .customer_detail_pop .field .row .select_box select::-webkit-input-placeholder {
  color: #6c757d;
}
.type_capital .customer_detail_pop .field .row .select_box select::-moz-placeholder {
  color: #6c757d;
}
.type_capital .customer_detail_pop .field .row .select_box select:-ms-input-placeholder {
  color: #6c757d;
}
.type_capital .customer_detail_pop .field .row .select_box select::-ms-input-placeholder {
  color: #6c757d;
}
.type_capital .customer_detail_pop .field .row .select_box select::placeholder {
  color: #6c757d;
}
.type_capital .customer_detail_pop .field .row .select_box select:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.type_capital .customer_detail_pop .field .row .select_box select:disabled {
  background: #e9ecef;
  cursor: default;
}
.type_capital .customer_detail_pop .field .row .select_box.long select {
  width: 180px;
}
.type_capital .customer_detail_pop .field .row .select_box label {
  min-width: 116px;
}
.type_capital .customer_detail_pop .field .row .select_box select:disabled {
  opacity: 1;
}
.type_capital .customer_detail_pop .field .row .text_box {
  margin-top: 10px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.type_capital .customer_detail_pop .field .row .text_box label {
  width: 100%;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 4px 0 0;
}
.type_capital .customer_detail_pop .field .row .text_box textarea {
  resize: none;
  width: 100%;
  height: 160px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 0 4px 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_capital .customer_detail_pop .field .row .text_box textarea::-webkit-input-placeholder {
  color: #6c757d;
}
.type_capital .customer_detail_pop .field .row .text_box textarea::-moz-placeholder {
  color: #6c757d;
}
.type_capital .customer_detail_pop .field .row .text_box textarea:-ms-input-placeholder {
  color: #6c757d;
}
.type_capital .customer_detail_pop .field .row .text_box textarea::-ms-input-placeholder {
  color: #6c757d;
}
.type_capital .customer_detail_pop .field .row .text_box textarea::placeholder {
  color: #6c757d;
}
.type_capital .customer_detail_pop .field .row .text_box textarea:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.type_capital .customer_detail_pop .field .row .text_box textarea:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.type_capital .customer_detail_pop .field .row .text_box textarea:disabled, .type_capital .customer_detail_pop .field .row .text_box textarea:read-only {
  background: #e9ecef;
  cursor: default;
}
.type_capital .customer_detail_pop .field .row button.take_btn {
  height: 28px;
  font-size: 14px;
  width: 70px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  margin-left: 6px;
}
.type_capital .customer_detail_pop .field .row button.take_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.type_capital .customer_detail_pop .field .row button.take_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.type_capital .customer_detail_pop .field .row button.take_btn.gray {
  background: #999999;
  color: #ffffff;
}
.type_capital .customer_detail_pop .field .row button.take_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.type_capital .customer_detail_pop .field .row button.take_btn.gray:disabled {
  pointer-events: none;
}
.type_capital .customer_detail_pop .field .row button.take_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.type_capital .customer_detail_pop .field .row button.take_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.type_capital .customer_detail_pop .field .row button.take_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.type_capital .customer_detail_pop .field .row button.take_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_capital .customer_detail_pop .field .row button.take_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.type_capital .customer_detail_pop .field .row button.take_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.type_capital .customer_detail_pop .field .row button.take_btn.call {
  background: #be4343;
}
.type_capital .customer_detail_pop .field .row button.take_btn.call::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_call.svg");
          mask-image: url("/assets/img/icon/ico_call.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 16px;
  vertical-align: -3px;
  margin-right: 2px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.type_capital .customer_detail_pop .field .row button.take_btn.call:hover {
  background: #ffffff;
  color: #be4343;
  border: 1px solid #be4343;
}
.type_capital .customer_detail_pop .field .row button.take_btn.call:hover::before {
  background-color: #be4343;
}
.type_capital .customer_detail_pop .field .row button.take_btn.phone {
  background: #369997;
}
.type_capital .customer_detail_pop .field .row button.take_btn.phone:hover {
  background: #ffffff;
  color: #369997;
  border: 1px solid #369997;
}
.type_capital .customer_detail_pop .field .row button.hang_up_btn {
  height: 28px;
  font-size: 14px;
  width: 90px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_capital .customer_detail_pop .field .row button.hang_up_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.type_capital .customer_detail_pop .field .row button.hang_up_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.type_capital .customer_detail_pop .field .row button.hang_up_btn.gray {
  background: #999999;
  color: #ffffff;
}
.type_capital .customer_detail_pop .field .row button.hang_up_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.type_capital .customer_detail_pop .field .row button.hang_up_btn.gray:disabled {
  pointer-events: none;
}
.type_capital .customer_detail_pop .field .row button.hang_up_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.type_capital .customer_detail_pop .field .row button.hang_up_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.type_capital .customer_detail_pop .field .row button.hang_up_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.type_capital .customer_detail_pop .field .row button.hang_up_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_capital .customer_detail_pop .field .row button.hang_up_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.type_capital .customer_detail_pop .field .row button.hang_up_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.type_capital .customer_detail_pop .field .row button.hang_up_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_call_close.svg");
          mask-image: url("/assets/img/icon/ico_call_close.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 16px;
  vertical-align: -3px;
  margin-right: 2px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.type_capital .customer_detail_pop .field .row button.hang_up_btn.call {
  background: #be4343;
}
.type_capital .customer_detail_pop .field .row button.hang_up_btn.call:hover {
  background: #ffffff;
  color: #be4343;
  border: 1px solid #be4343;
}
.type_capital .customer_detail_pop .field .row button.hang_up_btn.call:hover::before {
  background-color: #be4343;
}
.type_capital .customer_detail_pop .field .row button.hang_up_btn.phone {
  background: #369997;
}
.type_capital .customer_detail_pop .field .row button.hang_up_btn.phone:hover {
  background: #ffffff;
  color: #369997;
  border: 1px solid #369997;
}
.type_capital .customer_detail_pop .field .row button.hang_up_btn.phone:hover::before {
  background-color: #369997;
}
.type_capital .customer_detail_pop .field .row button.basic_btn {
  height: 28px;
  font-size: 14px;
  width: 105px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_capital .customer_detail_pop .field .row button.basic_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.type_capital .customer_detail_pop .field .row button.basic_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.type_capital .customer_detail_pop .field .row button.basic_btn.gray {
  background: #999999;
  color: #ffffff;
}
.type_capital .customer_detail_pop .field .row button.basic_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.type_capital .customer_detail_pop .field .row button.basic_btn.gray:disabled {
  pointer-events: none;
}
.type_capital .customer_detail_pop .field .row button.basic_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.type_capital .customer_detail_pop .field .row button.basic_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.type_capital .customer_detail_pop .field .row button.basic_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.type_capital .customer_detail_pop .field .row button.basic_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_capital .customer_detail_pop .field .row button.basic_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.type_capital .customer_detail_pop .field .row button.basic_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.type_capital .customer_detail_pop .field .row button.basic_btn.reverse {
  background: #fff;
  color: #435ebe;
  border: 1px solid #435ebe;
}
.type_capital .customer_detail_pop .field .row button.basic_btn.reverse:hover {
  background: #435ebe;
  color: #fff;
}
.type_capital .customer_detail_pop .field .row button.basic_btn.long {
  width: 162px;
}
.type_capital .customer_detail_pop .field .table_box {
  max-height: 136px;
  overflow-y: auto;
}
.type_capital .customer_detail_pop .field .table_box.xscroll table {
  width: 100%;
  table-layout: auto;
}
.type_capital .customer_detail_pop .field .table_box.xscroll table td {
  min-width: 100px;
  padding: 4px 0;
}
.type_capital .customer_detail_pop .field .table_box.xscroll table td.long {
  min-width: 300px;
}
.type_capital .customer_detail_pop .field .table_box::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.type_capital .customer_detail_pop .field .table_box::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.type_capital .customer_detail_pop .field .table_box::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.type_capital .customer_detail_pop .field .table_box::-webkit-scrollbar-track {
  background: #ffffff;
}
.type_capital .customer_detail_pop .field .table_box::-webkit-scrollbar-button {
  display: none;
}
.type_capital .customer_detail_pop .field .table_box.short {
  max-height: 110px;
}
.type_capital .customer_detail_pop .field .table_box table {
  width: 100%;
  table-layout: fixed;
}
.type_capital .customer_detail_pop .field .table_box table thead th {
  position: relative;
  vertical-align: middle;
  background: #435ebe;
  border: none;
  padding: 6px 0;
  color: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 14px;
}
.type_capital .customer_detail_pop .field .table_box table thead th.fixed {
  position: sticky;
  top: 0;
  z-index: 1;
  border: 0;
}
.type_capital .customer_detail_pop .field .table_box table thead th.fixed::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  display: table-column-group;
  width: -webkit-fill-available;
  height: 100%;
  border-bottom: 1px solid #dce7f1;
  z-index: 1;
}
.type_capital .customer_detail_pop .field .table_box table thead th .checkbox {
  z-index: 100;
}
.type_capital .customer_detail_pop .field .table_box table tbody td {
  position: relative;
  vertical-align: middle;
  background: #ffffff;
  border-bottom: 1px solid #dce7f1;
  padding: 8px 0;
  color: #222222;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  word-break: keep-all;
}
.type_capital .customer_detail_pop .field .table_box table tbody td .listen_btn {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  color: #222222;
  border-bottom: 1px solid #222222;
  padding: 0 2px;
}
.type_capital .customer_detail_pop .field .table_box table tbody td .listen_btn:hover {
  color: #435ebe;
  border-bottom: 1px solid #435ebe;
}
.type_capital .customer_detail_pop .field .text_box {
  margin-top: 10px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_capital .customer_detail_pop .field .text_box textarea {
  resize: none;
  padding: 0 10px 10px 10px;
  width: calc(100% - 100px);
  height: 28px;
  outline: none;
  border: 0;
  border-bottom: 1px solid #aaa;
  background: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_capital .customer_detail_pop .field .text_box textarea::-webkit-input-placeholder {
  color: #6c757d;
}
.type_capital .customer_detail_pop .field .text_box textarea::-moz-placeholder {
  color: #6c757d;
}
.type_capital .customer_detail_pop .field .text_box textarea:-ms-input-placeholder {
  color: #6c757d;
}
.type_capital .customer_detail_pop .field .text_box textarea::-ms-input-placeholder {
  color: #6c757d;
}
.type_capital .customer_detail_pop .field .text_box textarea::placeholder {
  color: #6c757d;
}
.type_capital .customer_detail_pop .field .text_box textarea:focus {
  border-bottom: 1px solid #435ebe;
  outline: none;
}
.type_capital .customer_detail_pop .field .text_box textarea:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.type_capital .customer_detail_pop .field .text_box textarea:disabled, .type_capital .customer_detail_pop .field .text_box textarea:read-only {
  background: #e9ecef;
  cursor: default;
}
.type_capital .customer_detail_pop .field .text_box button {
  height: 28px;
  font-size: 14px;
  width: 70px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_capital .customer_detail_pop .field .text_box button:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.type_capital .customer_detail_pop .field .text_box button:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.type_capital .customer_detail_pop .field .text_box button.gray {
  background: #999999;
  color: #ffffff;
}
.type_capital .customer_detail_pop .field .text_box button.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.type_capital .customer_detail_pop .field .text_box button.gray:disabled {
  pointer-events: none;
}
.type_capital .customer_detail_pop .field .text_box button.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.type_capital .customer_detail_pop .field .text_box button.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.type_capital .customer_detail_pop .field .text_box button.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.type_capital .customer_detail_pop .field .text_box button.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_capital .customer_detail_pop .field .text_box button.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.type_capital .customer_detail_pop .field .text_box button.excel_btn:hover::before {
  background-color: #1d6f42;
}
.type_capital .customer_detail_pop .field .text_box.long textarea {
  height: 56px;
  border: 1px solid #dce7f1;
  border-radius: 4px;
  padding: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.type_capital .customer_detail_pop .field .text_box.long textarea:focus {
  border: 1px solid #435ebe;
}
.type_capital .customer_detail_pop .field .tab_section {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.type_capital .customer_detail_pop .field .tab_section .tab {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 6px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  top: 1px;
}
.type_capital .customer_detail_pop .field .tab_section .tab li {
  border-radius: 4px 4px 0 0;
  background: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 500;
  color: #777777;
  font-size: 15px;
  text-align: center;
  cursor: pointer;
  border: 1px solid #dce7f1;
  border-bottom: none;
  -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.type_capital .customer_detail_pop .field .tab_section .tab li.active {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #435ebe;
  border: 1px solid #435ebe;
  border-bottom: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  z-index: 1;
}
.type_capital .customer_detail_pop .field .tab_section .tab li:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  border-bottom: none;
}
.type_capital .customer_detail_pop .field .tab_section .tab_box {
  display: none;
  position: relative;
  background: #ffffff;
  border: 1px solid #dce7f1;
  border-top: 1px solid #435ebe;
  width: 100%;
  padding: 16px;
  border-radius: 0 0 5px 5px;
  -webkit-box-shadow: rgba(99, 99, 99, 0.15) 0px 1px 8px 0px;
          box-shadow: rgba(99, 99, 99, 0.15) 0px 1px 8px 0px;
}
.type_capital .customer_detail_pop .field .tab_section .tab_box.show {
  display: block;
}
.type_capital .customer_detail_pop .field .tab_section .tab li {
  padding: 0 20px;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
}
.type_capital .customer_detail_pop .field .tab_section .tab_box {
  border: none;
  border-top: 1px solid #dce7f1;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  padding: 12px 0;
  height: 200px;
}
.type_capital .customer_detail_pop .field .tab_section .tab_box .tab_content {
  width: 100%;
}
.type_capital .customer_detail_pop .field .file_upload_box {
  margin-top: 20px;
  position: relative;
}
.type_capital .customer_detail_pop .field .file_upload_box .file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_capital .customer_detail_pop .field .file_upload_box .file label {
  cursor: pointer;
  display: block;
  width: 100px;
  height: 32px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 32px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 0 4px 4px 0;
}
.type_capital .customer_detail_pop .field .file_upload_box .file label::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_file.svg");
          mask-image: url("/assets/img/icon/ico_file.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 4px;
}
.type_capital .customer_detail_pop .field .file_upload_box .file input[type=text] {
  width: 500px;
  height: 32px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  border-radius: 4px 0 0 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_capital .customer_detail_pop .field .file_upload_box .file input[type=text]::-webkit-input-placeholder {
  color: #6c757d;
}
.type_capital .customer_detail_pop .field .file_upload_box .file input[type=text]::-moz-placeholder {
  color: #6c757d;
}
.type_capital .customer_detail_pop .field .file_upload_box .file input[type=text]:-ms-input-placeholder {
  color: #6c757d;
}
.type_capital .customer_detail_pop .field .file_upload_box .file input[type=text]::-ms-input-placeholder {
  color: #6c757d;
}
.type_capital .customer_detail_pop .field .file_upload_box .file input[type=text]::placeholder {
  color: #6c757d;
}
.type_capital .customer_detail_pop .field .file_upload_box .file input[type=text]:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.type_capital .customer_detail_pop .field .file_upload_box .file input[type=text]:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.type_capital .customer_detail_pop .field .file_upload_box .file input[type=text]:disabled, .type_capital .customer_detail_pop .field .file_upload_box .file input[type=text]:read-only {
  background: #e9ecef;
  cursor: default;
}
.type_capital .customer_detail_pop .field .file_upload_box .file input[type=file] {
  display: none;
}
.type_capital .customer_detail_pop .field .file_upload_box .file .upload_btn {
  height: 32px;
  font-size: 14px;
  width: 100px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
  margin-left: 20px;
}
.type_capital .customer_detail_pop .field .file_upload_box .file .upload_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.type_capital .customer_detail_pop .field .file_upload_box .file .upload_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.type_capital .customer_detail_pop .field .file_upload_box .file .upload_btn.gray {
  background: #999999;
  color: #ffffff;
}
.type_capital .customer_detail_pop .field .file_upload_box .file .upload_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.type_capital .customer_detail_pop .field .file_upload_box .file .upload_btn.gray:disabled {
  pointer-events: none;
}
.type_capital .customer_detail_pop .field .file_upload_box .file .upload_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.type_capital .customer_detail_pop .field .file_upload_box .file .upload_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.type_capital .customer_detail_pop .field .file_upload_box .file .upload_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.type_capital .customer_detail_pop .field .file_upload_box .file .upload_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_capital .customer_detail_pop .field .file_upload_box .file .upload_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.type_capital .customer_detail_pop .field .file_upload_box .file .upload_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.type_capital .customer_detail_pop .field .file_upload_box .lable {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #435ebe;
  font-size: 15px;
  margin-bottom: 6px;
}
.type_capital .customer_detail_pop .field .file_box {
  width: 100%;
  height: 110px;
  overflow-y: auto;
}
.type_capital .customer_detail_pop .field .file_box::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.type_capital .customer_detail_pop .field .file_box::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.type_capital .customer_detail_pop .field .file_box::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.type_capital .customer_detail_pop .field .file_box::-webkit-scrollbar-track {
  background: #ffffff;
}
.type_capital .customer_detail_pop .field .file_box::-webkit-scrollbar-button {
  display: none;
}
.type_capital .customer_detail_pop .field .file_box table {
  width: 100%;
  table-layout: fixed;
}
.type_capital .customer_detail_pop .field .file_box table th {
  position: relative;
  padding: 6px 0;
  font-family: "Pretendard Variable";
  font-weight: 500;
  color: #222222;
  font-size: 14px;
  vertical-align: middle;
  background: #435ebe;
  color: #ffffff;
}
.type_capital .customer_detail_pop .field .file_box table th:first-child {
  width: 40px;
  margin: 0 auto;
  padding: 0 10px;
}
.type_capital .customer_detail_pop .field .file_box table th:last-child {
  width: 120px;
  margin: 0 auto;
}
.type_capital .customer_detail_pop .field .file_box table th .file_delete_btn {
  font-family: "Pretendard Variable";
  font-weight: 500;
  color: #ffffff;
  font-size: 14px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.type_capital .customer_detail_pop .field .file_box table th .file_delete_btn:hover {
  text-decoration: underline;
}
.type_capital .customer_detail_pop .field .file_box table th .file_save_btn {
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
}
.type_capital .customer_detail_pop .field .file_box table th .file_save_btn:hover {
  text-decoration: underline;
}
.type_capital .customer_detail_pop .field .file_box table th .file_save_btn:hover::before {
  background-color: #222222;
}
.type_capital .customer_detail_pop .field .file_box table th .file_save_btn::before {
  margin-left: 10px;
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_download.svg");
          mask-image: url("/assets/img/icon/ico_download.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 14px;
  margin-right: 2px;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.type_capital .customer_detail_pop .field .file_box table td {
  padding: 4px 0;
  font-family: "Pretendard Variable";
  font-weight: 500;
  color: #222222;
  font-size: 14px;
  vertical-align: middle;
  border-bottom: 1px solid #dce7f1;
}
.type_capital .customer_detail_pop .field .file_box table td:first-child {
  width: 40px;
  margin: 0 auto;
  text-align: center;
  padding: 0 10px;
}
.type_capital .customer_detail_pop .field .file_box table td.file_name {
  position: relative;
  padding: 0 0 0 20px;
  max-width: calc(100% - 40px - 120px);
}
.type_capital .customer_detail_pop .field .file_box table td.file_name p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: "Pretendard Variable";
  font-weight: 500;
  color: #222222;
  font-size: 15px;
}
.type_capital .customer_detail_pop .field .file_box table td:last-child {
  width: 120px;
  margin: 0 auto;
  text-align: center;
}
.type_capital .customer_detail_pop .field .file_box table td .file_delete_btn {
  height: 28px;
  font-size: 14px;
  width: 60px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  border: 1px solid #dc3545 !important;
  background: #ffffff;
  color: #dc3545;
  font-size: 14px;
}
.type_capital .customer_detail_pop .field .file_box table td .file_delete_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.type_capital .customer_detail_pop .field .file_box table td .file_delete_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.type_capital .customer_detail_pop .field .file_box table td .file_delete_btn.gray {
  background: #999999;
  color: #ffffff;
}
.type_capital .customer_detail_pop .field .file_box table td .file_delete_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.type_capital .customer_detail_pop .field .file_box table td .file_delete_btn.gray:disabled {
  pointer-events: none;
}
.type_capital .customer_detail_pop .field .file_box table td .file_delete_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.type_capital .customer_detail_pop .field .file_box table td .file_delete_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.type_capital .customer_detail_pop .field .file_box table td .file_delete_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.type_capital .customer_detail_pop .field .file_box table td .file_delete_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_capital .customer_detail_pop .field .file_box table td .file_delete_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.type_capital .customer_detail_pop .field .file_box table td .file_delete_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.type_capital .customer_detail_pop .field .file_box table td .file_delete_btn::before {
  content: "";
  display: inline-block;
  background-color: #dc3545;
  -webkit-mask-image: url("/assets/img/icon/ico_delete.svg");
          mask-image: url("/assets/img/icon/ico_delete.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 14px;
  margin-right: 4px;
  vertical-align: middle;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_capital .customer_detail_pop .field .file_box table td .file_delete_btn:hover {
  background: #dc3545;
  color: #ffffff;
}
.type_capital .customer_detail_pop .field .file_box table td .file_delete_btn:hover::before {
  background-color: #ffffff;
}
.type_capital .customer_detail_pop .field .file_box table .checkbox label::before {
  border-width: 2px;
  width: 16px;
  height: 16px;
}

.type_dealer .search_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_dealer .search_box .input_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_dealer .search_box .input_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.type_dealer .search_box .input_box input {
  width: 140px;
  height: 28px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_dealer .search_box .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.type_dealer .search_box .input_box input::-moz-placeholder {
  color: #6c757d;
}
.type_dealer .search_box .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.type_dealer .search_box .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.type_dealer .search_box .input_box input::placeholder {
  color: #6c757d;
}
.type_dealer .search_box .input_box input:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.type_dealer .search_box .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.type_dealer .search_box .input_box input:disabled, .type_dealer .search_box .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.type_dealer .search_box .input_box.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.type_dealer .search_box .input_box.date .calendar {
  position: relative;
}
.type_dealer .search_box .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_calendar.svg");
          mask-image: url("/assets/img/icon/ico_calendar.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.type_dealer .search_box .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.type_dealer .search_box .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.type_dealer .search_box .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.type_dealer .search_box .input_box.search input {
  width: 450px;
}
.type_dealer .search_box .input_box.search .input_search_btn {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.type_dealer .search_box .input_box.search .input_search_btn:hover {
  width: 20px;
  height: 20px;
}
.type_dealer .search_box .search_btn {
  height: 28px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_dealer .search_box .search_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.type_dealer .search_box .search_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.type_dealer .search_box .search_btn.gray {
  background: #999999;
  color: #ffffff;
}
.type_dealer .search_box .search_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.type_dealer .search_box .search_btn.gray:disabled {
  pointer-events: none;
}
.type_dealer .search_box .search_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.type_dealer .search_box .search_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.type_dealer .search_box .search_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.type_dealer .search_box .search_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_dealer .search_box .search_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.type_dealer .search_box .search_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.type_dealer .search_box .search_btn::after {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 14px;
  height: 14px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  vertical-align: -2px;
  margin-left: 4px;
}
.type_dealer .search_box .search_btn:hover::after {
  background-color: #435ebe;
}
.type_dealer .table_box {
  margin-top: 20px;
  height: 300px;
  position: relative;
  overflow-x: auto;
  overflow-y: auto;
}
.type_dealer .table_box::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.type_dealer .table_box::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.type_dealer .table_box::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.type_dealer .table_box::-webkit-scrollbar-track {
  background: #ffffff;
}
.type_dealer .table_box::-webkit-scrollbar-button {
  display: none;
}
.type_dealer .table_box table {
  width: 100%;
  table-layout: fixed;
  min-width: 1500px;
}
.type_dealer .table_box table thead th {
  position: relative;
  vertical-align: middle;
  background: #435ebe;
  border: none;
  padding: 6px 0;
  color: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 14px;
}
.type_dealer .table_box table thead th.fixed {
  position: sticky;
  top: 0;
  z-index: 1;
  border: 0;
}
.type_dealer .table_box table thead th.fixed::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  display: table-column-group;
  width: -webkit-fill-available;
  height: 100%;
  border-bottom: 1px solid #dce7f1;
  z-index: 1;
}
.type_dealer .table_box table thead th .checkbox {
  z-index: 100;
}
.type_dealer .table_box table tbody tr {
  cursor: pointer;
}
.type_dealer .table_box table tbody tr:hover td {
  background: rgba(124, 141, 181, 0.2);
}
.type_dealer .table_box table tbody td {
  position: relative;
  vertical-align: middle;
  background: #ffffff;
  border-bottom: 1px solid #dce7f1;
  padding: 8px 0;
  color: #222222;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.type_dealer .table_box table tbody td.overlap:hover .memo_tooltip {
  visibility: visible;
  opacity: 1;
  z-index: 10;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  height: auto;
}
.type_dealer .table_box table tbody td.overlap .memo {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 4px;
}
.type_dealer .table_box table tbody td.overlap .memo_tooltip {
  position: absolute;
  top: -25px;
  left: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  padding: 10px;
  color: white;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  text-align: left;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.9);
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  height: 0;
  overflow: hidden;
}
.type_dealer .table_box table tbody .ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 4px;
}
.type_dealer .table_box table .checkbox {
  width: 40px;
}
.type_dealer .table_box table .checkbox label::before {
  border-width: 2px;
  width: 16px;
  height: 16px;
  border: 1px solid #e1e3ea;
}
.type_dealer .table_box table .checkbox label::after {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
}
.type_dealer .table_box table {
  min-width: 600px;
}
.type_dealer .dealer_add_btn {
  position: absolute;
  left: 20px;
  height: 36px;
  font-size: 12px;
  width: 80px;
  border-radius: 8px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 14px;
  background: #fff;
  color: #435ebe;
  border: 1px solid #435ebe;
}
.type_dealer .dealer_add_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.type_dealer .dealer_add_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.type_dealer .dealer_add_btn.gray {
  background: #999999;
  color: #ffffff;
}
.type_dealer .dealer_add_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.type_dealer .dealer_add_btn.gray:disabled {
  pointer-events: none;
}
.type_dealer .dealer_add_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.type_dealer .dealer_add_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.type_dealer .dealer_add_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.type_dealer .dealer_add_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.type_dealer .dealer_add_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.type_dealer .dealer_add_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.type_dealer .dealer_add_btn:hover {
  background: #435ebe;
  color: #fff;
}

.page_content.notice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.notice .left {
  width: 100%;
  min-height: 100%;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  -webkit-box-shadow: rgba(99, 99, 99, 0.15) 0px 0px 8px 0px;
          box-shadow: rgba(99, 99, 99, 0.15) 0px 0px 8px 0px;
}
.page_content.notice .left.narrow {
  width: 38%;
}
.page_content.notice .right {
  width: 60%;
  min-height: 100%;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  -webkit-box-shadow: rgba(99, 99, 99, 0.15) 0px 0px 8px 0px;
          box-shadow: rgba(99, 99, 99, 0.15) 0px 0px 8px 0px;
}
.page_content.notice .right.hide {
  width: 0% !important;
  overflow: hidden;
  display: none;
}
.page_content.notice .search_section {
  position: relative;
  width: 100%;
  padding: 16px;
}
.page_content.notice .search_section .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.notice .search_section .flex.kakao {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page_content.notice .search_section .flex.kakao .input_box.short {
  width: 20%;
}
.page_content.notice .search_section .flex.kakao .input_box.md {
  width: 39%;
}
.page_content.notice .search_section .flex .input_box {
  width: 30%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.notice .search_section .flex .input_box.long {
  width: 69%;
}
.page_content.notice .search_section .flex .input_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.page_content.notice .search_section .flex .input_box input {
  width: 100%;
  height: 28px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.notice .search_section .flex .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.page_content.notice .search_section .flex .input_box input::-moz-placeholder {
  color: #6c757d;
}
.page_content.notice .search_section .flex .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.page_content.notice .search_section .flex .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.page_content.notice .search_section .flex .input_box input::placeholder {
  color: #6c757d;
}
.page_content.notice .search_section .flex .input_box input:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.page_content.notice .search_section .flex .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.page_content.notice .search_section .flex .input_box input:disabled, .page_content.notice .search_section .flex .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.page_content.notice .search_section .flex .input_box.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.notice .search_section .flex .input_box.date .calendar {
  position: relative;
}
.page_content.notice .search_section .flex .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_calendar.svg");
          mask-image: url("/assets/img/icon/ico_calendar.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.page_content.notice .search_section .flex .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.page_content.notice .search_section .flex .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.page_content.notice .search_section .flex .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.page_content.notice .search_section .flex .input_box.search input {
  width: 450px;
}
.page_content.notice .search_section .flex .input_box.search .input_search_btn {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.page_content.notice .search_section .flex .input_box.search .input_search_btn:hover {
  width: 20px;
  height: 20px;
}
.page_content.notice .search_section .flex .input_box label {
  min-width: 80px;
}
.page_content.notice .search_section .btn_box {
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.notice .search_section .btn_box .submit_btn {
  height: 30px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
}
.page_content.notice .search_section .btn_box .submit_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.page_content.notice .search_section .btn_box .submit_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.page_content.notice .search_section .btn_box .submit_btn.gray {
  background: #999999;
  color: #ffffff;
}
.page_content.notice .search_section .btn_box .submit_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.page_content.notice .search_section .btn_box .submit_btn.gray:disabled {
  pointer-events: none;
}
.page_content.notice .search_section .btn_box .submit_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.page_content.notice .search_section .btn_box .submit_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.page_content.notice .search_section .btn_box .submit_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.page_content.notice .search_section .btn_box .submit_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.notice .search_section .btn_box .submit_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.page_content.notice .search_section .btn_box .submit_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.page_content.notice .search_section .btn_box .cancel_btn {
  height: 30px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
}
.page_content.notice .search_section .btn_box .cancel_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.page_content.notice .search_section .btn_box .cancel_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.page_content.notice .search_section .btn_box .cancel_btn.gray {
  background: #999999;
  color: #ffffff;
}
.page_content.notice .search_section .btn_box .cancel_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.page_content.notice .search_section .btn_box .cancel_btn.gray:disabled {
  pointer-events: none;
}
.page_content.notice .search_section .btn_box .cancel_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.page_content.notice .search_section .btn_box .cancel_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.page_content.notice .search_section .btn_box .cancel_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.page_content.notice .search_section .btn_box .cancel_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.notice .search_section .btn_box .cancel_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.page_content.notice .search_section .btn_box .cancel_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.page_content.notice .table_section {
  position: relative;
  width: 100%;
  padding: 16px;
}
.page_content.notice .table_section .add_btn {
  position: absolute;
  right: 20px;
  height: 30px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.notice .table_section .add_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.page_content.notice .table_section .add_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.page_content.notice .table_section .add_btn.gray {
  background: #999999;
  color: #ffffff;
}
.page_content.notice .table_section .add_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.page_content.notice .table_section .add_btn.gray:disabled {
  pointer-events: none;
}
.page_content.notice .table_section .add_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.page_content.notice .table_section .add_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.page_content.notice .table_section .add_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.page_content.notice .table_section .add_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.notice .table_section .add_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.page_content.notice .table_section .add_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.page_content.notice .table_section .add_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_plus.svg");
          mask-image: url("/assets/img/icon/ico_plus.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 16px;
  vertical-align: -4px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.notice .table_section .add_btn:hover::before {
  background-color: #435ebe;
}
.page_content.notice .table_section .delete_btn {
  position: absolute;
  left: 20px;
  height: 30px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  border: 1px solid #dc3545 !important;
  background: #dc3545;
  color: #ffffff;
  font-size: 13px;
}
.page_content.notice .table_section .delete_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.page_content.notice .table_section .delete_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.page_content.notice .table_section .delete_btn.gray {
  background: #999999;
  color: #ffffff;
}
.page_content.notice .table_section .delete_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.page_content.notice .table_section .delete_btn.gray:disabled {
  pointer-events: none;
}
.page_content.notice .table_section .delete_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.page_content.notice .table_section .delete_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.page_content.notice .table_section .delete_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.page_content.notice .table_section .delete_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.notice .table_section .delete_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.page_content.notice .table_section .delete_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.page_content.notice .table_section .delete_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_delete.svg");
          mask-image: url("/assets/img/icon/ico_delete.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 14px;
  margin-right: 4px;
  vertical-align: middle;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.notice .table_section .delete_btn:hover {
  background: #ffffff;
  color: #dc3545;
}
.page_content.notice .table_section .delete_btn:hover::before {
  background-color: #dc3545;
}
.page_content.notice .table_section .table_box {
  margin-top: 46px;
  position: relative;
  overflow-x: auto;
  overflow-y: auto;
  height: 630px;
}
.page_content.notice .table_section .table_box::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.page_content.notice .table_section .table_box::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.page_content.notice .table_section .table_box::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.page_content.notice .table_section .table_box::-webkit-scrollbar-track {
  background: #ffffff;
}
.page_content.notice .table_section .table_box::-webkit-scrollbar-button {
  display: none;
}
.page_content.notice .table_section .table_box table {
  width: 100%;
  table-layout: fixed;
  min-width: 1500px;
}
.page_content.notice .table_section .table_box table thead th {
  position: relative;
  vertical-align: middle;
  background: #435ebe;
  border: none;
  padding: 6px 0;
  color: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 14px;
}
.page_content.notice .table_section .table_box table thead th.fixed {
  position: sticky;
  top: 0;
  z-index: 1;
  border: 0;
}
.page_content.notice .table_section .table_box table thead th.fixed::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  display: table-column-group;
  width: -webkit-fill-available;
  height: 100%;
  border-bottom: 1px solid #dce7f1;
  z-index: 1;
}
.page_content.notice .table_section .table_box table thead th .checkbox {
  z-index: 100;
}
.page_content.notice .table_section .table_box table tbody tr {
  cursor: pointer;
}
.page_content.notice .table_section .table_box table tbody tr:hover td {
  background: rgba(124, 141, 181, 0.2);
}
.page_content.notice .table_section .table_box table tbody td {
  position: relative;
  vertical-align: middle;
  background: #ffffff;
  border-bottom: 1px solid #dce7f1;
  padding: 8px 0;
  color: #222222;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.page_content.notice .table_section .table_box table tbody td.overlap:hover .memo_tooltip {
  visibility: visible;
  opacity: 1;
  z-index: 10;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  height: auto;
}
.page_content.notice .table_section .table_box table tbody td.overlap .memo {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 4px;
}
.page_content.notice .table_section .table_box table tbody td.overlap .memo_tooltip {
  position: absolute;
  top: -25px;
  left: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  padding: 10px;
  color: white;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  text-align: left;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.9);
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  height: 0;
  overflow: hidden;
}
.page_content.notice .table_section .table_box table tbody .ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 4px;
}
.page_content.notice .table_section .table_box table .checkbox {
  width: 40px;
}
.page_content.notice .table_section .table_box table .checkbox label::before {
  border-width: 2px;
  width: 16px;
  height: 16px;
  border: 1px solid #e1e3ea;
}
.page_content.notice .table_section .table_box table .checkbox label::after {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
}
.page_content.notice .table_section .table_box table {
  min-width: 600px;
}
.page_content.notice .write_section {
  position: relative;
  width: 100%;
  padding: 16px;
}
.page_content.notice .write_section .regi_box .tit {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 18px;
  color: #222222;
}
.page_content.notice .write_section .regi_box .input_box {
  margin-top: 16px;
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.notice .write_section .regi_box .input_box label {
  min-width: 70px;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 0 0 4px;
}
.page_content.notice .write_section .regi_box .input_box input {
  width: 100%;
  height: 28px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.notice .write_section .regi_box .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.page_content.notice .write_section .regi_box .input_box input::-moz-placeholder {
  color: #6c757d;
}
.page_content.notice .write_section .regi_box .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.page_content.notice .write_section .regi_box .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.page_content.notice .write_section .regi_box .input_box input::placeholder {
  color: #6c757d;
}
.page_content.notice .write_section .regi_box .input_box input:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.page_content.notice .write_section .regi_box .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.page_content.notice .write_section .regi_box .input_box input:disabled, .page_content.notice .write_section .regi_box .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.page_content.notice .write_section .regi_box .input_box.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.notice .write_section .regi_box .input_box.date .calendar {
  position: relative;
}
.page_content.notice .write_section .regi_box .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_calendar.svg");
          mask-image: url("/assets/img/icon/ico_calendar.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.page_content.notice .write_section .regi_box .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.page_content.notice .write_section .regi_box .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.page_content.notice .write_section .regi_box .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.page_content.notice .write_section .regi_box .input_box.search input {
  width: 450px;
}
.page_content.notice .write_section .regi_box .input_box.search .input_search_btn {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_search.svg");
          mask-image: url("/assets/img/icon/ico_search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.page_content.notice .write_section .regi_box .input_box.search .input_search_btn:hover {
  width: 20px;
  height: 20px;
}
.page_content.notice .write_section .regi_box .input_box label {
  min-width: 80px;
}
.page_content.notice .write_section .regi_box .file_upload_box {
  margin-top: 20px;
  position: relative;
}
.page_content.notice .write_section .regi_box .file_upload_box .file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.notice .write_section .regi_box .file_upload_box .file label {
  cursor: pointer;
  display: block;
  width: 100px;
  height: 32px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 32px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 0 4px 4px 0;
}
.page_content.notice .write_section .regi_box .file_upload_box .file label::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_file.svg");
          mask-image: url("/assets/img/icon/ico_file.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 4px;
}
.page_content.notice .write_section .regi_box .file_upload_box .file input[type=text] {
  width: 100%;
  height: 32px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  color: #222222;
  border-radius: 4px 0 0 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.notice .write_section .regi_box .file_upload_box .file input[type=text]::-webkit-input-placeholder {
  color: #6c757d;
}
.page_content.notice .write_section .regi_box .file_upload_box .file input[type=text]::-moz-placeholder {
  color: #6c757d;
}
.page_content.notice .write_section .regi_box .file_upload_box .file input[type=text]:-ms-input-placeholder {
  color: #6c757d;
}
.page_content.notice .write_section .regi_box .file_upload_box .file input[type=text]::-ms-input-placeholder {
  color: #6c757d;
}
.page_content.notice .write_section .regi_box .file_upload_box .file input[type=text]::placeholder {
  color: #6c757d;
}
.page_content.notice .write_section .regi_box .file_upload_box .file input[type=text]:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.page_content.notice .write_section .regi_box .file_upload_box .file input[type=text]:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.page_content.notice .write_section .regi_box .file_upload_box .file input[type=text]:disabled, .page_content.notice .write_section .regi_box .file_upload_box .file input[type=text]:read-only {
  background: #e9ecef;
  cursor: default;
}
.page_content.notice .write_section .regi_box .file_upload_box .file input[type=file] {
  display: none;
}
.page_content.notice .write_section .regi_box .file_upload_box .file .upload_btn {
  height: 32px;
  font-size: 14px;
  width: 100px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
  margin-left: 20px;
}
.page_content.notice .write_section .regi_box .file_upload_box .file .upload_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.page_content.notice .write_section .regi_box .file_upload_box .file .upload_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.page_content.notice .write_section .regi_box .file_upload_box .file .upload_btn.gray {
  background: #999999;
  color: #ffffff;
}
.page_content.notice .write_section .regi_box .file_upload_box .file .upload_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.page_content.notice .write_section .regi_box .file_upload_box .file .upload_btn.gray:disabled {
  pointer-events: none;
}
.page_content.notice .write_section .regi_box .file_upload_box .file .upload_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.page_content.notice .write_section .regi_box .file_upload_box .file .upload_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.page_content.notice .write_section .regi_box .file_upload_box .file .upload_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.page_content.notice .write_section .regi_box .file_upload_box .file .upload_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.notice .write_section .regi_box .file_upload_box .file .upload_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.page_content.notice .write_section .regi_box .file_upload_box .file .upload_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.page_content.notice .write_section .regi_box .file_box {
  margin-top: 16px;
  width: 100%;
  height: 80px;
  overflow-y: auto;
  border: 1px solid #dce7f1;
  border-radius: 4px;
  padding: 2px 10px;
}
.page_content.notice .write_section .regi_box .file_box::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.page_content.notice .write_section .regi_box .file_box::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.page_content.notice .write_section .regi_box .file_box::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.page_content.notice .write_section .regi_box .file_box::-webkit-scrollbar-track {
  background: #ffffff;
}
.page_content.notice .write_section .regi_box .file_box::-webkit-scrollbar-button {
  display: none;
}
.page_content.notice .write_section .regi_box .file_box table {
  width: 100%;
  table-layout: fixed;
}
.page_content.notice .write_section .regi_box .file_box table th {
  padding: 10px 0;
  font-family: "Pretendard Variable";
  font-weight: 500;
  color: #222222;
  font-size: 14px;
  vertical-align: middle;
}
.page_content.notice .write_section .regi_box .file_box table th:first-child {
  width: 20px;
  margin: 0 auto;
}
.page_content.notice .write_section .regi_box .file_box table th:last-child {
  width: 120px;
  margin: 0 auto;
}
.page_content.notice .write_section .regi_box .file_box table th .file_save_btn {
  font-family: "Pretendard Variable";
  font-weight: 500;
  color: #222222;
  font-size: 14px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.page_content.notice .write_section .regi_box .file_box table th .file_save_btn:hover {
  color: #435ebe;
  text-decoration: underline;
}
.page_content.notice .write_section .regi_box .file_box table th .file_delete_btn {
  font-family: "Pretendard Variable";
  font-weight: 500;
  color: #222222;
  font-size: 14px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.page_content.notice .write_section .regi_box .file_box table th .file_delete_btn:hover {
  color: #dc3545;
  text-decoration: underline;
}
.page_content.notice .write_section .regi_box .file_box table td {
  padding: 5px 0;
  font-family: "Pretendard Variable";
  font-weight: 500;
  color: #222222;
  font-size: 13px;
  vertical-align: middle;
}
.page_content.notice .write_section .regi_box .file_box table td:first-child {
  width: 20px;
  margin: 0 auto;
  text-align: center;
}
.page_content.notice .write_section .regi_box .file_box table td.file_name {
  padding: 0 20px;
  width: calc(100% - 120px);
}
.page_content.notice .write_section .regi_box .file_box table td.file_name p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: "Pretendard Variable";
  font-weight: 500;
  color: #222222;
  font-size: 13px;
}
.page_content.notice .write_section .regi_box .file_box table td:last-child {
  width: 120px;
  margin: 0 auto;
  text-align: center;
}
.page_content.notice .write_section .regi_box .file_box table td .file_save_btn {
  height: 28px;
  font-size: 14px;
  width: 60px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
}
.page_content.notice .write_section .regi_box .file_box table td .file_save_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.page_content.notice .write_section .regi_box .file_box table td .file_save_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.page_content.notice .write_section .regi_box .file_box table td .file_save_btn.gray {
  background: #999999;
  color: #ffffff;
}
.page_content.notice .write_section .regi_box .file_box table td .file_save_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.page_content.notice .write_section .regi_box .file_box table td .file_save_btn.gray:disabled {
  pointer-events: none;
}
.page_content.notice .write_section .regi_box .file_box table td .file_save_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.page_content.notice .write_section .regi_box .file_box table td .file_save_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.page_content.notice .write_section .regi_box .file_box table td .file_save_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.page_content.notice .write_section .regi_box .file_box table td .file_save_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.notice .write_section .regi_box .file_box table td .file_save_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.page_content.notice .write_section .regi_box .file_box table td .file_save_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.page_content.notice .write_section .regi_box .file_box table td .file_save_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_download.svg");
          mask-image: url("/assets/img/icon/ico_download.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 14px;
  margin-right: 4px;
  vertical-align: middle;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.notice .write_section .regi_box .file_box table td .file_save_btn:hover::before {
  background-color: #435ebe;
}
.page_content.notice .write_section .regi_box .file_box table td .file_delete_btn {
  height: 28px;
  font-size: 14px;
  width: 60px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  border: 1px solid #dc3545 !important;
  background: #ffffff;
  color: #dc3545;
  font-size: 14px;
}
.page_content.notice .write_section .regi_box .file_box table td .file_delete_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.page_content.notice .write_section .regi_box .file_box table td .file_delete_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.page_content.notice .write_section .regi_box .file_box table td .file_delete_btn.gray {
  background: #999999;
  color: #ffffff;
}
.page_content.notice .write_section .regi_box .file_box table td .file_delete_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.page_content.notice .write_section .regi_box .file_box table td .file_delete_btn.gray:disabled {
  pointer-events: none;
}
.page_content.notice .write_section .regi_box .file_box table td .file_delete_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.page_content.notice .write_section .regi_box .file_box table td .file_delete_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.page_content.notice .write_section .regi_box .file_box table td .file_delete_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.page_content.notice .write_section .regi_box .file_box table td .file_delete_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.notice .write_section .regi_box .file_box table td .file_delete_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.page_content.notice .write_section .regi_box .file_box table td .file_delete_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.page_content.notice .write_section .regi_box .file_box table td .file_delete_btn::before {
  content: "";
  display: inline-block;
  background-color: #dc3545;
  -webkit-mask-image: url("/assets/img/icon/ico_delete.svg");
          mask-image: url("/assets/img/icon/ico_delete.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 14px;
  margin-right: 4px;
  vertical-align: middle;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.notice .write_section .regi_box .file_box table td .file_delete_btn:hover {
  background: #dc3545;
  color: #ffffff;
}
.page_content.notice .write_section .regi_box .file_box table td .file_delete_btn:hover::before {
  background-color: #ffffff;
}
.page_content.notice .write_section .regi_box .file_box + .text_box textarea {
  height: 540px;
}
.page_content.notice .write_section .regi_box .text_box {
  margin-top: 16px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.page_content.notice .write_section .regi_box .text_box label {
  width: 100%;
  height: 28px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #435ebe;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  background: #435ebe;
  border-radius: 4px 4px 0 0;
}
.page_content.notice .write_section .regi_box .text_box textarea {
  resize: none;
  width: 100%;
  height: 640px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  border-radius: 0 0 4px 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.notice .write_section .regi_box .text_box textarea::-webkit-input-placeholder {
  color: #6c757d;
}
.page_content.notice .write_section .regi_box .text_box textarea::-moz-placeholder {
  color: #6c757d;
}
.page_content.notice .write_section .regi_box .text_box textarea:-ms-input-placeholder {
  color: #6c757d;
}
.page_content.notice .write_section .regi_box .text_box textarea::-ms-input-placeholder {
  color: #6c757d;
}
.page_content.notice .write_section .regi_box .text_box textarea::placeholder {
  color: #6c757d;
}
.page_content.notice .write_section .regi_box .text_box textarea:focus {
  border: 1px solid #435ebe;
  outline: none;
}
.page_content.notice .write_section .regi_box .text_box textarea:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.page_content.notice .write_section .regi_box .text_box textarea:disabled, .page_content.notice .write_section .regi_box .text_box textarea:read-only {
  background: #e9ecef;
  cursor: default;
}
.page_content.notice .write_section .regi_box .save_btn {
  position: absolute;
  right: 16px;
  bottom: -30px;
  height: 30px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.notice .write_section .regi_box .save_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.page_content.notice .write_section .regi_box .save_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.page_content.notice .write_section .regi_box .save_btn.gray {
  background: #999999;
  color: #ffffff;
}
.page_content.notice .write_section .regi_box .save_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.page_content.notice .write_section .regi_box .save_btn.gray:disabled {
  pointer-events: none;
}
.page_content.notice .write_section .regi_box .save_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.page_content.notice .write_section .regi_box .save_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.page_content.notice .write_section .regi_box .save_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.page_content.notice .write_section .regi_box .save_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.notice .write_section .regi_box .save_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.page_content.notice .write_section .regi_box .save_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.page_content.notice .write_section .regi_box .save_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_file.svg");
          mask-image: url("/assets/img/icon/ico_file.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.notice .write_section .regi_box .save_btn:hover::before {
  background-color: #435ebe;
}
.page_content.notice .write_section .regi_box .cancel_btn {
  position: absolute;
  bottom: -30px;
  left: 16px;
  height: 30px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.notice .write_section .regi_box .cancel_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.page_content.notice .write_section .regi_box .cancel_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.page_content.notice .write_section .regi_box .cancel_btn.gray {
  background: #999999;
  color: #ffffff;
}
.page_content.notice .write_section .regi_box .cancel_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.page_content.notice .write_section .regi_box .cancel_btn.gray:disabled {
  pointer-events: none;
}
.page_content.notice .write_section .regi_box .cancel_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.page_content.notice .write_section .regi_box .cancel_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.page_content.notice .write_section .regi_box .cancel_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.page_content.notice .write_section .regi_box .cancel_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.notice .write_section .regi_box .cancel_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.page_content.notice .write_section .regi_box .cancel_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}

.ql-toolbar {
  width: 100%;
}

.ql-container {
  width: 100%;
}

.ql-editor {
  height: 390px;
}

.page_content.status .card_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 50px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.status .card_box + .card_box {
  margin-top: 10px;
}
.page_content.status .card_box .card {
  position: relative;
  width: calc(25% - 50px);
  height: 140px;
  padding: 30px;
  border-radius: 4px;
  background: #ffffff;
  border: 1px solid #dce7f1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.06);
          box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.06);
  cursor: pointer;
}
.page_content.status .card_box .card:hover {
  background: rgba(240, 241, 245, 0.3);
}
.page_content.status .card_box .card .tit {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 18px;
  color: #222222;
}
.page_content.status .card_box .card .count {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 40px;
  color: #222222;
}
.page_content.status .card_box .card .ico {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(67, 94, 190, 0.1);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.status .card_box .card .ico.ready::after {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_call_pause.svg");
          mask-image: url("/assets/img/icon/ico_call_pause.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 30px;
  height: 30px;
}
.page_content.status .card_box .card .ico.call::after {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_call.svg");
          mask-image: url("/assets/img/icon/ico_call.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 30px;
  height: 30px;
}
.page_content.status .card_box .card .ico.in::after {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_call_in.svg");
          mask-image: url("/assets/img/icon/ico_call_in.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 30px;
  height: 30px;
}
.page_content.status .card_box .card .ico.out::after {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_call_out.svg");
          mask-image: url("/assets/img/icon/ico_call_out.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 30px;
  height: 30px;
}
.page_content.status .card_box .card .ico.logout::after {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_call_slash.svg");
          mask-image: url("/assets/img/icon/ico_call_slash.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 30px;
  height: 30px;
}
.page_content.status .table_section {
  margin-top: 50px;
}
.page_content.status .table_section .status_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page_content.status .table_section .status_box .btn_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.status .table_section .status_box .btn_box button {
  width: 80px;
  height: 30px;
  color: #222222;
  background: #ffffff;
  border: 1px solid #435ebe;
  border-right: none;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 13px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.status .table_section .status_box .btn_box button:first-child {
  border-radius: 4px 0 0 4px;
}
.page_content.status .table_section .status_box .btn_box button:last-child {
  border-radius: 0 4px 4px 0;
  border-right: 1px solid #435ebe;
}
.page_content.status .table_section .status_box .btn_box button:hover {
  color: #ffffff;
  background: #435ebe;
  border-left: 1px solid #ffffff;
}
.page_content.status .table_section .status_box .btn_box button.on {
  color: #ffffff;
  background: #435ebe;
}
.page_content.status .table_section .status_box p {
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  color: #222222;
}
.page_content.status .table_section .status_box p span {
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  color: #222222;
}
.page_content.status .table_section .status_box .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.status .table_section .status_box .right button {
  height: 30px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 13px;
}
.page_content.status .table_section .status_box .right button:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.page_content.status .table_section .status_box .right button:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.page_content.status .table_section .status_box .right button.gray {
  background: #999999;
  color: #ffffff;
}
.page_content.status .table_section .status_box .right button.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.page_content.status .table_section .status_box .right button.gray:disabled {
  pointer-events: none;
}
.page_content.status .table_section .status_box .right button.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.page_content.status .table_section .status_box .right button.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.page_content.status .table_section .status_box .right button.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.page_content.status .table_section .status_box .right button.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.status .table_section .status_box .right button.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.page_content.status .table_section .status_box .right button.excel_btn:hover::before {
  background-color: #1d6f42;
}
.page_content.status .table_section .table_box {
  margin-top: 16px;
  position: relative;
  overflow-x: auto;
  overflow-y: auto;
}
.page_content.status .table_section .table_box::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.page_content.status .table_section .table_box::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.page_content.status .table_section .table_box::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.page_content.status .table_section .table_box::-webkit-scrollbar-track {
  background: #ffffff;
}
.page_content.status .table_section .table_box::-webkit-scrollbar-button {
  display: none;
}
.page_content.status .table_section .table_box table {
  width: 100%;
  table-layout: fixed;
  min-width: 1500px;
}
.page_content.status .table_section .table_box table thead th {
  position: relative;
  vertical-align: middle;
  background: #435ebe;
  border: none;
  padding: 6px 0;
  color: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 14px;
}
.page_content.status .table_section .table_box table thead th.fixed {
  position: sticky;
  top: 0;
  z-index: 1;
  border: 0;
}
.page_content.status .table_section .table_box table thead th.fixed::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  display: table-column-group;
  width: -webkit-fill-available;
  height: 100%;
  border-bottom: 1px solid #dce7f1;
  z-index: 1;
}
.page_content.status .table_section .table_box table thead th .checkbox {
  z-index: 100;
}
.page_content.status .table_section .table_box table tbody tr {
  cursor: pointer;
}
.page_content.status .table_section .table_box table tbody tr:hover td {
  background: rgba(124, 141, 181, 0.2);
}
.page_content.status .table_section .table_box table tbody td {
  position: relative;
  vertical-align: middle;
  background: #ffffff;
  border-bottom: 1px solid #dce7f1;
  padding: 8px 0;
  color: #222222;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.page_content.status .table_section .table_box table tbody td.overlap:hover .memo_tooltip {
  visibility: visible;
  opacity: 1;
  z-index: 10;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  height: auto;
}
.page_content.status .table_section .table_box table tbody td.overlap .memo {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 4px;
}
.page_content.status .table_section .table_box table tbody td.overlap .memo_tooltip {
  position: absolute;
  top: -25px;
  left: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  padding: 10px;
  color: white;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  text-align: left;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.9);
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  height: 0;
  overflow: hidden;
}
.page_content.status .table_section .table_box table tbody .ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 4px;
}
.page_content.status .table_section .table_box table .checkbox {
  width: 40px;
}
.page_content.status .table_section .table_box table .checkbox label::before {
  border-width: 2px;
  width: 16px;
  height: 16px;
  border: 1px solid #e1e3ea;
}
.page_content.status .table_section .table_box table .checkbox label::after {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
}
.page_content.status .table_section .table_box table tbody tr td {
  font-size: 14px;
}
.page_content.status .table_section .table_box table tbody tr td p {
  color: #222222;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
}
.page_content.status .table_section .table_box table tbody tr td p.in::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_call_in.svg");
          mask-image: url("/assets/img/icon/ico_call_in.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  vertical-align: -4px;
}
.page_content.status .table_section .table_box table tbody tr td p.out::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_call_out.svg");
          mask-image: url("/assets/img/icon/ico_call_out.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  vertical-align: -4px;
}
.page_content.status .table_section .table_box table tbody tr td p.ready::before {
  content: "";
  display: inline-block;
  background-color: #222222;
  -webkit-mask-image: url("/assets/img/icon/ico_call_pause.svg");
          mask-image: url("/assets/img/icon/ico_call_pause.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  vertical-align: -4px;
}
.page_content.status .table_section .table_box table tbody tr td p.connect::before {
  content: "";
  display: inline-block;
  background-color: #222222;
  -webkit-mask-image: url("/assets/img/icon/ico_call.svg");
          mask-image: url("/assets/img/icon/ico_call.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  vertical-align: -4px;
}
.page_content.status .table_section .table_box table tbody tr td p.logout::before {
  content: "";
  display: inline-block;
  background-color: #dc3545;
  -webkit-mask-image: url("/assets/img/icon/ico_call_slash.svg");
          mask-image: url("/assets/img/icon/ico_call_slash.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  vertical-align: -4px;
}
.page_content.status .table_section .table_box table tbody tr td div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page_content.status .table_section .table_box table tbody tr td div button {
  height: 24px;
  font-size: 14px;
  width: 70px;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
}
.page_content.status .table_section .table_box table tbody tr td div button:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.page_content.status .table_section .table_box table tbody tr td div button:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.page_content.status .table_section .table_box table tbody tr td div button.gray {
  background: #999999;
  color: #ffffff;
}
.page_content.status .table_section .table_box table tbody tr td div button.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.page_content.status .table_section .table_box table tbody tr td div button.gray:disabled {
  pointer-events: none;
}
.page_content.status .table_section .table_box table tbody tr td div button.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.page_content.status .table_section .table_box table tbody tr td div button.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.page_content.status .table_section .table_box table tbody tr td div button.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.page_content.status .table_section .table_box table tbody tr td div button.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page_content.status .table_section .table_box table tbody tr td div button.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.page_content.status .table_section .table_box table tbody tr td div button.excel_btn:hover::before {
  background-color: #1d6f42;
}
.page_content.status .table_section .table_box table tbody tr td div button.hearing_btn {
  background: #ffffff;
  border: 1px solid #435ebe;
  color: #435ebe;
}
.page_content.status .table_section .table_box table tbody tr td div button.hearing_btn::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_speaker.svg");
          mask-image: url("/assets/img/icon/ico_speaker.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 16px;
  vertical-align: -3px;
  margin-right: 2px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.page_content.status .table_section .table_box table tbody tr td div button.hearing_btn:hover {
  background: #435ebe;
  color: #ffffff;
}
.page_content.status .table_section .table_box table tbody tr td div button.hearing_btn:hover::before {
  background-color: #ffffff;
}
.page_content.status .table_section .table_box table tbody tr td div button.hangup_btn::before {
  content: "";
  display: inline-block;
  background-color: #dc3545;
  -webkit-mask-image: url("/assets/img/icon/ico_speaker_close.svg");
          mask-image: url("/assets/img/icon/ico_speaker_close.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 16px;
  vertical-align: -3px;
  margin-right: 2px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.page_content.status .table_section .table_box table tbody tr td div button.hangup_btn:hover::before {
  background-color: #ffffff;
}

.coupon_modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 22px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.coupon_modal .name {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 20px;
  color: #222222;
}
.coupon_modal .name::before {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_coupon.svg");
          mask-image: url("/assets/img/icon/ico_coupon.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 22px;
  height: 22px;
  vertical-align: -4px;
  margin-right: 4px;
}
.coupon_modal .name span {
  font-size: 20px;
  color: #435ebe;
}
.coupon_modal .number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 14px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid #dce7f1;
  padding: 20px 40px;
  border-radius: 8px;
}
.coupon_modal .number .checkbox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-size: 16px;
}
.coupon_modal .manager {
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 16px;
  color: #222222;
}
.coupon_modal .manager span {
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 16px;
  color: #222222;
}
.coupon_modal .coupon_btn {
  height: 40px;
  font-size: 14px;
  width: 100%;
  border-radius: 4px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 16px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  background: #ffffff;
  color: #435ebe;
  border: 1px solid #435ebe;
}
.coupon_modal .coupon_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.coupon_modal .coupon_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.coupon_modal .coupon_btn.gray {
  background: #999999;
  color: #ffffff;
}
.coupon_modal .coupon_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.coupon_modal .coupon_btn.gray:disabled {
  pointer-events: none;
}
.coupon_modal .coupon_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.coupon_modal .coupon_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.coupon_modal .coupon_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.coupon_modal .coupon_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.coupon_modal .coupon_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.coupon_modal .coupon_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.coupon_modal .coupon_btn::after {
  content: "";
  display: inline-block;
  background-color: #435ebe;
  -webkit-mask-image: url("/assets/img/icon/ico_send.svg");
          mask-image: url("/assets/img/icon/ico_send.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -4px;
  margin-left: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.coupon_modal .coupon_btn:hover {
  background: #435ebe;
  color: #ffffff;
  border: 1px solid #435ebe;
}
.coupon_modal .coupon_btn:hover::after {
  background-color: #ffffff;
}

/* modal z-index 100 */
.modal {
  visibility: hidden;
  opacity: 0;
  width: 0;
  height: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 100;
}
.modal.z_top {
  z-index: 101 !important;
}
.modal.z_top.voice {
  z-index: 102 !important;
}
.modal.fade .modal_dialog {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
}
.modal.show {
  visibility: visible;
  opacity: 1;
  width: 100vw;
  height: 100vh;
}
.modal.show .modal_dialog {
  -webkit-transform: none;
          transform: none;
}
.modal .modal_dialog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  height: 100%;
}
.modal .modal_dialog .modal_content {
  position: relative;
  width: 100%;
  max-width: 700px;
  border-radius: 12px;
  background: #ffffff;
  min-width: 460px;
  margin: 16px;
  overflow-x: auto;
}
.modal .modal_dialog .modal_content.max300 {
  max-width: 300px;
  min-width: 300px;
}
.modal .modal_dialog .modal_content.max500 {
  max-width: 500px;
  min-width: 500px;
}
.modal .modal_dialog .modal_content .modal_header {
  position: relative;
  width: 100%;
  padding: 20px 20px 0;
  border-radius: 20px 20px 0 0;
}
.modal .modal_dialog .modal_content .modal_header .modal_tit {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 20px;
  color: #222222;
}
.modal .modal_dialog .modal_content .modal_body {
  position: relative;
  width: 100%;
  padding: 20px;
}
.modal .modal_dialog .modal_content .modal_body audio {
  width: 100%;
}
.modal .modal_dialog .modal_content .modal_footer {
  position: relative;
  width: 100%;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  border-top: 1px solid #dce7f1;
  border-radius: 0 0 20px 20px;
}
.modal .modal_dialog .modal_content .modal_footer .modal_save_btn {
  height: 36px;
  font-size: 12px;
  width: 80px;
  border-radius: 8px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 14px;
}
.modal .modal_dialog .modal_content .modal_footer .modal_save_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.modal .modal_dialog .modal_content .modal_footer .modal_save_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.modal .modal_dialog .modal_content .modal_footer .modal_save_btn.gray {
  background: #999999;
  color: #ffffff;
}
.modal .modal_dialog .modal_content .modal_footer .modal_save_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.modal .modal_dialog .modal_content .modal_footer .modal_save_btn.gray:disabled {
  pointer-events: none;
}
.modal .modal_dialog .modal_content .modal_footer .modal_save_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.modal .modal_dialog .modal_content .modal_footer .modal_save_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.modal .modal_dialog .modal_content .modal_footer .modal_save_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.modal .modal_dialog .modal_content .modal_footer .modal_save_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.modal .modal_dialog .modal_content .modal_footer .modal_save_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.modal .modal_dialog .modal_content .modal_footer .modal_save_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}
.modal .modal_dialog .modal_content .modal_footer .modal_close_btn {
  height: 36px;
  font-size: 12px;
  width: 80px;
  border-radius: 8px;
  color: #ffffff;
  background: #435ebe;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 14px;
}
.modal .modal_dialog .modal_content .modal_footer .modal_close_btn:hover {
  color: #435ebe;
  border: 1px solid #435ebe;
  background: #ffffff;
}
.modal .modal_dialog .modal_content .modal_footer .modal_close_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.modal .modal_dialog .modal_content .modal_footer .modal_close_btn.gray {
  background: #999999;
  color: #ffffff;
}
.modal .modal_dialog .modal_content .modal_footer .modal_close_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.modal .modal_dialog .modal_content .modal_footer .modal_close_btn.gray:disabled {
  pointer-events: none;
}
.modal .modal_dialog .modal_content .modal_footer .modal_close_btn.reverse_red {
  border: 1px solid #dc3545;
  background: #ffffff;
  color: #dc3545;
}
.modal .modal_dialog .modal_content .modal_footer .modal_close_btn.reverse_red:hover {
  background: #dc3545;
  color: #ffffff;
}
.modal .modal_dialog .modal_content .modal_footer .modal_close_btn.excel_btn {
  background: #1d6f42;
  color: #ffffff;
}
.modal .modal_dialog .modal_content .modal_footer .modal_close_btn.excel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/img/icon/ico_excel.svg");
          mask-image: url("/assets/img/icon/ico_excel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  font-size: 0;
  width: 18px;
  height: 18px;
  vertical-align: -5px;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.modal .modal_dialog .modal_content .modal_footer .modal_close_btn.excel_btn:hover {
  color: #1d6f42;
  border: 1px solid #1d6f42;
  background: #ffffff;
}
.modal .modal_dialog .modal_content .modal_footer .modal_close_btn.excel_btn:hover::before {
  background-color: #1d6f42;
}/*# sourceMappingURL=common.css.map */