@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import 'https://cdn.jsdelivr.net/npm/flatpickr/dist/flatpickr.min.css';
@import 'https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/css/select2.min.css';
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, button, textarea, blockquote, th, td {
  margin: 0;
  padding: 0;
}

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

fieldset, img {
  border: 0;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6, th {
  font-weight: 700;
}

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

abbr, acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: baseline;
}

sub {
  vertical-align: baseline;
}

legend {
  color: #000;
}

input, button, textarea, select, optgroup, option {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
}

:root {
  --font: #3E444E;
  --bg: #EDEEF1;
  --blue1: #004FAB;
  --blue2: #3472DC;
  --blue3: #3D86E6;
  --blue4: #6CADEE;
  --blue5: #CDE0F0;
  --blue6: #F0F7FE;
  --blueO35: #6CADEE59;
  --red: #E63D3D;
  --green: #339917;
  --grayO16: #78788029;
  --gray1: #46494D;
  --gray2: #596270;
  --gray3: #6E7A89;
  --gray4: #878E94;
  --gray5: #D7DBE0;
  --gray6: #F7F8F8;
}

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

/* width */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  border-radius: 3px;
}

/* Track */
::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.4);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #B9C1C9;
  border-radius: 3px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--gray4);
}

::-webkit-input-placeholder {
  color: var(--gray4);
}

::-moz-placeholder {
  color: var(--gray4);
}

:-ms-input-placeholder {
  color: var(--gray4);
}

::-ms-input-placeholder {
  color: var(--gray4);
}

::placeholder {
  color: var(--gray4);
}

body {
  -webkit-text-size-adjust: 100%;
  font-family: "Open Sans", "Noto Sans", sans-serif;
  line-height: 1.5;
  font-size: 16px;
  font-weight: 400;
  color: var(--font);
  background: var(--bg);
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: var(--blue2);
}

a.link {
  border-bottom: 1px solid currentColor;
}
a.link:hover {
  color: var(--blue1);
}

button {
  outline: 0;
  border: 0;
  background: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  min-width: 28px;
  gap: 0.5em;
}
button img {
  display: block;
}

.btn {
  color: white;
  font-weight: 500;
  background: var(--blue3);
  font-size: 14px;
  padding: 0.75em 1.25em;
  border-radius: 10px;
  height: 45px;
}

.btn-red {
  background: var(--red);
}

.btn-cancel {
  color: var(--red);
  background: transparent;
  font-weight: 400;
}

.btn-nobg {
  color: var(--blue3);
  background: transparent;
  font-weight: 400;
}

.btn-line {
  background: transparent;
  border: 1px solid var(--gray5);
  color: var(--font);
}

.btn-circle {
  min-width: auto;
  width: 40px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 2px solid white;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
  padding: 0;
}
.btn-circle.active {
  color: var(--blue3);
  border: 2px solid var(--blue3);
  background: white;
}

.btn-circle.add {
  background: white;
}

.btn[disabled] {
  color: var(--gray4);
  background: #EDEEF1;
  border: 1px solid #D7DBE0;
}

.btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.btns .btns-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.fix-btns {
  position: sticky;
  bottom: 0;
  background: var(--bg);
  z-index: 9;
  padding: 16px 36px;
  border-top: 1px solid var(--gray5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.circle-btns {
  padding: 6px 0;
}
.circle-btns .btns-main {
  padding-left: 6px;
}
.circle-btns .btn-circle {
  margin-left: -6px;
}
.circle-btns .btn-circle.add {
  margin-left: 16px;
}

.btns.block {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.btns.block .btn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid var(--gray5);
  border-radius: 10px;
  padding: 0.75em 1em;
  font-size: 14px;
  outline: 0;
  color: var(--font);
  background: white;
  min-height: 43px;
}

textarea {
  outline: 0;
  background: white;
  border: 1px solid var(--gray5);
  border-radius: 10px;
  display: block;
  padding: 0.75em 1em;
  width: 100%;
  font-size: 14px;
  resize: none;
}

input {
  outline: 0;
  background: white;
  border: 1px solid var(--gray5);
  border-radius: 10px;
  padding: 0.75em 1em;
  font-size: 14px;
  min-height: 45px;
}
input:focus {
  border: 1px solid var(--blue4);
}
input[disabled] {
  background: var(--bg);
}

.datalist {
  position: relative;
  height: 100%;
}
.datalist input {
  width: 100%;
  height: 100%;
}
.datalist:after {
  content: "";
  display: block;
  position: absolute;
  right: 8px;
  top: 50%;
  width: 25px;
  height: 50%;
  background: white;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.datalist .arrow {
  position: absolute;
  right: 1em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}

.select {
  position: relative;
  background: white;
  border: 1px solid var(--gray5);
  border-radius: 10px;
  height: 45px;
}
.select:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-top: 5px solid #878E94;
  position: absolute;
  right: 1em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 0;
}
.select select {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: transparent;
  border: 0;
}
.select select option {
  background: white;
}

h1 {
  font-size: 28px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 16px;
}

h5 {
  font-size: 14px;
}

h6 {
  font-size: 12px;
}

.center {
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.right {
  text-align: right;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.font-green {
  color: var(--green);
}

.font-red {
  color: var(--red);
}

.font-black {
  color: black;
}

.style-input {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  font-size: 14px;
}
.style-input a {
  position: relative;
  z-index: 2;
}
.style-input input[type=checkbox],
.style-input input[type=radio] {
  position: absolute;
  left: 0;
  opacity: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.style-input .radiomark {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid var(--gray4);
  background: white;
  position: relative;
}
.style-input input[type=radio]:checked ~ .radiomark {
  border-color: var(--blue3);
}
.style-input input[type=radio]:checked ~ .radiomark:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: var(--blue3);
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 4px;
}
.style-input .checkmark {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  border: 1px solid var(--gray4);
  background: white;
  position: relative;
}
.style-input input[type=checkbox]:checked ~ .checkmark {
  border-color: var(--blue3);
  background: var(--blue3);
}
.style-input input[type=checkbox]:checked ~ .checkmark:after {
  content: "";
  display: block;
  width: 10px;
  height: 6px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  border-radius: 1px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  top: 4px;
  left: 3px;
}

/* 當 checkbox 被選取且被禁用時，變成 #596270 */
.style-input input[type=checkbox]:checked:disabled ~ .checkmark {
  border-color: #8C96A4;
  background: #8C96A4;
}

/* 當 checkbox 被禁用時，邊框變成 #596270，但背景稍微淺一點 */
.style-input input[type=checkbox]:disabled ~ .checkmark {
  border-color: #8C96A4;
  background: #8C96A4; /* 這是 #596270 的較淺版本 */
}

.pill-input {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.pill-input input[type=checkbox],
.pill-input input[type=radio] {
  position: absolute;
  left: 0;
  opacity: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.pill-input .pillmark {
  display: block;
  width: 51px;
  height: 31px;
  border-radius: 2em;
  background: var(--gray5);
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
.pill-input .pillmark:after {
  content: "";
  display: block;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: white;
  position: absolute;
  left: 2px;
  top: 2px;
  -webkit-box-shadow: 0px 3px 1px 0px rgba(0, 0, 0, 0.0588235294), 0px 3px 8px 0px rgba(0, 0, 0, 0.1490196078);
          box-shadow: 0px 3px 1px 0px rgba(0, 0, 0, 0.0588235294), 0px 3px 8px 0px rgba(0, 0, 0, 0.1490196078);
}
.pill-input input[type=checkbox]:checked ~ .pillmark {
  background: var(--blue5);
}
.pill-input input[type=checkbox]:checked ~ .pillmark:after,
.pill-input input[type=radio]:checked ~ .pillmark:after {
  left: auto;
  right: 2px;
}

.label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  position: relative;
}
.label h6 {
  font-weight: 400;
  color: var(--gray4);
}
.label h6.font-black {
  color: black;
}
.label .label-status {
  position: absolute;
  right: 0.75em;
  top: 50%;
  margin-top: -10px;
}
.label .label-status img {
  height: 20px;
  width: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.label .label-status button {
  min-width: auto;
}

.label:has(.label-status) input {
  padding-right: 2.75em;
}

.label.error input,
.label:has(.error-word) input {
  border-color: var(--red);
}

.label-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px 12px;
}

.label-notice {
  font-size: 12px;
  color: var(--blue3);
}

.label.must h6:after {
  content: "*";
  display: inline-block;
  color: var(--red);
  margin-left: 4px;
}

.two-labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.two-labels .label {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.two-labels .label:first-child input,
.two-labels .label:first-child .select {
  border-radius: 10px 0 0 10px;
  border-right: 0;
}
.two-labels .label:last-child input,
.two-labels .label:last-child .select {
  border-radius: 0 10px 10px 0;
}

.row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}
.row .col-1 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.row .col-2 {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: calc(50% - 8px);
}
.row .col-full {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 100%;
}

.row:has(.label) {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.wrap {
  position: fixed;
  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;
  height: 100%;
}
.wrap main {
  height: calc(100% - 54px);
}

.avatar {
  display: block;
  aspect-ratio: 1/1;
  border: 2px solid #D4D4D8;
  border-radius: 50%;
}

.avatar-font {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--blue3);
  color: white;
}

.arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-top: 5px solid #878E94;
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 36px;
  border-bottom: 1px solid var(--gray5);
  height: 54px;
}
header .logo img {
  display: block;
}
header .function {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .function .notify {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-right: 1px solid var(--gray3);
  padding: 0 1rem 0 0;
  display: none;
}
header .function .member {
  font-size: 12px;
  padding: 0 0 0 1rem;
  position: relative;
}
header .function .member button {
  gap: 0.5em;
  border-radius: 10px;
  border: 1px solid transparent;
  padding: 4px;
}
header .function .member button.active {
  border-color: var(--gray5);
}
header .function .member .avatar {
  width: 28px;
}
header .function .member .member-menu {
  right: 0;
  top: calc(100% + 16px);
  position: absolute;
  text-align: center;
  background: white;
  border-radius: 18px;
  border: 1px solid var(--gray5);
  -webkit-box-shadow: 1px 0px 1px 0px rgba(0, 0, 0, 0.0705882353);
          box-shadow: 1px 0px 1px 0px rgba(0, 0, 0, 0.0705882353);
  min-width: 228px;
  z-index: 30;
  display: none;
}
header .function .member .member-menu.active {
  display: block;
}
header .function .member .member-menu .close {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 0;
  cursor: default;
}
header .function .member .member-menu .inner {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  padding: 16px;
}
header .function .member .member-menu .avatar {
  width: 80px;
  font-size: 36px;
  margin: auto;
}
header .function .member .member-menu .mail {
  color: var(--gray4);
}
header .function .member .member-menu .mm-menu {
  border: 1px solid var(--gray5);
  background: var(--gray6);
  border-radius: 16px;
}
header .function .member .member-menu .mm-menu a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--gray2);
  font-size: 14px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: 1px solid var(--gray5);
  padding: 10px 16px;
}
header .function .member .member-menu .mm-menu a span {
  text-align: left;
  min-width: 4em;
}
header .function .member .member-menu .mm-menu a:last-child {
  border-bottom: 0;
}

.side-menu {
  position: absolute;
  left: 0;
  height: calc(100% - 54px);
  background: white;
  border-radius: 0 1em 1em 0;
  -webkit-box-shadow: -1px 1px 1px 0px rgba(0, 0, 0, 0.1215686275), 1px 0px 1px 0px rgba(0, 0, 0, 0.0705882353);
          box-shadow: -1px 1px 1px 0px rgba(0, 0, 0, 0.1215686275), 1px 0px 1px 0px rgba(0, 0, 0, 0.0705882353);
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.side-menu-small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 16px 0 36px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}

.side-menu-close {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  cursor: default;
  z-index: 0;
}

.side-menu:has(.side-menu-big.active) .side-menu-close {
  display: block;
}

.icon {
  aspect-ratio: 1/1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sms-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 80px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.sms-icons a {
  text-align: center;
  display: block;
  font-size: 10px;
  color: #6E7A89;
}
.sms-icons a span {
  display: block;
  font-weight: 400;
  margin-top: 4px;
}
.sms-icons a.active {
  color: #3E444E;
}
.sms-icons .icon {
  aspect-ratio: 1/1;
  width: 36px;
  display: block;
  margin: auto;
  border-radius: 5px;
}

.sms-icons-iems .icon {
  background-image: url("/static/image/comm/icon_iems.svg");
}

.sms-icons-iso .icon {
  background-image: url("/static/image/comm/icon_iso.svg");
}

.sms-icons-power .icon {
  background-image: url("/static/image/comm/icon_power.svg");
}

.sms-icons-backst .icon {
  background-image: url("/static/image/comm/icon_backst.svg");
}

.sms-icons-notice .icon {
  background-image: url("/static/image/comm/icon_notice.svg");
}

.sms-icons-iems:hover .icon,
.sms-icons-iems.active .icon {
  background-image: url("/static/image/comm/icon_iemsBlue.svg");
  background-color: var(--blue5);
}

.sms-icons-iso:hover .icon,
.sms-icons-iso.active .icon {
  background-image: url("/static/image/comm/icon_isoBlue.svg");
  background-color: var(--blue5);
}

.sms-icons-power:hover .icon,
.sms-icons-power.active .icon {
  background-image: url("/static/image/comm/icon_powerBlue.svg");
  background-color: var(--blue5);
}

/*.sms-icons-backst:hover .icon,*/
/*.sms-icons-backst.active .icon {*/
/*  background-image: url("/static/image/comm/icon_backstBlue.svg");*/
/*  background-color: var(--blue5);*/
/*}*/

/* !*滑鼠移過去時（不論是否 active）*!*/
.sms-icons-backst:hover .icon{
  background-image: url("/static/image/comm/icon_backst.svg");
  background-color: #EDEEF1;
}

/*!* 當元素被點擊後（active 狀態） *!*/
.sms-icons-backst.active .icon {
  background-image: url(/static/image/comm/icon_backstBlue.svg);
  background-color: var(--blue5);
}

/*!* 當元素既是 active 又被 hover 時 *!*/
.sms-icons-backst.active:hover .icon {
  background-image: url(/static/image/comm/icon_backstBlue.svg);
  background-color: #EDEEF1;
}

/*.sms-icons-notice:hover .icon,*/
/*.sms-icons-notice.active .icon {*/
/*  background-image: url("/static/image/comm/icon_noticeBlue.svg");*/
/*  background-color: var(--blue5);*/
/*}*/

/* !*滑鼠移過去時（不論是否 active）*!*/
.sms-icons-notice:hover .icon{
  background-image: url("/static/image/comm/icon_notice.svg");
  background-color: #EDEEF1;
}

/*!* 當元素被點擊後（active 狀態） *!*/
.sms-icons-notice.active .icon {
  background-image: url(/static/image/comm/icon_noticeBlue.svg);
  background-color: var(--blue5);
}

/*!* 當元素既是 active 又被 hover 時 *!*/
.sms-icons-notice.active:hover .icon {
  background-image: url(/static/image/comm/icon_notice.svg);
  background-color: #EDEEF1;
}

.sms-function {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 26px;
}
.sms-function a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  aspect-ratio: 1/1;
  width: 36px;
  margin: auto;
  border-radius: 5px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2em;
}
.sms-function .line {
  width: 100%;
  height: 1px;
  background: var(--gray3);
  display: none;
}

.sms-function-setting {
  background-image: url(/static/image/comm/icon_setting.svg);
}

/*.sms-function-setting:hover,*/
/*.sms-function-setting.active {*/
/*  background-image: url(/static/image/comm/icon_settingBlue.svg);*/
/*  background-color: var(--blue5);*/
/*}*/

/* 滑鼠移過去時（不論是否 active） */
.sms-function-setting:hover {
  background-image: url(/static/image/comm/icon_setting.svg);
  background-color: #EDEEF1;
}

/* 當元素被點擊後（active 狀態） */
.sms-function-setting.active {
  background-image: url(/static/image/comm/icon_settingBlue.svg);
  background-color: var(--blue5);
}

/* 當元素既是 active 又被 hover 時 */
.sms-function-setting.active:hover {
  background-image: url(/static/image/comm/icon_settingBlue.svg);
  background-color: #EDEEF1;
}

.sms-function-open {
  display: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--gray3);
  margin-top: 100%;
}
.sms-function-open img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.side-menu:has(.side-menu-big.active) .sms-function-open img {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.side-menu-big {
  -webkit-transition: max-width 1s;
  transition: max-width 1s;
  max-width: 0;
  overflow: hidden;
  border-left: 1px solid transparent;
  position: relative;
  z-index: 1;
}
.side-menu-big a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 32px;
  color: var(--gray2);
  font-size: 14px;
  font-weight: 600;
}
.side-menu-big a span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.side-menu-big a span.arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0;
          flex: 0;
}
.side-menu-big .smb-menu {
  display: none;
  padding: 8px 0;
}
.side-menu-big .smb-menu a:hover {
  background: var(--blue6);
}
.side-menu-big .smb-menu.active {
  display: block;
}
.side-menu-big .smb-menu .active {
  background: var(--blue6);
  color: black;
}
.side-menu-big .smb-title {
  border-bottom: 1px solid var(--gray5);
  color: black;
}
.side-menu-big .smb-title .arrow {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.side-menu-big .smb-title.active .arrow {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.side-menu-big.active {
  max-width: none;
  border-left: 1px solid var(--gray5);
  width: 240px;
}

.crumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 10px;
  gap: 1em;
}
.crumb span,
.crumb a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
  color: var(--font);
}
.crumb span:after,
.crumb a:after {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  border-top: 1px solid var(--font);
  border-right: 1px solid var(--font);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.crumb span:last-child:after,
.crumb a:last-child:after {
  display: none;
}

.edit-menu {
  position: fixed;
  right: 105px;
  margin-top: -24px;
  z-index: 20;
  background: white;
  border-radius: 10px;
  -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.1411764706);
          box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.1411764706);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1px;
  background: var(--gray5);
  overflow: hidden;
  display: none;
  z-index: 12;
}
.edit-menu a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 24px 12px 24px;
  gap: 1em;
  background: white;
  font-size: 14px;
  color: black;
  z-index: 1;
}
.edit-menu a span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.edit-menu a.close {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 0;
  cursor: default;
}

