@charset "UTF-8";
/*
    ■ SCSS로 컴파일된 CSS형식입니다.
    ■ SCSS를 수정하여 컴파일 되어야 합니다.
*/
@import 'admWebFonts.css';
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: none 0;
  border-spacing: 0;
}

html,
body {
  overflow-x: hidden;
  overflow-y: hidden;
}

body {
  font-family: "Spoqa Han Sans", Sans-serif;
  color: #101010;
  font-size: 14px;
  background-color: #f8f8f9;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
}

header,
section,
article,
nav,
aside,
footer,
address {
  margin: 0;
  padding: 0;
  border: none 0;
  border-spacing: 0;
}

img,
fieldset,
iframe {
  border: 0;
}

ol,
ul,
li {
  list-style: none;
}

input,
select,
button {
  vertical-align: middle;
  font-size: 14px;
  color: #101010;
}

img {
  vertical-align: middle;
}

select,
textarea,
button,
input {
  font-family: "Spoqa Han Sans", Sans-serif;
  color: #101010;
  outline: none;
}

i,
em,
address {
  font-style: normal;
}

button {
  margin: 0;
  padding: 0;
  cursor: pointer;
}

a {
  color: #101010;
}

a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

legend,
caption {
  display: none;
}

input:focus,
button:focus {
  outline: none;
}

table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

