@charset "UTF-8";
:root {
  --c-gray-95: #27303e;
  --c-gray-90: #303b4c;
  --c-gray-85: #384559;
  --c-gray-80: #414f66;
  --c-gray-75: #495973;
  --c-gray-70: #516481;
  --c-gray-65: #5a6e8e;
  --c-gray-60: #62789b;
  --c-gray-55: #6f84a4;
  --c-gray-50: #7c8fac;
  --c-gray-45: #8a9ab5;
  --c-gray-40: #97a6bd;
  --c-gray-35: #a4b1c6;
  --c-gray-30: #b1bdce;
  --c-gray-25: #bfc8d6;
  --c-gray-20: #ccd3df;
  --c-gray-15: #d9dfe7;
  --c-gray-10: #E9EAEB;
  --c-gray-05: #F4F4F4;
  --c-gray-03: #F8F8F8;
  --c-black: #1F2631;
  --c-dkgray: var(--c-gray-80);
  --c-gray: var(--c-gray-50);
  --c-ltrgray: var(--c-gray-30);
  --c-ltgray: var(--c-gray-10);
  --c-bg: #F8F9FB;
  --c-text: #1F2631;
  --c-logo: var(--c-gray-90);
  --c-main: #2676F3;
  --c-link: #2676F3;
  --c-ltborder:var(--c-gray-25);
  --c-border: var(--c-gray-35);
  --c-dkborder:var(--c-gray-50);
  --c-blue: #2676F3;
  --c-green: #12B840;
  --c-yellow: #ffa80a;
  --c-purple: #9f32ed;
  --c-red: #F74A4A;
  --c-info: var(--c-blue);
  --c-ok: var(--c-green);
  --c-warn: var(--c-yellow);
  --c-error: var(--c-red);
}

:root {
  --len-sidebar: 12rem;
  --len-contentPadding: 4rem;
  --len-maxContentWidth: calc( 1366px - var(--len-sidebar) - var(--len-contentPadding) );
}

:root {
  --fx-boxShadow: 0px 0px .75rem rgba(0,0,0, .075);
}

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

html {
  height: 100%;
}

body {
  padding-top: 48px;
  height: 100%;
  font-size: 14px;
  line-height: 1.5em;
  font-family: "Segoe UI", "Microsoft Jhenghei", sans-serif;
  letter-spacing: 0.02em;
  color: var(--c-text);
  background-color: var(--c-bg);
}

a {
  color: inherit;
  text-decoration: none;
}

.-a-l, .-a-left {
  text-align: left !important;
}

.-a-r, .-a-right {
  text-align: right !important;
}

.-a-c, .-a-center {
  text-align: center !important;
}

.-c-blue {
  color: var(--c-blue);
}

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

.-c-yellow {
  color: var(--c-yellow);
}

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

.-c-gray {
  color: var(--c-gray);
}

.-c-purple {
  color: var(--c-purple);
}

.-c-info {
  color: var(--c-info);
}

.-c-ok {
  color: var(--c-ok);
}

.-c-warn {
  color: var(--c-warn);
}

.-c-error {
  color: var(--c-error);
}

.-c-blur {
  color: var(--c-gray);
}

.-ci-blue {
  color: var(--c-blue) !important;
}

.-ci-green {
  color: var(--c-green) !important;
}

.-ci-yellow {
  color: var(--c-yellow) !important;
}

.-ci-red {
  color: var(--c-red) !important;
}

.-ci-gray {
  color: var(--c-gray) !important;
}

.-ci-info {
  color: var(--c-info) !important;
}

.-ci-ok {
  color: var(--c-ok) !important;
}

.-ci-warn {
  color: var(--c-warn) !important;
}

.-ci-error {
  color: var(--c-error) !important;
}

.-ci-blur {
  color: var(--c-gray) !important;
}

tr.-v-c > * {
  vertical-align: middle !important;
}

.-hidden {
  display: none !important;
}

.-small {
  font-size: 85%;
  line-height: 1.25em;
}

.-note {
  font-size: 85%;
  line-height: 1.25em;
  color: var(--c-gray);
}

.-notSet {
  color: var(--c-gray);
}

.-code {
  font-family: Consolas, monospace;
}

.-link {
  cursor: pointer;
  color: var(--c-link);
}

.-ulink {
  cursor: pointer;
  color: var(--c-link);
  border-bottom: 1px solid var(--c-link);
}

.-nowrap {
  white-space: nowrap;
}

.-show {
  display: initial;
}

.-fmt-price::before {
  content: "$";
  margin-right: 0.05em;
}

.-hilight-invalid {
  color: var(--c-error);
}

input[readonly] {
  pointer-events: none;
}

.icon {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  line-height: 1.5em;
}
.icon::before {
  display: block;
  width: inherit;
  text-align: center;
  line-height: inherit;
}

em {
  font-weight: bold;
  color: var(--c-main);
}

.mSection {
  margin: 1em 0;
}
.mSection + .mSection {
  margin: 2em 0;
}
.mSection > h2 {
  display: inline-block;
  border-bottom: 2px solid var(--c-main);
}

.mWrapperSection {
  padding: 1em 0;
}

.mSection.-narrow,
.mWrapperSection.-narrow {
  max-width: 704px;
}
.mSection.-medium,
.mWrapperSection.-medium {
  max-width: 1110px;
}
.mSection + .mWrapperSection,
.mWrapperSection + .mWrapperSection {
  border-top: 1px solid var(--c-border);
}
.mSection .captain,
.mWrapperSection .captain {
  display: flex;
  align-items: center;
}
.mSection .captain h2,
.mWrapperSection .captain h2 {
  flex: 1 1 auto;
}
.mSection .captain h3,
.mWrapperSection .captain h3 {
  flex: 1 1 auto;
}
.mSection .captain .fnBefore,
.mWrapperSection .captain .fnBefore {
  flex: 0 0 auto;
  margin-right: 0.5em;
}
.mSection .captain .fn,
.mWrapperSection .captain .fn {
  flex: 0 0 auto;
}

