body,html {
  min-height: 100%;
  font-size: 14px;
  background-color: #f5f5f5;
}

html {
  position: relative;
  /* min-width: 980px; */
}

body {
  /* min-width: 768px; */
  -webkit-print-color-adjust: exact;
}

body a {
  /* color: #000; */
}

body a:link {
  text-decoration: underline;
}

body a.btn {
  text-decoration: none;
}

body button:hover {
  cursor: pointer;
}

cp-modal .modal {
  z-index: 2050 !important;
}

.ankerlink {
  padding-top: 60px;
  margin-top: -60px;
}

.underline {
  text-decoration: underline;
}

.wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 60px;
  min-height: calc(100vh - 60px);
}

.wrapper .main-outer {
  /* padding-top: 60px; */
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  /*&-open
      margin-left: 50px;*/
}

.wrapper .main-outer>.container-fluid {
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 20px;
}

.wrapper .main-outer>.main {
  min-height: calc(100% - 48px);
}

.wrapper .main-contents {
  min-height: calc(100vh - 100px);
  padding-bottom: 80px;
}

header .navbar {
  background-color: #fff;
  height: 60px;
  box-sizing: border-box;
  border-bottom: inset 2px #eef5f2;
}

header .navbar a {
  color: #000;
  text-decoration: none;
}

header .navbar ul {
  margin: 0;
  padding: 0;
}

header .navbar .question-mark {
  display: block;
  width: 1rem;
  height: 1rem;
  background-image: url("./assets/img/question-mark.svg");
  background-size: cover;
}

.navbar-header {
  font-weight: bold;
}

.navbar-logo {
  margin-right: 10px;
  height: 35px;
}

.sidebar {
  position: fixed;
  z-index: 1019;
  height: calc(100vh - 60px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0;
}

.sidebar-nav {
  width: 200px;
  min-height: calc(100vh - 60px);
  padding: 0;
  background-color: #66b3a9;
  margin-top: 0px;
  z-index: 1019;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
}

.trigger-btn {
  height: 40px;
  position: relative;
  cursor: pointer;
}

.trigger-btn:hover .top {
  -webkit-transform: rotate(-45deg) translateX(0) translateY(-7px);
  -ms-transform: rotate(-45deg) translateX(0) translateY(-7px);
  transform: rotate(-45deg) translateX(0) translateY(-7px);
  width: 14px;
}

.trigger-btn:hover .middle {
  -webkit-transform: translateX(1px);
  -ms-transform: translateX(1px);
  transform: translateX(1px);
  width: 19px;
}

.trigger-btn:hover .bottom {
  -webkit-transform: rotate(45deg) translateX(0) translateY(7px);
  -ms-transform: rotate(45deg) translateX(0) translateY(7px);
  transform: rotate(45deg) translateX(0) translateY(7px);
  width: 14px;
}

.trigger-btn span {
  width: 20px;
  height: 2px;
  display: block;
  background: #fff;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.trigger-btn .top {
  -webkit-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
  transform: translateY(-8px);
}

.trigger-btn .bottom {
  -webkit-transform: translateY(8px);
  -ms-transform: translateY(8px);
  transform: translateY(8px);
}

.sidebar-nav-hide {
  width: 50px;
  overflow: hidden;
}

.sidebar-nav-hide .nav-list {
  visibility: hidden;
}

.sidebar-nav-hide .trigger-btn:hover .top {
  -webkit-transform: rotate(45deg) translateX(0) translateY(-7px);
  -ms-transform: rotate(45deg) translateX(0) translateY(-7px);
  transform: rotate(45deg) translateX(0) translateY(-7px);
  width: 14px;
}

.sidebar-nav-hide .trigger-btn:hover .middle {
  -webkit-transform: translateX(1px);
  -ms-transform: translateX(1px);
  transform: translateX(1px);
  width: 19px;
}

.sidebar-nav-hide .trigger-btn:hover .bottom {
  -webkit-transform: rotate(-45deg) translateX(0) translateY(7px);
  -ms-transform: rotate(-45deg) translateX(0) translateY(7px);
  transform: rotate(-45deg) translateX(0) translateY(7px);
  width: 14px;
}

.nav-list {
  background: #fff;
  padding: 0.5rem 5%;
  width: 90%;
  margin: 0 auto 1rem;
}

.nav-other {
  background: none;
}

.nav-other a {
  color: #fff;
}

.sidebar-nav .nav-item {
  margin: 0 0 0.5rem;
  padding: 0;
  box-sizing: border-box;
  display: table;
}

.sidebar-nav .nav-item span {
  display: table-cell;
  vertical-align: top;
  background-position: 0 2px;
}

.sidebar-nav .nav-item .link-text:hover {
  text-decoration: underline;
}

.sidebar-nav .nav-item a {
  display: block;
  padding: 0.3rem 0;
  box-sizing: border-box;
  cursor: pointer;
  color: #000;
}

.sidebar-nav .nav-item a:hover {
  text-decoration: underline;
}

.sidebar-nav .nav-item:last-child {
  margin-bottom: 0;
}

.sidebar-nav .nav-item.active {
  font-weight: bold;
}

.nav-home {
  position: absolute;
  top: 3px;
  left: 2px;
  background: none;
  width: 70%;
}

.nav-home .nav-item a {
  color: #fff;
}

.nav-title {
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  padding-bottom: 0.5rem;
}

.nav-title a {
  color: #fff;
}

.nav-sub-title {
  background: #008070;
  font-weight: bold;
  padding: 0.5em;
  margin: 0 auto 0.5rem;
  color: #fff;
}

.home-icon {
  background-image: url("./assets/img/home.svg");
  background-repeat: no-repeat;
  padding-left: 1.5rem;
  background-size: 1rem 1rem;
  background-position: 0;
}

.footer {
  bottom: 0px;
  width: 100%;
  height: 36px;
  text-align: right;
  background-color: #fff;
  z-index: 5;
}

.login .footer {
  background-color: #f5f5f5;
}

h1 {
  background: #008070;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  padding: 11px 20px 9px;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  color: #fff;
}

h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #155a4e;
}

