@charset "UTF-8";
/*-------------------------------------------------------------------------------------------------------------
    Explain : TLink 통합 녹취 관리 시스템
    File : common.scss
    Date : 2025.03.12
    Ver : 1.0.0.
/*------------------------------------------------------------------------------------------------------------*/
/* font */
/* nav */
/* input */
/* button */
/* etc */
/* 최종 파일 넘길 때 ../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 */
/* 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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

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: #f5f5f5;
  white-space: nowrap;
  min-width: 1200px;
}
.wrap .header {
  position: absolute;
  top: 0;
  left: 250px;
  max-width: calc(100% - 250px);
  width: 100%;
  height: 70px;
  z-index: 9;
  background: #ffffff;
  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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border-bottom: 1px solid #e9e9e9;
}
.wrap .header.closed {
  left: 58px;
  max-width: calc(100% - 58px);
}
.wrap .header .inner {
  position: relative;
  width: 100%;
  height: 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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 0 30px;
}
.wrap .header .inner h1 a {
  font-size: 0;
  background: url("../img/logo.png") no-repeat center;
  background-size: 100%;
  width: 135px;
  height: 28px;
}
.wrap .header .inner .user_menu {
  position: relative;
}
.wrap .header .inner .user_menu .profile {
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 16px;
  color: #222222;
  cursor: pointer;
}
.wrap .header .inner .user_menu .profile::before {
  content: "";
  display: inline-block;
  background-color: #222222;
  -webkit-mask-image: url("../img/icon/ico_user_circle.svg");
          mask-image: url("../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;
  vertical-align: -4px;
  margin-right: 4px;
}
.wrap .header .inner .user_menu .dropdown {
  display: none;
  position: absolute;
  top: 35px;
  right: -10px;
  border-radius: 5px;
  border: 1px solid #1d2d5b;
  background: #ffffff;
  -webkit-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
          box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  z-index: 5;
  min-width: 130px;
}
.wrap .header .inner .user_menu .dropdown.show {
  display: block;
}
.wrap .header .inner .user_menu .dropdown li {
  padding: 15px;
  border-radius: 5px;
  text-align: left;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.wrap .header .inner .user_menu .dropdown li a {
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  color: #222222;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.wrap .header .inner .user_menu .dropdown li a::before {
  content: "";
  display: inline-block;
}
.wrap .header .inner .user_menu .dropdown li:hover a {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #1d2d5b;
}
.wrap .header .inner .user_menu .dropdown li.password a::before {
  background-color: #222222;
  -webkit-mask-image: url("../img/icon/ico_password.svg");
          mask-image: url("../img/icon/ico_password.svg");
  -webkit-mask-size: 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: 4px;
  vertical-align: -3px;
}
.wrap .header .inner .user_menu .dropdown li.logout a::before {
  background-color: #222222;
  -webkit-mask-image: url("../img/icon/ico_logout.svg");
          mask-image: url("../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: 16px;
  height: 18px;
  margin-right: 4px;
  vertical-align: -4px;
}
.wrap .sidebar {
  z-index: 10;
  width: 250px;
  min-height: 100vh;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #363636;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.wrap .sidebar > ul {
  position: relative;
  width: 100%;
}
.wrap .sidebar > ul > li {
  position: relative;
  width: 100%;
  background: #363636;
  border-bottom: 1px solid #2e2e2e;
}
.wrap .sidebar > ul > li:not(:first-child) > a {
  line-height: 60px;
  position: relative;
  display: block;
  height: 60px;
  padding-left: 18px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.wrap .sidebar > ul > li:not(:first-child) > a span {
  color: rgba(255, 255, 255, 0.5);
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 15px;
}
.wrap .sidebar > ul > li:not(:first-child) > a::before {
  content: "";
  display: inline-block;
  vertical-align: -5px;
  margin-right: 10px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.wrap .sidebar > ul > li:not(:first-child) > a:hover span {
  font-family: "Pretendard Variable";
  font-weight: 500;
  color: #ffffff;
}
.wrap .sidebar > ul > li:not(:first-child) > a:hover::before {
  background: #ffffff;
}
.wrap .sidebar > ul > li:first-child {
  background: #222222;
  height: 70px;
  padding-left: 20px;
}
.wrap .sidebar > ul > li:first-child .page_title {
  font-family: "Pretendard Variable";
  font-weight: 500;
  color: #ffffff;
  font-size: 16px;
  line-height: 70px;
}
.wrap .sidebar > ul > li:first-child .hamburger {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.wrap .sidebar > ul > li:first-child .hamburger div {
  width: 20px;
  height: 2px;
  border-radius: 1px;
  background: #ffffff;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.wrap .sidebar > ul > li:first-child .hamburger div:nth-child(1) {
  -webkit-transform: translateY(9px) rotate(45deg);
          transform: translateY(9px) rotate(45deg);
}
.wrap .sidebar > ul > li:first-child .hamburger div:nth-child(2) {
  opacity: 0;
}
.wrap .sidebar > ul > li:first-child .hamburger div:nth-child(3) {
  -webkit-transform: translateY(5px) rotate(-45deg);
          transform: translateY(5px) rotate(-45deg);
}
.wrap .sidebar > ul > li.active > a {
  background: #1d2d5b;
}
.wrap .sidebar > ul > li.active > a span {
  font-family: "Pretendard Variable";
  font-weight: 500;
  color: #ffffff;
}
.wrap .sidebar > ul > li.active > a::after {
  -webkit-transform: translateY(-40%) rotate(180deg) !important;
          transform: translateY(-40%) rotate(180deg) !important;
  background: #ffffff;
}
.wrap .sidebar > ul > li.active > a::before {
  background: #ffffff !important;
}
.wrap .sidebar > ul > li.active ul {
  display: block;
  visibility: visible;
  max-height: 10000px;
  opacity: 1;
}
.wrap .sidebar > ul > li.has-sub > a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-40%);
          transform: translateY(-40%);
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-mask-image: url("../img/icon/ico_arrow_down.svg");
          mask-image: url("../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: 20px;
  height: 20px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.wrap .sidebar > ul > li.has-sub.active > a::after {
  -webkit-transform: translateY(-40%) rotate(180deg) !important;
          transform: translateY(-40%) rotate(180deg) !important;
  background: #ffffff;
}
.wrap .sidebar > ul > li > ul {
  display: none;
  max-height: 0;
  visibility: hidden;
  overflow: hidden;
  -webkit-transition: max-height 0.2s ease-in-out, opacity 0.2s ease-in-out;
  transition: max-height 0.2s ease-in-out, opacity 0.2s ease-in-out;
  opacity: 0;
}
.wrap .sidebar > ul > li > ul li {
  padding-left: 50px;
  height: 43px;
  line-height: 43px;
  background: #f2f2f2;
}
.wrap .sidebar > ul > li > ul li a span {
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  color: #666666;
}
.wrap .sidebar > ul > li > ul li a:hover span {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #1d2d5b;
}
.wrap .sidebar > ul > li > ul li.on a span {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #1d2d5b;
}
.wrap .sidebar > ul > li > a.dashboard::before {
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-mask-image: url("../img/icon/ico_dashboard.svg");
          mask-image: url("../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: 20px;
  height: 20px;
}
.wrap .sidebar > ul > li > a.record::before {
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-mask-image: url("../img/icon/ico_record.svg");
          mask-image: url("../img/icon/ico_record.svg");
  -webkit-mask-size: 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 .sidebar > ul > li > a.statistics::before {
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-mask-image: url("../img/icon/ico_statistics.svg");
          mask-image: url("../img/icon/ico_statistics.svg");
  -webkit-mask-size: 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 .sidebar > ul > li > a.user::before {
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-mask-image: url("../img/icon/ico_user.svg");
          mask-image: url("../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: 20px;
  height: 20px;
}
.wrap .sidebar > ul > li > a.log::before {
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-mask-image: url("../img/icon/ico_log.svg");
          mask-image: url("../img/icon/ico_log.svg");
  -webkit-mask-size: 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 .sidebar > ul > li > a.setting::before {
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-mask-image: url("../img/icon/ico_setting.svg");
          mask-image: url("../img/icon/ico_setting.svg");
  -webkit-mask-size: 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 .sidebar.closed {
  width: 58px;
}
.wrap .sidebar.closed ul li {
  padding: 0;
}
.wrap .sidebar.closed ul li:first-child .page_title {
  display: none;
}
.wrap .sidebar.closed ul li:first-child .hamburger div:nth-child(1) {
  -webkit-transform: translateY(0) rotate(0deg);
          transform: translateY(0) rotate(0deg);
}
.wrap .sidebar.closed ul li:first-child .hamburger div:nth-child(2) {
  opacity: 1;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}
.wrap .sidebar.closed ul li:first-child .hamburger div:nth-child(3) {
  -webkit-transform: translateY(10px) rotate(0deg);
          transform: translateY(10px) rotate(0deg);
}
.wrap .sidebar.closed ul li a span {
  display: none;
}
.wrap .sidebar.closed ul li a::after {
  display: none;
}
.wrap .sidebar.closed ul li > ul {
  display: none;
  height: 0;
}
.wrap .contents {
  position: relative;
  min-width: calc(100% - 250px);
  height: 100%;
  min-height: 100vh;
  margin-left: 250px;
  padding: 70px 30px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  overflow-y: auto;
  overflow-x: auto;
}
.wrap .contents::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.wrap .contents::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.wrap .contents::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.wrap .contents::-webkit-scrollbar-track {
  background: #ffffff;
}
.wrap .contents::-webkit-scrollbar-button {
  display: none;
}
.wrap .contents::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.wrap .contents::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.wrap .contents::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.wrap .contents::-webkit-scrollbar-track {
  background: #ffffff;
}
.wrap .contents::-webkit-scrollbar-button {
  display: none;
}
.wrap .contents.closed {
  min-width: calc(100% - 58px);
  margin-left: 58px;
}
.wrap .contents .page_tit {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 20px;
  color: #222222;
  margin: 25px 0;
}
.wrap .contents .pagination {
  margin: 30px 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: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.wrap .contents .pagination li {
  cursor: pointer;
  width: 25px;
  height: 25px;
  border-radius: 3px;
  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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.wrap .contents .pagination li a {
  display: block;
  text-align: center;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #555555;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.wrap .contents .pagination li:hover a {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #1d2d5b;
}
.wrap .contents .pagination li.active {
  background: #1d2d5b;
}
.wrap .contents .pagination li.active a {
  color: #ffffff;
}
.wrap .contents .pagination li.disabled {
  pointer-events: none;
  cursor: default;
}
.wrap .contents .pagination li.disabled a {
  color: #aaa;
}
.wrap .contents .pagination li:first-child a {
  background-color: #555555;
  -webkit-mask-image: url("../img/icon/ico_arrow_left.svg");
          mask-image: url("../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;
}
.wrap .contents .pagination li:first-child.disabled a {
  background-color: #aaa;
}
.wrap .contents .pagination li:last-child a {
  background-color: #555555;
  -webkit-mask-image: url("../img/icon/ico_arrow_right.svg");
          mask-image: url("../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;
}
.wrap .contents .pagination li:last-child.disabled a {
  background-color: #aaa;
}

/* 메뉴별 */
.login {
  background: url("../img/img_login_bg.jpg") no-repeat center;
  background-size: cover;
  width: 100vw !important;
  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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-animation: bgZoom 5s ease-in-out forwards;
          animation: bgZoom 5s ease-in-out forwards;
  padding: 0 !important;
  margin: 0 !important;
}
.login::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-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
}
.login .login_box h1::before {
  content: "";
  display: block;
  background: url("../img/logo.png") no-repeat center;
  background-size: 100%;
  width: 135px;
  height: 28px;
  margin: 0 auto 20px;
}
.login .login_box .input_box {
  position: relative;
}
.login .login_box .input_box label {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #1d2d5b;
}
.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 #1d2d5b;
}
.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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.login .login_box .input_box.date .calendar {
  position: relative;
}
.login .login_box .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #1d2d5b;
  -webkit-mask-image: url("../img/icon/ico_calendar.svg");
          mask-image: url("../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 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 .login_btn {
  margin-top: 50px;
  height: 56px;
  font-size: 18px;
  width: 100%;
  border-radius: 8px;
  color: #ffffff;
  background: #1d2d5b;
  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: #1d2d5b;
  border: 1px solid #1d2d5b;
  background: #ffffff;
}
.login .login_box .login_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.login .login_box .login_btn.gray {
  background: #eeeeee;
  color: #222222;
}
.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 {
  border: 1px solid #1d2d5b;
  background: #ffffff;
  color: #1d2d5b;
}
.login .login_box .login_btn.reverse:hover {
  background: #1d2d5b;
  color: #ffffff;
}
.login .login_box .login_btn.cancel {
  border: 1px solid #ec6666;
  background: #ffffff;
  color: #ec6666;
}
.login .login_box .login_btn.cancel:hover {
  background: #ec6666;
  color: #ffffff;
}

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