#musTopbar {
  position: fixed;
  z-index: 1200;
  display: flex;
  left: 0;
  top: 0;
  right: 0;
  height: 48px;
  color: #fff;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: var(--c-dkgray);
}
#musTopbar > .icon {
  flex: 0 0 48px;
  display: block;
  margin-right: 8px;
  font-size: 20px;
  line-height: 48px;
  text-align: center;
  background-color: var(--c-main);
  background-size: contain;
}
#musTopbar .backToSite {
  flex: 0 0 auto;
  padding: 0 8px;
  font-size: 20px;
  line-height: 48px;
}
#musTopbar .title {
  flex: 0 0 auto;
  padding: 0 8px;
  font-size: 20px;
  line-height: 48px;
}
#musTopbar .title::after {
  display: inline-block;
  position: relative;
  margin-left: 8px;
  font-size: 14px;
  vertical-align: middle;
  top: -3px;
  padding: 0 4px;
  line-height: 22px;
  padding-bottom: 1px;
  border-radius: 4px;
  color: #000;
  background: #fff;
}
#musTopbar .backToSite + .title {
  margin-left: 16px;
  padding-left: 16px;
  border-left: solid 1px rgba(255, 255, 255, 0.25);
}
#musTopbar .centerPane {
  flex: 1 1 auto;
}
#musTopbar .cilentInfoPane {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  padding-right: 16px;
  font-size: 16px;
  line-height: 24px;
}
#musTopbar .statusPane {
  flex: 0 0 auto;
  display: flex;
  padding-right: 8px;
}
#musTopbar .statusPane .statusItem {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  min-width: 32px;
  margin-top: 8px;
  padding: 0 7px;
  height: 32px;
  line-height: 32px;
  border-radius: 100px;
}
#musTopbar .statusPane .statusItem.-bordered {
  line-height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
}
#musTopbar .statusPane .statusItem + .statusItem {
  margin-left: 8px;
}
#musTopbar .statusPane .statusItem .icon {
  flex: 0 0 32px;
  text-align: center;
  line-height: 32px;
}
#musTopbar .statusPane .indicatorStatusItem {
  padding-left: 27px;
}
#musTopbar .statusPane .indicatorStatusItem::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: var(--c-gray-50);
}
#musTopbar .statusPane .indicatorStatusItem[mus-status=OK]::before {
  background: var(--c-green);
  border: solid 1px rgba(255, 255, 255, 0.02);
  box-shadow: 0px 0px 4px var(--c-green);
}
#musTopbar .statusPane .indicatorStatusItem[mus-status=WARN]::before {
  background: var(--c-warn);
  border: solid 1px rgba(255, 255, 255, 0.02);
  box-shadow: 0px 0px 4px var(--c-warn);
}
#musTopbar .statusPane .iconStatusItem {
  width: 32px;
  padding: 0;
}
#musTopbar .statusPane .iconStatusItem:hover {
  background-color: rgba(0, 0, 0, 0.25);
}
#musTopbar .statusPane .iconStatusItem .notif {
  position: absolute;
  display: none;
  top: 1px;
  right: 1px;
  width: 9px;
  height: 9px;
  overflow: hidden;
  border-radius: 100px;
  color: #fff;
  background-color: var(--c-warn);
}
#musTopbar .statusPane .iconStatusItem.-hasNotif .notif {
  display: block;
}
#musTopbar .statusPane .userStatusItem {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  width: 128px;
  margin-top: 8px;
  height: 32px;
  line-height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  cursor: pointer;
}
#musTopbar .statusPane .userStatusItem:hover {
  background-color: rgba(0, 0, 0, 0.25);
}
#musTopbar .statusPane .userStatusItem:hover .userMenu {
  top: 0;
}
#musTopbar .statusPane .userStatusItem .icon {
  flex: 0 0 30px;
  text-align: center;
  line-height: 30px;
}
#musTopbar .statusPane .userStatusItem .userName {
  flex: 1 1 auto;
  padding: 0 8px 0 0;
  text-align: center;
}
#musTopbar .statusPane .userStatusItem .userMenu {
  position: absolute;
  right: 0;
  top: -100vh;
  width: 192px;
  padding: 0;
  color: var(--c-text);
  background-color: #fff;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
}
#musTopbar .statusPane .userStatusItem .userMenu .account {
  display: flex;
  margin-bottom: 0;
  padding: 12px;
  align-items: center;
  background-color: var(--c-ltgray);
  border-bottom: 1px solid var(--c-border);
}
#musTopbar .statusPane .userStatusItem .userMenu .account .c1 {
  flex: 0 0 48px;
  font-size: 20px;
  line-height: 46px;
  text-align: center;
  border-radius: 100%;
  border: 1px solid var(--c-border);
}
#musTopbar .statusPane .userStatusItem .userMenu .account .c2 {
  flex: 1 1 auto;
  padding-left: 8px;
  line-height: 20px;
}
#musTopbar .statusPane .userStatusItem .userMenu .menuGroup {
  padding: 8px;
}
#musTopbar .statusPane .userStatusItem .userMenu .menuGroup + .menuGroup {
  border-top: 1px solid var(--c-border);
}
#musTopbar .statusPane .userStatusItem .userMenu a {
  display: block;
  padding: 0 8px;
  line-height: 32px;
}
#musTopbar .statusPane .userStatusItem .userMenu a::before {
  display: inline-block;
  width: 1.5em;
}
#musTopbar .statusPane .userStatusItem .userMenu a:hover {
  background-color: var(--c-ltgray);
}
#musTopbar .statusPane .userStatusItem .userMenu a + a {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
body.-isLocal #musTopbar {
  background-color: #573838;
}
body.-isLocal #musTopbar > .icon {
  background-color: var(--c-red);
}
body.-isLocal #musTopbar .title::after {
  content: "開發";
  color: #fff;
  background-color: var(--c-red);
}

body.-isBeta #musTopbar {
  background-color: #382f1e;
}
body.-isBeta #musTopbar > .icon {
  background-color: var(--c-yellow);
}
body.-isBeta #musTopbar .title::after {
  content: "測試";
  color: #fff;
  background-color: var(--c-yellow);
}