header {
  width: 260px;
  height: 100vh;
  background-color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9;
}
header .top_ctrl {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding: 0 20px;
}
header .top_ctrl .logo {
  width: 100%;
  height: 68px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .top_ctrl .logo a img {
  width: 158px;
}
header .top_ctrl .asso_select {
  position: relative;
}
header .top_ctrl .asso_select .view {
  width: 100%;
  height: 40px;
  background-color: #0086ff;
  color: #fff;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  border-radius: 4px;
  cursor: pointer;
}
header .top_ctrl .asso_select .view .icon {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  width: 20px;
  height: 20px;
  background: url("/images/admin/icon_arrow_select_white.svg") no-repeat center center;
}
header .top_ctrl .asso_select .view.active .icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
header .top_ctrl .asso_select .menus {
  width: 100%;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 40px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 1px 0 15px rgba(0, 0, 0, 0.09);
          box-shadow: 1px 0 15px rgba(0, 0, 0, 0.09);
  display: none;
  z-index: 3;
  padding: 10px 0;
}
header .top_ctrl .asso_select .menus .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
header .top_ctrl .asso_select .menus .list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding: 10px 0 10px 18px;
  font-size: 14px;
}
header .top_ctrl .asso_select .menus .list a:hover {
  color: #0086ff;
  background-color: #eff3f7;
}
header .top_ctrl .asso_select .menus .list a img {
  display: none;
}
header .top_ctrl .user_select {
  width: 100%;
  position: relative;
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
}
header .top_ctrl .user_select .view {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  position: relative;
}
header .top_ctrl .user_select .view .initials {
  width: 40px;
  height: 40px;
  background-color: #f7f7f7;
  font-weight: 500;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .top_ctrl .user_select .view .info {
  width: calc(100% - 50px);
  padding-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
header .top_ctrl .user_select .view .info .cate {
  font-size: 12px;
  color: #767676;
  margin-bottom: 2px;
}
header .top_ctrl .user_select .view .icon {
  height: 20px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
header .top_ctrl .user_select .view.active .icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
header .top_ctrl .user_select .view.active::after {
  opacity: 0;
}
header .top_ctrl .user_select .menus {
  width: 100%;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 70px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 1px 0 15px rgba(0, 0, 0, 0.09);
          box-shadow: 1px 0 15px rgba(0, 0, 0, 0.09);
  display: none;
  z-index: 3;
  padding: 10px 0;
}
header .top_ctrl .user_select .menus .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
header .top_ctrl .user_select .menus .list > a {
  padding: 10px 0 10px 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 17px;
  color: #101010;
}
header .top_ctrl .user_select .menus .list > a i {
  width: 18px;
  height: 18px;
  -webkit-mask-size: 18px 18px;
          mask-size: 18px 18px;
  background-color: #767676;
}
header .top_ctrl .user_select .menus .list > a i.building {
  -webkit-mask-image: url("/images/admin/icon_building.svg");
          mask-image: url("/images/admin/icon_building.svg");
}
header .top_ctrl .user_select .menus .list > a i.modify {
  -webkit-mask-image: url("/images/admin/icon_modify.svg");
          mask-image: url("/images/admin/icon_modify.svg");
}
header .top_ctrl .user_select .menus .list > a i.logout {
  -webkit-mask-image: url("/images/admin/icon_logout.svg");
          mask-image: url("/images/admin/icon_logout.svg");
}
header .top_ctrl .user_select .menus .list > a:hover {
  color: #0086ff;
  background-color: #eff3f7;
}
header .top_ctrl .user_select .menus .list > a:hover i {
  background-color: #0086ff;
}
header nav {
  height: calc(100% - 255px);
  overflow-x: hidden;
  overflow-y: auto;
  margin-top: 15px;
}
header nav::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
header nav::-webkit-scrollbar-thumb {
  background: #e0e0e0;
  border-radius: 5px;
}
header nav::-webkit-scrollbar-track {
  border-radius: 5px;
}
header nav::-webkit-scrollbar-thumb:hover {
  background: #e0e0e0;
  border-radius: 5px;
}
@media screen and (max-width: 812px) {
  header nav::-webkit-scrollbar {
    width: 0.7rem;
    height: 0.7rem;
  }
  header nav::-webkit-scrollbar-thumb {
    border-radius: 0.5rem;
  }
  header nav::-webkit-scrollbar-track {
    border-radius: 0.5rem;
  }
  header nav::-webkit-scrollbar-thumb:hover {
    border-radius: 0.5rem;
  }
}
header nav .depth1 > li {
  width: 100%;
  display: inline-block;
}
header nav .depth1 > li > a,
header nav .depth1 > li > span {
  width: 100%;
  font-weight: 500;
  padding: 5px 20px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
header nav .depth1 > li > a::before,
header nav .depth1 > li > span::before {
  content: "";
  width: 40px;
  height: 40px;
  -webkit-mask-size: 18px 18px;
          mask-size: 18px 18px;
  background-color: #767676;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  margin-right: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
header nav .depth1 > li > a::after,
header nav .depth1 > li > span::after {
  content: "";
  width: 10px;
  height: 10px;
  -webkit-mask-size: 10px 10px;
          mask-size: 10px 10px;
  background-color: #505050;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  -webkit-mask-image: url("/images/admin/nav/icon_plus.svg");
          mask-image: url("/images/admin/nav/icon_plus.svg");
}
header nav .depth1 > li > a:hover,
header nav .depth1 > li > span:hover {
  color: #0086ff;
}
header nav .depth1 > li > a:hover::before, header nav .depth1 > li > a:hover::after,
header nav .depth1 > li > span:hover::before,
header nav .depth1 > li > span:hover::after {
  background-color: #0086ff;
}
header nav .depth1 > li > a.active::after,
header nav .depth1 > li > span.active::after {
  width: 10px;
  height: 2px;
  -webkit-mask-size: 10px 2px;
          mask-size: 10px 2px;
  -webkit-mask-image: url("/images/admin/nav/icon_minus.svg");
          mask-image: url("/images/admin/nav/icon_minus.svg");
}
header nav .depth1 > li > a.home::before,
header nav .depth1 > li > span.home::before {
  -webkit-mask-image: url("/images/admin/nav/icon_home.svg");
          mask-image: url("/images/admin/nav/icon_home.svg");
}
header nav .depth1 > li > a.home::after,
header nav .depth1 > li > span.home::after {
  display: none;
}
header nav .depth1 > li > a.mn1::before,
header nav .depth1 > li > span.mn1::before {
  -webkit-mask-image: url("/images/admin/nav/icon_mn1.svg");
          mask-image: url("/images/admin/nav/icon_mn1.svg");
}
header nav .depth1 > li > a.mn2::before,
header nav .depth1 > li > span.mn2::before {
  -webkit-mask-image: url("/images/admin/nav/icon_mn2.svg");
          mask-image: url("/images/admin/nav/icon_mn2.svg");
}
header nav .depth1 > li > a.mn3::before,
header nav .depth1 > li > span.mn3::before {
  -webkit-mask-image: url("/images/admin/nav/icon_mn3.svg");
          mask-image: url("/images/admin/nav/icon_mn3.svg");
}
header nav .depth1 > li > a.mn4::before,
header nav .depth1 > li > span.mn4::before {
  -webkit-mask-image: url("/images/admin/nav/icon_mn4.svg");
          mask-image: url("/images/admin/nav/icon_mn4.svg");
}
header nav .depth1 > li > a.mn5::before,
header nav .depth1 > li > span.mn5::before {
  -webkit-mask-image: url("/images/admin/nav/icon_mn5.svg");
          mask-image: url("/images/admin/nav/icon_mn5.svg");
}
header nav .depth1 > li > a.mn6::before,
header nav .depth1 > li > span.mn6::before {
  -webkit-mask-image: url("/images/admin/nav/icon_mn6.svg");
          mask-image: url("/images/admin/nav/icon_mn6.svg");
}
header nav .depth1 > li > a.mn7::before,
header nav .depth1 > li > span.mn7::before {
  -webkit-mask-image: url("/images/admin/nav/icon_mn7.svg");
          mask-image: url("/images/admin/nav/icon_mn7.svg");
}
header nav .depth1 > li > a.mn8::before,
header nav .depth1 > li > span.mn8::before {
  -webkit-mask-image: url("/images/admin/nav/icon_mn8.svg");
          mask-image: url("/images/admin/nav/icon_mn8.svg");
}
header nav .depth1 > li > a.in_and_out::before,
header nav .depth1 > li > span.in_and_out::before {
  -webkit-mask-image: url("/images/admin/nav/icon_in_and_out.svg");
          mask-image: url("/images/admin/nav/icon_in_and_out.svg");
}
header nav .depth1 > li > a.sales_mgmt::before,
header nav .depth1 > li > span.sales_mgmt::before {
  -webkit-mask-image: url("/images/admin/nav/icon_sales_mgmt.svg");
          mask-image: url("/images/admin/nav/icon_sales_mgmt.svg");
}
header nav .depth1 > li > a.shop_mgmt::before,
header nav .depth1 > li > span.shop_mgmt::before {
  -webkit-mask-image: url("/images/admin/nav/icon_shop_mgmt.svg");
          mask-image: url("/images/admin/nav/icon_shop_mgmt.svg");
}
header nav .depth1 > li .depth2 {
  display: none;
  background-color: #f8f8f9;
  padding: 10px 0;
}
header nav .depth1 > li .depth2 > li {
  width: 100%;
  display: inline-block;
}
header nav .depth1 > li .depth2 > li > a {
  display: block;
  line-height: 40px;
  padding-left: 40px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
header nav .depth1 > li .depth2 > li > a.red {
  color: #0086ff;
  background-color: #f3f4f9;
}
header nav .depth1 > li .depth2 > li > a.has_dep3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header nav .depth1 > li .depth2 > li > a.has_dep3::before {
  content: "";
  width: 18px;
  height: 18px;
  background-color: #767676;
  margin-right: 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-mask-size: 12px 6px;
          mask-size: 12px 6px;
  -webkit-mask-image: url("/images/admin/nav/icon_arrow_select_black.svg");
          mask-image: url("/images/admin/nav/icon_arrow_select_black.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
}
header nav .depth1 > li .depth2 > li > a.has_dep3.on {
  color: #101010;
}
header nav .depth1 > li .depth2 > li > a.has_dep3.on::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
header nav .depth1 > li .depth2 > li > a.on {
  color: #0086ff;
}
header nav .depth1 > li .depth2 > li > a:hover {
  color: #0086ff;
  background-color: #d5e4f2;
}
header nav .depth1 > li .depth2 > li > a:hover::before {
  background-color: #0086ff;
}
header nav .depth1 > li .depth3 {
  display: none;
}
header nav .depth1 > li .depth3 > a {
  width: 100%;
  line-height: 34px;
  display: block;
  padding-left: 53px;
}
header nav .depth1 > li .depth3 > a:hover, header nav .depth1 > li .depth3 > a.red {
  color: #0086ff;
  background-color: #f3f4f9;
}
header .copyright {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 12px;
  color: #767676;
  text-align: center;
  line-height: 50px;
}

.comm_title {
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 10px;
}
.comm_title h4 {
  font-size: 22px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.comm_title h4 i {
  display: none !important;
}
.comm_title .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.comm_title .select_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.comm_title .select_wrap dt {
  font-size: 16px;
}
.comm_title .root {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
}
.comm_title .root li {
  padding-right: 12px;
  background: url("/images/admin/root_arrow.svg") no-repeat right center;
  color: #767676;
}
.comm_title .root li:last-child {
  padding-right: 0;
  background: none;
  color: #101010;
}

.comm_btn {
  height: 34px;
  padding: 0 15px;
  border: 1px solid #bfbfbf;
  background-color: #fff;
  border-radius: 4px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  white-space: nowrap;
}
.comm_btn:hover {
  border-color: #101010;
}
.comm_btn::before {
  content: "";
  margin-right: 5px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.comm_btn.brd_theme {
  color: #0086ff;
  border-color: #0086ff;
}
.comm_btn.brd_theme:hover {
  color: #fff;
  background-color: #0086ff;
}
.comm_btn.brd_theme::before {
  margin-right: 0;
}
.comm_btn.bg_theme {
  color: #fff;
  border-color: #0086ff;
  background-color: #0086ff;
}
.comm_btn.bg_theme:hover {
  color: #0086ff;
  background-color: #fff;
}
.comm_btn.bg_theme::before {
  margin-right: 0;
}
.comm_btn.brd_red {
  color: #ff4e4e;
  border-color: #ff4e4e;
}
.comm_btn.brd_red:hover {
  color: #fff;
  background-color: #ff4e4e;
}
.comm_btn.brd_red::before {
  margin-right: 0;
}
.comm_btn.brdr_gray {
  border-color: #767676;
  color: #767676;
}
.comm_btn.brdr_gray:hover {
  color: #fff;
  background-color: #767676;
}
.comm_btn.find {
  gap: 5px;
}
.comm_btn.find::before {
  width: 15px;
  height: 14px;
  -webkit-mask-size: 15px 14px;
          mask-size: 15px 14px;
  background-color: #505050;
  -webkit-mask-image: url("/images/admin/icon_btn_find.svg");
          mask-image: url("/images/admin/icon_btn_find.svg");
}
.comm_btn.reset {
  gap: 5px;
}
.comm_btn.reset::before {
  width: 14px;
  height: 14px;
  -webkit-mask-size: 14px 14px;
          mask-size: 14px 14px;
  background-color: #505050;
  -webkit-mask-image: url("/images/admin/icon_btn_reset.svg");
          mask-image: url("/images/admin/icon_btn_reset.svg");
}
.comm_btn.add {
  gap: 5px;
}
.comm_btn.add::before {
  width: 10px;
  height: 10px;
  -webkit-mask-size: 10px 10px;
          mask-size: 10px 10px;
  background-color: #505050;
  -webkit-mask-image: url("/images/admin/icon_plus.svg");
          mask-image: url("/images/admin/icon_plus.svg");
}
.comm_btn.del {
  gap: 5px;
}
.comm_btn.del::before {
  width: 12px;
  height: 11px;
  -webkit-mask-size: 12px 11px;
          mask-size: 12px 11px;
  background-color: #ff4e4e;
  -webkit-mask-image: url("/images/admin/icon_btn_del.svg");
          mask-image: url("/images/admin/icon_btn_del.svg");
}
.comm_btn.download {
  gap: 5px;
}
.comm_btn.download::before {
  width: 14px;
  height: 14px;
  -webkit-mask-size: 14px 14px;
          mask-size: 14px 14px;
  background-color: #505050;
  -webkit-mask-image: url("/images/admin/icon_btn_download.svg");
          mask-image: url("/images/admin/icon_btn_download.svg");
}
.comm_btn.save {
  color: #0086ff;
  border-color: #0086ff;
  gap: 5px;
}
.comm_btn.save:hover {
  color: #fff;
  background-color: #0086ff;
}
.comm_btn.save:hover::before {
  background-color: #fff;
}
.comm_btn.save::before {
  width: 15px;
  height: 10px;
  -webkit-mask-size: 15px 10px;
          mask-size: 15px 10px;
  background-color: #0086ff;
  -webkit-mask-image: url("/images/admin/icon_btn_save.svg");
          mask-image: url("/images/admin/icon_btn_save.svg");
}
.comm_btn.w_100 {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.comm_btn.xxx_prev {
  gap: 5px;
}
.comm_btn.xxx_prev::before {
  width: 15px;
  height: 13px;
  -webkit-mask-size: 15x 13px;
          mask-size: 15x 13px;
  background-color: #505050;
  -webkit-mask-image: url("/images/admin/icon_prev_view.svg");
          mask-image: url("/images/admin/icon_prev_view.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
}
.comm_btn.calendar {
  gap: 5px;
}
.comm_btn.calendar::before {
  width: 15px;
  height: 13px;
  -webkit-mask-size: 15x 13px;
          mask-size: 15x 13px;
  background-color: #505050;
  -webkit-mask-image: url("/images/admin/icon_calendar.svg");
          mask-image: url("/images/admin/icon_calendar.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
}
.comm_btn.calendar.bg_theme_bs {
  color: #fff;
  background-color: #0086ff;
  border-color: #0086ff;
}
.comm_btn.calendar.bg_theme_bs::before {
  background-color: #fff;
}
.comm_btn.eraser {
  gap: 5px;
}
.comm_btn.eraser::before {
  width: 15px;
  height: 13px;
  -webkit-mask-size: 15x 13px;
          mask-size: 15x 13px;
  background-color: #505050;
  -webkit-mask-image: url("/images/admin/icon_eraser.svg");
          mask-image: url("/images/admin/icon_eraser.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
}

button.addOne {
  width: 65px !important;
  height: 34px !important;
  border: 1px solid #bfbfbf;
  border-radius: 4px;
  background-color: #fff;
  font-weight: 500;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
button.addOne::after {
  content: "추가";
  display: inline-block;
  margin-left: 3px;
}
button.addOne:hover {
  background-color: #0086ff;
  border-color: #0086ff;
  color: #fff;
}
button.minusOne {
  width: 65px !important;
  height: 34px !important;
  border: 1px solid #bfbfbf;
  border-radius: 4px;
  background-color: #fff;
  font-weight: 500;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
button.minusOne::after {
  content: "삭제";
  display: inline-block;
  margin-left: 3px;
}
button.minusOne:hover {
  background-color: #0086ff;
  border-color: #0086ff;
  color: #fff;
}

input.comm_enter {
  width: 100%;
  height: 34px;
  border: 1px solid #bfbfbf;
  border-radius: 4px;
  padding: 0 15px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  font-weight: 500;
}
input.comm_enter::-webkit-input-placeholder {
  color: #ccc;
}
input.comm_enter::-moz-placeholder {
  color: #ccc;
}
input.comm_enter:-ms-input-placeholder {
  color: #ccc;
}
input.comm_enter::-ms-input-placeholder {
  color: #ccc;
}
input.comm_enter::placeholder {
  color: #ccc;
}
input.comm_enter:focus {
  border-color: #0086ff;
}
input.comm_enter:-moz-read-only {
  background-color: #f8f8f9;
  color: #767676;
}
input.comm_enter:read-only {
  background-color: #f8f8f9;
  color: #767676;
}
input.comm_enter:-moz-read-only:focus {
  border-color: #bfbfbf;
}
input.comm_enter:read-only:focus {
  border-color: #bfbfbf;
}

.search_input {
  width: 100%;
  height: 34px;
  border: 1px solid #bfbfbf;
  border-radius: 4px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.search_input .comm_enter {
  width: calc(100% - 32px);
  height: 32px;
  border: none;
  padding: 0;
  padding-left: 15px;
}
.search_input .comm_enter:-moz-read-only + button {
  background-color: #f8f8f9;
}
.search_input .comm_enter:read-only + button {
  background-color: #f8f8f9;
}
.search_input .comm_enter:-moz-read-only + .btns button {
  background-color: #f8f8f9;
}
.search_input .comm_enter:read-only + .btns button {
  background-color: #f8f8f9;
}
.search_input button {
  width: 32px;
  height: 32px;
  border: none;
  text-indent: -9999px;
  background-image: url("/images/admin/icon_btn_find.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #fff;
}
.search_input.has_reset .comm_enter {
  width: calc(100% - 64px);
}
.search_input.has_reset .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.search_input.has_reset .btns .reset {
  border-left: 1px solid #bfbfbf;
  background-image: url("/images/admin/icon_btn_reset.svg");
}

.enter_limit {
  position: relative;
}
.enter_limit .length {
  color: #767676;
}
.enter_limit .length i.now {
  color: #0086ff;
}
.enter_limit .length i.max {
  color: #767676;
}
.enter_limit.input .length {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 10px;
}
.enter_limit.textarea .comm_textarea {
  padding-bottom: 30px;
}
.enter_limit.textarea .length {
  position: absolute;
  bottom: 10px;
  right: 20px;
}

.ent_textarea_leng {
  position: relative;
}
.ent_textarea_leng .length {
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.ent_btn_field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.ent_btn_field button {
  height: 34px;
  padding: 0 10px;
  border: 1px solid #333;
  border-radius: 4px;
  background-color: #333;
  color: #fff;
  white-space: nowrap;
}

.addr_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.addr_wrap .search_input {
  width: 300px;
}

select {
  outline: none;
}
select.comm_select {
  width: 100%;
  height: 34px;
  border: 1px solid #ccc;
  border-radius: 4px;
  min-width: 100px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff url("/images/admin/icon_arrow_select_down.svg") no-repeat calc(100% - 15px) center;
  background-size: 8px 4px;
  padding-left: 15px;
  font-weight: 500;
}
select.comm_select:focus {
  border-color: #0086ff;
}

.select-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}

.comm_checkbox {
  display: inline-block;
  position: relative;
}
.comm_checkbox input[type=checkbox] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: 2;
  cursor: pointer;
}
.comm_checkbox input[type=checkbox]:checked + i {
  border-color: #00b3e3;
  background: #00b3e3 url("/images/admin/icon_check.svg") no-repeat center center;
}
.comm_checkbox i {
  width: 18px;
  height: 18px;
  border: 2px solid #e0e0e0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  border-radius: 4px;
}
.comm_checkbox label,
.comm_checkbox span {
  padding-left: 25px;
  position: relative;
  display: inline-block;
  line-height: 18px;
  color: #101010;
  cursor: pointer;
}
.comm_checkbox.no_text label {
  width: 18px;
  height: 18px;
  padding-left: 0;
}

.checkbox_group,
.checkbox-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 34px;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 15px;
}

.checkbox-group {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.radio_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 34px;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 15px;
}
.radio_group .comm_radio {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.radio_group .comm_radio input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.radio_group .comm_radio input[type=radio]:checked + label::before {
  outline: 2px solid #fff;
  outline-offset: -4px;
  background: #00b3e3;
  border-color: #00b3e3;
}
.radio_group .comm_radio label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  min-width: 18px;
  min-height: 18px;
  line-height: 18px;
  color: #101010;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}
.radio_group .comm_radio label span {
  display: inline-block;
  margin-left: 8px;
}
.radio_group .comm_radio label::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: #fff;
  border: 2px solid #767676;
  border-radius: 50%;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.radio_group .comm_radio label::after {
  content: "";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.radio_group .comm_radio_no_id {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.radio_group .comm_radio_no_id input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.radio_group .comm_radio_no_id input[type=radio]:checked + span::before {
  outline: 2px solid #fff;
  outline-offset: -4px;
  background: #00b3e3;
  border-color: #00b3e3;
}
.radio_group .comm_radio_no_id span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  min-width: 18px;
  min-height: 18px;
  line-height: 18px;
  color: #101010;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}
.radio_group .comm_radio_no_id span::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: #fff;
  border: 2px solid #767676;
  border-radius: 50%;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.radio_group .comm_radio_no_id span::after {
  content: "";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.comm_attachment {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.comm_attachment .file_hidd {
  width: 130px;
  height: 34px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}
.comm_attachment .file_root {
  width: calc(100% - 90px);
  height: 34px;
  padding: 0 15px;
  border: 1px solid #bfbfbf;
  border-radius: 4px;
}
.comm_attachment button {
  width: 80px;
  height: 34px;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 4px;
}

.comm_drop_file {
  width: 100%;
  min-height: 210px;
  border: 1px solid #bfbfbf;
  border-radius: 4px;
  padding: 5px;
}
.comm_drop_file.type_img .drop_zone {
  width: 100%;
  height: 100%;
  border: 1px dashed #bfbfbf;
  border-radius: 4px;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 10px;
}
.comm_drop_file.type_img .drop_zone .textlen {
  text-align: right;
  padding: 0;
}
.comm_drop_file.type_img .drop_zone .info_text {
  width: 100%;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #767676;
}
.comm_drop_file.type_img .drop_zone .info_text i {
  color: #0086ff;
  font-weight: 500;
  margin: 0 5px;
}
.comm_drop_file.type_img .drop_zone .file_list > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
}
.comm_drop_file.type_img .drop_zone .file_list > div .dndUl {
  position: relative;
}
.comm_drop_file.type_img .drop_zone .file_list > div .dndUl .chk_dnd {
  width: 98px;
  height: 98px;
  position: relative;
  overflow: hidden;
}
.comm_drop_file.type_img .drop_zone .file_list > div .dndUl .chk_dnd img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-user-drag: none;
}
.comm_drop_file.type_img .drop_zone .file_list > div .dndUl .del_btn {
  position: absolute;
  right: 2px;
  top: 2px;
}
.comm_drop_file.type_img .drop_zone .file_list > div .dndUl .del_btn input[type=button] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  border: 1px solid #bfbfbf;
  background-color: #fff;
  background-image: url("/images/admin/icon_btn_del.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 10px;
  text-indent: -9999px;
  border-radius: 100%;
}
.comm_drop_file.type_img .drop_zone .btns {
  width: 100%;
}
.comm_drop_file.type_img .drop_zone .btns .comm_btn {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

textarea.comm_textarea {
  width: 100%;
  height: 150px;
  min-height: 150px;
  border: 1px solid #bfbfbf;
  border-radius: 4px;
  padding: 15px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  resize: vertical;
  font-weight: 500;
}
textarea.comm_textarea:focus {
  border-color: #0086ff;
}
textarea.comm_textarea::-webkit-input-placeholder {
  color: #ccc;
}
textarea.comm_textarea::-moz-placeholder {
  color: #ccc;
}
textarea.comm_textarea:-ms-input-placeholder {
  color: #ccc;
}
textarea.comm_textarea::-ms-input-placeholder {
  color: #ccc;
}
textarea.comm_textarea::placeholder {
  color: #ccc;
}
textarea.comm_textarea:-moz-read-only {
  background-color: #f8f8f9;
  color: #767676;
}
textarea.comm_textarea:read-only {
  background-color: #f8f8f9;
  color: #767676;
}
textarea.comm_textarea:-moz-read-only:focus {
  border-color: #bfbfbf;
}
textarea.comm_textarea:read-only:focus {
  border-color: #bfbfbf;
}

.paging {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 25px;
  margin-bottom: 20px;
}
.paging a {
  width: 28px;
  height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.paging ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 20px;
  gap: 10px;
}
.paging ul .active {
  border: 1px solid #0086ff;
  color: #0086ff;
  border-radius: 4px;
}

.comm_go_top {
  width: 44px;
  height: 44px;
  border-radius: 100%;
  background-color: #303030;
  position: fixed;
  z-index: 22;
  right: 15px;
  bottom: 0;
  border: none;
}

.folding_all {
  width: 44px;
  height: 44px;
  border-radius: 100%;
  background-color: #303030;
  position: fixed;
  z-index: 22;
  right: 20px;
  bottom: 10px;
  border: none;
  -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.35);
          box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.35);
  display: none;
}

.vc-toggle-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.vc-toggle-container .vc-switch {
  width: auto;
  min-width: 50px;
}
.vc-toggle-container .vc-switch .vc-switch-input:checked ~ .vc-switch-label {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0 25px 0 10px;
  background-color: #0086ff;
}
.vc-toggle-container .vc-switch .vc-switch-input:checked ~ .vc-switch-label::after {
  display: block;
}
.vc-toggle-container .vc-switch .vc-switch-input:checked ~ .vc-switch-label::before {
  display: none;
}
.vc-toggle-container .vc-switch .vc-switch-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0 10px 0 25px;
  background-color: #767676;
}
.vc-toggle-container .vc-switch .vc-switch-label::before, .vc-toggle-container .vc-switch .vc-switch-label::after {
  position: static;
  margin-top: 0;
  line-height: 1;
  font-family: "Spoqa Han Sans", Sans-serif;
  font-size: 12px;
}
.vc-toggle-container .vc-switch .vc-switch-label::before {
  display: block;
}
.vc-toggle-container .vc-switch .vc-switch-label::after {
  display: none;
}

.ck.ck-editor {
  margin-top: 0 !important;
}

td.editable-cell div.tui-grid-cell-content {
  height: 34px;
  line-height: 34px;
}

.tui-grid-cell-editable .tui-grid-cell-content {
  width: 100%;
  height: 34px;
  line-height: 34px !important;
  padding: 0 7px !important;
  border: solid 1px #ddd;
}

.tui-grid-cell-content input[type=text] {
  height: 34px;
  font-family: "Spoqa Han Sans", Sans-serif !important;
  font-weight: 500;
  color: #505050;
}

.tui-grid-layer-editing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tui-grid-cell-required {
  background-color: #fff !important;
}

.tui-grid-cell-required.tui-grid-cell-invalid {
  background-color: #fff !important;
}
.tui-grid-cell-required.tui-grid-cell-invalid .tui-grid-cell-content {
  border-color: #ff4e4e;
}

.comm_tit_n_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 5px;
}
.comm_tit_n_btn h6 {
  font-weight: 500;
  font-size: 14px;
}
.comm_tit_n_btn .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}

.menuFold {
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 260px;
  width: 25px;
  height: 40px;
  background-color: #fff;
  border-radius: 0 5px 5px 0;
  border: none;
  -webkit-box-shadow: 1px 0 15px rgba(0, 0, 0, 0.09);
          box-shadow: 1px 0 15px rgba(0, 0, 0, 0.09);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.menuFold i {
  width: 6px;
  height: 12px;
  background: url("/images/admin/multi_select_arrow_small.svg") no-repeat center center;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.menuFold.close i {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.gridTooltip__icon::after {
  content: "";
  display: inline-block;
  height: 18px;
  width: 18px;
  background: url("/images/admin/help_tooltip_icon.svg") no-repeat center center;
}

.tooltipLayer {
  display: none;
  background-color: #ffffff;
  border: solid 1px #e0e0e0;
  border-radius: 10px;
  z-index: 999;
  padding: 15px 20px;
}
.tooltipLayer .top_tit {
  font-size: 18px;
  padding: 15px 0;
  border-bottom: 1px solid #e0e0e0;
}
.tooltipLayer .tool_close {
  position: absolute;
  right: 20px;
  top: 10px;
  width: 20px;
  height: 20px;
  border: none;
  background: #fff url("/images/admin/icon_btn_cal_close.svg") no-repeat center center;
  text-indent: -9999px;
}
.tooltipLayer #tooltipbody {
  padding-top: 15px;
  font-size: 14px;
  line-height: 1.4;
  color: #525252;
}
.tooltipLayer #tooltipbody pre {
  font-family: "Spoqa Han Sans", Sans-serif;
}

.period_date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}

#pageSize {
  width: 120px;
}

section.section_card > .data_wrap .tui-datepicker-input {
  width: 100%;
  height: 34px;
  position: relative;
  border: none;
  z-index: inherit !important;
}
section.section_card > .data_wrap .tui-datepicker-input > input {
  border-radius: 4px;
  border: 1px solid #bfbfbf;
  background: url("/images/admin/icon_btn_cal.svg") no-repeat calc(100% - 8px) center;
  width: 100%;
  height: 34px;
  padding: 0 32px 0 15px;
  font-weight: 500;
  font-family: "Spoqa Han Sans", Sans-serif;
  font-size: 14px;
}
section.section_card > .data_wrap .tui-datepicker-input > .tui-ico-date {
  display: none;
}
section.section_card > .data_wrap .tui-datepicker-input > div {
  z-index: inherit !important;
}
section.section_card > .data_wrap .tui-datepicker {
  width: 300px;
  border: 1px solid #bfbfbf;
  border-radius: 4px;
  -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.35);
          box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.35);
  padding: 10px;
  z-index: 999;
  margin-top: -1px;
}
section.section_card > .data_wrap .tui-datepicker-type-date {
  width: 100%;
}
section.section_card > .data_wrap .tui-datepicker-type-date .tui-calendar {
  width: 100%;
}
section.section_card > .data_wrap .tui-datepicker-type-date .tui-calendar-header {
  border: none;
  margin-top: 10px;
}
section.section_card > .data_wrap .tui-datepicker-type-date .tui-calendar-header-inner {
  height: auto;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.section_card > .data_wrap .tui-datepicker-type-date .tui-calendar-header-inner button {
  width: 30px;
  height: 30px;
  position: static;
}
section.section_card > .data_wrap .tui-datepicker-type-date .tui-calendar-header-inner button::after {
  display: none;
}
section.section_card > .data_wrap .tui-datepicker-type-date .tui-calendar-header-inner button.tui-calendar-btn-prev-month {
  background: url("/images/admin/icon_btn_cal_prev.svg") no-repeat center center;
  background-size: 10px;
}
section.section_card > .data_wrap .tui-datepicker-type-date .tui-calendar-header-inner button.tui-calendar-btn-next-month {
  background: url("/images/admin/icon_btn_cal_next.svg") no-repeat center center;
  background-size: 10px;
}
section.section_card > .data_wrap .tui-datepicker-type-date .tui-calendar-header-inner .tui-calendar-title-month {
  font-family: "Spoqa Han Sans", Sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #111;
}
section.section_card > .data_wrap .tui-datepicker-type-date .tui-calendar-header-info p {
  font-family: "Spoqa Han Sans", Sans-serif;
  font-weight: 500;
  font-size: 13px;
  background-color: #fff;
  color: #767676;
  height: auto;
  margin: 5px 0;
  line-height: 1;
}
section.section_card > .data_wrap .tui-datepicker-type-date .tui-calendar-body-header th {
  font-family: "Spoqa Han Sans", Sans-serif;
  font-weight: 500;
  font-size: 13px;
  width: 40px;
  height: 40px;
  color: #111;
}
section.section_card > .data_wrap .tui-datepicker-type-date .tui-calendar-body-header th.tui-sun {
  color: #cc2929;
}
section.section_card > .data_wrap .tui-datepicker-type-date .tui-calendar-body-header th.tui-sat {
  color: #295fcc;
}
section.section_card > .data_wrap .tui-datepicker-type-date .tui-calendar .tui-calendar-week td {
  height: 40px;
  font-family: "Spoqa Han Sans", Sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #111;
}
section.section_card > .data_wrap .tui-datepicker-type-date .tui-calendar .tui-calendar-week td.tui-calendar-sun {
  color: #cc2929;
}
section.section_card > .data_wrap .tui-datepicker-type-date .tui-calendar .tui-calendar-week td.tui-calendar-sat {
  color: #295fcc;
}
section.section_card > .data_wrap .tui-datepicker-type-date .tui-calendar .tui-calendar-week td.tui-calendar-prev-month {
  visibility: visible;
  color: #c5c5c5;
}
section.section_card > .data_wrap .tui-datepicker-type-date .tui-calendar .tui-calendar-week td.tui-calendar-prev-month.tui-calendar-sun {
  color: #d7a8a8;
}
section.section_card > .data_wrap .tui-datepicker-type-date .tui-calendar .tui-calendar-week td.tui-calendar-prev-month.tui-calendar-sat {
  color: #b5c7ed;
}
section.section_card > .data_wrap .tui-datepicker-type-date .tui-calendar .tui-calendar-week td.tui-calendar-next-month {
  visibility: visible;
  color: #c5c5c5;
}
section.section_card > .data_wrap .tui-datepicker-type-date .tui-calendar .tui-calendar-week td.tui-calendar-next-month.tui-calendar-sun {
  color: #d7a8a8;
}
section.section_card > .data_wrap .tui-datepicker-type-date .tui-calendar .tui-calendar-week td.tui-calendar-next-month.tui-calendar-sat {
  color: #b5c7ed;
}
section.section_card > .data_wrap .tui-datepicker-type-date .tui-calendar .tui-calendar-week td.tui-calendar-today {
  background-color: rgba(0, 134, 255, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #0086ff;
}
section.section_card > .data_wrap .tui-datepicker-type-date .tui-calendar .tui-calendar-week td.tui-calendar-today::after {
  content: "오늘";
  font-size: 12px;
}
section.section_card > .data_wrap .tui-datepicker-type-date .tui-calendar .tui-calendar-week td.tui-is-selected::after {
  content: "\a선택";
  white-space: pre;
  font-size: 12px;
}
section.section_card > .data_wrap .calendar_wrap.term {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
section.section_card > .data_wrap .calendar_wrap.term.calc .day {
  width: 210px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
section.section_card > .data_wrap .calendar_wrap.term.calc .day > input {
  text-align: center;
  padding: 0 5px;
}

section.section_card.place_schedule {
  padding: 20px 20px 30px 20px;
}
section.section_card.place_schedule .top_ctrl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin-bottom: 22px;
}
section.section_card.place_schedule .top_ctrl .ctrl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
section.section_card.place_schedule .top_ctrl .ctrl h5 {
  font-size: 44px;
}
section.section_card.place_schedule .top_ctrl .ctrl button {
  width: 30px;
  height: 30px;
  border: none;
  background-repeat: no-repeat;
  background-position: center center;
  text-indent: -9999px;
  background-color: #fff;
}
section.section_card.place_schedule .top_ctrl .ctrl button.mm_prev {
  background-image: url("/images/front/svg/icon_cal_mm_prev.svg");
}
section.section_card.place_schedule .top_ctrl .ctrl button.mm_next {
  background-image: url("/images/front/svg/icon_cal_mm_next.svg");
}
section.section_card.place_schedule .top_ctrl .info_chip {
  position: absolute;
  left: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
}
section.section_card.place_schedule .top_ctrl .info_chip span {
  position: relative;
  padding-left: 16px;
  font-size: 16px;
}
section.section_card.place_schedule .top_ctrl .info_chip span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
section.section_card.place_schedule .top_ctrl .info_chip span.ready::before {
  background-color: #323232;
}
section.section_card.place_schedule .top_ctrl .info_chip span.complete::before {
  background-color: #0086ff;
}
section.section_card.place_schedule .top_ctrl .today_btn {
  width: auto;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0 28px;
}
section.section_card.place_schedule .calendar__wrap {
  height: 938px;
}
section.section_card.place_schedule .calendar__wrap .toastui-calendar-layout {
  position: static;
}
section.section_card.place_schedule .calendar__wrap .toastui-calendar-layout .toastui-calendar-day-names {
  height: 60px;
  padding: 0;
  border-top: 2px solid #323232;
}
section.section_card.place_schedule .calendar__wrap .toastui-calendar-layout .toastui-calendar-day-names .toastui-calendar-day-name-container .toastui-calendar-month {
  height: 60px;
  line-height: 60px;
  font-size: 16px;
  font-weight: 500;
  padding: 0;
  text-align: center;
}
section.section_card.place_schedule .calendar__wrap .toastui-calendar-layout .toastui-calendar-day-names .toastui-calendar-day-name-container .toastui-calendar-month .toastui-calendar-holiday-sun {
  color: #fd636b !important;
}
section.section_card.place_schedule .calendar__wrap .toastui-calendar-layout .toastui-calendar-day-names .toastui-calendar-day-name-container .toastui-calendar-month .toastui-calendar-holiday-sat {
  color: #0086ff !important;
}
section.section_card.place_schedule .calendar__wrap .toastui-calendar-layout .toastui-calendar-month-daygrid {
  position: static;
}
section.section_card.place_schedule .calendar__wrap .toastui-calendar-layout .toastui-calendar-month-daygrid .toastui-calendar-month-week-item {
  position: static;
}
section.section_card.place_schedule .calendar__wrap .toastui-calendar-layout .toastui-calendar-month-daygrid .toastui-calendar-month-week-item .toastui-calendar-weekday .toastui-calendar-weekday-grid {
  border-top: 1px solid #e0e0e0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: static;
}
section.section_card.place_schedule .calendar__wrap .toastui-calendar-layout .toastui-calendar-month-daygrid .toastui-calendar-month-week-item .toastui-calendar-weekday .toastui-calendar-weekday-grid .toastui-calendar-daygrid-cell {
  padding: 6px 10px 6px 15px;
  position: static;
}
section.section_card.place_schedule .calendar__wrap .toastui-calendar-layout .toastui-calendar-month-daygrid .toastui-calendar-month-week-item .toastui-calendar-weekday .toastui-calendar-weekday-grid .toastui-calendar-daygrid-cell .toastui-calendar-grid-cell-header {
  height: 100% !important;
}
section.section_card.place_schedule .calendar__wrap .toastui-calendar-layout .toastui-calendar-month-daygrid .toastui-calendar-month-week-item .toastui-calendar-weekday .toastui-calendar-weekday-grid .toastui-calendar-daygrid-cell .toastui-calendar-grid-cell-header .toastui-calendar-grid-cell-date {
  width: 100%;
  height: 100%;
  color: #323232 !important;
}
section.section_card.place_schedule .calendar__wrap .toastui-calendar-layout .toastui-calendar-month-daygrid .toastui-calendar-month-week-item .toastui-calendar-weekday .toastui-calendar-weekday-grid .toastui-calendar-daygrid-cell .toastui-calendar-grid-cell-header .toastui-calendar-grid-cell-date .toastui-calendar-template-monthGridHeader .day_num {
  width: 100%;
  line-height: 34px;
  text-align: left;
  display: block;
  color: #323232;
}
section.section_card.place_schedule .calendar__wrap .toastui-calendar-layout .toastui-calendar-month-daygrid .toastui-calendar-month-week-item .toastui-calendar-weekday .toastui-calendar-weekday-grid .toastui-calendar-daygrid-cell .toastui-calendar-grid-cell-header .toastui-calendar-grid-cell-date .toastui-calendar-template-monthGridHeader .day_num.disable {
  opacity: 0.3;
}
section.section_card.place_schedule .calendar__wrap .toastui-calendar-layout .toastui-calendar-month-daygrid .toastui-calendar-month-week-item .toastui-calendar-weekday .toastui-calendar-weekday-grid .toastui-calendar-daygrid-cell .toastui-calendar-grid-cell-header .toastui-calendar-grid-cell-date .toastui-calendar-template-monthGridHeader .day_info {
  width: 100%;
  height: 90px;
  text-align: left;
  padding-top: 10px;
  padding-right: 5px;
  line-height: 1;
  overflow-y: auto;
  overflow-x: hidden;
}
section.section_card.place_schedule .calendar__wrap .toastui-calendar-layout .toastui-calendar-month-daygrid .toastui-calendar-month-week-item .toastui-calendar-weekday .toastui-calendar-weekday-grid .toastui-calendar-daygrid-cell .toastui-calendar-grid-cell-header .toastui-calendar-grid-cell-date .toastui-calendar-template-monthGridHeader .day_info::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
section.section_card.place_schedule .calendar__wrap .toastui-calendar-layout .toastui-calendar-month-daygrid .toastui-calendar-month-week-item .toastui-calendar-weekday .toastui-calendar-weekday-grid .toastui-calendar-daygrid-cell .toastui-calendar-grid-cell-header .toastui-calendar-grid-cell-date .toastui-calendar-template-monthGridHeader .day_info::-webkit-scrollbar-thumb {
  background: #e0e0e0;
  border-radius: 5px;
}
section.section_card.place_schedule .calendar__wrap .toastui-calendar-layout .toastui-calendar-month-daygrid .toastui-calendar-month-week-item .toastui-calendar-weekday .toastui-calendar-weekday-grid .toastui-calendar-daygrid-cell .toastui-calendar-grid-cell-header .toastui-calendar-grid-cell-date .toastui-calendar-template-monthGridHeader .day_info::-webkit-scrollbar-track {
  border-radius: 5px;
}
section.section_card.place_schedule .calendar__wrap .toastui-calendar-layout .toastui-calendar-month-daygrid .toastui-calendar-month-week-item .toastui-calendar-weekday .toastui-calendar-weekday-grid .toastui-calendar-daygrid-cell .toastui-calendar-grid-cell-header .toastui-calendar-grid-cell-date .toastui-calendar-template-monthGridHeader .day_info::-webkit-scrollbar-thumb:hover {
  background: #e0e0e0;
  border-radius: 5px;
}
@media screen and (max-width: 812px) {
  section.section_card.place_schedule .calendar__wrap .toastui-calendar-layout .toastui-calendar-month-daygrid .toastui-calendar-month-week-item .toastui-calendar-weekday .toastui-calendar-weekday-grid .toastui-calendar-daygrid-cell .toastui-calendar-grid-cell-header .toastui-calendar-grid-cell-date .toastui-calendar-template-monthGridHeader .day_info::-webkit-scrollbar {
    width: 0.7rem;
    height: 0.7rem;
  }
  section.section_card.place_schedule .calendar__wrap .toastui-calendar-layout .toastui-calendar-month-daygrid .toastui-calendar-month-week-item .toastui-calendar-weekday .toastui-calendar-weekday-grid .toastui-calendar-daygrid-cell .toastui-calendar-grid-cell-header .toastui-calendar-grid-cell-date .toastui-calendar-template-monthGridHeader .day_info::-webkit-scrollbar-thumb {
    border-radius: 0.5rem;
  }
  section.section_card.place_schedule .calendar__wrap .toastui-calendar-layout .toastui-calendar-month-daygrid .toastui-calendar-month-week-item .toastui-calendar-weekday .toastui-calendar-weekday-grid .toastui-calendar-daygrid-cell .toastui-calendar-grid-cell-header .toastui-calendar-grid-cell-date .toastui-calendar-template-monthGridHeader .day_info::-webkit-scrollbar-track {
    border-radius: 0.5rem;
  }
  section.section_card.place_schedule .calendar__wrap .toastui-calendar-layout .toastui-calendar-month-daygrid .toastui-calendar-month-week-item .toastui-calendar-weekday .toastui-calendar-weekday-grid .toastui-calendar-daygrid-cell .toastui-calendar-grid-cell-header .toastui-calendar-grid-cell-date .toastui-calendar-template-monthGridHeader .day_info::-webkit-scrollbar-thumb:hover {
    border-radius: 0.5rem;
  }
}
section.section_card.place_schedule .calendar__wrap .toastui-calendar-layout .toastui-calendar-month-daygrid .toastui-calendar-month-week-item .toastui-calendar-weekday .toastui-calendar-weekday-grid .toastui-calendar-daygrid-cell .toastui-calendar-grid-cell-header .toastui-calendar-grid-cell-date .toastui-calendar-template-monthGridHeader .day_info ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 10px;
}
section.section_card.place_schedule .calendar__wrap .toastui-calendar-layout .toastui-calendar-month-daygrid .toastui-calendar-month-week-item .toastui-calendar-weekday .toastui-calendar-weekday-grid .toastui-calendar-daygrid-cell .toastui-calendar-grid-cell-header .toastui-calendar-grid-cell-date .toastui-calendar-template-monthGridHeader .day_info ul li {
  cursor: pointer;
}
section.section_card.place_schedule .calendar__wrap .toastui-calendar-layout .toastui-calendar-month-daygrid .toastui-calendar-month-week-item .toastui-calendar-weekday .toastui-calendar-weekday-grid .toastui-calendar-daygrid-cell .toastui-calendar-grid-cell-header .toastui-calendar-grid-cell-date .toastui-calendar-template-monthGridHeader .day_info ul li > span {
  font-size: 16px;
  position: relative;
  padding-right: 10px;
}
section.section_card.place_schedule .calendar__wrap .toastui-calendar-layout .toastui-calendar-month-daygrid .toastui-calendar-month-week-item .toastui-calendar-weekday .toastui-calendar-weekday-grid .toastui-calendar-daygrid-cell .toastui-calendar-grid-cell-header .toastui-calendar-grid-cell-date .toastui-calendar-template-monthGridHeader .day_info ul li > span::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 100%;
  position: absolute;
  right: 0;
  top: -5px;
}
section.section_card.place_schedule .calendar__wrap .toastui-calendar-layout .toastui-calendar-month-daygrid .toastui-calendar-month-week-item .toastui-calendar-weekday .toastui-calendar-weekday-grid .toastui-calendar-daygrid-cell .toastui-calendar-grid-cell-header .toastui-calendar-grid-cell-date .toastui-calendar-template-monthGridHeader .day_info ul li > span.ready {
  color: #323232;
}
section.section_card.place_schedule .calendar__wrap .toastui-calendar-layout .toastui-calendar-month-daygrid .toastui-calendar-month-week-item .toastui-calendar-weekday .toastui-calendar-weekday-grid .toastui-calendar-daygrid-cell .toastui-calendar-grid-cell-header .toastui-calendar-grid-cell-date .toastui-calendar-template-monthGridHeader .day_info ul li > span.ready a {
  color: #323232;
}
section.section_card.place_schedule .calendar__wrap .toastui-calendar-layout .toastui-calendar-month-daygrid .toastui-calendar-month-week-item .toastui-calendar-weekday .toastui-calendar-weekday-grid .toastui-calendar-daygrid-cell .toastui-calendar-grid-cell-header .toastui-calendar-grid-cell-date .toastui-calendar-template-monthGridHeader .day_info ul li > span.ready::after {
  background-color: #323232;
}
section.section_card.place_schedule .calendar__wrap .toastui-calendar-layout .toastui-calendar-month-daygrid .toastui-calendar-month-week-item .toastui-calendar-weekday .toastui-calendar-weekday-grid .toastui-calendar-daygrid-cell .toastui-calendar-grid-cell-header .toastui-calendar-grid-cell-date .toastui-calendar-template-monthGridHeader .day_info ul li > span.complete {
  color: #0086ff;
}
section.section_card.place_schedule .calendar__wrap .toastui-calendar-layout .toastui-calendar-month-daygrid .toastui-calendar-month-week-item .toastui-calendar-weekday .toastui-calendar-weekday-grid .toastui-calendar-daygrid-cell .toastui-calendar-grid-cell-header .toastui-calendar-grid-cell-date .toastui-calendar-template-monthGridHeader .day_info ul li > span.complete a {
  color: #0086ff;
}
section.section_card.place_schedule .calendar__wrap .toastui-calendar-layout .toastui-calendar-month-daygrid .toastui-calendar-month-week-item .toastui-calendar-weekday .toastui-calendar-weekday-grid .toastui-calendar-daygrid-cell .toastui-calendar-grid-cell-header .toastui-calendar-grid-cell-date .toastui-calendar-template-monthGridHeader .day_info ul li > span.complete::after {
  background-color: #0086ff;
}
section.section_card.place_schedule .calendar__wrap .toastui-calendar-layout .toastui-calendar-month-daygrid .toastui-calendar-month-week-item .toastui-calendar-weekday .toastui-calendar-weekday-grid .toastui-calendar-daygrid-cell .toastui-calendar-grid-cell-header .toastui-calendar-grid-cell-date .toastui-calendar-template-monthGridHeader .day_info ul li .tooltip {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 8px;
  padding: 20px;
  z-index: 2;
  color: #fff;
  line-height: 1;
  display: none;
}
section.section_card.place_schedule .calendar__wrap .toastui-calendar-layout .toastui-calendar-month-daygrid .toastui-calendar-month-week-item .toastui-calendar-weekday .toastui-calendar-weekday-grid .toastui-calendar-daygrid-cell .toastui-calendar-grid-cell-header .toastui-calendar-grid-cell-date .toastui-calendar-template-monthGridHeader .day_info ul li .tooltip h6 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  white-space: nowrap;
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 500;
}
section.section_card.place_schedule .calendar__wrap .toastui-calendar-layout .toastui-calendar-month-daygrid .toastui-calendar-month-week-item .toastui-calendar-weekday .toastui-calendar-weekday-grid .toastui-calendar-daygrid-cell .toastui-calendar-grid-cell-header .toastui-calendar-grid-cell-date .toastui-calendar-template-monthGridHeader .day_info ul li .tooltip h6 i {
  line-height: 28px;
  padding: 0 15px;
  font-size: 16px;
  border-radius: 28px;
  background-color: #fff;
  border-style: solid;
  border-width: 1px;
}
section.section_card.place_schedule .calendar__wrap .toastui-calendar-layout .toastui-calendar-month-daygrid .toastui-calendar-month-week-item .toastui-calendar-weekday .toastui-calendar-weekday-grid .toastui-calendar-daygrid-cell .toastui-calendar-grid-cell-header .toastui-calendar-grid-cell-date .toastui-calendar-template-monthGridHeader .day_info ul li .tooltip h6 i.complete {
  color: #0086ff;
  border-color: #0086ff;
}
section.section_card.place_schedule .calendar__wrap .toastui-calendar-layout .toastui-calendar-month-daygrid .toastui-calendar-month-week-item .toastui-calendar-weekday .toastui-calendar-weekday-grid .toastui-calendar-daygrid-cell .toastui-calendar-grid-cell-header .toastui-calendar-grid-cell-date .toastui-calendar-template-monthGridHeader .day_info ul li .tooltip h6 i.ready {
  color: #323232;
  border-color: #323232;
}
section.section_card.place_schedule .calendar__wrap .toastui-calendar-layout .toastui-calendar-month-daygrid .toastui-calendar-month-week-item .toastui-calendar-weekday .toastui-calendar-weekday-grid .toastui-calendar-daygrid-cell .toastui-calendar-grid-cell-header .toastui-calendar-grid-cell-date .toastui-calendar-template-monthGridHeader .day_info ul li .tooltip > p {
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.section_card.place_schedule .calendar__wrap .toastui-calendar-layout .toastui-calendar-month-daygrid .toastui-calendar-month-week-item .toastui-calendar-weekday .toastui-calendar-weekday-grid .toastui-calendar-daygrid-cell .toastui-calendar-grid-cell-header .toastui-calendar-grid-cell-date .toastui-calendar-template-monthGridHeader .day_info ul li .tooltip > p span {
  width: 75px;
  font-weight: 500;
}
section.section_card.place_schedule .calendar__wrap .toastui-calendar-layout .toastui-calendar-month-daygrid .toastui-calendar-month-week-item .toastui-calendar-weekday .toastui-calendar-weekday-grid .toastui-calendar-daygrid-cell .toastui-calendar-grid-cell-header .toastui-calendar-grid-cell-date .toastui-calendar-template-monthGridHeader .day_info ul li .tooltip > p:last-child {
  margin-top: 15px;
}

#wrap.admin {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

#container {
  width: calc(100% - 260px);
  height: 100vh;
}
#container .top_tab_wrap {
  width: 100%;
  height: 48px;
  overflow: hidden;
  background-color: #fff;
  -webkit-box-shadow: 1px 0 15px rgba(0, 0, 0, 0.09);
          box-shadow: 1px 0 15px rgba(0, 0, 0, 0.09);
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#container .top_tab_wrap > button {
  width: 28px;
  height: 48px;
  border: none;
  text-indent: -9999px;
  position: relative;
  z-index: 4;
}
#container .top_tab_wrap > button#prevTab {
  background: transparent url("/images/admin/icon_arrow_paging_prev.svg") no-repeat right center;
}
#container .top_tab_wrap > button#nextTab {
  background: transparent url("/images/admin/icon_arrow_paging_next.svg") no-repeat left center;
}
#container .top_tab_wrap .history_menu {
  width: calc(100% - 80px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  overflow-x: auto;
  position: relative;
  z-index: 5;
  padding: 0 12px;
}
#container .top_tab_wrap .history_menu::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
#container .top_tab_wrap .history_menu::-webkit-scrollbar-thumb {
  background: #e0e0e0;
  border-radius: 5px;
}
#container .top_tab_wrap .history_menu::-webkit-scrollbar-track {
  border-radius: 5px;
}
#container .top_tab_wrap .history_menu::-webkit-scrollbar-thumb:hover {
  background: #e0e0e0;
  border-radius: 5px;
}
@media screen and (max-width: 812px) {
  #container .top_tab_wrap .history_menu::-webkit-scrollbar {
    width: 0.7rem;
    height: 0.7rem;
  }
  #container .top_tab_wrap .history_menu::-webkit-scrollbar-thumb {
    border-radius: 0.5rem;
  }
  #container .top_tab_wrap .history_menu::-webkit-scrollbar-track {
    border-radius: 0.5rem;
  }
  #container .top_tab_wrap .history_menu::-webkit-scrollbar-thumb:hover {
    border-radius: 0.5rem;
  }
}
#container .top_tab_wrap .history_menu > button {
  width: 120px;
  padding: 0 13px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
  background-color: #fff;
  border: none;
  font-weight: 500;
  position: relative;
  z-index: 2;
}
#container .top_tab_wrap .history_menu > button span {
  width: 80px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#container .top_tab_wrap .history_menu > button::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 16px;
  background-color: #e0e0e0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
}
#container .top_tab_wrap .history_menu > button .del {
  width: 13px;
  height: 13px;
  -webkit-mask-size: 9px 8px;
          mask-size: 9px 8px;
  background-color: #505050;
  -webkit-mask-image: url("/images/admin/icon_del.svg");
          mask-image: url("/images/admin/icon_del.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
}
#container .top_tab_wrap .history_menu > button:hover {
  color: #0086ff;
}
#container .top_tab_wrap .history_menu > button.prev::after, #container .top_tab_wrap .history_menu > button:last-child::after {
  display: none;
}
#container .top_tab_wrap .history_menu > button.current {
  color: #0086ff;
  height: 43px;
  margin-top: 5px;
  border-radius: 10px 10px 0 0;
  -webkit-box-shadow: 0 0 7px rgba(25, 25, 25, 0.3);
          box-shadow: 0 0 7px rgba(25, 25, 25, 0.3);
  z-index: 5;
}
#container .top_tab_wrap .history_menu > button.current::after {
  display: none;
}