h3 {
  font-size: 1.1rem;
  margin-top: 2rem;
  padding-top: 0.5rem;
}

.border-heading {
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #ccc;
}

.box {
  border-radius: 3px;
  border: 1px solid #000;
  margin: 0 0 1rem;
  background-color: #fff;
  padding: 1.5rem;
  box-sizing: border-box;
}

.box-search {
  padding: 1rem 0 0;
  background: #eef5f2;
}

.box-search .rounded-bottom {
  padding: 1rem 1rem 0;
  padding-bottom: 0;
  margin-top: 0;
  transition: all .3s ease
}

.box-accordion {
  background: #eff4ee;
  padding: 1rem 0;
}

.box-accordion table {
  margin: 0;
}

.box-accordion+.box-accordion {
  margin-top: 1rem;
}

.box-accordion .rounded-top a {
  -webkit-font-smoothing: antialiased;
  vertical-align: middle;
}

.box-accordion .rounded-top a:before {
  border-radius: 3px;
  padding: 2px 7px;
  font-family: "FontAwesome";
  display: inline-block;
  content: "\f068";
  font-size: 14px;
  color: #fff;
  background: #66b3a9;
  margin-right: 10px;
}

.box-accordion .rounded-top a.collapsed:before {
  font-family: "FontAwesome";
  content: "\f067";
}

.box-accordion-form {
  background: #fff;
  border: 1px solid #ccc;
}

.box-accordion-form .rounded-bottom {
  border-top: 1px solid #ccc;
}

.box-full,
.box-col-12 {
  width: 100%;
}

.box-half,
.box-col-6 {
  width: 50%;
}

.rounded-top {
  padding: 0 1rem 1rem 1rem;
}

.rounded-bottom {
  padding: 0 1rem;
  padding-bottom: 0;
  margin-top: 1rem;
}

.box-header {
  position: relative;
  margin-bottom: 1rem;
}

.box-header-right {
  position: absolute;
  right: 0;
  top: 0;
}

.box-body {
  padding-top: 1rem;
}

.box-footer {
  position: relative;
}

.link-arrow-icon {
  position: relative;
  padding-left: 1rem;
}

.link-arrow-icon::before {
  width: 0.5rem;
  height: 0.5rem;
  display: block;
  position: absolute;
  top: 0.25rem;
  left: 0;
  border-top: 1px solid #171717;
  border-right: 1px solid #171717;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
}

.link-pdf-icon {
  position: relative;
}

.link-pdf-icon::after {
  width: 0.5rem;
  height: 0.5rem;
  display: block;
  position: absolute;
  top: 0;
  right: -1rem;
  content: "\f1c1";
  font-family: "FontAwesome";
}

.link-xlsx-icon {
  position: relative;
}

.link-xlsx-icon::after {
  width: 0.5rem;
  height: 0.5rem;
  display: block;
  position: absolute;
  top: 0;
  right: -1rem;
  content: "\f1c3";
  font-family: "FontAwesome";
}

.link-close-btn {
  vertical-align: middle;
  display: inline-block;
  text-align: center;
  height: 20px;
  font-size: 12px;
  border: 2px solid #212529;
  border-radius: 100%;
  box-sizing: border-box;
}

.link-close-btn:hover {
  border-color: #0056b3;
}

.link-close-btn i {
  vertical-align: top;
  padding-top: 2px;
  font-style: normal;
  box-sizing: border-box;
}