@keyframes bgZoom {
  0% {
    background-size: 120%;
  }
  100% {
    background-size: 140%;
  }
}
.contents.password {
  width: 100vw !important;
  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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-animation: bgZoom 5s ease-in-out forwards;
          animation: bgZoom 5s ease-in-out forwards;
  padding: 0 !important;
  margin: 0 !important;
  background: #eef2f7;
}
.contents.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;
}
.contents.password .password_box h1 {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
}
.contents.password .password_box .input_box {
  position: relative;
}
.contents.password .password_box .input_box label {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #1d2d5b;
}
.contents.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;
}
.contents.password .password_box .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.contents.password .password_box .input_box input::-moz-placeholder {
  color: #6c757d;
}
.contents.password .password_box .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.contents.password .password_box .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.contents.password .password_box .input_box input::placeholder {
  color: #6c757d;
}
.contents.password .password_box .input_box input:focus {
  border: 1px solid #1d2d5b;
}
.contents.password .password_box .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.contents.password .password_box .input_box input:disabled, .contents.password .password_box .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.contents.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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.contents.password .password_box .input_box.date .calendar {
  position: relative;
}
.contents.password .password_box .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #1d2d5b;
  -webkit-mask-image: url("../img/icon/ico_calendar.svg");
          mask-image: url("../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.password .password_box .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.contents.password .password_box .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.contents.password .password_box .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.contents.password .password_box .input_box label {
  display: block;
  font-size: 16px;
  margin-bottom: 10px;
}
.contents.password .password_box .input_box input {
  font-size: 16px;
}
.contents.password .password_box .input_box + .input_box {
  margin-top: 20px;
}
.contents.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;
}
.contents.password .password_box .error.hide {
  display: none;
}
.contents.password .password_box .password_btn {
  margin-top: 50px;
  height: 56px;
  font-size: 18px;
  width: 100%;
  border-radius: 8px;
  color: #ffffff;
  background: #1d2d5b;
  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;
}
.contents.password .password_box .password_btn:hover {
  color: #1d2d5b;
  border: 1px solid #1d2d5b;
  background: #ffffff;
}
.contents.password .password_box .password_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.contents.password .password_box .password_btn.gray {
  background: #eeeeee;
  color: #222222;
}
.contents.password .password_box .password_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.contents.password .password_box .password_btn.gray:disabled {
  pointer-events: none;
}
.contents.password .password_box .password_btn.reverse {
  border: 1px solid #1d2d5b;
  background: #ffffff;
  color: #1d2d5b;
}
.contents.password .password_box .password_btn.reverse:hover {
  background: #1d2d5b;
  color: #ffffff;
}
.contents.password .password_box .password_btn.cancel {
  border: 1px solid #ec6666;
  background: #ffffff;
  color: #ec6666;
}
.contents.password .password_box .password_btn.cancel:hover {
  background: #ec6666;
  color: #ffffff;
}

