/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

@font-face {
  font-family: "Pretendard";
  font-weight: 900;
  font-display: swap;
  src: local("Pretendard Black"), url("../fonts/pretendard/Pretendard-Black.woff2") format("woff2"), url("../fonts/pretendard/Pretendard-Black.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 800;
  font-display: swap;
  src: local("Pretendard ExtraBold"), url("../fonts/pretendard/Pretendard-ExtraBold.woff2") format("woff2"), url("../fonts/pretendard/Pretendard-ExtraBold.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 700;
  font-display: swap;
  src: local("Pretendard Bold"), url("../fonts/pretendard/Pretendard-Bold.woff2") format("woff2"), url("../fonts/pretendard/Pretendard-Bold.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 600;
  font-display: swap;
  src: local("Pretendard SemiBold"), url("../fonts/pretendard/Pretendard-SemiBold.woff2") format("woff2"), url("../fonts/pretendard/Pretendard-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 500;
  font-display: swap;
  src: local("Pretendard Medium"), url("../fonts/pretendard/Pretendard-Medium.woff2") format("woff2"), url("../fonts/pretendard/Pretendard-Medium.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 400;
  font-display: swap;
  src: local("Pretendard Regular"), url("../fonts/pretendard/Pretendard-Regular.woff2") format("woff2"), url("../fonts/pretendard/Pretendard-Regular.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 300;
  font-display: swap;
  src: local("Pretendard Light"), url("../fonts/pretendard/Pretendard-Light.woff2") format("woff2"), url("../fonts/pretendard/Pretendard-Light.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 200;
  font-display: swap;
  src: local("Pretendard ExtraLight"), url("../fonts/pretendard/Pretendard-ExtraLight.woff2") format("woff2"), url("../fonts/pretendard/Pretendard-ExtraLight.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 100;
  font-display: swap;
  src: local("Pretendard Thin"), url("../fonts/pretendard/Pretendard-Thin.woff2") format("woff2"), url("../fonts/pretendard/Pretendard-Thin.woff") format("woff");
}
.slideDown {
  animation-name: slideDown;
  -webkit-animation-name: slideDown;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(8%);
  }
  65% {
    transform: translateY(-4%);
  }
  80% {
    transform: translateY(4%);
  }
  95% {
    transform: translateY(-2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  65% {
    -webkit-transform: translateY(-4%);
  }
  80% {
    -webkit-transform: translateY(4%);
  }
  95% {
    -webkit-transform: translateY(-2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideUp
==============================================
*/
.slideUp {
  animation-name: slideUp;
  -webkit-animation-name: slideUp;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}

@keyframes slideUp {
  0% {
    transform: translateY(100%);
  }
  50% {
    transform: translateY(-8%);
  }
  65% {
    transform: translateY(4%);
  }
  80% {
    transform: translateY(-4%);
  }
  95% {
    transform: translateY(2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(100%);
  }
  50% {
    -webkit-transform: translateY(-8%);
  }
  65% {
    -webkit-transform: translateY(4%);
  }
  80% {
    -webkit-transform: translateY(-4%);
  }
  95% {
    -webkit-transform: translateY(2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideLeft
==============================================
*/
.slideLeft {
  animation-name: slideLeft;
  -webkit-animation-name: slideLeft;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}

@keyframes slideLeft {
  0% {
    transform: translateX(150%);
  }
  50% {
    transform: translateX(-8%);
  }
  65% {
    transform: translateX(4%);
  }
  80% {
    transform: translateX(-4%);
  }
  95% {
    transform: translateX(2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translateX(150%);
  }
  50% {
    -webkit-transform: translateX(-8%);
  }
  65% {
    -webkit-transform: translateX(4%);
  }
  80% {
    -webkit-transform: translateX(-4%);
  }
  95% {
    -webkit-transform: translateX(2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
/*
==============================================
slideRight
==============================================
*/
.slideRight {
  animation-name: slideRight;
  -webkit-animation-name: slideRight;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}

@keyframes slideRight {
  0% {
    transform: translateX(-150%);
  }
  50% {
    transform: translateX(8%);
  }
  65% {
    transform: translateX(-4%);
  }
  80% {
    transform: translateX(4%);
  }
  95% {
    transform: translateX(-2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideRight {
  0% {
    -webkit-transform: translateX(-150%);
  }
  50% {
    -webkit-transform: translateX(8%);
  }
  65% {
    -webkit-transform: translateX(-4%);
  }
  80% {
    -webkit-transform: translateX(4%);
  }
  95% {
    -webkit-transform: translateX(-2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
/*
==============================================
slideExpandUp
==============================================
*/
.slideExpandUp {
  animation-name: slideExpandUp;
  -webkit-animation-name: slideExpandUp;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}

@keyframes slideExpandUp {
  0% {
    transform: translateY(100%) scaleX(0.5);
  }
  30% {
    transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    transform: translateY(2%) scaleX(0.5);
  }
  50% {
    transform: translateY(0%) scaleX(1.1);
  }
  60% {
    transform: translateY(0%) scaleX(0.9);
  }
  70% {
    transform: translateY(0%) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleX(0.95);
  }
  90% {
    transform: translateY(0%) scaleX(1.02);
  }
  100% {
    transform: translateY(0%) scaleX(1);
  }
}
@-webkit-keyframes slideExpandUp {
  0% {
    -webkit-transform: translateY(100%) scaleX(0.5);
  }
  30% {
    -webkit-transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    -webkit-transform: translateY(2%) scaleX(0.5);
  }
  50% {
    -webkit-transform: translateY(0%) scaleX(1.1);
  }
  60% {
    -webkit-transform: translateY(0%) scaleX(0.9);
  }
  70% {
    -webkit-transform: translateY(0%) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleX(0.95);
  }
  90% {
    -webkit-transform: translateY(0%) scaleX(1.02);
  }
  100% {
    -webkit-transform: translateY(0%) scaleX(1);
  }
}
/*
==============================================
expandUp
==============================================
*/
.expandUp {
  animation-name: expandUp;
  -webkit-animation-name: expandUp;
  animation-duration: 0.7s;
  -webkit-animation-duration: 0.7s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}

@keyframes expandUp {
  0% {
    transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    transform: translateY(3%);
  }
  100% {
    transform: translateY(0%) scale(1) scaleY(1);
  }
}
@-webkit-keyframes expandUp {
  0% {
    -webkit-transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    -webkit-transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    -webkit-transform: translateY(3%);
  }
  100% {
    -webkit-transform: translateY(0%) scale(1) scaleY(1);
  }
}
/*
==============================================
fadeIn
==============================================
*/
.fadeIn {
  animation-name: fadeIn;
  -webkit-animation-name: fadeIn;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in;
  -webkit-animation-timing-function: ease-in;
  visibility: visible !important;
}

.fadeInFast {
  animation-name: fadeIn;
  -webkit-animation-name: fadeIn;
  animation-duration: 0.15s;
  -webkit-animation-duration: 0.15s;
  animation-timing-function: ease-in;
  -webkit-animation-timing-function: ease-in;
  visibility: visible !important;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*
==============================================
expandOpen
==============================================
*/
.expandOpen {
  animation-name: expandOpen;
  -webkit-animation-name: expandOpen;
  animation-duration: 1.2s;
  -webkit-animation-duration: 1.2s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}

@keyframes expandOpen {
  0% {
    transform: scale(1.8);
  }
  50% {
    transform: scale(0.95);
  }
  80% {
    transform: scale(1.05);
  }
  90% {
    transform: scale(0.98);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes expandOpen {
  0% {
    -webkit-transform: scale(1.8);
  }
  50% {
    -webkit-transform: scale(0.95);
  }
  80% {
    -webkit-transform: scale(1.05);
  }
  90% {
    -webkit-transform: scale(0.98);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
/*
==============================================
bigEntrance
==============================================
*/
.bigEntrance {
  animation-name: bigEntrance;
  -webkit-animation-name: bigEntrance;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}

@keyframes bigEntrance {
  0% {
    transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
@-webkit-keyframes bigEntrance {
  0% {
    -webkit-transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    -webkit-transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    -webkit-transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    -webkit-transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    -webkit-transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
/*
==============================================
hatch
==============================================
*/
.hatch {
  animation-name: hatch;
  -webkit-animation-name: hatch;
  animation-duration: 2s;
  -webkit-animation-duration: 2s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
  visibility: visible !important;
}

@keyframes hatch {
  0% {
    transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    transform: rotate(2deg) scaleY(1);
  }
  50% {
    transform: rotate(-2deg);
  }
  65% {
    transform: rotate(1deg);
  }
  80% {
    transform: rotate(-1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@-webkit-keyframes hatch {
  0% {
    -webkit-transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    -webkit-transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    -webkit-transform: rotate(2deg) scaleY(1);
  }
  50% {
    -webkit-transform: rotate(-2deg);
  }
  65% {
    -webkit-transform: rotate(1deg);
  }
  80% {
    -webkit-transform: rotate(-1deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
/*
==============================================
bounce
==============================================
*/
.bounce {
  animation-name: bounce;
  -webkit-animation-name: bounce;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}

@keyframes bounce {
  0% {
    transform: translateY(0%) scaleY(0.6);
  }
  60% {
    transform: translateY(-100%) scaleY(1.1);
  }
  70% {
    transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleY(1.05) scaleX(1);
  }
  90% {
    transform: translateY(0%) scaleY(0.95) scaleX(1);
  }
  100% {
    transform: translateY(0%) scaleY(1) scaleX(1);
  }
}
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0%) scaleY(0.6);
  }
  60% {
    -webkit-transform: translateY(-100%) scaleY(1.1);
  }
  70% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleY(1.05) scaleX(1);
  }
  90% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1);
  }
  100% {
    -webkit-transform: translateY(0%) scaleY(1) scaleX(1);
  }
}
/*
==============================================
pulse
==============================================
*/
.pulse {
  animation-name: pulse;
  -webkit-animation-name: pulse;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
}
/*
==============================================
floating
==============================================
*/
.floating {
  animation-name: floating;
  -webkit-animation-name: floating;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(8%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
tossing
==============================================
*/
.tossing {
  animation-name: tossing;
  -webkit-animation-name: tossing;
  animation-duration: 2.5s;
  -webkit-animation-duration: 2.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@keyframes tossing {
  0% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}
@-webkit-keyframes tossing {
  0% {
    -webkit-transform: rotate(-4deg);
  }
  50% {
    -webkit-transform: rotate(4deg);
  }
  100% {
    -webkit-transform: rotate(-4deg);
  }
}
/*
==============================================
pullUp
==============================================
*/
.pullUp {
  animation-name: pullUp;
  -webkit-animation-name: pullUp;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}

@keyframes pullUp {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullUp {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
pullDown
==============================================
*/
.pullDown {
  animation-name: pullDown;
  -webkit-animation-name: pullDown;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  -webkit-transform-origin: 50% 0%;
}

@keyframes pullDown {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullDown {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
stretchLeft
==============================================
*/
.stretchLeft {
  animation-name: stretchLeft;
  -webkit-animation-name: stretchLeft;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 100% 0%;
  -ms-transform-origin: 100% 0%;
  -webkit-transform-origin: 100% 0%;
}

@keyframes stretchLeft {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchLeft {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
/*
==============================================
stretchRight
==============================================
*/
.stretchRight {
  animation-name: stretchRight;
  -webkit-animation-name: stretchRight;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
}

@keyframes stretchRight {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchRight {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
/*
==============================================
flicker
==============================================
*/
.flicker {
  animation-name: flicker;
  -webkit-animation-name: flicker;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@keyframes flicker {
  0% {
    filter: brightness(40%);
  }
  50% {
    filter: brightness(100%);
  }
  100% {
    filter: brightness(40%);
  }
}
@-webkit-keyframes flicker {
  0% {
    -webkit-filter: brightness(40%);
  }
  50% {
    -webkit-filter: brightness(100%);
  }
  100% {
    -webkit-filter: brightness(40%);
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
  font-size: 20px;
  font-family: "Pretendard", sans-serif;
}

body {
  position: relative;
  height: 100%;
  font-size: 0.8rem;
  background-color: #1F222A;
}

img {
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  -ms-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

canvas {
  outline: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

main {
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  height: 30%;
  background: #C5C5C5;
  border-radius: 10px;
}

::-webkit-scrollbar-track {
  background: #525661;
}

.page {
  position: relative;
  border: 5px solid #111111;
  background: rgb(31, 34, 42);
  background: linear-gradient(90deg, rgb(31, 34, 42) 100%, rgb(38, 40, 46) 100%);
  box-shadow: 0 0 10px rgba(193, 193, 193, 0.431372549);
  border-radius: 1rem;
  height: 91vh;
  margin: 0.9rem;
  overflow: hidden;
}
.page .page-name {
  padding-top: 40px;
  padding-bottom: 20px;
  text-align: center;
  font-size: 1.7rem;
  font-weight: 600;
  color: #FFF;
  letter-spacing: 1px;
}

.validation-message {
  color: red;
  font-size: 0.65rem;
}

footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 5vh;
}
footer .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2.5rem;
}
footer .wrapper .datetime {
  font-size: 1.05rem;
  color: #B7B7B7;
}
footer .wrapper .logo {
  width: 190px;
  height: 33px;
}
footer .wrapper .icon-group {
  width: 170px;
  display: block;
  text-align: right;
}
footer .wrapper .icon-group img {
  width: 35px;
}
footer .wrapper .icon-group img:last-child {
  margin-right: 0;
}
footer .wrapper .icon-group img:hover {
  cursor: pointer;
}

#sub-menu {
  background: url("../images/sub-menu-bg.png") no-repeat center;
  height: 62px;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  z-index: 5;
}
#sub-menu a {
  margin: 0.25rem 0.6rem 0;
  width: 41px;
  height: 52px;
  border: 0;
  display: inline-block;
  transition: 0.1s;
}
#sub-menu a:nth-child(1) {
  background: url("../images/icons/live.png");
  background-size: cover;
}
#sub-menu a:nth-child(1).active {
  background: url("../images/icons/live-on.png");
  background-size: cover;
}
#sub-menu a:nth-child(2) {
  background: url("../images/icons/iot.png");
  background-size: cover;
}
#sub-menu a:nth-child(2).active {
  background: url("../images/icons/iot-on.png");
  background-size: cover;
}
#sub-menu a:nth-child(3) {
  background: url("../images/icons/cctv.png");
  background-size: cover;
}
#sub-menu a:nth-child(3).active {
  background: url("../images/icons/cctv-on.png");
  background-size: cover;
}
#sub-menu a:nth-child(4) {
  background: url("../images/icons/choice.png");
  background-size: cover;
}
#sub-menu a:nth-child(4).active {
  background: url("../images/icons/choice-on.png");
  background-size: cover;
}
#sub-menu a:nth-child(5) {
  background: url("../images/icons/esg.png");
  background-size: cover;
}
#sub-menu a:nth-child(5).active {
  background: url("../images/icons/esg-on.png");
  background-size: cover;
}
#sub-menu a:nth-child(6) {
  background: url("../images/icons/chart.png");
  background-size: cover;
}
#sub-menu a:nth-child(6).active {
  background: url("../images/icons/chart-on.png");
  background-size: cover;
}
#sub-menu .icon:hover {
  cursor: pointer;
}

.apexcharts-bar-series .apexcharts-series path {
  transform: translate(0px, -0.3rem);
}

input[type=date] {
  border: none;
  position: relative;
  padding: 3px 10px;
  background: #2C2F37 url(../images/icons/calendar.svg) no-repeat 120px 8px;
  box-shadow: inset 0 0 10px #06060A;
  font-size: 100%;
  width: 140px;
  color: #9F9F9F;
  font-family: "Pretendard", "sans-serif";
  font-weight: 300;
}
input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  color: transparent;
  cursor: pointer;
}
input[type=date]::before {
  content: attr(data-placeholder);
  width: 100%;
  height: 100%;
}
input[type=date]:valid::before {
  display: none;
}
input[type=date]:focus {
  outline: none;
}

.form-date {
  background: rgb(82, 86, 97);
  background: linear-gradient(190deg, rgb(82, 86, 97) 0%, rgb(62, 64, 68) 100%);
  padding: 0.1rem;
  height: 31px;
  margin: auto;
  border-radius: 0.1rem;
}

.toggle-date {
  position: relative;
  width: 100px;
  height: 30px;
  font-weight: 600;
  background: url("../images/components/bg-toggle.png") no-repeat center;
  background-size: 100% 100%;
  font-size: 0.55rem;
}
.toggle-date label {
  display: inline-block;
  width: 30px;
  line-height: 30px;
  color: #4E5360;
  text-align: center;
  cursor: pointer;
}
.toggle-date label:hover {
  color: white;
}
.toggle-date .indicator {
  width: 31px;
  height: 23px;
  position: absolute;
  top: 3px;
  left: -15px;
  line-height: 1rem;
  padding: 1px;
  color: #FFF;
  text-align: center;
  border: 0.5px solid #434447;
  background: rgb(165, 170, 185);
  background: linear-gradient(90deg, rgb(165, 170, 185) 0%, rgb(82, 86, 97) 100%);
  border-radius: 1rem;
  transition: transform 600ms cubic-bezier(0.02, 0.94, 0.09, 0.97), background 300ms cubic-bezier(0.17, 0.67, 0.14, 1.03);
  transform: translate3d(1rem, 0, 0);
}
.toggle-date input[type=radio]:not(:checked), .toggle-date input[type=radio]:checked {
  display: none;
}
.toggle-date .indicator.order-1 {
  transform: translate3d(20px, 0, 0);
}
.toggle-date .indicator.order-2 {
  transform: translate3d(48px, 0, 0);
}
.toggle-date .indicator.order-3 {
  transform: translate3d(78px, 0, 0);
}

.splash-wrapper {
  width: 100%;
  height: 100vh;
  position: relative;
  text-align: center;
}
.splash-wrapper .splash-header {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.splash-wrapper .splash-header img {
  width: 14rem;
}
.splash-wrapper .splash-footer {
  position: absolute;
  left: 50%;
  bottom: 100px;
  font-size: 0.7rem;
  color: #FFF;
  transform: translateX(-50%);
}
.splash-wrapper .loading-progress {
  position: relative;
  display: block;
  width: 3rem;
  height: 3rem;
  margin: 5vh auto 1rem auto;
}
.splash-wrapper .loading-progress circle {
  fill: none;
  stroke: #FFF;
  stroke-width: 0.4rem;
  transform-origin: 50% 50%;
  transform: rotate(-90deg);
}
.splash-wrapper .loading-progress circle:last-child {
  stroke: #ddd;
  stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
  transition: stroke-dasharray 0.05s ease-in-out;
}
.splash-wrapper .loading-progress-text {
  color: #FFF;
  text-align: center;
  font-weight: bold;
  inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
}
.splash-wrapper .loading-progress-text:after {
  content: var(--blazor-load-percentage-text, "Loading");
  font-size: 0.8rem;
}

/* START TOOLTIP STYLES */
[tooltip] {
  position: relative; /* opinion 1 */
}

/* Applies to all tooltips */
[tooltip]::before,
[tooltip]::after {
  text-transform: none; /* opinion 2 */
  font-size: 0.9em; /* opinion 3 */
  line-height: 1;
  user-select: none;
  pointer-events: none;
  position: absolute;
  display: none;
  opacity: 0;
}

[tooltip]::before {
  content: "";
  border: 5px solid transparent; /* opinion 4 */
  z-index: 1001; /* absurdity 1 */
}

[tooltip]::after {
  content: attr(tooltip); /* magic! */
  /* most of the rest of this is opinion */
  font-family: Helvetica, sans-serif;
  text-align: center;
  /* 
    Let the content set the size of the tooltips 
    but this will also keep them from being obnoxious
    */
  min-width: 3em;
  max-width: 21em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 1ch 1.5ch;
  border-radius: 0.3ch;
  box-shadow: 0 1em 2em -0.5em rgba(0, 0, 0, 0.35);
  background: #333;
  color: #fff;
  z-index: 1000; /* absurdity 2 */
}

/* Make the tooltips respond to hover */
[tooltip]:hover::before,
[tooltip]:hover::after {
  display: block;
}

/* don't show empty tooltips */
[tooltip=""]::before,
[tooltip=""]::after {
  display: none !important;
}

/* FLOW: UP */
[tooltip]:not([flow])::before,
[tooltip][flow^=up]::before {
  bottom: 100%;
  border-bottom-width: 0;
  border-top-color: #333;
}

[tooltip]:not([flow])::after,
[tooltip][flow^=up]::after {
  bottom: calc(100% + 5px);
}

[tooltip]:not([flow])::before,
[tooltip]:not([flow])::after,
[tooltip][flow^=up]::before,
[tooltip][flow^=up]::after {
  left: 50%;
  transform: translate(-50%, -0.5em);
}

/* FLOW: DOWN */
[tooltip][flow^=down]::before {
  top: 100%;
  border-top-width: 0;
  border-bottom-color: #333;
}

[tooltip][flow^=down]::after {
  top: calc(100% + 5px);
}

[tooltip][flow^=down]::before,
[tooltip][flow^=down]::after {
  left: 50%;
  transform: translate(-50%, 0.5em);
}

/* FLOW: LEFT */
[tooltip][flow^=left]::before {
  top: 50%;
  border-right-width: 0;
  border-left-color: #333;
  left: calc(0em - 5px);
  transform: translate(-0.5em, -50%);
}

[tooltip][flow^=left]::after {
  top: 50%;
  right: calc(100% + 5px);
  transform: translate(-0.5em, -50%);
}

/* FLOW: RIGHT */
[tooltip][flow^=right]::before {
  top: 50%;
  border-left-width: 0;
  border-right-color: #333;
  right: calc(0em - 5px);
  transform: translate(0.5em, -50%);
}

[tooltip][flow^=right]::after {
  top: 50%;
  left: calc(100% + 5px);
  transform: translate(0.5em, -50%);
}

/* KEYFRAMES */
@keyframes tooltips-vert {
  to {
    opacity: 0.9;
    transform: translate(-50%, 0);
  }
}
@keyframes tooltips-horz {
  to {
    opacity: 0.9;
    transform: translate(0, -50%);
  }
}
/* FX All The Things */
[tooltip]:not([flow]):hover::before,
[tooltip]:not([flow]):hover::after,
[tooltip][flow^=up]:hover::before,
[tooltip][flow^=up]:hover::after,
[tooltip][flow^=down]:hover::before,
[tooltip][flow^=down]:hover::after {
  animation: tooltips-vert 300ms ease-out forwards;
}

[tooltip][flow^=left]:hover::before,
[tooltip][flow^=left]:hover::after,
[tooltip][flow^=right]:hover::before,
[tooltip][flow^=right]:hover::after {
  animation: tooltips-horz 300ms ease-out forwards;
}

@-webkit-keyframes notyf-fadeinup {
  0% {
    opacity: 0;
    transform: translateY(25%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes notyf-fadeinup {
  0% {
    opacity: 0;
    transform: translateY(25%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes notyf-fadeinleft {
  0% {
    opacity: 0;
    transform: translateX(25%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes notyf-fadeinleft {
  0% {
    opacity: 0;
    transform: translateX(25%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes notyf-fadeoutright {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(25%);
  }
}
@keyframes notyf-fadeoutright {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(25%);
  }
}
@-webkit-keyframes notyf-fadeoutdown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(25%);
  }
}
@keyframes notyf-fadeoutdown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(25%);
  }
}
@-webkit-keyframes ripple {
  0% {
    transform: scale(0) translateY(-45%) translateX(13%);
  }
  to {
    transform: scale(1) translateY(-45%) translateX(13%);
  }
}
@keyframes ripple {
  0% {
    transform: scale(0) translateY(-45%) translateX(13%);
  }
  to {
    transform: scale(1) translateY(-45%) translateX(13%);
  }
}
.notyf {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  color: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
  box-sizing: border-box;
  padding: 20px;
}

.notyf__icon--error, .notyf__icon--success {
  height: 21px;
  width: 21px;
  background: #fff;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
  position: relative;
}

.notyf__icon--error:after, .notyf__icon--error:before {
  content: "";
  background: currentColor;
  display: block;
  position: absolute;
  width: 3px;
  border-radius: 3px;
  left: 9px;
  height: 12px;
  top: 5px;
}

.notyf__icon--error:after {
  transform: rotate(-45deg);
}

.notyf__icon--error:before {
  transform: rotate(45deg);
}

.notyf__icon--success:after, .notyf__icon--success:before {
  content: "";
  background: currentColor;
  display: block;
  position: absolute;
  width: 3px;
  border-radius: 3px;
}

.notyf__icon--success:after {
  height: 6px;
  transform: rotate(-45deg);
  top: 9px;
  left: 6px;
}

.notyf__icon--success:before {
  height: 11px;
  transform: rotate(45deg);
  top: 5px;
  left: 10px;
}

.notyf__toast {
  display: block;
  overflow: hidden;
  pointer-events: auto;
  -webkit-animation: notyf-fadeinup 0.3s ease-in forwards;
  animation: notyf-fadeinup 0.3s ease-in forwards;
  box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.25);
  position: relative;
  padding: 0 15px;
  border-radius: 2px;
  max-width: 300px;
  transform: translateY(25%);
  box-sizing: border-box;
  flex-shrink: 0;
}

.notyf__toast--disappear {
  transform: translateY(0);
  -webkit-animation: notyf-fadeoutdown 0.3s forwards;
  animation: notyf-fadeoutdown 0.3s forwards;
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}

.notyf__toast--disappear .notyf__icon, .notyf__toast--disappear .notyf__message {
  -webkit-animation: notyf-fadeoutdown 0.3s forwards;
  animation: notyf-fadeoutdown 0.3s forwards;
  opacity: 1;
  transform: translateY(0);
}

.notyf__toast--disappear .notyf__dismiss {
  -webkit-animation: notyf-fadeoutright 0.3s forwards;
  animation: notyf-fadeoutright 0.3s forwards;
  opacity: 1;
  transform: translateX(0);
}

.notyf__toast--disappear .notyf__message {
  -webkit-animation-delay: 0.05s;
  animation-delay: 0.05s;
}

.notyf__toast--upper {
  margin-bottom: 20px;
}

.notyf__toast--lower {
  margin-top: 20px;
}

.notyf__toast--dismissible .notyf__wrapper {
  padding-right: 30px;
}

.notyf__ripple {
  height: 400px;
  width: 400px;
  position: absolute;
  transform-origin: bottom right;
  right: 0;
  top: 0;
  border-radius: 50%;
  transform: scale(0) translateY(-51%) translateX(13%);
  z-index: 5;
  -webkit-animation: ripple 0.4s ease-out forwards;
  animation: ripple 0.4s ease-out forwards;
}

.notyf__wrapper {
  display: flex;
  align-items: center;
  padding-top: 17px;
  padding-bottom: 17px;
  padding-right: 15px;
  border-radius: 3px;
  position: relative;
  z-index: 10;
}

.notyf__icon {
  width: 22px;
  text-align: center;
  font-size: 1.3em;
  opacity: 0;
  -webkit-animation: notyf-fadeinup 0.3s forwards;
  animation: notyf-fadeinup 0.3s forwards;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  margin-right: 13px;
}

.notyf__dismiss {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 26px;
  margin-right: -15px;
  -webkit-animation: notyf-fadeinleft 0.3s forwards;
  animation: notyf-fadeinleft 0.3s forwards;
  -webkit-animation-delay: 0.35s;
  animation-delay: 0.35s;
  opacity: 0;
}

.notyf__dismiss-btn {
  background-color: rgba(0, 0, 0, 0.25);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease, background-color 0.2s ease;
  outline: none;
  opacity: 0.35;
  height: 100%;
  width: 100%;
}

.notyf__dismiss-btn:after, .notyf__dismiss-btn:before {
  content: "";
  background: #fff;
  height: 12px;
  width: 2px;
  border-radius: 3px;
  position: absolute;
  left: calc(50% - 1px);
  top: calc(50% - 5px);
}

.notyf__dismiss-btn:after {
  transform: rotate(-45deg);
}

.notyf__dismiss-btn:before {
  transform: rotate(45deg);
}

.notyf__dismiss-btn:hover {
  opacity: 0.7;
  background-color: rgba(0, 0, 0, 0.15);
}

.notyf__dismiss-btn:active {
  opacity: 0.8;
}

.notyf__message {
  vertical-align: middle;
  position: relative;
  opacity: 0;
  -webkit-animation: notyf-fadeinup 0.3s forwards;
  animation: notyf-fadeinup 0.3s forwards;
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
  line-height: 1.5em;
}

@media only screen and (max-width: 480px) {
  .notyf {
    padding: 0;
  }
  .notyf__ripple {
    height: 600px;
    width: 600px;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
  }
  .notyf__toast {
    max-width: none;
    border-radius: 0;
    box-shadow: 0 -2px 7px 0 rgba(0, 0, 0, 0.13);
    width: 100%;
  }
  .notyf__dismiss {
    width: 56px;
  }
}
#cctv .page-wrapper {
  padding: 0 14.45rem;
  width: 100%;
  /* sejo 20240510 start */
  /* sejo 20240510 end */
}
#cctv .page-wrapper .rows {
  display: grid;
  grid-row-gap: 1rem;
  grid-column-gap: 1rem;
  position: relative;
}
#cctv .page-wrapper .rows.col-1 {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
#cctv .page-wrapper .rows.col-1 .box {
  display: none;
}
#cctv .page-wrapper .rows.col-1 .box.active {
  display: block;
  width: 1323px;
  height: 747px;
  /* sejo 20240510 start */
  /* sejo 20240510 end */
}
#cctv .page-wrapper .rows.col-1 .box.active .move-up {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0;
  left: 631.5px;
  opacity: 70%;
  border-radius: 40px;
}
#cctv .page-wrapper .rows.col-1 .box.active .move-down {
  width: 60px;
  height: 60px;
  position: absolute;
  bottom: 100px;
  left: 631.5px;
  opacity: 70%;
  border-radius: 40px;
}
#cctv .page-wrapper .rows.col-1 .box.active .move-left {
  width: 60px;
  height: 60px;
  position: absolute;
  bottom: 343.5px;
  left: 0;
  opacity: 70%;
  border-radius: 40px;
}
#cctv .page-wrapper .rows.col-1 .box.active .move-right {
  width: 60px;
  height: 60px;
  position: absolute;
  bottom: 343.5px;
  right: 0;
  opacity: 70%;
  border-radius: 40px;
}
#cctv .page-wrapper .rows.col-1 .box.active .footer {
  padding: 1rem 2rem;
}
#cctv .page-wrapper .rows.col-1 .box.active .footer .title {
  font-size: 1.8rem;
}
#cctv .page-wrapper .rows.col-1 .box.active .footer .control button {
  width: 3rem;
  height: 3rem;
  margin: 0 0.5rem;
}
#cctv .page-wrapper .rows.col-1 .box.active .footer .control button.zoom-in {
  background-size: 3rem;
}
#cctv .page-wrapper .rows.col-1 .box.active .footer .control button.zoom-out {
  background-size: 3rem;
}
#cctv .page-wrapper .rows.col-1 .box.active .footer .control button.record {
  background-size: 3rem;
}
#cctv .page-wrapper .rows.col-1 .box.active .footer .control button.record.active {
  background-size: 3rem;
}
#cctv .page-wrapper .rows.col-1 .box.empty {
  width: 1323px;
  height: 747px;
}
#cctv .page-wrapper .rows.col-1 .arrows {
  display: flex;
  justify-content: space-between;
  width: 119%;
  position: absolute;
  bottom: 17.3rem;
  left: -5.5rem;
}
#cctv .page-wrapper .rows.col-4 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
#cctv .page-wrapper .box {
  position: relative;
  width: 642px;
  height: 370px;
  margin: 0 auto;
  box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3411764706);
  overflow: hidden; /* sejo 240430 */
}
#cctv .page-wrapper .box.empty {
  background: #2C2F37 url("../images/cctv/wifi.png") no-repeat center;
  background-size: 4rem;
  width: 642px;
  height: 370px;
  margin: 0 auto;
  box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3411764706);
}
#cctv .page-wrapper .box .footer {
  padding: 0.4rem 1rem;
  color: white;
  display: flex;
  justify-content: space-between;
  opacity: 0.85;
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: #2C2F37;
}
#cctv .page-wrapper .box .footer .title {
  font-size: 0.9rem;
  text-shadow: 0 3px 5px #000;
  margin: auto 0;
}
#cctv .page-wrapper .box .footer .control {
  display: flex;
}
#cctv .page-wrapper .box .footer .control button {
  width: 1.5rem;
  height: 1.5rem;
  border: 0;
  margin-left: 0.4rem;
}
#cctv .page-wrapper .box .footer .control button:hover {
  cursor: pointer;
}
#cctv .page-wrapper .box .footer .control button.zoom-in {
  background: url("../images/cctv/zoom-in.png") no-repeat center;
  background-size: 1.5rem;
}
#cctv .page-wrapper .box .footer .control button.zoom-in:active {
  background: url("../images/cctv/zoom-in-on.png") no-repeat center;
  background-size: 1.5rem;
}
#cctv .page-wrapper .box .footer .control button.zoom-out {
  background: url("../images/cctv/zoom-out.png") no-repeat center;
  background-size: 1.5rem;
}
#cctv .page-wrapper .box .footer .control button.zoom-out:active {
  background: url("../images/cctv/zoom-out-on.png") no-repeat center;
  background-size: 1.5rem;
}
#cctv .page-wrapper .box .footer .control button.record {
  background: url("../images/cctv/record.png") no-repeat center;
  background-size: 1.5rem;
}
#cctv .page-wrapper .box .footer .control button.record.active {
  background: url("../images/cctv/record-on.png") no-repeat center;
  background-size: 1.5rem;
}
#cctv .page-wrapper img {
  transform-origin: center;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
#cctv .page-wrapper .video {
  transform-origin: center; /* sejo 240430 */
  object-fit: cover; /* sejo 240430 */
  width: 100%;
  height: 100%;
}
#cctv .page-wrapper .video.empty {
  background-color: #252530;
}
#cctv .page-wrapper .video.empty .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
#cctv .page-wrapper .video.empty .icon .circle {
  border-radius: 5rem;
  padding: 0.2rem;
  background-color: #373737;
}
#cctv .page-wrapper .video.empty .icon .circle img {
  width: 3.5rem;
}
#cctv .page-wrapper .move-up {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  left: 306px;
  opacity: 70%;
  border-radius: 20px;
}
#cctv .page-wrapper .move-down {
  width: 30px;
  height: 30px;
  position: absolute;
  bottom: 46px;
  left: 306px;
  opacity: 70%;
  border-radius: 20px;
}
#cctv .page-wrapper .move-left {
  width: 30px;
  height: 30px;
  position: absolute;
  bottom: 170px;
  left: 0;
  opacity: 70%;
  border-radius: 20px;
}
#cctv .page-wrapper .move-right {
  width: 30px;
  height: 30px;
  position: absolute;
  bottom: 170px;
  right: 0;
  opacity: 70%;
  border-radius: 20px;
}
#cctv .page-wrapper .move-up:hover {
  opacity: 95%;
  cursor: pointer;
}
#cctv .page-wrapper .move-down:hover {
  opacity: 95%;
  cursor: pointer;
}
#cctv .page-wrapper .move-left:hover {
  opacity: 95%;
  cursor: pointer;
}
#cctv .page-wrapper .move-right:hover {
  opacity: 95%;
  cursor: pointer;
}
@media (max-width: 1199px) {
  #cctv .page-wrapper .box {
    width: 394px;
  }
}
#cctv .arrows {
  display: none;
}
#cctv .arrows button {
  width: 3rem;
  height: 3rem;
  border: 0;
}
#cctv .arrows button:hover {
  cursor: pointer;
}
#cctv .arrows button.arrow-left {
  background: url("../images/cctv/cctv-left.png") no-repeat center;
  background-size: 3rem;
}
#cctv .arrows button.arrow-right {
  background: url("../images/cctv/cctv-right.png") no-repeat center;
  background-size: 3rem;
}
#cctv .toggle {
  display: flex;
  position: absolute;
  bottom: 0;
  left: -10rem;
  cursor: pointer;
}
#cctv .toggle div {
  width: 70px;
  height: 65px;
  border-radius: 5px;
}
#cctv .toggle div:nth-child(1) {
  background: #2C2F37 url("../images/icons/grid-4.png") no-repeat center;
  background-size: 1.5rem;
  border-top: 2px solid #46515D;
  border-left: 2px solid #46515D;
  border-bottom: 2px solid #46515D;
  margin: auto 0;
}
#cctv .toggle div:nth-child(1).active {
  background: #DEDEDE url("../images/icons/grid-4a.png") no-repeat center;
  background-size: 40px;
  border: 0;
  width: 85px;
  height: 75px;
}
#cctv .toggle div:nth-child(2) {
  background: #2C2F37 url("../images/icons/grid-1.png") no-repeat center;
  background-size: 1.5rem;
  border-top: 2px solid #46515D;
  border-right: 2px solid #46515D;
  border-bottom: 2px solid #46515D;
  margin: auto 0;
}
#cctv .toggle div:nth-child(2).active {
  background: #DEDEDE url("../images/icons/grid-1a.png") no-repeat center;
  background-size: 40px;
  border: 0;
  width: 85px;
  height: 75px;
}