#body-container {
  padding: 0 30px 40px 40px;
  height: calc(100vh - 68px);
}
#body-container #bstab {
  height: 100%;
}

#fm {
  height: 100vh;
  overflow-y: auto;
}
#fm::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
#fm::-webkit-scrollbar-thumb {
  background: #e0e0e0;
  border-radius: 5px;
}
#fm::-webkit-scrollbar-track {
  border-radius: 5px;
}
#fm::-webkit-scrollbar-thumb:hover {
  background: #e0e0e0;
  border-radius: 5px;
}
@media screen and (max-width: 812px) {
  #fm::-webkit-scrollbar {
    width: 0.7rem;
    height: 0.7rem;
  }
  #fm::-webkit-scrollbar-thumb {
    border-radius: 0.5rem;
  }
  #fm::-webkit-scrollbar-track {
    border-radius: 0.5rem;
  }
  #fm::-webkit-scrollbar-thumb:hover {
    border-radius: 0.5rem;
  }
}

.content_wrap {
  overflow-x: hidden;
  overflow-y: auto;
  padding-right: 10px;
  height: calc(100vh - 68px);
}
.content_wrap::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
.content_wrap::-webkit-scrollbar-thumb {
  background: #e0e0e0;
  border-radius: 5px;
}
.content_wrap::-webkit-scrollbar-track {
  border-radius: 5px;
}
.content_wrap::-webkit-scrollbar-thumb:hover {
  background: #e0e0e0;
  border-radius: 5px;
}
@media screen and (max-width: 812px) {
  .content_wrap::-webkit-scrollbar {
    width: 0.7rem;
    height: 0.7rem;
  }
  .content_wrap::-webkit-scrollbar-thumb {
    border-radius: 0.5rem;
  }
  .content_wrap::-webkit-scrollbar-track {
    border-radius: 0.5rem;
  }
  .content_wrap::-webkit-scrollbar-thumb:hover {
    border-radius: 0.5rem;
  }
}
.content_wrap .comm_btn_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 0 20px;
  margin-top: 30px;
  margin-bottom: 10px;
}
.content_wrap .comm_btn_area .comm_btn {
  min-width: 140px;
  height: 40px;
}
.content_wrap .comm_btn_area.type_fixed {
  width: calc(100% - 15px);
  position: fixed;
  left: 0;
  bottom: 0;
  background: #fff;
  margin-top: 0;
  padding: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 1px 0 10px rgba(0, 0, 0, 0.1);
}
.content_wrap.has_fixed_btn {
  padding-bottom: 60px;
}
.content_wrap .tree_menu_mgmt_wrap {
  position: relative;
}
.content_wrap .tree_menu_mgmt_wrap .grid {
  width: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.content_wrap .tree_menu_mgmt_wrap .tree_list {
  position: absolute;
  right: -100%;
  top: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.content_wrap .tree_menu_mgmt_wrap .tree_list .data_wrap .comm_btn_area {
  padding-bottom: 20px;
}
.content_wrap .tree_menu_mgmt_wrap .tree_list .data_wrap .comm_btn_area::after {
  content: "";
  width: calc(100% - 40px);
  height: 1px;
  background-color: #101010;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
}
.content_wrap .tree_menu_mgmt_wrap .tree_list .tcont_wrap {
  height: auto;
  max-height: calc(100vh - 250px);
}
.content_wrap .tree_menu_mgmt_wrap.active .grid {
  width: calc(100% - 460px);
}
.content_wrap .tree_menu_mgmt_wrap.active .tree_list {
  right: 0;
}
.content_wrap .tree_menu_mgmt_wrap.active .tree_list .tcont_wrap .tcont table tbody tr td {
  padding: 8px 0 !important;
}
.content_wrap .tree_menu_mgmt_wrap.active .tree_list .tcont_wrap .tcont table tbody tr td .fancytree-node {
  height: 18px;
}
.content_wrap .tree_menu_mgmt_wrap.active .tree_list .tcont_wrap .tcont table tbody tr td .fancytree-node .fancytree-checkbox {
  width: 18px;
  height: 18px;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  margin: 0;
  background: #fff !important;
  cursor: pointer;
}
.content_wrap .tree_menu_mgmt_wrap.active .tree_list .tcont_wrap .tcont table tbody tr.fancytree-selected td .fancytree-node .fancytree-checkbox {
  border-color: #00b3e3 !important;
  background: #00b3e3 url("/images/admin/icon_check.svg") no-repeat center center !important;
}

.half_section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 0;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  margin-bottom: 20px;
}
.half_section .section_card {
  margin-bottom: 0 !important;
}

.divide_section {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 20px;
}
.divide_section .section_card {
  width: 100%;
}

section.section_card {
  background-color: #fff;
  padding: 20px 0 30px 0;
  border-radius: 10px;
  margin-bottom: 20px;
  -webkit-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 1px 0 10px rgba(0, 0, 0, 0.1);
}
section.section_card:last-child {
  margin-bottom: 10px;
}
section.section_card.in_tab {
  height: 60px;
  padding: 0 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
section.section_card.in_tab span {
  height: 60px;
  font-size: 16px;
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 2px solid #fff;
  cursor: pointer;
}
section.section_card.in_tab span.on {
  color: #0086ff;
  border-color: #0086ff;
}
section.section_card.adm_info_wrap {
  padding: 20px 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.section_card.adm_info_wrap h6.adm_id {
  font-size: 16px;
}
section.section_card.adm_info_wrap .info_time {
  padding: 10px 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  border: 1px solid #bfbfbf;
  border-top: none;
  border-bottom: none;
}
section.section_card.adm_info_wrap .info_time li {
  font-size: 16px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
section.section_card.adm_info_wrap .info_time li span {
  font-weight: 500;
}
section.section_card.price_info_wrap {
  position: relative;
}
section.section_card.price_info_wrap .price_info {
  width: 100%;
  position: absolute;
  padding: 0 20px;
  left: 0;
  bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
section.section_card.price_info_wrap .price_info ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
section.section_card.price_info_wrap .price_info ul li:last-child {
  padding-left: 10px;
  position: relative;
}
section.section_card.price_info_wrap .price_info ul li:last-child::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  background-color: #bfbfbf;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
section.section_card.price_info_wrap .price_info ul li i {
  color: #0086ff;
}
section.section_card.price_info_wrap .price_info .price {
  font-size: 16px;
}
section.section_card.price_info_wrap .price_info .price i {
  font-size: 28px;
  font-weight: 700;
  color: #ff4e4e;
}
section.section_card.rest_info_wrap {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.section_card.rest_info_wrap .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
section.section_card.rest_info_wrap .info h6.rest_code {
  font-size: 16px;
}
section.section_card.rest_info_wrap .info dl {
  padding: 10px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  border: 1px solid #bfbfbf;
  border-top: none;
  border-bottom: none;
  font-weight: 500;
}
section.section_card.rest_info_wrap .info dl dt {
  font-size: 16px;
}
section.section_card.rest_info_wrap .info dl dd {
  font-size: 14px;
  color: #505050;
}
section.section_card.rest_info_wrap .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
section.section_card .title_wrap {
  padding: 0 20px;
}
section.section_card .title_wrap .root_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 34px;
  color: #767676;
  line-height: 1.2;
}
section.section_card .title_wrap .root_text i {
  color: #101010;
  margin-left: 3px;
}
section.section_card > .tit_wrap {
  height: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 0 20px;
}
section.section_card > .tit_wrap h5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 16px;
  gap: 10px;
}
section.section_card > .tit_wrap h5 .info {
  font-size: 14px;
  margin-right: 5px;
}
section.section_card > .tit_wrap h5 .info i {
  color: #00b3e3;
}
section.section_card > .tit_wrap h5 .message {
  color: #ff4e4e;
  font-size: 14px;
  padding-left: 10px;
  position: relative;
}
section.section_card > .tit_wrap h5 .message::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  background-color: #bfbfbf;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
section.section_card > .tit_wrap .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
section.section_card > .tit_wrap .btns .folding {
  width: 34px;
  height: 34px;
  border: 1px solid #bfbfbf;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 4px;
}
section.section_card > .tit_wrap .btns .folding img {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
section.section_card > .tit_wrap .btns .folding.close img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
section.section_card > .tit_wrap .total_vowel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
section.section_card > .tit_wrap .total_vowel h4 {
  font-size: 16px;
  font-weight: 500;
}
section.section_card > .tit_wrap .total_vowel h5 {
  padding-right: 10px;
  position: relative;
}
section.section_card > .tit_wrap .total_vowel h5::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 10px;
  background-color: #e0e0e0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
}
section.section_card > .tit_wrap .total_vowel h5:last-child {
  padding-right: 0;
}
section.section_card > .tit_wrap .total_vowel h5:last-child::after {
  display: none;
}
section.section_card > .tit_wrap .list_info_text li {
  line-height: 1.4;
}
section.section_card > .tit_wrap .list_info_text.red li {
  color: #ff4e4e;
}
section.section_card > .data_wrap {
  margin-top: 10px;
  position: relative;
}
section.section_card > .data_wrap #grid {
  padding: 0 20px;
}
section.section_card > .data_wrap.has_line {
  position: relative;
}
section.section_card > .data_wrap.has_line::before {
  content: "";
  width: calc(100% - 40px);
  height: 1px;
  background-color: #101010;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
}
section.section_card > .data_wrap .type_desc {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 13px;
  position: relative;
  row-gap: 13px;
}
section.section_card > .data_wrap .type_desc .in_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
section.section_card > .data_wrap .type_desc .in_flex.w67 {
  width: 67%;
}
section.section_card > .data_wrap .type_desc dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
  padding: 0 20px;
}
section.section_card > .data_wrap .type_desc dl dt {
  font-weight: 500;
  line-height: 27px;
}
section.section_card > .data_wrap .type_desc dl dt.has_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}
section.section_card > .data_wrap .type_desc dl dt.has_ctrl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
section.section_card > .data_wrap .type_desc dl dt.devRqv {
  color: #fd636b;
}
section.section_card > .data_wrap .type_desc dl dt.devRqv i {
  color: #101010;
}
section.section_card > .data_wrap .type_desc dl dd .has_check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
section.section_card > .data_wrap .type_desc dl dd .has_check .comm_enter {
  width: 50%;
}
section.section_card > .data_wrap .type_desc dl dd .has_check .comm_checkbox {
  width: calc(50% - 10px);
  margin-left: 10px;
  margin-top: 8px;
}
section.section_card > .data_wrap .type_desc dl dd .item_wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
section.section_card > .data_wrap .type_desc dl dd .item_wrap.radio_wrap {
  width: 100%;
  height: 34px;
  border: 1px solid #bfbfbf;
  border-radius: 4px;
  padding: 0 15px;
}
section.section_card > .data_wrap .type_desc dl dd .item_wrap.indv_flex #demoRs {
  width: calc(100% - 155px);
}
section.section_card > .data_wrap .type_desc dl dd .brdr_box_wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 34px;
  border: 1px solid #bfbfbf;
  border-radius: 4px;
  padding: 0 15px;
}
section.section_card > .data_wrap .type_desc dl dd .sigle_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 34px;
}
section.section_card > .data_wrap .type_desc dl dd .input_in_text {
  width: 100%;
  height: 34px;
  border: 1px solid #bfbfbf;
  border-radius: 4px;
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
section.section_card > .data_wrap .type_desc dl dd .input_in_text .comm_enter {
  height: 32px;
  border: none;
  padding: 0;
}
section.section_card > .data_wrap .type_desc dl dd .input_in_text span {
  white-space: nowrap;
}
section.section_card > .data_wrap .type_desc dl dd .item_has_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 8px;
}
section.section_card > .data_wrap .type_desc dl dd .item_has_text .info_text {
  color: #767676;
  line-height: 1.2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
section.section_card > .data_wrap .type_desc dl dd .item_has_text .info_text i {
  width: 15px;
  color: #fd636b;
}
section.section_card > .data_wrap .type_desc dl dd .img_info_text {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 8px;
}
section.section_card > .data_wrap .type_desc dl dd .img_info_text .text {
  color: #525252;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5px;
}
section.section_card > .data_wrap .type_desc dl dd .img_info_text .text i {
  color: #fd636b;
}
section.section_card > .data_wrap .type_desc dl dd .img_info_text.full {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 8px;
}
section.section_card > .data_wrap .type_desc dl dd .img_info_text.full .tit {
  width: 100%;
}
section.section_card > .data_wrap .type_desc dl dd .img_info_text.full .text:last-child {
  padding-left: 20px;
  position: relative;
}
section.section_card > .data_wrap .type_desc dl dd .img_info_text.full .text:last-child::before {
  content: "";
  width: 1px;
  height: 10px;
  background-color: #e0e0e0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
section.section_card > .data_wrap .type_desc dl.w_100 {
  width: 100% !important;
}
section.section_card > .data_wrap .type_desc dl.w_95 {
  width: 95% !important;
}
section.section_card > .data_wrap .type_desc dl.w_90 {
  width: 90% !important;
}
section.section_card > .data_wrap .type_desc dl.w_85 {
  width: 85% !important;
}
section.section_card > .data_wrap .type_desc dl.w_80 {
  width: 80% !important;
}
section.section_card > .data_wrap .type_desc dl.w_75 {
  width: 75% !important;
}
section.section_card > .data_wrap .type_desc dl.w_70 {
  width: 70% !important;
}
section.section_card > .data_wrap .type_desc dl.w_67 {
  width: 67% !important;
}
section.section_card > .data_wrap .type_desc dl.w_65 {
  width: 65% !important;
}
section.section_card > .data_wrap .type_desc dl.w_60 {
  width: 60% !important;
}
section.section_card > .data_wrap .type_desc dl.w_55 {
  width: 55% !important;
}
section.section_card > .data_wrap .type_desc dl.w_50 {
  width: 50% !important;
}
section.section_card > .data_wrap .type_desc dl.w_45 {
  width: 45% !important;
}
section.section_card > .data_wrap .type_desc dl.w_40 {
  width: 40% !important;
}
section.section_card > .data_wrap .type_desc dl.w_35 {
  width: 35% !important;
}
section.section_card > .data_wrap .type_desc dl.w_33 {
  width: 33% !important;
}
section.section_card > .data_wrap .type_desc dl.w_30 {
  width: 30% !important;
}
section.section_card > .data_wrap .type_desc dl.w_25 {
  width: 25% !important;
}
section.section_card > .data_wrap .type_desc dl.w_20 {
  width: 20% !important;
  width: 30%;
}
section.section_card > .data_wrap .type_desc dl.radio_n_select dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 10px;
}
section.section_card > .data_wrap .type_desc dl.radio_n_text dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 10px;
}
section.section_card > .data_wrap .type_desc dl.layout_row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.section_card > .data_wrap .type_desc dl.layout_row dt {
  width: 140px;
  white-space: nowrap;
}
section.section_card > .data_wrap .type_desc.rows2 {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
section.section_card > .data_wrap .type_desc.rows3 {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
section.section_card > .data_wrap .type_desc.rows4 {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
section.section_card > .data_wrap .type_desc.multi_select {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 20px;
  padding: 10px 28px 0 28px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.section_card > .data_wrap .type_desc.multi_select > dl {
  width: 100%;
  padding: 0;
  margin-bottom: 0;
}
section.section_card > .data_wrap .type_desc.multi_select > dl dd .chainselect {
  width: 100%;
  height: 250px;
  border-radius: 4px;
  border: 1px solid #bfbfbf;
  outline: none;
}
section.section_card > .data_wrap .type_desc.multi_select > dl dd .chainselect option {
  border: none;
  padding: 10px 30px;
  font-size: 14px;
  font-family: "Spoqa Han Sans", Sans-serif;
  font-weight: 500;
  cursor: pointer;
}
section.section_card > .data_wrap .type_desc.multi_select > dl dd .chainselect option:checked, section.section_card > .data_wrap .type_desc.multi_select > dl dd .chainselect option:hover {
  background-color: #f3f4f9;
  color: #0086ff;
}
section.section_card > .data_wrap .type_desc.multi_select > dl dd .chainselect option:checked {
  background-image: url("/images/admin/multi_select_active.svg");
  background-repeat: no-repeat;
  background-position: 15px center;
}
section.section_card > .data_wrap .type_desc.multi_select .arrow_ico img {
  margin-top: 30px;
}
section.section_card > .data_wrap .type_desc.select_node_view {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
section.section_card > .data_wrap .type_desc.select_node_view > dl {
  margin-bottom: 0;
}
section.section_card > .data_wrap .type_desc.select_node_view > dl dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-top: 0;
}
section.section_card > .data_wrap .type_desc.select_node_view > dl dd .text {
  color: #bfbfbf;
  line-height: 34px;
}
section.section_card > .data_wrap .type_desc.select_node_view > dl dd .chip {
  line-height: 32px;
  border-radius: 32px;
  background-color: #f7f7f7;
  border: 1px solid #e0e0e0;
  padding: 0 12px;
}
section.section_card > .data_wrap .type_desc.select_node_view > dl dd .icon {
  width: 6px;
  height: 12px;
  background: url("/images/admin/multi_select_arrow_small.svg") no-repeat center center;
}
section.section_card > .data_wrap .type_desc.select_node_view .btns {
  padding: 0 20px;
}
section.section_card > .data_wrap .type_desc.select_node_view .btns .comm_btn {
  white-space: nowrap;
}
section.section_card > .data_wrap .type_desc.none_full {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
section.section_card > .data_wrap .type_desc.has_grid {
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
section.section_card > .data_wrap .type_desc.has_grid .ctrl_btns {
  margin: 10px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
section.section_card > .data_wrap .type_desc.item_adr_wrap {
  padding: 13px 20px 0 20px;
  gap: 10px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
section.section_card > .data_wrap .type_desc.item_adr_wrap dl {
  padding: 0;
  width: calc(50% - 230px);
}
section.section_card > .data_wrap .type_desc.item_adr_wrap dl:first-child {
  width: 230px;
}
section.section_card > .data_wrap .type_desc.item_adr_wrap dl:last-child {
  width: 100%;
}
section.section_card > .data_wrap .type_table {
  width: 100%;
  display: inline-block;
  padding: 0 20px;
}
section.section_card > .data_wrap .type_table table td i.block {
  display: block;
}
section.section_card > .data_wrap .type_table table td a:hover {
  text-decoration: underline;
}
section.section_card > .data_wrap .type_table table td a.code {
  color: #0086ff;
  text-decoration: underline;
}
section.section_card > .data_wrap .type_table.th_top.type_scroll_body {
  padding: 0 15px 0 20px;
}
section.section_card > .data_wrap .type_table.th_top .scrollthead {
  padding-right: 6px;
}
section.section_card > .data_wrap .type_table.th_top .scrollthead thead th {
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  background-color: #fafafc;
}
section.section_card > .data_wrap .type_table.th_top .scrolltbody.type_code_mgmt {
  max-height: 515px;
}
section.section_card > .data_wrap .type_table.th_top thead th {
  height: 45px;
  background-color: #fafafc;
  border: 1px solid #e0e0e0;
  font-weight: 500;
  text-align: left;
  padding: 0 5px;
  text-align: center;
}
section.section_card > .data_wrap .type_table.th_top thead th i {
  color: #fd636b;
  font-weight: 400;
  font-size: 12px;
}
section.section_card > .data_wrap .type_table.th_top thead th:first-child {
  border-left: none;
}
section.section_card > .data_wrap .type_table.th_top thead th:last-child {
  border-right: none;
}
section.section_card > .data_wrap .type_table.th_top thead th.devRqv {
  color: #fd636b;
}
section.section_card > .data_wrap .type_table.th_top tbody td {
  border-bottom: 1px solid #ebebeb;
  border-right: 1px solid #e0e0e0;
  padding: 10px 5px;
  text-align: left;
  font-weight: 500;
  color: #505050;
  line-height: 1.2;
}
section.section_card > .data_wrap .type_table.th_top tbody td:last-child {
  border-right: none;
}
section.section_card > .data_wrap .type_table.th_top tbody td.al_center {
  text-align: center;
}
section.section_card > .data_wrap .type_table.th_top tbody td.has_checkbox {
  position: relative;
}
section.section_card > .data_wrap .type_table.th_top tbody td.has_checkbox .comm_checkbox {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: calc(50% - 6px);
}
section.section_card > .data_wrap .type_table.th_top tbody td img.thumb {
  width: 60px;
}
section.section_card > .data_wrap .type_table.th_top tbody td .color_blue {
  color: #0086ff;
}
section.section_card > .data_wrap .type_table.th_top tbody td .color_red {
  color: #fd636b;
}
section.section_card > .data_wrap .type_table.th_top tbody td .type_link {
  border: none;
  background-color: transparent;
  color: #0086ff;
  line-height: 1.2;
  border-bottom: 1px solid #0086ff;
  font-weight: 500;
}
section.section_card > .data_wrap .type_table.th_left tbody tr:first-child th,
section.section_card > .data_wrap .type_table.th_left tbody tr:first-child td {
  border-top: 1px solid #ebebeb;
}
section.section_card > .data_wrap .type_table.th_left th,
section.section_card > .data_wrap .type_table.th_left td {
  height: 44px;
  padding: 0 15px;
  border-bottom: 1px solid #ebebeb;
}
section.section_card > .data_wrap .type_table.th_left th {
  border-right: 1px solid #ebebeb;
  border-left: 1px solid #ebebeb;
  font-weight: 500;
  text-align: left;
  background-color: #fafafc;
}
section.section_card > .data_wrap .type_table.th_left th:first-child {
  border-left: none;
}
section.section_card > .data_wrap .type_table.th_left th span {
  color: #ff4e4e;
}
section.section_card > .data_wrap .type_table.th_left td {
  font-weight: 400;
}
section.section_card > .data_wrap .tui-grid-border-line {
  display: none;
}
section.section_card > .data_wrap .tui-grid-content-area {
  border: none !important;
  border-top: 1px solid #101010 !important;
}
section.section_card > .data_wrap .tui-grid-content-area .tui-grid-lside-area.left-fix .tui-grid-header-area .tui-grid-table tbody tr th {
  padding: 0;
  position: relative;
}
section.section_card > .data_wrap .tui-grid-content-area .tui-grid-lside-area.left-fix .tui-grid-header-area .tui-grid-table tbody tr th:first-child {
  border-left: none;
}
section.section_card > .data_wrap .tui-grid-content-area .tui-grid-lside-area.left-fix .tui-grid-body-area .tui-grid-body-container .tui-grid-table-container .tui-grid-table tbody tr td {
  padding: 0;
}
section.section_card > .data_wrap .tui-grid-content-area .tui-grid-lside-area.left-fix .tui-grid-body-area .tui-grid-body-container .tui-grid-table-container .tui-grid-table tbody tr td:first-child {
  border-left: none;
}
section.section_card > .data_wrap .tui-grid-layer-state {
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}
section.section_card > .data_wrap .tui-grid-layer-state .tui-grid-layer-state-content {
  padding-top: 0;
}
section.section_card > .data_wrap .tui-grid-layer-state .tui-grid-layer-state-content p {
  font-size: 16px;
  color: #505050;
  font-weight: 500;
  font-family: "Spoqa Han Sans", Sans-serif !important;
}
section.section_card > .data_wrap .tui-grid-header-area {
  border: none !important;
  border-bottom: 1px solid #e0e0e0 !important;
}
section.section_card > .data_wrap .tui-grid-header-area .tui-grid-table tbody tr th {
  background-color: #fafafc !important;
  font-family: "Spoqa Han Sans", sans-serif;
  font-weight: 500 !important;
  color: #101010 !important;
  position: relative;
  border-right: 1px solid #e0e0e0;
}
section.section_card > .data_wrap .tui-grid-header-area .tui-grid-table tbody tr th:first-child {
  border-left: none;
}
section.section_card > .data_wrap .tui-grid-header-area .tui-grid-table tbody tr th[data-column-name=hisNo], section.section_card > .data_wrap .tui-grid-header-area .tui-grid-table tbody tr th[data-column-name=_number], section.section_card > .data_wrap .tui-grid-header-area .tui-grid-table tbody tr th[data-column-name=_checked], section.section_card > .data_wrap .tui-grid-header-area .tui-grid-table tbody tr th[data-column-name=no], section.section_card > .data_wrap .tui-grid-header-area .tui-grid-table tbody tr th[data-column-name=subscribeNo] {
  text-align: center !important;
}
section.section_card > .data_wrap .tui-grid-header-area .tui-grid-table tbody tr th.has_sorting, section.section_card > .data_wrap .tui-grid-header-area .tui-grid-table tbody tr th.tui-grid-cell-selected {
  padding-right: 30px;
  padding-left: 13px;
  text-align: left !important;
}
section.section_card > .data_wrap .tui-grid-header-area .tui-grid-table tbody tr th.has_sorting .tui-grid-btn-sorting, section.section_card > .data_wrap .tui-grid-header-area .tui-grid-table tbody tr th.tui-grid-cell-selected .tui-grid-btn-sorting {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 13px;
  margin-left: 0;
  height: 14px;
}
section.section_card > .data_wrap .tui-grid-header-area .tui-grid-table tbody tr th.has_sorting.tui-grid-cell-row-header, section.section_card > .data_wrap .tui-grid-header-area .tui-grid-table tbody tr th.tui-grid-cell-selected.tui-grid-cell-row-header {
  padding-right: 13px;
}
section.section_card > .data_wrap .tui-grid-header-area .tui-grid-table tbody tr th.tui-grid-cell-selected {
  background-color: #eff3f7 !important;
}
section.section_card > .data_wrap .tui-grid-body-area .tui-grid-table tr {
  border-bottom: 1px solid #e0e0e0;
}
section.section_card > .data_wrap .tui-grid-body-area .tui-grid-table tr td {
  font-family: "Spoqa Han Sans", sans-serif;
  color: #505050;
  line-height: 1.2;
  padding: 0 13px;
  border: 1px solid #e0e0e0;
}
section.section_card > .data_wrap .tui-grid-body-area .tui-grid-table tr td:first-child {
  border-left: none;
}
section.section_card > .data_wrap .tui-grid-body-area .tui-grid-table tr td.color_blue {
  color: #0086ff !important;
}
section.section_card > .data_wrap .tui-grid-body-area .tui-grid-table tr td.color_blue div {
  color: #0086ff !important;
}
section.section_card > .data_wrap .tui-grid-body-area .tui-grid-table tr td.color_blue a {
  color: #0086ff !important;
}
section.section_card > .data_wrap .tui-grid-body-area .tui-grid-table tr td.link a {
  color: #0086ff !important;
  border-bottom: 1px solid #0086ff;
  line-height: 1.2;
}
section.section_card > .data_wrap .tui-grid-body-area .tui-grid-table tr td > div {
  max-width: 100%;
  padding: 0;
  text-overflow: ellipsis;
  line-height: 1.2;
}
section.section_card > .data_wrap .tui-grid-body-area .tui-grid-table tr td > div a {
  max-width: 100%;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}
section.section_card > .data_wrap .tui-grid-body-area .tui-grid-table tr td > div .comm_btn {
  margin: 0 auto;
}
section.section_card > .data_wrap .tui-grid-body-area .tui-grid-table tr td > div.link_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
section.section_card > .data_wrap .tui-grid-body-area .tui-grid-table tr td > div.link_logo img {
  width: 28px;
}
section.section_card > .data_wrap .tui-grid-body-area .tui-grid-table tr td .type_link {
  border: none;
  background-color: transparent;
  color: #0086ff;
  line-height: 1.2;
  border-bottom: 1px solid #0086ff;
  font-weight: 500;
}
section.section_card > .data_wrap .tui-grid-body-area .tui-grid-table tr td .type_link.reject {
  border-color: #fd636b;
  color: #fd636b;
}
section.section_card > .data_wrap .tui-grid-body-area .tui-grid-table tr td .button_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
section.section_card > .data_wrap .tui-grid-table {
  border: none !important;
}
section.section_card > .data_wrap .tui-grid-row-header-checkbox {
  width: 18px;
  height: 18px;
  display: inline-block;
  padding: 0;
  cursor: pointer;
}
section.section_card > .data_wrap .tui-grid-row-header-checkbox input[type=checkbox] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
section.section_card > .data_wrap .tui-grid-row-header-checkbox input[type=checkbox]:checked + i {
  border-color: #00b3e3;
  background: #00b3e3 url("/images/admin/icon_check.svg") no-repeat center center;
}
section.section_card > .data_wrap .tui-grid-row-header-checkbox i {
  width: 18px;
  height: 18px;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
section.section_card > .data_wrap .tui-grid-scrollbar-right-top {
  border: none;
  border-bottom: 1px solid #e0e0e0;
}
section.section_card > .data_wrap .tui-pagination {
  margin: 0;
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.section_card > .data_wrap .tui-pagination .tui-page-btn {
  width: 28px;
  height: 28px;
  margin: 0 7px;
  font-family: "Spoqa Han Sans", sans-serif;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none !important;
  color: #505050;
  font-weight: 500;
}
section.section_card > .data_wrap .tui-pagination .tui-page-btn.tui-is-selected {
  color: #0086ff;
  border: 1px solid #0086ff !important;
  border-radius: 3px;
  background-color: #fff;
}
section.section_card > .data_wrap .tui-pagination .tui-page-btn:hover {
  background-color: #fff;
}
section.section_card .indv_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
section.section_card .indv_flex.flex_start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
section.section_card .item_period_calendar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 10px;
}
section.section_card .item_period_calendar .comm_select {
  width: 200px;
}
section.section_card .item_period_calendar .period_date {
  width: 360px;
}
section.section_card .item_period_calendar .calendar_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
section.section_card .item_period_calendar .calendar_btns .comm_btn:hover, section.section_card .item_period_calendar .calendar_btns .comm_btn.on {
  background-color: #00b3e3;
  border-color: #00b3e3;
  color: #fff;
}
section.section_card .item_period_calendar .calendar_btns .comm_btn.reset:hover::before {
  background-color: #fff;
}
section.section_card .item_period_calendar .calendar_btns .comm_btn.reset.on {
  background-color: #fff;
  border-color: #bfbfbf;
  color: #101010;
}
section.section_card .item_period_calendar .calendar_btns .comm_btn.reset.on::before {
  background-color: #505050;
}
section.section_card .item_search_keyword {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 10px;
}
section.section_card .item_search_keyword .comm_select {
  width: 170px;
}
section.section_card .item_search_keyword .comm_enter {
  width: calc(100% - 180px);
  max-width: 570px;
}
section.section_card .item_col_addr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 10px;
}
section.section_card .item_col_addr .post_no {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
section.section_card .item_col_addr .post_no .comm_enter {
  width: 267px;
}
section.section_card .item_col_addr .post_no button {
  width: 78px;
  height: 34px;
  background-color: #101010;
  color: #fff;
  border-radius: 4px;
  border: none;
}
section.section_card .item_col_addr .addr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
section.section_card .item_col_addr .addr .comm_enter:first-child {
  width: 355px;
}
section.section_card .item_col_addr .addr .comm_enter:last-child {
  width: calc(100% - 365px);
}

.modal.dialog_wrap {
  min-width: 400px;
  max-width: inherit;
  border-radius: 10px;
  width: auto;
  padding: 0 0 40px 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal.dialog_wrap .tit {
  padding: 20px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 22px;
  font-weight: 700;
}
.modal.dialog_wrap .text {
  min-height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  font-size: 16px;
  font-weight: 500;
}
.modal.dialog_wrap .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 0 20px;
}
.modal.dialog_wrap .btns > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 40px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.modal.dialog_wrap .btns > a.del {
  border: 1px solid #e0e0e0;
}
.modal.dialog_wrap .btns > a.save {
  border: 1px solid #0086ff;
  background-color: #0086ff;
  color: #fff;
}

#toast-container.toast-bottom-right {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  right: 0;
  bottom: 0;
}
#toast-container.toast-bottom-right .toast {
  width: auto;
  background-color: #fff;
  padding: 24px;
  opacity: 1;
  border-radius: 10px;
  position: absolute;
  left: 50%;
  bottom: 40px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 17px;
}
#toast-container.toast-bottom-right .toast::before {
  content: "";
  width: 28px;
  height: 28px;
}
#toast-container.toast-bottom-right .toast .toast-close-button {
  width: 12px;
  height: 11px;
  position: absolute;
  right: 13px;
  top: 13px;
  background: url("/images/admin/icon_btn_pop_close.svg") no-repeat;
  text-indent: -9999px;
}
#toast-container.toast-bottom-right .toast .toast-message {
  max-width: 300px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  color: #101010;
}
#toast-container.toast-bottom-right .toast.toast-error::before {
  background: url("/images/admin/icon_pop_error.svg") no-repeat;
}
#toast-container.toast-bottom-right .toast.toast-warning .toast-message {
  max-width: 287px;
}
#toast-container.toast-bottom-right .toast.toast-warning::before {
  width: 32px;
  background: url("/images/admin/icon_pop_warning.svg") no-repeat;
}
#toast-container.toast-bottom-right .toast.toast-success::before {
  width: 32px;
  background: url("/images/admin/icon_pop_success.svg") no-repeat;
}
#toast-container.toast-bottom-right .toast.toast-info::before {
  width: 32px;
  background: url("/images/admin/icon_pop_success.svg") no-repeat;
}

