@charset "UTF-8";
/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  border-radius: 5px;
  border: solid 1px #e8e8e8;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 13px;
  font-weight: normal;
  height: 33px;
  line-height: 31px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: auto;
}

.nice-select:hover {
  border-color: #dbdbdb;
}

.nice-select:active, .nice-select.open, .nice-select:focus {
  border-color: #999;
}

.nice-select:after {
  border-bottom: 2px solid #999;
  border-right: 2px solid #999;
  content: '';
  display: block;
  height: 5px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  width: 5px;
}

.nice-select.open:after {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}

.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}

.nice-select.disabled:after {
  border-color: #cccccc;
}

.nice-select.wide {
  width: 100%;
}

.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}

.nice-select.right {
  float: right;
}

.nice-select.right .list {
  left: auto;
  right: 0;
}

.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}

.nice-select.small:after {
  height: 4px;
  width: 4px;
}

.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}

.nice-select .list {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  -ms-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
}

.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}

.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
  background-color: #f6f6f6;
}

.nice-select .option.selected {
  font-weight: bold;
}

.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}

.no-csspointerevents .nice-select .list {
  display: none;
}

.no-csspointerevents .nice-select.open .list {
  display: block;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  overflow: hidden;
  position: fixed;
  background: #000;
  opacity: 0.7;
  -webkit-overflow-scrolling: touch;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1001;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translateZ(0);
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  overflow: auto;
  box-sizing: border-box;
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  color: #000;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 0;
    padding-right: 0;
  }
}
/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.7;
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

/**
 * Fade-zoom animation for first dialog
 */
/* start state */
.my-mfp-zoom-in .zoom-anim-dialog {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}

/* animate in */
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

/* animate out */
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
}

/* Dark overlay, start state */
.my-mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

/* animate in */
.my-mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.5;
}

/* animate out */
.my-mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

.modal-dismiss {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: block;
  z-index: 0;
}

.white-popup-block {
  background-color: #fff;
  width: calc(100% - 15px * 2);
  max-width: 1000px;
  margin: 20px auto;
  padding: 0;
  position: relative;
  z-index: 1;
}

.mfp-content .card-box {
  background-color: #fff;
  position: relative;
  width: 100%;
  margin: 0 auto !important;
  max-width: 1000px;
  border: 0;
  border-radius: 0;
}
.mfp-content .mfp-close {
  width: 28px;
  height: 28px;
  padding: 0;
  line-height: 24px;
  border-radius: 10px;
  border: 2px solid #5e5e5e;
  top: 20px;
  right: 20px;
}

.mfp-close.btn-outline-primary {
  width: auto;
  height: auto;
  position: static;
  opacity: 1;
  color: #2f2e50;
  border: 1px solid #2f2e50;
  padding: 8px 16px;
  line-height: 15px;
  font-size: 13px;
  border-radius: 4px;
  font-family: 'Noto Sans TC', Arial, 'Microsoft JhengHei', '微軟正黑體', Helvetica, sans-serif, 'Microsoft YaHei';
}
.mfp-close.btn-outline-primary:hover, .mfp-close.btn-outline-primary:not(:disabled):not(.disabled):active {
  color: #fff;
  background-color: #2f2e50;
  border-color: #2f2e50;
}

html {
  width: 100%;
}

img {
  max-width: 100%;
  image-rendering: -webkit-optimize-contrast;
}

.loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: #f0f0f7;
}

.donut {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -1rem;
  margin-top: -1rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 0.3rem solid rgba(151, 159, 208, 0.3);
  border-top-color: #979fd0;
  -webkit-animation: 1.5s spin infinite linear;
  animation: 1.5s spin infinite linear;
}