#choice .page-wrapper {
  padding: 4.4rem 6.5rem 0;
  width: 100%;
  height: 0;
  position: relative;
}
#choice .page-wrapper > div {
  display: flex;
  justify-content: space-between;
}
#choice .page-wrapper > div h4 {
  color: #FFF;
  font-size: 1rem;
  margin-bottom: 0.8rem;
  margin-left: 0.5rem;
}
#choice .page-wrapper > div .card-left .bg {
  width: 400px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 0.35rem;
  grid-row-gap: 0.35rem;
}
#choice .page-wrapper > div .card-left .bg .box {
  background-color: #2C2F37;
  padding: 1.1rem 1.04rem 0.5rem;
}
#choice .page-wrapper > div .card-left .bg .box:nth-child(1) {
  grid-area: 1/1/2/2;
}
#choice .page-wrapper > div .card-left .bg .box:nth-child(2) {
  grid-area: 1/2/2/3;
}
#choice .page-wrapper > div .card-left .bg .box:nth-child(3) {
  grid-area: 2/1/3/2;
}
#choice .page-wrapper > div .card-left .bg .box:nth-child(4) {
  grid-area: 2/2/3/3;
}
#choice .page-wrapper > div .card-left .bg .box:nth-child(5) {
  grid-area: 3/1/4/2;
}
#choice .page-wrapper > div .card-left .bg .box:nth-child(6) {
  grid-area: 3/2/4/3;
}
#choice .page-wrapper > div .card-left .bg .box:nth-child(7) {
  grid-area: 4/1/5/2;
}
#choice .page-wrapper > div .card-left .bg .box:nth-child(8) {
  grid-area: 4/2/5/3;
}
#choice .page-wrapper > div .card-left .bg .box h5 {
  color: #919191;
  font-size: 0.8rem;
  padding: 0.5rem 0;
}
#choice .page-wrapper > div .card-left .bg .box .value {
  font-size: 1.75rem;
  padding-left: 0.3rem;
  color: #FFF;
}
#choice .page-wrapper > div .card-left .bg .box .value .unit {
  font-size: 0.8rem;
  color: #919191;
}
#choice .page-wrapper > div .card-left .bg .box img {
  width: 2rem;
  display: block;
  margin-left: auto;
  padding-top: 0.5rem;
}
#choice .page-wrapper > div .card-right .bg {
  padding: 2rem;
  background-color: #2C2F37;
}
#choice .page-wrapper > div .card-right .bg .inner {
  width: 330px;
  height: 553px;
  overflow-y: auto;
  padding-right: 1.5rem;
}
#choice .page-wrapper > div .card-right .bg .box {
  border-bottom: 1px dashed rgba(112, 112, 112, 0.3607843137);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