#musSidebar {
  position: fixed;
  z-index: 1100;
  left: 0;
  top: 48px;
  width: 192px;
  bottom: 0;
  color: var(--c-dkgray);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-right: 1px solid var(--c-border);
}
#musSidebar::-webkit-scrollbar {
  width: 8px;
}
#musSidebar::-webkit-scrollbar-thumb {
  background-color: var(--c-gray-30);
  border: 2px solid var(--c-bg);
  border-top: 0;
  border-bottom: 0;
}
#musSidebar .menuPane .menuGroup {
  padding: 8px 0 7px;
}
#musSidebar .menuPane .menuGroup a {
  display: block;
}
#musSidebar .menuPane .menuGroup a:hover {
  color: var(--c-main);
}
#musSidebar .menuPane .menuGroup + .menuGroup {
  border-top: 1px solid var(--c-border);
}
#musSidebar .menuPane .menuGroup .menuItem {
  position: relative;
  margin: 8px 0;
  padding: 0 16px;
  font-size: 13px;
  line-height: 24px;
}
#musSidebar .menuPane .menuGroup .menuItem .submenu {
  display: none;
  margin: 4px 0;
  padding-left: 12px;
  padding-bottom: 4px;
  font-size: 12px;
}
#musSidebar .menuPane .menuGroup .menuItem .submenu > a::before {
  content: "-";
  display: inline-block;
  width: 1em;
}
#musSidebar .menuPane .menuGroup .menuItem .submenu > a.-active {
  color: var(--c-main);
}
#musSidebar .menuPane .menuGroup .menuItem.-active {
  background: #fff;
}
#musSidebar .menuPane .menuGroup .menuItem.-active::before {
  content: "";
  position: absolute;
  right: -1px;
  top: 0;
  height: 100%;
  border-left: 4px solid var(--c-main);
}
#musSidebar .menuPane .menuGroup .menuItem.-active > a {
  color: var(--c-main);
}
#musSidebar .menuPane .menuGroup .menuItem.-active .submenu {
  display: block;
}
#musSidebar .menuPane .menuGroup.-large .groupLabel {
  margin-top: -0.5em;
  padding: 0 12px;
  font-size: 12px;
  line-height: 24px;
  opacity: 0.75;
}
#musSidebar .menuPane .menuGroup.-large .menuItem {
  padding: 0 8px;
  font-size: 16px;
  line-height: 32px;
}
#musSidebar .menuPane .menuGroup.-large .menuItem > a {
  line-height: 32px;
}
#musSidebar .menuPane .menuGroup.-large .menuItem > a::before {
  display: inline-block;
  width: 32px;
  text-align: center;
}
#musSidebar .menuPane .menuGroup.-large .menuItem .submenu {
  padding-left: 32px;
}
#musSidebar .menuPane .menuGroup.-large[mus-menugroup=MGE] .menuItem.-active::before {
  border-left: 4px solid var(--c-red);
}
#musSidebar .menuPane .menuGroup.-large[mus-menugroup=MGE] .menuItem.-active > a {
  color: var(--c-red);
}

form .requiredLabel {
  margin-left: 4px;
  color: var(--c-red);
}
form .requiredLabel::before {
  content: "*";
}

button.mButton {
  border: 0;
}

.mButton {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding: 0 12px;
  font-size: 14px;
  line-height: 32px;
  text-align: center;
  border-radius: 2px;
  color: #fff;
  background-color: var(--c-main);
  cursor: pointer;
  white-space: nowrap;
}
.mButton > span {
  display: inline-block;
}
.mButton > .icon {
  display: inline-block;
  vertical-align: top;
  font-size: 14px;
  line-height: 32px;
  width: 24px;
  text-align: center;
  margin-right: 4px;
}
.mButton > .icon:first-child {
  margin-left: -8px;
  margin-right: -8px;
}
.mButton > .icon:first-child + * {
  margin-left: 8px;
}
.mButton.-s {
  padding: 0 8px;
  font-size: 12px;
  line-height: 24px;
}
.mButton.-s > .icon {
  font-size: 12px;
  line-height: 24px;
  width: 16px;
}
.mButton.-s > .icon:first-child {
  margin-left: -4px;
  margin-right: -4px;
}
.mButton.-s > .icon:first-child + * {
  margin-left: 4px;
}
.mButton.-xs {
  padding: 0 8px;
  font-size: 11px;
  line-height: 20px;
}
.mButton.-c-main, .mButton.-c-info, .mButton.-c-blue, .mButton.-c-b {
  background-color: var(--c-main);
}
.mButton.-c-warn, .mButton.-c-yellow, .mButton.-c-y {
  background-color: var(--c-warn);
}
.mButton.-c-error, .mButton.-c-red, .mButton.-c-r {
  background-color: var(--c-error);
}
.mButton.-c-blur, .mButton.-c-gray {
  background-color: var(--c-gray);
}
.mButton.-c-ok, .mButton.-c-green, .mButton.-c-g {
  background-color: var(--c-ok);
}
.mButton.-fullWidth, .mButton.-fw {
  display: block;
}
.mButton.-toggle {
  background: var(--c-main);
}
.mButton.-toggle .off {
  display: none;
}
.mButton.-toggle[mus-status="0"] {
  background: var(--c-gray);
}
.mButton.-toggle[mus-status="0"] .on {
  display: none;
}
.mButton.-toggle[mus-status="0"] .off {
  display: initial;
}
.mButton .display {
  position: absolute;
  right: -4px;
  top: -4px;
  width: 32px;
  height: 32px;
  font-size: 16px;
  font-weight: bold;
  line-height: 28px;
  text-align: center;
  zoom: 0.5;
  background-color: #f00;
  border: 2px solid #fff;
  border-radius: 100%;
}
.mButton[data-num="0"] .display {
  display: none;
}

.mButtonSeparator {
  display: inline-block;
  margin: 0 0 0 8px;
  width: 1px;
  height: 32px;
  border-left: 1px solid var(--c-border);
}

table {
  margin: 0 -0.125em;
}

.mPill {
  display: inline-block;
  padding: 0 0.625em;
  font-size: inherit;
  height: 2em;
  line-height: 2em;
  border-radius: 100px;
  white-space: nowrap;
}
.mPill.-bordered {
  border: 1px solid var(--c-border);
}
.mPill.-c-main, .mPill.-c-info, .mPill.-c-blue, .mPill.-c-b {
  color: var(--c-main);
  border-color: var(--c-main);
}
.mPill.-c-warn, .mPill.-c-yellow, .mPill.-c-y {
  color: var(--c-warn);
  border-color: var(--c-warn);
}
.mPill.-c-error, .mPill.-c-red, .mPill.-c-r {
  color: var(--c-error);
  border-color: var(--c-error);
}
.mPill.-c-blur, .mPill.-c-gray {
  color: var(--c-gray);
  border-color: var(--c-gray);
}
.mPill.-c-ok, .mPill.-c-green, .mPill.-c-g {
  color: var(--c-ok);
  border-color: var(--c-ok);
}
.mPill.-active {
  color: #fff;
  background-color: var(--c-gray-80);
}
.mPill.-active.-c-main, .mPill.-active.-c-info, .mPill.-active.-c-blue, .mPill.-active.-c-b {
  background-color: var(--c-main);
}
.mPill.-active.-c-warn, .mPill.-active.-c-yellow, .mPill.-active.-c-y {
  background-color: var(--c-warn);
}
.mPill.-active.-c-error, .mPill.-active.-c-red, .mPill.-active.-c-r {
  background-color: var(--c-error);
}
.mPill.-active.-c-blur, .mPill.-active.-c-gray {
  background-color: var(--c-gray);
}
.mPill.-active.-c-ok, .mPill.-active.-c-green, .mPill.-active.-c-g {
  background-color: var(--c-ok);
}