.addplus-icon i {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  font-size: 2rem;
  color: #66b3a9;
}

.table-noborder thead th,
.table-noborder thead tr,
.table-noborder thead td {
  border: none;
}

.table-noborder th,
.table-noborder tr,
.table-noborder td {
  border: none;
}

.table-heading-color {
  background: #fff;
}

.table-heading-color thead th {
  border-bottom: 1px solid #155a4e;
  color: #008070;
}

.table-heading-color-02 td:last-child {
  background: #eee;
}

.table-heading-color-02 th {
  border-top: none;
}

.table-heading-color-02 td {
  border-top: 1px solid #ddd;
}

.table-heading-color tbody tr:hover,
.table-heading-color tbody tr:hover td,
.table-heading-color tbody tr:hover th {
  background: #eef5f2 !important;
  /* color:#fff !important; */
}

/* .table-heading-color thead .sortable-column-icon {
  color: #1b1d1f;
} */

.table-iframe {
  width: 1500px;
}

.table-striped-custom thead tr {
  background: #cfcfcf;
}

.table-striped-custom tbody tr {
  background: #cfcfcf;
}

.table-striped-custom tbody tr:nth-of-type(odd) {
  background: #a7a7a7;
}

.table-striped,
.table-bordered {
  background: #fff;
}

.table-row-active {
  background: #eef5f2;
}

.octicon-search {
  background-image: url("./assets/svg/search.svg");
  background-repeat: no-repeat;
  padding-left: 1.5rem;
  background-size: 1rem 1rem;
  background-position: 0;
}

.octicon-person {
  background-image: url("./assets/svg/person.svg");
  background-repeat: no-repeat;
  padding-left: 1.5rem;
  background-position: 0;
}

.octicon-arrow-down {
  background-image: url("./assets/svg/arrow-down.svg");
  background-repeat: no-repeat;
  padding-left: 1.5rem;
  background-size: 1rem 1rem;
  background-position: 0;
}

.octicon-trashcan {
  background-image: url("./assets/svg/trashcan.svg");
  background-repeat: no-repeat;
  padding-left: 1.5rem;
  background-size: 1rem 1rem;
  background-position: 0;
}

.octicon-gear {
  background-image: url("./assets/svg/gear.svg");
  background-repeat: no-repeat;
  padding-left: 1.5rem;
  background-size: 1rem 1rem;
  background-position: 0;
}

.octicon-list-unordered {
  background-image: url("./assets/svg/list-unordered.svg");
  background-repeat: no-repeat;
  padding-left: 1.5rem;
  background-size: 1rem 1rem;
  background-position: 0;
}

.octicon-pencil {
  background-image: url("./assets/svg/pencil.svg");
  background-repeat: no-repeat;
  padding-left: 1.5rem;
  background-size: 1rem 1rem;
  background-position: 0;
}

.octicon-database {
  background-image: url("./assets/svg/database.svg");
  background-repeat: no-repeat;
  padding-left: 1.5rem;
  background-position: 1px 3px;
}

.octicon-home {
  background-image: url("./assets/svg/home.svg");
  background-repeat: no-repeat;
  padding-left: 1.5rem;
  background-size: 1.1rem 1.1rem;
  background-position: 0;
}

.octicon-organization {
  background-image: url("./assets/svg/organization.svg");
  background-repeat: no-repeat;
  padding-left: 1.5rem;
  background-size: 1rem 1rem;
  background-position: 0;
}

.octicon-graph {
  background-image: url("./assets/svg/graph.svg");
  background-repeat: no-repeat;
  padding-left: 1.5rem;
  background-size: 1rem 1rem;
  background-position: 0;
}

.octicon-file {
  background-image: url("./assets/svg/file.svg");
  background-repeat: no-repeat;
  padding-left: 1.5rem;
  background-position: 1px 0;
}

.octicon-book {
  background-image: url("./assets/svg/book.svg");
  background-repeat: no-repeat;
  padding-left: 1.5rem;
  background-size: 1rem 1rem;
  background-position: 0;
}

.octicon-sign-out {
  background-image: url("./assets/svg/sign-out.svg");
  background-repeat: no-repeat;
  padding-left: 1.5rem;
  background-size: 1rem 1rem;
  background-position: 1px 0px;
}

.octicon-cloud-download {
  background-image: url("./assets/svg/cloud-download.svg");
  background-repeat: no-repeat;
  padding-left: 1.5rem;
  background-size: 1rem 1rem;
  background-position: 0;
}

.octicon-triangle-right {
  background-image: url("./assets/svg/triangle-right.svg");
  background-repeat: no-repeat;
  background-size: 1rem 1rem;
  background-position: 0;
}

.tooltip-inner {
  background-color: #fff3cd;
  border-color: #ffeeba;
  color: #856404;
  padding: 20px;
  max-width: 80%;
}