#choice .page-wrapper > div .card-right .bg .box .title {
  background: url("../images/choice/bg-title.png") no-repeat center;
  background-size: 100% 100%;
  display: flex;
  padding: 0.5rem 0.8rem;
}
#choice .page-wrapper > div .card-right .bg .box .title img {
  width: 0.9rem;
}
#choice .page-wrapper > div .card-right .bg .box .title div {
  color: #FFF;
  margin: auto 0;
  padding-left: 0.5rem;
}
#choice .page-wrapper > div .card-right .bg .box .contents {
  color: #C5C5C5;
  padding: 0.7rem 0.9rem;
  line-height: 1.2rem;
  white-space: break-spaces;
}
#choice .page-wrapper > div .card-right .bg .box .tag {
  padding: 0 0.9rem;
  color: #6F737F;
}
#choice .page-wrapper > div .card-right .bg .box .tag span {
  margin-right: 0.2rem;
}
#choice .page-wrapper > div .card-center .bg {
  padding: 2rem;
  background-color: #2C2F37;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2196078431);
}
#choice .page-wrapper > div .card-center .bg .inner {
  width: 640px;
  height: 553px;
  overflow-y: auto;
  padding-right: 1.5rem;
}
#choice .page-wrapper > div .card-center .bg .box {
  border-bottom: 1px dashed rgba(112, 112, 112, 0.3607843137);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
