@charset "UTF-8";
/* ==========================
 * Mixin-變數
 * ResetOther-相關外掛既有樣式調整
 * Layout-共同樣式
 * Componment-元件
 * ==========================
 * */
/* 5 size*/
/*=========mixin start=========*/
/*width class setting*/
.width_10 {
  width: 10%;
}

.width_20 {
  width: 20%;
}

.width_30 {
  width: 30%;
}

.width_40 {
  width: 40%;
}

.width_50 {
  width: 50%;
}

.width_60 {
  width: 60%;
}

.width_70 {
  width: 70%;
}

.width_80 {
  width: 80%;
}

.width_90 {
  width: 90%;
}

.width_100 {
  width: 100%;
}

/*margin class setting*/
/*font-content class setting*/
.t_gray1 {
  color: #717171;
}

.t_gray2 {
  color: #606060;
}

.t_gray3 {
  color: #525252;
}

/*卷軸樣式修改*/
.scroll_bar {
  overflow-y: auto;
}
.scroll_bar::-webkit-scrollbar {
  width: 6px;
}
.scroll_bar::-webkit-scrollbar-track {
  background: #fff;
}
.scroll_bar::-webkit-scrollbar-thumb {
  background: #ddd;
}
.scroll_bar::-webkit-scrollbar-thumb:hover {
  background: #ccc;
}

.scroll_bar_h {
  overflow-y: auto;
}
.scroll_bar_h::-webkit-scrollbar {
  height: 5px;
}
.scroll_bar_h::-webkit-scrollbar-track {
  background: #fff;
}
.scroll_bar_h::-webkit-scrollbar-thumb {
  background: #ddd;
}
.scroll_bar_h::-webkit-scrollbar-thumb:hover {
  background: #ccc;
}

[tabindex="0"]:focus-visible {
  outline: 4px dotted #eeb412 !important;
}

/*=========mixin end=========*/
/*bootstrap 頁數選擇 pagination*/
.page-link {
  color: #606060;
}
.page-link:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.page-link:hover {
  background-color: #e9e9e9;
}

.page-item.active .page-link {
  background-color: #2D9D8C;
  border-color: #2D9D8C;
}

/*bootstrap css*/
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  background-color: #78C6C6;
}

/*click button box shadow*/
.btn-check:focus + .btn, .btn:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

/*select margin bottom*/
.form-select, .form-control {
  margin-bottom: 0.3rem;
}

.form-control:focus, .form-select:focus {
  border-color: #2D9D8C;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(108, 206, 208, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(108, 206, 208, 0.25);
}

.nav-pills {
  background: #F6F6F6;
  padding: 0.5rem;
  border-radius: 5px;
}

.bs-tooltip-bottom.show {
  display: none !important;
}

/*table*/
.table-dark {
  --bs-table-bg: #646464 !important;
}

.bootstrap-table .card-view .card-view-title {
  color: #2D9D8C;
  margin-right: 0.5rem;
}

/*hide bootstrap-table toolbar button*/
.fixed-table-loading, .fixed-table-toolbar {
  display: none;
}

/*accordion active background*/
.accordion-button:not(.collapsed) {
  background-color: #eafbff;
}

.accordion-button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