.tooltip.bs-tooltip-top .arrow::before,
.tooltip.bs-tooltip-auto[x-placement^="top"] .arrow::before {
  border-top-color: #ffeeba;
}

.tooltip.show {
  opacity: 1;
}

.breadcrumb {
  display: block;
}

.graph {
  display: inline-block;
  border: 1px solid #e8ecef;
  padding-bottom: 3rem;
}

.graph.no-title {
  padding: 3rem 0;
}

.graph_title {
  padding: 2rem;
  box-sizing: border-box;
  margin-bottom: 0;
  color: #008070;
}

.badge-01 {
  color: #fff;
  background-color: #136eab;
}

.badge-02 {
  color: #fff;
  background-color: #aac863;
}

.badge-03 {
  color: #fff;
  background-color: #49aad2;
}

.badge-04 {
  color: #fff;
  background-color: #ffbd5b;
}

.badge-05 {
  color: #fff;
  background-color: #008071;
}

.badge-06 {
  color: #fff;
  background-color: #ffaec3;
}

.badge-07 {
  color: #fff;
  background-color: #ae7a26;
}

.badge-08 {
  color: #fff;
  background-color: #9fd9f6;
}

.badge-09 {
  color: #fff;
  background-color: #66b3a9;
}

.badge-1 {
  color: #fff;
  background-color: #136eab;
}

.badge-2 {
  color: #fff;
  background-color: #aac863;
}

.badge-3 {
  color: #fff;
  background-color: #49aad2;
}

.badge-4 {
  color: #fff;
  background-color: #ffbd5b;
}

.badge-5 {
  color: #fff;
  background-color: #008071;
}

.badge-6 {
  color: #fff;
  background-color: #ffaec3;
}

.badge-7 {
  color: #fff;
  background-color: #ae7a26;
}

.badge-8 {
  color: #fff;
  background-color: #9fd9f6;
}

.badge-9 {
  color: #fff;
  background-color: #66b3a9;
}

.badge-10 {
  color: #fff;
  background-color: #ef845c;
}

.badge-11 {
  color: #fff;
  background-color: #a5d4ad;
}

.badge-12 {
  color: #fff;
  background-color: #d58204;
}

.badge-13 {
  color: #fff;
  background-color: #a1689a;
}

.badge-14 {
  color: #fff;
  background-color: #54c3f1;
}

.badge-15 {
  color: #fff;
  background-color: #a75d0e;
}

.badge-16 {
  color: #fff;
  background-color: #796baf;
}

.badge-17 {
  color: #fff;
  background-color: #dd6673;
}

.badge-18 {
  color: #fff;
  background-color: #ffcab1;
}

.badge-19 {
  color: #fff;
  background-color: #cee692;
}

.badge-20 {
  color: #fff;
  background-color: #569b31;
}

.badge-21 {
  color: #fff;
  background-color: #ffbd5b;
}

.badge-22 {
  color: #fff;
  background-color: #ef858c;
}

.badge-23 {
  color: #fff;
  background-color: #a59aca;
}

.badge-24 {
  color: #fff;
  background-color: #5d5099;
}

.badge-25 {
  color: #fff;
  background-color: #cf737a;
}

.badge-26 {
  color: #fff;
  background-color: #ca475c;
}

.badge-27 {
  color: #fff;
  background-color: #0099ce;
}

.badge-28 {
  color: #fff;
  background-color: #dd6673;
}

.badge-29 {
  color: #fff;
  background-color: #d29b3b;
}

.badge-30 {
  color: #fff;
  background-color: #f2e55c;
}

.login {
  height: 100vh;
  margin-right: auto;
  margin-left: auto;
}

.login .wrapper {
  height: 100%;
}

.login .login-box {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  text-align: center;
}

.login .login-box-inner {
  width: 800px;
  position: absolute;
  /*
  margin-left: auto;
  margin-right: auto;
  */
}

.login .login-box-inner .box {
  margin: 0 auto;
}

.researchbox {
  margin-top: 30px;
}

.researchbox-title {
  padding: 30px 32px 20px;
  font-weight: bold;
  border-top: 1px solid #e9ecef;
}

.researchbox-lead {
  padding: 0 0 0 32px;
}

.researchbox-title-number {
  color: #008071;
  margin-right: 20px;
}

.researchbox-form-main {
  background-color: #d4edda;
  border: #c3e6cb solid 1px;
  padding: 15px 20px;
  margin-bottom: 30px;
}

.js-disabled .researchbox-form-main {
  background-color: #ececec;
  color: #888;
  border: #ececec solid 1px;
}

.researchbox-form-title {
  font-weight: bold;
}

.researchbox table.researchbox-table {
  border-collapse: separate;
  border-spacing: 0;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
}