#choice .page-wrapper > div .card-center .bg .box .title {
  padding: 0.5rem 0.8rem;
  background: url("../images/choice/bg-title.png") no-repeat center;
  background-size: 100%;
  display: flex;
}
#choice .page-wrapper > div .card-center .bg .box .title img {
  width: 0.9rem;
}
#choice .page-wrapper > div .card-center .bg .box .title div {
  color: #FFF;
  margin: auto 0;
  padding-left: 0.5rem;
}
#choice .page-wrapper > div .card-center .bg .box .contents {
  color: #C5C5C5;
  padding: 0.7rem 0.9rem;
  line-height: 1.2rem;
}

#esg .page-wrapper {
  padding: 0 14.45rem;
  width: 100%;
  height: auto;
  position: relative;
}
#esg .page-wrapper .child {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#esg .page-wrapper .child .container {
  display: flex;
  justify-content: space-between;
  padding: 0 6.5rem;
  position: relative;
  top: 2rem;
}
#esg .page-wrapper .child .container .row-chart {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#esg .page-wrapper .child .container .row-chart .card {
  background-color: #2C2F37;
  padding: 1.6rem 1.9rem 0.5rem;
  margin: 2rem 0;
}
#esg .page-wrapper .child .container .row-chart .card > div {
  display: flex;
  justify-content: space-between;
}
#esg .page-wrapper .child .container .row-chart .card .title {
  font-size: 1rem;
  color: #FFF;
  line-height: 1.45rem;
}
#esg .page-wrapper .child .container .row-chart .card .title small {
  font-size: 0.7rem;
}
#esg .page-wrapper .child .container .row-img {
  background: url(../images/earth.png) no-repeat center;
  background-size: contain;
  width: 100%;
  position: relative;
  left: 34px;
  top: -20px;
}
#esg .page-wrapper .child .container .row-img img {
  margin: 0.5rem auto;
  display: block;
  width: 680px;
  opacity: 0.9;
  position: absolute;
  top: 0;
}