.edit-menu.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.content {
  padding-left: 80px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.content-top {
  width: 100%;
  padding: 16px 36px;
  border-bottom: 1px solid var(--gray5);
  height: 84px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.content-top .content-top-edit {
  position: relative;
}
.content-top .content-top-edit .edit-menu {
  right: 0;
  min-width: 180px;
}
.content-top .tabs {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  width: 100%;
  margin-top: 10px;
}
.content-top .tabs .tab {
  background: transparent;
  font-size: 14px;
  padding: 8px 16px;
  min-width: auto;
  font-weight: 400;
}
.content-top .tabs .tab.active {
  font-weight: 600;
}
.content-top .tabs .tab:before {
  top: 100%;
}

.content-top-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.content-top-back {
  padding-right: 24px;
}

.content-top:has(.tabs) {
  height: 115px;
  padding-bottom: 0;
}

.title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.title h2 {
  color: var(--blue1);
}
.title button {
  width: 32px;
  height: 32px;
}

.content-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: auto;
  padding: 16px 36px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.content-main .inner {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.content-main .circle-btns:not(.no-sticky) {
  position: sticky;
  top: 0;
  z-index: 2;
  border-bottom: 1px solid var(--gray5);
  margin-bottom: 24px;
  background: var(--bg);
  padding: 16px 36px;
}

.content-main:has(+ .content-bottom) {
  height: calc(100% - 31px);
}

.content:has(.content-top) .content-main {
  height: calc(100% - 84px);
}
.content:has(.content-top) .content-main:has(+ .content-bottom) {
  height: calc(100% - 115px);
}

.content-top:has(.tabs) ~ .content-main {
  height: calc(100% - 115px);
}

.content-main:has(.fix-btns) {
  padding: 16px 0 0;
}
.content-main:has(.fix-btns) .form {
  padding: 0 36px 16px;
}

.content-main:has(.circle-btns) {
  padding-top: 0;
}

.content-side {
  width: 240px;
  border-right: 1px solid var(--gray5);
}

.cs-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 8px 0;
}
.cs-menu a {
  color: var(--gray2);
  padding: 16px 16px 16px 24px;
}
.cs-menu a.active {
  color: black;
  background: var(--blue5);
}

.cm-top {
  padding: 8px 36px 16px;
  border-bottom: 1px solid var(--gray5);
}

.cm-sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.dropdown {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 14px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: left;
  background: white;
  border-radius: 12px;
  padding: 4px 12px 4px 22px;
  color: var(--font);
  border: 1px solid var(--gray5);
  width: 210px;
}
.dropdown .dropdown-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.dropdown .dropdown-text small {
  font-size: 10px;
  color: var(--gray2);
}
.dropdown .dropdown-text span {
  display: block;
}

.dropdown-menu {
  position: absolute;
  padding: 8px 0;
  z-index: 99;
  background: white;
  border-radius: 10px;
  width: 66%;
  max-width: 310px;
  -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.1411764706);
          box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.1411764706);
  margin-top: 4px;
}