.mStatus {
  display: inline-block;
  padding: 0 7px;
  font-size: 14px;
  line-height: 30px;
  border-radius: 100px;
  text-align: center;
  min-width: calc(3em + 14px);
  border: 1px solid var(--c-border);
}

.mSelectablePillGroup {
  display: flex;
  flex-wrap: wrap;
}
.mSelectablePillGroup .mSelectablePill + .mSelectablePill {
  margin-left: 8px;
}

.mSelectablePill {
  padding: 0;
  flex: 0 0 auto;
  position: relative;
}
.mSelectablePill input[type=radio],
.mSelectablePill input[type=checkbox] {
  margin: 0;
  padding: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.mSelectablePill span {
  display: block;
  padding: 0 11px;
  line-height: 30px;
  background-color: #fff;
  border: 1px solid var(--c-border);
  border-radius: 100px;
}
.mSelectablePill input[type=radio]:checked ~ span,
.mSelectablePill input[type=checkbox]:checked ~ span {
  color: #fff;
  background: var(--c-main);
  border: 1px solid var(--c-main);
}
.mSelectablePill input[type=checkbox] ~ span::before {
  content: "\f111";
  font-family: "Font Awesome 6 Pro";
  display: inline-block;
  vertical-align: top;
  width: 1.5em;
}
.mSelectablePill input[type=checkbox]:checked ~ span::before {
  content: "\f058";
}

.mFieldGroup {
  margin: 12px 0;
  padding: 0 16px;
  border: 1px solid var(--c-border);
}
.mFieldGroup .titlebar {
  display: flex;
  align-items: center;
  margin: 8px 0;
  font-weight: bold;
}
.mFieldGroup .titlebar span {
  flex: 1 1 auto;
  font-size: 14px;
  line-height: 32px;
}

.mRow {
  margin: 12px 0;
  font-size: 14px;
  line-height: 32px;
}

.mField {
  margin: 12px 0;
}
.mField.-display, .mField.-checkbox {
  margin-top: 8px;
  margin-bottom: 8px;
}
.mField .mField {
  margin: 0;
}
.mField > .label {
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 14px;
  font-weight: bold;
  line-height: 24px;
}
.mField.-inline {
  display: flex;
}
.mField.-inline > .label {
  flex: 0 0 3em;
}
.mField.-inline .label + * {
  flex: 1 1 auto;
}
.mField.-inline.-w-1 > .label {
  flex: 0 0 2em;
}
.mField.-inline.-w-2 > .label {
  flex: 0 0 3em;
}
.mField.-inline.-w-3 > .label {
  flex: 0 0 4em;
}
.mField.-inline.-w-4 > .label {
  flex: 0 0 5em;
}
.mField.-inline.-w-5 > .label {
  flex: 0 0 6em;
}
.mField.-inline.-w-6 > .label {
  flex: 0 0 7em;
}
.mField.-inline.-w-7 > .label {
  flex: 0 0 8em;
}
.mField.-inline.-w-8 > .label {
  flex: 0 0 9em;
}
.mField.-buttons {
  display: flex;
  justify-content: flex-end;
}
.mField.-buttons > * + * {
  margin-left: 8px;
}
.mField.-buttons.-a-c {
  justify-content: center;
}
.mField.-buttons .spacer {
  flex: 1 1 auto;
}

.mField.-display:first-child, .mField.-checkbox:first-child {
  margin-top: 16px;
}
.mField.-display:last-child, .mField.-checkbox:last-child {
  margin-bottom: 16px;
}

.mTextLabel {
  padding: 4px 0;
  font-size: 15px;
  line-height: 24px;
}

.mCheckItem {
  display: inline-block;
  line-height: 2rem;
}
.mCheckItem + .mCheckItem {
  margin-left: 1rem;
}
.mCheckItem .mCheck {
  margin: 0 0.5em 0 0;
  width: 1.25em;
  height: 1.25em;
  vertical-align: middle;
}
.mCheckItem span {
  display: inline-block;
  vertical-align: middle;
  line-height: 2rem;
}

div.mInput {
  font-size: 14px;
  line-height: 15px;
  padding: 7px;
  border: 1px solid var(--c-border);
}
div.mInput[disabled] {
  background-color: var(--c-gray-90);
}

input.mInput {
  font-size: 14px;
  line-height: 15px;
  padding: 0 7px;
  height: 32px;
  vertical-align: middle;
  border: 1px solid var(--c-border);
}
input.mInput:focus {
  outline: none;
  border: 1px solid var(--c-main);
}
input.mInput.-fullWidth, input.mInput.-fw {
  width: 100%;
}
input.mInput[type=number] {
  padding-right: 0 !important;
}
input.mInput[readonly] {
  color: var(--c-gray-50);
  background-color: var(--c-gray-10);
}

select.mInput,
.mSelect {
  font-size: 14px;
  line-height: 15px;
  padding: 0 0 0 3px;
  height: 32px;
  vertical-align: middle;
  border: 1px solid var(--c-border);
}
select.mInput:focus,
.mSelect:focus {
  outline: none;
  border: 1px solid var(--c-main);
}
select.mInput.-fullWidth, select.mInput.-fw,
.mSelect.-fullWidth,
.mSelect.-fw {
  width: 100%;
}

textarea.mInput {
  vertical-align: top;
  font-size: 14px;
  line-height: 25px;
  padding: 3px 7px;
  height: 32px;
  border: 1px solid var(--c-border);
}
textarea.mInput:focus {
  outline: none;
  border: 1px solid var(--c-main);
}
textarea.mInput.-fullWidth, textarea.mInput.-fw {
  width: 100%;
}

.mInputHint {
  position: relative;
  width: 0;
}
.mInputHint .text {
  position: absolute;
  left: 0;
  bottom: 100%;
  height: 32px;
  white-space: nowrap;
}

.mInlineCheckbox {
  display: flex;
}
.mInlineCheckbox > * {
  margin-right: 16px;
}

.mCheckbox {
  display: flex;
  align-items: center;
  line-height: 32px;
}
.mCheckbox input {
  flex: 0 0 16px;
  margin: 0 8px 0 0;
  vertical-align: middle;
}
.mCheckbox label {
  flex: 1 1 auto;
  vertical-align: middle;
  line-height: 32px;
}
.mCheckbox span {
  display: inline-block;
  vertical-align: middle;
}

.mSelectPill {
  display: flex;
  align-items: center;
  line-height: 32px;
}
.mSelectPill label {
  display: flex;
  flex: 1 1 auto;
  vertical-align: top;
  line-height: 32px;
}
.mSelectPill input {
  flex: 0 0 16px;
  margin: 0 8px 0 0;
  vertical-align: middle;
}
.mSelectPill span {
  flex: 0 0 auto;
  display: inline-block;
  vertical-align: middle;
}

.mRoundBlock {
  border: 1px solid var(--c-border);
  border-radius: 8px;
}

.mFlex {
  display: flex;
  margin: 0 -1em;
}

.mFlexBlock-X-1 {
  flex: 1 1 10%;
  padding: 0 1em;
}

.mFlexBlock-3-1 {
  flex: 0 0 33.33%;
  padding: 0 1em;
}

.mStick {
  padding: 0.125em 0.375em;
  border-radius: 10em;
}

.mPopupWidget,
.mDialogWidget {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.mPopupWidget .popup,
.mDialogWidget .popup {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 640px;
  min-height: 480px;
  background: #fff;
  box-shadow: var(--fx-boxShadow);
}
.mPopupWidget .popup .title,
.mDialogWidget .popup .title {
  flex: 0 0 auto;
  display: flex;
  padding: 8px;
  border-bottom: 1px solid var(--c-border);
}
.mPopupWidget .popup .title .text,
.mDialogWidget .popup .title .text {
  flex: 1 1 auto;
  font-size: 16px;
  line-height: 32px;
}
.mPopupWidget .popup .title .fn,
.mDialogWidget .popup .title .fn {
  flex: 0 0 32px;
  line-height: 32px;
  text-align: center;
  cursor: pointer;
}
.mPopupWidget .popup .body,
.mDialogWidget .popup .body {
  flex: 1 1 auto;
  padding: 0 24px;
}
.mPopupWidget .popup .buttons,
.mDialogWidget .popup .buttons {
  flex: 0 0 auto;
  display: flex;
  padding: 16px;
  justify-content: flex-end;
  align-items: center;
  border-top: 1px solid var(--c-border);
}
.mPopupWidget .popup .buttons > * + *,
.mDialogWidget .popup .buttons > * + * {
  margin-left: 8px;
}
.mPopupWidget .popup .overlay,
.mDialogWidget .popup .overlay {
  position: absolute;
  display: none;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
}
.mPopupWidget .popup .overlay.-active,
.mDialogWidget .popup .overlay.-active {
  display: flex;
}
.mPopupWidget.-s .popup,
.mDialogWidget.-s .popup {
  width: 360px;
  min-height: 140px;
}
.mPopupWidget.-l .popup,
.mDialogWidget.-l .popup {
  width: 960px;
  min-height: 640px;
}

.mDialogWidget .popup .body {
  flex: 1 1 auto;
  padding: 16px 24px;
}
.mDialogWidget .popup .buttons {
  padding-top: 0;
  border-top: none;
}

.mInpageDialog {
  margin: 64px auto;
  width: 320px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--c-border);
}
.mInpageDialog .title {
  display: flex;
}
.mInpageDialog .title .icon {
  flex: 0 0 32px;
  margin-right: 8px;
  font-size: 16px;
  line-height: 32px;
  color: #fff;
  background-color: var(--c-main);
  border-radius: 100%;
}
.mInpageDialog .title .text {
  font-size: 16px;
  line-height: 32px;
}
.mInpageDialog .message {
  margin: 16px 0 !important;
}
.mInpageDialog .body {
  margin: 32px 16px;
}
.mInpageDialog .buttons {
  margin: 16px;
}

.mTongue {
  position: fixed;
  z-index: 100000;
  left: 50%;
  top: -4em;
  min-width: 360px;
  padding: 0.5em;
  color: var(--c-text);
  background-color: #fff;
  transform: translate(-50%, 0);
  border-radius: 2em;
  box-shadow: var(--fx-boxShadow);
  transition: top 0.15s ease-in;
}
.mTongue.-c-info {
  background-color: var(--c-info);
}
.mTongue.-c-warn {
  background-color: var(--c-warn);
}
.mTongue.-active {
  top: 0.5em;
  transition: top 0.25s ease-out;
}
.mTongue .text {
  font-size: 1em;
  line-height: 1.5em;
  text-align: center;
}

.mListBox {
  width: 672px;
  height: 360px;
  overflow-y: auto;
  border: 1px solid var(--c-border);
}
.mListBox .title {
  display: flex;
  padding: 7px;
  align-items: center;
  border-bottom: 1px solid var(--c-border);
}
.mListBox .title .label {
  flex: 1 1 auto;
}
.mListBox .title .fn {
  flex: 0 0 auto;
}
.mListBox .body {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  padding: 7px;
}
.mListBox .body .listItem {
  flex: 0 0 calc(50% - 8px);
  display: flex;
  align-items: center;
  margin: 4px;
  padding: 3px;
  border: 1px solid var(--c-border);
}
.mListBox .body .listItem .label {
  flex: 1 1 auto;
  margin-right: 8px;
}
.mListBox .body .listItem .fn {
  flex: 0 0 auto;
}

.mFormUploader {
  display: flex;
  padding: 8px 4px;
  border-top: 1px solid var(--c-ltborder);
  border-bottom: 1px solid var(--c-ltborder);
}
.mFormUploader .item {
  position: relative;
  flex: 0 0 130px;
  height: 130px;
  margin: 7px;
  border: 1px solid var(--c-border);
  background: #fff;
}
.mFormUploader .item .thumb {
  position: absolute;
  width: 100%;
  height: 100%;
}
.mFormUploader .item .msg {
  position: absolute;
  width: 100%;
  top: 50%;
  height: 50%;
  transform: translate(-50%, -50%);
}
.mFormUploader .item input[type=file] {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.mFormUploader .item .close {
  position: absolute;
  right: 0;
  top: 0;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.05);
}

.mInplaceEditorWidget .editor {
  display: none;
}
.mInplaceEditorWidget .editor textarea {
  display: block;
  width: 100%;
}
.mInplaceEditorWidget .buttons {
  margin-top: 0.5rem;
  text-align: right;
}
.mInplaceEditorWidget[mus-mode=EDIT] .display {
  display: none;
}
.mInplaceEditorWidget[mus-mode=EDIT] .editor {
  display: block;
}

.mTable {
  margin: 1em 0;
  width: 100%;
  font-size: 14px;
  line-height: 24px;
  border-radius: 16px;
  border-collapse: collapse;
}
.mTable th, .mTable td {
  padding: 8px;
}
.mTable th.-leftLine {
  border-left: 1px solid var(--c-border);
}
.mTable td.-leftLine {
  border-left: 1px solid var(--c-ltborder);
}
.mTable.-narrow {
  max-width: 704px;
}
.mTable.-medium {
  max-width: 1110px;
}
.mTable.-full {
  width: auto;
}
.mTable thead {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 1px 0 var(--c-border);
}
.mTable thead tr {
  background-color: var(--c-ltgray);
}
.mTable thead th {
  padding: 4px 8px;
  text-align: left;
}
.mTable tbody tr {
  border-top: 1px solid var(--c-ltborder);
}
.mTable tbody tr.-selected {
  background: #fff;
}
.mTable tbody th {
  font-weight: bold;
  text-align: left;
}
.mTable tbody td.-fn > * + * {
  margin-left: 4px;
}
.mTable tfoot tr {
  border-top: 1px solid var(--c-ltborder);
}
.mTable tfoot td {
  padding: 4px 8px;
  font-size: 12px;
  text-align: center;
  color: var(--c-gray);
}
.mTable tr.buttonsRow {
  border-top: 1px solid var(--c-border);
}
.mTable tr.buttonsRow td {
  padding: 8px 4px;
}
.mTable tr.buttonsRow .buttons {
  display: flex;
  justify-content: flex-end;
}
.mTable tr.buttonsRow .buttons > * {
  margin: 0 4px;
}
.mTable tr.buttonsRow .buttons .spacer {
  flex: 1 1 auto;
}
.mTable tr.-deleted td {
  position: relative;
  color: var(--c-gray) !important;
}
.mTable tr.-deleted td::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  border-top: 1px solid var(--c-gray);
  opacity: 0.5;
}
.mTable.-s th, .mTable.-s td {
  padding: 4px 8px;
}
.mTable .-noData {
  text-align: center;
  color: var(--c-gray);
}
.mTable .-emptyResult {
  text-align: center;
  font-size: 16px;
  line-height: 64px;
  color: var(--c-gray);
}