.order_change_popup {
  width: 100%;
  height: 100vh;
  z-index: 99 !important;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.75);
}
.order_change_popup .pop_data_wrap {
  width: 450px;
  padding-bottom: 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 10px;
}
.order_change_popup .pop_data_wrap .tit {
  border-bottom: 1px solid #e0e0e0;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 10px;
}
.order_change_popup .pop_data_wrap .tit h5 {
  font-size: 22px;
}
.order_change_popup .pop_data_wrap .tit .text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  color: #505050;
}
.order_change_popup .pop_data_wrap .data_wrap {
  padding: 0 20px;
}
.order_change_popup .pop_data_wrap .data_wrap > ul {
  width: 100%;
  max-height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
}
.order_change_popup .pop_data_wrap .data_wrap > ul::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
.order_change_popup .pop_data_wrap .data_wrap > ul::-webkit-scrollbar-thumb {
  background: #e0e0e0;
  border-radius: 5px;
}
.order_change_popup .pop_data_wrap .data_wrap > ul::-webkit-scrollbar-track {
  border-radius: 5px;
}
.order_change_popup .pop_data_wrap .data_wrap > ul::-webkit-scrollbar-thumb:hover {
  background: #e0e0e0;
  border-radius: 5px;
}
@media screen and (max-width: 812px) {
  .order_change_popup .pop_data_wrap .data_wrap > ul::-webkit-scrollbar {
    width: 0.7rem;
    height: 0.7rem;
  }
  .order_change_popup .pop_data_wrap .data_wrap > ul::-webkit-scrollbar-thumb {
    border-radius: 0.5rem;
  }
  .order_change_popup .pop_data_wrap .data_wrap > ul::-webkit-scrollbar-track {
    border-radius: 0.5rem;
  }
  .order_change_popup .pop_data_wrap .data_wrap > ul::-webkit-scrollbar-thumb:hover {
    border-radius: 0.5rem;
  }
}
.order_change_popup .pop_data_wrap .data_wrap > ul li {
  width: 100%;
  position: relative;
  border-bottom: 1px solid #e0e0e0;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.2;
  cursor: -webkit-grab;
  cursor: grab;
}
.order_change_popup .pop_data_wrap .data_wrap > ul li:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.order_change_popup .pop_data_wrap .data_wrap > ul li:last-child {
  border-bottom: none;
}
.order_change_popup .pop_data_wrap .data_wrap > ul li .num {
  width: 60px;
}
.order_change_popup .pop_data_wrap .data_wrap > ul li .text {
  width: calc(100% - 80px);
}
.order_change_popup .pop_data_wrap .data_wrap > ul li::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/admin/icon_order.svg) no-repeat center center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
}
.order_change_popup .pop_data_wrap .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}
.order_change_popup .pop_data_wrap .btns .comm_btn {
  min-width: 120px;
}