.cm-sort-function {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  font-weight: 600;
  gap: 1em;
}

.cm-content {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  gap: 16px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.cm-content .cmc-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.cm-content .cmc-side {
  width: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}
.cm-content .cmc-side .card {
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

.color {
  display: inline-block;
  aspect-ratio: 1/1;
  border-radius: 4px;
  width: 12px;
}

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

.tab-pill {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid var(--gray5);
  border-radius: 2em;
}
.tab-pill button {
  background: var(--bg);
  padding: 0 1em;
  border-radius: 2em;
}
.tab-pill .active,
.tab-pill button.active {
  background: var(--blue3);
  color: white;
}

.tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.tabs .tab {
  background: white;
  position: relative;
  padding: 12px 16px 12px 36px;
  min-width: 160px;
  color: var(--gray3);
  font-weight: 600;
}
.tabs .tab:before {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
}
.tabs .tab.active {
  color: var(--gray1);
}
.tabs .tab.active:before {
  background: var(--blue3);
}

.page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page .page-current {
  color: black;
}

.page-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-number a {
  color: var(--gray4);
  min-width: 2em;
  line-height: 2;
  text-align: center;
  margin: 0 10px;
}
.page-number .prev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: black;
  gap: 0.5em;
  padding-right: 1em;
}
.page-number .prev:before {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 2px solid black;
  border-left: 2px solid black;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.page-number .next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: black;
  gap: 0.5em;
  padding-left: 1em;
}
.page-number .next:after {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 2px solid black;
  border-right: 2px solid black;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.page-number .active {
  color: white;
  position: relative;
}
.page-number .active span {
  position: relative;
  z-index: 1;
}
.page-number .active:after {
  content: "";
  display: block;
  width: 1.75em;
  height: 1.75em;
  background: var(--blue3);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.table-page {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: var(--gray5);
  padding: 0.75em 1.5em;
  position: sticky;
  bottom: 0;
  left: 0;
  z-index: 11;
}

.card {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  background: white;
  padding: 18px 24px;
  border-radius: 24px;
  -webkit-box-shadow: -1px 1px 1px 0px rgba(0, 0, 0, 0.1215686275), 1px 0px 1px 0px rgba(0, 0, 0, 0.0705882353);
          box-shadow: -1px 1px 1px 0px rgba(0, 0, 0, 0.1215686275), 1px 0px 1px 0px rgba(0, 0, 0, 0.0705882353);
  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;
}
.card .card-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.card .card-top .card-top-function {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.card .card-top button {
  border: 1px solid var(--gray5);
  border-radius: 50%;
  width: 29px;
  height: 29px;
}
.card .card-top .tab-pill button {
  width: auto;
  border-radius: 2em;
  border: 0;
}
.card .card-top .card-top-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
}
.card .card-top .card-top-title .icon {
  border-radius: 50%;
  background: var(--blue6);
  width: 28px;
}
.card .card-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 8px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.card-full {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
}

.chart-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 0.5em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.chart-label h6 {
  width: 100%;
  font-weight: 400;
  color: var(--gray2);
}
.chart-label big {
  font-weight: 600;
  font-size: 24px;
  display: inline-block;
  min-width: 3em;
  margin-right: 0.5rem;
}
.chart-label big span {
  color: var(--gray3);
}
.chart-label small {
  font-size: 10px;
  color: var(--gray4);
}
.chart-label p {
  margin: 0;
  font-size: 10px;
  color: var(--gray4);
}
.chart-label .chart-label-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.labels-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.labels-row .chart-label {
  position: relative;
  padding-left: 16px;
}
.labels-row .chart-label .color {
  position: absolute;
  left: 0;
  top: 0;
  aspect-ratio: none;
  height: 100%;
  width: 5px;
  border-radius: 5px 0 0 5px;
}

.chart {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}

.chart-full {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  max-height: none;
}

.bar {
  display: block;
  height: 8px;
  border-radius: 4px;
  background: var(--bg);
  overflow: hidden;
}
.bar .bar-percent {
  height: 100%;
  background: var(--blue3);
  border-radius: 4px;
}

.content-bottom {
  width: 100%;
  padding: 8px 36px;
  height: 31px;
}

.update-time {
  font-size: 10px;
  color: var(--gray4);
}

.cm-search {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 16px auto;
  gap: 16px;
}

.search-input {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: white;
  border: 1px solid var(--gray5);
  border-radius: 10px;
  font-size: 14px;
  gap: 1em;
  min-width: 300px;
}
.search-input input {
  border: 0;
  outline: 0;
  background: transparent;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  padding: 0.25em 0;
  height: 43px;
}

.switch-search-input {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: white;
  border: 1px solid var(--gray5);
  border-radius: 10px;
  font-size: 14px;
  gap: 1em;
  min-width: 300px;
}
.switch-search-input input {
  border: 0;
  outline: 0;
  background: transparent;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  padding: 0.25em 0;
  height: 43px;
}

.cm-search-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.search-sort {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.search-sort .search-sort-list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid var(--gray5);
  background: white;
  border-radius: 14px;
  height: 45px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 6px;
}
.search-sort .search-sort-list .ssl-tags {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.search-sort .search-sort-list .tag {
  padding: 6px 12px;
}

.hr {
  margin: 24px 0;
  width: 100%;
  border-top: 1px solid var(--gray5);
}

table {
  background: white;
  min-width: 100%;
}
table thead tr {
  position: sticky;
  top: 0;
  z-index: 11;
}
table tr.tr-last {
  border-bottom: 3px solid var(--gray5);
}
table tr.active td {
  background: #E3EDF6;
}
table th {
  padding: 1em;
  white-space: nowrap;
  background: var(--gray5);
  border-left: 1px solid var(--gray5);
  border-right: 1px solid var(--gray5);
}
table td {
  background: white;
  height: 3em;
  padding: 0.75em 1em;
  white-space: nowrap;
  border: 1px solid var(--gray5);
}
table td .tags {
  margin: 0 4px;
}
table td:first-child {
  min-width: 3.5em;
  width: 3.5em;
}
table td:first-child button.active {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
table th.fixed,
table td.fixed {
  position: sticky;
  left: 3.5em;
  top: auto;
  z-index: 2;
  border-right: 1px solid var(--gray5);
}
table th.fixed:after,
table td.fixed:after {
  content: "";
  width: 0;
  height: 100%;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-box-shadow: 6px 0px 6px 0px rgba(0, 0, 0, 0.0705882353);
          box-shadow: 6px 0px 6px 0px rgba(0, 0, 0, 0.0705882353);
  padding-left: 6px;
}
table th:first-child.fixed,
table td:first-child.fixed {
  position: sticky;
  left: 0;
  top: auto;
  z-index: 2;
}
table .edit {
  text-align: center;
  position: sticky;
  top: auto;
  right: 0;
  width: 4.5em;
  z-index: 10;
}
table .edit:after {
  content: "";
  width: 0;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-box-shadow: -6px 0px 6px 0px rgba(0, 0, 0, 0.0705882353);
          box-shadow: -6px 0px 6px 0px rgba(0, 0, 0, 0.0705882353);
  padding-left: 6px;
}
table .edit button {
  min-width: auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
}
table .edit button.active {
  background: var(--gray5);
}

.hidden-tr {
  display: none;
}
.hidden-tr.active td {
  background: #E3EDF6;
}

.table-scroll {
  overflow: auto;
  background: white;
}

.tooltips {
  position: absolute;
  right: 0;
  bottom: calc(100% + 6px);
  background: var(--gray5);
  border: 1px solid var(--gray5);
  font-weight: 400;
  color: var(--font);
  padding: 3px 6px;
  border-radius: 6px;
  display: none;
  z-index: 20;
}
.tooltips:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 6px solid var(--gray5);
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  position: absolute;
  right: 50%;
  bottom: -6px;
  margin-right: -4px;
}
.tooltips span {
  display: inline-block;
}

td .tooltips {
  bottom: auto;
  top: 50%;
  right: auto;
  left: calc(100% + 1em);
  white-space: wrap;
  word-break: keep-all;
  text-align: left;
  -webkit-box-shadow: 0 0 3px white;
          box-shadow: 0 0 3px white;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
td .tooltips:after {
  right: auto;
  left: -7px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  bottom: auto;
  top: 50%;
  margin-right: 0;
  margin-top: -3px;
}

.tooltips.mail span {
  display: block;
}

.tooltips.right {
  bottom: auto;
  top: -1em;
  right: auto;
  left: calc(100% + 1em);
}
.tooltips.right:after {
  right: -6px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  bottom: auto;
  top: 50%;
  margin-right: 0;
  margin-top: -3px;
}

.tag {
  font-size: 12px;
  color: var(--gray3);
  background: var(--gray6);
  border: 1px solid var(--gray5);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 2em;
  position: relative;
}
.tag .color {
  background: var(--gray4);
}
.tag .no {
  color: white;
  background: var(--gray4);
  border-radius: 4px;
  padding: 0 4px;
  font-size: 11px;
  cursor: default;
}
.tag .close {
  aspect-ratio: 1/1;
  min-width: auto;
  width: 15px;
  border-radius: 50%;
  background: #8C96A4;
  position: relative;
  margin-left: 0.5em;
}
.tag .close span:before {
  content: "";
  width: 9px;
  height: 1px;
  background: white;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 3px;
}
.tag .close span:after {
  content: "";
  width: 9px;
  height: 1px;
  background: white;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  left: 3px;
}
.tag .tooltips:after {
  right: 20%;
}
.tag .tooltips.right:after {
  right: -6px;
}
.tag.blue .color {
  background: #3D86E6;
}
.tag.blue .no {
  background: #3D86E6;
}
.tag.green .color {
  background: #47922C;
}
.tag.green .no {
  background: #47922C;
}
.tag.green2 .color {
  background: #7AB964;
}
.tag.green2 .no {
  background: #7AB964;
}
.tag.yellow .color {
  background: #F0CE93;
}
.tag.yellow .no {
  color: #84580D;
  background: #F0CE93;
}
.tag.purple .color {
  background: #BE87D8;
}
.tag.purple .no {
  color: #8D26CA;
  background: #DEB6FC;
}
.tag.purple2 .color {
  background: #B659F3;
}
.tag.purple2 .no {
  background: #B659F3;
}
.tag.purple3 .color {
  background: #8D26CA;
}
.tag.purple3 .no {
  background: #8D26CA;
}
.tag.purple4 .color {
  background: #430962;
}
.tag.purple4 .no {
  background: #430962;
}

.tags {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0.5em;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.tags-box {
  border-radius: 12px;
  border: 1px solid var(--gray5);
  background: white;
  padding: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2509803922);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: auto;
  padding: 24px 0;
  z-index: 999;
}
.dialog .dialog-close {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  cursor: default;
}

.dialog-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
}
.dialog-content .dialog-content-box {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 700px;
  max-height: 90vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: white;
  border-radius: 16px;
  -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.1411764706), 0px 11px 15px 0px rgba(0, 0, 0, 0.2), 0px 8px 8px 0px rgba(0, 0, 0, 0.1215686275), 0px 24px 38px 0px rgba(0, 0, 0, 0.1411764706);
          box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.1411764706), 0px 11px 15px 0px rgba(0, 0, 0, 0.2), 0px 8px 8px 0px rgba(0, 0, 0, 0.1215686275), 0px 24px 38px 0px rgba(0, 0, 0, 0.1411764706);
}
.dialog-content .dcb-main {
  padding: 12px 12px 16px;
  margin: 12px 12px 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: auto;
}
.dialog-content .dcb-bottom {
  padding: 16px 24px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid var(--gray5);
}
.dialog-content .dcb-bottom .btns {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.form h3 {
  color: black;
}
.form h3,
.form h5 {
  margin-bottom: 16px;
}
.form .row {
  margin-bottom: 16px;
}
.form h5 ~ .row {
  margin-bottom: 32px;
}
.form .big-selects {
  margin-bottom: 32px;
}
.form .hr {
  margin: 16px 0 32px;
}
.form textarea {
  min-height: 7.5em;
}
.form .form-text {
  font-size: 14px;
  margin: 0 0 32px;
}

.form-advice {
  text-align: center;
  font-size: 12px;
}

.hidden-box {
  display: none;
}

.big-selects {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.big-selects button {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: left;
  padding: 12px 16px;
  background: var(--gray6);
  border: 1px solid transparent;
  border-radius: 10px;
}
.big-selects button span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.big-selects button h6 {
  font-weight: 400;
  color: var(--gray4);
}
.big-selects button p {
  margin: 0;
}
.big-selects button.active,
.big-selects button:active,
.big-selects button:hover {
  border-color: var(--blue4);
}

.rightlog {
  -webkit-transition: right 0.5s;
  transition: right 0.5s;
  position: fixed;
  right: -100%;
  top: 0;
  height: 100%;
  background: white;
  -webkit-box-shadow: -2px 1px 2px 0px rgba(0, 0, 0, 0.1215686275), -6px 0px 6px 0px rgba(0, 0, 0, 0.0705882353);
          box-shadow: -2px 1px 2px 0px rgba(0, 0, 0, 0.1215686275), -6px 0px 6px 0px rgba(0, 0, 0, 0.0705882353);
  width: 100%;
  max-width: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.rightlog .rightlog-top {
  background: #82B0D8;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 10px 10px 24px;
}
.rightlog .rightlog-top h3 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.rightlog .rightlog-top .close span {
  position: relative;
  display: block;
  width: 16px;
}
.rightlog .rightlog-top .close span:before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: white;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
}
.rightlog .rightlog-top .close span:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: white;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
}
.rightlog .rightlog-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: auto;
  padding: 24px 0;
}
.rightlog .rightlog-main .rm-box {
  padding: 0 24px;
}
.rightlog .rightlog-main .label {
  margin-bottom: 16px;
}
.rightlog .rightlog-main .hr {
  margin: 16px 0;
}
.rightlog .rightlog-bottom {
  border-top: 1px solid var(--gray5);
  padding: 12px 24px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1em;
}

.rightlog.active {
  right: 0;
}

.inner:has(.table-scroll) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.inner:has(.table-scroll) .table-scroll {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.flatpickr-months {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flatpickr-current-month {
  font-size: 16px;
}
.flatpickr-current-month input,
.flatpickr-current-month select {
  min-height: auto;
}

.flatpickr-months .flatpickr-prev-month svg, .flatpickr-months .flatpickr-next-month svg {
  width: 12px;
  height: 12px;
}

.flatpickr-months .flatpickr-prev-month, .flatpickr-months .flatpickr-next-month {
  padding: 6px 10px;
}

.flatpickr-day.selected {
  background: var(--blue3);
  border-color: var(--blue3);
}

.flatpickr-months .flatpickr-prev-month:hover svg, .flatpickr-months .flatpickr-next-month:hover svg {
  fill: var(--blue3);
}

.flatpickr-day.today {
  border-color: var(--gray5);
}

input.flatpickr {
  background-image: url("/static/image/comm/icon_calendar.svg");
  background-repeat: no-repeat;
  background-position: center right 1em;
  background-size: 16px auto;
}

.text-count {
  position: relative;
}
.text-count span {
  position: absolute;
  right: 1em;
  bottom: 0.5em;
  font-size: 12px;
}
.text-count span b {
  font-weight: 400;
}

.select2-container {
  font-size: 14px;
  padding: 0 0.75em;
}

.dialog .select2-container {
  min-width: 100%;
}

.select2-container--default .select2-selection--multiple {
  min-height: 43px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.select2-container--default.select2-container--focus .select2-selection--multiple,
.select2-container--default .select2-selection--multiple {
  background: transparent;
  border: 0;
}

.select2-container--open .select2-dropdown--below,
.select2-container--open .select2-dropdown--above {
  border: 1px solid var(--gray5);
  border-radius: 6px;
}

.select2-container .select2-search--inline .select2-search__field {
  min-height: auto;
  display: inline-block;
  border-radius: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  min-width: auto;
  border-right: 1px solid var(--gray5);
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background: var(--bg);
  border-color: var(--gray5);
}

.select:has(.select2) {
  height: auto;
  min-height: 43px;
}

.signin {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  background: white;
  padding-right: 50%;
}
.signin:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: url(../../image/comm/bg_signin.png) no-repeat center;
  background-size: 100% 100%;
  border-radius: 90px 0 0 90px;
}
.signin main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.signin header {
  border-bottom: 0;
}

.signin-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.signin-content .form {
  width: 66%;
  max-width: 440px;
  margin: auto;
  gap: 20px;
}
.signin-content .form h2 {
  margin-bottom: 10px;
}
.signin-content .form:has(.form-notice) h2 {
  margin-bottom: 0;
}
.signin-content .label h6 {
  color: var(--font);
}
.signin-content .btns {
  margin-top: 2em;
}

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 66px;
  padding: 0 36px;
  font-size: 12px;
  color: var(--gray4);
}
footer a {
  color: var(--gray4);
}
footer a:hover {
  color: var(--blue4);
  border-bottom: 1px solid currentColor;
}

.status-check {
  font-size: 12px;
  color: var(--gray4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.5em;
}
.status-check i {
  width: 14px;
  height: 1.5em;
  background: url(../../image/comm/icon_cancel.svg) no-repeat center;
  background-size: 100% auto;
}
.status-check span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.status-check.checked {
  color: var(--green);
}
.status-check.checked i {
  background-image: url(../../image/comm/icon_checked.svg);
}

.status-check.error {
  color: var(--red);
}
.status-check.error i {
  background-image: url(../../image/comm/icon_cancelRed.svg);
}

.error-word {
  font-size: 12px;
  color: var(--red);
}

.notice {
  position: fixed;
  height: 100%;
  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;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 38, 82, 0.24)), color-stop(21.9%, rgba(228, 236, 246, 0.16)), color-stop(46.95%, rgba(255, 255, 255, 0.16)));
  background: linear-gradient(180deg, rgba(0, 38, 82, 0.24) 0%, rgba(228, 236, 246, 0.16) 21.9%, rgba(255, 255, 255, 0.16) 46.95%);
}
.notice header {
  background-color: white;
}
.notice main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.notice-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding-top: 8%;
  text-align: center;
  width: 330px;
  margin: auto;
}
.notice-content .notice-icon {
  height: 42px;
  width: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: white;
  border-radius: 8px;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.1803921569);
          box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.1803921569);
}
.notice-content .notice-icon img {
  width: 22px;
  height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.8;
}
.notice-content p {
  color: var(--gray4);
}
.notice-content .btns {
  width: 100%;
}