body, html {
  font-size: 10px;
  font-family: -apple-system, BlinkMacSystemFont, "Nunito Sans", "Helvetica Neue", "Noto Sans", "themeRegularMyriad", Roboto, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

body {
  background: #EDEDED;
}
body.centering {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}
body b.status-Draft, body span.status-Draft {
  color: #0DCAF0;
}
body b.status-Pending, body span.status-Pending {
  color: #e78013;
}
body b.status-Ongoing, body span.status-Ongoing {
  color: #e78013;
}
body b.status-Unactivated, body span.status-Unactivated {
  color: #e78013;
}
body b.status-Activated, body span.status-Activated {
  color: #008844;
}
body b.status-Completed, body span.status-Completed {
  color: #008844;
}
body b.status-Approved, body span.status-Approved {
  color: #008844;
}
body b.status-Rejected, body span.status-Rejected {
  color: #BE0000;
}

.tab-content .active.row {
  display: flex;
}

.header-forNav {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  margin-bottom: 0.5rem;
}
.header-forNav h1 {
  color: black;
  font-size: 2.2rem;
  font-weight: bold;
  vertical-align: middle;
  border-left: 1px solid #000;
}
.header-forNav h1:first-child {
  margin-right: 1rem;
  border: none;
}
.header-forNav h1:first-child a {
  padding-left: 0;
}
.header-forNav h1 a {
  text-decoration: none;
  color: grey;
  padding: 0 1rem;
}
.header-forNav h1 a.active {
  color: black;
}

.fa-solid {
  font-size: 1.8rem;
}

.bold {
  font-weight: bolder;
}

.btn-action {
  text-align: right;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
}
.btn-action form {
  margin: 0 1rem 0 0;
}

.btnMain {
  border-radius: 0.5rem;
  background-color: #00183b;
  color: white;
  font-size: 1.3rem;
  font-family: "Roboto";
  text-align: center;
  padding: 0.6rem 1.8rem;
  margin: 0 0 0 1rem;
  border: 1px solid #00183b;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
}
.btnMain:hover {
  color: white;
}

.btnCancel {
  border-radius: 0.5rem;
  background-color: white;
  color: #00183b;
  font-size: 1.3rem;
  font-family: "Roboto";
  text-align: center;
  padding: 0.6rem 1.8rem;
  margin: 0;
  border: 1px solid #00183b;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
}
.btnCancel:hover {
  color: #00183b;
}

.btnReset {
  border-radius: 0.5rem;
  background-color: #BE0000;
  color: white;
  font-size: 1.3rem;
  font-family: "Roboto";
  text-align: center;
  padding: 0.6rem 1.8rem;
  margin: 0 auto 0 0;
  border: 1px solid #BE0000;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
}
.btnReset:hover {
  color: white;
}

.btn-approve {
  border-radius: 0.5rem;
  background-color: #008844;
  color: white;
  font-size: 1.3rem;
  font-family: "Roboto";
  text-align: center;
  padding: 0.6rem 1.8rem;
  border: 1px solid #008844;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
}
.btn-approve:hover {
  color: white;
}

.btn-reject {
  border-radius: 0.5rem;
  background-color: #BE0000;
  color: white;
  font-size: 1.3rem;
  font-family: "Roboto";
  text-align: center;
  padding: 0.6rem 1.8rem;
  border: 1px solid #BE0000;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
}
.btn-reject:hover {
  color: white;
}

.btnNew {
  border-radius: 0.5rem;
  background: white;
  color: #00183b;
  border: 0px solid #00183b;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3rem;
  font-family: "Roboto";
  text-align: center;
  padding: 0;
  margin: 0;
  display: inline-block;
  cursor: pointer;
}
.btnNew i {
  font-size: 1.5rem;
  vertical-align: middle;
  margin: 0 0.2rem 0 0;
}

.btnAddToList {
  border-radius: 0.4rem;
  background-color: #00183b;
  color: white;
  font-size: 1.3rem;
  font-family: "Roboto";
  text-align: center;
  padding: 0.6rem 1rem;
  margin: 0 0 0 1rem;
  border-width: 0px;
  cursor: pointer;
}

.modal-mask {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: table;
  transition: opacity 0.3s ease;
}

.modal-wrapper {
  display: table-cell;
  vertical-align: middle;
}

.modal-container {
  width: 300px;
  margin: 0px auto;
  padding: 20px 30px;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.33);
  transition: all 0.3s ease;
}