.img-list-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 20px;
}
.img-list-group li {
  width: 150px;
}
.img-list-group li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 10px;
}
.img-list-group li > a > .photo {
  width: 100%;
  min-height: 150px;
  max-height: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.img-list-group li > a > .photo > img.photo {
  max-width: 100%;
}
.img-list-group li > a > .info {
  width: 100%;
}
.img-list-group li > a > .info .name {
  width: 100%;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
}

.tree_grid_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.tree_grid_wrap section.section_card {
  margin-bottom: 0;
}
.tree_grid_wrap section.section_card .part_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #101010;
}
.tree_grid_wrap section.section_card .part_title h5 {
  font-size: 16px;
  font-weight: 500;
}
.tree_grid_wrap section.section_card .part_title .ctrl_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.tree_grid_wrap section.section_card .part_title .ctrl_btns .comm_btn.add::before {
  background-color: #0086ff;
}
.tree_grid_wrap section.section_card .part_title .ctrl_btns .folding_btn button {
  width: 34px;
  height: 34px;
  background-color: #fff;
  border: 1px solid #bfbfbf;
  border-radius: 4px;
}
.tree_grid_wrap section.section_card .part_title .ctrl_btns .folding_btn button.open {
  display: none;
}
.tree_grid_wrap section.section_card.category {
  width: calc(100% - 460px);
  padding: 20px 0 40px 0;
  margin-bottom: 10px;
}