/*accordion active arrow down icon*/
.accordion-button:not(.collapsed)::after {
  background-image: url("../images/icon/icon_down.svg");
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.form-check-input:checked {
    background-color: #FFC543;
    border-color: #FFC543;
}
.form-check-input:focus {
    border-color: #feea86;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(254, 234, 134, .25);
}
/*=========layout start=========*/
.t_main {
  color: #2D9D8C;
}

.t_sub {
  color: #78C6C6;
}

.t_ye {
  color: #eeb412;
}

.t_og {
  color: #EA5C2B;
}

.t_rd {
  color: #E03015;
}

.t_bu {
  color: #506C80;
}

.t_lightbu {
  color: #506C80;
}

.t_gn {
  color: #2D9D8C;
}

.t_gy {
  color: #606060;
}

.t_wh {
  color: #fff;
}

body, html {
  width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  font-family: "Hind Siliguri", "Noto Sans TC", sans-serif;
  margin: 0;
  padding: 0;
  letter-spacing: 1px;
  counter-reset: num_mark img_num;
}
@media screen and (max-width: 992px) and (orientation: portrait) {
  body, html {
    overflow-y: auto;
  }
}

img {
  max-width: 100%;
  height: auto;
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0px;
  padding: 0px;
  color: #606060;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.6rem;
}

h5 {
  font-size: 1.4rem;
}

h6 {
  font-size: 1.2rem;
}

p {
  font-size: 1rem;
}

/*header*/
header {
  width: 100%;
  height: auto;
  padding: 0.5rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  top: 0;
  background-color: #2D9D8C;
  z-index: 1;
}
header nav li.nav-item {
  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;
  margin-left: 0.5rem;
}
header .logo {
  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;
}
header .logo .img_outer {
  width: 30px;
  height: 30px;
}

a {
  text-decoration: none !important;
  color: #eeb412;
  padding: 0;
  margin: 0;
}
a.btn{
    border-radius: 0;
}
a:hover {
  color: #eeb412;
}

.name {
  margin-right: 3rem;
}

.name::before {
  content: "";
  display: inline-block;
  float: left;
  width: 2.5rem;
  height: 2.5rem;
  background-image: url("../img/logo.png");
  background-size: cover;
  margin-right: 0.5rem;
}

button:focus-visible, a:focus-visible {
  outline: 4px dotted #eeb412 !important;
  border-radius: 3px;
}

/*gap setting*/
.m_0 {
  margin: 0;
}

.p_0 {
  padding: 0;
}

.mb_0 {
  margin-bottom: 0 !important;
}

.w-sm {
  max-width: 400px;
}

.hide {
  display: none;
}

.show {
  display: block;
}

/*align setting*/
.no_wrap {
  white-space: nowrap;
}

.wrap {
  white-space: wrap !important;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.t_justify {
  text-align: justify;
}

.float_left {
  float: left;
}

.float_right {
  float: right;
}

.flex_center {
  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;
}

.flex_start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

.flex_between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space between;
      -ms-flex-pack: space between;
          justify-content: space between;
}

.flex_end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.vertial_center {
  vertical-align: middle !important;
}

.min-w100 {
  min-width: 100px;
}
.min-w-auto{
    min-width: auto !important;
}

/*table thead postition*/
.thead_sticky {
  position: sticky !important;
  top: 0 !important;
}

.table_main_bgc {
  background-color: #2D9D8C;
}


.table-primary {
    --bs-table-color: #fff;
    --bs-table-bg: #2D9D8C;
}
/*border-line*/
.line {
  width: 100%;
  height: 1px;
  background: #d8d8d8;
  margin: 1rem 0;
}

.vertical_line {
  width: 1px;
  height: 100%;
  background: #bbbbbb;
  margin-right: 1.5rem;
}

.bg_blur {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.bg_lightwhite {
  background-color: #F8FCFF;
}

.bg_white {
  background-color: #fff;
}

.main_bg::before {
  background-image: url("../images/bg.svg");
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.8;
}

/*RWD device setting*/
body.desktop .desktop_hide, body.touch-desktop .desktop_hide {
  display: none;
}
body.desktop .desktop_show, body.touch-desktop .desktop_show {
  display: block;
}
body.tablet .tablet_hide {
  display: none;
}
body.tablet .tablet_show {
  display: block;
}
body.mobile .mobile_show {
  display: block;
}
body.mobile .mobile_hide {
  display: none;
}
body.tablet .handheld_device_hide, body.mobile .handheld_device_hide {
  display: none;
}
body.tablet .handheld_device_show, body.mobile .handheld_device_show {
  display: block;
}

/*RWD device setting end*/
#loading {
  z-index: 99;
  background: rgba(255, 255, 255, 0.8);
  left: 0;
  top: 0;
  color: #fff;
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  -webkit-box-shadow: 2px 2px 10px;
          box-shadow: 2px 2px 10px;
  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;
}
#loading .v-progress-circular {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100vh;
}

.block_wrapper {
    border-radius: 10px;
    padding: 2rem 2rem;
    box-shadow: 0px 0px 8px #e1e1e1;
}
@media screen and (max-width: 576px) and (orientation: portrait) {
  .block_wrapper {
    padding: 2rem 1rem;
  }
}