.researchbox table.researchbox-table td {
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  background-color: #fff;
  vertical-align: middle;
}

.researchbox table.researchbox-table .color-grey {
  background-color: #eee;
}

.researchbox table.researchbox-table .color-green {
  background-color: #42a19d;
  color: #fff;
}

.researchbox .text-notice {
  color: #dc3545;
  text-decoration: underline;
}

.js-disabled table.researchbox-table td {
  background-color: #ececec;
}

.js-disabled table.researchbox-table .color-grey {
  background-color: #ececec;
}

.js-disabled table.researchbox-table .color-green {
  background-color: #ececec;
  color: #888;
}

.researchbox .col-box-left {
  width: 250px;
  margin-right: 15px;
}

.researchbox .col-box-right {
  width: 400px;
}

.researchbox .form-control.year {
  width: 100px;
}

.researchbox .col-box-bottom {
  width: 500px;
  text-align: center;
}

.researchbox .result_year {
  font-weight: bold;
  padding-left: 15px;
}

.modal-lead {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.modal-under {
  padding: 0;
  background: #f7f7f7;
  border-top: solid 1px #ebebeb;
}

.modal-under-inner {
  padding: 15px;
}

.modal-under-inner:after {
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
  content: "";
}

.modal-measure--lf {
  display: inline-block;
  width: 400px;
  margin-right: 20px;
  vertical-align: top;
}

.modal-measure--rt {
  display: inline-block;
  width: 460px;
}

.modal-specificFields {
  margin-bottom: 0.5rem;
}

.modal-specificFields dt:after {
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
  content: "";
}

.modal-specificFields dt::before {
  content: '■';
}

.modal-specificFields dd:after {
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
  content: "";
}

.modal-influence {
  margin-bottom: 0.5rem;
}

.modal-influence:after {
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
  content: "";
}

.modal-influence dt {
  float: left;
  clear: left;
  display: block;
}

.modal-influence dt::before {
  content: none;
}

.modal-influence dd {
  float: left;
  display: block;
}

.modal-close {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
  display: block;
  cursor: pointer;
  padding: 10px;
  position: absolute;
  right: 10px;
  z-index: 2;
}

.execution_status_research.print .sidebar-nav {
  display: none;
}

.index section+section {
  margin-top: 3rem;
}

.index .content-box {
  border: 1px solid #ddd;
  padding: 1rem;
}

.index .content-box+.content-border {
  padding: 0;
}

.index .content-title {
  background: #eef5f2;
  border: none;
  border-radius: 5px;
  padding: 1rem;
}

.index .content-border {
  border-bottom: 1px solid #ddd;
  margin: 0 1rem;
  padding: 1rem 0;
}

.index .content-border:last-child {
  border-bottom: 0;
}

.index .scroll-list {
  height: 250px;
  overflow-y: scroll;
}

.index .tab-content {
  border: 1px solid #ddd;
  border-top: none;
}

.index .tab-content table {
  margin-bottom: 0;
}

.index .tab-content .table th {
  border-top: 0;
}

.index .h-286 {
  height: 286px;
}

.index .h-308 {
  height: 308px;
}

body {
  font-family: 'CI', Meiryo, 'Hiragino Kaku Gothic Pro', 'qMmpS Pro W3', 'Yu Gothic', 'MS PGothic', Helvetica, sans-serif;
}

.no-gutter>[class*='col-'] {
  padding-right: 0;
  padding-left: 0;
}

.w-1 {
  width: 1% !important;
}

.w-2 {
  width: 2% !important;
}

.w-3 {
  width: 3% !important;
}

.w-4 {
  width: 4% !important;
}

.w-5 {
  width: 5% !important;
}

.w-6 {
  width: 6% !important;
}

.w-7 {
  width: 7% !important;
}

.w-8 {
  width: 8% !important;
}

.w-9 {
  width: 9% !important;
}

.w-10 {
  width: 10% !important;
}

.w-11 {
  width: 11% !important;
}

.w-12 {
  width: 12% !important;
}

.w-13 {
  width: 13% !important;
}

.w-14 {
  width: 14% !important;
}

.w-15 {
  width: 15% !important;
}

.w-16 {
  width: 16% !important;
}

.w-17 {
  width: 17% !important;
}

.w-18 {
  width: 18% !important;
}

.w-19 {
  width: 19% !important;
}

.w-20 {
  width: 20% !important;
}

.w-21 {
  width: 21% !important;
}

.w-22 {
  width: 22% !important;
}

.w-23 {
  width: 23% !important;
}

.w-24 {
  width: 24% !important;
}

.w-25 {
  width: 25% !important;
}

.w-26 {
  width: 26% !important;
}

.w-27 {
  width: 27% !important;
}

.w-28 {
  width: 28% !important;
}

.w-29 {
  width: 29% !important;
}

.w-30 {
  width: 30% !important;
}

.w-31 {
  width: 31% !important;
}

.w-32 {
  width: 32% !important;
}

.w-33 {
  width: 33% !important;
}

.w-34 {
  width: 34% !important;
}

.w-35 {
  width: 35% !important;
}

.w-36 {
  width: 36% !important;
}

.w-37 {
  width: 37% !important;
}

.w-38 {
  width: 38% !important;
}

.w-39 {
  width: 39% !important;
}

.w-40 {
  width: 40% !important;
}

.w-41 {
  width: 41% !important;
}

.w-42 {
  width: 42% !important;
}

.w-43 {
  width: 43% !important;
}

.w-44 {
  width: 44% !important;
}

.w-45 {
  width: 45% !important;
}

.w-46 {
  width: 46% !important;
}

.w-47 {
  width: 47% !important;
}

.w-48 {
  width: 48% !important;
}

.w-49 {
  width: 49% !important;
}

.w-50 {
  width: 50% !important;
}

.w-51 {
  width: 51% !important;
}

.w-52 {
  width: 52% !important;
}

.w-53 {
  width: 53% !important;
}

.w-54 {
  width: 54% !important;
}

.w-55 {
  width: 55% !important;
}

.w-56 {
  width: 56% !important;
}

.w-57 {
  width: 57% !important;
}

.w-58 {
  width: 58% !important;
}

.w-59 {
  width: 59% !important;
}

.w-60 {
  width: 60% !important;
}

.w-61 {
  width: 61% !important;
}

.w-62 {
  width: 62% !important;
}

.w-63 {
  width: 63% !important;
}

.w-64 {
  width: 64% !important;
}

.w-65 {
  width: 65% !important;
}

.w-66 {
  width: 66% !important;
}

.w-67 {
  width: 67% !important;
}

.w-68 {
  width: 68% !important;
}

.w-69 {
  width: 69% !important;
}

.w-70 {
  width: 70% !important;
}

.w-71 {
  width: 71% !important;
}

.w-72 {
  width: 72% !important;
}

.w-73 {
  width: 73% !important;
}

.w-74 {
  width: 74% !important;
}

.w-75 {
  width: 75% !important;
}

.w-76 {
  width: 76% !important;
}

.w-77 {
  width: 77% !important;
}

.w-78 {
  width: 78% !important;
}

.w-79 {
  width: 79% !important;
}

.w-80 {
  width: 80% !important;
}

.w-81 {
  width: 81% !important;
}

.w-82 {
  width: 82% !important;
}

.w-83 {
  width: 83% !important;
}

.w-84 {
  width: 84% !important;
}

.w-85 {
  width: 85% !important;
}

.w-86 {
  width: 86% !important;
}

.w-87 {
  width: 87% !important;
}

.w-88 {
  width: 88% !important;
}

.w-89 {
  width: 89% !important;
}

.w-90 {
  width: 90% !important;
}

.w-91 {
  width: 91% !important;
}

.w-92 {
  width: 92% !important;
}

.w-93 {
  width: 93% !important;
}

.w-94 {
  width: 94% !important;
}

.w-95 {
  width: 95% !important;
}

.w-96 {
  width: 96% !important;
}

.w-97 {
  width: 97% !important;
}

.w-98 {
  width: 98% !important;
}

.w-99 {
  width: 99% !important;
}

.w-100 {
  width: 100% !important;
}

.pagination .page-link {
  color: #008070;
  text-decoration: none;
}

.pagination .active .page-link {
  background: #66b3a9;
  border-color: #66b3a9;
}

.btn-emerald-green {
  color: #fff;
}

.btn-emerald-green:hover {
  color: #fff;
}

.btn-outline-emerald-green.disabled {
  border-radius: 0;
}

.btn-royalblue.disabled {
  opacity: 0.25;
  cursor: default;
}

.btn-prev,
.btn-next {
  position: relative;
}

.btn-prev:before {
  font-family: "FontAwesome";
  content: "\f100";
  display: inline-block;
  position: absolute;
  left: 0.5rem;
}

.btn-next:after {
  font-family: "FontAwesome";
  content: "\f101";
  display: inline-block;
  position: absolute;
  right: 0.5rem;
}

.btn-up:after,
.btn-down:after {
  display: inline-block;
  font-family: "FontAwesome";
  background: #66b3a9;
  color: #fff;
  line-height: 1;
  border-radius: 3px;
  margin: 0 0 0 0.5rem;
  box-sizing: border-box;
  vertical-align: middle;
}

.btn-up:hover:after,
.btn-down:hover:after {
  background-color: #51a298;
}

.btn-up:after {
  content: "\f0d8";
  display: inline-block;
  padding: 1px 5px 3px;
}

.btn-down:after {
  content: "\f0d7";
  display: inline-block;
  padding: 2px 5px 2px;
}

.is-settled {
  display: none;
}

.nav-iframe a {
  color: #fff;
}

.modal-dialog {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 100%;
  margin: auto;
  pointer-events: none;
}

.modal-dialog .modal-content {
  pointer-events: all;
}

.table-row.no-border td {
  border: none;
}

.form-control-text {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.25;
  color: #000;
  text-align: right;
  margin: 0;
}

.fixPos {
  position: fixed !important;
  bottom: 0;
  right: 0;
  z-index: 9;
  background-color: rgba(239, 244, 238, 0.7);
  padding: 20px 10px;
  margin: 0;
  min-width: 0;
}

.fixPos .btnbg {
  background: #fff;
}

.iframe {
  font-size: 11px;
}

.iframe .header {
  background: #fff;
  width: 100%;
  margin-bottom: 20px;
}

.iframe .h4 {
  margin-bottom: 0;
  font-size: 14px;
}

.iframe .table {
  margin-bottom: 0;
}

.iframe footer {
  display: none;
}

.iframe #fixedTableArea {
  min-width: 900px;
  background-color: #dff;
}