section.section_card.tree_list {
  width: 440px;
  height: 100%;
  padding: 20px 0 13px 0;
}
section.section_card.tree_list .title_wrap {
  padding: 0 20px;
}
section.section_card.tree_list .top_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
}
section.section_card.tree_list .top_btns .ctrl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.section_card.tree_list .top_btns .ctrl .comm_btn {
  margin: 0;
}
section.section_card.tree_list .tcont_wrap {
  padding: 0 20px;
  height: calc(100vh - 154px);
  overflow-x: hidden;
  overflow-y: auto;
}
section.section_card.tree_list .tcont_wrap::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
section.section_card.tree_list .tcont_wrap::-webkit-scrollbar-thumb {
  background: #e0e0e0;
  border-radius: 5px;
}
section.section_card.tree_list .tcont_wrap::-webkit-scrollbar-track {
  border-radius: 5px;
}
section.section_card.tree_list .tcont_wrap::-webkit-scrollbar-thumb:hover {
  background: #e0e0e0;
  border-radius: 5px;
}
@media screen and (max-width: 812px) {
  section.section_card.tree_list .tcont_wrap::-webkit-scrollbar {
    width: 0.7rem;
    height: 0.7rem;
  }
  section.section_card.tree_list .tcont_wrap::-webkit-scrollbar-thumb {
    border-radius: 0.5rem;
  }
  section.section_card.tree_list .tcont_wrap::-webkit-scrollbar-track {
    border-radius: 0.5rem;
  }
  section.section_card.tree_list .tcont_wrap::-webkit-scrollbar-thumb:hover {
    border-radius: 0.5rem;
  }
}
section.section_card.tree_list .tcont_wrap .tcont {
  width: 100%;
  padding-top: 16px;
}
section.section_card.tree_list .tcont_wrap .tcont table {
  display: block;
  font-size: 14px;
  font-family: "Spoqa Han Sans", Sans-serif;
}
section.section_card.tree_list .tcont_wrap .tcont table tbody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
section.section_card.tree_list .tcont_wrap .tcont table tbody tr {
  display: block;
}
section.section_card.tree_list .tcont_wrap .tcont table tbody tr td {
  width: 100%;
  display: block;
  border: none;
  padding: 6px 0 !important;
}
section.section_card.tree_list .tcont_wrap .tcont table tbody tr td .fancytree-node {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
section.section_card.tree_list .tcont_wrap .tcont table tbody tr td .fancytree-node .whether {
  font-size: 12px;
  color: #767676;
}
section.section_card.tree_list .tcont_wrap .tcont table tbody tr td .fancytree-node .whether i {
  color: #0086ff;
}
section.section_card.tree_list .tcont_wrap .tcont table tbody tr td .fancytree-node .fancytree-icon {
  width: 20px;
  height: 20px;
  margin: 0;
  background-repeat: no-repeat;
  background-position: center center;
}
section.section_card.tree_list .tcont_wrap .tcont table tbody tr td .fancytree-node .fancytree-title {
  margin: 0;
  padding: 0;
  min-height: auto;
  color: #101010;
  vertical-align: middle;
  border: none;
}
section.section_card.tree_list .tcont_wrap .tcont table tbody tr td .fancytree-node .fancytree-expander {
  width: 20px;
  height: 20px;
  margin: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
}
section.section_card.tree_list .tcont_wrap .tcont table tbody tr.fancytree-active {
  outline: none !important;
  background-color: #fff;
}
section.section_card.tree_list .tcont_wrap .tcont table tbody tr.fancytree-active td .fancytree-node .fancytree-title {
  color: #0086ff;
}
section.section_card.tree_list .tcont_wrap .tcont table tbody tr:hover {
  background-color: transparent !important;
  outline: none !important;
}
section.section_card.tree_list .tcont_wrap .tcont table tbody tr:hover td .fancytree-node .fancytree-title {
  color: #0086ff;
}
section.section_card.tree_list .tcont_wrap .tcont table tbody tr.depth1 td .fancytree-node, section.section_card.tree_list .tcont_wrap .tcont table tbody tr.depth0 td .fancytree-node {
  padding-left: 0 !important;
}
section.section_card.tree_list .tcont_wrap .tcont table tbody tr.depth1 td .fancytree-node .fancytree-icon, section.section_card.tree_list .tcont_wrap .tcont table tbody tr.depth0 td .fancytree-node .fancytree-icon {
  display: none;
}
section.section_card.tree_list .tcont_wrap .tcont table tbody tr.depth1.fancytree-has-children.fancytree-exp-e td .fancytree-expander, section.section_card.tree_list .tcont_wrap .tcont table tbody tr.depth1.fancytree-has-children.fancytree-ico-e td .fancytree-expander, section.section_card.tree_list .tcont_wrap .tcont table tbody tr.depth0.fancytree-has-children.fancytree-exp-e td .fancytree-expander, section.section_card.tree_list .tcont_wrap .tcont table tbody tr.depth0.fancytree-has-children.fancytree-ico-e td .fancytree-expander {
  background-image: url("/images/admin/nav/icon_minus.svg");
}
section.section_card.tree_list .tcont_wrap .tcont table tbody tr.depth1.fancytree-has-children.fancytree-exp-c td .fancytree-expander, section.section_card.tree_list .tcont_wrap .tcont table tbody tr.depth1.fancytree-has-children.fancytree-ico-c td .fancytree-expander, section.section_card.tree_list .tcont_wrap .tcont table tbody tr.depth0.fancytree-has-children.fancytree-exp-c td .fancytree-expander, section.section_card.tree_list .tcont_wrap .tcont table tbody tr.depth0.fancytree-has-children.fancytree-ico-c td .fancytree-expander {
  background-image: url("/images/admin/nav/icon_plus.svg");
}
section.section_card.tree_list .tcont_wrap .tcont table tbody tr.depth2 td .fancytree-node {
  padding-left: 12px !important;
}
section.section_card.tree_list .tcont_wrap .tcont table tbody tr.depth2 td .fancytree-node .fancytree-icon {
  background-image: url("/images/admin/icon_category_folder_basic.png");
}
section.section_card.tree_list .tcont_wrap .tcont table tbody tr.depth2.fancytree-has-children.fancytree-exp-e td .fancytree-node .fancytree-icon, section.section_card.tree_list .tcont_wrap .tcont table tbody tr.depth2.fancytree-has-children.fancytree-ico-e td .fancytree-node .fancytree-icon {
  background-image: url("/images/admin/icon_category_folder_minus.png");
}
section.section_card.tree_list .tcont_wrap .tcont table tbody tr.depth2.fancytree-has-children.fancytree-exp-e td .fancytree-node .fancytree-expander, section.section_card.tree_list .tcont_wrap .tcont table tbody tr.depth2.fancytree-has-children.fancytree-ico-e td .fancytree-node .fancytree-expander {
  background-image: url("/images/admin/icon_btn_folding.svg");
}
section.section_card.tree_list .tcont_wrap .tcont table tbody tr.depth2.fancytree-has-children.fancytree-exp-c td .fancytree-node .fancytree-icon, section.section_card.tree_list .tcont_wrap .tcont table tbody tr.depth2.fancytree-has-children.fancytree-ico-c td .fancytree-node .fancytree-icon {
  background-image: url("/images/admin/icon_category_folder_plus.png");
}
section.section_card.tree_list .tcont_wrap .tcont table tbody tr.depth2.fancytree-has-children.fancytree-exp-c td .fancytree-node .fancytree-expander, section.section_card.tree_list .tcont_wrap .tcont table tbody tr.depth2.fancytree-has-children.fancytree-ico-c td .fancytree-node .fancytree-expander {
  background-image: url("/images/admin/icon_arrow_select_black.svg");
}
section.section_card.tree_list .tcont_wrap .tcont table tbody tr.depth2 + .depth1 {
  padding-top: 17px;
  margin-top: 12px;
  border-top: 1px solid #e0e0e0;
}
section.section_card.tree_list .tcont_wrap .tcont table tbody tr.depth3 td .fancytree-node {
  padding-left: 44px !important;
}
section.section_card.tree_list .tcont_wrap .tcont table tbody tr.depth3 td .fancytree-node .fancytree-icon {
  background-image: url("/images/admin/icon_category_folder_doc.png");
}
section.section_card.tree_list .tcont_wrap .tcont table tbody tr.depth3 + .depth1 {
  padding-top: 17px;
  margin-top: 12px;
  border-top: 1px solid #e0e0e0;
}

#body-container.dashboard_wrap .section_card {
  padding: 20px 20px 30px 20px;
}
#body-container.dashboard_wrap .section_card > .tit_wrap {
  padding: 0;
}
#body-container.dashboard_wrap .section_card > .tit_wrap h5 .dir_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#body-container.dashboard_wrap .section_card > .tit_wrap h5 .dir_link i {
  width: 6px;
  height: 12px;
  -webkit-mask-size: 6px 12px;
          mask-size: 6px 12px;
  background-color: #505050;
  -webkit-mask-image: url("/images/admin/multi_select_arrow_small.svg");
          mask-image: url("/images/admin/multi_select_arrow_small.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: right center;
          mask-position: right center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#body-container.dashboard_wrap .section_card > .tit_wrap h5 .dir_link:hover {
  color: #0086ff;
}
#body-container.dashboard_wrap .section_card > .tit_wrap h5 .dir_link:hover i {
  background-color: #0086ff;
}
#body-container.dashboard_wrap .user_state {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-top: 10px;
}
#body-container.dashboard_wrap .user_state dl {
  width: 100%;
  height: 108px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding: 20px 20px 15px 20px;
}
#body-container.dashboard_wrap .user_state dl dt {
  font-size: 16px;
}
#body-container.dashboard_wrap .user_state dl dd {
  width: 100%;
  text-align: right;
  font-size: 16px;
  line-height: 1;
}
#body-container.dashboard_wrap .user_state dl dd span {
  font-size: 48px;
  font-weight: 700;
  margin-right: 10px;
}
#body-container.dashboard_wrap .user_state dl dd span.blue {
  color: #0086ff;
}
#body-container.dashboard_wrap .user_state dl dd span.red {
  color: #fd636b;
}
#body-container.dashboard_wrap .half_section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 20px;
  margin-bottom: 20px;
}
#body-container.dashboard_wrap .half_section .section_card {
  margin-bottom: 0;
}
#body-container.dashboard_wrap .half_section .section_card:first-child {
  width: 640px;
}
#body-container.dashboard_wrap .half_section .section_card:last-child {
  width: calc(100% - 660px);
}
#body-container.dashboard_wrap .memship_state {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 10px;
  margin-top: 10px;
}
#body-container.dashboard_wrap .memship_state dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
  height: 44px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
}
#body-container.dashboard_wrap .memship_state dl dd span {
  font-weight: 700;
}
#body-container.dashboard_wrap .memship_state dl dd span.blue {
  color: #0086ff;
}
#body-container.dashboard_wrap .memship_state dl dd span.red {
  color: #fd636b;
}
#body-container.dashboard_wrap .memship_state dl.total {
  background-color: #fafafc;
}
#body-container.dashboard_wrap .memship_state dl.total dt {
  font-weight: 700;
}
#body-container.dashboard_wrap .ev_state {
  margin-top: 10px;
  border-top: 1px solid #101010;
}
#body-container.dashboard_wrap .ev_state tr {
  border-bottom: 1px solid #e0e0e0;
}
#body-container.dashboard_wrap .ev_state thead th {
  height: 42px;
  background-color: #fafafc;
  font-weight: 500;
  padding: 0 14px;
  text-align: left;
  border-right: 1px solid #e0e0e0;
}
#body-container.dashboard_wrap .ev_state thead th:last-child {
  border-right: none;
}
#body-container.dashboard_wrap .ev_state thead th.al_center {
  text-align: center;
}
#body-container.dashboard_wrap .ev_state tbody td {
  height: 54px;
  padding: 0 14px;
  color: #525252;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-right: 1px solid #e0e0e0;
}
#body-container.dashboard_wrap .ev_state tbody td:last-child {
  border-right: none;
}
#body-container.dashboard_wrap .ev_state tbody td.al_center {
  text-align: center;
}
#body-container.dashboard_wrap .ev_state tbody td span.blue {
  color: #0086ff;
}
#body-container.dashboard_wrap .ev_state tbody td span.red {
  color: #fd636b;
}
#body-container.dashboard_wrap .access_state {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 0;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  margin-top: 10px;
}
#body-container.dashboard_wrap .access_state .chart_wrap {
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  padding: 18px;
}
#body-container.dashboard_wrap .access_state .chart_wrap .tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#body-container.dashboard_wrap .access_state .chart_wrap .tit a {
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#body-container.dashboard_wrap .access_state .chart_wrap .tit a::after {
  content: "";
  width: 6px;
  height: 12px;
  -webkit-mask-size: 6px 12px;
          mask-size: 6px 12px;
  background-color: #505050;
  -webkit-mask-image: url("/images/admin/multi_select_arrow_small.svg");
          mask-image: url("/images/admin/multi_select_arrow_small.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: right center;
          mask-position: right center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#body-container.dashboard_wrap .access_state .chart_wrap .tit a:hover {
  color: #0086ff;
}
#body-container.dashboard_wrap .access_state .chart_wrap .tit a:hover::after {
  background-color: #0086ff;
}
#body-container.dashboard_wrap .access_state .chart_wrap .tit span {
  font-size: 12px;
  color: #767676;
}
#body-container.dashboard_wrap .access_state .chart_wrap .chart_area {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 18px;
}
#body-container.dashboard_wrap .access_state .chart_wrap .chart_area .chart_data {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
#body-container.dashboard_wrap .access_state .chart_wrap .chart_area .chart_data .chart {
  width: 160px;
  height: 160px;
  position: relative;
}
#body-container.dashboard_wrap .access_state .chart_wrap .chart_area .chart_data .chart canvas {
  position: relative;
  z-index: 2;
}
#body-container.dashboard_wrap .access_state .chart_wrap .chart_area .chart_data .chart .total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}
#body-container.dashboard_wrap .access_state .chart_wrap .chart_area .chart_data .chart .total span {
  font-size: 12px;
}
#body-container.dashboard_wrap .access_state .chart_wrap .chart_area .chart_data .chart .total p {
  font-size: 12px;
}
#body-container.dashboard_wrap .access_state .chart_wrap .chart_area .chart_data .chart .total p i {
  font-size: 22px;
  font-weight: 700;
}
#body-container.dashboard_wrap .access_state .chart_wrap .chart_area .chart_data .labels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 8px;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
#body-container.dashboard_wrap .access_state .chart_wrap .chart_area .chart_data .labels li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 7px;
  font-size: 12px;
  color: #505050;
  letter-spacing: -1px;
}
#body-container.dashboard_wrap .access_state .chart_wrap .chart_area .chart_data .labels li i {
  width: 10px;
  height: 10px;
}
#body-container.dashboard_wrap .access_state .chart_wrap .chart_area .chart_data .labels li span {
  width: calc(100% - 17px);
}

