@charset "UTF-8";
@-webkit-keyframes fadeIn {
  from {
    opacity: 0.3; }
  to {
    opacity: 1; } }
@keyframes fadeIn {
  from {
    opacity: 0.3; }
  to {
    opacity: 1; } }

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale(1);
    transform: scale(1); }
  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05); }
  to {
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes pulse {
  from {
    -webkit-transform: scale(1);
    transform: scale(1); }
  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05); }
  to {
    -webkit-transform: scale(1);
    transform: scale(1); } }

body.pane {
  background-image: url("../img/watermark.png");
  background-size: 632px 885px;
  background-repeat: repeat; }

.hint-wrapper {
  z-index: 999;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end; }
  .hint-wrapper .hint-cursor {
    position: absolute;
    top: -33px;
    left: -17px;
    -webkit-animation: fadeIn infinite 0.75s ease-in-out;
    animation: fadeIn infinite 0.75s ease-in-out;
    animation-direction: alternate-reverse; }
  .hint-wrapper .hint-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #fff;
    border-radius: 25px 25px 25px 5px;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.22);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.22);
    padding: 17px 30px; }
    .hint-wrapper .hint-container.hide {
      -webkit-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s;
      opacity: 0.5; }
    .hint-wrapper .hint-container .hint-right {
      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;
      font-size: 20px;
      font-weight: bold;
      color: #2754ac;
      background-repeat: no-repeat;
      background-position-x: calc(100% + 8px);
      background-position-y: 1px;
      margin-bottom: 15px; }
      .hint-wrapper .hint-container .hint-right .fc_red {
        color: #e00930; }
    .hint-wrapper .hint-container .hint-bottom {
      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; }
      .hint-wrapper .hint-container .hint-bottom a {
        pointer-events: all !important;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center; }
        .hint-wrapper .hint-container .hint-bottom a::after {
          content: "回上一步驟";
          font-family: "MicroSoft JhengHei", "微軟正黑體";
          font-size: 13px;
          color: #2754ac;
          margin-left: 7px;
          opacity: 0;
          -webkit-transition: 0.3s;
          -o-transition: 0.3s;
          transition: 0.3s; }
        .hint-wrapper .hint-container .hint-bottom a.after-index::after {
          content: '返回主選單'; }
        .hint-wrapper .hint-container .hint-bottom a:hover img {
          opacity: 0.6;
          -webkit-transition: 0.3s;
          -o-transition: 0.3s;
          transition: 0.3s; }
        .hint-wrapper .hint-container .hint-bottom a:hover::after {
          opacity: 1;
          -webkit-transition: 0.3s;
          -o-transition: 0.3s;
          transition: 0.3s; }
      .hint-wrapper .hint-container .hint-bottom ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
        .hint-wrapper .hint-container .hint-bottom ul li {
          width: 7px;
          height: 7px;
          background-color: #e3e3e3;
          border-radius: 50%;
          margin-left: 5px; }
          .hint-wrapper .hint-container .hint-bottom ul li.on {
            width: 5px;
            height: 5px;
            -webkit-box-shadow: 0 0 6px 0 #6e8cf1;
            box-shadow: 0 0 6px 0 #6e8cf1;
            border: solid 1px #ffffff;
            background-color: #6e8cf1; }
  .hint-wrapper .show-others-btn {
    cursor: pointer;
    pointer-events: all;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 10px;
    border: 1px solid #6e8cf1;
    padding: 5px 20px 5px 10px;
    position: relative;
    background-color: #6e8cf1;
    border-radius: 10px 10px 3px 10px;
    margin-bottom: 6px; }
    .hint-wrapper .show-others-btn::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #fff;
      border-radius: 10px 10px 3px 10px;
      -webkit-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s; }
    .hint-wrapper .show-others-btn:hover {
      color: #fff; }
      .hint-wrapper .show-others-btn:hover::before {
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
        width: 0%; }
      .hint-wrapper .show-others-btn:hover p {
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
        color: #fff; }
      .hint-wrapper .show-others-btn:hover svg path {
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
        fill: #fff; }
    .hint-wrapper .show-others-btn p {
      display: inline-block;
      color: #6e8cf1;
      position: relative; }
    .hint-wrapper .show-others-btn svg {
      width: 20px;
      position: relative; }

.hint-back-wrapper {
  pointer-events: all !important;
  cursor: pointer;
  display: inline-block;
  position: fixed;
  padding: 6px 18px;
  background-color: #6e8cf1;
  -webkit-box-shadow: 0 0 6px 0 #6e8cf1;
  box-shadow: 0 0 6px 0 #6e8cf1;
  top: 160px;
  right: calc(50% - 710px); }
  .hint-back-wrapper p {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    margin-right: 7px; }

.hint-end-wrapper {
  position: fixed;
  pointer-events: all;
  top: 190px;
  left: calc(50% - 95px);
  background-color: #5477ef;
  border-radius: 28px;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.22);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.22);
  width: 193px; }
  .hint-end-wrapper p {
    font-size: 20px;
    font-weight: bold;
    padding: 16px 0 20px;
    color: #fff;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3); }
  .hint-end-wrapper .bottom-link {
    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;
    pointer-events: all;
    padding: 14px 0;
    color: #fff;
    font-size: 15px;
    font-weight: bold; }
    .hint-end-wrapper .bottom-link img {
      margin-right: 15px; }

.hint-login-wrapper {
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 180px;
  left: calc(50% + 40px);
  height: 67px;
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }
  .hint-login-wrapper.show {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    opacity: 1; }
  .hint-login-wrapper.password-hint {
    top: 325px;
    left: calc(50% - 8px); }
  .hint-login-wrapper .text-container {
    height: 100%;
    padding: 0 20px;
    background-color: #fff;
    font-size: 20px;
    font-weight: bold;
    color: #2754ac;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 25px 25px 25px 5px;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.22);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.22); }

.nav-text-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0; }
  .nav-text-wrapper .nav-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    pointer-events: none;
    position: absolute;
    border-radius: 11px 11px 11px 3px;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.22);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.22);
    border: solid 1.5px #5477ef;
    background-color: #ffffff;
    height: 35px;
    padding: 0 15px;
    font-size: 15px;
    color: #2754ac;
    top: 50px;
    opacity: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s; }
    .nav-text-wrapper .nav-text.show {
      opacity: 1;
      -webkit-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s; }
    .nav-text-wrapper .nav-text:nth-child(1) {
      left: 40px; }
    .nav-text-wrapper .nav-text:nth-child(2) {
      left: 120px; }
    .nav-text-wrapper .nav-text:nth-child(3) {
      left: 230px; }
    .nav-text-wrapper .nav-text:nth-child(4) {
      left: 320px; }
    .nav-text-wrapper .nav-text:nth-child(5) {
      left: 410px; }
    .nav-text-wrapper .nav-text:nth-child(6) {
      left: 520px; }
    .nav-text-wrapper .nav-text:nth-child(7) {
      left: 600px; }
    .nav-text-wrapper .nav-text:nth-child(8) {
      left: 700px; }
    .nav-text-wrapper .nav-text:nth-child(9) {
      left: 790px; }