.iframe #topLeftArea {
  float: left;
  width: 30%;
  min-width: 620px;
}

.iframe #topRightArea {
  float: left;
  width: 70%;
  overflow: hidden;
}

.iframe #topRightArea th {
  min-width: 90px;
}

.iframe #bottomLeftArea {
  float: left;
  width: 30%;
  overflow: hidden;
  min-width: 620px;
}

.iframe #bottomLeftArea td {
  text-align: left;
}

.iframe #bottomRightArea {
  float: left;
  width: 70%;
  overflow: scroll;
}

.iframe #bottomRightArea td {
  min-width: 90px;
}

.iframe .fixedTable {
  border-collapse: collapse;
}

.iframe .fixedTable .unit {
  width: 50px;
}

.iframe .fixedTable th {
  padding: 2px 4px;
}

.iframe .fixedTable td {
  border: 1px solid #888;
  overflow: hidden;
  white-space: nowrap;
  padding: 2px 4px;
  text-align: right;
}

.iframe .fixedTable .dummyColumn {
  width: 17px;
  border: 0px;
  padding: 0;
  min-width: 17px !important;
}

.iframe .fixedTable .dummyRow {
  height: 18px;
  border: 0px;
  padding: 0;
}

.hrLine {
  border-width: 3px 0 0 0;
}