.content_wrap.mem_detail .top_section {
  padding: 26px 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.content_wrap.mem_detail .top_section .user_wrap {
  height: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 47px;
  padding-right: 48px;
}
.content_wrap.mem_detail .top_section .user_wrap .photo {
  width: 68px;
  height: 68px;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 25px;
}
.content_wrap.mem_detail .top_section .user_wrap .photo input {
  width: 34px;
  height: 34px;
  position: absolute;
  bottom: 0;
  right: -16px;
  border-radius: 100%;
  border: 1px solid #e0e0e0;
  z-index: 2;
  background: #fff url("/images/admin/icon_modify2.svg") no-repeat center center;
  width: 32px;
  height: 32px;
  text-indent: -9999px;
  cursor: pointer;
}
.content_wrap.mem_detail .top_section .user_wrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 20px;
}
.content_wrap.mem_detail .top_section .user_wrap ul .name {
  font-size: 22px;
  font-weight: 700;
}
.content_wrap.mem_detail .top_section .user_wrap ul .log {
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.content_wrap.mem_detail .top_section .user_wrap ul .log span {
  font-weight: 400;
  color: #505050;
}
.content_wrap.mem_detail .top_section .join_wrap {
  width: 635px;
  height: 68px;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  padding: 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.content_wrap.mem_detail .top_section .join_wrap h6 {
  font-weight: 500;
  font-size: 16px;
}
.content_wrap.mem_detail .top_section .join_wrap .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.content_wrap.mem_detail .top_section .join_wrap .list span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  height: 34px;
  border-radius: 34px;
  padding: 0 13px;
  font-size: 14px;
}
.content_wrap.mem_detail .top_section .join_wrap .list span::before {
  width: 22px;
  height: 22px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100%;
}
.content_wrap.mem_detail .top_section .join_wrap .list span.m {
  color: #fd636b;
  border: 1px solid #fd636b;
}
.content_wrap.mem_detail .top_section .join_wrap .list span.m::before {
  content: "M";
  background-color: #fd636b;
}
.content_wrap.mem_detail .top_section .join_wrap .list span.s {
  color: #17c5c7;
  border: 1px solid #17c5c7;
}
.content_wrap.mem_detail .top_section .join_wrap .list span.s::before {
  content: "S";
  background-color: #17c5c7;
}
.content_wrap.mem_detail .top_section .join_wrap .list span.f {
  color: #42b5eb;
  border: 1px solid #42b5eb;
}
.content_wrap.mem_detail .top_section .join_wrap .list span.f::before {
  content: "F";
  background-color: #42b5eb;
}
.content_wrap.mem_detail .top_section .link_wrap {
  padding-left: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.content_wrap.mem_detail .top_section .link_wrap h6 {
  font-weight: 500;
  font-size: 16px;
}
.content_wrap.mem_detail .top_section .link_wrap .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

.login_wrap {
  width: 100%;
  height: 100vh;
  padding-top: 190px;
}
.login_wrap form {
  width: 400px;
  margin: 0 auto;
}
.login_wrap #loginBox #loginBoxTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.login_wrap #loginBox #loginBoxTitle h5 {
  font-size: 48px;
  font-weight: 700;
}
.login_wrap #loginBox #loginBoxTitle h6 {
  font-size: 16px;
  font-weight: 500;
  color: #505050;
}
.login_wrap #loginBox #inputBox .form_box {
  margin: 45px 0 28px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 10px;
}
.login_wrap #loginBox #inputBox .form_box .comm_enter {
  height: 54px;
}
.login_wrap #loginBox #inputBox .form_box .err {
  font-size: 14px;
  font-weight: 500;
  color: #ff4e4e;
}
.login_wrap #loginBox #inputBox .button_box .comm_btn {
  width: 100%;
  height: 60px;
  font-size: 16px;
}
.login_wrap #loginBox .info_text {
  margin-top: 14px;
  width: 100%;
  text-align: center;
  color: #767676;
}
.login_wrap #loginBox .info_text i {
  color: #ff4e4e;
  margin-right: 10px;
}