.mainNav li {
  pointer-events: all !important; }
  .mainNav li a {
    pointer-events: all !important; }

#screen-alert {
  position: fixed;
  z-index: 1100;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.21); }
  #screen-alert .alert-wrapper {
    position: absolute;
    top: calc(50% - 100px);
    left: calc(50% - 250px);
    width: 500px;
    height: 200px;
    background-color: #fff;
    border-radius: 4px;
    padding: 0.2em;
    -webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2); }
    #screen-alert .alert-wrapper .alert-toggle {
      display: inline-block;
      width: 33px;
      height: 33px;
      background: url(../img/ui.png) no-repeat -100px -283px;
      z-index: 9999;
      position: absolute;
      right: -13px;
      top: -12px;
      border: none;
      cursor: pointer; }
    #screen-alert .alert-wrapper .top-bar {
      border-radius: 4px 4px 0 0;
      border: 0;
      background: #eb133a;
      height: 0;
      padding-top: 0;
      padding: 0.4em 1em; }
    #screen-alert .alert-wrapper p {
      font-size: 18px;
      line-height: 30px;
      padding-top: 70px;
      font-weight: bold;
      text-align: center; }

a:not(#next-link, .branch-link, .section-link) {
  pointer-events: none; }

.ui-accordion .ui-accordion-header {
  cursor: default; }

.hint-wrapper {
  position: fixed;
  top: 90px;
  right: calc(50% + 60px); }

.menu-wrapper .section-list a {
  pointer-events: all !important; }

.todolist_link {
  position: absolute; }