.mSubListTable thead {
  border-bottom: 2px solid var(--c-border);
}
.mSubListTable thead tr {
  background-color: transparent;
}

.mPropTable {
  width: 100%;
  font-size: 14px;
  line-height: 24px;
  border-radius: 16px;
  border-collapse: collapse;
}
.mPropTable th, .mPropTable td {
  padding: 8px;
}
.mPropTable.-narrow {
  max-width: 704px;
}
.mPropTable.-medium {
  max-width: 1110px;
}
.mPropTable.-full {
  width: auto;
}
.mPropTable thead {
  border-bottom: 2px solid var(--c-border);
}
.mPropTable thead th {
  padding: 4px 8px;
  text-align: left;
}
.mPropTable tbody tr {
  border-top: 1px solid var(--c-ltborder);
  border-bottom: 1px solid var(--c-ltborder);
}
.mPropTable tbody th {
  font-weight: bold;
  text-align: left;
}
.mPropTable tbody td.-buttons {
  text-align: right;
}
.mPropTable tfoot td {
  padding: 8px 8px;
  font-size: 12px;
  text-align: center;
  color: var(--c-gray);
}
.mPropTable tr.buttonsRow {
  border-top: 1px solid var(--c-border);
}
.mPropTable tr.buttonsRow td {
  padding: 8px 4px;
}
.mPropTable tr.buttonsRow .buttons {
  display: flex;
  justify-content: flex-end;
}
.mPropTable tr.buttonsRow .buttons > * {
  margin: 0 4px;
}
.mPropTable tr.buttonsRow .buttons .spacer {
  flex: 1 1 auto;
}
.mPropTable.-s th, .mPropTable.-s td {
  padding: 4px 8px;
}