.dashboard section {
  position: relative;
}
.dashboard section .section_tit {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 20px;
  color: #222222;
}
.dashboard section + section {
  margin-top: 25px;
}
.dashboard .call_statistics {
  width: 100%;
  padding: 25px 30px;
  border-radius: 5px;
  background: #ffffff;
  border: 1px solid #e9e9e9;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}
.dashboard .call_statistics .card {
  position: relative;
  width: 100%;
  margin-top: 35px;
  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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  overflow: hidden;
}
.dashboard .call_statistics .card > div {
  width: calc(33.3333333333% - 20px);
  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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  border-radius: 5px;
  border: 1px solid #e9e9e9;
}
.dashboard .call_statistics .card > div .tit {
  width: 120px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 18px;
  color: #ffffff;
  border-radius: 5px 0 0 5px;
  text-align: center;
  padding: 10px 0;
}
.dashboard .call_statistics .card > div .count {
  width: calc(100% - 120px);
  text-align: left;
  padding-left: 20px;
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 22px;
  color: #222222;
}
.dashboard .call_statistics .card > div.total .tit {
  background: #1d2d5b;
}
.dashboard .call_statistics .card > div.success .tit {
  background: #5176f6;
}
.dashboard .call_statistics .card > div.fail .tit {
  background: #ec6666;
}
.dashboard .response_statics {
  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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.dashboard .response_statics .card {
  min-width: calc(50% - 15px);
  padding: 25px 30px;
  border-radius: 5px;
  background: #ffffff;
  border: 1px solid #e9e9e9;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  overflow: hidden;
}
.dashboard .response_statics .card .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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 30px;
}
.dashboard .response_statics .card .top .count {
  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: nowrap;
      flex-wrap: nowrap;
}
.dashboard .response_statics .card .top .count p {
  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: nowrap;
      flex-wrap: nowrap;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 15px;
  color: #222222;
}
.dashboard .response_statics .card .top .count p.success span {
  color: #5176f6;
}
.dashboard .response_statics .card .top .count p.fail span {
  color: #ec6666;
}
.dashboard .response_statics .card .top .count p span {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 22px;
}
.dashboard .response_statics .card .chart_box {
  max-height: 260px;
  margin: 0 auto;
  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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  overflow: hidden;
}
.dashboard .timezone_statics, .dashboard .timezone_statics {
  width: 100%;
  padding: 25px 30px;
  border-radius: 5px;
  background: #ffffff;
  border: 1px solid #e9e9e9;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}
.dashboard .timezone_statics .chart_box, .dashboard .timezone_statics .chart_box {
  max-height: 400px;
  margin: 0 auto;
  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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.dashboard #timeChart {
  visibility: visible;
  opacity: 1;
}

.call {
  padding-bottom: 30px !important;
}
.call section {
  position: relative;
}
.call section .section_tit {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 20px;
  color: #222222;
}
.call section + section {
  margin-top: 25px;
}
.call .search {
  width: 100%;
  padding: 15px 30px;
  border-radius: 5px;
  background: #ffffff;
  border: 1px solid #e9e9e9;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}
.call .search .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: nowrap;
      flex-wrap: nowrap;
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
}
.call .search .search_box .flex .input_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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: relative;
}
.call .search .search_box .flex .input_box label {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #1d2d5b;
}
.call .search .search_box .flex .input_box input {
  width: 200px;
  height: 36px;
  border-radius: 10px;
  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;
}
.call .search .search_box .flex .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.call .search .search_box .flex .input_box input::-moz-placeholder {
  color: #6c757d;
}
.call .search .search_box .flex .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.call .search .search_box .flex .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.call .search .search_box .flex .input_box input::placeholder {
  color: #6c757d;
}
.call .search .search_box .flex .input_box input:focus {
  border: 1px solid #1d2d5b;
}
.call .search .search_box .flex .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.call .search .search_box .flex .input_box input:disabled, .call .search .search_box .flex .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.call .search .search_box .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: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.call .search .search_box .flex .input_box.date .calendar {
  position: relative;
}
.call .search .search_box .flex .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #1d2d5b;
  -webkit-mask-image: url("../img/icon/ico_calendar.svg");
          mask-image: url("../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%);
}
.call .search .search_box .flex .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.call .search .search_box .flex .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.call .search .search_box .flex .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.call .search .search_box .flex .input_box label {
  display: inline-block;
  font-size: 14px;
  min-width: 50px;
}
.call .search .search_box .flex .input_box .calendar input {
  font-size: 14px;
}
.call .search .search_box .flex .input_box span {
  font-family: "Pretendard Variable";
  font-weight: 500;
  color: #222222;
  font-size: 14px;
}
.call .search .search_box .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: 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: nowrap;
      flex-wrap: nowrap;
}
.call .search .search_box .flex .select_box label {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #1d2d5b;
}
.call .search .search_box .flex .select_box select {
  width: 200px;
  height: 36px;
  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;
}
.call .search .search_box .flex .select_box select::-webkit-input-placeholder {
  color: #6c757d;
}
.call .search .search_box .flex .select_box select::-moz-placeholder {
  color: #6c757d;
}
.call .search .search_box .flex .select_box select:-ms-input-placeholder {
  color: #6c757d;
}
.call .search .search_box .flex .select_box select::-ms-input-placeholder {
  color: #6c757d;
}
.call .search .search_box .flex .select_box select::placeholder {
  color: #6c757d;
}
.call .search .search_box .flex .select_box select:focus {
  border: 1px solid #1d2d5b;
}
.call .search .search_box .flex .select_box select:disabled {
  background: #e9ecef;
  cursor: default;
}
.call .search .search_box .flex .select_box label {
  display: block;
  font-size: 14px;
  min-width: 50px;
}
.call .search .search_box .flex + .flex {
  margin-top: 12px;
}
.call .search .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: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.call .search .btn_box button {
  height: 36px;
  font-size: 14px;
  width: 100px;
  border-radius: 8px;
  color: #ffffff;
  background: #1d2d5b;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.call .search .btn_box button:hover {
  color: #1d2d5b;
  border: 1px solid #1d2d5b;
  background: #ffffff;
}
.call .search .btn_box button:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.call .search .btn_box button.gray {
  background: #eeeeee;
  color: #222222;
}
.call .search .btn_box button.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.call .search .btn_box button.gray:disabled {
  pointer-events: none;
}
.call .search .btn_box button.reverse {
  border: 1px solid #1d2d5b;
  background: #ffffff;
  color: #1d2d5b;
}
.call .search .btn_box button.reverse:hover {
  background: #1d2d5b;
  color: #ffffff;
}
.call .search .btn_box button.cancel {
  border: 1px solid #ec6666;
  background: #ffffff;
  color: #ec6666;
}
.call .search .btn_box button.cancel:hover {
  background: #ec6666;
  color: #ffffff;
}
.call .table table {
  width: 100%;
}
.call .table table thead th {
  background: #1d2d5b;
  border: none;
  padding: 10px 0;
  color: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 15px;
  vertical-align: middle;
}
.call .table table tbody td {
  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;
  vertical-align: middle;
}
.call .table th.check input[type=checkbox]:checked + label::before {
  border-color: rgba(255, 255, 255, 0.2);
}
.call .table .check input[type=checkbox] {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 16px;
  height: 16px;
  background: #ffffff;
  border: 1px solid #bbbbbb;
  border-radius: 4px;
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, border-color 0.3s;
  margin: 0;
}
.call .table .check input[type=checkbox]:checked {
  background: url("../img/icon/ico_check_bg.png") no-repeat center;
  font-size: 0;
  margin: 0;
}
.call .table td .detail_btn {
  height: 30px;
  font-size: 14px;
  width: 80px;
  border-radius: 4px;
  color: #ffffff;
  background: #1d2d5b;
  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;
}
.call .table td .detail_btn:hover {
  color: #1d2d5b;
  border: 1px solid #1d2d5b;
  background: #ffffff;
}
.call .table td .detail_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.call .table td .detail_btn.gray {
  background: #eeeeee;
  color: #222222;
}
.call .table td .detail_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.call .table td .detail_btn.gray:disabled {
  pointer-events: none;
}
.call .table td .detail_btn.reverse {
  border: 1px solid #1d2d5b;
  background: #ffffff;
  color: #1d2d5b;
}
.call .table td .detail_btn.reverse:hover {
  background: #1d2d5b;
  color: #ffffff;
}
.call .table td .detail_btn.cancel {
  border: 1px solid #ec6666;
  background: #ffffff;
  color: #ec6666;
}
.call .table td .detail_btn.cancel:hover {
  background: #ec6666;
  color: #ffffff;
}