#iot .page-wrapper {
  padding: 0 6rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
#iot .page-wrapper .card-left {
  width: 326px;
}
#iot .page-wrapper .card-left table {
  width: 100%;
  padding: 1.5rem 1rem;
  position: relative;
}
#iot .page-wrapper .card-left table tr {
  border-bottom: 1px solid #393C47;
}
#iot .page-wrapper .card-left table td {
  padding: 1.5rem 0;
  vertical-align: middle;
}
#iot .page-wrapper .card-left table td:nth-child(1) {
  text-align: right;
  padding-right: 0.3rem;
  padding-left: 1rem;
}
#iot .page-wrapper .card-left table td:nth-child(2) {
  text-align: center;
}
#iot .page-wrapper .card-left table td:nth-child(2) img {
  width: 1.7rem;
  height: 1.7rem;
}
#iot .page-wrapper .card-left table td:nth-child(3) {
  text-align: left;
  color: #C5C5C5;
  font-size: 0.9rem;
  padding-left: 0.5rem;
}
#iot .page-wrapper .card-left table td:nth-child(4) {
  text-align: right;
  color: #FFFFFF;
  font-size: 1.85rem;
}
#iot .page-wrapper .card-left table td:nth-child(5) {
  padding-right: 1rem;
  padding-bottom: 1.7rem;
  text-align: right;
  color: #7F8083;
  vertical-align: bottom;
}
#iot .page-wrapper .card-left table .status {
  width: 0.65rem;
  height: 0.65rem;
  background-color: #C5C5C5;
  margin: auto 0;
  border-radius: 2rem;
}
#iot .page-wrapper .card-left table .status.danger {
  background-color: #D60101;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.9);
  animation: flicker 1s linear alternate infinite;
  -webkit-animation: flicker 1s linear alternate infinite;
}
#iot .page-wrapper .card-left table .status.warning {
  background-color: #FFEA2E;
  box-shadow: 0 0 8px rgba(255, 237, 77, 0.9);
  animation: flicker 1s linear alternate infinite;
  -webkit-animation: flicker 1s linear alternate infinite;
}
#iot .page-wrapper .card-left table .status.success {
  background-color: rgba(71, 255, 83, 0.9);
  box-shadow: 0 0 8px rgba(71, 255, 83, 0.9);
}
#iot .page-wrapper .card-center {
  margin: auto;
}
#iot .page-wrapper .card-center .container {
  width: 847px;
  height: 412px;
  background: url("../images/iot/c-0.png") no-repeat center;
  background-size: 100% 100%;
  transition: 0.3s;
}
#iot .page-wrapper .card-center .container.light-0 {
  background: url("../images/iot/c-0.png") no-repeat center;
  background-size: 100% 100%;
  transition: 0.3s;
}
#iot .page-wrapper .card-center .container.light-50 {
  background: url("../images/iot/c-50.png") no-repeat center;
  background-size: 100% 100%;
  transition: 0.3s;
}
#iot .page-wrapper .card-center .container.light-100 {
  background: url("../images/iot/c-100.png") no-repeat center;
  background-size: 100% 100%;
  transition: 0.3s;
}
#iot .page-wrapper .card-center .network {
  width: 2rem;
  padding: 1.5rem;
  border-radius: 0.5rem;
  position: absolute;
  left: 48%;
  bottom: 6rem;
  transition: 0.2s;
  background: #525661 url("../images/iot/not-conn.png") no-repeat center;
  background-size: 2rem;
}
#iot .page-wrapper .card-center .network.active {
  background: #DEDEDE url("../images/iot/conn.png") no-repeat center;
  background-size: 2rem;
}
#iot .page-wrapper .card-right .row-chart {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#iot .page-wrapper .card-right .row-chart .card {
  padding: 1.2rem 0;
  margin-bottom: 0.5rem;
}
#iot .page-wrapper .card-right .row-chart .card:last-child {
  margin-bottom: 0;
}
#iot .page-wrapper .card-right .row-chart .card .header {
  display: flex;
  justify-content: space-between;
  margin: 0 0.5rem;
}
#iot .page-wrapper .card-right .row-chart .card .header .title {
  font-size: 0.9rem;
  color: #FFF;
  line-height: 1.45rem;
}
#iot .page-wrapper .card-right .row-chart .card .header .title small {
  font-size: 0.7rem;
}

