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

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

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

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

@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icon-font/icomoon.eot?n9nr0e");
  src: url("../fonts/icon-font/icomoon.eot?n9nr0e#iefix") format("embedded-opentype"), url("../fonts/icon-font/icomoon.ttf?n9nr0e") format("truetype"), url("../fonts/icon-font/icomoon.woff?n9nr0e") format("woff"), url("../fonts/icon-font/icomoon.svg?n9nr0e#icomoon") format("svg");
  font-weight: normal;
  font-style: normal; }

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-nav-account-act:before {
  content: "\e900"; }

.icon-nav-account:before {
  content: "\e901"; }

.icon-nav-alarm-act:before {
  content: "\e902"; }

.icon-nav-alarm:before {
  content: "\e903"; }

.icon-nav-asset-act:before {
  content: "\e904"; }

.icon-nav-asset:before {
  content: "\e905"; }

.icon-nav-authority-act:before {
  content: "\e906"; }

.icon-nav-authority:before {
  content: "\e907"; }

.icon-nav-dashboard-act:before {
  content: "\e908"; }

.icon-nav-dashboard:before {
  content: "\e909"; }

.icon-nav-statistic-act:before {
  content: "\e90a"; }

.icon-nav-statistic:before {
  content: "\e90b"; }

.icon-nav-system-act:before {
  content: "\e90c"; }

.icon-nav-system:before {
  content: "\e90d"; }

/*把變數帶入mixin中，此mixin只就單純把media queries寫到我的mixin中，
並且使用我上面設立的變數來調動media queries的width*/
.p-0 {
  padding: 0 0px !important; }

.p-1 {
  padding: 4px !important; }

.p-2 {
  padding: 8px !important; }

.px-0 {
  padding-left: 0px !important;
  padding-right: 0px !important; }

.px-1 {
  padding-left: 4px !important;
  padding-right: 4px !important; }

.px-2 {
  padding-left: 8px !important;
  padding-right: 8px !important; }

.pb-2 {
  padding-bottom: 8px !important; }

.pb-3 {
  padding-bottom: 12px !important; }

.ps-1 {
  padding-left: 4px !important; }

.ps-2 {
  padding-left: 8px !important; }

.ps-3 {
  padding-left: 12px !important; }

.pe-2 {
  padding-right: 8px !important; }

.pe-4 {
  padding-right: 16px !important; }

.pt-0 {
  padding-top: 0px !important; }

.pt-2 {
  padding-top: 8px !important; }

.ms-3 {
  margin-left: 12px !important; }

.me-3 {
  margin-right: 12px !important; }

.me-5 {
  margin-right: 20px !important; }

.mb-0 {
  margin-bottom: 0px !important; }

.mb-2 {
  margin-bottom: 8px !important; }

.mt-2 {
  margin-top: 8px !important; }

.mt-3 {
  margin-top: 12px !important; }

.m-auto {
  margin: 0 auto; }

.overflow-hidden {
  overflow: hidden; }

.relative {
  position: relative; }

.height-1 {
  height: 100%; }

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.inline-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex; }

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

.justify-content-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start; }

.justify-content-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }

.align-items-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end; }

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }

.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row; }

.flex-fill {
  -webkit-box-flex: 1 !important;
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important; }

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

.txt-right {
  text-align: right; }

::-webkit-input-placeholder {
  color: initial;
  font-size: .875em; }

:-ms-input-placeholder {
  color: initial;
  font-size: .875em; }

::-ms-input-placeholder {
  color: initial;
  font-size: .875em; }

::placeholder {
  color: initial;
  font-size: .875em; }

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: initial;
  font-size: .875em; }

::-moz-placeholder {
  /* Firefox 19+ */
  color: initial;
  font-size: .875em; }

:-ms-input-placeholder {
  /* IE 10+ */
  color: initial;
  font-size: .875em; }

:-moz-placeholder {
  /* Firefox 18- */
  color: initial;
  font-size: .875em; }

/* text-overflow: ellipsis; */
.ellipsis {
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis; }
  .ellipsis.multi-line {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal; }

/* function */
/* Variable */
/* width and height */
/* color */
/* element table & pagination*/
/*map pin color*/
body a.btn,
body input.submit,
html a.btn,
html input.submit, body a.btn:focus,
body input.submit:focus,
html a.btn:focus,
html input.submit:focus {
  border-radius: 5px;
  background-color: #035e81;
  font-weight: 500;
  color: white; }

body a.btn:hover,
body input.submit:hover,
html a.btn:hover,
html input.submit:hover {
  border-radius: 5px;
  background-color: rgba(4, 108, 149, 0.9);
  color: white; }