.member {
  padding-bottom: 30px !important;
}
.member section {
  position: relative;
}
.member section .section_tit {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 20px;
  color: #222222;
}
.member section + section {
  margin-top: 25px;
}
.member .search {
  width: 100%;
  padding: 15px 30px;
  border-radius: 5px;
  background: #ffffff;
  border: 1px solid #e9e9e9;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}
.member .search .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: nowrap;
      flex-wrap: nowrap;
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
}
.member .search .search_box .flex .input_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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: relative;
}
.member .search .search_box .flex .input_box label {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #1d2d5b;
}
.member .search .search_box .flex .input_box input {
  width: 200px;
  height: 36px;
  border-radius: 10px;
  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;
}
.member .search .search_box .flex .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.member .search .search_box .flex .input_box input::-moz-placeholder {
  color: #6c757d;
}
.member .search .search_box .flex .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.member .search .search_box .flex .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.member .search .search_box .flex .input_box input::placeholder {
  color: #6c757d;
}
.member .search .search_box .flex .input_box input:focus {
  border: 1px solid #1d2d5b;
}
.member .search .search_box .flex .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.member .search .search_box .flex .input_box input:disabled, .member .search .search_box .flex .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.member .search .search_box .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: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.member .search .search_box .flex .input_box.date .calendar {
  position: relative;
}
.member .search .search_box .flex .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #1d2d5b;
  -webkit-mask-image: url("../img/icon/ico_calendar.svg");
          mask-image: url("../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%);
}
.member .search .search_box .flex .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.member .search .search_box .flex .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.member .search .search_box .flex .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.member .search .search_box .flex .input_box label {
  display: inline-block;
  font-size: 14px;
  min-width: 50px;
}
.member .search .search_box .flex .input_box .calendar input {
  font-size: 14px;
}
.member .search .search_box .flex .input_box span {
  font-family: "Pretendard Variable";
  font-weight: 500;
  color: #222222;
  font-size: 14px;
}
.member .search .search_box .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: 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: nowrap;
      flex-wrap: nowrap;
}
.member .search .search_box .flex .select_box label {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #1d2d5b;
}
.member .search .search_box .flex .select_box select {
  width: 200px;
  height: 36px;
  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;
}
.member .search .search_box .flex .select_box select::-webkit-input-placeholder {
  color: #6c757d;
}
.member .search .search_box .flex .select_box select::-moz-placeholder {
  color: #6c757d;
}
.member .search .search_box .flex .select_box select:-ms-input-placeholder {
  color: #6c757d;
}
.member .search .search_box .flex .select_box select::-ms-input-placeholder {
  color: #6c757d;
}
.member .search .search_box .flex .select_box select::placeholder {
  color: #6c757d;
}
.member .search .search_box .flex .select_box select:focus {
  border: 1px solid #1d2d5b;
}
.member .search .search_box .flex .select_box select:disabled {
  background: #e9ecef;
  cursor: default;
}
.member .search .search_box .flex .select_box label {
  display: block;
  font-size: 14px;
  min-width: 50px;
}
.member .search .search_box .flex + .flex {
  margin-top: 12px;
}
.member .search .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: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.member .search .btn_box button {
  height: 36px;
  font-size: 14px;
  width: 100px;
  border-radius: 8px;
  color: #ffffff;
  background: #1d2d5b;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.member .search .btn_box button:hover {
  color: #1d2d5b;
  border: 1px solid #1d2d5b;
  background: #ffffff;
}
.member .search .btn_box button:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.member .search .btn_box button.gray {
  background: #eeeeee;
  color: #222222;
}
.member .search .btn_box button.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.member .search .btn_box button.gray:disabled {
  pointer-events: none;
}
.member .search .btn_box button.reverse {
  border: 1px solid #1d2d5b;
  background: #ffffff;
  color: #1d2d5b;
}
.member .search .btn_box button.reverse:hover {
  background: #1d2d5b;
  color: #ffffff;
}
.member .search .btn_box button.cancel {
  border: 1px solid #ec6666;
  background: #ffffff;
  color: #ec6666;
}
.member .search .btn_box button.cancel:hover {
  background: #ec6666;
  color: #ffffff;
}
.member .table .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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 20px 30px 15px 0;
}
.member .table .btn_box button {
  height: 30px;
  font-size: 14px;
  width: 100px;
  border-radius: 4px;
  color: #ffffff;
  background: #1d2d5b;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 12px !important;
}
.member .table .btn_box button:hover {
  color: #1d2d5b;
  border: 1px solid #1d2d5b;
  background: #ffffff;
}
.member .table .btn_box button:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.member .table .btn_box button.gray {
  background: #eeeeee;
  color: #222222;
}
.member .table .btn_box button.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.member .table .btn_box button.gray:disabled {
  pointer-events: none;
}
.member .table .btn_box button.reverse {
  border: 1px solid #1d2d5b;
  background: #ffffff;
  color: #1d2d5b;
}
.member .table .btn_box button.reverse:hover {
  background: #1d2d5b;
  color: #ffffff;
}
.member .table .btn_box button.cancel {
  border: 1px solid #ec6666;
  background: #ffffff;
  color: #ec6666;
}
.member .table .btn_box button.cancel:hover {
  background: #ec6666;
  color: #ffffff;
}
.member .table .btn_box button.delete_btn::before {
  content: "";
  display: inline-block;
  background-color: #ec6666;
  -webkit-mask-image: url("../img/icon/ico_delete.svg");
          mask-image: url("../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: 16px;
  vertical-align: middle;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.member .table .btn_box button.delete_btn:hover::before {
  background-color: #ffffff;
}
.member .table .btn_box button.add_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("../img/icon/ico_user_add.svg");
          mask-image: url("../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: middle;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.member .table .btn_box button.add_btn:hover::before {
  background-color: #1d2d5b;
}
.member .table table {
  width: 100%;
}
.member .table table thead th {
  background: #1d2d5b;
  border: none;
  padding: 10px 0;
  color: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 15px;
  vertical-align: middle;
}
.member .table table tbody td {
  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;
  vertical-align: middle;
}
.member .table th input[type=checkbox] {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 16px;
  height: 16px;
  background: #ffffff;
  border: 1px solid #bbbbbb;
  border-radius: 4px;
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, border-color 0.3s;
  margin: 0;
}
.member .table th input[type=checkbox]:checked {
  background: url("../img/icon/ico_check_bg.png") no-repeat center;
  font-size: 0;
  margin: 0;
}
.member .table td input[type=checkbox] {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 16px;
  height: 16px;
  background: #ffffff;
  border: 1px solid #bbbbbb;
  border-radius: 4px;
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, border-color 0.3s;
  margin: 0;
}
.member .table td input[type=checkbox]:checked {
  background: url("../img/icon/ico_check_bg.png") no-repeat center;
  font-size: 0;
  margin: 0;
}
.member .table td .btn {
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px !important;
  width: 80px !important;
  height: 30px !important;
  border-radius: 4px !important;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  border: 1px solid #1d2d5b !important;
  background: #ffffff !important;
  color: #1d2d5b !important;
}
.member .table td .btn:hover {
  background: #1d2d5b !important;
  color: #ffffff !important;
}

.setting section {
  position: relative;
}
.setting section .section_tit {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 20px;
  color: #222222;
}
.setting .setting_table {
  margin: 0 auto;
  text-align: center;
}
.setting .setting_table table {
  width: 100%;
}
.setting .setting_table table th {
  background: #1d2d5b;
  border-top: 1px solid #dce7f1;
  border-bottom: 1px solid #dce7f1;
  padding: 16px 0;
  color: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 15px;
  vertical-align: middle;
}
.setting .setting_table table td {
  background: #ffffff;
  border-top: 1px solid #dce7f1;
  border-bottom: 1px solid #dce7f1;
  padding: 16px 0;
  color: #222222;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  vertical-align: middle;
}
.setting .setting_table table td {
  position: relative;
}
.setting .setting_table table td .checkbox input[type=checkbox] {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 16px;
  height: 16px;
  background: #ffffff;
  border: 1px solid #bbbbbb;
  border-radius: 4px;
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, border-color 0.3s;
  margin: 0;
}
.setting .setting_table table td .checkbox input[type=checkbox]:checked {
  background: url("../img/icon/ico_check_bg.png") no-repeat center;
  font-size: 0;
  margin: 0;
}
.setting .setting_table table td .checkbox label {
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  vertical-align: 3px;
  margin-left: 4px;
  cursor: pointer;
}
.setting .setting_table table td .radio input[type=radio] {
  position: relative;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 16px;
  height: 16px;
  background: #ffffff;
  border: 1px solid #bbbbbb;
  border-radius: 50%;
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, border-color 0.3s;
}
.setting .setting_table table td .radio input[type=radio]:checked::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #1d2d5b;
}
.setting .setting_table table td .radio input[type=radio] + label {
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 14px;
  vertical-align: 3px;
  margin-left: 4px;
  cursor: pointer;
}
.setting .setting_table table td .radio input[type=radio] + label + input[type=radio] {
  margin-left: 20px;
}
.setting .setting_table table td progress {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: calc(100% - 200px);
  height: 28px;
}
.setting .setting_table table td progress::-webkit-progress-bar {
  width: 100%;
  height: 100%;
  border: 1px solid #bbbbbb;
  border-radius: 20px;
  background: #e9e9e9;
  overflow: hidden;
}
.setting .setting_table table td progress::-webkit-progress-value {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: #1d2d5b;
}
.setting .setting_table table td progress + span {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 16px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 60px;
}
.setting .setting_table table tr:first-child td {
  padding: 0 !important;
}
.setting .setting_table button {
  margin-top: 30px;
  height: 36px;
  font-size: 14px;
  width: 100px;
  border-radius: 8px;
  color: #ffffff;
  background: #1d2d5b;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.setting .setting_table button:hover {
  color: #1d2d5b;
  border: 1px solid #1d2d5b;
  background: #ffffff;
}
.setting .setting_table button:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.setting .setting_table button.gray {
  background: #eeeeee;
  color: #222222;
}
.setting .setting_table button.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.setting .setting_table button.gray:disabled {
  pointer-events: none;
}
.setting .setting_table button.reverse {
  border: 1px solid #1d2d5b;
  background: #ffffff;
  color: #1d2d5b;
}
.setting .setting_table button.reverse:hover {
  background: #1d2d5b;
  color: #ffffff;
}
.setting .setting_table button.cancel {
  border: 1px solid #ec6666;
  background: #ffffff;
  color: #ec6666;
}
.setting .setting_table button.cancel:hover {
  background: #ec6666;
  color: #ffffff;
}

.company {
  padding-bottom: 30px !important;
}
.company section {
  position: relative;
}
.company section .section_tit {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 20px;
  color: #222222;
}
.company section + section {
  margin-top: 25px;
}
.company .search {
  width: 100%;
  padding: 15px 30px;
  border-radius: 5px;
  background: #ffffff;
  border: 1px solid #e9e9e9;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}
.company .search .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: nowrap;
      flex-wrap: nowrap;
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
}
.company .search .search_box .flex .input_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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: relative;
}
.company .search .search_box .flex .input_box label {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #1d2d5b;
}
.company .search .search_box .flex .input_box input {
  width: 200px;
  height: 36px;
  border-radius: 10px;
  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;
}
.company .search .search_box .flex .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.company .search .search_box .flex .input_box input::-moz-placeholder {
  color: #6c757d;
}
.company .search .search_box .flex .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.company .search .search_box .flex .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.company .search .search_box .flex .input_box input::placeholder {
  color: #6c757d;
}
.company .search .search_box .flex .input_box input:focus {
  border: 1px solid #1d2d5b;
}
.company .search .search_box .flex .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.company .search .search_box .flex .input_box input:disabled, .company .search .search_box .flex .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.company .search .search_box .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: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.company .search .search_box .flex .input_box.date .calendar {
  position: relative;
}
.company .search .search_box .flex .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #1d2d5b;
  -webkit-mask-image: url("../img/icon/ico_calendar.svg");
          mask-image: url("../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%);
}
.company .search .search_box .flex .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.company .search .search_box .flex .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.company .search .search_box .flex .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.company .search .search_box .flex .input_box.long input {
  width: 250px;
}
.company .search .search_box .flex .input_box label {
  display: inline-block;
  font-size: 14px;
  min-width: 50px;
}
.company .search .search_box .flex + .flex {
  margin-top: 12px;
}
.company .search .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: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.company .search .btn_box button {
  height: 36px;
  font-size: 14px;
  width: 100px;
  border-radius: 8px;
  color: #ffffff;
  background: #1d2d5b;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.company .search .btn_box button:hover {
  color: #1d2d5b;
  border: 1px solid #1d2d5b;
  background: #ffffff;
}
.company .search .btn_box button:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.company .search .btn_box button.gray {
  background: #eeeeee;
  color: #222222;
}
.company .search .btn_box button.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.company .search .btn_box button.gray:disabled {
  pointer-events: none;
}
.company .search .btn_box button.reverse {
  border: 1px solid #1d2d5b;
  background: #ffffff;
  color: #1d2d5b;
}
.company .search .btn_box button.reverse:hover {
  background: #1d2d5b;
  color: #ffffff;
}
.company .search .btn_box button.cancel {
  border: 1px solid #ec6666;
  background: #ffffff;
  color: #ec6666;
}
.company .search .btn_box button.cancel:hover {
  background: #ec6666;
  color: #ffffff;
}
.company .table .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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 20px 30px 15px 0;
}
.company .table .btn_box button {
  height: 30px;
  font-size: 14px;
  width: 100px;
  border-radius: 4px;
  color: #ffffff;
  background: #1d2d5b;
  font-family: "Pretendard Variable";
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 12px !important;
}
.company .table .btn_box button:hover {
  color: #1d2d5b;
  border: 1px solid #1d2d5b;
  background: #ffffff;
}
.company .table .btn_box button:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.company .table .btn_box button.gray {
  background: #eeeeee;
  color: #222222;
}
.company .table .btn_box button.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.company .table .btn_box button.gray:disabled {
  pointer-events: none;
}
.company .table .btn_box button.reverse {
  border: 1px solid #1d2d5b;
  background: #ffffff;
  color: #1d2d5b;
}
.company .table .btn_box button.reverse:hover {
  background: #1d2d5b;
  color: #ffffff;
}
.company .table .btn_box button.cancel {
  border: 1px solid #ec6666;
  background: #ffffff;
  color: #ec6666;
}
.company .table .btn_box button.cancel:hover {
  background: #ec6666;
  color: #ffffff;
}
.company .table .btn_box button.delete_btn::before {
  content: "";
  display: inline-block;
  background-color: #ec6666;
  -webkit-mask-image: url("../img/icon/ico_delete.svg");
          mask-image: url("../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: 16px;
  vertical-align: middle;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.company .table .btn_box button.delete_btn:hover::before {
  background-color: #ffffff;
}
.company .table .btn_box button.add_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("../img/icon/ico_user_add.svg");
          mask-image: url("../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: middle;
  margin-right: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.company .table .btn_box button.add_btn:hover::before {
  background-color: #1d2d5b;
}
.company .table table {
  width: 100%;
}
.company .table table thead th {
  background: #1d2d5b;
  border: none;
  padding: 10px 0;
  color: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 15px;
  vertical-align: middle;
}
.company .table table tbody td {
  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;
  vertical-align: middle;
}
.company .table th input[type=checkbox] {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 16px;
  height: 16px;
  background: #ffffff;
  border: 1px solid #bbbbbb;
  border-radius: 4px;
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, border-color 0.3s;
  margin: 0;
}
.company .table th input[type=checkbox]:checked {
  background: url("../img/icon/ico_check_bg.png") no-repeat center;
  font-size: 0;
  margin: 0;
}
.company .table td input[type=checkbox] {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 16px;
  height: 16px;
  background: #ffffff;
  border: 1px solid #bbbbbb;
  border-radius: 4px;
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, border-color 0.3s;
  margin: 0;
}
.company .table td input[type=checkbox]:checked {
  background: url("../img/icon/ico_check_bg.png") no-repeat center;
  font-size: 0;
  margin: 0;
}
.company .table td .btn {
  font-family: "Pretendard Variable";
  font-weight: 400;
  font-size: 14px !important;
  width: 80px !important;
  height: 30px !important;
  border-radius: 4px !important;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  border: 1px solid #1d2d5b !important;
  background: #ffffff !important;
  color: #1d2d5b !important;
}
.company .table td .btn:hover {
  background: #1d2d5b !important;
  color: #ffffff !important;
}

.statistics section {
  position: relative;
}
.statistics section .section_tit {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 20px;
  color: #222222;
}
.statistics section + section {
  margin-top: 25px;
}
.statistics .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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 25px 0;
}
.statistics .flex .page_tit {
  margin: 0;
}
.statistics .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: 6px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.statistics .flex .date_box .prev_btn {
  background-color: #222222;
  -webkit-mask-image: url("../img/icon/ico_arrow_left.svg");
          mask-image: url("../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: 20px;
  height: 20px;
}
.statistics .flex .date_box .prev_btn:hover {
  background-color: #1d2d5b;
}
.statistics .flex .date_box .next_btn {
  background-color: #222222;
  -webkit-mask-image: url("../img/icon/ico_arrow_right.svg");
          mask-image: url("../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;
}
.statistics .flex .date_box .next_btn:hover {
  background-color: #1d2d5b;
}
.statistics .flex .date_box p {
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 16px;
  color: #222222;
}
.statistics .down_btn {
  height: 34px;
  font-size: 14px;
  width: 120px;
  border-radius: 4px;
  color: #ffffff;
  background: #1d2d5b;
  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;
}
.statistics .down_btn:hover {
  color: #1d2d5b;
  border: 1px solid #1d2d5b;
  background: #ffffff;
}
.statistics .down_btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.statistics .down_btn.gray {
  background: #eeeeee;
  color: #222222;
}
.statistics .down_btn.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.statistics .down_btn.gray:disabled {
  pointer-events: none;
}
.statistics .down_btn.reverse {
  border: 1px solid #1d2d5b;
  background: #ffffff;
  color: #1d2d5b;
}
.statistics .down_btn.reverse:hover {
  background: #1d2d5b;
  color: #ffffff;
}
.statistics .down_btn.cancel {
  border: 1px solid #ec6666;
  background: #ffffff;
  color: #ec6666;
}
.statistics .down_btn.cancel:hover {
  background: #ec6666;
  color: #ffffff;
}
.statistics .down_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("../img/icon/ico_down.svg");
          mask-image: url("../img/icon/ico_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: 16px;
  height: 14px;
  margin-right: 4px;
  vertical-align: middle;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.statistics .down_btn:hover::before {
  background-color: #1d2d5b;
}
.statistics .chart {
  width: 100%;
  padding: 25px 30px;
  border-radius: 5px;
  background: #ffffff;
  border: 1px solid #e9e9e9;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}
.statistics .table table {
  width: 100%;
}
.statistics .table table thead th {
  background: #1d2d5b;
  border: none;
  padding: 10px 0;
  color: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 15px;
  vertical-align: middle;
}
.statistics .table table tbody td {
  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;
  vertical-align: middle;
}

/* 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.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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
  height: 100%;
}
.modal .modal_dialog .modal_content {
  position: relative;
  width: 100%;
  max-width: 700px;
  border-radius: 12px;
  background: #ffffff;
}
.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_section {
  position: relative;
  width: 100%;
}
.modal .modal_dialog .modal_content .modal_body .audio_section table {
  width: 100%;
}
.modal .modal_dialog .modal_content .modal_body .audio_section table thead th {
  background: #1d2d5b;
  border: none;
  padding: 10px 0;
  color: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 15px;
  vertical-align: middle;
}
.modal .modal_dialog .modal_content .modal_body .audio_section table tbody td {
  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;
  vertical-align: middle;
}
.modal .modal_dialog .modal_content .modal_body .audio_section audio {
  margin-top: 20px;
}
.modal .modal_dialog .modal_content .modal_body .sms_section {
  position: relative;
  width: 100%;
}
.modal .modal_dialog .modal_content .modal_body .sms_section table {
  width: 100%;
}
.modal .modal_dialog .modal_content .modal_body .sms_section table thead th {
  background: #1d2d5b;
  border: none;
  padding: 10px 0;
  color: #ffffff;
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 15px;
  vertical-align: middle;
}
.modal .modal_dialog .modal_content .modal_body .sms_section table tbody td {
  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;
  vertical-align: middle;
}
.modal .modal_dialog .modal_content .modal_body .tab_section {
  margin-top: 30px;
  position: relative;
  width: 100%;
}
.modal .modal_dialog .modal_content .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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  top: 1px;
}
.modal .modal_dialog .modal_content .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 #e9e9e9;
  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_dialog .modal_content .modal_body .tab_section .tab li.active {
  color: #1d2d5b;
  border: 1px solid #1d2d5b;
  border-bottom: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  z-index: 1;
}
.modal .modal_dialog .modal_content .modal_body .tab_section .tab li:hover {
  color: #1d2d5b;
  border: 1px solid #1d2d5b;
  border-bottom: none;
}
.modal .modal_dialog .modal_content .modal_body .tab_section .tab_box {
  display: none;
  position: relative;
  background: #ffffff;
  border: 1px solid #e9e9e9;
  border-top: 1px solid #1d2d5b;
  width: 100%;
  padding: 30px;
  border-radius: 0 0 5px 5px;
  -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);
}
.modal .modal_dialog .modal_content .modal_body .tab_section .tab_box.show {
  display: block;
}
.modal .modal_dialog .modal_content .modal_body .tab_section .tab li {
  padding: 0 30px;
  height: 40px;
  line-height: 40px;
}
.modal .modal_dialog .modal_content .modal_body .tab_section .tab_box {
  height: 400px;
  overflow-y: auto;
}
.modal .modal_dialog .modal_content .modal_body .tab_section .tab_box::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.modal .modal_dialog .modal_content .modal_body .tab_section .tab_box::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.modal .modal_dialog .modal_content .modal_body .tab_section .tab_box::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.modal .modal_dialog .modal_content .modal_body .tab_section .tab_box::-webkit-scrollbar-track {
  background: #ffffff;
}
.modal .modal_dialog .modal_content .modal_body .tab_section .tab_box::-webkit-scrollbar-button {
  display: none;
}
.modal .modal_dialog .modal_content .modal_body .tab_section .tab_box .tab_content .message {
  width: 100%;
  white-space: normal;
}
.modal .modal_dialog .modal_content .modal_body .tab_section .tab_box .tab_content .message .speaker {
  font-family: "Pretendard Variable";
  font-weight: 700;
  font-size: 15px;
  margin-right: 4px;
}
.modal .modal_dialog .modal_content .modal_body .tab_section .tab_box .tab_content .message .speaker.speaker-A {
  color: #5176f6;
}
.modal .modal_dialog .modal_content .modal_body .tab_section .tab_box .tab_content .message .content {
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 15px;
  color: #222222;
  letter-spacing: 0.6px;
  line-height: 1.6;
  word-break: keep-all;
}
.modal .modal_dialog .modal_content .modal_body .tab_section .tab_box .tab_content .message .timestamp {
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #777777;
  text-align: right;
}
.modal .modal_dialog .modal_content .modal_body .tab_section .tab_box .tab_content .text {
  width: 100%;
  white-space: normal;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 15px;
  color: #222222;
  letter-spacing: 0.6px;
  line-height: 1.6;
  word-break: keep-all;
}
.modal .modal_dialog .modal_content .modal_body .tab_section .tab_box .tab_content .message_box {
  width: 100%;
  white-space: normal;
}
.modal .modal_dialog .modal_content .modal_body .tab_section .tab_box .tab_content .message_box .txt {
  width: 100%;
  white-space: normal;
  font-family: "Pretendard Variable";
  font-weight: 500;
  font-size: 13px;
  color: #222222;
  line-height: 1.4;
  word-break: keep-all;
}
.modal .modal_dialog .modal_content .modal_body .tab_section .tab_box .tab_content .image_box {
  width: 100%;
}
.modal .modal_dialog .modal_content .modal_body .tab_section .tab_box .tab_content .image_box img {
  max-height: 320px;
  max-width: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
.modal .modal_dialog .modal_content .modal_body .member_regi .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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.modal .modal_dialog .modal_content .modal_body .member_regi .flex + .flex {
  margin-top: 10px;
}
.modal .modal_dialog .modal_content .modal_body .member_regi .flex + .select_box {
  margin-top: 10px;
}
.modal .modal_dialog .modal_content .modal_body .member_regi .input_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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: relative;
}
.modal .modal_dialog .modal_content .modal_body .member_regi .input_box label {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #1d2d5b;
}
.modal .modal_dialog .modal_content .modal_body .member_regi .input_box input {
  width: 200px;
  height: 36px;
  border-radius: 10px;
  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_dialog .modal_content .modal_body .member_regi .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.modal .modal_dialog .modal_content .modal_body .member_regi .input_box input::-moz-placeholder {
  color: #6c757d;
}
.modal .modal_dialog .modal_content .modal_body .member_regi .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.modal .modal_dialog .modal_content .modal_body .member_regi .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.modal .modal_dialog .modal_content .modal_body .member_regi .input_box input::placeholder {
  color: #6c757d;
}
.modal .modal_dialog .modal_content .modal_body .member_regi .input_box input:focus {
  border: 1px solid #1d2d5b;
}
.modal .modal_dialog .modal_content .modal_body .member_regi .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.modal .modal_dialog .modal_content .modal_body .member_regi .input_box input:disabled, .modal .modal_dialog .modal_content .modal_body .member_regi .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.modal .modal_dialog .modal_content .modal_body .member_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: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.modal .modal_dialog .modal_content .modal_body .member_regi .input_box.date .calendar {
  position: relative;
}
.modal .modal_dialog .modal_content .modal_body .member_regi .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #1d2d5b;
  -webkit-mask-image: url("../img/icon/ico_calendar.svg");
          mask-image: url("../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_dialog .modal_content .modal_body .member_regi .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.modal .modal_dialog .modal_content .modal_body .member_regi .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.modal .modal_dialog .modal_content .modal_body .member_regi .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.modal .modal_dialog .modal_content .modal_body .member_regi .input_box label {
  display: inline-block;
  font-size: 14px;
  min-width: 80px;
}
.modal .modal_dialog .modal_content .modal_body .member_regi .input_box span {
  font-family: "Pretendard Variable";
  font-weight: 500;
  color: #222222;
  font-size: 14px;
}
.modal .modal_dialog .modal_content .modal_body .member_regi .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: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.modal .modal_dialog .modal_content .modal_body .member_regi .select_box label {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #1d2d5b;
}
.modal .modal_dialog .modal_content .modal_body .member_regi .select_box select {
  width: 200px;
  height: 36px;
  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;
}
.modal .modal_dialog .modal_content .modal_body .member_regi .select_box select::-webkit-input-placeholder {
  color: #6c757d;
}
.modal .modal_dialog .modal_content .modal_body .member_regi .select_box select::-moz-placeholder {
  color: #6c757d;
}
.modal .modal_dialog .modal_content .modal_body .member_regi .select_box select:-ms-input-placeholder {
  color: #6c757d;
}
.modal .modal_dialog .modal_content .modal_body .member_regi .select_box select::-ms-input-placeholder {
  color: #6c757d;
}
.modal .modal_dialog .modal_content .modal_body .member_regi .select_box select::placeholder {
  color: #6c757d;
}
.modal .modal_dialog .modal_content .modal_body .member_regi .select_box select:focus {
  border: 1px solid #1d2d5b;
}
.modal .modal_dialog .modal_content .modal_body .member_regi .select_box select:disabled {
  background: #e9ecef;
  cursor: default;
}
.modal .modal_dialog .modal_content .modal_body .member_regi .select_box label {
  display: block;
  font-size: 14px;
  min-width: 80px;
}
.modal .modal_dialog .modal_content .modal_body .company_regi .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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.modal .modal_dialog .modal_content .modal_body .company_regi .flex + .flex {
  margin-top: 10px;
}
.modal .modal_dialog .modal_content .modal_body .company_regi .flex.long .input_box {
  width: 100%;
}
.modal .modal_dialog .modal_content .modal_body .company_regi .flex.long .input_box input {
  width: 100%;
}
.modal .modal_dialog .modal_content .modal_body .company_regi .input_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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: relative;
}
.modal .modal_dialog .modal_content .modal_body .company_regi .input_box label {
  font-family: "Pretendard Variable";
  font-weight: 700;
  color: #1d2d5b;
}
.modal .modal_dialog .modal_content .modal_body .company_regi .input_box input {
  width: 200px;
  height: 36px;
  border-radius: 10px;
  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_dialog .modal_content .modal_body .company_regi .input_box input::-webkit-input-placeholder {
  color: #6c757d;
}
.modal .modal_dialog .modal_content .modal_body .company_regi .input_box input::-moz-placeholder {
  color: #6c757d;
}
.modal .modal_dialog .modal_content .modal_body .company_regi .input_box input:-ms-input-placeholder {
  color: #6c757d;
}
.modal .modal_dialog .modal_content .modal_body .company_regi .input_box input::-ms-input-placeholder {
  color: #6c757d;
}
.modal .modal_dialog .modal_content .modal_body .company_regi .input_box input::placeholder {
  color: #6c757d;
}
.modal .modal_dialog .modal_content .modal_body .company_regi .input_box input:focus {
  border: 1px solid #1d2d5b;
}
.modal .modal_dialog .modal_content .modal_body .company_regi .input_box input:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.modal .modal_dialog .modal_content .modal_body .company_regi .input_box input:disabled, .modal .modal_dialog .modal_content .modal_body .company_regi .input_box input:read-only {
  background: #e9ecef;
  cursor: default;
}
.modal .modal_dialog .modal_content .modal_body .company_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: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.modal .modal_dialog .modal_content .modal_body .company_regi .input_box.date .calendar {
  position: relative;
}
.modal .modal_dialog .modal_content .modal_body .company_regi .input_box.date .calendar::before {
  content: "";
  display: inline-block;
  background-color: #1d2d5b;
  -webkit-mask-image: url("../img/icon/ico_calendar.svg");
          mask-image: url("../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_dialog .modal_content .modal_body .company_regi .input_box.date .calendar input {
  padding: 8px 18px 8px 32px;
  cursor: pointer;
}
.modal .modal_dialog .modal_content .modal_body .company_regi .input_box.date .calendar input:-moz-read-only {
  background: #ffffff;
  cursor: pointer;
}
.modal .modal_dialog .modal_content .modal_body .company_regi .input_box.date .calendar input:read-only {
  background: #ffffff;
  cursor: pointer;
}
.modal .modal_dialog .modal_content .modal_body .company_regi .input_box label {
  display: inline-block;
  font-size: 14px;
  min-width: 80px;
}
.modal .modal_dialog .modal_content .modal_body .company_regi .input_box span {
  font-family: "Pretendard Variable";
  font-weight: 500;
  color: #222222;
  font-size: 14px;
}
.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: 15px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
  border-top: 1px solid #dce7f1;
  border-radius: 0 0 20px 20px;
}
.modal .modal_dialog .modal_content .modal_footer button {
  height: 36px;
  font-size: 12px;
  width: 80px;
  border-radius: 8px;
  color: #ffffff;
  background: #1d2d5b;
  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 button:hover {
  color: #1d2d5b;
  border: 1px solid #1d2d5b;
  background: #ffffff;
}
.modal .modal_dialog .modal_content .modal_footer button:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.modal .modal_dialog .modal_content .modal_footer button.gray {
  background: #eeeeee;
  color: #222222;
}
.modal .modal_dialog .modal_content .modal_footer button.gray:hover {
  color: #ffffff;
  border: none;
  background: #000000;
}
.modal .modal_dialog .modal_content .modal_footer button.gray:disabled {
  pointer-events: none;
}
.modal .modal_dialog .modal_content .modal_footer button.reverse {
  border: 1px solid #1d2d5b;
  background: #ffffff;
  color: #1d2d5b;
}
.modal .modal_dialog .modal_content .modal_footer button.reverse:hover {
  background: #1d2d5b;
  color: #ffffff;
}
.modal .modal_dialog .modal_content .modal_footer button.cancel {
  border: 1px solid #ec6666;
  background: #ffffff;
  color: #ec6666;
}
.modal .modal_dialog .modal_content .modal_footer button.cancel:hover {
  background: #ec6666;
  color: #ffffff;
}
.modal .modal_dialog .modal_content.type_simple {
  max-width: 500px;
}
.modal .modal_dialog .modal_content.type_simple .modal_header .modal_tit {
  text-align: center;
}
.modal .modal_dialog .modal_content.type_simple .modal_body .reason {
  position: relative;
}
.modal .modal_dialog .modal_content.type_simple .modal_body .reason textarea {
  width: 100%;
  height: 80px;
  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;
  overflow-y: auto;
  resize: none;
}
.modal .modal_dialog .modal_content.type_simple .modal_body .reason textarea::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: initial;
}
.modal .modal_dialog .modal_content.type_simple .modal_body .reason textarea::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
.modal .modal_dialog .modal_content.type_simple .modal_body .reason textarea::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.modal .modal_dialog .modal_content.type_simple .modal_body .reason textarea::-webkit-scrollbar-track {
  background: #ffffff;
}
.modal .modal_dialog .modal_content.type_simple .modal_body .reason textarea::-webkit-scrollbar-button {
  display: none;
}
.modal .modal_dialog .modal_content.type_simple .modal_body .reason textarea::-webkit-input-placeholder {
  color: #6c757d;
}
.modal .modal_dialog .modal_content.type_simple .modal_body .reason textarea::-moz-placeholder {
  color: #6c757d;
}
.modal .modal_dialog .modal_content.type_simple .modal_body .reason textarea:-ms-input-placeholder {
  color: #6c757d;
}
.modal .modal_dialog .modal_content.type_simple .modal_body .reason textarea::-ms-input-placeholder {
  color: #6c757d;
}
.modal .modal_dialog .modal_content.type_simple .modal_body .reason textarea::placeholder {
  color: #6c757d;
}
.modal .modal_dialog .modal_content.type_simple .modal_body .reason textarea:focus {
  border: 1px solid #1d2d5b;
  outline: none;
}
.modal .modal_dialog .modal_content.type_simple .modal_body .reason textarea:-moz-read-only {
  background: #e9ecef;
  cursor: default;
}
.modal .modal_dialog .modal_content.type_simple .modal_body .reason textarea:disabled, .modal .modal_dialog .modal_content.type_simple .modal_body .reason textarea:read-only {
  background: #e9ecef;
  cursor: default;
}
.modal .modal_dialog .modal_content.type_simple .modal_body .reason p {
  margin-top: 10px;
  padding-left: 6px;
  font-family: "Pretendard Variable";
  font-weight: 500;
  color: #222222;
  font-size: 13px;
}
.modal .modal_dialog .modal_content.type_simple .modal_footer {
  border-top: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}/*# sourceMappingURL=common.css.map */