#live .page-wrapper {
  padding: 2rem 6.5rem 0;
  width: 100%;
  height: auto;
  position: relative;
  display: flex;
  justify-content: space-between;
}
#live .page-wrapper h4 {
  color: #FFF;
  font-size: 1rem;
  margin-bottom: 0.8rem;
  margin-left: 0.5rem;
}
#live .page-wrapper .border {
  border: 1px solid rgba(112, 112, 112, 0.4705882353);
}
#live .page-wrapper .card-left .bg {
  width: 1120px;
}
#live .page-wrapper .card-left .bg .row-1 {
  padding: 1rem 1.8rem;
  background-color: #2C2F37;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
#live .page-wrapper .card-left .bg .row-1 .col {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  transition: 0.2s;
}
#live .page-wrapper .card-left .bg .row-1 .col:hover {
  background: url(../images/live/bg-lg.png) no-repeat;
  background-size: contain;
  cursor: pointer;
}
#live .page-wrapper .card-left .bg .row-1 .col.active {
  background: url(../images/live/bg-lg.png) no-repeat;
  background-size: contain;
}
#live .page-wrapper .card-left .bg .row-1 .col .circle {
  border: 1px solid transparent;
  border-radius: 2rem;
  background-color: #525661;
  margin: auto;
  transition: 0.2s;
}
#live .page-wrapper .card-left .bg .row-1 .col .text-group {
  padding-left: 0.6rem;
}
#live .page-wrapper .card-left .bg .row-1 .col .text-group .title {
  font-size: 0.7rem;
  color: #919191;
}
#live .page-wrapper .card-left .bg .row-1 .col .text-group .value {
  color: #C5C5C5;
  font-size: 1.3rem;
  margin-right: 0.53rem;
  margin-top: 0.2rem;
}
#live .page-wrapper .card-left .bg .row-1 .col .text-group .value .unit {
  color: #919191;
  font-size: 0.7rem;
}
#live .page-wrapper .card-left .bg .row-1 .col:nth-child(1) .circle {
  background: #525661 url("../images/live/s2-w.png") center no-repeat;
  background-size: 1.2rem;
  padding: 1.2rem;
}
#live .page-wrapper .card-left .bg .row-1 .col:nth-child(2) .circle {
  background: #525661 url("../images/live/s3-w.png") center no-repeat;
  background-size: 1.2rem;
  padding: 1.2rem;
}
#live .page-wrapper .card-left .bg .row-1 .col:nth-child(3) .circle {
  background: #525661 url("../images/live/s4-w.png") center no-repeat;
  background-size: 1.2rem;
  padding: 1.2rem;
}
#live .page-wrapper .card-left .bg .row-1 .col:nth-child(4) .circle {
  background: #525661 url("../images/live/s5-w.png") center no-repeat;
  background-size: 1.2rem;
  padding: 1.2rem;
}
#live .page-wrapper .card-left .bg .row-1 .col:nth-child(5) .circle {
  background: #525661 url("../images/live/s6-w.png") center no-repeat;
  background-size: 1.2rem;
  padding: 1.2rem;
}
#live .page-wrapper .card-left .bg .row-1 .col:nth-child(6) .circle {
  background: #525661 url("../images/live/s1-w.png") center no-repeat;
  background-size: 1.2rem;
  padding: 1.2rem;
}
#live .page-wrapper .card-left .bg .row-1 .col.active .circle {
  background-color: transparent;
  border: 1px solid rgba(216, 216, 216, 0.6784313725);
}
#live .page-wrapper .card-left .bg .row-2 {
  padding: 2.8rem 5.5rem;
}
#live .page-wrapper .card-left .bg .row-2 .box-group {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
}
#live .page-wrapper .card-left .bg .row-2 .box-group .box {
  position: relative;
  background: url("../images/live/box.png") no-repeat center;
  background-size: 5.3rem;
  width: 5.3rem;
  height: 4.3rem;
}
#live .page-wrapper .card-left .bg .row-2 .box-group .box .label {
  background: url("../images/live/label.png") no-repeat;
  background-size: 3.1rem;
  font-size: 0.9rem;
  color: #FFF;
  position: absolute;
  top: 0;
  left: 1rem;
  z-index: 2;
  min-width: 3.15rem;
  min-height: 1.4rem;
  text-align: center;
  line-height: 1.35rem;
}
#live .page-wrapper .card-left .bg .row-2 .box-group .box .status-1 {
  position: absolute;
  bottom: 1rem;
  left: 1.8rem;
  width: 1.5rem;
  height: 1.5rem;
  background: url("../images/live/s1-b.png") no-repeat center;
  background-size: 1.5rem;
}
#live .page-wrapper .card-left .bg .row-2 .box-group .box .status-2 {
  position: absolute;
  bottom: 1rem;
  left: 1.8rem;
  width: 1.5rem;
  height: 1.5rem;
  background: url("../images/live/s2-b.png") no-repeat center;
  background-size: 1.5rem;
}
#live .page-wrapper .card-left .bg .row-2 .box-group .box .status-3 {
  position: absolute;
  bottom: 1rem;
  left: 1.8rem;
  width: 1.5rem;
  height: 1.5rem;
  background: url("../images/live/s3-b.png") no-repeat center;
  background-size: 1.5rem;
}
#live .page-wrapper .card-left .bg .row-2 .box-group .box .status-4 {
  position: absolute;
  bottom: 1rem;
  left: 1.8rem;
  width: 1.5rem;
  height: 1.5rem;
  background: url("../images/live/s4-b.png") no-repeat center;
  background-size: 1.5rem;
}
#live .page-wrapper .card-left .bg .row-2 .box-group .box .status-5 {
  position: absolute;
  bottom: 1rem;
  left: 1.8rem;
  width: 1.5rem;
  height: 1.5rem;
  background: url("../images/live/s5-b.png") no-repeat center;
  background-size: 1.5rem;
}
#live .page-wrapper .card-left .bg .row-2 .box-group .box .status-6 {
  position: absolute;
  bottom: 1rem;
  left: 1.8rem;
  width: 1.5rem;
  height: 1.5rem;
  background: url("../images/live/s6-b.png") no-repeat center;
  background-size: 1.5rem;
}
#live .page-wrapper .card-left .bg .row-2 .box-group .box.active {
  background: url("../images/live/box-on.png") no-repeat center;
  background-size: 5.3rem;
  width: 5.3rem;
  height: 4.3rem;
  animation: flicker 1.5s linear alternate 2;
  -webkit-animation: flicker 1.5s linear alternate 2;
}
#live .page-wrapper .card-left .bg .row-2 .box-group .box.active .label {
  background: url("../images/live/label-on.png") no-repeat;
  background-size: 3.1rem;
}
#live .page-wrapper .card-left .bg .row-2 .box-group .box.active .status-1 {
  background: url("../images/live/s1-w.png") no-repeat center;
  background-size: 1.5rem;
}
#live .page-wrapper .card-left .bg .row-2 .box-group .box.active .status-2 {
  background: url("../images/live/s2-w.png") no-repeat center;
  background-size: 1.5rem;
}
#live .page-wrapper .card-left .bg .row-2 .box-group .box.active .status-3 {
  background: url("../images/live/s3-w.png") no-repeat center;
  background-size: 1.5rem;
}
#live .page-wrapper .card-left .bg .row-2 .box-group .box.active .status-4 {
  background: url("../images/live/s4-w.png") no-repeat center;
  background-size: 1.5rem;
}
#live .page-wrapper .card-left .bg .row-2 .box-group .box.active .status-5 {
  background: url("../images/live/s5-w.png") no-repeat center;
  background-size: 1.5rem;
}
#live .page-wrapper .card-left .bg .row-2 .box-group .box.active .status-6 {
  background: url("../images/live/s6-w.png") no-repeat center;
  background-size: 1.5rem;
}
#live .page-wrapper .card-right {
  width: 460px;
  margin-left: 2rem;
}
#live .page-wrapper .card-right .card-2 {
  width: 100%;
}
#live .page-wrapper .card-right .card-2 .bg {
  height: 684px;
  overflow-y: scroll;
}
#live .page-wrapper .card-right .card-2 table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.7rem;
}
#live .page-wrapper .card-right .card-2 table thead {
  background-color: #2C2F37;
  color: #808080;
}
#live .page-wrapper .card-right .card-2 table thead th {
  padding: 0.85rem;
}
#live .page-wrapper .card-right .card-2 table tbody {
  text-align: center;
}
#live .page-wrapper .card-right .card-2 table tbody tr {
  border-bottom: 1px solid rgba(112, 112, 112, 0.2);
}
#live .page-wrapper .card-right .card-2 table tbody tr:last-child {
  border-bottom: 0;
}
#live .page-wrapper .card-right .card-2 table tbody td {
  padding: 0.75rem 0.5rem;
}
#live .page-wrapper .card-right .card-2 table tbody td:nth-child(1), #live .page-wrapper .card-right .card-2 table tbody td:nth-child(2), #live .page-wrapper .card-right .card-2 table tbody td:nth-child(4) {
  color: #A5A5A5;
}
#live .page-wrapper .card-right .card-2 table tbody td:nth-child(3) {
  color: #FFF;
}