.categoryItemArea {
  border: #ccc solid 1px;
  padding: 14px;
  border-radius: 10px;
}

.btn-emerald-green {
  background-color: #66b3a9;
  border-color: #66b3a9;
}

.btn-emerald-green:hover {
  background-color: #51a298;
  border-color: #4c9a90;
}

.btn-emerald-green:focus,
.btn-emerald-green.focus {
  box-shadow: 0 0 0 3px rgba(102, 179, 169, 0.5);
}

.btn-emerald-green.disabled,
.btn-emerald-green:disabled {
  background-color: #66b3a9;
  border-color: #66b3a9;
}

.btn-emerald-green:active,
.btn-emerald-green.active,
.show>.btn-emerald-green.dropdown-toggle {
  background-color: #51a298;
  background-image: none;
  border-color: #4c9a90;
}

.text-emerald-green {
  color: #66b3a9 !important;
}

.link {
  cursor: pointer;
  text-decoration: underline;
}

.fr {
  position: absolute;
  right: 35px;
}

.form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

.state-highlight {
  background-color: #d4edda;
  color: #000;
}

@media print {

  html,
  body,
  .wrapper {
    min-height: 100%;
    height: auto;
  }

  .fixed-top {
    position: absolute;
  }

  .footer {
    position: absolute;
    bottom: 0;
  }

  .sidebar-nav {
    position: absolute;
    min-height: 100%;
  }
}

.cp-tooltip {
  position: absolute;
  display: none;
  padding: .25em .5em;
  max-width: 25em;
  min-width: 12.5em;
}

.cp-tooltip.cp-tooltip-right,
.cp-tooltip.cp-tooltip-left {
  padding: 0 .25em;
}

.cp-tooltip.cp-tooltip-top,
.cp-tooltip.cp-tooltip-bottom {
  padding: .25em 0;
}

.cp-tooltip .cp-tooltip-text {
  padding: .125em .5em;
  background-color: #dc3545;
  color: #ffffff;
  white-space: pre-line;
  border: 1px solid #dc3545;
  border-radius: .3rem;
}

.cp-tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.cp-tooltip-right .cp-tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -.25em;
  border-width: .25em .25em .25em 0;
  border-right-color: #dc3545;
}