.modal-header h3 {
  color: black;
  font-size: 2.2rem;
  font-weight: bold;
  vertical-align: middle;
}

.modal-body input {
  background-color: white;
  color: black;
  font-size: 1.3rem;
  border-radius: 4px;
}

.modal-body input[type=text] {
  width: 100%;
}

.modal-body .button-area {
  margin-top: 1rem;
  text-align: end;
}

.modal-body select {
  width: 100%;
  margin-bottom: 1.5rem;
}

.red {
  color: #BE0000 !important;
}

.blue {
  color: #4F8AEB !important;
}

.green {
  color: #008844 !important;
}

.orange {
  color: #e78013 !important;
}

.grey {
  color: #707070 !important;
}

.darkBlue {
  color: #00183b !important;
}

.section {
  width: 100%;
  box-sizing: border-box;
  position: relative;
}
.section .sectionWrap {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0;
  position: relative;
}
.section .sectionWrap.max1280 {
  max-width: 1280px;
}
.section.sectionLogin .sectionWrap {
  width: 40rem;
  text-align: left;
  font-size: 1.4rem;
  color: #222222;
}
.section.sectionLogin .sectionWrap a {
  color: #00183b;
  text-decoration: none;
  display: block;
  padding: 1rem 0 0;
}
.section.sectionLogin .sectionWrap input[type=checkbox] {
  accent-color: #00183b;
  vertical-align: middle;
  margin: 0;
}
.section.sectionLogin .sectionWrap ::-moz-placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #333333;
  opacity: 1; /* Firefox */
}
.section.sectionLogin .sectionWrap ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #333333;
  opacity: 1; /* Firefox */
}
.section.sectionLogin .sectionWrap .loginWrap {
  background: white;
  padding: 5rem;
  border-radius: 1rem;
  margin: 0 0 4rem;
  text-align: center;
}
.section.sectionLogin .sectionWrap .loginWrap .imgLogo {
  display: block;
  margin: 0 auto;
  padding: 0 0 2.5rem;
}
.section.sectionLogin .sectionWrap .loginWrap .inputText {
  width: 100%;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #cccccc;
  color: black;
  padding: 1rem;
  display: block;
  margin: 0 auto 2.5rem;
}
.section.sectionLogin .sectionWrap .loginWrap .btnMain {
  border-radius: 0.5rem;
  background-color: #00183b;
  color: white;
  font-size: 1.3rem;
  font-family: "Roboto";
  text-align: center;
  padding: 1rem 2.8rem;
  margin: 0 auto;
  border-width: 0px;
  display: block;
  cursor: pointer;
}
.section.sectionLogin .sectionWrap .loginWrap a {
  color: #00183b;
  font-size: 1.4rem;
  text-decoration: none;
  display: block;
  padding: 2rem 0;
}
.section.sectionCenter .sectionWrap {
  position: relative;
}
.section.sectionCenter .sectionWrap .colNav {
  position: fixed;
  left: 0;
  background-color: #00183b;
  width: 25rem;
  padding: 3rem 5rem 5rem;
  height: 100vh;
}
.section.sectionCenter .sectionWrap .colNav .imgLogo {
  display: inline-flex;
  padding: 0 0 2rem 0;
}
.section.sectionCenter .sectionWrap .colNav ul {
  margin: 0;
  padding: 0;
}
.section.sectionCenter .sectionWrap .colNav ul li a {
  color: white;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 4.6rem;
  text-decoration: none;
  opacity: 0.5;
}
.section.sectionCenter .sectionWrap .colNav ul li a.active {
  opacity: 1;
}
.section.sectionCenter .sectionWrap .colContent {
  width: calc(100% - 300px);
  position: relative;
  margin-left: auto;
  padding-right: 50px;
  padding-bottom: 3rem;
}
.section.sectionCenter .sectionWrap .colContent .top {
  text-align: right;
  box-sizing: border-box;
  padding: 1rem 0;
  display: flex;
  justify-content: flex-end;
}
.section.sectionCenter .sectionWrap .colContent .top .session {
  margin-right: auto;
  margin-top: auto;
  min-width: 30%;
  text-align: left;
  font-size: 1.8rem;
  font-weight: bolder;
}
.section.sectionCenter .sectionWrap .colContent .top div {
  text-decoration: none;
}
.section.sectionCenter .sectionWrap .colContent .top h3 {
  font-size: 2rem;
  font-weight: bold;
  color: black;
  padding: 0 0 1rem;
  margin: 0;
}
.section.sectionCenter .sectionWrap .colContent .top h3 a {
  color: #00183b;
  text-decoration: none;
}
.section.sectionCenter .sectionWrap .colContent .top h3 span.avatar {
  font-size: 1.4rem;
  color: white;
  background-color: #00183b;
  width: 3rem;
  height: 1.4rem;
  border-radius: 3.4rem;
  display: inline-block;
  text-align: center;
  padding: 0.8rem 0;
  vertical-align: middle;
  box-sizing: unset;
}
.section.sectionCenter .sectionWrap .colContent .top h3 span button.locale {
  margin: 0;
  padding: 0.4rem 1.2rem;
  box-shadow: none;
}
.section.sectionCenter .sectionWrap .colContent .top p.role {
  margin: 0;
  font-size: 1.2rem;
  color: #888888;
  font-style: italic;
}
.section.sectionCenter .sectionWrap .colContent .top p.run-time {
  margin: 0;
  font-size: 1.2rem;
  color: #888888;
  font-style: italic;
}
.section.sectionCenter .sectionWrap .colContent .header {
  display: flex;
  justify-content: space-between;
  padding: 0 0 1rem;
}
.section.sectionCenter .sectionWrap .colContent .header.right {
  justify-content: flex-end;
}
.section.sectionCenter .sectionWrap .colContent .header.center {
  text-align: center;
  justify-content: center;
}
.section.sectionCenter .sectionWrap .colContent .header h1 {
  color: black;
  font-size: 2.2rem;
  font-weight: bold;
  vertical-align: middle;
}
.section.sectionCenter .sectionWrap .colContent .header .filter select {
  background-color: white;
  color: black;
  font-size: 1.2rem;
  border-radius: 4px;
  padding: 0.6rem 1rem;
  margin: 0 0 0 1rem;
  border: none;
  width: auto;
}
.section.sectionCenter .sectionWrap .colContent .header .filter select optgroup {
  font-weight: bold;
  color: black;
}
.section.sectionCenter .sectionWrap .colContent .header .filter .select2 {
  background-color: white;
  color: black;
  font-size: 1.2rem;
  border-radius: 4px;
  padding: 0.6rem 1rem;
  margin: 0 0 0 1rem;
  border: none;
  width: auto;
  vertical-align: bottom;
}
.section.sectionCenter .sectionWrap .colContent .header .filter .select2 .selection .select2-selection.select2-selection--single {
  height: 18px;
  border: none;
}
.section.sectionCenter .sectionWrap .colContent .header .filter .select2 .selection .select2-selection.select2-selection--single .select2-selection__rendered {
  line-height: 18px;
  font-size: 1.3rem;
}
.section.sectionCenter .sectionWrap .colContent .header .filter .select2 .selection .select2-selection.select2-selection--single .select2-selection__arrow {
  height: 9px;
  position: absolute;
  top: 10px;
  right: 1px;
  width: 20px;
}
.section.sectionCenter .sectionWrap .colContent .header .filter .inputText {
  border: none;
  color: black;
  background-color: white;
  font-size: 1.2rem;
  border-radius: 4px;
  padding: 0.6rem 1rem;
  margin: 0 0 0 1rem;
}
.section.sectionCenter .sectionWrap .colContent .header .filter .btnMain {
  min-width: 9rem;
  border-radius: 0.4rem;
  background-color: #00183b;
  color: white;
  font-size: 1.3rem;
  font-family: "Roboto";
  text-align: center;
  padding: 0.6rem 1rem;
  margin: 0 0 0 1rem;
  border-width: 0px;
  cursor: pointer;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap {
  position: relative;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap.content-xs {
  max-width: 550px;
  margin: 0 auto;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap.content-m {
  max-width: 1100px;
  margin: 0 auto;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-lg {
  background-color: white;
  border-radius: 1rem;
  padding: 2.5rem;
  min-height: 35rem;
  z-index: 2;
  margin-bottom: 1.5rem;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-lg .title {
  display: flex;
  justify-content: space-between;
  padding: 0 0 1rem 0;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-lg .title b {
  font-size: 1.4rem;
  font-weight: bold;
  color: black;
  padding: 0;
  margin: 0;
  justify-content: flex-start;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-lg .title b a.blue {
  color: #4F8AEB;
  text-decoration: none;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-lg table {
  width: 100%;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-lg table caption {
  text-align: right;
  font-size: 14px;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-lg table thead {
  background-color: #e7e9ee;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-lg table thead tr th {
  color: black;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: left;
  padding: 0.6rem 1rem;
  border-left: 1px solid #d1d8e0;
  white-space: nowrap;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-lg table thead tr th .title {
  color: black;
  font-size: 1.4rem;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-lg table thead tr th .title p {
  justify-content: flex-start;
  margin: 0;
  padding: 0;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-lg table thead tr th .title i {
  vertical-align: middle;
  margin-left: 2rem;
  font-size: 1.8rem;
  color: #999;
  cursor: pointer;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-lg table tbody tr:nth-child(even) {
  background: #F1F1F1;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-lg table tbody tr:nth-child(odd) {
  background: #FFF;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-lg table tbody tr td {
  color: black;
  font-size: 1.4rem;
  text-align: left;
  padding: 0.6rem 1rem;
  vertical-align: middle;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-lg table tbody tr td .pending {
  color: #93694D;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-lg table tbody tr td form {
  display: inline;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-lg table tbody tr td form .btn-link {
  text-decoration: none;
  font-weight: 400;
  padding: 0;
  font-size: 1.4rem;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-lg table tbody tr td a {
  color: #0d6efd;
  text-decoration: underline;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-lg table tbody tr td a.action-icon {
  text-decoration: none;
  color: black;
  float: right;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-lg table tbody tr td a.red {
  color: #BE0000;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-lg table tbody tr td a.blue {
  color: #4F8AEB;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-lg table tbody tr td a.green {
  color: #008844;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-lg table tbody tr td a:hover {
  cursor: pointer;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-lg table tbody tr td.btnIcon {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-lg table tbody tr td.btnIcon i {
  font-size: 1.6rem;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-lg table tbody tr td.action {
  width: 1%;
  white-space: nowrap;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-lg table tbody tr td.action div {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  justify-content: center;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-lg table tbody tr td.action div i {
  margin-right: 0.3em;
  margin-left: 0.3em;
  color: #333;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-lg table tbody tr td.action div i.icon-disabled {
  cursor: not-allowed;
  color: #aaabac;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-lg table tbody tr td.action div i[disabled=disabled] {
  cursor: not-allowed;
  color: #aaabac;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-lg .profile {
  display: flex;
  justify-content: space-around;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-lg .profile .row {
  width: 100%;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-lg .profile .left {
  text-align: center;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-lg .profile .left .imgProfile img {
  width: 17rem;
  height: 17rem;
  border-radius: 50%;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-lg .profile .left h4 {
  font-size: 2.2rem;
  font-weight: bold;
  padding: 2rem 0 1rem;
  margin: 0;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-lg .profile .left p {
  font-size: 1.4rem;
  padding: 0 0 2rem;
  margin: 0;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-lg .profile .left ul li {
  display: inline-flex;
  justify-content: space-between;
  font-size: 1.2rem;
  color: #999999;
  padding: 0 1rem;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-lg .profile .right {
  padding: 5% 0 0 5%;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-lg .profile .right ul {
  padding: 0;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-lg .profile .right ul li {
  display: block;
  width: 100%;
  display: flex;
  padding: 0 0 1.8rem 0;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-lg .profile .right ul li label {
  width: 30%;
  font-size: 1.2rem;
  margin-right: 12%;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-lg .profile .right ul li span {
  width: 60%;
  padding: 0;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: left;
  word-break: break-all;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-lg .role-setting {
  text-align: center;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-lg .role-setting h3 {
  font-size: 2.6rem;
  padding: 1rem 0 2rem;
  margin: 0;
  text-align: center;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-lg .role-setting h4 {
  font-size: 1.8rem;
  line-height: 2.6rem;
  font-weight: bold;
  border-bottom: 1px solid #bbb;
  margin: 0 0 2rem;
  padding: 1rem 0 2rem;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-lg .role-setting label {
  font-size: 1.3rem;
  padding: 0 0 0.5rem 0;
  text-align: left;
  display: block;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-lg .role-setting select {
  background-color: white;
  color: black;
  font-size: 1.2rem;
  border-radius: 4px;
  padding: 0.6rem 1rem;
  margin: 0 0 2rem 0;
  border: none;
  width: 100%;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-lg .role-setting .btn-action {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 0 0;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .pagination {
  padding: 1rem 0 0;
  text-align: right;
  position: relative;
  justify-content: right;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .pagination b {
  font-size: 1.2rem;
  display: inline-block;
  margin: 0 0 0 0.5rem;
  padding: 0.3rem 0;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .pagination i {
  font-size: 1.4rem;
  vertical-align: middle;
  margin: 0 1rem;
  padding: 0.4rem 0;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .pagination i.disabled {
  color: lightgrey;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .pagination a {
  color: black;
  padding: 0.3rem 0.5rem;
  text-decoration: none;
  font-size: 1.1rem;
  vertical-align: middle;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .pagination a.active {
  color: white;
  background-color: #00183b;
  padding: 0.3rem;
  border-radius: 3px;
  display: inline-block;
  text-align: center;
  width: 2.2rem;
  height: 2.2rem;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .pagination select {
  background-color: white;
  border: 1px solid #CCCCCC;
  border-radius: 4px;
  padding: 3px;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-sm {
  max-width: 1100px;
  margin: 0 auto;
  background-color: white;
  border-radius: 1rem;
  padding: 2.5rem;
  z-index: 2;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-sm table {
  width: 100%;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-sm table caption {
  text-align: right;
  font-size: 14px;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-sm table thead {
  background-color: #e7e9ee;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-sm table thead tr th {
  color: black;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: left;
  padding: 0.6rem 1rem;
  border-left: 1px solid #d1d8e0;
  white-space: nowrap;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-sm table thead tr th .title {
  color: black;
  font-size: 1.4rem;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-sm table thead tr th .title p {
  justify-content: flex-start;
  margin: 0;
  padding: 0;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-sm table thead tr th .title i {
  vertical-align: middle;
  margin-left: 2rem;
  font-size: 1.8rem;
  color: #999;
  cursor: pointer;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-sm table tbody tr:nth-child(even) {
  background: #F1F1F1;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-sm table tbody tr:nth-child(odd) {
  background: #FFF;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-sm table tbody tr td {
  color: black;
  font-size: 1.4rem;
  text-align: left;
  padding: 0.6rem 1rem;
  vertical-align: middle;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-sm table tbody tr td .pending {
  color: #93694D;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-sm table tbody tr td form {
  display: inline;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-sm table tbody tr td form .btn-link {
  text-decoration: none;
  font-weight: 400;
  padding: 0;
  font-size: 1.4rem;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-sm table tbody tr td a {
  color: #0d6efd;
  text-decoration: underline;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-sm table tbody tr td a.action-icon {
  text-decoration: none;
  color: black;
  float: right;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-sm table tbody tr td a.red {
  color: #BE0000;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-sm table tbody tr td a.blue {
  color: #4F8AEB;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-sm table tbody tr td a.green {
  color: #008844;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-sm table tbody tr td a:hover {
  cursor: pointer;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-sm table tbody tr td.btnIcon {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-sm table tbody tr td.btnIcon i {
  font-size: 1.6rem;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-sm table tbody tr td.action {
  width: 1%;
  white-space: nowrap;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-sm table tbody tr td.action div {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  justify-content: center;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-sm table tbody tr td.action div i {
  margin-right: 0.3em;
  margin-left: 0.3em;
  color: #333;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-sm table tbody tr td.action div i.icon-disabled {
  cursor: not-allowed;
  color: #aaabac;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-sm table tbody tr td.action div i[disabled=disabled] {
  cursor: not-allowed;
  color: #aaabac;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-sm table tbody tr td.input {
  width: 200px;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-sm table tbody tr td input {
  width: 100%;
  max-width: 180px;
  background-color: #fff;
  color: #000;
  font-size: 1.2rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0.6rem 1rem;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-xs {
  max-width: 550px;
  margin: 0 auto 1.5rem;
  background-color: white;
  border-radius: 1rem;
  padding: 2.5rem;
  height: auto;
  z-index: 2;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .whiteBox-xs.bgGrey {
  background-color: #e5e5e5;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap ul.list-info {
  margin: -2.5rem 0;
  padding: 0;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap ul.list-info li {
  margin: 0 0 1rem;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap ul.list-info li label {
  font-size: 1rem;
  color: #777;
  display: block;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap ul.list-info li span {
  font-size: 1.3rem;
  display: block;
}
.section.sectionCenter .sectionWrap .colContent .contentWrap .tab-content {
  margin-top: 1.5rem;
}
.section.sectionCenter .sectionWrap .colContent label {
  font-size: 1.3rem;
  font-weight: bold;
  padding: 0 0 0.2rem 0;
  text-align: left;
  display: block;
  color: black;
}
.section.sectionCenter .sectionWrap .colContent .formGeneral .multi-select-select2 {
  margin: 0;
  border: none;
  padding: 0 !important;
}
.section.sectionCenter .sectionWrap .colContent .formGeneral .select2 {
  margin-bottom: 1.5rem;
}
.section.sectionCenter .sectionWrap .colContent .formGeneral .select2 .selection .select2-selection {
  border: 1px solid #ccc;
}
.section.sectionCenter .sectionWrap .colContent .formGeneral .select2 .selection .select2-selection .select2-selection__rendered {
  font-size: 1.3rem;
}
.section.sectionCenter .sectionWrap .colContent .formGeneral .select2 textarea {
  margin: 0;
  border: none;
  padding: 0 !important;
}
.section.sectionCenter .sectionWrap .colContent .formGeneral input, .section.sectionCenter .sectionWrap .colContent .formGeneral select, .section.sectionCenter .sectionWrap .colContent .formGeneral textarea {
  background-color: white;
  color: black;
  font-size: 1.3rem;
  border-radius: 4px;
  padding: 0.6rem 1rem;
  margin: 0 0 1.5rem 0;
  border: 1px solid #ccc;
  width: 100%;
}
.section.sectionCenter .sectionWrap .colContent .formGeneral input[type=radio], .section.sectionCenter .sectionWrap .colContent .formGeneral select[type=radio], .section.sectionCenter .sectionWrap .colContent .formGeneral textarea[type=radio] {
  display: inline-flex;
  width: auto;
  vertical-align: middle;
  padding: 0;
}
.section.sectionCenter .sectionWrap .colContent .formGeneral input[type=radio] + span, .section.sectionCenter .sectionWrap .colContent .formGeneral select[type=radio] + span, .section.sectionCenter .sectionWrap .colContent .formGeneral textarea[type=radio] + span {
  font-size: 1.2rem;
  padding: 0 1rem 0 0.3rem;
  vertical-align: middle;
  margin: 0 0 1.5rem 0;
  display: inline-block;
}
.section.sectionCenter .sectionWrap .colContent .formGeneral input.right, .section.sectionCenter .sectionWrap .colContent .formGeneral select.right, .section.sectionCenter .sectionWrap .colContent .formGeneral textarea.right {
  text-align: right;
}
.section.sectionCenter .sectionWrap .colContent .formGeneral input:disabled, .section.sectionCenter .sectionWrap .colContent .formGeneral select:disabled, .section.sectionCenter .sectionWrap .colContent .formGeneral textarea:disabled {
  background-color: #E5E5E5;
}
.section.sectionCenter .sectionWrap .colContent .formGeneral .tox {
  margin: 0 0 1.5rem 0;
}
.section.sectionCenter .sectionWrap .colContent .formGeneral .input-group {
  position: relative;
  display: table;
  border-collapse: separate;
  margin: 0 0 1.5rem 0;
}
.section.sectionCenter .sectionWrap .colContent .formGeneral .input-group .prefix {
  line-height: 1;
  color: #555;
  text-align: center;
  background-color: #eee;
  border: 1px solid #ccc;
  vertical-align: middle;
  display: table-cell;
  padding: 1rem;
}
.section.sectionCenter .sectionWrap .colContent .formGeneral .input-group input {
  margin: 0;
}
.section.sectionCenter .sectionWrap .colContent .formGeneral .input-group input:disabled {
  background-color: #E5E5E5;
}
.section.sectionCenter .sectionWrap .colContent .formGeneral .btn-action {
  position: relative;
  padding: 2rem 0 0;
}
.section.sectionCenter .sectionWrap .colContent .formGeneral .btn-action span {
  position: absolute;
  right: 0;
}
.section.sectionCenter .sectionWrap .colContent .formGeneral small.remark {
  color: #BE0000;
  margin: -15px 0 0;
  display: flex;
}
.section.sectionCenter .sectionWrap .colContent .show .content {
  background-color: white;
  color: black;
  font-size: 1.3rem;
  border-radius: 4px;
  padding: 0.6rem 1rem;
  margin: 0 0 1.5rem 0;
  border: 1px solid #ccc;
  width: 100%;
}
.section.sectionCenter .sectionWrap .colContent .show .content table {
  width: 100%;
}
.section.sectionCenter .sectionWrap .colContent .show .content table thead {
  background-color: #e7e9ee;
}
.section.sectionCenter .sectionWrap .colContent .show .content table thead tr th {
  color: black;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: left;
  padding: 0.6rem 1rem;
  border-left: 1px solid #d1d8e0;
  white-space: nowrap;
}
.section.sectionCenter .sectionWrap .colContent .show .content table thead tr th .title {
  color: black;
  font-size: 1.4rem;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.section.sectionCenter .sectionWrap .colContent .show .content table thead tr th .title p {
  justify-content: flex-start;
  margin: 0;
  padding: 0;
}
.section.sectionCenter .sectionWrap .colContent .show .content table thead tr th .title i {
  vertical-align: middle;
  margin-left: 2rem;
  font-size: 1.8rem;
  color: #999;
  cursor: pointer;
}
.section.sectionCenter .sectionWrap .colContent .show .content table tbody tr:nth-child(even) {
  background: #F1F1F1;
}
.section.sectionCenter .sectionWrap .colContent .show .content table tbody tr:nth-child(odd) {
  background: #FFF;
}
.section.sectionCenter .sectionWrap .colContent .show .content table tbody tr td {
  color: black;
  font-size: 1.4rem;
  text-align: left;
  padding: 0.6rem 1rem;
  vertical-align: middle;
  border-width: thin;
}
.section.sectionCenter .sectionWrap .colContent .show .content table tbody tr td .pending {
  color: #93694D;
}
.section.sectionCenter .sectionWrap .colContent .show .content table tbody tr td form {
  display: inline;
}
.section.sectionCenter .sectionWrap .colContent .show .content table tbody tr td form .btn-link {
  text-decoration: none;
  font-weight: 400;
  padding: 0;
  font-size: 1.4rem;
}
.section.sectionCenter .sectionWrap .colContent .show .content table tbody tr td a {
  text-decoration: none;
  color: black;
}
.section.sectionCenter .sectionWrap .colContent .show .content table tbody tr td a.red {
  color: #BE0000;
}
.section.sectionCenter .sectionWrap .colContent .show .content table tbody tr td a.blue {
  color: #4F8AEB;
}
.section.sectionCenter .sectionWrap .colContent .show .content table tbody tr td a.green {
  color: #008844;
}
.section.sectionCenter .sectionWrap .colContent .show .content table tbody tr td.btnIcon {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
}
.section.sectionCenter .sectionWrap .colContent .show .content table tbody tr td.btnIcon i {
  font-size: 1.6rem;
}
.section.sectionCenter .sectionWrap .colContent .show .content table tbody tr td.action {
  width: 1%;
  white-space: nowrap;
}
.section.sectionCenter .sectionWrap .colContent .show .content table tbody tr td.action div {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  justify-content: center;
}
.section.sectionCenter .sectionWrap .colContent .show .content table tbody tr td.action div i {
  margin-right: 0.3em;
  margin-left: 0.3em;
  color: #333;
}
.section.sectionCenter .sectionWrap .colContent .show .content table tbody tr td.action div i.icon-disabled {
  cursor: not-allowed;
  color: #aaabac;
}
.section.sectionCenter .sectionWrap .colContent .show .content table tbody tr td.action div i[disabled=disabled] {
  cursor: not-allowed;
  color: #aaabac;
}
.section.sectionCenter .sectionWrap .colContent .progressbarWrapper .progressbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  list-style: none;
}
.section.sectionCenter .sectionWrap .colContent .progressbarWrapper .progressbar.nav-tabs {
  border: none;
}
.section.sectionCenter .sectionWrap .colContent .progressbarWrapper .progressbar li {
  flex: 1 1 0;
  list-style: none;
}
.section.sectionCenter .sectionWrap .colContent .progressbarWrapper .progressbar li:first-child .titleWrap::before {
  display: none;
}
.section.sectionCenter .sectionWrap .colContent .progressbarWrapper .progressbar li:last-child .titleWrap::after {
  display: none;
}
.section.sectionCenter .sectionWrap .colContent .progressbarWrapper .progressbar li .titleWrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.section.sectionCenter .sectionWrap .colContent .progressbarWrapper .progressbar li .titleWrap::before, .section.sectionCenter .sectionWrap .colContent .progressbarWrapper .progressbar li .titleWrap::after {
  content: "";
  z-index: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-2ox);
  height: 0px;
  width: 50%;
  border-top: 2px dashed #ccc;
}
.section.sectionCenter .sectionWrap .colContent .progressbarWrapper .progressbar li .titleWrap::before {
  left: 0;
}
.section.sectionCenter .sectionWrap .colContent .progressbarWrapper .progressbar li .titleWrap::after {
  right: 0;
}
.section.sectionCenter .sectionWrap .colContent .progressbarWrapper .progressbar li .titleWrap a {
  text-decoration: none;
}
.section.sectionCenter .sectionWrap .colContent .progressbarWrapper .progressbar li .titleWrap a span {
  z-index: 2;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  font-size: 1.4rem;
  color: #000000;
  background: #DDDDDD;
}
.section.sectionCenter .sectionWrap .colContent .progressbarWrapper .progressbar li .titleWrap a.nav-link.active {
  border: none;
  background-color: transparent;
}
.section.sectionCenter .sectionWrap .colContent .progressbarWrapper .progressbar li .contentWrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  font-size: 1.3rem;
  color: #000000;
  text-align: center;
  padding: 0 1rem;
  margin-top: 0.5rem;
}
.section.sectionCenter .sectionWrap .colContent .progressbarWrapper .progressbar li.active .titleWrap::before, .section.sectionCenter .sectionWrap .colContent .progressbarWrapper .progressbar li.active .titleWrap::after {
  border-top-style: solid;
  border-color: #2BB77D;
}
.section.sectionCenter .sectionWrap .colContent .progressbarWrapper .progressbar li.active .titleWrap span {
  color: #fff;
  background: #2BB77D;
}
.section.sectionCenter .sectionWrap .colContent .progressbarWrapper .progressbar li.inProgress .titleWrap::before {
  border-top-style: solid;
  border-color: #2BB77D;
}
.section.sectionCenter .sectionWrap .colContent .progressbarWrapper .progressbar li.inProgress .titleWrap span {
  color: #fff;
  background: #24343F;
}
.section.sectionCenter .sectionWrap .colContent .progressbarWrapper .progressbar li.inProgress .contentWrap {
  font-weight: bold;
}
.section.sectionCenter .sectionWrap .colContent .divider-lg {
  height: 6rem;
}
.section.sectionCenter .sectionWrap .colContent .divider-md {
  height: 3rem;
}
.section.sectionCenter .sectionWrap .colContent .divider-sm {
  height: 1.5rem;
}
.section.sectionCenter .sectionWrap .colContent .divider-xs {
  height: 0.5rem;
}
.section.sectionCenter .sectionWrap .colContent .right {
  text-align: right !important;
}
.section.sectionCenter .sectionWrap .colContent .center {
  text-align: center !important;
}
.section button.nav-link {
  font-size: 1.4rem;
}

.custom-tab {
  padding: 0.5rem 1rem;
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  margin-bottom: 5px;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.custom-tab.active {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}

.modal .modal-content {
  padding: 1rem;
  border-radius: 1rem;
}

.accordion-button {
  background-color: #f5f5f5;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.accordion-button.collapsed {
  font-size: 1.4rem;
}

.accordion-button:not(.collapsed) {
  font-size: 1.4rem;
  background-color: #d5d5d5;
  color: black;
}
.accordion-button:not(.collapsed):after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 1rem 1.25rem;
  overflow: auto;
  background-color: white;
}

@media print {
  .no-print {
    display: none;
  }
}
@page {
  margin: 0;
}
.tooltip {
  position: relative;
  opacity: 1;
  cursor: pointer;
  text-decoration: unset !important;
}
.tooltip.tooltip-inline {
  display: inline-flex;
  position: absolute;
  padding-left: 0.3rem;
}
.tooltip.tooltip-inline i {
  font-size: large;
}

.tooltip:hover::before {
  /* top: 100%; */
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}

.tooltip::before {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  min-width: -moz-max-content;
  min-width: max-content;
  background: rgb(27, 25, 25);
  color: #FFF;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 15px;
  content: attr(tooltip-text);
  transition: all 0.3s ease;
  margin-bottom: 0.5rem;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.btn:focus {
  box-shadow: none;
}/*# sourceMappingURL=common.css.map */