#login {
  width: 100%;
  height: 100vh;
  color: #FFF;
}
#login .container {
  position: absolute;
  top: 51%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#login .container .box {
  width: 24rem;
  border-radius: 0.3rem;
  padding: 3.8rem 4.1rem;
  background-color: #2C2F37;
}
#login .container .box .logo {
  display: block;
  margin: 0 auto;
  width: 236px;
  height: auto;
}
#login .container .box h5 {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 300;
}
#login .container .box .input-wrap {
  padding-top: 2rem;
  padding-bottom: 1rem;
}
#login .container .box .input-wrap .input-icon {
  position: relative;
  padding: 0.3rem 0;
}
#login .container .box .input-wrap .input-icon .input-icon-addon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  color: #AFAFAF;
  pointer-events: none;
  font-size: 1.2em;
}
#login .container .box .input-wrap .input-icon .form-input {
  background-color: transparent;
  border: 1px solid #525660;
  outline: none;
  width: 100%;
  height: 2.3rem;
  border-radius: 0.1rem;
  font-weight: 400;
  font-size: 0.7rem;
  font-family: "Pretendard", "sans-serif";
  color: #FFF;
  transition: 0.2s;
}
#login .container .box .input-wrap .input-icon .form-input:focus {
  box-shadow: inset 0 0 10px rgba(6, 6, 10, 0.55);
}
#login .container .box .input-wrap .input-icon .form-input::placeholder {
  color: #B7B7B7;
}
#login .container .box .input-wrap .input-icon .form-input:not(:first-child) {
  padding-left: 2.6rem;
}
#login .container .box .input-wrap .input-check {
  margin-top: 1.5rem;
  margin-bottom: 0.1rem;
}
#login .container .box .input-wrap .btn-submit {
  width: 100%;
  height: 2.5rem;
  background-color: #525661;
  color: #FFF;
  font-family: "Pretendard", "sans-serif";
  border: 0;
  border-radius: 0.1rem;
  font-size: 0.8rem;
  margin-top: 1.5rem;
  letter-spacing: 1px;
  transition: 0.4s;
}
#login .container .box .input-wrap .btn-submit:hover {
  cursor: pointer;
  background-color: #6E7383;
}
#login .copyright {
  text-align: center;
  padding-top: 2rem;
  color: #8B8B8B;
  font-size: 0.7rem;
}