.cp-tooltip-left .cp-tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -.25em;
  border-width: .25em 0 .25em .25em;
  border-left-color: #dc3545;
}

.cp-tooltip.cp-tooltip-top {
  padding: .25em 0;
}

.cp-tooltip-top .cp-tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -.25em;
  border-width: .25em .25em 0;
  border-top-color: #dc3545;
}

.cp-tooltip-bottom .cp-tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -.25em;
  border-width: 0 .25em .25em;
  border-bottom-color: #dc3545;
}

.bg-emerald-green {
  background-color: #66b3a9 !important;
}

.invalid {
  border: 1px solid #dc3545 !important;
}

.valid {
  border: 1px solid #28a745 !important;
}

.loader-container {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2000;
  overflow: hidden;
  outline: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.25);
}

span.checkbox span {
  margin-left: 1em;
}

.radio,
.checkbox {
  padding-top: calc(.375rem + 1px);
  padding-bottom: calc(.375rem + 1px);
  margin-bottom: 0;
  line-height: 1.5;
}

.checkboxContainer {
  margin-top: auto;
  margin-bottom: auto;
}

.disp-inline {
  display: inline;
}

/* button */

.backBorder {
  color: #66b3a9;
  border: 1px solid #66b3a9;
}

.backBorder:hover {
  color: #fff;
  background-color: #66b3a9;
}

/* modal for ie */

.modal-dialog {
  height: 1px;
}

.fixBtn {
  position: fixed !important;
  bottom: 0;
  right: 0;
  z-index: 9;
  background-color: rgba(239, 244, 238, 0.7);
  padding: 20px 40px;
  margin: 0;
  min-width: 0;
}

/* 、E*/

.gikouContainer {
  display: flex;
  align-items: center;
}

.form-control-label {
  display: block;
  width: 100%;
  height: calc(2.25rem + 2px);
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.panel-body cp-table table {
  min-width: 700px !important;
}

/* table > button */

cp-table cpButton {
  display: inline-block;
}

.col-form-title {
  padding-top: calc(.375rem + 1px);
  padding-bottom: calc(.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
  font-weight: bold;
  color: #66b3a9;
}

.table td {
  padding: .75rem;
  vertical-align: middle;
  border-top: 1px solid #dee2e6;
}

/* font-size */
.badge {
  font-size: 100% !important;
}

input[type='checkbox'],
input[type='radio'] {
  margin-right: .5rem !important;
}

.form-control-readonly[readonly] {
  background: white;
}

.buttomBtn cpButton,
section.box-search div cpButton {
  display: inline-block;
}

@media screen and (min-width: 1024px) {
  .buttomBtn cpButton>button,
  section.box-search div cpButton>button {
    width: 180px;
  }
}

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

.btn-group-sm>.btn,
.btn-sm {
  font-size: 1rem;
}

.panel .card-header {
  border-bottom: none;
}

div.validContainer {
  border-radius: 5px;
  display: inline-block;
}

.deleteLinkFather {
  width: 100%;
  justify-content: flex-end;
}

.deleteLinkBrother {
  display: flex;
}

.deleteLink {
  display: flex;
  align-items: flex-end;
}

multi-select {
  display: inline-flex;
  border-radius: .25rem;
}

cp-bigClass-picker, 
cp-laws-picker, 
cp-plans-picker, 
cp-department-single-picker,
cp-pref-picker {
  display: inline-flex;
  border-radius: .5rem;
  width: 100%;
}

cp-checkbox {
  border-radius: .5rem;
}

cp-department-picker {
  min-width: 300px;
}

.popover-body {
  white-space: pre-wrap !important;
}

.modal-box {
  overflow-x: auto;
}

cp-table td:empty:not([noHaifonn])::before {
  content: '-';
}

cp-table td .tdHaifonn:empty:not([noHaifonn])::before {
  content: '-';
}

@media print {
  onePage {
    page-break-after: always !important;
    page-break-inside: avoid;
  }
  .sidebar {
    display: none !important;
  }

  div.container-fluid {
    display: none !important;
  }

  h1.ng-star-inserted {
    display: none !important;
  }

  div.main-outer.col {
    display: block !important;
    margin-left: 0 !important;
    width: 100vw !important;
  }

  div.form-group.row.mt-5.buttomBtn {
    display: none !important;
  }
  
  div.pageTop {
    display: none !important;
  }
}

.textarea-twentyHeight {
  height: 31rem !important;
}

.textarea-fiveHeight {
  height: 8rem !important;
}

.badge-economize {
  color: #fff;
  background-color: #FFF100;
}

.input-label {
  word-break: break-all;
}

.white-space {
  white-space: pre-wrap;
}
  
em.attention {
  color : red;
  font-weight: bolder; 
}
}