.nav-link {
  color: #717171;
}

.nav-link:focus, .nav-link:hover {
  color: #78C6C6;
}

footer {
  background: #808A95;
  width: 100%;
  height: auto;
  z-index: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 0.5rem 0;
  color: #fff;
}

.badge {
  width: 20px;
  height: 20px;
  background-color: #2D9D8C;
  padding: 4px 0 0 0;
  margin: 0.1rem 0.3rem 0 0;
  border-radius: 100%;
}

.form-label.required::before {
  content: "*";
  color: red;
  margin-left: 0.2rem;
}

@media screen and (max-width: 992px) and (orientation: portrait) {
  .content {
    width: 100%;
  }
}

@media screen and (max-width: 992px) and (orientation: portrait) {
  .sidebar {
    display: none;
    width: 100%;
    position: absolute;
    height: 100vh;
    z-index: 9;
  }
}

.sidebar_menu {
  background-color: #F8FCFF;
}
.sidebar_menu .sidebar_title {
  margin-bottom: 1rem;
}
.sidebar_menu ul {
  padding: 0;
}
.sidebar_menu li {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  padding: 0.5rem 0rem 0.5rem 2rem;
  color: #717171;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  cursor: pointer;
  border-radius: 5px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.sidebar_menu li:hover {
  background-color: #78C6C6;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  color: #fff;
}
.sidebar_menu li:hover a {
  color: #fff;
}
.sidebar_menu li::before {
  /*content: "";*/
  width: 10px;
  height: 10px;
  border-radius: 100%;
  display: inline-block;
  margin-right: 0.5rem;
  background-color: #fff;
  border: 1px solid #ccc;
}
.sidebar_menu li a {
  color: #717171;
  font-size: 1.4rem;
  width: 100%;
  height: 100%;
}
.sidebar_menu li.active {
  background-color: #78C6C6;
  color: #fff;
}
.sidebar_menu li.active a {
  background-color: #78C6C6;
  color: #fff;
}
.sidebar_menu li.active::before {
  background-color: #D3FFF8;
  border: 1px solid #D3FFF8;
}

.main_content {
  width: 100%;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 576px) and (orientation: portrait) {
  .main_content {
    padding: 1rem;
  }
  .mobile_show{
      display: block !important;
  }
  .mobile_hide{
      display: none !important;
  }
  header{
      flex-wrap: wrap;
  }
}

.index_section {
/*  position: absolute;
  top: 5rem;
  left: 5rem;*/
}
.index_section .bg_img{
/*    right: -25rem;
    bottom: -25rem;*/
}
.index_section .bg_img img{
    width: 90%;
}
.index_section .info_content{
    padding-top: 3rem;
    padding-left: 3rem;
}

@media screen and (max-width: 992px) and (orientation: portrait) {
  .index_section {
    position: relative;
    top: 0;
    left: 0;
    padding-top: 2rem;
  }
    .index_section .bg_img {
        position: relative;
        right: 0rem;
        bottom: 0rem;
    }

}

@media screen and (max-width: 992px) and (orientation: portrait) {
  .bg_img {
    right: 0rem !important;
    position: relative !important;
    text-align: center;
  }

}
@media screen and (max-width: 992px) and (orientation: portrait) {
  .bg_img img {
    width: 80%;
    margin-top: 1rem;
  }
}

@media screen and (max-width: 576px) and (orientation: portrait) {
    .bg_img {
        bottom: -15px !important;
    }
}

.form_block {
  overflow: hidden;
  border-radius: 15px;
  display: inline-block;
  width: 100%;
}
.form_block .form_header {
  text-align: left;
  background-color: #506C80;
  padding: 1.5rem 3rem;
  color: #fff;
}
@media screen and (max-width: 576px) and (orientation: portrait) {
  .form_block .form_header {
    padding: 1rem 1rem;
  }
}
.form_block .form_header h5, .form_block .form_header p {
  color: #fff;
}
@media screen and (max-width: 576px) and (orientation: portrait) {
  .form_block .form_header h5 {
    font-size: 1.1rem;
  }
}
.form_block .form_content {
  background-color: #fff;
  padding: 1rem 2rem;
}
@media screen and (max-width: 576px) and (orientation: portrait) {
  .form_block .form_content {
    padding: 0.5rem;
  }
}
@media screen and (max-width: 576px) and (orientation: portrait) {
  .form_block .form_content .accordion-button {
    padding: 1rem 0.5rem;
  }
    .form_block .verify_block{
        flex-direction: column-reverse;
    }
    .form_block .verify_form{
        display: flex;
        margin-bottom: 1rem;
    }
}
.form_block .form_btns button {
  border-radius: 0;
}
.form_block .form_item {
  text-align: left;
  margin-bottom: 1rem;
}
.form_block .form_item label {
  margin-bottom: 0;
}
.form_block .verify_outer {
  border-radius: 5px;
  border: 1px solid #bbbbbb;
  overflow: hidden;
  width: 100%;
}
.form_block .verify_outer .verify_action {
  padding: 0.2rem 0.5rem;
}
.form_block .verify_outer .verify_img {
  background-color: #ffe4e4;
}
.form_block .notice{
    width: 100%;
}
.decor_word::before, .decor_word_bor::before {
  content: "Q";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #2D9D8C;
  color: #fff;
  font-weight: bold;
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50px;
  margin-right: 0.5rem;
}

.decor_word_bor::before {
  content: "A";
  background-color: #fff;
  border: 1px solid #2D9D8C;
  color: #2D9D8C;
  font-weight: bold;
}

.bg_img {
  position: absolute;
  bottom: 0;
  right: 5rem;
  width: 100%;
  max-width: 650px;
}
.bg_img img{
    width: 100%;
}

.accordion-button:not(.collapsed)::before {
  font-family: "tabler-icons";
  content: "\f704";
  font-size: 24px;
  display: inline-block;
  margin-right: 0.5rem;
  color: #78C6C6;
}

.accordion {
    border: 0.5px solid #EAEAEA;
    border-radius: 5px;
}

.accordion-collapse .accordion-body {
  background-color: #F9FCFC;
}

.accordion-button:not(.collapsed) {
  color: #506C80;
  background-color: #EDFFFF;
}

@media screen and (max-width: 992px) and (orientation: portrait) {
  .form_block {
    width: 100%;
  }
}
.form_block .accordion-item {
/*  width: 800px;*/
}
@media screen and (max-width: 992px) and (orientation: portrait) {
  .form_block .accordion-item {
    width: 100%;
  }
}

.accordion-button::after {
  width: 24px;
  height: 24px;
}

.nav-tabs .nav-link.active {
  background-color: #78C6C6;
  color: #fff;
}

@media screen and (max-width: 576px) and (orientation: portrait) {
  .arrow-steps .step {
    margin-bottom: 0.5rem !important;
  }
}

body.scale-version {
  overflow: auto;
}
body.scale-version .index_section{
    top: 3rem;
    left: 3rem;
}
body.scale-version h3 {
  font-size: 135%;
}
body.scale-version h3.my-4 {
  margin: 0.5rem 0 !important;
}
body.scale-version header {
  padding: 0.2rem 1rem;
}
body.scale-version header h1 {
  font-size: 60% !important;
}
body.scale-version .form_block .notice p{
    font-size: 80%;
}
body.scale-version .form_header {
  padding: 1rem 2rem;
}
body.scale-version .form_header h5 {
  font-size: 100%;
}
body.scale-version .form_header p {
  font-size: 80%;
}
body.scale-version .sidebar_menu {
  padding: 0.5rem 0;
}
body.scale-version .sidebar_menu .sidebar_inner h4 {
  font-size: 120%;
}
body.scale-version .sidebar_menu .sidebar_inner ul li {
  font-size: 100%;
  padding: 0.3rem 1rem;
}
body.scale-version .sidebar_menu a{
    font-size: 100%;
}
body.scale-version .progress_bar {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  margin-bottom: 0.5rem !important;
}
body.scale-version .form_block {
  width: 100%;
}
body.scale-version .form_item {
  -webkit-transform: scale(1);
          transform: scale(1);
  margin-bottom: 0;
}
body.scale-version .arrow-steps .step:after {
  border-top: 19px solid transparent;
  border-bottom: 19px solid transparent;
  right: -16px;
}
body.scale-version .bg_img {
  position: fixed;
  bottom: 2rem;
  right: -15rem;
}
body.scale-version .bg_img img {
  max-width: 560px;
  width: 55%;
}
body.scale-version .count_title span, body.scale-version .detail li, body.scale-version .block_info p {
  font-size: 80%;
}

@media screen and (max-width: 576px) and (orientation: portrait) {
  .container-fluid.px-5, .container-fluid {
    padding: 0 !important;
  }
}

.multi-steps > li.is-active ~ li:before, .multi-steps > li.is-active:before {
  content: counter(stepNum);
  font-family: inherit;
  font-weight: 700;
}
.multi-steps > li.is-active ~ li:after, .multi-steps > li.is-active:after {
  background-color: #ededed;
}

.multi-steps {
  display: table;
  table-layout: fixed;
  width: 100%;
  margin-bottom: 0;
}
.multi-steps > li {
  counter-increment: stepNum;
  text-align: center;
  display: table-cell;
  position: relative;
  color: #506C80;
}
.multi-steps > li:before {
  content: "\f00c";
  content: "✓;";
  content: "𐀃";
  content: "𐀄";
  content: "✓";
  display: block;
  margin: 0 auto 4px;
  background-color: #fff;
  width: 36px;
  height: 36px;
  line-height: 32px;
  text-align: center;
  font-weight: bold;
  position: relative;
  z-index: 1;
  border-width: 2px;
  border-style: solid;
  border-color: #506C80;
  border-radius: 50%;
}
.multi-steps > li:after {
  content: "";
  height: 2px;
  width: 100%;
  background-color: #506C80;
  position: absolute;
  top: 16px;
  left: 50%;
  z-index: 0;
}
.multi-steps > li:last-child:after {
  display: none;
}
.multi-steps > li.is-active:before {
  background-color: #506C80;
  border-color: #506C80;
  color: #fff;
}
.multi-steps > li.is-active ~ li {
  color: #808080;
}
.multi-steps > li.is-active ~ li:before {
  background-color: #ededed;
  border-color: #ededed;
}

/*=========layout end=========*/
/*=========componment start=========*/
button {
  border: none;
  color: #fff;
  background: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.btn_lg {
  width: 100%;
}

.btn_bor {
  padding: 0.2rem 1rem;
  border: 1px solid #2D9D8C;
  border-radius: 5px;
  color: #2D9D8C;
  white-space: nowrap;
  min-width: 90px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 576px) and (orientation: portrait) {
  .btn_bor {
    width: 100%;
  }
}
.btn_bor:hover {
  background-color: #33b19e;
  color: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn_bor.default {
  color: #d4d4d4;
  border: 1px solid #afafaf;
  cursor: auto;
}
.btn_bor.default:hover {
  background-color: rgba(170, 170, 170, 0);
  color: #d4d4d4;
}
.btn_bor.clr_main {
  border-color: #2D9D8C;
  color: #2D9D8C;
}
.btn_bor.clr_sub {
  border-color: #eeb412;
  color: #eeb412;
}
.btn_bor.btn_check {
  background-color: #2D9D8C;
}
.btn_bor.btn_check:hover {
  background-color: #227569;
}
.btn_bor.btn_save {
  background-color: #eeb412;
}
.btn_bor.btn_save:hover {
  background-color: #f1c342;
}
.btn_bor.btn_cancel {
  background-color: #bbbbbb;
}
.btn_bor.btn_cancel:hover {
  background-color: #d5d5d5;
}
.btn_bor.btn_alert {
  background-color: #2D9D8C;
}
.btn_bor.btn_alert:hover {
  background-color: #38c5af;
}
.btn_bor.btn_print {
  background-color: #78C6C6;
}
.btn_bor.btn_print:hover {
  background-color: #9cd5d5;
}

.btn_solid {
  background-color: #2D9D8C;
  border-radius: 5px;
  color: #fff;
  white-space: nowrap;
  min-width: 90px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 576px) and (orientation: portrait) {
  .btn_solid {
    width: 100%;
  }
}
.btn_solid:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #227569;
  color: #fff;
}
.btn_solid.default {
  color: #d4d4d4;
  background-color: #afafaf;
}
.btn_solid.default:hover {
  color: #d4d4d4;
  cursor: auto;
}
.btn_solid.clr_main {
  background-color: #2D9D8C;
}
.btn_solid.clr_sub {
    background-color: #78C6C6;
    color: #fff;
}
.btn_solid.clr_sub:hover {
    background-color: #6dbfbf;
}
.btn_solid.btn_check {
  background-color: #506C80;
}
.btn_solid.btn_check:hover {
  background-color: #3c5261;
  color: #fff;
}
.btn_solid.btn_save {
  background-color: #eeb412;
}
.btn_solid.btn_save:hover {
  background-color: #f1c342;
}
.btn_solid.btn_cancel {
  background-color: #bbbbbb;
}
.btn_solid.btn_cancel:hover {
  background-color: #d5d5d5;
}
.btn_solid.btn_alert {
  background-color: #2D9D8C;
}
.btn_solid.btn_alert:hover {
  background-color: #38c5af;
}
.btn_solid.btn_print {
  background-color: #78C6C6;
}
.btn_solid.btn_print:hover {
  background-color: #9cd5d5;
}

/*文字btn*/
.text_primary {
  color: #2D9D8C;
}
.text_primary:hover {
  color: #227569;
}

.text_brown {
  color: #FFFCF0;
}
.text_brown:hover {
  color: #fff2bd;
}

/*帶有前綴的title*/
.decor_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.decor_title::before {
  content: "";
  background-color: #78C6C6;
  width: 0.5rem;
  height: 1.6rem;
  display: inline-block;
  margin-right: 0.5rem;
}

.count_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.count_title::before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #2D9D8C;
  border-radius: 50px;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  color: #fff;
  margin-right: 0.5rem;
  /* 增加 counter */
  counter-increment: num_mark;
  /* 顯示 counter */
  content: counter(num_mark);
}

/*提示文字*/
.tip_outer {
  position: relative;
}
.tip_outer .tip_content {
  display: none;
  padding: 1rem;
  background: #666;
  position: absolute;
  bottom: 120%;
  left: 0;
}

/*選單漢堡設定*/
#nav-icon {
  display: none;
}
@media screen and (max-width: 992px) and (orientation: portrait) {
  #nav-icon {
    display: block;
  }
}