.login_reset_wrap {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.login_reset_wrap form {
  width: 400px;
  margin: 0 auto;
}
.login_reset_wrap .comm_enter {
  height: 54px;
}
.login_reset_wrap .comm_btn {
  width: 100%;
  height: 54px;
  font-size: 16px;
}
.login_reset_wrap .comm_btn.last {
  margin-top: 18px;
}
.login_reset_wrap .top_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.login_reset_wrap .top_title h4 {
  font-size: 48px;
  font-weight: 700;
}
.login_reset_wrap .top_title h5 {
  font-size: 40px;
  font-weight: 700;
}
.login_reset_wrap .top_title h5.center {
  text-align: center;
  line-height: 1.2;
}
.login_reset_wrap .top_title h6 {
  font-size: 16px;
  font-weight: 500;
  color: #505050;
  text-align: center;
  line-height: 1.2;
}
.login_reset_wrap .top_title .line_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 5px;
  width: 100%;
}
.login_reset_wrap .top_title .line_text li {
  font-size: 14px;
  font-weight: 500;
  color: #505050;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.login_reset_wrap .top_title .line_text li::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  background-color: #505050;
  border-radius: 100%;
}
.login_reset_wrap .id_verif_wrap {
  margin-top: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 10px;
}
.login_reset_wrap .id_verif_wrap .num_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 10px;
  margin-top: 10px;
}
.login_reset_wrap .id_verif_wrap .num_area .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 5px;
}
.login_reset_wrap .id_verif_wrap .num_area .info li {
  font-size: 14px;
  font-weight: 500;
  color: #505050;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.login_reset_wrap .id_verif_wrap .num_area .info li::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  background-color: #505050;
  border-radius: 100%;
}
.login_reset_wrap .id_verif_wrap .num_area .enter {
  width: 100%;
  position: relative;
}
.login_reset_wrap .id_verif_wrap .num_area .enter .count {
  right: 10px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 500;
}
.login_reset_wrap .id_verif_wrap .num_area .enter .count p {
  color: #ff4e4e;
}
.login_reset_wrap .id_verif_wrap .num_area .refresh {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  background-color: transparent;
}
.login_reset_wrap .id_verif_wrap .num_area .refresh::after {
  content: "";
  width: 14px;
  height: 14px;
  -webkit-mask-size: 14px 14px;
          mask-size: 14px 14px;
  background-color: #505050;
  -webkit-mask-image: url("../images/admin/icon_refresh.svg");
          mask-image: url("../images/admin/icon_refresh.svg");
}
.login_reset_wrap .pw_resert_wrap {
  margin-top: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 10px;
}
.login_reset_wrap .pw_resert_wrap .info_text {
  font-size: 14px;
  color: #767676;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.login_reset_wrap .pw_resert_wrap .info_text::before {
  content: "*";
  color: #ff4e4e;
}
/* 커스텀 체크박스 스타일  26.01.07 토스트그리드체크박스 커스텀으로 변경 .tg*/
.custom-checkbox .checkmark {
    /* 기존 사용하던 스타일 그대로 */
    position: absolute;
    width: 18px; height: 18px;
    background: #f8f9fa; border: 2px solid #dee2e6;
    border-radius: 4px; pointer-events: none; /* 클릭 통과 */
}
.custom-checkbox input:checked + .checkmark {
    background-color: #007bff; border-color: #007bff;
}
.custom-checkbox input:checked + .checkmark::after {
    content: "✓"; position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    color: white; font-size: 12px; font-weight: 900;
}