.nav-text-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0; }
  .nav-text-wrapper .nav-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    border-radius: 11px 11px 11px 3px;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.22);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.22);
    border: solid 1.5px #5477ef;
    background-color: #ffffff;
    height: 35px;
    padding: 0 15px;
    font-size: 15px;
    color: #2754ac;
    top: 50px;
    opacity: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s; }
    .nav-text-wrapper .nav-text.show {
      opacity: 1;
      -webkit-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s; }
    .nav-text-wrapper .nav-text:nth-child(1) {
      left: 40px; }
    .nav-text-wrapper .nav-text:nth-child(2) {
      left: 120px; }
    .nav-text-wrapper .nav-text:nth-child(3) {
      left: 230px; }
    .nav-text-wrapper .nav-text:nth-child(4) {
      left: 320px; }
    .nav-text-wrapper .nav-text:nth-child(5) {
      left: 410px; }
    .nav-text-wrapper .nav-text:nth-child(6) {
      left: 520px; }
    .nav-text-wrapper .nav-text:nth-child(7) {
      left: 600px; }
    .nav-text-wrapper .nav-text:nth-child(8) {
      left: 700px; }
    .nav-text-wrapper .nav-text:nth-child(9) {
      left: 790px; }

.menu-wrapper {
  position: absolute;
  z-index: 999;
  top: 30px;
  right: 100px; }
  .menu-wrapper .top-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.22);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.22);
    background-color: #5477ef;
    border-radius: 25px 25px 25px 5px;
    padding: 12px 20px 12px 20px;
    margin-bottom: 10px; }
    .menu-wrapper .top-wrapper p {
      font-size: 16px;
      font-weight: bold;
      color: #ffffff;
      margin-right: 12px; }
    .menu-wrapper .top-wrapper img {
      cursor: pointer; }
      .menu-wrapper .top-wrapper img.hide {
        -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        transform: rotate(-180deg); }
  .menu-wrapper .section-list {
    float: right;
    border-radius: 29px 29px 3px 29px;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.22);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.22);
    border: solid 1.5px #91aafd;
    background-color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
    .menu-wrapper .section-list a {
      background-color: #ffffff;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      align-items: center;
      -webkit-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s;
      padding: 12px 20px 12px 20px;
      border-bottom: 1px solid rgba(145, 170, 253, 0.4); }
      .menu-wrapper .section-list a:first-of-type {
        border-radius: 29px 29px 0 0; }
      .menu-wrapper .section-list a:last-of-type {
        border-radius: 29px 29px 3px 29px; }
      .menu-wrapper .section-list a:hover {
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
        border-radius: 4px;
        -webkit-box-shadow: 0 0 10px 0 #a0a0a0;
        box-shadow: 0 0 10px 0 #a0a0a0;
        border: solid 1.5px #91aafd;
        background-color: #ffffff; }
        .menu-wrapper .section-list a:hover .title {
          font-weight: bold; }
        .menu-wrapper .section-list a:hover.done {
          background-color: #ffffff; }
      .menu-wrapper .section-list a.done {
        background-color: rgba(145, 170, 253, 0.04); }
        .menu-wrapper .section-list a.done .progress-container {
          display: none; }
        .menu-wrapper .section-list a.done .again-container {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          font-size: 15px;
          font-weight: bold;
          color: #4a78f6;
          padding-left: 18px; }
          .menu-wrapper .section-list a.done .again-container img {
            width: 15px;
            margin-right: 5px;
            -webkit-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
            transform: rotate(180deg); }
      .menu-wrapper .section-list a .title {
        font-size: 16px;
        color: #5477ef;
        width: 316px;
        line-height: 1.35;
        border-right: 1px solid rgba(145, 170, 253, 0.4); }
        .menu-wrapper .section-list a .title span {
          font-size: 12px;
          margin-left: 6px; }
      .menu-wrapper .section-list a .progress-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-left: 17px; }
        .menu-wrapper .section-list a .progress-container .progress-amt {
          font-size: 13px;
          color: #5477ef;
          margin-bottom: 5px; }
          .menu-wrapper .section-list a .progress-container .progress-amt span:first-of-type {
            font-size: 15px;
            color: #2754ac; }
        .menu-wrapper .section-list a .progress-container .bar {
          width: 104px;
          height: 12px;
          border-radius: 6px;
          border: solid 0.5px #c7c7c7;
          background-color: #f5f5f5;
          position: relative; }
          .menu-wrapper .section-list a .progress-container .bar .inner-bar {
            position: absolute;
            top: 0;
            left: 0;
            width: 60%;
            height: 10px;
            border-radius: 6px 0 0 6px;
            border: solid 0.5px #c7c7c7;
            background-image: -webkit-gradient(linear, right top, left top, color-stop(158%, #2754ac), to(#6e8cf1));
            background-image: -webkit-linear-gradient(right, #2754ac 158%, #6e8cf1);
            background-image: -o-linear-gradient(right, #2754ac 158%, #6e8cf1);
            background-image: linear-gradient(to left, #2754ac 158%, #6e8cf1); }
      .menu-wrapper .section-list a .again-container {
        display: none; }