.mSummaryTable td {
  padding: 8px 0;
}
.mSummaryTable td + td {
  border-left: 1px solid var(--c-ltborder);
}
.mSummaryTable h4 {
  text-align: center;
  font-size: 14px;
  line-height: 150%;
  font-weight: bold;
}
.mSummaryTable .value {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  line-height: 200%;
}
.mSummaryTable .value.-price::before {
  content: "$";
}
.mSummaryTable .value.-ratio::after {
  content: "%";
}

.mProgressTable {
  margin: 1em 0;
  text-align: center;
}
.mProgressTable td {
  padding: 0.5em 0;
  border-top: 4px solid var(--c-ltborder);
  text-align: center;
}
.mProgressTable .label {
  text-align: center;
  font-size: 14px;
  line-height: 125%;
  font-weight: bold;
}
.mProgressTable .time {
  font-size: 13px;
  line-height: 125%;
}
.mProgressTable .-placeholder {
  color: var(--c-gray);
}

.mCartTable {
  margin: 0 auto;
  width: 48rem;
  max-width: 100%;
  font-size: 14px;
  line-height: 24px;
}
.mCartTable th, .mCartTable td {
  padding: 8px 4px;
}
.mCartTable thead {
  border-bottom: 2px solid var(--c-border);
}
.mCartTable thead th {
  padding: 4px 8px;
  text-align: left;
}
.mCartTable tbody tr {
  border-top: 1px solid var(--c-ltborder);
  border-bottom: 1px solid var(--c-ltborder);
}
.mCartTable tbody tr.buttonsRow {
  border-bottom: none;
  border-top: 1px solid var(--c-border);
}
.mCartTable tbody tr.buttonsRow td {
  padding: 8px 4px;
}
.mCartTable tbody tr.buttonsRow .buttons {
  display: flex;
  justify-content: flex-end;
}
.mCartTable tbody tr.buttonsRow .buttons > * {
  margin: 0 4px;
}
.mCartTable tbody tr.buttonsRow .buttons .spacer {
  flex: 1 1 auto;
}
.mCartTable tbody th {
  font-weight: bold;
  text-align: left;
}
.mCartTable tbody td.-fn > * + * {
  margin-left: 4px;
}
.mCartTable tfoot td {
  padding: 4px 8px;
  font-size: 12px;
  text-align: center;
  color: var(--c-gray);
}
.mCartTable .-noData {
  text-align: center;
  color: var(--c-gray);
}
.mCartTable .-emptyResult {
  text-align: center;
  font-size: 16px;
  line-height: 64px;
  color: var(--c-gray);
}

.mCartTableButtons {
  margin: 2rem 0;
}