.donut.multi {
  border-bottom-color: #979fd0;
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.user-contorl {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  background-color: #fff;
  display: none;
}
.user-contorl .d-flex {
  margin: 0 -5px;
}
.user-contorl .btn {
  width: calc(50% - 5px * 2);
  margin: 0 5px;
}

.is-mobile .user-contorl {
  display: block !important;
}
.is-mobile .topnav-menu-right__btn-group {
  display: none !important;
}

.datepicker {
  animation: none !important;
  font-size: 13px;
  z-index: 3;
}
.datepicker table tr td.active.active {
  background-color: #2f2e50 !important;
}

.collapse-trigger {
  line-height: 12px;
  color: #4d4f5c;
  position: absolute;
  padding: 10px 16px;
  z-index: 1;
}
.collapse-trigger:hover {
  color: #4d4f5c;
}
.collapse-trigger .border {
  width: 16px;
  height: 16px;
  border: solid 1px #d7dae2;
  display: inline-block;
  text-align: center;
  margin-left: 3px;
  vertical-align: middle;
}
.collapse-trigger i {
  font-size: 12px;
  color: #808495;
}
.collapse-trigger .text-unfold {
  display: inline;
}
.collapse-trigger .text-fold {
  display: none;
}
.collapse-trigger .mdi-arrow-up {
  display: none;
}
.collapse-trigger[aria-expanded="true"] .text-unfold, .collapse-trigger.active .text-unfold {
  display: none;
}
.collapse-trigger[aria-expanded="true"] .text-fold, .collapse-trigger.active .text-fold {
  display: inline;
}
.collapse-trigger[aria-expanded="true"] .mdi-arrow-down, .collapse-trigger.active .mdi-arrow-down {
  display: none;
}
.collapse-trigger[aria-expanded="true"] .mdi-arrow-up, .collapse-trigger.active .mdi-arrow-up {
  display: inline;
}

.l-search {
  padding: 19px 14px;
  position: relative;
}
.l-search .collapse-trigger {
  top: 0;
  right: 0;
}

.l-search-form {
  position: relative;
  padding-top: 5px;
  padding-right: 134px;
  min-height: 88px;
}
.l-search-form .row {
  margin-bottom: 1rem;
}
.l-search-form .row .form-group {
  margin-bottom: 0;
}
.l-search-form .row:last-child {
  margin-bottom: 0;
}
.l-search-form .btn-outline-primary {
  width: 100px;
  position: absolute;
  bottom: 0;
  right: 0;
  border-width: 2px;
}
.l-search-form .control-label {
  text-align: right;
  white-space: nowrap;
}

.btn-add,
.btn-export {
  background-color: #15614f;
  min-width: 100px;
}
.btn-add:hover,
.btn-export:hover {
  color: #fff;
}

.btn-back {
  min-width: 100px;
}

.action {
  position: relative;
  padding-top: 70px;
}
.action .btn {
  min-width: 80px;
  margin: 0 10px;
}
.action .btn:first-child {
  margin-left: 0;
}
.action .btn:last-child {
  margin-right: 0;
}
.action-main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.action-left {
  position: absolute;
  left: 0;
  bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.action-left .btn {
  margin: 0 6px;
}
.action-left .btn:first-child {
  margin-left: 0;
}
.action-left .btn:last-child {
  margin-right: 0;
}
.action-right {
  position: absolute;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.action-right .btn {
  margin: 0 6px;
}
.action-right .btn:first-child {
  margin-left: 0;
}
.action-right .btn:last-child {
  margin-right: 0;
}

.dataTables_wrapper th,
.dataTables_wrapper td,
.dataTables-bottom th,
.dataTables-bottom td {
  padding: 8px 8px;
  line-height: 28px;
}
.dataTables_wrapper .form-control,
.dataTables-bottom .form-control {
  display: inline-block;
  width: auto;
}
.dataTables_wrapper .dataTables_length,
.dataTables-bottom .dataTables_length {
  float: right;
}
.dataTables_wrapper .dataTables_info,
.dataTables-bottom .dataTables_info {
  font-weight: 400;
}
.dataTables_wrapper .custom-select,
.dataTables-bottom .custom-select {
  padding-right: 30px;
}
.dataTables_wrapper .dataTables_paginate .pagination,
.dataTables-bottom .dataTables_paginate .pagination {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  -webkit-justify-content: center !important;
  -moz-justify-content: center !important;
  justify-content: center !important;
}
.dataTables_wrapper .btn,
.dataTables-bottom .btn {
  line-height: 15px;
  padding: 8px;
  min-width: 69px;
}
.dataTables_wrapper .table,
.dataTables-bottom .table {
  color: #4d4f5c;
}
.dataTables_wrapper .table th,
.dataTables-bottom .table th {
  border: 0;
  background-color: #f5f6fa;
  color: #a3a6b4;
}
.dataTables_wrapper .highlight td,
.dataTables-bottom .highlight td {
  background-color: #b8d3ff;
}
.dataTables_wrapper tr:hover,
.dataTables-bottom tr:hover {
  background-color: #eee !important;
}
.dataTables_wrapper .hover,
.dataTables-bottom .hover {
  background-color: #eee;
}
.dataTables_wrapper .DTFC_Cloned tr,
.dataTables-bottom .DTFC_Cloned tr {
  background-color: #fff !important;
}
.dataTables_wrapper .dataTables_length label,
.dataTables-bottom .dataTables_length label {
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
}
.dataTables_wrapper .dataTables_length .custom-select,
.dataTables-bottom .dataTables_length .custom-select {
  padding-right: 30px;
  width: auto;
  display: inline-block;
}

.responsiveTable th,
.responsiveTable td {
  padding: 8px 8px;
  line-height: 28px;
  white-space: nowrap;
}
.responsiveTable td {
  min-height: 50px;
  line-height: 33px;
  height: 52px !important;
  vertical-align: middle;
}
.responsiveTable thead th {
  border: 0;
  background-color: #f5f6fa;
  color: #a3a6b4;
  vertical-align: middle;
}
.responsiveTable .form-control {
  display: inline-block;
  width: auto;
}
.responsiveTable .custom-select {
  padding-right: 30px;
}
.responsiveTable .btn {
  line-height: 15px;
  padding: 8px;
  min-width: 69px;
}
.responsiveTable .btn-light {
  width: 33px;
  height: 33px;
  min-width: 33px;
  line-height: 33px;
  font-size: 18px;
  padding: 0;
  border-radius: 50%;
  color: #2f2e50;
}
.responsiveTable .highlight td {
  background-color: #b8d3ff;
}
.responsiveTable tr:hover {
  background-color: #eee !important;
}
.responsiveTable .hover {
  background-color: #eee;
}
.responsiveTable tbody tr:last-child:hover {
  background-color: #fff !important;
}
.responsiveTable tbody tr:last-child td {
  border: 0;
  padding: 0;
  background-color: #fff;
}
.responsiveTable tbody tr:last-child td:last-child {
  margin-left: -1px;
}
.responsiveTable .form-check-inline {
  margin: 0 auto;
}
.responsiveTable .form-check-inline label {
  height: 22px;
}
.responsiveTable.none-control {
  margin-bottom: 0;
}
.responsiveTable.none-control tbody tr:last-child:hover {
  background-color: #eee !important;
}
.responsiveTable.none-control tbody tr:last-child td {
  border-top: 1px solid #dee2e6;
  padding: 8px 8px;
  background-color: transparent;
}
.responsiveTable.none-control tbody tr:last-child td:last-child {
  margin-left: 0;
}

.responsiveTableStatic {
  border-right: none !important;
}
.responsiveTableStatic td {
  min-height: 50px;
  line-height: 34px;
  height: 52px !important;
}

.responsiveTable-bottom {
  line-height: 36px;
}
.responsiveTable-bottom .page_net {
  padding: 0;
  text-align: center;
  border-style: none;
  font-size: 13px;
}
.responsiveTable-bottom .page_net td {
  text-align: center;
  border-style: none;
}
.responsiveTable-bottom .page_net table {
  width: auto;
  margin: 0 auto;
  border: 0;
  border-radius: 5px;
}
.responsiveTable-bottom .page_net table td {
  padding: 0;
  border: 1px solid #ccc;
  text-align: center;
  vertical-align: middle;
  line-height: 1.25;
  color: #534f5c;
}
.responsiveTable-bottom .page_net a {
  padding: .5rem .75rem;
  display: block;
  color: #534f5c;
}
.responsiveTable-bottom .page_net a:hover, .responsiveTable-bottom .page_net a:active {
  color: #11609d;
  text-decoration: none;
  background-color: #f3f3f3;
  border-color: #d7dae2;
}
.responsiveTable-bottom .page_net span {
  padding: .5rem .75rem;
  display: block;
  font-weight: bold;
  color: #fff;
  background-color: #3b86ff;
  border-color: #3b86ff;
}
.responsiveTable-bottom .form-control {
  display: inline-block;
  width: auto;
}
.responsiveTable-bottom .responsiveTable_info {
  font-weight: 400;
}
.responsiveTable-bottom .custom-select {
  padding-right: 30px;
}
.responsiveTable-bottom .btn {
  line-height: 15px;
  padding: 8px;
  min-width: 69px;
}
.responsiveTable-bottom .responsiveTable_length {
  float: right;
}
.responsiveTable-bottom .responsiveTable_length label {
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
}
.responsiveTable-bottom .responsiveTable_length .custom-select {
  padding-right: 30px;
  width: auto;
  display: inline-block;
}

.page_net__link {
  border: 1px solid #ccc;
  text-align: center;
  vertical-align: middle;
  color: #534f5c;
  padding: 8px 8px;
  line-height: 1.25;
  white-space: nowrap;
  background-color: #fff;
}
.page_net__link:hover, .page_net__link:active {
  color: #11609d;
  text-decoration: none;
  background-color: #f3f3f3;
  border-color: #d7dae2;
}

.responsiveTableContainer .table tbody + tbody {
  border-top: 0;
}

.l-basic-form .l-line {
  height: 1px;
  background-color: #f0f0f7;
}
.l-basic-form .heading {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #4d4f5c;
  margin: 0 0 30px;
}
.l-basic-form .section-headline {
  padding: 5px 0;
  border-bottom: 1px solid #f0f0f7;
  font-size: 13px;
  font-weight: bold;
  margin: 0 0 16px;
}
.l-basic-form .section-title {
  font-size: 13px;
  margin: 0 0 12px;
  font-weight: 400;
}
.l-basic-form .form-top {
  margin-bottom: 40px;
}
.l-basic-form .control-label {
  text-align: right;
  white-space: nowrap;
  padding-right: 0;
}
.l-basic-form .action .btn-danger {
  position: absolute;
  bottom: 0;
  right: 0;
  margin-right: 0;
}
.l-basic-form .input-group-text {
  background-color: transparent;
  border: 0;
  font-size: 20px;
  padding: 0;
  color: #7c7c8a;
  padding-left: 4px;
}
.l-basic-form .c-lg-row-2 {
  line-height: 16px;
}
.l-basic-form .input-group-append {
  height: 33px;
}
.l-basic-form .text-rounded {
  color: #2f2e50;
  background-color: #fff;
  border: 1px solid #2f2e50;
  font-size: 14px;
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  border-radius: 20px;
  line-height: 18px;
  padding: 5px 15px;
}
.l-basic-form .row {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
}

.expense-data .start-time {
  padding-right: 45px;
}
.expense-data .end-time {
  padding-left: 0;
}

.authority-setting {
  position: relative;
  border-bottom: 1px solid #f0f0f7;
  padding-bottom: 20px;
  margin-bottom: 40px;
  margin-top: 40px;
  padding-right: 135px;
}
.authority-setting .btn-add {
  position: absolute;
  right: 0;
  top: 0;
}

.identity .control-label {
  width: 60px;
}
.identity .control-content {
  width: calc(100% - 60px);
  line-height: 33px;
}

.important-badge {
  color: #2f2e50;
  width: 27px;
  height: 27px;
  border: 1px solid #2f2e50;
  text-align: center;
  line-height: 25px;
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
  border-radius: 50%;
}

.mgmt-form {
  padding: 0;
  color: #4d4f5c;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.mgmt-form__top {
  margin-bottom: 20px;
}
.mgmt-form__top a {
  line-height: 27px;
  font-size: 20px;
  font-weight: 700;
  color: #4d4f5c;
  margin-right: 15px;
  border-bottom: 2px solid #fff;
  display: inline-block;
}
.mgmt-form__top .active {
  color: #1473e6;
  border-color: #1473e6;
}
.mgmt-form__content {
  width: calc(100% - 235px);
  padding: 15px 20px;
}
.mgmt-form__side {
  width: 235px;
  padding: 15px 20px;
  background-color: #f7f8fa;
}
.mgmt-form__side .action .btn {
  width: 100%;
  display: block;
  margin: 0 0 1em;
}
.mgmt-form .status {
  width: 72px;
  height: 33px;
  line-height: 33px;
  color: #fff;
  border-radius: 20px;
  text-align: center;
  font-size: 13px;
  display: block;
  margin: 0 auto 15px;
}
.mgmt-form .status--sm {
  width: 60px;
  height: 26px;
  line-height: 26px;
  margin: 0;
}
.mgmt-form .status--complete {
  background-color: #17a261;
}
.mgmt-form .status--execute {
  background-color: #173ca2;
}
.mgmt-form .status--unexecuted {
  background-color: #f13555;
}
.mgmt-form .status--cancel {
  background-color: #e7e7e8;
  color: #2f2e50;
}
.mgmt-form .label-group .label {
  border-radius: 20px;
  border: 1px solid #d7dae2;
  line-height: 31px;
  padding: 0 13px;
  color: #2f2e50;
  margin-right: 10px;
  font-size: 13px;
  cursor: pointer;
}
.mgmt-form .label-group .label i {
  margin-left: 3px;
  font-size: 12px;
  position: relative;
  right: -5px;
}
.mgmt-form .label-group .label:hover, .mgmt-form .label-group .label.disabled {
  background-color: #d7dae2;
}
.mgmt-form .info {
  line-height: 25px;
  font-size: 13px;
}
.mgmt-form .info span {
  padding-right: 10px;
}
.mgmt-form .btn {
  min-width: 92px;
}
.mgmt-form .btn-rounded {
  padding-right: 15px;
  padding-left: 15px;
}
.mgmt-form .group {
  position: absolute;
  right: 8px;
  top: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  height: 100%;
}
.mgmt-form .title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.39;
  color: #4d4f5c;
}
.mgmt-form .section-headline {
  font-size: 16px;
}
.mgmt-form .input-group-text {
  position: absolute;
  top: 0;
  right: 5px;
  background-color: transparent;
  border: 0;
  font-size: 20px;
  padding: 0;
  padding-left: 0px;
  color: #7c7c8a;
  padding-left: 4px;
}

.expense-table {
  border: 1px solid #f1f1f3;
  width: 100%;
  white-space: nowrap;
}
.expense-table th {
  background-color: #f5f6fa;
  white-space: nowrap;
  padding: 10px 20px;
}
.expense-table td {
  padding: 15px 20px;
  border-bottom: 1px solid #f1f1f3;
}
.expense-table .bottom td {
  background-color: #f5f6fa;
  font-size: 18px;
  color: #000;
  padding: 10px 20px;
}
.expense-table .bottom td:first-child {
  padding-left: 40px;
}
.expense-table .bottom.bottom--white td {
  background-color: #fff;
}

.complete-modal .modal-dialog {
  max-width: 400px;
}
.complete-modal .modal-content {
  display: block;
  border: 0;
  margin: 0;
  border-radius: 0;
}
.complete-modal .title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: #4d4f5c;
  margin-bottom: 30px;
}
.complete-modal p {
  text-align: center;
}
.complete-modal .action {
  display: block;
  max-width: 290px;
  margin: 0 auto;
  padding-top: 60px;
}
.complete-modal .btn {
  display: block;
  width: 100%;
  max-width: 290px;
  margin: 0 0 14px;
  line-height: 25px;
}

.l-collapse {
  padding: 19px 14px;
  padding-bottom: 25px;
  position: relative;
  border-radius: 10px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  border: solid 1px #f5f6fa;
  background-color: #f5f6fa;
  line-height: 2.31;
}
.l-collapse .collapse-trigger {
  bottom: 0;
  right: 0;
}
.l-collapse .note {
  border-top: 1px solid #d0d1db;
  padding: 10px 0;
}

.tablesaw {
  border: 1px solid #f1f1f3;
}
.tablesaw thead {
  background: #f5f6fa;
  white-space: nowrap;
}
.tablesaw .tablesaw-cell-label .text-center {
  text-align: left !important;
}
.tablesaw td {
  vertical-align: middle;
}
.tablesaw tr td:last-child {
  border-bottom: 1px solid #f1f1f3 !important;
}
.tablesaw tr:last-child td:last-child {
  border-bottom: 0 !important;
}

.fee-collapse {
  position: relative;
  padding: 40px 0;
  border-bottom: 1px solid #f0f0f7;
}
.fee-collapse .collapse-trigger {
  position: absolute;
  top: 36px;
  right: -16px;
  cursor: pointer;
}
.fee-collapse .heading {
  padding: 0 80px;
}
.fee-collapse .section .heading {
  padding: 0;
}
.fee-collapse .detailed {
  display: none;
}
.fee-collapse i {
  font-size: 12px;
  color: #808495;
}
.fee-collapse .text-unfold {
  display: inline;
}
.fee-collapse .text-fold {
  display: none;
}
.fee-collapse .mdi-arrow-up {
  display: none;
}
.fee-collapse .mb-4 {
  margin-bottom: 0 !important;
}
.fee-collapse.show .mb-4 {
  margin-bottom: 1.5rem !important;
}
.fee-collapse.show .detailed {
  display: block;
}
.fee-collapse.show .text-unfold {
  display: none;
}
.fee-collapse.show .text-fold {
  display: inline;
}
.fee-collapse.show .mdi-arrow-down {
  display: none;
}
.fee-collapse.show .mdi-arrow-up {
  display: inline;
}

@media (max-width: 1023px) {
  .l-search-form {
    position: relative;
    padding-top: 20px;
    padding-right: 0;
  }
  .l-search-form .control-label {
    padding-right: 0;
  }
  .l-search-form .row {
    margin-bottom: 0;
  }
  .l-search-form .row .form-group {
    margin-bottom: 1em;
  }
  .l-search-form .row .form-group:last-child {
    margin-bottom: 1em;
  }
  .l-search-form .row:last-child {
    margin-bottom: 0;
  }
  .l-search-form .btn-outline-primary {
    width: 100px;
    position: relative;
    margin: 0 auto;
    display: block;
  }

  .action-main {
    margin-bottom: 1rem;
    width: 100%;
  }
  .action-left, .action-right {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }
  .action-right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
@media (max-width: 980px) {
  .section {
    max-width: 100% !important;
  }

  .l-search-form .control-label {
    text-align: left;
    white-space: nowrap;
  }
  .l-search-form .action {
    padding-top: 50px;
  }

  .l-authority-list .action {
    padding-top: 50px;
  }

  .l-basic-form .control-label {
    line-height: 33px;
  }
  .l-basic-form .d-inline-flex {
    width: 100% !important;
    max-width: 100%;
    padding: 0 !important;
    margin-right: 0 !important;
  }
  .l-basic-form .form-control {
    display: block;
    max-width: 100%;
  }
  .l-basic-form .control-label {
    text-align: left;
    display: block;
    width: 100%;
  }
  .l-basic-form .action {
    padding-top: 50px;
  }
  .l-basic-form .action .btn-danger {
    position: relative;
  }
  .l-basic-form .c-lg-row-2 {
    line-height: 33px;
  }
  .l-basic-form .c-lg-row-2 br {
    display: none;
  }

  .dataTables_wrapper .dataTables_info {
    padding-top: .5em !important;
    text-align: left !important;
  }
  .dataTables_wrapper ul {
    margin: 0 !important;
  }

  .left-side-menu {
    width: 100%;
  }

  .authority-setting {
    padding-right: 0;
  }
  .authority-setting .btn-add {
    position: relative;
    display: block;
    margin: 0 auto;
  }

  .logo-box {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -khtml-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    width: 140px;
    -webkit-transition: none;
    -khtml-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
  }

  .mgmt-form {
    display: block;
  }
  .mgmt-form__content {
    width: 100%;
  }
  .mgmt-form__side {
    width: 100%;
  }

  .expense-data .start-time {
    padding-right: 0;
  }
  .expense-data .end-time {
    display: block !important;
    width: 100%;
    margin-top: .5rem;
    line-height: 33px;
  }
  .expense-data .end-time br {
    display: none;
  }
  .expense-data .taxes {
    width: 100%;
    margin-top: 1rem;
  }
  .expense-data .taxes .pr-2 {
    display: block;
    width: 100%;
    line-height: 33px;
  }
}
@media (max-width: 576px) {
  .dataTables_wrapper .dataTables_info {
    padding: 0 0 1em !important;
    text-align: center !important;
  }
  .dataTables_wrapper .dataTables_length {
    margin: 15px auto 0;
    float: initial;
  }

  .l-basic-form .action {
    padding-top: 20px;
    display: block !important;
  }
  .l-basic-form .action .btn {
    margin: 0 auto 8px;
    width: 90%;
    display: block;
  }
  .l-basic-form .action .btn:first-child {
    margin-left: auto;
  }
  .l-basic-form .action .btn:last-child {
    margin-right: auto;
  }

  .action {
    display: block !important;
  }
  .action-left {
    position: relative;
  }
  .action-right {
    position: relative;
  }
  .action .btn {
    margin: 0 auto 8px;
    width: 90%;
    display: block;
  }
  .action .btn:first-child {
    margin-left: auto;
  }
  .action .btn:last-child {
    margin-right: auto;
  }

  .l-search-form .btn {
    margin: 0 auto;
    width: 90%;
    display: block;
  }

  .authority-setting .btn-add {
    margin: 0 auto;
    width: 90%;
    display: block;
  }

  .profile-dropdown {
    width: 300px;
    padding: 20px;
  }

  .account-pages .account-box {
    padding: 8px 24px;
  }

  .topnav-menu-right__btn-group {
    display: none;
  }

  .mgmt-form .division {
    width: 100%;
    margin-top: -0.5rem !important;
  }
  .mgmt-form .division .d-inline-flex {
    display: block !important;
  }
  .mgmt-form .division .d-inline-flex span {
    width: 100%;
    display: block;
    line-height: 33px;
  }
  .mgmt-form .division .mb-3 {
    margin-bottom: 0.5rem !important;
  }

  .fee-collapse {
    padding-top: 45px;
  }
  .fee-collapse .collapse-trigger {
    top: 5px;
  }
  .fee-collapse .heading {
    padding: 0;
  }
}