#nav-icon {
  width: 40px;
  height: 40px;
  position: relative;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
#nav-icon span {
  display: block;
  position: absolute;
  height: 6px;
  width: 100%;
  background: #eeb412;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
#nav-icon span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
#nav-icon span:nth-child(2) {
  top: 15px;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
#nav-icon span:nth-child(3) {
  top: 30px;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
#nav-icon.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -3px;
  left: 8px;
}
#nav-icon.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
#nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 25px;
  left: 8px;
}

/*移到頂端button*/
#btn-back-to-top {
  position: fixed;
  bottom: 30%;
  right: 20px;
  min-width: 50px;
  border-radius: 50px;
  display: none;
  background-color: #eeb412;
}

.accordion_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  white-space: nowrap;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.accordion_title .fa-chevron-down {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.accordion_title .fa-chevron-down.collaspe_show {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
.accordion_title .time {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #666;
}

.slide_show {
  -webkit-animation: slide_down 3s forwards;
          animation: slide_down 3s forwards;
}

.slide_hide {
  -webkit-animation: slide_up 3s forwards;
          animation: slide_up 3s forwards;
}

@-webkit-keyframes slide_down {
  from {
    max-height: 0px;
  }
  to {
    max-height: 3500px;
  }
}

@keyframes slide_down {
  from {
    max-height: 0px;
  }
  to {
    max-height: 3500px;
  }
}
@-webkit-keyframes slide_up {
  0% {
    max-height: 3500px;
  }
  100% {
    max-height: 0px;
  }
}
@keyframes slide_up {
  0% {
    max-height: 3500px;
  }
  100% {
    max-height: 0px;
  }
}
.accordion_content {
  max-height: none;
}
.accordion_content.close {
  max-height: 0;
  overflow: hidden;
}

@media (max-width: 576px) {
  .table td {
    padding: 0.5px;
  }
  .tableRwd {
    display: block;
    width: auto;
    overflow-x: auto;
  }
  .tableRwd tbody {
    display: block;
    width: 100%;
  }
  .tableRwd tr {
    display: inline-block;
    width: 100%;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    border: 1px solid #2D9D8C;
    border-radius: 5px;
  }
  .tableRwd tr:nth-child(odd) {
    background-color: #d6f3ef;
  }
  .tableRwd tr:hover {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background-color: rgba(238, 238, 238, 0.8);
  }
  .tableRwd thead {
    display: none;
  }
  .tableRwd td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: top;
        -ms-flex-align: top;
            align-items: top;
    text-align: left;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: relative;
    border: none;
    margin-bottom: 0.5rem;
  }
  .tableRwd td::before {
    min-width: 130px;
    content: attr(data-label);
    font-weight: bold;
    float: left;
    margin-right: 1rem;
    color: #227569;
    white-space: pre-wrap;
  }
}
@media screen and (max-width: 576px) and (max-width: 576px) and (orientation: portrait) {
  .tableRwd td {
    font-size: 1rem;
  }
}
/* Breadcrups CSS */
.clearfix:after {
  clear: both;
  content: "";
  display: block;
  height: 0;
}

/* Breadcrups CSS progress bar */
.arrow-steps .step {
  font-size: 14px;
  text-align: center;
  color: #666;
  cursor: default;
  margin: 0 3px;
  padding: 8px 8px 8px 35px;
  min-width: 150px;
  float: left;
  position: relative;
  background-color: #ddd;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.arrow-steps .step:after {
  content: " ";
  position: absolute;
  top: 0;
  right: -17px;
  width: 0;
  height: 0;
  border-top: 19px solid transparent;
  border-bottom: 17px solid transparent;
  border-left: 17px solid #ddd;
  z-index: 2;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}

@media screen and (max-width: 576px) and (max-width: 576px) and (orientation: portrait) {
    .arrow-steps .step:after {
        border-bottom: 21px solid transparent;
    }
    .arrow-steps .step{
        font-size: 16px;
    }
}

.arrow-steps .step:before {
  content: " ";
  position: absolute;
  top: 0;
  right: -17px;
  width: 0;
  height: 0;
  border-top: 19px solid transparent;
  border-bottom: 17px solid transparent;
  border-left: 17px solid #ddd;
  z-index: 2;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
  right: auto;
  left: 0;
  border-left: 17px solid #e4f3f3;
  z-index: 0;
}
.arrow-steps .step:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.arrow-steps .step:first-child:before {
  border: none;
}
.arrow-steps .step span {
  position: relative;
}
.arrow-steps .step span:before {
  opacity: 0;
  content: "✔";
  position: absolute;
  top: 0px;
  left: -20px;
}
.arrow-steps .step.done span:before {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease 0.5s;
  transition: opacity 0.3s ease 0.5s;
}
.arrow-steps .step.current {
  color: #fff;
  background-color: #78C6C6;
}
.arrow-steps .step.current:after {
  border-left: 17px solid #78C6C6;
}

/*=========componment end=========*/

.border_maincolor {
    border: 1px solid #78C6C6;
}
.form_block nav .nav-link {
    border-color: #e9ecef #e9ecef #dee2e6;
    margin-right: 0.5rem;
}
.label-width-fixed .form-label{
    min-width: 100px;
    text-align: right;
}
.info_message {
    background-color: #F8FEFF;
    padding: 3rem;
    border: 1px solid #CDDDE2;
}
    .info_message i {
        font-size: 3.5rem;
        color: #78C6C6;
    }

/*sweet alert*/
button.swal2-confirm.swal2-styled {
    background-color: #78C6C6;
}
button.swal2-styled{
    padding: 0.5rem 2rem;
}

.decor_title_circle:before {
    content: "";
    background-color: #78C6C6;
    width: 0.8rem;
    height: 0.8rem;
    display: inline-block;
    margin-right: 0.5rem;
    border-radius: 50px;
}

.select2-item{
    position: relative;
}

.form-control::placeholder {
    color: #ADADAD;
    opacity: 1; /* Firefox */
}

.form-control::-ms-input-placeholder { /* Edge 12-18 */
    color: #ADADAD;
}

@media screen and (max-width: 576px) and (orientation: portrait) {
    .mobile_flex_wrap {
        flex-wrap: wrap;
    }
}