.-required {
  position: relative;
}
.-required::after {
  content: "*";
  position: absolute;
  font-size: 80%;
  bottom: 40%;
  color: #f00;
}

table tr.-disabled > * {
  color: var(--c-ltgray);
}

body[mus-pageType=DEFAULT] .musPage {
  left: 192px;
}

body[mus-pageType=IMMERSIVE] .musPage {
  left: 0;
}

body[mus-pageType=NO_LOGIN] .musPage {
  left: 0;
}

.musPage {
  position: absolute;
  top: 48px;
  right: 0;
  bottom: 0;
}
.musPage[mus-tpl-hasFloatIndex="1"] .body {
  left: 240px;
}
.musPage[mus-tpl-hasFloatIndex="1"] .filter {
  left: 240px;
}
.musPage .floatIndex {
  position: fixed;
  margin-left: 32px;
  width: 192px;
  top: 128px;
  bottom: 64px;
  padding-right: 32px;
  overflow-y: auto;
  border-right: 1px solid var(--c-ltborder);
}
.musPage .floatIndex::-webkit-scrollbar {
  width: 8px;
}
.musPage .floatIndex::-webkit-scrollbar-thumb {
  background-color: var(--c-gray-30);
  border: 2px solid var(--c-bg);
  border-top: 0;
  border-bottom: 0;
}
.musPage .floatIndex ~ .body {
  padding-left: 0;
}
.musPage .treeFloat .indexGroup {
  padding: 8px 0;
}
.musPage .treeFloat .indexGroup a {
  display: block;
  margin: 8px 0;
  font-size: 14px;
  line-height: 32px;
}
.musPage .treeFloat .indexGroup a.-active {
  color: var(--c-main);
}
.musPage .treeFloat .indexGroup a i {
  display: inline-block;
  width: 32px;
  margin-right: 8px;
  text-align: center;
}
.musPage .treeFloat .indexGroup + .indexGroup {
  border-top: 1px solid var(--c-ltborder);
}
.musPage > .titlebar {
  position: absolute;
  display: flex;
  justify-items: flex-start;
  left: 32px;
  top: 0;
  right: 32px;
  height: 64px;
  padding: 16px 0 0;
  background-color: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.musPage > .titlebar .captain {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  font-size: 20px;
  height: 32px;
  line-height: 20px;
}
.musPage > .titlebar .captain::before {
  display: inline-block;
  width: 32px;
  line-height: 32px;
  text-align: center;
}
.musPage > .titlebar .captain > * {
  padding: 0 12px;
}
.musPage > .titlebar .captain > * + * {
  border-left: 2px solid var(--c-gray);
}
.musPage > .titlebar .captain b {
  font-weight: bold;
}
.musPage > .titlebar .captain > a b {
  position: relative;
  display: block;
}
.musPage > .titlebar .captain > a b::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 100%;
  border-bottom: 2px dotted var(--c-border);
}
.musPage > .titlebar .captain > a b:hover {
  color: var(--c-main);
}
.musPage > .titlebar .captain > a b:hover::after {
  border-bottom: 2px dotted var(--c-main);
}
.musPage > .titlebar .pageTab {
  flex: 1 1 auto;
  margin-left: 2em;
  display: flex;
  justify-items: center;
  justify-content: center;
  align-items: center;
  margin-left: 16px;
  height: 32px;
}
.musPage > .titlebar .pageShortcut {
  flex: 0 0 auto;
  margin-left: 2em;
  text-align: right;
  justify-items: flex-end;
}
.musPage > .filter {
  position: absolute;
  left: 32px;
  top: 64px;
  height: 64px;
  right: 32px;
  background-color: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
}
.musPage > .filter[mus-filterline="2"] {
  height: 96px;
}
.musPage > .filter[mus-filterline="2"] .filterLine {
  height: 48px;
}
.musPage > .filter[mus-filterline="2"] ~ .body {
  top: 160px;
}
.musPage > .filter .filterLine {
  display: flex;
  align-items: center;
  height: 64px;
}
.musPage > .filter .filterLine ~ .filterLine {
  border-top: 1px solid var(--c-ltborder);
}
.musPage > .filter .filterItem {
  display: flex;
  align-items: center;
}
.musPage > .filter .filterItem .label {
  display: inline-block;
  font-size: 14px;
  line-height: 16px;
  margin-right: 8px;
}
.musPage > .filter .filterItem .mButton + .mButton {
  margin-left: 8px;
}
.musPage > .filter .filterItem.-noSpace {
  margin-left: 4px;
}
.musPage > .filter .filterItem.-noSpace .label {
  display: none;
}
.musPage > .filter .filterItem.-followLeft {
  margin-left: 0 !important;
}
.musPage > .filter .filterItem.-noLabel .label {
  display: none;
}
.musPage > .filter .filterItem + .filterItem {
  margin-left: 12px;
}
.musPage > .filter ~ .body {
  top: 128px;
}
.musPage > .pager {
  position: absolute;
  display: flex;
  align-items: center;
  left: 32px;
  right: 32px;
  height: 48px;
  bottom: 0;
  padding: 0 8px;
  border-top: 1px solid var(--c-border);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.musPage > .pager .pageList {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  font-size: 14px;
  height: 32px;
}
.musPage > .pager .pageList > a {
  display: block;
  flex: 0 0 32px;
  text-align: center;
  line-height: 32px;
  border-radius: 1000px;
}
.musPage > .pager .pageList > a:hover {
  color: var(--c-main);
  background-color: #fff;
}
.musPage > .pager .pageList > a.-current {
  color: #fff;
  background-color: var(--c-main);
}
.musPage > .pager .pageList > a + a {
  marign-left: 4px;
}
.musPage > .pager .pageList .ellipsis {
  display: block;
  flex: 0 0 32px;
  text-align: center;
  line-height: 32px;
}
.musPage > .pager .pageStatus {
  font-size: 14px;
  line-height: 32px;
  height: 32px;
}
.musPage > .pager .sum {
  flex: 0 0 auto;
  height: 32px;
  line-height: 32px;
}
.musPage > .pager .pagerFn {
  display: flex;
  margin-left: 8px;
}
.musPage > .pager .pagerFn > * + * {
  margin-left: 4px;
}
.musPage > .pager .pageStatus + .exportLink {
  margin-left: 8px;
}
.musPage > .pager ~ .body {
  bottom: 48px;
}
.musPage > .body {
  position: absolute;
  left: 0;
  top: 64px;
  right: 0;
  bottom: 0;
  padding: 0 32px 0 32px;
  overflow-y: auto;
}
.musPage > .body::-webkit-scrollbar {
  width: 12px;
}
.musPage > .body::-webkit-scrollbar-thumb {
  background-color: var(--c-gray);
  border: 2px solid var(--c-bg);
  border-top: 0;
  border-bottom: 0;
}
.musPage > .body .section {
  margin: 2em 0;
}
.musPage > .body .section:first-child {
  margin-top: 0;
}
.musPage > .body .section .captain {
  display: flex;
  align-items: center;
}
.musPage > .body .section .captain .fn {
  margin-left: 16px;
  flex: 0 0 auto;
}
.musPage > .body h2 {
  margin: 0.5em 0;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5em;
  color: var(--c-main);
}
.musPage > .body h2 i {
  display: inline-block;
  text-align: center;
  width: 1.5em;
  margin-right: 0.25em;
}
.musPage > .body h3 {
  margin: 0.5em 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5em;
  color: var(--c-main);
}
.musPage > .body h3 i {
  display: inline-block;
  text-align: center;
  width: 1.5em;
  margin-right: 0.25em;
}
.musPage > .body p {
  margin: 1em 0;
  font-size: 14px;
  line-height: 1.5em;
}
.musPage .message {
  margin: 0 0 32px 0;
  max-width: 672px;
}
.musPage .message .msgItem {
  display: flex;
  align-items: center;
  padding: 8px 16px 8px 8px;
  font-size: 14px;
  line-height: 24px;
  border: 1px solid var(--c-border);
  border-radius: 4px;
}
.musPage .message .msgItem .icon {
  flex: 0 0 24px;
  margin-right: 8px;
}
.musPage .message .msgItem .text {
  flex: 1 1 auto;
}
.musPage .message .msgItem[mus-type=INFO] {
  border-color: #87b3f8;
  background-color: #e7f0fe;
}
.musPage .message .msgItem[mus-type=OK] {
  border-color: #43ed72;
  background-color: #a0f6b8;
}
.musPage .message .msgItem[mus-type=WARN] {
  border-color: #ffcc70;
  background-color: #fff0d6;
}
.musPage .message .msgItem[mus-type=ERROR] {
  border-color: #fbacac;
  background-color: white;
}
.musPage.-cols > .body {
  padding: 16px 32px 32px 32px;
  overflow-y: hidden;
}
.musPage .musPageCol {
  position: absolute;
  height: 100%;
  overflow-y: auto;
}
.musPage .musPageCol > .body {
  padding: 16px 32px 32px 32px;
  overflow-y: auto;
}
.musPage .musPageCol + .musPageCol {
  border-left: 1px solid var(--c-ltgray);
}

.musImsPage {
  position: absolute;
  left: 0;
  top: 48px;
  right: 0;
  bottom: 0;
}

.musSummary {
  margin: 2rem 0;
}

.sumBlockList {
  margin: 1em 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  max-width: var(--len-maxContentWidth);
}
@media screen and (max-width: 1239.9px) {
  .sumBlockList {
    grid-template-columns: repeat(2, 1fr);
  }
}
.sumBlockList .sumBlock {
  position: relative;
  padding: 1rem;
  border-radius: 0.25rem;
  height: 7rem;
  background-color: #fff;
  box-shadow: var(--fx-boxShadow);
}
.sumBlockList .sumBlock[mus-block-style=INFO] {
  padding: 15px;
  background-color: transparent;
  border: 1px solid var(--c-gray-30);
  box-shadow: none;
}
.sumBlockList .sumBlock .title {
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  right: 0.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: bold;
  color: var(--c-dkgray);
}
.sumBlockList .sumBlock .title i {
  display: inline-block;
  width: 1.5rem;
  margin-right: 0.25rem;
  text-align: center;
}
.sumBlockList .sumBlock .link {
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  font-size: 0.75rem;
  line-height: 1.25rem;
  font-weight: bold;
}
.sumBlockList .sumBlock .link a {
  color: var(--c-blue);
}
.sumBlockList .sumBlock .link > * + * {
  margin-left: 0.5rem;
}
.sumBlockList .sumBlock .body {
  position: absolute;
  display: flex;
  left: 16px;
  top: 32px;
  right: 16px;
  bottom: 32px;
}
.sumBlockList .sumBlock .indicator {
  content: "";
  position: absolute;
  right: 7px;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: var(--c-gray-25);
}
.sumBlockList .sumBlock[mus-status=OK] .indicator {
  background: var(--c-green);
  border: solid 1px rgba(255, 255, 255, 0.02);
  box-shadow: 0px 0px 4px var(--c-green);
}
.sumBlockList .sumBlock[mus-status=WARN] .indicator {
  background: var(--c-warn);
  border: solid 1px rgba(255, 255, 255, 0.02);
  box-shadow: 0px 0px 4px var(--c-warn);
}
.sumBlockList .sumBlock[mus-status=ERR] .indicator {
  background: var(--c-error);
  border: solid 1px rgba(255, 255, 255, 0.02);
  box-shadow: 0px 0px 4px var(--c-error);
}
.sumBlockList .sumBlock[mus-block-type=SIMPLE] .body {
  align-items: center;
  justify-content: right;
}
.sumBlockList .sumBlock[mus-block-type=SIMPLE] .body .value {
  font-size: 2rem;
  font-weight: bold;
}
.sumBlockList .sumBlock[mus-block-type=LIST] {
  height: 272px;
  grid-column: span 2;
}
.sumBlockList .sumBlock[mus-block-type=LIST] .body {
  position: relative;
  left: auto;
  right: auto;
  display: block;
  align-items: center;
  justify-content: right;
}
.sumBlockList .sumBlock[mus-block-type=LIST] .body table {
  width: 100%;
}
.sumBlockList .sumBlock[mus-block-type=LIST] .body table tr > * {
  padding: 0.5em;
  line-height: 1.5em;
}
.sumBlockList .sumBlock[mus-block-type=LIST] .body table tr > *:first-child {
  padding-left: 0.25em;
}
.sumBlockList .sumBlock[mus-block-type=LIST] .body table tr > *:last-child {
  padding-right: 0.25em;
}
.sumBlockList .sumBlock[mus-block-type=LIST] .body table tr:first-child > * {
  border-top: 1px solid var(--c-ltborder);
}
.sumBlockList .sumBlock[mus-block-type=LIST] .body table tr > * {
  border-bottom: 1px solid var(--c-ltborder);
}
.sumBlockList .sumBlock[mus-block-type=LIST] .body table .-noData {
  color: var(--c-gray);
  text-align: center;
}