.btn-resetform {
  background: #cccccc;
  /* Old browsers */
  background: -moz-linear-gradient(top, #cccccc 0%, gray 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #cccccc 0%, gray 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(#cccccc), to(gray));
  background: -o-linear-gradient(top, #cccccc 0%, gray 100%);
  background: linear-gradient(to bottom, #cccccc 0%, gray 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cccccc', endColorstr='#808080', GradientType=0);
  /* IE6-9 */
  font-weight: 500;
  color: white; }

.btn-submitform {
  background: #00cbfb;
  /* Old browsers */
  background: -moz-linear-gradient(top, #00ccfa 0%, #0473b4 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #00ccfa 0%, #0473b4 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(#00ccfa), to(#0473b4));
  background: -o-linear-gradient(top, #00ccfa 0%, #0473b4 100%);
  background: linear-gradient(to bottom, #00ccfa 0%, #0473b4 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00cbfb', endColorstr='#0474b4', GradientType=0);
  /* IE6-9 */
  border: 1px solid #b3b3b3;
  border-radius: 5px;
  font-weight: 500;
  color: white; }

/* font-size */
/*extend*/
::-webkit-input-placeholder {
  color: grey; }
:-ms-input-placeholder {
  color: grey; }
::-ms-input-placeholder {
  color: grey; }
::placeholder {
  color: grey; }

.light-blue {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#00bff6+0,0367ac+100 */
  background: #00bff6;
  /* Old browsers */
  background: -moz-radial-gradient(center, ellipse cover, #00c0f5 0%, #046aaf 100%);
  /* FF3.6-15 */
  background: -webkit-radial-gradient(center, ellipse cover, #00c0f5 0%, #046aaf 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-radial-gradient(center, ellipse, #00c0f5 0%, #046aaf 100%);
  background: -o-radial-gradient(center, ellipse, #00c0f5 0%, #046aaf 100%);
  background: radial-gradient(ellipse at center, #00c0f5 0%, #046aaf 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00bff6', endColorstr='#0367ac', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */ }

.light-green {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#00c300+0,1a811a+100 */
  background: #00c300;
  /* Old browsers */
  background: -moz-radial-gradient(center, ellipse cover, #00c200 0%, #1b831b 100%);
  /* FF3.6-15 */
  background: -webkit-radial-gradient(center, ellipse cover, #00c200 0%, #1b831b 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-radial-gradient(center, ellipse, #00c200 0%, #1b831b 100%);
  background: -o-radial-gradient(center, ellipse, #00c200 0%, #1b831b 100%);
  background: radial-gradient(ellipse at center, #00c200 0%, #1b831b 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00c300', endColorstr='#1a811a', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */ }

.light-orange {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ff9300+0,ec600d+100 */
  background: #ff9300;
  /* Old browsers */
  background: -moz-radial-gradient(center, ellipse cover, #ff9500 0%, #ec5f0e 100%);
  /* FF3.6-15 */
  background: -webkit-radial-gradient(center, ellipse cover, #ff9500 0%, #ec5f0e 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-radial-gradient(center, ellipse, #ff9500 0%, #ec5f0e 100%);
  background: -o-radial-gradient(center, ellipse, #ff9500 0%, #ec5f0e 100%);
  background: radial-gradient(ellipse at center, #ff9500 0%, #ec5f0e 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff9300', endColorstr='#ec600d', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */ }

.light-red {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#c70505+0,791f1f+100 */
  background: #c70505;
  /* Old browsers */
  background: -moz-radial-gradient(center, ellipse cover, #c70505 0%, #7a1f1f 100%);
  /* FF3.6-15 */
  background: -webkit-radial-gradient(center, ellipse cover, #c70505 0%, #7a1f1f 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-radial-gradient(center, ellipse, #c70505 0%, #7a1f1f 100%);
  background: -o-radial-gradient(center, ellipse, #c70505 0%, #7a1f1f 100%);
  background: radial-gradient(ellipse at center, #c70505 0%, #7a1f1f 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c70505', endColorstr='#791f1f', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */ }

.clearfix, .wbox .box-top,
.bbox .box-top, .wbox .box-mid,
.bbox .box-mid {
  *zoom: 1; }
  .clearfix:before, .wbox .box-top:before,
  .bbox .box-top:before, .wbox .box-mid:before,
  .bbox .box-mid:before, .clearfix:after, .wbox .box-top:after,
  .bbox .box-top:after, .wbox .box-mid:after,
  .bbox .box-mid:after {
    display: table;
    content: ''; }
  .clearfix:after, .wbox .box-top:after,
  .bbox .box-top:after, .wbox .box-mid:after,
  .bbox .box-mid:after {
    clear: both; }

.no-margin {
  margin-left: 0;
  margin-right: 0; }

/* mixin */
/* body{
    background-image: -ms-linear-gradient(left, #4F5B5B 0%, #6E878E 100%);
    background-image: -moz-linear-gradient(left, #4F5B5B 0%, #6E878E 100%);
    background-image: -o-linear-gradient(left, #4F5B5B 0%, #6E878E 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #4F5B5B), color-stop(100, #6E878E));
    background-image: -webkit-linear-gradient(left, #4F5B5B 0%, #6E878E 100%);
    background-image: linear-gradient(to right, #4F5B5B 0%, #6E878E 100%);
} */
body,
html {
  font-family: JhengHei, "Microsoft JhengHei", Verdana, Arial, sans-serif;
  font-weight: 400;
  /*font-weight: 100/300/400/500/700/900*/
  /* $fontfamily_step: 'Comfortaa', cursive, Arial, sans-serif; */ }

.container header .headnav li a:before, .legend, .legend .ruler-box, #lds, #toast-container {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%); }

.container header .headtop .sidenav-trigger, .index .map .rwdmap .map-wrapper .legend-mobile ul.color li span {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%); }

.index .map .map-panel #nodata, .index .map .map-panel #nodata .msg-group {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.index .map .map-panel #nodata .msg-group div i.material-icons, .index .map .map-panel #nodata .msg-group h3, .classroom .main .content .cr-container .cr-cellXXX.info .info-body .body-l h5,
.classroom .main .content .cr-container .cr-cellXXX.info .info-body .body-r h5 {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4); }

.container .main, .container header, .msg-block, .wbox,
.bbox, .index .map .map-panel, .classroom .main .content .cr-container .cr-cellXXX.chat .chat-body .bubble .say, #modal-tolerance .modal-footer a {
  -webkit-box-shadow: 1px 5px 5px rgba(0, 0, 0, 0.5);
  box-shadow: 1px 5px 5px rgba(0, 0, 0, 0.5); }

.questionnaire .paper-wrapper .form-content .plus .satisfy input[type=checkbox] ~ span, .questionnaire .paper-wrapper .form-content .plus .satisfy input[type=radio] ~ span, .questionnaire .paper-wrapper .form-content .basic .with-title input[type=checkbox] ~ span, .questionnaire .paper-wrapper .form-content .basic .with-title input[type=radio] ~ span {
  color: black;
  padding-left: 25px;
  line-height: 22px; }

.questionnaire .paper-wrapper .form-content .plus .satisfy input[type=text], .questionnaire .paper-wrapper .form-content .basic .with-title input[type=text],
.questionnaire .paper-wrapper .form-content .basic .with-title input[type=tel] {
  color: #000;
  background-color: #fffaf4;
  border: 1px dashed grey;
  margin-right: 10px;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 4px 8px #fffaf4;
  box-shadow: 0 0 4px 8px #fffaf4;
  padding: 0 8px;
  -webkit-transition: all 0.25s 0s ease-in;
  -moz-transition: all 0.25s 0s ease-in;
  -ms-transition: all 0.25s 0s ease-in;
  -o-transition: all 0.25s 0s ease-in;
  transition: all 0.25s 0s ease-in; }
  .questionnaire .paper-wrapper .form-content .plus .satisfy input:focus[type=text], .questionnaire .paper-wrapper .form-content .basic .with-title input:focus[type=text],
  .questionnaire .paper-wrapper .form-content .basic .with-title input:focus[type=tel], .questionnaire .paper-wrapper .form-content .plus .satisfy input.valid[type=text], .questionnaire .paper-wrapper .form-content .basic .with-title input.valid[type=text],
  .questionnaire .paper-wrapper .form-content .basic .with-title input.valid[type=tel] {
    border-color: #666666;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    color: inherit; }
    .questionnaire .paper-wrapper .form-content .plus .satisfy input:focus[type=text] + label, .questionnaire .paper-wrapper .form-content .basic .with-title input:focus[type=text] + label, .questionnaire .paper-wrapper .form-content .basic .with-title input:focus[type=tel] + label, .questionnaire .paper-wrapper .form-content .plus .satisfy input.valid[type=text] + label, .questionnaire .paper-wrapper .form-content .basic .with-title input.valid[type=text] + label, .questionnaire .paper-wrapper .form-content .basic .with-title input.valid[type=tel] + label {
      color: #4d4d4d; }
  .questionnaire .paper-wrapper .form-content .plus .satisfy input[type=text] + label, .questionnaire .paper-wrapper .form-content .basic .with-title input[type=text] + label, .questionnaire .paper-wrapper .form-content .basic .with-title input[type=tel] + label {
    color: #666666; }
  .questionnaire .paper-wrapper .form-content .plus .satisfy input[disabled][type=text], .questionnaire .paper-wrapper .form-content .basic .with-title input[disabled][type=text],
  .questionnaire .paper-wrapper .form-content .basic .with-title input[disabled][type=tel] {
    background-color: #e6e6e6; }

body select.browser-default,
html select.browser-default, body div:not(.modal-content.datepicker-container) .select-wrapper,
html div:not(.modal-content.datepicker-container) .select-wrapper {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#cbcbcb+0,828282+100 */
  background: #cbcbcb;
  /* Old browsers */
  background: -moz-linear-gradient(top, #cccccc 0%, #828282 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #cccccc 0%, #828282 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(#cccccc), to(#828282));
  background: -o-linear-gradient(top, #cccccc 0%, #828282 100%);
  background: linear-gradient(to bottom, #cccccc 0%, #828282 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cbcbcb', endColorstr='#828282', GradientType=0);
  /* IE6-9 */ }

/*------------global---------------*/
.container {
  position: relative;
  max-width: 1600px;
  height: 100vh;
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }
  @media screen and (max-width: 992px) {
    .container {
      width: 94%; } }
  @media screen and (orientation: landscape) {
    .mobile .container {
      width: 100%; } }
  @media screen and (max-width: 600px) {
    .container {
      width: 100%; } }
  .container .main {
    -webkit-box-flex: 100%;
    -ms-flex: 100% 1 0px;
    flex: 100% 1 0;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    width: 100%;
    padding: 10px;
    background-color: #398593; }
    @media screen and (orientation: landscape) {
      .mobile .container .main {
        padding: 0; } }
    @media screen and (max-width: 600px) {
      .container .main {
        padding: 5px; } }
    .container .main .content {
      height: 100%; }
  .container header {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 0px;
    flex: 0 0 0;
    width: 100%;
    background: #398593;
    -webkit-transition: height 0.15s 0s ease;
    -moz-transition: height 0.15s 0s ease;
    -ms-transition: height 0.15s 0s ease;
    -o-transition: height 0.15s 0s ease;
    transition: height 0.15s 0s ease; }
    .container header .headtop {
      position: relative;
      padding: 0 6px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between; }
      .container header .headtop .logo-box {
        float: left;
        max-height: 120px;
        height: 50px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 5px 0; }
        .container header .headtop .logo-box .logo {
          -webkit-box-flex: 65px;
          -ms-flex: 65px 0 0px;
          flex: 65px 0 0;
          height: 100%;
          vertical-align: middle;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center; }
          .container header .headtop .logo-box .logo img {
            max-height: 100%;
            width: auto; }
            @media screen and (max-width: 414px) {
              .container header .headtop .logo-box .logo img {
                height: 85%; } }
        .container header .headtop .logo-box #title {
          -webkit-box-flex: 1;
          -ms-flex: 1 1 0px;
          flex: 1 1 0;
          color: #fff;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          padding: 0 0px;
          -webkit-transition: all 1s 0s ease;
          -moz-transition: all 1s 0s ease;
          -ms-transition: all 1s 0s ease;
          -o-transition: all 1s 0s ease;
          transition: all 1s 0s ease; }
          .container header .headtop .logo-box #title h1 {
            width: 100%;
            font-size: 1.25em;
            padding: 0;
            color: #f6f6ea;
            white-space: nowrap; }
      .container header .headtop .links-box {
        float: right;
        margin-top: 10px; }
        .container header .headtop .links-box a.btn {
          margin: 0 5px;
          line-height: 30px;
          height: 30px; }
        @media screen and (max-width: 600px) {
          .container header .headtop .links-box .dropdown-trigger.btn {
            right: 5px; }
            .container header .headtop .links-box .dropdown-trigger.btn i.material-icons {
              margin-left: 0; } }
        @media screen and (max-width: 370px) {
          .container header .headtop .links-box .dropdown-trigger.btn i + span {
            display: none; } }
        .container header .headtop .links-box #dd-link {
          padding-bottom: 0px; }
          .container header .headtop .links-box #dd-link li {
            min-height: unset;
            padding: 0px 5px; }
            .container header .headtop .links-box #dd-link li a {
              height: 35px;
              line-height: 35px;
              font-size: .9em;
              padding: 0 5px;
              color: #000000;
              font-weight: normal;
              border-bottom: 1px solid #cccccc; }
              .container header .headtop .links-box #dd-link li a:hover {
                color: #02C39A; }
            .container header .headtop .links-box #dd-link li:last-child a {
              border-bottom: 0; }
            .container header .headtop .links-box #dd-link li.divider {
              height: 2px;
              background-color: #999999;
              margin: 0;
              -webkit-transform: translateY(-1px);
              -moz-transform: translateY(-1px);
              -ms-transform: translateY(-1px);
              -o-transform: translateY(-1px);
              transform: translateY(-1px); }
      .container header .headtop .sidenav-trigger {
        right: 10px;
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 3px;
        background-color: #178282;
        color: #ffffff; }
        @media screen and (max-width: 992px) {
          .container header .headtop .sidenav-trigger {
            width: 30px;
            height: 30px;
            text-align: center; }
            .container header .headtop .sidenav-trigger i.material-icons {
              font-size: 20px;
              line-height: 30px; }
            .mobile .container header .headtop .sidenav-trigger {
              width: 25px;
              height: 25px; }
              .mobile .container header .headtop .sidenav-trigger i.material-icons {
                line-height: 25px; } }
        @media screen and (max-width: 600px) {
          .container header .headtop .sidenav-trigger {
            width: 25px;
            height: 25px; }
            .container header .headtop .sidenav-trigger i.material-icons {
              line-height: 25px; } }
        .container header .headtop .sidenav-trigger:hover {
          background-color: rgba(255, 255, 255, 0.4); }
      @media screen and (max-width: 992px) {
        .container header .headtop {
          height: 40px;
          padding: 2px 2% 0; }
          .container header .headtop .logo-box {
            float: unset;
            width: calc(100% - 40px);
            height: 40px; }
            .container header .headtop .logo-box #title h1 {
              line-height: 1rem;
              font-size: 1rem; } }
      @media screen and (max-width: 600px) {
        .container header .headtop .logo-box {
          float: unset; }
          .container header .headtop .logo-box #title h1 {
            font-size: .9em; } }
      @media screen and (max-width: 370px) {
        .container header .headtop .logo-box {
          float: unset; }
          .container header .headtop .logo-box #title h1 {
            font-size: .85em; } }
    .container header .headnav {
      display: block;
      padding: 7px 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
      flex-flow: row wrap;
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      justify-content: flex-end;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
      .container header .headnav li {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
        margin: 0 1px; }
        .container header .headnav li a {
          line-height: 1;
          color: #f6f6ea;
          font-size: .88em;
          font-weight: 500;
          background-color: transparent;
          border-radius: 99em;
          border: 1px solid #4eb6c2;
          padding: 8px 10px;
          text-align: center;
          -webkit-transition: all 0.2s 0 ease;
          -moz-transition: all 0.2s 0 ease;
          -ms-transition: all 0.2s 0 ease;
          -o-transition: all 0.2s 0 ease;
          transition: all 0.2s 0 ease; }
          @media screen and (min-width: 1201px) {
            .container header .headnav li a {
              font-size: .825em; } }
          .container header .headnav li a:before {
            content: '';
            bottom: 0;
            width: 0;
            height: 100%;
            opacity: 0; }
          .container header .headnav li a:hover {
            position: relative;
            color: #145247; }
            .container header .headnav li a:hover:before {
              width: 100%;
              opacity: .4;
              background-color: rgba(117, 240, 232, 0.8);
              z-index: -1; }
          @media screen and (min-width: 993px) {
            .container header .headnav li a:active {
              -webkit-transform: translateY(-1px);
              -ms-transform: translateY(-1px);
              transform: translateY(-1px);
              -webkit-box-shadow: inset 1px 1px 5px rgba(0, 0, 0, 0.85);
              box-shadow: inset 1px 1px 5px rgba(0, 0, 0, 0.85); } }
          .container header .headnav li a.btn-flash {
            -webkit-animation: btn-flash 1.5s linear 0s infinite normal;
            -moz-animation: btn-flash 1.5s linear 0s infinite normal;
            -ms-animation: btn-flash 1.5s linear 0s infinite normal;
            -o-animation: btn-flash 1.5s linear 0s infinite normal;
            animation: btn-flash 1.5s linear 0s infinite normal; }
    .slideup .container header {
      background: rgba(31, 173, 173, 0.85);
      background: -moz-linear-gradient(top, #1fadad 0, #1fadad 75px, #18d8cb 75px, #18d8cb 100%);
      background: -webkit-linear-gradient(top, #1fadad 0, #1fadad 75px, #18d8cb 75px, #18d8cb 100%);
      background: -o-linear-gradient(top, #1fadad 0, #1fadad 75px, #18d8cb 75px, #18d8cb 100%);
      background: linear-gradient(to bottom, #1fadad 0, #1fadad 75px, #18d8cb 75px, #18d8cb 100%);
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#29a3a3', endColorstr='#2eb8b8', GradientType=0); }
    .container header .headmsg {
      position: relative;
      display: none;
      height: 35px;
      margin: 0 auto;
      width: 100%;
      padding: 0 0px;
      background-color: #343838;
      overflow: hidden;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-transition: all 0.25s 0s ease-in;
      -moz-transition: all 0.25s 0s ease-in;
      -ms-transition: all 0.25s 0s ease-in;
      -o-transition: all 0.25s 0s ease-in;
      transition: all 0.25s 0s ease-in; }
      .container header .headmsg.active {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        height: 35px; }
      .container header .headmsg .headdiv {
        background-color: #005f6a;
        width: 150px; }
        .container header .headmsg .headdiv p {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center; }
      .container header .headmsg a.close {
        width: 20px;
        height: 20px;
        background-color: rgba(0, 0, 0, 0.5);
        text-align: center;
        border-radius: 99em;
        margin-left: 5px; }
        .container header .headmsg a.close i.material-icons {
          color: white;
          line-height: 20px;
          font-size: 100%; }
        .container header .headmsg a.close:hover {
          background-color: rgba(255, 255, 255, 0.5); }
          .container header .headmsg a.close:hover i {
            color: #00A896; }
      .container header .headmsg #headmsg.marquee {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
        flex: 1 1 0;
        height: 100%;
        padding: 0;
        margin: 0;
        list-style: none;
        line-height: 35px;
        position: relative;
        overflow: hidden; }
        .container header .headmsg #headmsg.marquee li {
          display: block;
          white-space: nowrap;
          padding-left: 10px; }
  .container .sidenav {
    width: 40vw;
    padding: 5px;
    background-color: #d4f7f7;
    border: 5px solid #40bfbf; }
    @media screen and (max-width: 600px) and (orientation: portrait) {
      .container .sidenav {
        width: 80vw; } }
    .container .sidenav li {
      border-top: 1px dashed rgba(0, 0, 0, 0.5); }
      .container .sidenav li:first-child, .container .sidenav li.divider,
      .container .sidenav li.divider + li {
        border-top: none; }
      .container .sidenav li a {
        height: auto;
        line-height: 20px;
        padding: 10px 5px;
        font-size: .88em; }
        .container .sidenav li a:hover {
          color: #00A896;
          background-color: rgba(0, 0, 0, 0.1); }
      .container .sidenav li.divider {
        background-color: unset;
        height: unset; }
        .container .sidenav li.divider h4 {
          font-size: .9em;
          color: rgba(0, 0, 0, 0.6);
          text-align: center;
          padding: 0;
          position: relative; }
          .container .sidenav li.divider h4:before, .container .sidenav li.divider h4:after {
            content: '';
            position: absolute;
            top: 50%;
            width: 20%;
            height: 1px;
            background-color: rgba(0, 0, 0, 0.25); }
          .container .sidenav li.divider h4:before {
            left: 10%; }
          .container .sidenav li.divider h4:after {
            right: 10%; }

footer {
  width: 100%;
  height: 25px;
  line-height: 25px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.6875em;
  text-align: center;
  letter-spacing: 1.2px;
  background-color: #264653;
  margin-top: 15px; }
  footer .gotop {
    width: 30px;
    height: 30px;
    padding: 0 20px 0;
    text-align: right; }

body,
html {
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  background: #055A81;
  background: -webkit-linear-gradient(118deg, #02344d 40%, #075b83 64%);
  background: -o-linear-gradient(118deg, #02344d 40%, #075b83 64%);
  background: linear-gradient(332deg, #02344d 40%, #075b83 64%);
  background: -webkit-linear-gradient(-33deg, #055A81 40%, #247599 64%);
  background: -moz-linear-gradient(-33deg, #055A81 40%, #247599 64%);
  background: -o-linear-gradient(-33deg, #055A81 40%, #247599 64%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='055A81', endColorstr='#247599', GradientType=1);
  background-attachment: fixed;
  font-size: 100%;
  line-height: 1.237;
  color: #f6f6ea; }
  body *,
  html * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  body h1,
  body h2,
  body h3,
  body h4,
  body h5,
  html h1,
  html h2,
  html h3,
  html h4,
  html h5 {
    padding-left: 15px;
    font-weight: 300; }
  body h1,
  html h1 {
    font-size: 1.5em;
    line-height: 1.875em;
    font-weight: 400; }
  body h2,
  html h2 {
    font-size: 1.375em;
    line-height: 1.75em; }
  body h3,
  html h3 {
    font-size: 1.25em;
    line-height: 1.5em; }
  body h4,
  html h4 {
    font-size: 1.125em;
    line-height: 1.375em; }
  body h5,
  html h5 {
    font-size: 0.9375em;
    line-height: 1.125em; }
  body h6,
  html h6 {
    font-size: 0.875em;
    line-height: 1.125em; }
  body p,
  html p {
    font-size: 1em;
    padding: .5em 0;
    line-height: 1.6em; }
  body a,
  html a {
    text-decoration: none;
    -webkit-box-sizing: border-box !important;
    box-sizing: border-box !important; }
    body a:active, body a:focus,
    html a:active,
    html a:focus {
      outline: none;
      color: inherit; }
  body input[type="text"]:not(.browser-default),
  html input[type="text"]:not(.browser-default) {
    color: white;
    font-size: 1.2em;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  body .input-field,
  html .input-field {
    padding: 0 0px;
    margin: 10px 0; }
    body .input-field input[type="text"]:not(.select-dropdown),
    html .input-field input[type="text"]:not(.select-dropdown) {
      margin: 0;
      height: 2rem;
      line-height: 2rem; }
    body .input-field input[type="text"]:not(.browser-default):disabled,
    html .input-field input[type="text"]:not(.browser-default):disabled {
      color: grey; }
    body .input-field label,
    html .input-field label {
      color: #b3b3b3; }
    body .input-field input + label,
    html .input-field input + label {
      color: #b3b3b3; }
    body .input-field::-webkit-input-placeholder,
    html .input-field::-webkit-input-placeholder {
      /* Chrome/Opera/Safari */
      color: #999999;
      font-size: 0.85em;
      text-align: left;
      padding-left: 0;
      padding-right: 0; }
    body .input-field::-moz-placeholder,
    html .input-field::-moz-placeholder {
      /* Firefox 19+ */
      color: #999999;
      font-size: 0.85em;
      text-align: left;
      padding-left: 0;
      padding-right: 0; }
    body .input-field:-ms-input-placeholder,
    html .input-field:-ms-input-placeholder {
      /* IE 10+ */
      color: #999999;
      font-size: 0.85em;
      text-align: left;
      padding-left: 0;
      padding-right: 0; }
    body .input-field:-moz-placeholder,
    html .input-field:-moz-placeholder {
      /* Firefox 18- */
      color: #999999;
      font-size: 0.85em;
      text-align: left;
      padding-left: 0;
      padding-right: 0; }
  body input[type="radio"]:not(.browser-default) + span,
  html input[type="radio"]:not(.browser-default) + span {
    padding-left: 25px; }
  body select.browser-default,
  html select.browser-default {
    color: black;
    /* -webkit-appearance: none;
        appearance: none; */
    border-radius: 99em; }
    body select.browser-default:focus,
    html select.browser-default:focus {
      outline: none; }
  body div:not(.modal-content.datepicker-container) .select-wrapper,
  html div:not(.modal-content.datepicker-container) .select-wrapper {
    border-radius: 99em;
    background: unset;
    margin-bottom: 10px; }
    body div:not(.modal-content.datepicker-container) .select-wrapper input[type="text"].select-dropdown,
    html div:not(.modal-content.datepicker-container) .select-wrapper input[type="text"].select-dropdown {
      border: 1px solid rgba(255, 255, 255, 0.5);
      border-radius: 3px;
      height: 2em;
      line-height: 2em;
      margin-bottom: unset;
      color: #eeeeee;
      font-size: 0.875em;
      font-weight: 500;
      padding-left: 8px;
      padding-right: 22px; }
      body div:not(.modal-content.datepicker-container) .select-wrapper input[type="text"].select-dropdown:focus,
      html div:not(.modal-content.datepicker-container) .select-wrapper input[type="text"].select-dropdown:focus {
        border-color: inherit; }
    body div:not(.modal-content.datepicker-container) .select-wrapper ul.dropdown-content.select-dropdown,
    html div:not(.modal-content.datepicker-container) .select-wrapper ul.dropdown-content.select-dropdown {
      max-height: 560px;
      top: 0 !important; }
      body div:not(.modal-content.datepicker-container) .select-wrapper ul.dropdown-content.select-dropdown li,
      html div:not(.modal-content.datepicker-container) .select-wrapper ul.dropdown-content.select-dropdown li {
        min-height: 40px;
        line-height: unset; }
        body div:not(.modal-content.datepicker-container) .select-wrapper ul.dropdown-content.select-dropdown li:hover,
        html div:not(.modal-content.datepicker-container) .select-wrapper ul.dropdown-content.select-dropdown li:hover {
          background-color: rgba(0, 0, 0, 0.1); }
        body div:not(.modal-content.datepicker-container) .select-wrapper ul.dropdown-content.select-dropdown li span,
        html div:not(.modal-content.datepicker-container) .select-wrapper ul.dropdown-content.select-dropdown li span {
          padding: 10px 5px;
          line-height: 1.25em; }
    body div:not(.modal-content.datepicker-container) .select-wrapper svg.caret,
    html div:not(.modal-content.datepicker-container) .select-wrapper svg.caret {
      fill: white; }
  body .select-dropdownX.dropdown-content,
  html .select-dropdownX.dropdown-content {
    border-radius: 5px; }
    body .select-dropdownX.dropdown-content li,
    html .select-dropdownX.dropdown-content li {
      line-height: 45px;
      min-height: 45px;
      border-bottom: 1px solid silver; }
      body .select-dropdownX.dropdown-content li:hover,
      html .select-dropdownX.dropdown-content li:hover {
        background-color: #f0f0f0; }
      body .select-dropdownX.dropdown-content li.active.selected,
      html .select-dropdownX.dropdown-content li.active.selected {
        background-color: #00A896; }
      body .select-dropdownX.dropdown-content li span,
      html .select-dropdownX.dropdown-content li span {
        padding: 8px 12px; }
  body a,
  html a {
    color: #00A896;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease; }
    body a:hover,
    html a:hover {
      text-decoration: none;
      color: rgba(255, 255, 255, 0.7); }
  body a.btn,
  body input.submit,
  html a.btn,
  html input.submit {
    color: white;
    line-height: 2rem;
    -webkit-transition: all 0.5s 0 ease;
    -moz-transition: all 0.5s 0 ease;
    -ms-transition: all 0.5s 0 ease;
    -o-transition: all 0.5s 0 ease;
    transition: all 0.5s 0 ease; }
    body a.btn:active,
    body input.submit:active,
    html a.btn:active,
    html input.submit:active {
      -webkit-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.4);
      box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.4); }
    body a.btn i.right,
    body input.submit i.right,
    html a.btn i.right,
    html input.submit i.right {
      margin: 0 -10px 0 2px; }
  body a:before,
  body a:after,
  html a:before,
  html a:after {
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease; }
  body a.btn.btn-primary,
  body a.btn-large.btn-primary,
  html a.btn.btn-primary,
  html a.btn-large.btn-primary {
    background-color: #035e81; }
    body a.btn.btn-primary:hover,
    body a.btn-large.btn-primary:hover,
    html a.btn.btn-primary:hover,
    html a.btn-large.btn-primary:hover {
      background-color: rgba(4, 108, 149, 0.9); }
  body input,
  html input {
    padding: 3px 5px; }
  body button,
  html button {
    outline: none;
    color: inherit; }
  body [disabled]:hover,
  html [disabled]:hover {
    cursor: not-allowed; }
  body .hchart,
  html .hchart {
    text-align: center; }
  body .show,
  html .show {
    display: block; }
  body .hide,
  html .hide {
    display: none; }
  body .divider,
  html .divider {
    background-color: #111111;
    margin: 10px 0; }
  body sup,
  body sub,
  html sup,
  html sub {
    font-size: .7em; }
  body .flex,
  html .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
  body .flex-col,
  html .flex-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }

/*------------ elements ---------------*/
.tab-wrapper .tabs {
  padding: 5px; }
  .tab-wrapper .tabs .tab {
    height: 35px; }
    .tab-wrapper .tabs .tab a {
      color: #333333;
      border-radius: 99em;
      height: 35px;
      line-height: 35px;
      background-color: #cccccc; }
      .tab-wrapper .tabs .tab a:hover {
        background-color: #8cd9d1; }
      .tab-wrapper .tabs .tab a.active {
        color: white;
        background-color: #428d8d; }
  .tab-wrapper .tabs .indicator {
    display: none; }

#gotop {
  position: fixed;
  right: 10px;
  bottom: 30px;
  width: 30px;
  height: 30px;
  text-align: center;
  color: white;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 5px;
  z-index: 499; }
  #gotop:hover {
    background-color: #00A896; }
  #gotop i.material-icons {
    line-height: 30px; }

span.stt-light {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 15px;
  flex: 0 1 15px;
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 99em;
  background-color: #666666;
  border: 1px solid #666666; }

.msg-block {
  width: 60%;
  margin: 10% auto;
  padding: 2em;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 5px;
  -webkit-transition: all 0.25s 0s ease-in;
  -moz-transition: all 0.25s 0s ease-in;
  -ms-transition: all 0.25s 0s ease-in;
  -o-transition: all 0.25s 0s ease-in;
  transition: all 0.25s 0s ease-in;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-animation: showmsg 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s 1 normal forwards;
  animation: showmsg 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s 1 normal forwards; }
  @media screen and (max-width: 600px) {
    .msg-block {
      width: 100%; } }
  .msg-block .msg-icon {
    padding: 10px; }
    .msg-block .msg-icon i {
      font-size: 4.375em;
      border-radius: 99em;
      background-color: rgba(255, 255, 255, 0.05);
      padding: 1rem;
      -webkit-transform: rotate3d(0, 1, 0, 0deg);
      -moz-transform: rotate3d(0, 1, 0, 0deg);
      -ms-transform: rotate3d(0, 1, 0, 0deg);
      -o-transform: rotate3d(0, 1, 0, 0deg);
      transform: rotate3d(0, 1, 0, 0deg);
      -webkit-animation: cyclone 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0s 1 normal forwards;
      animation: cyclone 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0s 1 normal forwards; }
  .msg-block .msg-text {
    line-height: 1.6em;
    text-align: justify; }
  .msg-block .msg-endup {
    font-size: 1.6em;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: .12em; }

.legend {
  position: absolute;
  height: 50px;
  overflow: hidden;
  z-index: 405;
  bottom: 0px;
  width: 250px;
  text-align: center;
  border-radius: 3px; }
  .legend .ruler-box {
    position: absolute;
    width: 100%;
    bottom: 50%;
    padding-bottom: 20px;
    -webkit-transition: all 0.25s 0s ease-in;
    -moz-transition: all 0.25s 0s ease-in;
    -ms-transition: all 0.25s 0s ease-in;
    -o-transition: all 0.25s 0s ease-in;
    transition: all 0.25s 0s ease-in;
    opacity: 0; }
    .legend .ruler-box.active {
      bottom: 0;
      opacity: 1; }
    .legend .ruler-box .ruler-top {
      color: black;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      padding: 0 8px;
      -webkit-box-align: end;
      -ms-flex-align: end;
      align-items: end;
      font-size: .85rem; }
      .legend .ruler-box .ruler-top .title {
        font-size: 1em; }
      .legend .ruler-box .ruler-top .unit {
        font-size: .7em;
        color: inherit; }
        .legend .ruler-box .ruler-top .unit sup {
          -webkit-transform: scale(0.6);
          -moz-transform: scale(0.6);
          -ms-transform: scale(0.6);
          -o-transform: scale(0.6);
          transform: scale(0.6); }
    .legend .ruler-box ul.color-bar {
      position: relative;
      border: 1px solid #666666;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      width: 95%;
      margin: 0 auto;
      background: #b4ddb4; }
      .legend .ruler-box ul.color-bar li {
        position: relative;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
        flex: 1 1 0;
        font-size: .7rem;
        color: black;
        height: 4px;
        -webkit-transition: all 0.25s 0s ease-in;
        -moz-transition: all 0.25s 0s ease-in;
        -ms-transition: all 0.25s 0s ease-in;
        -o-transition: all 0.25s 0s ease-in;
        transition: all 0.25s 0s ease-in;
        position: relative; }
        .legend .ruler-box ul.color-bar li:last-child {
          -webkit-box-flex: unset;
          -ms-flex: unset;
          flex: unset;
          width: 0; }
        .legend .ruler-box ul.color-bar li span {
          line-height: 25px;
          position: absolute;
          left: 0;
          text-indent: -110%;
          -webkit-transform: scale(0.8);
          -moz-transform: scale(0.8);
          -ms-transform: scale(0.8);
          -o-transform: scale(0.8);
          transform: scale(0.8); }
  .legend #ruler-vocz ul.color-bar {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#1e5799+0,2989d8+50,7db9e8+100 */
    background: #1e5799;
    /* Old browsers */
    background: -moz-linear-gradient(left, #80b939 0%, #80b939 33%, #fdee1c 33.3%, #fdee1c 66.5%, #e5701a 66.6%, #e5701a 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #80b939 0%, #80b939 33%, #fdee1c 33.3%, #fdee1c 66.5%, #e5701a 66.6%, #e5701a 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, right top, from(#80b939), color-stop(33%, #80b939), color-stop(33.3%, #fdee1c), color-stop(66.5%, #fdee1c), color-stop(66.6%, #e5701a), to(#e5701a));
    background: -o-linear-gradient(left, #80b939 0%, #80b939 33%, #fdee1c 33.3%, #fdee1c 66.5%, #e5701a 66.6%, #e5701a 100%);
    background: linear-gradient(to right, #80b939 0%, #80b939 33%, #fdee1c 33.3%, #fdee1c 66.5%, #e5701a 66.6%, #e5701a 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1e5799', endColorstr='#e5701a', GradientType=1);
    /* IE6-9 */ }
  .legend #ruler-pm25 ul.color-bar li:nth-child(1) {
    background-color: #00c168; }
  .legend #ruler-pm25 ul.color-bar li:nth-child(2) {
    background-color: #fffc42; }
  .legend #ruler-pm25 ul.color-bar li:nth-child(3) {
    background-color: #fc983b; }
  .legend #ruler-pm25 ul.color-bar li:nth-child(4) {
    background-color: #cc0032; }
  .legend #ruler-pm25 ul.color-bar li:nth-child(5) {
    background-color: #670096; }
  .legend #ruler-pm25 ul.color-bar li:nth-child(6) {
    background-color: #7f0022; }
  .legend #ruler-pm25 ul.color-bar li:nth-child(7) {
    background-color: #7f0022; }
  .legend #ruler-pm25 ul.color-bar li:nth-child(8) {
    background-color: #7f0022; }

/*------------ raised box ---------------*/
/* bbox需跟著row以縮小margin-bottom */
.wbox {
  background-color: rgba(255, 255, 255, 0.3); }

.bbox {
  background-color: #0d1112;
  border: 1px solid #313131; }

.wbox,
.bbox {
  border-radius: 2px; }
  .wbox .box-top,
  .bbox .box-top {
    position: relative; }
    .wbox .box-top .box-title,
    .bbox .box-top .box-title {
      line-height: 30px; }
      .wbox .box-top .box-title.center,
      .bbox .box-top .box-title.center {
        text-align: center; }
      .wbox .box-top .box-title h4,
      .bbox .box-top .box-title h4 {
        line-height: 40px; }
    .wbox .box-top .box-controller,
    .bbox .box-top .box-controller {
      position: absolute;
      top: 0;
      right: 10px; }
      .wbox .box-top .box-controller span,
      .bbox .box-top .box-controller span {
        float: left;
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.875em;
        line-height: 40px; }
      .wbox .box-top .box-controller a,
      .bbox .box-top .box-controller a {
        float: left;
        position: relative;
        color: rgba(255, 255, 255, 0.6);
        width: 40px;
        text-align: center; }
        .wbox .box-top .box-controller a i.material-icons,
        .bbox .box-top .box-controller a i.material-icons {
          font-size: 1.25em;
          line-height: 40px; }
        .wbox .box-top .box-controller a:after,
        .bbox .box-top .box-controller a:after {
          content: "";
          position: absolute;
          top: 50%;
          left: 50%;
          -webkit-transform: translate(-50%, -50%);
          -moz-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
          -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
          width: 0%;
          height: 0%;
          border-radius: 99em;
          background-color: rgba(255, 255, 255, 0); }
        .wbox .box-top .box-controller a:hover,
        .bbox .box-top .box-controller a:hover {
          color: white; }
        .wbox .box-top .box-controller a:hover:after,
        .bbox .box-top .box-controller a:hover:after {
          width: 80%;
          height: 80%;
          background-color: rgba(255, 255, 255, 0.1); }
  .wbox .box-mid,
  .bbox .box-mid {
    padding: 10px 15px; }
    @media screen and (max-width: 414px) {
      .wbox .box-mid,
      .bbox .box-mid {
        padding: 5px; } }
    .wbox .box-mid .box-form .row > label,
    .bbox .box-mid .box-form .row > label {
      color: white;
      text-align: center; }
    .wbox .box-mid .box-form .form-footer,
    .bbox .box-mid .box-form .form-footer {
      text-align: center; }
  .wbox .box-top + .box-mid,
  .bbox .box-top + .box-mid {
    padding: 8px 10px; }
  .wbox p,
  .wbox span,
  .bbox p,
  .bbox span {
    word-break: break-word; }

/*------------ modal new ---------------*/
.modal,
.modal.modal-fixed-footer {
  padding: 0;
  color: #c1c3c5;
  font-weight: 500;
  background-color: #212121;
  width: 90%;
  height: 70%;
  max-height: 90%;
  border: 1px solid #4b4b4b; }
  @media screen and (min-width: 601px) {
    .modal,
    .modal.modal-fixed-footer {
      width: 65%; } }
  @media screen and (min-width: 993px) {
    .modal,
    .modal.modal-fixed-footer {
      width: 40%; } }
  @media screen and (min-width: 1200px) and (orientation: landscape) {
    .modal,
    .modal.modal-fixed-footer {
      top: 13% !important;
      height: 53%;
      width: 45%; } }
  .modal.modal-short,
  .modal.modal-fixed-footer.modal-short {
    height: auto;
    border-radius: 8px; }
    .modal.modal-short .modal-header,
    .modal.modal-fixed-footer.modal-short .modal-header {
      height: 30px; }
      .modal.modal-short .modal-header h4,
      .modal.modal-fixed-footer.modal-short .modal-header h4 {
        line-height: 30px;
        font-size: 1em;
        text-align: left; }
      .modal.modal-short .modal-header a.modal-close,
      .modal.modal-fixed-footer.modal-short .modal-header a.modal-close {
        height: 30px; }
        .modal.modal-short .modal-header a.modal-close i.material-icons,
        .modal.modal-fixed-footer.modal-short .modal-header a.modal-close i.material-icons {
          line-height: 30px; }
    .modal.modal-short .modal-content,
    .modal.modal-fixed-footer.modal-short .modal-content {
      padding: 5px 15px;
      font-size: .88em; }
  @media screen and (min-width: 601px) {
    .modal.modal-2col,
    .modal.modal-fixed-footer.modal-2col {
      width: 80%; } }
  @media screen and (min-width: 993px) {
    .modal.modal-2col,
    .modal.modal-fixed-footer.modal-2col {
      width: 60%; } }
  @media screen and (min-width: 601px) {
    .modal.modal-3col,
    .modal.modal-fixed-footer.modal-3col {
      width: 80%; } }
  @media screen and (min-width: 993px) {
    .modal.modal-3col,
    .modal.modal-fixed-footer.modal-3col {
      width: 70%; } }
  .modal .modal-header,
  .modal.modal-fixed-footer .modal-header {
    height: 30px;
    margin-bottom: 2px; }
    .modal .modal-header h4,
    .modal.modal-fixed-footer .modal-header h4 {
      line-height: 30px;
      font-weight: inherit;
      text-align: center; }
    .modal .modal-header a.modal-close,
    .modal.modal-fixed-footer .modal-header a.modal-close {
      position: absolute;
      top: 0;
      right: 0;
      width: 30px;
      height: 30px;
      color: inherit;
      text-align: center; }
      .modal .modal-header a.modal-close i.material-icons,
      .modal.modal-fixed-footer .modal-header a.modal-close i.material-icons {
        line-height: 30px; }
    .modal .modal-header .divider,
    .modal.modal-fixed-footer .modal-header .divider {
      background-color: rgba(0, 0, 0, 0.4);
      margin: 0 0 20px; }
  .modal .modal-footer,
  .modal.modal-fixed-footer .modal-footer {
    z-index: 91;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    background-color: #212121;
    padding: 5px 20px 0;
    border-top: 0; }
    .modal .modal-footer a,
    .modal.modal-fixed-footer .modal-footer a {
      -webkit-box-flex: 0;
      -ms-flex: 0 1 150px;
      flex: 0 1 150px;
      width: 100px;
      height: 40px;
      line-height: 34px;
      text-align: center;
      border-radius: 5px; }
      .modal .modal-footer a:first-child,
      .modal.modal-fixed-footer .modal-footer a:first-child {
        margin-right: 5px; }
  .modal .modal-content,
  .modal.modal-fixed-footer .modal-content {
    z-index: 90;
    padding: 10px 20px;
    height: calc(100% - 45px); }
    @media screen and (max-width: 600px) {
      .modal .modal-content,
      .modal.modal-fixed-footer .modal-content {
        padding-left: 12px;
        /*消除內部row的margin: -12px會產生捲軸*/
        padding-right: 12px; } }
    .modal .modal-content h5,
    .modal.modal-fixed-footer .modal-content h5 {
      display: inline-block;
      font-weight: inherit;
      border-radius: 4px;
      padding: 20px 10px 5px; }
    .modal .modal-content .modal-box,
    .modal.modal-fixed-footer .modal-content .modal-box {
      background-color: #333333;
      border: 1px solid #4b4b4b;
      padding-bottom: 10px;
      margin-bottom: 10px; }
  .modal .mylabel,
  .modal.modal-fixed-footer .mylabel {
    color: inherit; }
  .modal .same-height,
  .modal.modal-fixed-footer .same-height {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    .modal .same-height > div,
    .modal.modal-fixed-footer .same-height > div {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      padding: 0 5px; }

/* add btn */
.btn.modal-trigger {
  white-space: nowrap; }

.btn.btn-small {
  font-size: 0.875em;
  text-transform: capitalize;
  padding: 0 15px;
  height: 28px;
  line-height: 28px;
  font-weight: 500;
  margin-right: 5px; }
  .btn.btn-small i.material-icons {
    font-size: 1em;
    margin-right: 0.625em; }

.btn.btn-large {
  line-height: 3rem; }

/*------------ marquee ---------------*/
/*------------ toast ---------------*/
/*------------ date time picker ---------------*/
.datepicker-wrapper .start-block,
.datepicker-wrapper .end-block {
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.2); }
  .datepicker-wrapper .start-block .pick-title,
  .datepicker-wrapper .end-block .pick-title {
    text-align: center;
    font-size: 1em;
    height: 2em;
    line-height: 2em;
    background-color: rgba(0, 0, 0, 0.2); }
    .datepicker-wrapper .start-block .pick-title + .row,
    .datepicker-wrapper .end-block .pick-title + .row {
      padding: 15px; }
  .datepicker-wrapper .start-block label + .select-wrapper,
  .datepicker-wrapper .end-block label + .select-wrapper {
    margin-top: 10px; }

.datepicker-wrapper .btn-search-video {
  text-align: center;
  padding: 20px; }

/*------------ Table ---------------*/
.tg {
  border-collapse: collapse;
  border-spacing: 0; }
  .tg th {
    border-color: black;
    border-style: solid;
    border-width: 1px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    overflow: hidden;
    padding: 10px 5px;
    word-break: normal; }
  .tg td {
    border-color: black;
    border-style: solid;
    border-width: 1px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    overflow: hidden;
    padding: 10px 5px;
    word-break: normal; }
  .tg .tg-0pky {
    border-color: inherit;
    text-align: left;
    vertical-align: top; }
  .tg .tg-0lax {
    text-align: left;
    vertical-align: top; }

/*------------ Div Table ---------------*/
.divTable {
  display: table;
  background-color: #EEEEEE;
  width: 100%;
  text-align: left;
  border-collapse: collapse;
  margin-bottom: 20px; }
  .divTable .tableFootStyle {
    font-size: 14px;
    font-weight: bold;
    color: #FFFFFF;
    background: #D0E4F5;
    background: -moz-linear-gradient(top, #dcebf7 0%, #d4e6f6 66%, #D0E4F5 100%);
    background: -webkit-linear-gradient(top, #dcebf7 0%, #d4e6f6 66%, #D0E4F5 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(#dcebf7), color-stop(66%, #d4e6f6), to(#D0E4F5));
    background: -o-linear-gradient(top, #dcebf7 0%, #d4e6f6 66%, #D0E4F5 100%);
    background: linear-gradient(to bottom, #dcebf7 0%, #d4e6f6 66%, #D0E4F5 100%);
    border-top: 2px solid #444444;
    font-size: 14px; }
    .divTable .tableFootStyle .links {
      text-align: right; }
      .divTable .tableFootStyle .links a {
        display: inline-block;
        background: #1C6EA4;
        color: #FFFFFF;
        padding: 2px 8px;
        border-radius: 5px; }
  .divTable.outerTableFooter {
    border-top: none; }
    .divTable.outerTableFooter .tableFootStyle {
      padding: 3px 5px; }
  .divTable .divTableCell,
  .divTable .divTableHead {
    display: table-cell;
    border: 1px solid #AAAAAA;
    padding: 3px 2px; }
  .divTable .divTableBody {
    display: table-row-group; }
  .divTable .divTableBody .divTableCell {
    font-size: 13px; }
  .divTable .divTableRow {
    display: table-row; }
  .divTable .divTableHeading {
    display: table-header-group;
    background-color: #40968c;
    border-bottom: 2px solid #444444; }
    .divTable .divTableHeading .divTableRow {
      display: table-row; }
      .divTable .divTableHeading .divTableRow .divTableHead {
        font-size: 15px;
        font-weight: bold;
        color: #FFFFFF;
        border-left: 2px solid #D0E4F5; }
        .divTable .divTableHeading .divTableRow .divTableHead:first-child {
          border-left: none; }

/*------------ data table ---------------*/
.dataTables_wrapper tfoot tr th select {
  display: table-cell; }

.dataTables_wrapper .dataTables_length {
  margin-bottom: 8px; }
  .dataTables_wrapper .dataTables_length label {
    font-size: 12px;
    color: #333333; }
  .dataTables_wrapper .dataTables_length select {
    display: inline-block;
    width: 60px;
    height: 25px;
    color: black;
    padding: 0 0 0 15px;
    background-color: rgba(255, 255, 255, 0.25);
    border: 1px solid #999999;
    position: relative; }
    .dataTables_wrapper .dataTables_length select:focus, .dataTables_wrapper .dataTables_length select:active, .dataTables_wrapper .dataTables_length select:visited {
      outline: none; }
    .dataTables_wrapper .dataTables_length select:after {
      content: 'XXXXX';
      position: absolute;
      top: 0;
      left: 0;
      width: 30px;
      height: 30px;
      color: red; }

.dataTables_wrapper .dataTables_filter {
  text-align: left; }
  .dataTables_wrapper .dataTables_filter label {
    font-size: 0.8125em;
    color: #cccccc; }
  .dataTables_wrapper .dataTables_filter input {
    width: 150px;
    height: 1.7rem;
    margin-bottom: 10px; }

.dataTables_wrapper table.display.dataTable {
  border: 1px solid #999999;
  word-break: break-word;
  font-size: 0.875em; }
  .dataTables_wrapper table.display.dataTable a:hover,
  .dataTables_wrapper table.display.dataTable a:focus,
  .dataTables_wrapper table.display.dataTable a:active,
  .dataTables_wrapper table.display.dataTable th:hover,
  .dataTables_wrapper table.display.dataTable th:focus {
    outline: none !important; }
  .dataTables_wrapper table.display.dataTable td,
  .dataTables_wrapper table.display.dataTable th {
    border-radius: unset;
    padding: 8px; }
  .dataTables_wrapper table.display.dataTable thead tr {
    background-color: #9cc9c4; }
    .dataTables_wrapper table.display.dataTable thead tr th {
      min-width: 35px;
      text-align: center; }
      .dataTables_wrapper table.display.dataTable thead tr th:first-child {
        padding-left: 10px; }
      .dataTables_wrapper table.display.dataTable thead tr th:last-child {
        padding-right: 10px; }
  .dataTables_wrapper table.display.dataTable tbody tr td:first-child {
    padding-left: 10px; }
  .dataTables_wrapper table.display.dataTable tbody tr td:last-child {
    padding-right: 10px; }
  .dataTables_wrapper table.display.dataTable tr td {
    font-size: 0.875em;
    border-top: 1px solid #333333;
    vertical-align: middle;
    text-align: center; }
  .dataTables_wrapper table.display.dataTable tr > td a {
    color: #037c70; }
    .dataTables_wrapper table.display.dataTable tr > td a:hover {
      color: #02C39A; }
    .dataTables_wrapper table.display.dataTable tr > td a .material-icons {
      font-size: 22px; }
  .dataTables_wrapper table.display.dataTable tr .select-wrapper input[type="text"].select-dropdown {
    height: 1.8rem;
    color: #333333;
    text-indent: 8px;
    font-size: 1em; }
  .dataTables_wrapper table.display.dataTable .t-utime {
    width: 20%; }
  .dataTables_wrapper table.display.dataTable .t-reason {
    width: 15%; }
  .dataTables_wrapper table.display.dataTable .t-link {
    width: 10%; }
  .dataTables_wrapper table.display.dataTable .t-select {
    width: 25%; }
  .dataTables_wrapper table.display.dataTable .t-submit {
    width: 20%; }
  .dataTables_wrapper table.display.dataTable .t-select {
    max-width: 200px; }
  .dataTables_wrapper table.display.dataTable .btn-info {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    .dataTables_wrapper table.display.dataTable .btn-info i.material-icons {
      font-size: 1.2rem;
      padding-right: 2px; }
  .dataTables_wrapper table.display.dataTable .t-serial {
    width: 10%;
    max-width: 60px; }
  .dataTables_wrapper table.display.dataTable .t-id {
    width: 10%;
    max-width: 80px; }
  .dataTables_wrapper table.display.dataTable .t-eui {
    width: 10%;
    max-width: 160px;
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis; }
  .dataTables_wrapper table.display.dataTable .t-info {
    width: 10%;
    max-width: 100px; }
  .dataTables_wrapper table.display.dataTable .t-link {
    text-align: center; }
  .dataTables_wrapper table.display.dataTable .t-submit {
    text-align: center; }
    .dataTables_wrapper table.display.dataTable .t-submit a.btn {
      color: white;
      height: unset; }
  .dataTables_wrapper table.display.dataTable .t-edit {
    min-width: 35px;
    white-space: nowrap;
    text-align: center; }
    .dataTables_wrapper table.display.dataTable .t-edit a {
      display: inline-block;
      height: 22px;
      width: 22px;
      border-radius: 3px; }
      .dataTables_wrapper table.display.dataTable .t-edit a:hover {
        background-color: rgba(255, 255, 255, 0.15); }
      .dataTables_wrapper table.display.dataTable .t-edit a img {
        width: 100%;
        padding: 3px;
        max-height: 100%; }
  .dataTables_wrapper table.display.dataTable .t-icon span.tb-icon {
    display: inline-block;
    width: 22px; }
    .dataTables_wrapper table.display.dataTable .t-icon span.tb-icon img {
      width: 100%; }
  .dataTables_wrapper table.display.dataTable .t-light {
    margin: 0 2px; }
    .dataTables_wrapper table.display.dataTable .t-light span.tb-light {
      display: inline-block;
      width: 15px;
      height: 15px;
      line-height: 15px;
      border-radius: 99em;
      border: 1px solid #666666;
      background-color: #666666; }

.dataTables_wrapper #data-table_info {
  font-size: 0.8125em;
  color: #cccccc; }

.dataTables_wrapper .dataTables_paginate a.paginate_button {
  outline: none !important;
  border-radius: 4px;
  border: none;
  padding: .2em .3em;
  font-size: 0.8125em;
  color: #cccccc; }
  .dataTables_wrapper .dataTables_paginate a.paginate_button:hover {
    color: red;
    background: #53b6aa;
    border: none; }
  .dataTables_wrapper .dataTables_paginate a.paginate_button.current {
    color: white;
    background: #77c5bc; }
  .dataTables_wrapper .dataTables_paginate a.paginate_button.previous, .dataTables_wrapper .dataTables_paginate a.paginate_button.next {
    border-radius: 5px;
    vertical-align: middle;
    color: #40968c; }
    .dataTables_wrapper .dataTables_paginate a.paginate_button.previous.disabled, .dataTables_wrapper .dataTables_paginate a.paginate_button.next.disabled {
      color: #999999 !important; }
    .dataTables_wrapper .dataTables_paginate a.paginate_button.previous.disabled:hover, .dataTables_wrapper .dataTables_paginate a.paginate_button.next.disabled:hover {
      cursor: not-allowed;
      background-color: unset; }
  .dataTables_wrapper .dataTables_paginate a.paginate_button.previous i {
    -webkit-transform: rotate3d(0, 1, 0, 180deg);
    -moz-transform: rotate3d(0, 1, 0, 180deg);
    -ms-transform: rotate3d(0, 1, 0, 180deg);
    -o-transform: rotate3d(0, 1, 0, 180deg);
    transform: rotate3d(0, 1, 0, 180deg); }

.dataTables_wrapper .dataTables_paginate .ellipsis {
  font-size: 0.8125em;
  color: #333333; }

/*------------ loading spinner ---------------*/
#lds {
  border: 1px solid red;
  position: fixed;
  bottom: 15px;
  z-index: 999; }

.lds-ring {
  display: inline-block;
  position: relative;
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px; }

.lds-ring div {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  margin: 10px;
  border: 8px solid #fff;
  border-radius: 50%;
  -webkit-animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent; }

.lds-ring div:nth-child(1) {
  -webkit-animation-delay: -0.45s;
  animation-delay: -0.45s; }

.lds-ring div:nth-child(2) {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s; }

.lds-ring div:nth-child(3) {
  -webkit-animation-delay: -0.15s;
  animation-delay: -0.15s; }

@-webkit-keyframes lds-ring {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes lds-ring {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

/*===================== animation =====================*/
@-webkit-keyframes btn-flash {
  0% {
    background-color: inherit; }
  50% {
    background-color: #2dd2c5; }
  100% {
    background-color: inherit; } }
@keyframes btn-flash {
  0% {
    background-color: inherit; }
  50% {
    background-color: #2dd2c5; }
  100% {
    background-color: inherit; } }

@-webkit-keyframes flagmove {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  50% {
    -webkit-transform: translate3d(0, -3px, 0);
    transform: translate3d(0, -3px, 0); }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes flagmove {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  50% {
    -webkit-transform: translate3d(0, -3px, 0);
    transform: translate3d(0, -3px, 0); }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@-webkit-keyframes fanrun {
  0% {
    -webkit-transform: rotate3D(0, 0, 1, 360deg);
    -moz-transform: rotate3D(0, 0, 1, 360deg);
    -ms-transform: rotate3D(0, 0, 1, 360deg);
    -o-transform: rotate3D(0, 0, 1, 360deg);
    transform: rotate3D(0, 0, 1, 360deg); }
  100% {
    -webkit-transform: rotate3D(0, 0, 1, 360deg);
    -moz-transform: rotate3D(0, 0, 1, 360deg);
    -ms-transform: rotate3D(0, 0, 1, 360deg);
    -o-transform: rotate3D(0, 0, 1, 360deg);
    transform: rotate3D(0, 0, 1, 360deg); } }

@keyframes fanrun {
  0% {
    -webkit-transform: rotate3D(0, 0, 1, 360deg);
    -moz-transform: rotate3D(0, 0, 1, 360deg);
    -ms-transform: rotate3D(0, 0, 1, 360deg);
    -o-transform: rotate3D(0, 0, 1, 360deg);
    transform: rotate3D(0, 0, 1, 360deg); }
  100% {
    -webkit-transform: rotate3D(0, 0, 1, 360deg);
    -moz-transform: rotate3D(0, 0, 1, 360deg);
    -ms-transform: rotate3D(0, 0, 1, 360deg);
    -o-transform: rotate3D(0, 0, 1, 360deg);
    transform: rotate3D(0, 0, 1, 360deg); } }

@-webkit-keyframes cyclone {
  0% {
    -webkit-transform: rotate3D(0, 1, 0, 900deg);
    -moz-transform: rotate3D(0, 1, 0, 900deg);
    -ms-transform: rotate3D(0, 1, 0, 900deg);
    -o-transform: rotate3D(0, 1, 0, 900deg);
    transform: rotate3D(0, 1, 0, 900deg); }
  100% {
    -webkit-transform: rotate3D(0, 1, 0, 900deg);
    -moz-transform: rotate3D(0, 1, 0, 900deg);
    -ms-transform: rotate3D(0, 1, 0, 900deg);
    -o-transform: rotate3D(0, 1, 0, 900deg);
    transform: rotate3D(0, 1, 0, 900deg); } }

@keyframes cyclone {
  0% {
    -webkit-transform: rotate3D(0, 1, 0, 900deg);
    -moz-transform: rotate3D(0, 1, 0, 900deg);
    -ms-transform: rotate3D(0, 1, 0, 900deg);
    -o-transform: rotate3D(0, 1, 0, 900deg);
    transform: rotate3D(0, 1, 0, 900deg); }
  100% {
    -webkit-transform: rotate3D(0, 1, 0, 900deg);
    -moz-transform: rotate3D(0, 1, 0, 900deg);
    -ms-transform: rotate3D(0, 1, 0, 900deg);
    -o-transform: rotate3D(0, 1, 0, 900deg);
    transform: rotate3D(0, 1, 0, 900deg); } }

@-webkit-keyframes alarm-shake {
  0% {
    -webkit-transform: rotate3D(0, 0, 1, 15deg);
    -moz-transform: rotate3D(0, 0, 1, 15deg);
    -ms-transform: rotate3D(0, 0, 1, 15deg);
    -o-transform: rotate3D(0, 0, 1, 15deg);
    transform: rotate3D(0, 0, 1, 15deg); }
  100% {
    -webkit-transform: rotate3D(0, 0, 1, -15deg);
    -moz-transform: rotate3D(0, 0, 1, -15deg);
    -ms-transform: rotate3D(0, 0, 1, -15deg);
    -o-transform: rotate3D(0, 0, 1, -15deg);
    transform: rotate3D(0, 0, 1, -15deg); } }

@keyframes alarm-shake {
  0% {
    -webkit-transform: rotate3D(0, 0, 1, 15deg);
    -moz-transform: rotate3D(0, 0, 1, 15deg);
    -ms-transform: rotate3D(0, 0, 1, 15deg);
    -o-transform: rotate3D(0, 0, 1, 15deg);
    transform: rotate3D(0, 0, 1, 15deg); }
  100% {
    -webkit-transform: rotate3D(0, 0, 1, -15deg);
    -moz-transform: rotate3D(0, 0, 1, -15deg);
    -ms-transform: rotate3D(0, 0, 1, -15deg);
    -o-transform: rotate3D(0, 0, 1, -15deg);
    transform: rotate3D(0, 0, 1, -15deg); } }

/*===================== range customizing =====================*/
.leaflet-container .leaflet-popup-pane .popupBox {
  width: 200px; }

.leaflet-control input[type='range'].time-slider {
  -webkit-appearance: none;
  background: transparent;
  margin: 9px 0;
  width: 100%; }
  .leaflet-control input[type='range'].time-slider::-moz-focus-outer {
    border: 0; }
  .leaflet-control input[type='range'].time-slider:focus {
    outline: 0; }
    .leaflet-control input[type='range'].time-slider:focus::-webkit-slider-runnable-track {
      background: #fbfbfc; }
    .leaflet-control input[type='range'].time-slider:focus::-ms-fill-lower {
      background: #eceff1; }
    .leaflet-control input[type='range'].time-slider:focus::-ms-fill-upper {
      background: #fbfbfc; }
  .leaflet-control input[type='range'].time-slider::-webkit-slider-runnable-track {
    cursor: default;
    height: 4px;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    width: 100%;
    -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2), 0 0 1px rgba(13, 13, 13, 0.2);
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2), 0 0 1px rgba(13, 13, 13, 0.2);
    background: #eceff1;
    border: 0px solid #cfd8dc;
    border-radius: 5px; }
  .leaflet-control input[type='range'].time-slider::-webkit-slider-thumb {
    -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2), 0 0 4px rgba(13, 13, 13, 0.2);
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2), 0 0 4px rgba(13, 13, 13, 0.2);
    background: #339999 !important;
    border: 0px solid #eceff1;
    border-radius: 12px;
    cursor: pointer;
    height: 18px;
    width: 18px;
    -webkit-appearance: none;
    margin-top: -7px; }
  .leaflet-control input[type='range'].time-slider::-moz-range-track {
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2), 0 0 1px rgba(13, 13, 13, 0.2);
    cursor: default;
    height: 4px;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    width: 100%;
    background: #eceff1;
    border: 0px solid #cfd8dc;
    border-radius: 5px;
    height: 2px; }
  .leaflet-control input[type='range'].time-slider::-moz-range-thumb {
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2), 0 0 4px rgba(13, 13, 13, 0.2);
    background: #339999 !important;
    border: 0px solid #eceff1;
    border-radius: 12px;
    cursor: pointer;
    height: 14px;
    width: 14px; }
  .leaflet-control input[type='range'].time-slider::-ms-track {
    cursor: default;
    height: 4px;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    width: 100%;
    background: transparent;
    border-color: transparent;
    border-width: 9px 0;
    color: transparent; }
  .leaflet-control input[type='range'].time-slider::-ms-fill-lower {
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2), 0 0 1px rgba(13, 13, 13, 0.2);
    background: #dde3e6;
    border: 0px solid #cfd8dc;
    border-radius: 10px; }
  .leaflet-control input[type='range'].time-slider::-ms-fill-upper {
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2), 0 0 1px rgba(13, 13, 13, 0.2);
    background: #eceff1;
    border: 0px solid #cfd8dc;
    border-radius: 10px; }
  .leaflet-control input[type='range'].time-slider::-ms-thumb {
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2), 0 0 4px rgba(13, 13, 13, 0.2);
    background: #339999 !important;
    border: 0px solid #eceff1;
    border-radius: 12px;
    cursor: pointer;
    height: 14px;
    width: 14px;
    margin-top: 1px; }
  .leaflet-control input[type='range'].time-slider:disabled::-webkit-slider-thumb {
    cursor: not-allowed; }
  .leaflet-control input[type='range'].time-slider:disabled::-moz-range-thumb {
    cursor: not-allowed; }
  .leaflet-control input[type='range'].time-slider:disabled::-ms-thumb {
    cursor: not-allowed; }
  .leaflet-control input[type='range'].time-slider:disabled::-webkit-slider-runnable-track {
    cursor: not-allowed; }
  .leaflet-control input[type='range'].time-slider:disabled::-ms-fill-lower {
    cursor: not-allowed; }
  .leaflet-control input[type='range'].time-slider:disabled::-ms-fill-upper {
    cursor: not-allowed; }

/* ---------------------- dashboard ----------------------*/
[v-cloak] {
  display: none; }

q {
  quotes: "<" ">";
  color: black; }

.login .topic-bg {
  background: url(../images/classroom/bg_topic.png) no-repeat center center;
  background-size: contain;
  height: 0;
  padding-bottom: 56.5%;
  position: relative; }
  .login .topic-bg .card {
    border: 1px solid #e6e6e6;
    background-color: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -55%);
    -moz-transform: translate(-50%, -55%);
    -ms-transform: translate(-50%, -55%);
    -o-transform: translate(-50%, -55%);
    transform: translate(-50%, -55%); }

@media screen and (max-width: 768px) and (orientation: portrait) {
  .login .content {
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    -webkit-filter: blur(20);
    filter: blur(20);
    padding: 10px; }
    .login .content:before {
      content: '';
      position: absolute;
      top: 38%;
      left: 50%;
      width: 150%;
      height: 150%;
      z-index: 1;
      background: url(../images/flag-v1.jpg) no-repeat center center;
      opacity: .2;
      -webkit-transform: translate(-50%, -50%) rotate3d(0, 0, 1, -25deg) scale(1.25);
      -moz-transform: translate(-50%, -50%) rotate3d(0, 0, 1, -25deg) scale(1.25);
      -ms-transform: translate(-50%, -50%) rotate3d(0, 0, 1, -25deg) scale(1.25);
      -o-transform: translate(-50%, -50%) rotate3d(0, 0, 1, -25deg) scale(1.25);
      transform: translate(-50%, -50%) rotate3d(0, 0, 1, -25deg) scale(1.25); }
    .login .content .topic-bg {
      position: relative;
      background: none;
      position: relative;
      z-index: 2; }
      .login .content .topic-bg .card {
        margin-top: 30px;
        position: unset;
        -webkit-transform: unset;
        -moz-transform: unset;
        -ms-transform: unset;
        -o-transform: unset;
        transform: unset; } }

.admin .main .content,
.upload .main .content,
.record .main .content,
.gameinfo .main .content,
.accusation .main .content {
  color: #262626;
  background-color: rgba(255, 255, 255, 0.75); }
  .admin .main .content h3,
  .admin .main .content h4,
  .upload .main .content h3,
  .upload .main .content h4,
  .record .main .content h3,
  .record .main .content h4,
  .gameinfo .main .content h3,
  .gameinfo .main .content h4,
  .accusation .main .content h3,
  .accusation .main .content h4 {
    font-weight: 500;
    padding: 0; }
  .admin .main .content h3,
  .upload .main .content h3,
  .record .main .content h3,
  .gameinfo .main .content h3,
  .accusation .main .content h3 {
    line-height: 2.5; }
  .admin .main .content * + h3,
  .admin .main .content * + h4,
  .upload .main .content * + h3,
  .upload .main .content * + h4,
  .record .main .content * + h3,
  .record .main .content * + h4,
  .gameinfo .main .content * + h3,
  .gameinfo .main .content * + h4,
  .accusation .main .content * + h3,
  .accusation .main .content * + h4 {
    margin-top: 10px; }
  .admin .main .content p,
  .upload .main .content p,
  .record .main .content p,
  .gameinfo .main .content p,
  .accusation .main .content p {
    padding-top: 5px; }
  .admin .main .content .wrapper,
  .upload .main .content .wrapper,
  .record .main .content .wrapper,
  .gameinfo .main .content .wrapper,
  .accusation .main .content .wrapper {
    padding: 10px 5px; }
    .admin .main .content .wrapper .wrapper-left ul li,
    .upload .main .content .wrapper .wrapper-left ul li,
    .record .main .content .wrapper .wrapper-left ul li,
    .gameinfo .main .content .wrapper .wrapper-left ul li,
    .accusation .main .content .wrapper .wrapper-left ul li {
      border-bottom: 1px solid grey;
      padding-left: 15px; }
      .admin .main .content .wrapper .wrapper-left ul li a,
      .upload .main .content .wrapper .wrapper-left ul li a,
      .record .main .content .wrapper .wrapper-left ul li a,
      .gameinfo .main .content .wrapper .wrapper-left ul li a,
      .accusation .main .content .wrapper .wrapper-left ul li a {
        line-height: 2.8;
        color: #333333; }
        .admin .main .content .wrapper .wrapper-left ul li a.active,
        .upload .main .content .wrapper .wrapper-left ul li a.active,
        .record .main .content .wrapper .wrapper-left ul li a.active,
        .gameinfo .main .content .wrapper .wrapper-left ul li a.active,
        .accusation .main .content .wrapper .wrapper-left ul li a.active {
          color: #00A896;
          font-weight: bold; }
    @media screen and (max-width: 768px) {
      .admin .main .content .wrapper .wrapper-left ul li,
      .upload .main .content .wrapper .wrapper-left ul li,
      .record .main .content .wrapper .wrapper-left ul li,
      .gameinfo .main .content .wrapper .wrapper-left ul li,
      .accusation .main .content .wrapper .wrapper-left ul li {
        padding: 0;
        font-size: .9em;
        text-align: center; } }
    @media screen and (max-width: 600px) {
      .admin .main .content .wrapper .wrapper-left,
      .upload .main .content .wrapper .wrapper-left,
      .record .main .content .wrapper .wrapper-left,
      .gameinfo .main .content .wrapper .wrapper-left,
      .accusation .main .content .wrapper .wrapper-left {
        margin-bottom: 20px; }
        .admin .main .content .wrapper .wrapper-left ul,
        .upload .main .content .wrapper .wrapper-left ul,
        .record .main .content .wrapper .wrapper-left ul,
        .gameinfo .main .content .wrapper .wrapper-left ul,
        .accusation .main .content .wrapper .wrapper-left ul {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: justify;
          -ms-flex-pack: justify;
          justify-content: space-between; }
          .admin .main .content .wrapper .wrapper-left ul li,
          .upload .main .content .wrapper .wrapper-left ul li,
          .record .main .content .wrapper .wrapper-left ul li,
          .gameinfo .main .content .wrapper .wrapper-left ul li,
          .accusation .main .content .wrapper .wrapper-left ul li {
            margin-right: 10px;
            padding: 0 15px;
            -webkit-box-flex: 1;
            -ms-flex: 1 1 0px;
            flex: 1 1 0; }
            .admin .main .content .wrapper .wrapper-left ul li a,
            .upload .main .content .wrapper .wrapper-left ul li a,
            .record .main .content .wrapper .wrapper-left ul li a,
            .gameinfo .main .content .wrapper .wrapper-left ul li a,
            .accusation .main .content .wrapper .wrapper-left ul li a {
              line-height: 1.8; } }
    .admin .main .content .wrapper .wrapper-right .member-info,
    .upload .main .content .wrapper .wrapper-right .member-info,
    .record .main .content .wrapper .wrapper-right .member-info,
    .gameinfo .main .content .wrapper .wrapper-right .member-info,
    .accusation .main .content .wrapper .wrapper-right .member-info {
      font-size: .9em;
      line-height: 2; }
      .admin .main .content .wrapper .wrapper-right .member-info #fb-id,
      .upload .main .content .wrapper .wrapper-right .member-info #fb-id,
      .record .main .content .wrapper .wrapper-right .member-info #fb-id,
      .gameinfo .main .content .wrapper .wrapper-right .member-info #fb-id,
      .accusation .main .content .wrapper .wrapper-right .member-info #fb-id {
        float: left; }
      .admin .main .content .wrapper .wrapper-right .member-info #last-login,
      .upload .main .content .wrapper .wrapper-right .member-info #last-login,
      .record .main .content .wrapper .wrapper-right .member-info #last-login,
      .gameinfo .main .content .wrapper .wrapper-right .member-info #last-login,
      .accusation .main .content .wrapper .wrapper-right .member-info #last-login {
        float: right; }

.upload .wrapper-right .member-info {
  line-height: 2; }
  .upload .wrapper-right .member-info #fb-id {
    float: left; }
  .upload .wrapper-right .member-info #last-login {
    float: right; }

.upload .wrapper-right .form-outer {
  background-color: white;
  padding-bottom: 30px;
  border-radius: 10px;
  border: 5px solid #abe3dd;
  padding-top: 10px; }

.upload .wrapper-right .h3-inline {
  font-size: 0.85em;
  margin-left: 8px;
  color: #595959; }

.upload .wrapper-right .form-wrapper {
  border: 5px solid rgba(31, 147, 147, 0.2);
  border-radius: 5px;
  padding: 40px;
  background-color: rgba(200, 234, 234, 0.2); }
  .upload .wrapper-right .form-wrapper form .form-group input[type="text"],
  .upload .wrapper-right .form-wrapper form .form-group input[type="file"],
  .upload .wrapper-right .form-wrapper form .form-group textarea {
    color: #333333;
    font-size: 1.15em; }
  .upload .wrapper-right .form-wrapper form .form-group .inline {
    width: 100%; }

.upload .wrapper-right .deco-pic img {
  max-width: 100%; }

@media (min-width: 1201px) {
  .upload .wrapper-right .deco-pic {
    margin-top: 50px; } }

.upload .modal.datepicker-modal {
  width: unset;
  height: unset; }

.gameinfo .wrapper-right .member-info {
  line-height: 2; }
  .gameinfo .wrapper-right .member-info #fb-id {
    float: left; }
  .gameinfo .wrapper-right .member-info #last-login {
    float: right; }

.gameinfo .wrapper-right .infoblock > p {
  font-weight: 500; }

.gameinfo .wrapper-right img {
  max-width: 100%; }

.gameinfo .wrapper-right table thead {
  background-color: rgba(51, 153, 153, 0.4); }
  .gameinfo .wrapper-right table thead th {
    font-weight: 500; }

.gameinfo .wrapper-right .event-time p {
  font-size: 1.15em;
  font-weight: bolder;
  color: #c20a72; }

.record .wrapper-right .member-info {
  line-height: 2; }
  .record .wrapper-right .member-info #fb-id {
    float: left; }
  .record .wrapper-right .member-info #last-login {
    float: right; }

.record .row.avatar-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  @media screen and (max-width: 600px) {
    .record .row.avatar-row {
      display: block; }
      .record .row.avatar-row .get-exp {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 10px; }
      .record .row.avatar-row .profile {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center; } }
  .record .row.avatar-row .get-exp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px; }
    .record .row.avatar-row .get-exp #getExp {
      width: 200px;
      height: 60px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      background-color: orange;
      border-radius: 30px;
      border: 5px solid rgba(255, 255, 255, 0.4);
      color: #1a1a1a;
      text-align: center;
      font-size: 1.5em;
      font-weight: 900;
      position: relative;
      overflow: hidden;
      -webkit-box-shadow: inset 0 0 10px rgba(204, 102, 0, 0.5), 0 0 5px 5px rgba(255, 255, 224, 0.75);
      box-shadow: inset 0 0 10px rgba(204, 102, 0, 0.5), 0 0 5px 5px rgba(255, 255, 224, 0.75); }
      .record .row.avatar-row .get-exp #getExp:before {
        content: '';
        position: absolute;
        top: 0;
        width: 100%;
        height: 50%;
        background-color: rgba(255, 255, 255, 0.3); }
      .record .row.avatar-row .get-exp #getExp:hover {
        -webkit-transform: translateY(-3px);
        -moz-transform: translateY(-3px);
        -ms-transform: translateY(-3px);
        -o-transform: translateY(-3px);
        transform: translateY(-3px);
        color: #4d4d4d; }
      .record .row.avatar-row .get-exp #getExp.disabled {
        background-color: grey;
        -webkit-box-shadow: unset;
        box-shadow: unset; }
        .record .row.avatar-row .get-exp #getExp.disabled:hover {
          color: unset;
          -webkit-transform: unset;
          -moz-transform: unset;
          -ms-transform: unset;
          -o-transform: unset;
          transform: unset; }
  .record .row.avatar-row .profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    padding: 10px; }
    .record .row.avatar-row .profile .avatar {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
      flex: 0 0 auto;
      width: 120px;
      height: 120px;
      background-color: grey;
      border-radius: 99em;
      border: 5px solid rgba(255, 255, 255, 0.2);
      text-align: center;
      position: relative;
      padding-top: 8px;
      font-family: Pacifico; }
      .record .row.avatar-row .profile .avatar span {
        color: rgba(255, 255, 255, 0.6);
        font-weight: 400; }
      .record .row.avatar-row .profile .avatar:before {
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -52%);
        -moz-transform: translate(-50%, -52%);
        -ms-transform: translate(-50%, -52%);
        -o-transform: translate(-50%, -52%);
        transform: translate(-50%, -52%);
        font-weight: 900;
        font-size: 6.5em;
        color: #333333;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.75); }
      .record .row.avatar-row .profile .avatar.lv-1 {
        background-color: #8d9aa6; }
        .record .row.avatar-row .profile .avatar.lv-1:before {
          content: '1'; }
      .record .row.avatar-row .profile .avatar.lv-2 {
        background-color: #7fa046; }
        .record .row.avatar-row .profile .avatar.lv-2:before {
          content: '2'; }
      .record .row.avatar-row .profile .avatar.lv-3 {
        background-color: #6d8ce8; }
        .record .row.avatar-row .profile .avatar.lv-3:before {
          content: '3'; }
      .record .row.avatar-row .profile .avatar.lv-4 {
        background-color: #e499e2; }
        .record .row.avatar-row .profile .avatar.lv-4:before {
          content: '4'; }
      .record .row.avatar-row .profile .avatar.lv-5 {
        background-color: #e4843f; }
        .record .row.avatar-row .profile .avatar.lv-5:before {
          content: '5'; }
      .record .row.avatar-row .profile .avatar.lv-6 {
        background-color: #db4545; }
        .record .row.avatar-row .profile .avatar.lv-6:before {
          content: '6'; }
    .record .row.avatar-row .profile ul.lv-info {
      -webkit-box-flex: 0;
      -ms-flex: 0 3 auto;
      flex: 0 3 auto;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
      flex-flow: column nowrap;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      padding-top: 10px;
      margin-left: 10px; }
      .record .row.avatar-row .profile ul.lv-info li {
        line-height: 1.25;
        font-size: 1em; }
        .record .row.avatar-row .profile ul.lv-info li span {
          font-size: 1.35em;
          font-weight: 900; }

.accusation .accusation-table .divTableCell {
  line-height: 1.6;
  vertical-align: middle; }
  .accusation .accusation-table .divTableCell:first-child {
    min-width: 80px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.05); }
  .accusation .accusation-table .divTableCell:last-child:not(.photos) {
    padding-left: 15px; }

.accusation .accusation-table .photos {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start; }
  .accusation .accusation-table .photos img {
    margin-bottom: 10px; }

.clear {
  clear: both; }

.index .content.flex-col .map {
  -webkit-box-flex: 3;
  -ms-flex: 3 3 0px;
  flex: 3 3 0; }

.index .content.flex-col figure {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100px;
  flex: 1 1 100px;
  background-color: rgba(0, 0, 0, 0.55);
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 3px; }
  .index .content.flex-col figure .chart {
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 5px;
    text-align: center;
    height: 100%;
    -webkit-transition: all 0.4s 0s ease-in-out;
    -moz-transition: all 0.4s 0s ease-in-out;
    -ms-transition: all 0.4s 0s ease-in-out;
    -o-transition: all 0.4s 0s ease-in-out;
    transition: all 0.4s 0s ease-in-out; }

.index .map {
  position: relative;
  overflow: hidden; }
  .index .map.hide-map-panel {
    padding-top: 0; }
    .index .map.hide-map-panel .map-panel {
      display: none; }
  @media screen and (max-width: 992px) and (orientation: portrait) {
    .index .map {
      padding-top: 150px; } }
  @media screen and (max-width: 992px) and (orientation: landscape) {
    .index .map {
      height: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; } }
  .index .map .map-panel {
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 401;
    width: 250px;
    height: calc(90% - 0px);
    max-height: 580px;
    border-radius: 3px;
    padding: 5px 10px;
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
    color: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-transition: all 0.4s 0s ease-in-out;
    -moz-transition: all 0.4s 0s ease-in-out;
    -ms-transition: all 0.4s 0s ease-in-out;
    -o-transition: all 0.4s 0s ease-in-out;
    transition: all 0.4s 0s ease-in-out; }
    .index .map .map-panel .stt-inner .stt-light {
      border-bottom: 1px solid rgba(255, 255, 255, 0.5);
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      background-color: rgba(0, 0, 0, 0.25);
      padding: 5px; }
      .index .map .map-panel .stt-inner .stt-light .stt-l {
        width: 50px;
        height: 50px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding-top: 5px; }
        .index .map .map-panel .stt-inner .stt-light .stt-l .signal {
          width: 30px;
          height: 30px;
          border-radius: 50%; }
          .index .map .map-panel .stt-inner .stt-light .stt-l .signal span {
            line-height: 30px;
            font-weight: bolder; }
          .index .map .map-panel .stt-inner .stt-light .stt-l .signal.lv0 {
            background-color: #a6a6a6;
            -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #304701 0 -1px 9px, #a6a6a6 0 2px 12px;
            box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #304701 0 -1px 9px, #a6a6a6 0 2px 12px; }
          .index .map .map-panel .stt-inner .stt-light .stt-l .signal.lv1 {
            background-color: #00c168;
            -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #304701 0 -1px 9px, #00c168 0 2px 12px;
            box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #304701 0 -1px 9px, #00c168 0 2px 12px; }
          .index .map .map-panel .stt-inner .stt-light .stt-l .signal.lv2 {
            background-color: #fffc42;
            -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #304701 0 -1px 9px, #fffc42 0 2px 12px;
            box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #304701 0 -1px 9px, #fffc42 0 2px 12px; }
            .index .map .map-panel .stt-inner .stt-light .stt-l .signal.lv2 #aqi {
              color: black; }
          .index .map .map-panel .stt-inner .stt-light .stt-l .signal.lv3 {
            background-color: #fc983b;
            -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #304701 0 -1px 9px, #fc983b 0 2px 12px;
            box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #304701 0 -1px 9px, #fc983b 0 2px 12px; }
          .index .map .map-panel .stt-inner .stt-light .stt-l .signal.lv4 {
            background-color: #cc0032;
            -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #304701 0 -1px 9px, #cc0032 0 2px 12px;
            box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #304701 0 -1px 9px, #cc0032 0 2px 12px; }
          .index .map .map-panel .stt-inner .stt-light .stt-l .signal.lv5 {
            background-color: #670096;
            -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #304701 0 -1px 9px, #670096 0 2px 12px;
            box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #304701 0 -1px 9px, #670096 0 2px 12px; }
          .index .map .map-panel .stt-inner .stt-light .stt-l .signal.lv6 {
            background-color: #7f0022;
            -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #304701 0 -1px 9px, #7f0022 0 2px 12px;
            box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #304701 0 -1px 9px, #7f0022 0 2px 12px; }
      .index .map .map-panel .stt-inner .stt-light .stt-r {
        border-left: 2px solid #d9d9d9;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
        flex: 1 1 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
        justify-content: space-evenly; }
        .index .map .map-panel .stt-inner .stt-light .stt-r .stt-name {
          padding: 1px 4px;
          line-height: unset;
          width: auto;
          background-color: #d9d9d9;
          color: #000;
          border-radius: 0 3px 3px 0;
          font-size: .75em; }
        .index .map .map-panel .stt-inner .stt-light .stt-r #aqi-text {
          text-indent: 5px;
          font-size: .95em; }
    .index .map .map-panel .stt-inner #stt-filter {
      margin: 0; }
      .index .map .map-panel .stt-inner #stt-filter .input-field {
        margin: 6px 0; }
        .index .map .map-panel .stt-inner #stt-filter .input-field .select-wrapper {
          margin-bottom: 0px; }
        .index .map .map-panel .stt-inner #stt-filter .input-field label {
          display: none; }
      @media screen and (max-width: 992px) and (orientation: portrait) {
        .index .map .map-panel .stt-inner #stt-filter {
          position: absolute;
          bottom: -108px;
          left: 2px;
          width: 40%;
          margin: 0;
          padding: 10px;
          border-radius: 3px; } }
    .index .map .map-panel .stt-inner .stt-search {
      -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
      margin: 0;
      padding: 0 10px; }
      .index .map .map-panel .stt-inner .stt-search input[type=text] {
        padding-left: 5px;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
        flex: 1 1 0;
        font-size: 1em; }
      .index .map .map-panel .stt-inner .stt-search .btn-circle {
        border-radius: 99em;
        background-color: rgba(255, 255, 255, 0.15);
        width: 30px;
        height: 30px;
        padding: 0; }
        .index .map .map-panel .stt-inner .stt-search .btn-circle i.material-icons {
          line-height: 30px;
          font-size: 1.5em; }
    .index .map .map-panel .stt-inner .stt-switch > label {
      margin: 0 10px; }
    .index .map .map-panel .stt-inner #stt-time {
      font-size: .7em;
      text-align: center;
      margin-top: 5px; }
    .index .map .map-panel ul.stt-info {
      height: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
      flex-flow: column nowrap;
      -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
      flex: 0 1 auto;
      overflow-y: auto;
      padding: 5px 0px; }
      .index .map .map-panel ul.stt-info::-webkit-scrollbar {
        width: 10px; }
      .index .map .map-panel ul.stt-info::-webkit-scrollbar-track {
        border-radius: 5px;
        background-color: black; }
      .index .map .map-panel ul.stt-info::-webkit-scrollbar-thumb {
        border-radius: 5px;
        width: 10px;
        border: 2px solid black;
        background-color: #999999; }
      .index .map .map-panel ul.stt-info > li {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        border-bottom: 1px solid grey; }
        .index .map .map-panel ul.stt-info > li:nth-child(even) {
          background-color: rgba(0, 0, 0, 0.08); }
        .index .map .map-panel ul.stt-info > li:last-child {
          border-bottom: 0; }
        .index .map .map-panel ul.stt-info > li.near-site {
          line-height: 1.6; }
        .index .map .map-panel ul.stt-info > li > div {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          -webkit-box-flex: 40;
          -ms-flex: 40 40 0px;
          flex: 40 40 0;
          padding: 5px 0px; }
          .index .map .map-panel ul.stt-info > li > div span {
            display: block;
            width: 100%;
            font-size: .85em; }
            .index .map .map-panel ul.stt-info > li > div span:nth-child(1) sub {
              font-size: .7em; }
            .index .map .map-panel ul.stt-info > li > div span:nth-child(2) {
              font-size: .7em;
              line-height: 1.8;
              margin-top: 3px; }
              .index .map .map-panel ul.stt-info > li > div span:nth-child(2) sup {
                font-size: .7em; }
            .index .map .map-panel ul.stt-info > li > div span:nth-child(3) {
              font-size: .7em; }
        .index .map .map-panel ul.stt-info > li ul {
          -webkit-box-flex: 60;
          -ms-flex: 60 40 0px;
          flex: 60 40 0;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-direction: column;
          flex-direction: column;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center; }
          .index .map .map-panel ul.stt-info > li ul li {
            height: 50%;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            padding: 0 5px; }
            .index .map .map-panel ul.stt-info > li ul li div {
              font-size: 0.9em; }
            .index .map .map-panel ul.stt-info > li ul li em {
              -webkit-box-flex: 1;
              -ms-flex: auto 1 0px;
              flex: auto 1 0;
              text-align: right;
              font-size: 1em;
              font-weight: 600;
              text-align: center; }
    .index .map .map-panel #nodata {
      height: 100%;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      text-align: center; }
      .index .map .map-panel #nodata .msg-group div {
        margin: 0 auto; }
        .index .map .map-panel #nodata .msg-group div i.material-icons {
          font-size: 3em;
          color: gold; }
      .index .map .map-panel #nodata .msg-group h3 {
        padding: 0;
        margin: 0;
        background-color: unset;
        color: white; }
    .index .map .map-panel .legend-pc {
      padding-left: 5px; }
      .index .map .map-panel .legend-pc ul li {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        color: white;
        font-size: .82em;
        line-height: 2.2;
        text-indent: 10px; }
        .index .map .map-panel .legend-pc ul li:before {
          content: '';
          width: 4px;
          height: 100%;
          position: absolute;
          top: 0;
          left: 0; }
        .index .map .map-panel .legend-pc ul li.lv1:before {
          background-color: #00c168; }
        .index .map .map-panel .legend-pc ul li.lv2:before {
          background-color: #fffc42; }
        .index .map .map-panel .legend-pc ul li.lv3:before {
          background-color: #fc983b; }
        .index .map .map-panel .legend-pc ul li.lv4:before {
          background-color: #cc0032; }
        .index .map .map-panel .legend-pc ul li.lv5:before {
          background-color: #670096; }
        .index .map .map-panel .legend-pc ul li.lv6:before {
          background-color: #7f0022; }
    @media screen and (max-height: 700px) and (orientation: landscape) {
      .index .map .map-panel {
        top: 0;
        left: 0;
        height: calc(100% - 5px);
        max-height: unset;
        border-radius: 10px;
        padding: 0px; }
        .index .map .map-panel .legend-pc {
          display: none; }
        .index .map .map-panel .stt-circle {
          height: 160px; }
          .index .map .map-panel .stt-circle h3 {
            font-size: .9em;
            line-height: 1.2;
            padding: 0;
            margin-bottom: 3px; }
          .index .map .map-panel .stt-circle .stt {
            -webkit-box-flex: 0;
            -ms-flex: 0 0 auto;
            flex: 0 0 auto;
            display: -webkit-inline-box;
            display: -ms-inline-flexbox;
            display: inline-flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            border: 5px solid #a6a6a6;
            color: white; }
            .index .map .map-panel .stt-circle .stt .stt-name {
              line-height: .9; }
              .index .map .map-panel .stt-circle .stt .stt-name sub {
                font-size: .7em; }
            .index .map .map-panel .stt-circle .stt .stt-value {
              height: 1.2em; }
            .index .map .map-panel .stt-circle .stt .stt-unit {
              font-size: .7em;
              padding-top: 3px;
              line-height: 1.7; }
            .index .map .map-panel .stt-circle .stt #aqi-text {
              font-size: .8em;
              padding: 0 8px; }
          .index .map .map-panel .stt-circle #stt-time {
            font-size: .65em;
            margin-top: 5px;
            line-height: 1em; }
        .index .map .map-panel ul.stt-info {
          height: calc(100% - 120px);
          overflow-y: auto;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-flow: column nowrap;
          flex-flow: column nowrap; }
          .index .map .map-panel ul.stt-info::-webkit-scrollbar {
            width: 10px; }
          .index .map .map-panel ul.stt-info::-webkit-scrollbar-track {
            border-radius: 5px;
            background-color: black; }
          .index .map .map-panel ul.stt-info::-webkit-scrollbar-thumb {
            border-radius: 5px;
            width: 10px;
            border: 2px solid black;
            background-color: #999999; }
          .index .map .map-panel ul.stt-info > li > div span {
            font-size: .8em; }
            .index .map .map-panel ul.stt-info > li > div span:nth-child(1) {
              font-size: .9em;
              margin-bottom: 3px; }
          .index .map .map-panel ul.stt-info > li > ul li {
            padding: 2px; }
            .index .map .map-panel ul.stt-info > li > ul li div {
              font-size: .85em; }
            .index .map .map-panel ul.stt-info > li > ul li em {
              font-size: 1.2em; } }
    @media screen and (max-width: 992px) and (orientation: portrait) {
      .index .map .map-panel {
        top: 0;
        left: 0;
        width: 100%;
        height: 150px;
        border-radius: 8px;
        padding: 0px 0px 5px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background-color: rgba(0, 0, 0, 0.7);
        -webkit-box-shadow: unset;
        box-shadow: unset; }
        .index .map .map-panel .stt-circle {
          -webkit-box-flex: 1;
          -ms-flex: 1 1 140px;
          flex: 1 1 140px;
          height: 100%;
          border-right: 1px solid rgba(255, 255, 255, 0.2);
          padding: 2px 5px; }
          .index .map .map-panel .stt-circle h3 {
            font-size: .9em;
            line-height: 1.2;
            padding: 0;
            margin-bottom: 5px; }
          .index .map .map-panel .stt-circle .stt {
            -webkit-box-flex: 0;
            -ms-flex: 0 0 auto;
            flex: 0 0 auto;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            margin: 0;
            width: 100px;
            height: 100px;
            margin: 0 auto;
            padding: 0;
            border: 5px solid #a6a6a6;
            color: white; }
            .index .map .map-panel .stt-circle .stt .stt-name {
              font-size: .9rem;
              line-height: .9; }
              .index .map .map-panel .stt-circle .stt .stt-name sub {
                font-size: .7em; }
            .index .map .map-panel .stt-circle .stt .stt-value {
              font-size: 1.5rem;
              line-height: 1;
              font-weight: 600;
              height: 2rem; }
            .index .map .map-panel .stt-circle .stt .stt-unit {
              font-size: .7em;
              padding-top: 3px;
              line-height: 1.7; }
          .index .map .map-panel .stt-circle #stt-time {
            font-size: .8em;
            margin-top: 5px; }
        .index .map .map-panel .stt-inner {
          border-right: 1px solid rgba(255, 255, 255, 0.5);
          -webkit-box-flex: 1;
          -ms-flex: 1 1 200px;
          flex: 1 1 200px; }
        .index .map .map-panel ul.stt-info {
          display: unset;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-flow: unsete;
          flex-flow: unsete;
          margin-top: 0;
          -webkit-box-flex: 2;
          -ms-flex: 2 1 auto;
          flex: 2 1 auto;
          height: 100%;
          overflow-y: auto;
          padding: 2px 0; }
          .index .map .map-panel ul.stt-info::-webkit-scrollbar {
            width: 6px; }
          .index .map .map-panel ul.stt-info::-webkit-scrollbar-track {
            border-radius: 5px;
            background-color: black; }
          .index .map .map-panel ul.stt-info::-webkit-scrollbar-thumb {
            border-radius: 5px;
            width: 6px;
            border: 2px solid black;
            background-color: #999999; }
          .index .map .map-panel ul.stt-info > li > div span:nth-child(1) {
            font-size: .7em;
            font-weight: 600; }
          .index .map .map-panel ul.stt-info > li > div span:nth-child(2) {
            -webkit-transform: scale(0.8);
            -moz-transform: scale(0.8);
            -ms-transform: scale(0.8);
            -o-transform: scale(0.8);
            transform: scale(0.8); }
          .index .map .map-panel ul.stt-info > li > div span:nth-child(3) {
            -webkit-transform: scale(0.9);
            -moz-transform: scale(0.9);
            -ms-transform: scale(0.9);
            -o-transform: scale(0.9);
            transform: scale(0.9); }
          .index .map .map-panel ul.stt-info > li > ul li {
            font-size: .85em; }
            .index .map .map-panel ul.stt-info > li > ul li em {
              font-size: 1.2em;
              text-align: right; } }
  .index .map .rwdmap {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden; }
    .index .map .rwdmap .map-wrapper {
      height: inherit; }
      .index .map .rwdmap .map-wrapper iframe,
      .index .map .rwdmap .map-wrapper #osmmap {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        z-index: 80; }
      .index .map .rwdmap .map-wrapper .map-overview {
        border: 1px solid #999999;
        position: absolute;
        top: 5px;
        right: 0px;
        width: 0;
        height: 0;
        border-radius: 0 5px 5px;
        background-color: mistyrose;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        jusitfy-content: space-around;
        z-index: 402;
        -webkit-box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.6);
        box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.6);
        -webkit-transition: all 0.3s 0s ease-in-out;
        -moz-transition: all 0.3s 0s ease-in-out;
        -ms-transition: all 0.3s 0s ease-in-out;
        -o-transition: all 0.3s 0s ease-in-out;
        transition: all 0.3s 0s ease-in-out; }
        .index .map .rwdmap .map-wrapper .map-overview a.btn-map-trigger {
          border: 1px solid #999999;
          border-right: none;
          position: absolute;
          top: -1px;
          left: 0px;
          height: 30px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          color: white;
          background-color: rgba(0, 0, 0, 0.75);
          white-space: nowrap;
          overflow: hidden;
          border-radius: 99em 0 0 99em;
          -webkit-box-shadow: -1px 2px 3px rgba(0, 0, 0, 0.4);
          box-shadow: -1px 2px 3px rgba(0, 0, 0, 0.4);
          -webkit-transform: translateX(-100%);
          -moz-transform: translateX(-100%);
          -ms-transform: translateX(-100%);
          -o-transform: translateX(-100%);
          transform: translateX(-100%); }
          .mobile .index .map .rwdmap .map-wrapper .map-overview a.btn-map-trigger {
            height: 25px;
            font-size: .88em; }
            .mobile .index .map .rwdmap .map-wrapper .map-overview a.btn-map-trigger i {
              font-size: 1.25em; }
            .mobile .index .map .rwdmap .map-wrapper .map-overview a.btn-map-trigger span {
              width: 65px; }
          .index .map .rwdmap .map-wrapper .map-overview a.btn-map-trigger i,
          .index .map .rwdmap .map-wrapper .map-overview a.btn-map-trigger span {
            opacity: 1;
            -webkit-transition: all 0.3s 0s ease-in-out;
            -moz-transition: all 0.3s 0s ease-in-out;
            -ms-transition: all 0.3s 0s ease-in-out;
            -o-transition: all 0.3s 0s ease-in-out;
            transition: all 0.3s 0s ease-in-out; }
          .index .map .rwdmap .map-wrapper .map-overview a.btn-map-trigger span {
            width: 80px; }
          .index .map .rwdmap .map-wrapper .map-overview a.btn-map-trigger i.material-icons {
            line-height: inherit;
            text-align: center; }
          .index .map .rwdmap .map-wrapper .map-overview a.btn-map-trigger i.material-icons:not(.default) {
            display: none; }
        .index .map .rwdmap .map-wrapper .map-overview.open {
          top: 5px;
          right: 5px;
          width: calc(25vh);
          max-width: 50%;
          height: calc(45%);
          opacity: 1;
          overflow: unset; }
          @media (max-width: 414px) and (orientation: portrait) {
            .desktop .index .map .rwdmap .map-wrapper .map-overview.open {
              max-width: calc(100% - 10px); }
              .desktop .index .map .rwdmap .map-wrapper .map-overview.open a.btn-map-trigger {
                -webkit-transform: translateX(0);
                -moz-transform: translateX(0);
                -ms-transform: translateX(0);
                -o-transform: translateX(0);
                transform: translateX(0);
                border: 1px solid grey;
                border-radius: 0 99em 99em 0; }
              .desktop .index .map .rwdmap .map-wrapper .map-overview.open h4 {
                text-align: right;
                padding-right: 10px; } }
          @media (max-height: 768px) and (min-height: 481px) and (orientation: landscape) {
            .desktop .index .map .rwdmap .map-wrapper .map-overview.open,
            .tablet .index .map .rwdmap .map-wrapper .map-overview.open {
              width: calc(48vh + 50px); }
              .desktop .index .map .rwdmap .map-wrapper .map-overview.open .twmap,
              .tablet .index .map .rwdmap .map-wrapper .map-overview.open .twmap {
                width: 85%; } }
          @media (max-height: 500px) and (orientation: landscape) {
            .desktop .index .map .rwdmap .map-wrapper .map-overview.open,
            .tablet .index .map .rwdmap .map-wrapper .map-overview.open {
              width: calc(48vh + 70px); }
              .desktop .index .map .rwdmap .map-wrapper .map-overview.open .twmap,
              .tablet .index .map .rwdmap .map-wrapper .map-overview.open .twmap {
                width: 65%; } }
          @media (max-width: 414px) and (orientation: portrait) {
            .mobile .index .map .rwdmap .map-wrapper .map-overview.open {
              width: 200px;
              min-width: unset;
              height: calc(100% - 60px - 110px); } }
          @media (max-height: 414px) and (orientation: landscape) {
            .mobile .index .map .rwdmap .map-wrapper .map-overview.open {
              min-width: unset;
              height: calc(100% - 10px); } }
          @media (max-width: 992px) and (orientation: portrait) {
            .mobile .index .map .rwdmap .map-wrapper .map-overview.open {
              height: calc(100% - 60px - 165px); } }
  @media (max-width: 992px) and (orientation: portrait) and (max-height: 720px) {
    .mobile .index .map .rwdmap .map-wrapper .map-overview.open {
      height: calc(100% - 65px); } }
  @media (max-width: 992px) and (orientation: portrait) and (max-height: 630px) {
    .mobile .index .map .rwdmap .map-wrapper .map-overview.open {
      width: 200px;
      height: calc(100% - 60px); } }
          @media (max-width: 992px) {
            .mobile .index .map .rwdmap .map-wrapper .map-overview.open h4,
            .tablet .index .map .rwdmap .map-wrapper .map-overview.open h4 {
              font-size: 1em;
              line-height: 25px; } }
          .index .map .rwdmap .map-wrapper .map-overview.open a.btn-map-trigger {
            background-color: white;
            color: black; }
            .index .map .rwdmap .map-wrapper .map-overview.open a.btn-map-trigger i.material-icons.default {
              display: none; }
            .index .map .rwdmap .map-wrapper .map-overview.open a.btn-map-trigger i.material-icons:not(.default) {
              display: inline-block;
              padding: 0 5px; }
            .index .map .rwdmap .map-wrapper .map-overview.open a.btn-map-trigger span {
              width: 0;
              opacity: 0;
              padding: 0; }
        .index .map .rwdmap .map-wrapper .map-overview h4 {
          font-size: 1.26em;
          color: black;
          line-height: 28px;
          padding: 0;
          text-align: center;
          background-color: white; }
        .index .map .rwdmap .map-wrapper .map-overview .twmap {
          position: relative;
          height: calc(100%);
          -webkit-box-flex: 1;
          -ms-flex: auto auto 0px;
          flex: auto auto 0;
          padding: 5px; }
          .index .map .rwdmap .map-wrapper .map-overview .twmap #mapbox,
          .index .map .rwdmap .map-wrapper .map-overview .twmap #fontbox {
            position: absolute;
            top: 0;
            left: 0; }
          .index .map .rwdmap .map-wrapper .map-overview .twmap svg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%; }
            .index .map .rwdmap .map-wrapper .map-overview .twmap svg#overview g#twmap-group:hover {
              cursor: pointer; }
            .index .map .rwdmap .map-wrapper .map-overview .twmap svg#overview g#twmap-group g path {
              -webkit-transition: all 0.3s 0s ease-in-out;
              -moz-transition: all 0.3s 0s ease-in-out;
              -ms-transition: all 0.3s 0s ease-in-out;
              -o-transition: all 0.3s 0s ease-in-out;
              transition: all 0.3s 0s ease-in-out; }
            .index .map .rwdmap .map-wrapper .map-overview .twmap svg#overview g#twmap-group g.lv0 path {
              fill: #a6a6a6; }
            .index .map .rwdmap .map-wrapper .map-overview .twmap svg#overview g#twmap-group g.lv1 path {
              fill: #00c168; }
            .index .map .rwdmap .map-wrapper .map-overview .twmap svg#overview g#twmap-group g.lv2 path {
              fill: #fffc42; }
            .index .map .rwdmap .map-wrapper .map-overview .twmap svg#overview g#twmap-group g.lv3 path {
              fill: #fc983b; }
            .index .map .rwdmap .map-wrapper .map-overview .twmap svg#overview g#twmap-group g.lv4 path {
              fill: #cc0032; }
            .index .map .rwdmap .map-wrapper .map-overview .twmap svg#overview g#twmap-group g.lv5 path {
              fill: #670096; }
            .index .map .rwdmap .map-wrapper .map-overview .twmap svg#overview g#twmap-group g.lv6 path {
              fill: #7f0022; }
            .index .map .rwdmap .map-wrapper .map-overview .twmap svg#overview path[d] {
              display: none;
              stroke: #000000;
              stroke-width: 0.5px;
              fill: #000000; }
            .index .map .rwdmap .map-wrapper .map-overview .twmap svg#overview path[d][stroke-miterlimit="10"][fill="#FFFFFF"] {
              display: none;
              stroke: #bfbfbf;
              stroke-width: 1px;
              fill: white; }
            .index .map .rwdmap .map-wrapper .map-overview .twmap svg#overview path[d][stroke-miterlimit="10"][stroke-linecap="round"] {
              display: unset;
              stroke: #04afaf;
              stroke-width: 1px;
              fill: #b4fdf1; }
        .index .map .rwdmap .map-wrapper .map-overview .chiayi-value {
          overflow: hidden;
          background-color: white;
          -webkit-box-flex: 1;
          -ms-flex: auto auto 0px;
          flex: auto auto 0;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          font-size: .8em;
          height: 35px; }
      .index .map .rwdmap .map-wrapper .legend-mobile {
        position: absolute;
        right: 10px;
        bottom: 80px;
        max-width: 750px;
        z-index: 482;
        -webkit-transition: all 0.25s 0s ease-in-out;
        -moz-transition: all 0.25s 0s ease-in-out;
        -ms-transition: all 0.25s 0s ease-in-out;
        -o-transition: all 0.25s 0s ease-in-out;
        transition: all 0.25s 0s ease-in-out; }
        .mobile .index .map .rwdmap .map-wrapper .legend-mobile {
          bottom: 65px; }
        .index .map .rwdmap .map-wrapper .legend-mobile ul.color {
          height: 100%;
          border: 1px solid grey; }
          .index .map .rwdmap .map-wrapper .legend-mobile ul.color li {
            position: relative;
            width: 3px;
            height: 24px; }
            .index .map .rwdmap .map-wrapper .legend-mobile ul.color li span {
              right: 8px;
              white-space: nowrap;
              line-height: 20px;
              color: #000000;
              padding: 0 2px;
              font-size: .7em;
              -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.6);
              box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.6); }
              .mobile .index .map .rwdmap .map-wrapper .legend-mobile ul.color li span {
                font-size: .75rem; }
            .index .map .rwdmap .map-wrapper .legend-mobile ul.color li.lv1 {
              background-color: #00c168; }
              .index .map .rwdmap .map-wrapper .legend-mobile ul.color li.lv1 span {
                background-color: rgba(0, 193, 104, 0.6); }
            .index .map .rwdmap .map-wrapper .legend-mobile ul.color li.lv2 {
              background-color: #fffc42; }
              .index .map .rwdmap .map-wrapper .legend-mobile ul.color li.lv2 span {
                background-color: rgba(255, 252, 66, 0.6); }
            .index .map .rwdmap .map-wrapper .legend-mobile ul.color li.lv3 {
              background-color: #fc983b; }
              .index .map .rwdmap .map-wrapper .legend-mobile ul.color li.lv3 span {
                background-color: rgba(252, 152, 59, 0.6); }
            .index .map .rwdmap .map-wrapper .legend-mobile ul.color li.lv4 {
              background-color: #cc0032; }
              .index .map .rwdmap .map-wrapper .legend-mobile ul.color li.lv4 span {
                background-color: rgba(204, 0, 50, 0.6); }
            .index .map .rwdmap .map-wrapper .legend-mobile ul.color li.lv5 {
              background-color: #670096; }
              .index .map .rwdmap .map-wrapper .legend-mobile ul.color li.lv5 span {
                background-color: rgba(103, 0, 150, 0.6); }
            .index .map .rwdmap .map-wrapper .legend-mobile ul.color li.lv6 {
              background-color: #7f0022; }
              .index .map .rwdmap .map-wrapper .legend-mobile ul.color li.lv6 span {
                background-color: rgba(127, 0, 34, 0.6); }
        @media (max-width: 992px) and (orientation: portrait) {
          .index .map .rwdmap .map-wrapper .legend-mobile {
            display: block;
            bottom: 95px; } }
  @media (max-width: 992px) and (orientation: portrait) and (max-height: 720px) {
    .map-overview.open ~ .legend-mobile {
      -webkit-transform-origin: right bottom;
      -ms-transform-origin: right bottom;
      transform-origin: right bottom;
      -webkit-transform: scale(0.65);
      -moz-transform: scale(0.65);
      -ms-transform: scale(0.65);
      -o-transform: scale(0.65);
      transform: scale(0.65); } }
  @media (max-width: 992px) and (orientation: portrait) and (max-height: 630px) {
    .map-overview.open ~ .legend-mobile {
      -webkit-transform-origin: right bottom;
      -ms-transform-origin: right bottom;
      transform-origin: right bottom;
      -webkit-transform: scale(0);
      -moz-transform: scale(0);
      -ms-transform: scale(0);
      -o-transform: scale(0);
      transform: scale(0); } }
        @media screen and (max-width: 992px) and (orientation: landscape) {
          .mobile .index .map-overview.open ~ .legend-mobile {
            -webkit-transform-origin: right bottom;
            -ms-transform-origin: right bottom;
            transform-origin: right bottom;
            -webkit-transform: scale(0);
            -moz-transform: scale(0);
            -ms-transform: scale(0);
            -o-transform: scale(0);
            transform: scale(0); } }
      .index .map .rwdmap .map-wrapper .leaflet-container .leaflet-pane.leaflet-map-pane .leaflet-popup-pane .leaflet-popup .leaflet-popup-content a {
        color: #005b80; }
        .index .map .rwdmap .map-wrapper .leaflet-container .leaflet-pane.leaflet-map-pane .leaflet-popup-pane .leaflet-popup .leaflet-popup-content a:hover {
          color: #097caa; }
      .index .map .rwdmap .map-wrapper .leaflet-container .leaflet-pane .leaflet-overlay-pane .leaflet-interactive[class*="area-lv"] {
        stroke: #2A638C;
        stroke-width: 1;
        fill-opacity: 0.55; }
        .index .map .rwdmap .map-wrapper .leaflet-container .leaflet-pane .leaflet-overlay-pane .leaflet-interactive[class*="area-lv"].active {
          stroke-width: 3;
          fill-opacity: 0.75; }
      .index .map .rwdmap .map-wrapper .leaflet-container .leaflet-pane .leaflet-overlay-pane .leaflet-interactive.area-lv0 {
        fill: #a6a6a6; }
      .index .map .rwdmap .map-wrapper .leaflet-container .leaflet-pane .leaflet-overlay-pane .leaflet-interactive.area-lv1 {
        fill: #00c168; }
      .index .map .rwdmap .map-wrapper .leaflet-container .leaflet-pane .leaflet-overlay-pane .leaflet-interactive.area-lv2 {
        fill: #fffc42; }
      .index .map .rwdmap .map-wrapper .leaflet-container .leaflet-pane .leaflet-overlay-pane .leaflet-interactive.area-lv3 {
        fill: #fc983b; }
      .index .map .rwdmap .map-wrapper .leaflet-container .leaflet-pane .leaflet-overlay-pane .leaflet-interactive.area-lv4 {
        fill: #cc0032; }
      .index .map .rwdmap .map-wrapper .leaflet-container .leaflet-pane .leaflet-overlay-pane .leaflet-interactive.area-lv5 {
        fill: #670096; }
      .index .map .rwdmap .map-wrapper .leaflet-container .leaflet-pane .leaflet-overlay-pane .leaflet-interactive.area-lv6 {
        fill: #7f0022; }
      .index .map .rwdmap .map-wrapper .leaflet-container .leaflet-pane .leaflet-marker-icon.vlv0 {
        background-color: #a6a6a6; }
      .index .map .rwdmap .map-wrapper .leaflet-container .leaflet-pane .leaflet-marker-icon.vlv1 {
        background-color: #80b939; }
      .index .map .rwdmap .map-wrapper .leaflet-container .leaflet-pane .leaflet-marker-icon.vlv2 {
        background-color: #fdee1c; }
      .index .map .rwdmap .map-wrapper .leaflet-container .leaflet-pane .leaflet-marker-icon.vlv3 {
        background-color: #e5701a; }
      .index .map .rwdmap .map-wrapper .leaflet-container .leaflet-pane .leaflet-marker-icon.vlv4 {
        background-color: #ff7ec6; }
      .index .map .rwdmap .map-wrapper .leaflet-container .leaflet-pane .leaflet-marker-icon.vlv5 {
        background-color: #ff53b2; }
      .index .map .rwdmap .map-wrapper .leaflet-container .leaflet-pane .leaflet-marker-icon.vlv6 {
        background-color: #ff25a0; }
      .index .map .rwdmap .map-wrapper .leaflet-container .leaflet-pane .leaflet-marker-icon.vlv7 {
        background-color: #f3008a; }
      .index .map .rwdmap .map-wrapper .leaflet-container .leaflet-control-container .leaflet-bottom.leaflet-right {
        pointer-events: unset;
        width: calc(100% - 255px); }
        .index .map .rwdmap .map-wrapper .leaflet-container .leaflet-control-container .leaflet-bottom.leaflet-right .leaflet-timeline-control {
          position: relative;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: justify;
          -ms-flex-pack: justify;
          justify-content: space-between;
          background-color: #8fbfef;
          margin: 2px 1%;
          width: 98%;
          height: 50px;
          padding: 3px 5px 0;
          border-radius: 99em; }
          .index .map .rwdmap .map-wrapper .leaflet-container .leaflet-control-container .leaflet-bottom.leaflet-right .leaflet-timeline-control:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: none;
            z-index: -1; }
          .index .map .rwdmap .map-wrapper .leaflet-container .leaflet-control-container .leaflet-bottom.leaflet-right .leaflet-timeline-control .sldr-ctrl-container {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
            -webkit-box-pack: space-evenly;
            -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
            width: 25%; }
            .index .map .rwdmap .map-wrapper .leaflet-container .leaflet-control-container .leaflet-bottom.leaflet-right .leaflet-timeline-control .sldr-ctrl-container .button-container {
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-pack: center;
              -ms-flex-pack: center;
              justify-content: center; }
              .index .map .rwdmap .map-wrapper .leaflet-container .leaflet-control-container .leaflet-bottom.leaflet-right .leaflet-timeline-control .sldr-ctrl-container .button-container button {
                width: 30%;
                height: 20px;
                border: none;
                margin: 0 2px;
                background-color: rgba(255, 255, 255, 0.7);
                border-radius: 3px; }
                .index .map .rwdmap .map-wrapper .leaflet-container .leaflet-control-container .leaflet-bottom.leaflet-right .leaflet-timeline-control .sldr-ctrl-container .button-container button.pause:before, .index .map .rwdmap .map-wrapper .leaflet-container .leaflet-control-container .leaflet-bottom.leaflet-right .leaflet-timeline-control .sldr-ctrl-container .button-container button.pause:after {
                  width: 4px;
                  height: 14px;
                  border: 1px solid #000000;
                  border-width: 0 0px;
                  background: black;
                  margin-top: -7px; }
                .index .map .rwdmap .map-wrapper .leaflet-container .leaflet-control-container .leaflet-bottom.leaflet-right .leaflet-timeline-control .sldr-ctrl-container .button-container button.pause:after {
                  margin-left: 2px; }
            .index .map .rwdmap .map-wrapper .leaflet-container .leaflet-control-container .leaflet-bottom.leaflet-right .leaflet-timeline-control .sldr-ctrl-container output.time-text {
              white-space: nowrap;
              font-size: 1.3em;
              letter-spacing: -0.5px;
              font-weight: 600; }
            @media screen and (max-width: 720px) {
              .index .map .rwdmap .map-wrapper .leaflet-container .leaflet-control-container .leaflet-bottom.leaflet-right .leaflet-timeline-control .sldr-ctrl-container output.time-text {
                font-size: 1.1em; } }
            @media screen and (max-width: 736px) and (orientation: landscape) {
              .index .map .rwdmap .map-wrapper .leaflet-container .leaflet-control-container .leaflet-bottom.leaflet-right .leaflet-timeline-control .sldr-ctrl-container output.time-text {
                font-size: 1em; } }
            @media screen and (max-width: 414px) and (orientation: portrait) {
              .index .map .rwdmap .map-wrapper .leaflet-container .leaflet-control-container .leaflet-bottom.leaflet-right .leaflet-timeline-control .sldr-ctrl-container {
                width: calc(35% - 0px); } }
          .index .map .rwdmap .map-wrapper .leaflet-container .leaflet-control-container .leaflet-bottom.leaflet-right .leaflet-timeline-control input.time-slider[type=range] {
            width: 65%;
            height: 22px;
            border: none;
            margin: 0 0 10px;
            margin-right: 20px;
            -webkit-transition: .2s;
            -o-transition: .2s;
            transition: .2s;
            -webkit-appearance: none; }
            @media screen and (max-width: 414px) and (orientation: portrait) {
              .index .map .rwdmap .map-wrapper .leaflet-container .leaflet-control-container .leaflet-bottom.leaflet-right .leaflet-timeline-control input.time-slider[type=range] {
                width: 55%;
                margin-right: 10px; } }
            .index .map .rwdmap .map-wrapper .leaflet-container .leaflet-control-container .leaflet-bottom.leaflet-right .leaflet-timeline-control input.time-slider[type=range]::-webkit-slider-thumb {
              -webkit-appearance: none;
              position: relative;
              background-color: #336699 !important;
              background: none;
              -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5), 1px 1px 1px rgba(0, 0, 0, 0.25);
              box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5), 1px 1px 1px rgba(0, 0, 0, 0.25);
              -webkit-transition: unset;
              -moz-transition: unset;
              -ms-transition: unset;
              -o-transition: unset;
              transition: unset; }
        .index .map .rwdmap .map-wrapper .leaflet-container .leaflet-control-container .leaflet-bottom.leaflet-right #play-speed {
          display: -webkit-flex;
          display: -moz-flex;
          display: -ms-flex;
          display: -o-flex;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          position: absolute;
          bottom: 5px;
          right: 30px;
          width: calc(65% - 10px);
          z-index: 801; }
          .index .map .rwdmap .map-wrapper .leaflet-container .leaflet-control-container .leaflet-bottom.leaflet-right #play-speed span {
            color: black;
            padding-left: 22px;
            padding-right: 12px;
            font-size: 1.2em; }
          @media screen and (max-width: 414px) and (orientation: portrait) {
            .index .map .rwdmap .map-wrapper .leaflet-container .leaflet-control-container .leaflet-bottom.leaflet-right #play-speed {
              right: 20px;
              width: calc(55% - 10px); }
              .index .map .rwdmap .map-wrapper .leaflet-container .leaflet-control-container .leaflet-bottom.leaflet-right #play-speed span {
                padding-right: 5px;
                font-size: 0.8em; } }
        .index .map .rwdmap .map-wrapper .leaflet-container .leaflet-control-container .leaflet-bottom.leaflet-right .leaflet-control-attribution {
          display: none; }
        @media screen and (max-height: 700px) and (orientation: landscape) {
          .index .map .rwdmap .map-wrapper .leaflet-container .leaflet-control-container .leaflet-bottom.leaflet-right {
            width: calc(100% - 250px); } }
        @media screen and (max-width: 992px) and (orientation: portrait) {
          .index .map .rwdmap .map-wrapper .leaflet-container .leaflet-control-container .leaflet-bottom.leaflet-right {
            width: 100%; } }

.index .charts.tab-wrapper {
  border-top: 1px dashed #b3b3b3;
  margin-top: 5px;
  padding-top: 15px;
  background-color: #ffffff; }
  .index .charts.tab-wrapper .tabs {
    margin-right: 5px; }
    @media screen and (min-width: 601px) and (max-width: 992px) {
      .index .charts.tab-wrapper .tabs {
        display: block; } }
  .index .charts.tab-wrapper .tab-content {
    overflow: hidden; }

.classroom {
  height: auto;
  overflow: unset; }
  .classroom .main {
    height: unset; }
    .classroom .main .content .cr-container {
      -webkit-overflow-scrolling: touch; }
      .classroom .main .content .cr-container .cr-cell {
        padding: 1.3% 2.18%;
        margin-bottom: 10px;
        border-radius: 10px;
        overflow: hidden;
        background-color: #314d3e;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center bottom;
        text-align: center;
        vertical-align: middle;
        -webkit-transition: all 0.25s 0s ease-in;
        -moz-transition: all 0.25s 0s ease-in;
        -ms-transition: all 0.25s 0s ease-in;
        -o-transition: all 0.25s 0s ease-in;
        transition: all 0.25s 0s ease-in; }
        @media screen and (max-width: 600px) {
          .classroom .main .content .cr-container .cr-cell {
            padding: 0.65% 2.18%; } }
        .classroom .main .content .cr-container .cr-cell.bg1 {
          background-image: url("../images/classroom/bg-board.png"); }
        .classroom .main .content .cr-container .cr-cell.cover {
          padding: 0; }
        .classroom .main .content .cr-container .cr-cell.topic {
          background-image: url("../images/classroom/bg-board0.png"); }
        .classroom .main .content .cr-container .cr-cell img {
          width: 100%;
          height: auto; }
      .classroom .main .content .cr-container .cr-cellXXX {
        display: none;
        border: 3px solid rgba(255, 255, 255, 0.25);
        max-height: 800px;
        width: 100%;
        height: 0;
        padding: 20px;
        margin-bottom: 10px;
        border-radius: 10px;
        overflow: hidden;
        background-color: #314d3e;
        background-image: url("../images/classroom/bg-board.png");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center bottom;
        -webkit-transition: all 0.25s 0s ease-in;
        -moz-transition: all 0.25s 0s ease-in;
        -ms-transition: all 0.25s 0s ease-in;
        -o-transition: all 0.25s 0s ease-in;
        transition: all 0.25s 0s ease-in; }
        @media screen and (max-width: 600px) {
          .classroom .main .content .cr-container .cr-cellXXX {
            padding: 10px; } }
        .classroom .main .content .cr-container .cr-cellXXX.cover {
          background-image: url("../images/classroom/cr-cover.png"); }
        .classroom .main .content .cr-container .cr-cellXXX.topic {
          background-image: url("../images/classroom/bg-board0.png"); }
          .classroom .main .content .cr-container .cr-cellXXX.topic img {
            width: 100%;
            height: auto; }
        .classroom .main .content .cr-container .cr-cellXXX.just-img {
          background-image: none; }
          .classroom .main .content .cr-container .cr-cellXXX.just-img img {
            width: 100%;
            height: auto;
            max-height: 100%; }
        .classroom .main .content .cr-container .cr-cellXXX.info {
          background-image: none; }
          .classroom .main .content .cr-container .cr-cellXXX.info .info-body {
            -webkit-box-flex: 4;
            -ms-flex: 4 4 0px;
            flex: 4 4 0;
            height: 80%;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            overflow: hidden;
            text-align: center; }
            .classroom .main .content .cr-container .cr-cellXXX.info .info-body > img {
              width: 100%;
              max-height: 100%; }
            .classroom .main .content .cr-container .cr-cellXXX.info .info-body .body-l,
            .classroom .main .content .cr-container .cr-cellXXX.info .info-body .body-r {
              -webkit-box-flex: 1;
              -ms-flex: auto 0 0px;
              flex: auto 0 0;
              width: calc(50% - 20px);
              text-align: center;
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-orient: vertical;
              -webkit-box-direction: normal;
              -ms-flex-flow: column nowrap;
              flex-flow: column nowrap;
              height: 100%;
              -webkit-box-pack: center;
              -ms-flex-pack: center;
              justify-content: center;
              margin: 0 5px; }
              .classroom .main .content .cr-container .cr-cellXXX.info .info-body .body-l img,
              .classroom .main .content .cr-container .cr-cellXXX.info .info-body .body-r img {
                -webkit-box-flex: 1;
                -ms-flex: auto auto 0px;
                flex: auto auto 0;
                max-height: calc(100% - 35px); }
                @media (max-width: 992px) {
                  .classroom .main .content .cr-container .cr-cellXXX.info .info-body .body-l img,
                  .classroom .main .content .cr-container .cr-cellXXX.info .info-body .body-r img {
                    max-height: calc(100%); } }
              .classroom .main .content .cr-container .cr-cellXXX.info .info-body .body-l.hasnote img,
              .classroom .main .content .cr-container .cr-cellXXX.info .info-body .body-r.hasnote img {
                max-height: calc(100% - 25px); }
              .classroom .main .content .cr-container .cr-cellXXX.info .info-body .body-l h5,
              .classroom .main .content .cr-container .cr-cellXXX.info .info-body .body-r h5 {
                -webkit-box-flex: 1;
                -ms-flex: auto auto 25px;
                flex: auto auto 25px;
                color: white;
                font-size: 1.4em;
                font-weight: 400;
                line-height: 35px;
                padding: 0; }
                @media (max-width: 992px) {
                  .classroom .main .content .cr-container .cr-cellXXX.info .info-body .body-l h5,
                  .classroom .main .content .cr-container .cr-cellXXX.info .info-body .body-r h5 {
                    font-size: 1em;
                    line-height: 25px; } }
                @media (max-width: 480px) {
                  .classroom .main .content .cr-container .cr-cellXXX.info .info-body .body-l h5,
                  .classroom .main .content .cr-container .cr-cellXXX.info .info-body .body-r h5 {
                    font-size: .7em;
                    line-height: 20px; } }
            .classroom .main .content .cr-container .cr-cellXXX.info .info-body.col3 {
              display: -webkit-inline-box;
              display: -ms-inline-flexbox;
              display: inline-flex;
              -webkit-box-orient: horizontal;
              -webkit-box-direction: normal;
              -ms-flex-flow: row wrap;
              flex-flow: row wrap; }
              .classroom .main .content .cr-container .cr-cellXXX.info .info-body.col3 .body-l,
              .classroom .main .content .cr-container .cr-cellXXX.info .info-body.col3 .body-r {
                height: 80%; }
                @media (max-width: 480px) {
                  .classroom .main .content .cr-container .cr-cellXXX.info .info-body.col3 .body-l,
                  .classroom .main .content .cr-container .cr-cellXXX.info .info-body.col3 .body-r {
                    height: 70%; } }
              .classroom .main .content .cr-container .cr-cellXXX.info .info-body.col3 .info-bottom1 {
                height: 20%;
                width: 100%;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                justify-content: center;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center; }
                @media (max-width: 480px) {
                  .classroom .main .content .cr-container .cr-cellXXX.info .info-body.col3 .info-bottom1 {
                    height: 30%; } }
                .classroom .main .content .cr-container .cr-cellXXX.info .info-body.col3 .info-bottom1 ul.word {
                  color: #ffffff;
                  font-size: 1.4em;
                  line-height: 1.5;
                  font-weight: 600; }
                  @media (max-width: 992px) {
                    .classroom .main .content .cr-container .cr-cellXXX.info .info-body.col3 .info-bottom1 ul.word {
                      font-size: 1.2em;
                      line-height: 1.4;
                      font-weight: 400; } }
                  @media (max-width: 600px) {
                    .classroom .main .content .cr-container .cr-cellXXX.info .info-body.col3 .info-bottom1 ul.word {
                      font-size: .95em;
                      line-height: 1.2; } }
                  @media (max-width: 480px) {
                    .classroom .main .content .cr-container .cr-cellXXX.info .info-body.col3 .info-bottom1 ul.word {
                      font-size: .7em;
                      line-height: 1; } }
                .classroom .main .content .cr-container .cr-cellXXX.info .info-body.col3 .info-bottom1 .icon {
                  height: 100%; }
                  .classroom .main .content .cr-container .cr-cellXXX.info .info-body.col3 .info-bottom1 .icon img {
                    height: 100%;
                    width: auto; }
                .classroom .main .content .cr-container .cr-cellXXX.info .info-body.col3 .info-bottom1 > img {
                  height: 100%;
                  width: auto; }
            @media (max-width: 480px) {
              .classroom .main .content .cr-container .cr-cellXXX.info .info-body {
                height: 65%; } }
        .classroom .main .content .cr-container .cr-cellXXX.chat {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-direction: column;
          flex-direction: column;
          height: 100%;
          background-image: none;
          background-color: #314d3e; }
          .classroom .main .content .cr-container .cr-cellXXX.chat img {
            width: 100%;
            height: auto; }
          .classroom .main .content .cr-container .cr-cellXXX.chat .chat-body {
            -webkit-box-flex: 4;
            -ms-flex: 4 4 0px;
            flex: 4 4 0;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center; }
            .classroom .main .content .cr-container .cr-cellXXX.chat .chat-body > img {
              vertical-align: middle; }
            .classroom .main .content .cr-container .cr-cellXXX.chat .chat-body .bubble {
              -webkit-box-flex: 1;
              -ms-flex: 1 1 0px;
              flex: 1 1 0;
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              margin: 5px 0; }
              .classroom .main .content .cr-container .cr-cellXXX.chat .chat-body .bubble .rabbit {
                width: 120px;
                max-height: 100%;
                text-align: center; }
                .classroom .main .content .cr-container .cr-cellXXX.chat .chat-body .bubble .rabbit img {
                  height: 100%;
                  max-width: 209px;
                  max-height: 236px; }
              .classroom .main .content .cr-container .cr-cellXXX.chat .chat-body .bubble .say {
                position: relative;
                color: white;
                font-size: 1.4em;
                font-weight: 600;
                background-color: rgba(0, 0, 0, 0.5);
                margin-left: 20px;
                padding: 10px;
                border-radius: 8px; }
                @media (max-width: 992px) {
                  .classroom .main .content .cr-container .cr-cellXXX.chat .chat-body .bubble .say {
                    padding: 5px; } }
                @media (max-width: 600px) {
                  .classroom .main .content .cr-container .cr-cellXXX.chat .chat-body .bubble .say {
                    padding: 2px; } }
                .classroom .main .content .cr-container .cr-cellXXX.chat .chat-body .bubble .say:before {
                  content: '';
                  position: absolute;
                  left: -30px;
                  bottom: 10px;
                  width: 0;
                  height: 0;
                  border-style: solid;
                  border-width: 10px 30px 10px 0;
                  border-color: transparent rgba(0, 0, 0, 0.5) transparent transparent; }
                .classroom .main .content .cr-container .cr-cellXXX.chat .chat-body .bubble .say .emoji {
                  text-align: center;
                  height: 1.6em;
                  vertical-align: middle;
                  padding: 0 5px; }
                @media (max-width: 600px) {
                  .classroom .main .content .cr-container .cr-cellXXX.chat .chat-body .bubble .say {
                    font-size: .7em; } }
              .classroom .main .content .cr-container .cr-cellXXX.chat .chat-body .bubble.reverse {
                -webkit-box-orient: horizontal;
                -webkit-box-direction: reverse;
                -ms-flex-direction: row-reverse;
                flex-direction: row-reverse; }
                .classroom .main .content .cr-container .cr-cellXXX.chat .chat-body .bubble.reverse .say {
                  margin-right: 20px; }
                  .classroom .main .content .cr-container .cr-cellXXX.chat .chat-body .bubble.reverse .say:before {
                    left: unset;
                    right: -30px;
                    border-width: 10px 0 10px 30px;
                    border-color: transparent transparent transparent rgba(0, 0, 0, 0.5); }
        .classroom .main .content .cr-container .cr-cellXXX.tb {
          background-image: none; }
          .classroom .main .content .cr-container .cr-cellXXX.tb .tb-body {
            height: 80%;
            text-align: center; }
            .classroom .main .content .cr-container .cr-cellXXX.tb .tb-body img {
              width: 100%;
              height: auto;
              max-height: 100%;
              vertical-align: middle; }
    @media screen and (orientation: landscape) {
      .mobile .classroom .main {
        padding: 5px; } }

.site.container {
  padding: 20px 0; }
  @media screen and (max-width: 600px) {
    .site.container {
      padding: 5px; } }
  .site.container h2 {
    background-color: rgba(51, 204, 204, 0.5); }
  .site.container h3 {
    background-color: rgba(51, 204, 204, 0.5);
    font-weight: 400; }
  .site.container .video-block #imgbox {
    padding-top: 5px; }
    .site.container .video-block #imgbox img {
      width: 100%;
      height: auto; }

.questionnaire {
  height: unset; }
  .questionnaire .paper-wrapper {
    font-size: 1rem;
    min-height: calc(100vh - 40px);
    color: #00004d;
    position: relative;
    margin: 15px 0 25px;
    padding: 20px 20px 20px 50px;
    -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.55), inset 0 0 0px 10px #fffaf4;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.55), inset 0 0 0px 10px #fffaf4; }
    @media screen and (max-width: 414px) {
      .questionnaire .paper-wrapper {
        margin: 8px; } }
    .questionnaire .paper-wrapper.ruled {
      background-color: #fffaf4;
      background-image: -webkit-repeating-linear-gradient(transparent 0, transparent 1em, rgba(51, 51, 51, 0.15) 0, rgba(51, 51, 51, 0.15) 1.031em);
      background-image: -o-repeating-linear-gradient(transparent 0, transparent 1em, rgba(51, 51, 51, 0.15) 0, rgba(51, 51, 51, 0.15) 1.031em);
      background-image: repeating-linear-gradient(transparent 0, transparent 1em, rgba(51, 51, 51, 0.15) 0, rgba(51, 51, 51, 0.15) 1.031em); }
      .questionnaire .paper-wrapper.ruled::after {
        content: "";
        position: absolute;
        left: 1.5rem;
        top: 0;
        height: 100%;
        width: .1rem;
        border-color: rgba(220, 0, 0, 0.5);
        border-style: solid;
        border-width: 0 .1rem 0 .1rem; }
    .questionnaire .paper-wrapper h2 {
      font-size: 2em;
      line-height: 1.5em;
      text-align: center;
      font-weight: 600;
      font-weight: 500; }
    .questionnaire .paper-wrapper p {
      font-size: 1.4em;
      padding: 5px 0; }
    .questionnaire .paper-wrapper .form-content {
      padding-top: 30px;
      padding-bottom: 30px; }
      .questionnaire .paper-wrapper .form-content > p + p {
        text-indent: 2em; }
      .questionnaire .paper-wrapper .form-content li {
        margin-bottom: 20px; }
      .questionnaire .paper-wrapper .form-content .plus {
        margin-top: 10px;
        padding: 15px;
        font-size: 1.2rem; }
        .questionnaire .paper-wrapper .form-content .plus .satisfy .title {
          font-size: 1.25rem;
          line-height: 2.4em; }
          .questionnaire .paper-wrapper .form-content .plus .satisfy .title ~ label {
            line-height: 2.4em; }
          .questionnaire .paper-wrapper .form-content .plus .satisfy .title ~ * {
            width: unset; }
        .questionnaire .paper-wrapper .form-content .plus .satisfy input[type=text] {
          font-size: 1em;
          height: 2.5rem; }
          .questionnaire .paper-wrapper .form-content .plus .satisfy input[type=text]:focus, .questionnaire .paper-wrapper .form-content .plus .satisfy input[type=text].valid {
            border-color: #666666;
            -webkit-box-shadow: unset;
            box-shadow: unset;
            color: black; }
            .questionnaire .paper-wrapper .form-content .plus .satisfy input[type=text]:focus + label, .questionnaire .paper-wrapper .form-content .plus .satisfy input[type=text].valid + label {
              color: grey; }
          .questionnaire .paper-wrapper .form-content .plus .satisfy input[type=text]::-webkit-input-placeholder {
            /* Chrome/Opera/Safari */
            color: #666666;
            font-size: 0.8em;
            text-align: right;
            padding-left: 0px;
            padding-right: 0px; }
          .questionnaire .paper-wrapper .form-content .plus .satisfy input[type=text]::-moz-placeholder {
            /* Firefox 19+ */
            color: #666666;
            font-size: 0.8em;
            text-align: right;
            padding-left: 0px;
            padding-right: 0px; }
          .questionnaire .paper-wrapper .form-content .plus .satisfy input[type=text]:-ms-input-placeholder {
            /* IE 10+ */
            color: #666666;
            font-size: 0.8em;
            text-align: right;
            padding-left: 0px;
            padding-right: 0px; }
          .questionnaire .paper-wrapper .form-content .plus .satisfy input[type=text]:-moz-placeholder {
            /* Firefox 18- */
            color: #666666;
            font-size: 0.8em;
            text-align: right;
            padding-left: 0px;
            padding-right: 0px; }
        .questionnaire .paper-wrapper .form-content .plus .satisfy input[type=radio] + span {
          font-size: inherit;
          color: #00004d;
          text-shadow: 0 0 3px #fffaf4; }
          .questionnaire .paper-wrapper .form-content .plus .satisfy input[type=radio] + span:before {
            -webkit-box-shadow: 0 0 2px 5px #fffaf4;
            box-shadow: 0 0 2px 5px #fffaf4;
            background-color: #fffaf4; }
        .questionnaire .paper-wrapper .form-content .plus .satisfy textarea {
          font-size: 1.25rem;
          background-color: #fffaf4;
          -webkit-box-shadow: 0 0 4px 8px #fffaf4;
          box-shadow: 0 0 4px 8px #fffaf4;
          border: 1px dashed grey;
          padding: 10px;
          border-radius: 5px; }
        .questionnaire .paper-wrapper .form-content .plus .satisfy .inline-item {
          width: 100%;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          padding-left: 30px; }
          .questionnaire .paper-wrapper .form-content .plus .satisfy .inline-item > label {
            line-height: 40px;
            margin-right: 30px; }
          .questionnaire .paper-wrapper .form-content .plus .satisfy .inline-item .inline-input {
            width: auto; }
          @media screen and (max-width: 414px) {
            .questionnaire .paper-wrapper .form-content .plus .satisfy .inline-item {
              -webkit-box-orient: vertical;
              -webkit-box-direction: normal;
              -ms-flex-flow: column nowrap;
              flex-flow: column nowrap; } }
      .questionnaire .paper-wrapper .form-content .basic {
        margin-top: 10px;
        padding: 15px; }
        .questionnaire .paper-wrapper .form-content .basic h3 {
          background-color: #fbd374;
          padding: 0 25px;
          margin: 0 -30px;
          line-height: 1.8;
          font-weight: 400; }
        .questionnaire .paper-wrapper .form-content .basic .with-title {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          margin-bottom: 20px; }
          .questionnaire .paper-wrapper .form-content .basic .with-title .title {
            -webkit-box-flex: 0;
            -ms-flex: 0 0 100px;
            flex: 0 0 100px;
            font-size: 1.25rem;
            line-height: 2.4em; }
            .questionnaire .paper-wrapper .form-content .basic .with-title .title ~ label {
              line-height: 2.4em; }
            .questionnaire .paper-wrapper .form-content .basic .with-title .title ~ * {
              width: unset; }
          .questionnaire .paper-wrapper .form-content .basic .with-title input[type=text],
          .questionnaire .paper-wrapper .form-content .basic .with-title input[type=tel] {
            font-size: 1.25rem; }
            .questionnaire .paper-wrapper .form-content .basic .with-title input[type=text]::-webkit-input-placeholder,
            .questionnaire .paper-wrapper .form-content .basic .with-title input[type=tel]::-webkit-input-placeholder {
              /* Chrome/Opera/Safari */
              color: #666666;
              font-size: 0.8em;
              text-align: right;
              padding-left: 0px;
              padding-right: 0px; }
            .questionnaire .paper-wrapper .form-content .basic .with-title input[type=text]::-moz-placeholder,
            .questionnaire .paper-wrapper .form-content .basic .with-title input[type=tel]::-moz-placeholder {
              /* Firefox 19+ */
              color: #666666;
              font-size: 0.8em;
              text-align: right;
              padding-left: 0px;
              padding-right: 0px; }
            .questionnaire .paper-wrapper .form-content .basic .with-title input[type=text]:-ms-input-placeholder,
            .questionnaire .paper-wrapper .form-content .basic .with-title input[type=tel]:-ms-input-placeholder {
              /* IE 10+ */
              color: #666666;
              font-size: 0.8em;
              text-align: right;
              padding-left: 0px;
              padding-right: 0px; }
            .questionnaire .paper-wrapper .form-content .basic .with-title input[type=text]:-moz-placeholder,
            .questionnaire .paper-wrapper .form-content .basic .with-title input[type=tel]:-moz-placeholder {
              /* Firefox 18- */
              color: #666666;
              font-size: 0.8em;
              text-align: right;
              padding-left: 0px;
              padding-right: 0px; }
            @media screen and (max-width: 414px) {
              .questionnaire .paper-wrapper .form-content .basic .with-title input[type=text],
              .questionnaire .paper-wrapper .form-content .basic .with-title input[type=tel] {
                width: 100%; } }
          .questionnaire .paper-wrapper .form-content .basic .with-title input[type=checkbox] + span,
          .questionnaire .paper-wrapper .form-content .basic .with-title input[type=radio] + span {
            font-size: 1.2em;
            color: #00004d;
            text-shadow: 0 0 3px #fffaf4; }
            .questionnaire .paper-wrapper .form-content .basic .with-title input[type=checkbox] + span:before,
            .questionnaire .paper-wrapper .form-content .basic .with-title input[type=radio] + span:before {
              -webkit-box-shadow: 0 0 2px 5px #fffaf4;
              box-shadow: 0 0 2px 5px #fffaf4;
              background-color: #fffaf4; }
          .questionnaire .paper-wrapper .form-content .basic .with-title input[type=radio] + span:before {
            border-color: #00004d; }
          .questionnaire .paper-wrapper .form-content .basic .with-title input[type=radio]:checked + span:before {
            border-color: #65bdb3; }
          .questionnaire .paper-wrapper .form-content .basic .with-title .inline-item {
            width: 100%; }
            .questionnaire .paper-wrapper .form-content .basic .with-title .inline-item > label {
              line-height: 40px;
              margin-right: 30px; }
        .questionnaire .paper-wrapper .form-content .basic .notice p {
          font-size: 1.25rem; }
      .questionnaire .paper-wrapper .form-content .action {
        text-align: center;
        padding: 10px; }
        .questionnaire .paper-wrapper .form-content .action .btn {
          margin: 0 20px;
          font-size: 1.2em; }
          .questionnaire .paper-wrapper .form-content .action .btn.cancel {
            background-color: #737373; }
            .questionnaire .paper-wrapper .form-content .action .btn.cancel:hover {
              background-color: #878787; }
  .questionnaire a.btn {
    margin: 15px 10px 0; }
    .questionnaire a.btn.cancel {
      background-color: #737373; }
      .questionnaire a.btn.cancel:hover {
        background-color: #878787; }
  .questionnaire #done-message,
  .questionnaire #fail-message {
    display: none;
    padding: 10px;
    text-align: center;
    padding: calc(50vh - 100px) 0; }

#modal-flag .modal-content {
  height: auto; }
  #modal-flag .modal-content #img-wrapper {
    height: 100%;
    padding-bottom: 90%;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain; }

#modal-tolerance {
  background-color: #314d3e; }
  @media screen and (max-width: 414px) and (orientation: landscape) {
    #modal-tolerance {
      background-position: center 0; } }
  .mobile #modal-tolerance {
    height: 85%; }
    .mobile #modal-tolerance .modal-content .title span {
      font-size: 1.1em; }
    .mobile #modal-tolerance .modal-content .content li {
      font-size: 1em; }
  #modal-tolerance .modal-content {
    height: calc(100% - 95px); }
    #modal-tolerance .modal-content::-webkit-scrollbar {
      width: 10px; }
    #modal-tolerance .modal-content::-webkit-scrollbar-track {
      border-radius: 5px;
      background-color: black; }
    #modal-tolerance .modal-content::-webkit-scrollbar-thumb {
      border-radius: 5px;
      width: 10px;
      border: 2px solid black;
      background-color: #999999; }
    #modal-tolerance .modal-content .title {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      background-color: rgba(255, 255, 255, 0.15);
      border-radius: 10px;
      color: white;
      padding: 5px; }
      #modal-tolerance .modal-content .title .icon img {
        width: 80px;
        max-height: 100%; }
      #modal-tolerance .modal-content .title span {
        padding-left: 10px;
        font-size: 1.25em; }
    #modal-tolerance .modal-content .content {
      margin-top: 5px; }
      #modal-tolerance .modal-content .content li {
        padding: 10px 0 10px 1.5em;
        font-size: 1.125em;
        line-height: 1.4em;
        list-style-position: outside;
        text-indent: -1.1em; }
        #modal-tolerance .modal-content .content li + li {
          border-top: 1px solid rgba(255, 255, 255, 0.2); }
  #modal-tolerance .modal-footer {
    background-color: unset;
    display: block;
    text-align: center;
    background-image: url("../images/bg-modal.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    border-radius: 5px;
    height: 60px; }
    #modal-tolerance .modal-footer a {
      display: inline-block;
      padding: 0 5px;
      background-color: #7a1f1f;
      line-height: 40px;
      color: white; }
      #modal-tolerance .modal-footer a:hover {
        background-color: #a62b2b; }

#toast-container {
  top: 0;
  position: fixed;
  margin-top: 140px;
  pointer-events: none;
  z-index: 998; }
  #toast-container .toast {
    font-size: 1em;
    padding: 5px 12px;
    max-width: 250px;
    text-align: center;
    margin: 0 auto;
    pointer-evnets: normal;
    font-weight: 400; }
  @media screen and (max-width: 992px) {
    #toast-container {
      margin-top: 90px; } }
  @media screen and (max-width: 600px) {
    #toast-container {
      margin-top: 190px; }
      #toast-container .toast {
        margin: 0 auto; } }

.border-radius {
  border-radius: 2px; }

.border-radius-pill {
  border-radius: 100px; }

.border-width-xs {
  width: 20%; }

.border-width-sm {
  width: 40%; }

.border-width-md {
  width: auto; }

.border-width-lg {
  width: auto; }

.login-wrap {
  height: 100%;
  color: #e7e7e7; }
  .login-wrap .main {
    background-color: #343838 !important;
    color: inherit;
    height: 100%;
    max-height: calc(100% - 0px);
    margin-top: 100px;
    padding: 40px 0 0; }
    @media screen and (max-width: 768px) {
      .login-wrap .main {
        margin-top: 0; } }
    @media screen and (max-width: 834px) {
      .login-wrap .main {
        height: 100%;
        max-height: calc(100% - 45%); } }
    @media screen and (max-width: 600px) {
      .login-wrap .main {
        height: 100vh; } }
    .login-wrap .main .content {
      text-align: center; }
      @media screen and (max-width: 834px) {
        .login-wrap .main .content {
          border-right: 0px; } }
      @media all and (min-width: 768px) and (max-width: 1024px) {
        .login-wrap .main .content {
          padding: 0px 33px; } }
      @media screen and (max-width: 834px) {
        .login-wrap .main .content {
          padding: 0px 15px; } }
    .login-wrap .main .l-space {
      padding: 0 60px 0; }
      @media screen and (max-width: 834px) {
        .login-wrap .main .l-space {
          padding: 0 0; } }
      .login-wrap .main .l-space.first-line {
        border-left: 1px solid #2a2a2a; }
        @media all and (min-width: 768px) and (max-width: 1024px) {
          .login-wrap .main .l-space.first-line {
            border-left: 0px solid #2a2a2a; } }
    .login-wrap .main .forget_pw p {
      font-size: .85em;
      color: #ff646a;
      text-decoration: underline; }
    .login-wrap .main h4 {
      font-size: 1.85em;
      line-height: 2em;
      padding-left: 0px !important;
      text-align: left; }
      .login-wrap .main h4 span {
        width: 100px;
        background-color: #ff646a;
        height: 1px;
        display: block;
        margin-bottom: 30px; }
    .login-wrap .main .wordsNum {
      position: absolute;
      right: 10px;
      bottom: 20px;
      font-size: 10px; }
    .login-wrap .main .dtp-icon-area {
      position: relative; }
      .login-wrap .main .dtp-icon-area .dtp-icon {
        position: absolute;
        top: 0;
        padding-left: 10px;
        padding-top: 12px; }
      .login-wrap .main .dtp-icon-area input {
        border-bottom: 1px solid #9e9e9e00;
        border: 1px solid #9e9e9e33;
        text-indent: 50px;
        font-size: 1.15rem; }
    .login-wrap .main .marquee-file-wrapp {
      position: relative;
      height: 1px;
      width: 100%;
      background: #565555; }
      .login-wrap .main .marquee-file-wrapp:before {
        content: "or";
        position: absolute;
        left: 45%;
        top: -10px;
        width: 40px;
        height: 30px;
        color: inherit;
        background-color: #343838;
        text-align: center; }
    .login-wrap .main .w-100 {
      width: 100%; }
    .login-wrap .main .w-50 {
      width: 50%; }
    .login-wrap .main .btn {
      height: 2.5rem;
      line-height: 2.5rem; }
      .login-wrap .main .btn.login-btn-blue, .login-wrap .main .btn.btn-back, .login-wrap .main .btn.btn-light {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        background-color: #3b8594; }
      .login-wrap .main .btn.btn-back {
        background-color: #4a4a4a;
        color: #e7e7e7; }
      .login-wrap .main .btn.btn-light {
        background-color: transparent;
        -webkit-box-shadow: none;
        box-shadow: none;
        color: #e7e7e7; }
    .login-wrap .main .file-wrapp {
      position: relative;
      padding: 30px;
      border: 1px solid #565555;
      margin-bottom: 20px; }
      .login-wrap .main .file-wrapp h3 {
        background-color: #343838;
        position: absolute;
        top: -12px;
        z-index: 1;
        padding-right: 15px; }
        .login-wrap .main .file-wrapp h3.title {
          font-size: 16px; }
      .login-wrap .main .file-wrapp .input-field {
        color: inherit;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row; }
        .login-wrap .main .file-wrapp .input-field > label {
          color: red;
          background: pink; }
        .login-wrap .main .file-wrapp .input-field .btn {
          height: 2.5rem;
          line-height: 2.5rem;
          width: 100%; }
        .login-wrap .main .file-wrapp .input-field .file-path-wrapper {
          width: 100%;
          padding: 1px 3px 2px 0px; }
          .login-wrap .main .file-wrapp .input-field .file-path-wrapper .file-path {
            background-color: #2b2c2c;
            -webkit-box-shadow: 0px 0px 2px 0px #252626 inset;
            box-shadow: 0px 0px 2px 0px #252626 inset;
            padding-left: 10px !important;
            border-bottom: 0px solid transparent; }
  .login-wrap input:not([type]),
  .login-wrap input[type=text]:not(.browser-default),
  .login-wrap input[type=password]:not(.browser-default),
  .login-wrap input[type=email]:not(.browser-default),
  .login-wrap input[type=url]:not(.browser-default),
  .login-wrap input[type=time]:not(.browser-default),
  .login-wrap input[type=date]:not(.browser-default),
  .login-wrap input[type=datetime]:not(.browser-default),
  .login-wrap input[type=datetime-local]:not(.browser-default),
  .login-wrap input[type=tel]:not(.browser-default),
  .login-wrap input[type=number]:not(.browser-default),
  .login-wrap input[type=search]:not(.browser-default) {
    border-bottom: 1px solid #9e9e9e33; }
  .login-wrap textarea.materialize-textarea.border-textarea {
    height: 130px;
    border: 1px solid #9e9e9e33; }
  .login-wrap .input-field > label {
    font-size: 1.2em; }
  .login-wrap .input-field #first_name {
    height: 3rem; }

.billboard .container {
  height: auto; }

.billboard header {
  background-color: #398593; }
  .billboard header .logo-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .billboard header .logo-box img {
      border: 0px;
      width: 300px; }
    .billboard header .logo-box h1 {
      border-left: 1px solid #fff;
      line-height: 1.125em; }

.billboard .banner {
  padding-top: 40px;
  height: 150px;
  background: #055A81;
  background: -webkit-linear-gradient(118deg, #02344d 40%, #075b83 64%);
  background: -o-linear-gradient(118deg, #02344d 40%, #075b83 64%);
  background: linear-gradient(332deg, #02344d 40%, #075b83 64%);
  background: -webkit-linear-gradient(-33deg, #055A81 40%, #247599 64%);
  background: -moz-linear-gradient(-33deg, #055A81 40%, #247599 64%);
  background: -o-linear-gradient(-33deg, #055A81 40%, #247599 64%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='055A81', endColorstr='#247599', GradientType=1); }
  .billboard .banner h2 {
    font-weight: bold; }
    .billboard .banner h2 span {
      width: 30px;
      display: block;
      border-top: 2px solid #8FB83D; }

.billboard .main {
  position: relative;
  background-image: url("../images/union.png");
  background-position: left center;
  background-repeat: repeat-x; }
  .billboard .main .content {
    position: relative;
    top: -30px; }
  .billboard .main .wrapperTable {
    color: #938D8D;
    border-radius: 4px;
    background: #F5F5F5; }
  .billboard .main .tabbox {
    border-bottom: 1px dotted #ccc;
    padding-top: 20px;
    padding-bottom: 10px; }
    .billboard .main .tabbox:nth-child(2n) {
      background: #DDE3E7; }
    .billboard .main .tabbox .date-item {
      text-align: right; }
    .billboard .main .tabbox .list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
      .billboard .main .tabbox .list i {
        color: #8fb83D;
        padding-right: 5px; }
      .billboard .main .tabbox .list a {
        color: #403F3F; }
        .billboard .main .tabbox .list a :hover {
          color: #8fb83d; }
        .billboard .main .tabbox .list a .list-item {
          width: 300px;
          font-size: 18px; }

.billboard footer {
  background-color: transparent; }
  .billboard footer h3 {
    color: #938D8D;
    padding: 20px 0; }

.billboard .divider-rule {
  height: 1px;
  background-color: #e0e0e0; }

.txt-open {
  height: 30px;
  max-height: 10%;
  -webkit-transition: height 1s ease-in-out;
  -o-transition: height 1s ease-in-out;
  transition: height 1s ease-in-out;
  line-height: 2em; }
  .txt-open img {
    display: none; }
  .txt-open div {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    text-align: justify;
    padding: 0 30px; }
  .txt-open.active {
    white-space: normal;
    height: 150px;
    overflow-y: scroll; }
    .txt-open.active img {
      display: block; }

@media screen and (max-width: 660px) {
  .billboard header .logo-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
    .billboard header .logo-box h1 {
      font-size: 1.3em;
      border-left: 0px;
      padding-bottom: 10px; }
  .billboard .main .content {
    left: 0; }
  .billboard .main .tabbox {
    padding-top: 10px; }
    .billboard .main .tabbox .date-item {
      padding-bottom: 10px;
      text-align: left; } }