#statistics .page-wrapper {
  padding: 0 12rem;
  width: 100%;
  height: auto;
  position: relative;
}
#statistics .page-wrapper .card-search {
  display: flex;
  justify-content: space-between;
  background-color: #2C2F37;
  padding: 0.4rem 0.9rem;
  margin: 2rem 0;
}
#statistics .page-wrapper .card-search .datetime {
  display: flex;
  justify-content: space-between;
}
#statistics .page-wrapper .card-search .datetime .text1 {
  margin: auto;
  padding: 0.5rem 1.5rem;
  color: #FFF;
  font-size: 0.9rem;
}
#statistics .page-wrapper .card-search .datetime .text2 {
  margin: auto;
  padding: 0.5rem;
  color: #FFF;
}
#statistics .page-wrapper .card-search .datetime button {
  width: 33px;
  height: 32px;
  background: rgb(82, 86, 97);
  background: linear-gradient(89deg, rgb(82, 86, 97) 100%, rgb(62, 64, 69) 100%);
  border: 0;
  box-shadow: inset 0 0 2px #000;
  margin: auto 0.5rem;
}
#statistics .page-wrapper .card-search .datetime button:hover {
  cursor: pointer;
}
#statistics .page-wrapper .card-search .datetime button svg {
  position: relative;
  top: 1px;
  left: 1px;
}
#statistics .page-wrapper .card-chart {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}
#statistics .page-wrapper .card-chart .card {
  background-color: #2C2F37;
  padding: 2rem 2.8rem 1.2rem;
}
#statistics .page-wrapper .card-chart .card:nth-child(1) {
  grid-area: 1/1/2/2;
}
#statistics .page-wrapper .card-chart .card:nth-child(2) {
  grid-area: 1/2/2/3;
}
#statistics .page-wrapper .card-chart .card:nth-child(3) {
  grid-area: 2/1/3/2;
}
#statistics .page-wrapper .card-chart .card:nth-child(4) {
  grid-area: 2/2/3/3;
}
#statistics .page-wrapper .card-chart .card .title {
  font-size: 0.9rem;
  color: #FFF;
  line-height: 1.45rem;
}
#statistics .page-wrapper .card-chart .card .title small {
  font-size: 0.7rem;
}
#statistics .page-wrapper .card-chart .card .circle-wrap {
  display: flex;
  gap: 2rem;
}
#statistics .page-wrapper .card-chart .card .circle-wrap .circle {
  display: flex;
}
#statistics .page-wrapper .card-chart .card .circle-wrap .circle .outer {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 1rem;
  margin-right: 0.3rem;
  margin-top: auto;
  margin-bottom: auto;
}
#statistics .page-wrapper .card-chart .card .circle-wrap .circle .outer .inner {
  padding: 0.1rem;
}
#statistics .page-wrapper .card-chart .card .circle-wrap .circle .outer.red {
  border: 2px solid #D60101;
}
#statistics .page-wrapper .card-chart .card .circle-wrap .circle .outer.red .inner {
  background-color: #D60101;
  padding: 0.15rem;
}
#statistics .page-wrapper .card-chart .card .circle-wrap .circle .outer.yellow {
  border: 2px solid #FFE229;
}
#statistics .page-wrapper .card-chart .card .circle-wrap .circle .outer.yellow .inner {
  background-color: #FFE229;
  padding: 0.15rem;
}
#statistics .page-wrapper .card-chart .card .circle-wrap .circle .outer.blue {
  border: 2px solid #3B70FF;
}
#statistics .page-wrapper .card-chart .card .circle-wrap .circle .outer.sky {
  border: 2px solid #3DE3FE;
}
#statistics .page-wrapper .card-chart .card .circle-wrap .circle .name {
  font-size: 0.8rem;
  color: #FFF;
}
#statistics .page-wrapper .card-chart .card .desc {
  color: #C5C5C5;
  font-size: 0.7rem;
  font-weight: 200;
  line-height: 1.2rem;
  padding-top: 0.5rem;
}
#statistics .page-wrapper .card-chart .card .desc2 {
  font-size: 0.7rem;
  color: #7F8083;
}
#statistics .page-wrapper .card-chart .card .desc2 .date {
  padding-bottom: 0.3rem;
}
#statistics .page-wrapper .card-chart .card .desc2 .value {
  font-size: 1.85rem;
  padding-right: 0.8rem;
}
#statistics .page-wrapper .card-chart .card .desc2 .value.blue {
  color: #00CBFF;
}
#statistics .page-wrapper .card-chart .card .desc2 .value.orange {
  color: #FF9100;
}
#statistics .page-wrapper .card-chart .card .desc2 .value .unit {
  font-size: 0.8rem;
  color: #7F8083;
}
#statistics .page-wrapper .card-chart .card .wrap-h {
  display: flex;
  justify-content: space-between;
}
#statistics .page-wrapper .card-chart .card .wrap-v {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  max-height: 200px;
}
#statistics .ms-pill-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 7px;
  flex-wrap: wrap;
  display: flex;
}
#statistics .ms-pill-wrap .w-radio-input {
  box-sizing: border-box;
  padding: 0;
  float: left;
  margin: 3px 0 0 -20px;
  line-height: normal;
}
#statistics .ms-pill-wrap .w-radio-input:hover {
  cursor: pointer;
}
#statistics .ms-pill-wrap .ms-pill-label {
  z-index: 2;
  white-space: nowrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  padding: 0.18rem 0.65rem;
  font-weight: 500;
  line-height: 2em;
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: auto;
  background: rgb(106, 109, 119);
  background: linear-gradient(146deg, rgb(106, 109, 119) 0%, rgb(84, 87, 93) 100%);
  border: 1px solid transparent;
  color: #9F9F9F;
}
#statistics .ms-pill-wrap .ms-pill-radio {
  z-index: -1;
  opacity: 0;
  margin-left: 0;
  position: absolute;
}
#statistics .ms-pill-wrap .ms-pill-radio:checked ~ .ms-pill-label {
  box-shadow: inset 0 0 10px #06060A;
  border: 2px solid #50545f;
  background: #2C2F37;
  color: #FFF;
  text-shadow: 0 0 2px #211141;
}

/*# sourceMappingURL=app.css.map */
