@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDz8V1s.ttf) format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrFJA.ttf) format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLGT9V1s.ttf) format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLEj6V1s.ttf) format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7V1s.ttf) format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLBT5V1s.ttf) format('truetype');
}
.time {
  -webkit-transition: all 0.1s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.slow-time {
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.skew {
  transform: skew(-10deg, 0);
}
.box {
  box-sizing: border-box;
}
.material-icon {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 21px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
}
.max-height {
  height: calc(100vh - 20px);
}
html,
body {
  margin: 0;
  padding: 0;
  background-color: #eee;
  color: #333;
  cursor: default;
  font: 400 14px 'Poppins';
  overflow-x: hidden;
}
.clear-z {
  z-index: inherit !important;
}
header {
  display: block;
  position: fixed;
  z-index: 9;
  left: 10px;
  top: 10px;
  background-color: #024ca2;
  width: 60px;
  height: calc(100vh - 20px);
  border-radius: 15px;
  overflow: hidden;
  -webkit-transition: all 0.1s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  /* Works on Firefox */
  /* Works on Chrome, Edge, and Safari */
}
header .logo-md {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: 15px;
  height: 60px;
  text-decoration: none;
}
header .logo-md img {
  width: auto;
  height: 32px;
}
header .logo-md div {
  display: none;
  font-size: 10px;
  color: #fff;
  padding-left: 10px;
}
header .logo-md div strong {
  font-size: 14px;
  font-weight: 600;
  display: block;
  text-transform: uppercase;
  margin-bottom: -3px;
  white-space: nowrap;
}
header .logo-md div strong em {
  font-style: normal;
  font-size: 10px;
  font-weight: 400;
}
header nav {
  display: block;
  height: calc(100vh - 150px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box;
}
header nav .menu-container {
  padding-top: 20px;
  display: block;
  margin: 0 10px;
}
header nav .menu-container a,
header nav .menu-container .parent {
  display: flex;
  text-decoration: none;
  color: #fff;
  margin-bottom: 20px;
  padding: 0 10px;
  border-radius: 10px;
  -webkit-transition: all 0.1s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
header nav .menu-container a:hover,
header nav .menu-container .parent:hover {
  background-color: #002f64;
}
header nav .menu-container a span,
header nav .menu-container .parent span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
}
header nav .menu-container a span.alert::before,
header nav .menu-container .parent span.alert::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  background-color: red;
  border: 2px solid #fff;
  margin: -14px -6px 0 -4px;
  position: relative;
  border-radius: 50%;
}
header nav .menu-container a label,
header nav .menu-container .parent label {
  display: none;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 3px 5px;
  transform: translateX(5px);
  opacity: 0;
  white-space: nowrap;
  border-radius: 5px;
}
header nav .menu-container .drop-menu .parent {
  position: relative;
  z-index: 2;
}
header nav .menu-container .drop-menu .parent label {
  width: calc(100% - 50px);
}
header nav .menu-container .drop-menu .parent strong {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 38px;
  opacity: 0;
  -webkit-transition: all 0.1s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
header nav .menu-container .drop-menu .parent strong::after {
  content: '\e5cc';
}
header nav .menu-container .drop-menu .child {
  display: none;
  padding-top: 10px;
  background-color: #002f64;
  margin: -27px 0 20px 0;
  padding-bottom: 10px;
  border-radius: 0 0 10px 10px;
}
header nav .menu-container .drop-menu .child a {
  margin-bottom: 0;
  color: #117ffd;
}
header nav .menu-container .drop-menu .child a:hover {
  color: #fff;
}
header .other-menu {
  padding-top: 10px;
  display: block;
  margin: 0 10px;
}
header .other-menu a {
  display: block;
  padding-left: 50px;
  height: 40px;
  text-decoration: none;
  color: #fff;
  border-radius: 40px 20px 20px 40px;
  -webkit-transition: all 0.1s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
header .other-menu a:hover {
  background-color: #012956;
  filter: grayscale(0.3);
}
header .other-menu a span {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: #fff;
  float: left;
  margin-left: -50px;
}
header .other-menu a label {
  display: none;
  cursor: pointer;
  font-size: 12px;
  padding: 5px;
  transform: translateX(5px);
  opacity: 0;
  animation-iteration-count: 1;
  margin-left: -8px;
  box-sizing: border-box;
}
header .other-menu a label em {
  display: block;
  font-size: 10px;
  font-style: normal;
  opacity: 0.75;
}
header .other-menu a:hover {
  display: block;
}
header .other-menu a:hover label {
  display: block;
}
header:hover {
  width: 290px;
}
header:hover .logo-md div {
  display: block;
  opacity: 1;
  animation: 0.3s fadeSlide ease-in forwards;
}
header:hover nav .menu-container a label,
header:hover nav .menu-container .parent label,
header:hover nav .menu-container .parent strong {
  display: flex;
  opacity: 1;
  animation: 0.3s fadeSlide ease-in forwards;
}
header:hover nav .menu-container .drop-menu.show .parent {
  background-color: #002f64;
}
header:hover nav .menu-container .drop-menu.show .child {
  display: block;
}
header:hover nav .menu-container .drop-menu.show .parent strong::after {
  content: '\e316';
}
header:hover .other-menu a {
  width: auto;
}
header:hover .other-menu a label {
  display: block;
  opacity: 1;
  animation: 0.3s fadeSlide ease-in forwards;
}
header .chromeframe {
  margin: 0.2em 0;
  background: #E2A09A;
  color: #fff;
  padding: 0.2em 0;
}
header * {
  scrollbar-width: thin;
  scrollbar-color: #024ca2 #024ca2;
}
header *::-webkit-scrollbar {
  width: 15px;
}
header *::-webkit-scrollbar-track {
  background: #024ca2;
}
header *::-webkit-scrollbar-thumb {
  background-color: #0364d4;
  /* border-radius: 20px; */
  border: 6px solid #024ca2;
}
.front-logo-md {
  display: block;
  position: fixed;
  z-index: 1;
  top: 30px;
  left: 30px;
}
.front-logo-md img {
  display: block;
  width: auto;
  height: 40px;
}
.login-page .login-container {
  display: table;
  width: calc(100vw - 30px);
  height: calc(100vh - 30px);
  position: fixed;
  top: 15px;
  left: 15px;
}
.login-page .login-container .login-left {
  display: flex;
  justify-content: center;
  align-items: center;
  float: left;
  width: 50%;
  height: calc(100vh - 30px);
  background: url(../images/login-bg.jpg) center no-repeat #024ca2;
  background-size: cover;
  border-radius: 15px;
  color: #fff;
  font-size: 18px;
}
.login-page .login-container .login-left .left-content {
  display: block;
  padding: 30px;
  max-width: 500px;
}
.login-page .login-container .login-left .left-content h1 {
  font-size: 21px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 20px;
}
.login-page .login-container .login-left .left-content h1 img {
  display: block;
  width: 90%;
  max-width: 335px;
  height: auto;
  margin-bottom: 20px;
}
.login-page .login-container .login-right {
  display: flex;
  justify-content: center;
  align-items: center;
  float: right;
  width: 50%;
  height: calc(100vh - 30px);
  box-sizing: border-box;
}
.login-page .login-container .login-right .login-form {
  display: block;
  width: calc(100% - 30px);
  background-color: #fff;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 15px 2px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  box-sizing: border-box;
}
.login-page .login-container .login-right .login-form label {
  display: block;
  font-weight: 700;
  font-size: 18px;
  color: #024ca2;
  margin-bottom: 30px;
}
.login-page .login-container .login-right .login-form .login-field {
  display: block;
  margin-bottom: 10px;
}
.login-page .login-container .login-right .login-form .login-field span {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  float: left;
  width: 40px;
  height: 40px;
  margin: 1px -41px 0 0;
  color: #024ca2;
}
.login-page .login-container .login-right .login-form .login-field input {
  height: 42px;
  padding-left: 42px;
  border-radius: 10px;
  -webkit-transition: all 0.1s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.login-page .login-container .login-right .login-form .login-field input:hover {
  border-color: #024ca2;
}
.login-page .login-container .login-right .login-form .login-field input:focus {
  border-color: transparent;
  box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.1);
}
.login-page .login-container .login-right .login-form .login-act {
  height: 52px;
  background-color: #024ca2;
  font-size: 16px;
  font-weight: 600;
  border: none;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 30px;
  border-radius: 10px;
  -webkit-transition: all 0.1s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.login-page .login-container .login-right .login-form .login-act:hover {
  background-color: #000b18;
}
.login-page .login-container .login-right .login-form a {
  text-decoration: none;
  display: inline-block;
  margin: 3px 10px;
  -webkit-transition: all 0.1s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.login-page .login-container .login-right .login-form a:hover {
  color: #024ca2;
}
.login-page .login-container .login-right .login-form em {
  display: inline-block;
  font-style: normal;
}
.login-page .login-container .login-right .login-form em::after {
  content: '/';
}
.login-page .login-container .login-right .login-form .copy {
  display: block;
  margin-top: 40px;
  font-size: 10px;
  font-weight: 500;
  color: #999;
}
.reg-page .reg-container {
  display: table;
  width: calc(100vw - 30px);
  height: calc(100vh - 30px);
  position: fixed;
  top: 15px;
  left: 15px;
}
.reg-page .reg-container .reg-left {
  display: flex;
  justify-content: center;
  align-items: center;
  float: left;
  width: 40%;
  height: calc(100vh - 30px);
  background: url(../images/login-bag.svg) center no-repeat #024ca2;
  background-size: cover;
  border-radius: 15px;
  color: #fff;
  font-size: 18px;
}
.reg-page .reg-container .reg-left .left-content {
  display: block;
  padding: 30px;
  max-width: 500px;
}
.reg-page .reg-container .reg-left .left-content h1 {
  font-size: 21px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 20px;
}
.reg-page .reg-container .reg-left .left-content h1 strong {
  display: block;
  font-size: 52px;
  margin-bottom: 5px;
  line-height: 55px;
}
.reg-page .reg-container .reg-left .left-content h1 .material-icons {
  vertical-align: middle;
}
.reg-page .reg-container .reg-right {
  display: flex;
  justify-content: center;
  align-items: center;
  float: right;
  width: 60%;
  height: calc(100vh - 30px);
  box-sizing: border-box;
}
.reg-page .reg-container .reg-right h1 {
  display: block;
  font-size: 32px;
  color: #024ca2;
  font-weight: 600;
  margin-bottom: 20px;
}
.reg-page .reg-container .reg-right .right-content {
  display: block;
  width: calc(100% - 30px);
  max-width: 90%;
  background-color: #fff;
  border: 30px solid #fff;
  box-shadow: 0 10px 15px 2px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  box-sizing: border-box;
}
.mobile-menu {
  display: none;
}
.page-header {
  display: block;
  position: fixed;
  z-index: 5;
  top: 10px;
  left: 80px;
  width: calc(100% - 90px);
  height: 60px;
  background-color: white;
  border-radius: 15px;
}
.page-header.short {
  width: calc(100% - 450px);
}
.page-header .page-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 60px;
}
.page-header .page-title span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  font-size: 32px;
  color: #024ca2;
}
.page-header .page-title strong {
  font-size: 16px;
  font-weight: 600;
  color: #666;
  display: block;
  margin-left: -5px;
}
.page-header .header-button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  position: fixed;
  top: 10px;
  right: 20px;
}
.page-header .header-button .header-more-button {
  display: none;
}
.page-header .header-button .header-more-button.show {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.page-header .header-button .md-button {
  margin-bottom: 0;
  height: 32px;
  padding: 0 10px;
  font-size: 14px;
}
main {
  display: block;
  position: fixed;
  left: 80px;
  top: 10px;
  width: calc(100vw - 90px);
  height: calc(100vh - 20px);
}
main h1 {
  font-size: 21px;
  font-weight: 700;
  color: #024ca2;
  margin: -5px 0 20px 0;
  border-bottom: 1px solid #ddd;
  padding: 0 0 10px 0;
}
main h1 .material-icons {
  vertical-align: middle;
}
main h2 {
  font-size: 16px;
  font-weight: 700;
  color: #024ca2;
  margin-bottom: 20px;
}
main h2 .material-icons {
  vertical-align: middle;
}
.splite-content {
  display: table;
  width: 100%;
}
.splite-content .splite-left {
  float: left;
  padding-right: 10px;
  box-sizing: border-box;
}
.splite-content .splite-right {
  float: right;
  max-width: 77vw;
}
.splite-content .splite-right .frame {
  display: block !important;
  max-width: 99.9999%;
}
.page-main {
  display: block;
  float: left;
  width: 100%;
  height: calc(100vh - 90px);
  background-color: white;
  margin-top: 70px;
  border: 5px solid #fff;
  padding: 10px;
  overflow-y: scroll;
  overflow-x: hidden;
  border-radius: 15px;
  box-sizing: border-box;
}
.page-main .main-container {
  display: table;
  width: 100%;
  box-sizing: border-box;
}
.page-main .main-container .frame {
  display: table;
  width: 100%;
  padding: 20px;
  margin-bottom: 10px;
  border-radius: 10px;
  box-sizing: border-box;
}
.menu-content {
  border-bottom: 1px solid #ddd;
}
.menu-content a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  text-decoration: none;
  font-weight: 500;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 10px 10px 0 0;
  color: #888;
  -webkit-transition: all 0.1s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.menu-content a:hover {
  color: #024ca2;
}
.menu-content a.current {
  border: 1px solid #ddd;
  border-bottom-color: #fff;
  padding-bottom: 11px;
  margin-bottom: -1px;
  color: #002f64;
}
.menu-content a span {
  margin-right: 5px;
}
.paging {
  display: table;
  width: 100%;
  margin: 20px 0 0 0;
}
.paging .paging-left {
  float: left;
}
.paging .paging-right {
  display: flex;
  justify-content: center;
  align-items: center;
  float: right;
  border: 1px solid #ddd;
  border-radius: 5px;
}
.paging .paging-right em {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 7px;
  font-style: normal;
  border-right: 1px solid #ddd;
}
.paging .paging-right a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 7px;
  text-decoration: none;
  border-right: 1px solid #ddd;
  -webkit-transition: all 0.1s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.paging .paging-right a span {
  font-size: 21px;
}
.paging .paging-right a:last-child {
  border-right: none;
}
.paging .paging-right a.current {
  font-weight: 700;
  color: #024ca2;
}
.paging .paging-right a:hover {
  background-color: #fbf6f1;
}
.md-form .field {
  display: block;
  margin-bottom: 20px;
  padding-left: 160px;
}
.md-form .field::before {
  content: attr(data-title);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 42px;
  margin-bottom: 5px;
  margin-left: -160px;
  float: left;
  width: 160px;
  font-weight: 500;
}
.md-form .field input,
.md-form .field select,
.md-form .field textarea {
  height: 42px;
  padding: 0 10px;
  border-color: #ccc;
  border-radius: 5px;
  box-sizing: border-box;
  -webkit-transition: all 0.1s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.md-form .field input:hover,
.md-form .field select:hover,
.md-form .field textarea:hover {
  border-color: #024ca2;
}
.md-form .field input:focus,
.md-form .field select:focus,
.md-form .field textarea:focus {
  border-color: transparent;
  box-shadow: 0 2px 15px 3px rgba(0, 0, 0, 0.1);
}
.md-form .field input[type=file] {
  padding: 10px;
}
.md-form .field input.md-button,
.md-form .field input.md-button:hover {
  border-color: inherit;
}
.md-form .field.radio,
.md-form .field.checkbox {
  margin-bottom: 15px;
}
.md-form .field.radio input,
.md-form .field.checkbox input {
  display: none;
}
.md-form .field.radio label,
.md-form .field.checkbox label {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 42px;
  border: 1px solid #ccc;
  padding: 0 10px;
  margin-right: 5px;
  margin-bottom: 5px;
  cursor: pointer;
  border-radius: 5px;
  -webkit-transition: all 0.1s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  box-sizing: border-box;
}
.md-form .field.radio label:hover,
.md-form .field.checkbox label:hover {
  border-color: #024ca2;
  color: #024ca2;
}
.md-form .field.radio label::before,
.md-form .field.checkbox label::before {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 21px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  margin-right: 5px;
}
.md-form .field.radio input:checked + label,
.md-form .field.checkbox input:checked + label {
  background-color: #024ca2;
  color: #fff;
  border-color: #024ca2;
}
.md-form .field.radio label::before {
  content: '\e836';
}
.md-form .field.radio input:checked + label::before {
  content: '\e837';
}
.md-form .field.checkbox label::before {
  content: '\e835';
}
.md-form .field.checkbox input:checked + label::before {
  content: '\e834';
}
.md-form .field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23131313%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H16.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7rem top 50%;
  background-size: 0.55rem auto;
}
.md-form .field textarea {
  min-height: 200px;
  padding: 10px;
}
.md-form .field.error::before {
  color: red;
}
.md-form .field.error input,
.md-form .field.error select,
.md-form .field.error textarea,
.md-form .field.error label {
  border-color: red !important;
}
.md-form .field.break-line {
  padding-left: 0;
  margin-bottom: 10px;
}
.md-form .field.break-line::before {
  float: none;
  width: auto;
  margin-left: 0;
}
.md-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 42px;
  padding: 0 15px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  margin: 0 5px 5px 0;
  background-color: #024ca2;
  border-radius: 5px;
  -webkit-transition: all 0.1s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  box-sizing: border-box;
}
.md-button * {
  cursor: pointer;
}
.md-button.t-left {
  justify-content: flex-start;
}
.md-button span {
  margin-right: 5px;
}
.md-button.full-width {
  display: flex;
  width: 100%;
}
.md-button.red {
  background-color: #fd1f1f;
  color: #fff !important;
}
.md-button.red:hover {
  background-color: #ce0202;
}
.md-button.purple {
  background-color: #bb8eda;
}
.md-button.purple:hover {
  background-color: #9854c7;
}
.md-button.blue {
  background-color: #779ecb;
}
.md-button.blue:hover {
  background-color: #4477b2;
}
.md-button.orange {
  background-color: #ff9f22;
}
.md-button.orange:hover {
  background-color: #d47800;
}
.md-button.green {
  background-color: #33be5a;
}
.md-button.green:hover {
  background-color: #23823d;
}
.md-button.animate span {
  animation: 0.5s infiniteRotate ease infinite;
}
.md-button.gray {
  background-color: #999;
}
.md-button.gray:hover {
  background-color: #737373;
}
.md-button:hover {
  background-color: #000b18;
  color: #fff;
  cursor: pointer;
}
.table-wrap {
  display: block;
  overflow-x: auto;
  max-width: 99.99999%;
  border: 1px solid #ddd;
  padding: 3px;
  box-sizing: border-box;
}
.table-header {
  display: table;
  padding: 15px 25px 15px 125px;
  background-color: #024ca2;
  color: #fff;
  margin-bottom: 20px;
  border-radius: 10px;
}
.table-header span {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: #024ca2;
  text-align: center;
  float: left;
  margin-left: -105px;
  font-size: 21px;
  font-weight: 600;
  width: 90px;
  height: 80px;
  border-radius: 5px;
  box-sizing: border-box;
}
.table-header span strong {
  display: block;
  font-size: 42px;
  line-height: 34px;
  margin-bottom: 3px;
}
.table-header b {
  display: block;
  font-size: 28px;
  margin: -5px 0 -5px 0;
}
.table-header em {
  display: block;
  font-size: 30px;
  font-style: normal;
}
.table-header.small b {
  font-size: 21px;
  margin-bottom: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.table-header.small em {
  font-size: 16px;
  display: table;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.table-header.small em i {
  font-style: normal;
  float: right;
}
.md-table {
  width: 100%;
  box-sizing: border-box;
}
.md-table tr td {
  padding: 10px;
  vertical-align: top;
  border: 1px solid #ddd;
  width: 1px;
  box-sizing: border-box;
  -webkit-transition: all 0.1s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.md-table tr td.clear-width {
  width: auto;
}
.md-table tr td.t-right {
  text-align: right;
}
.md-table tr td.t-center {
  text-align: center;
}
.md-table tr td.no-wrap {
  white-space: nowrap;
}
.md-table tr td .label-status {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 5px 5px 0;
  background-color: #024ca2;
  font-size: 10px;
  text-transform: uppercase;
  padding: 1px 5px 0 5px;
  font-weight: 500;
  white-space: nowrap;
  color: #fff;
  border-radius: 3px;
}
.md-table tr td .label-status.red {
  background-color: #fd1f1f;
}
.md-table tr td .label-status.blue {
  background-color: #779ecb;
}
.md-table tr td .label-status.orange {
  background-color: #ff9f22;
}
.md-table tr td .label-status.green {
  background-color: #33be5a;
}
.md-table tr td .label-status.purple {
  background-color: #bb8eda;
}
.md-table tr td .label-status.gray {
  background-color: #666;
}
.md-table tr td .img-place.thum {
  margin-top: -5px;
  margin-bottom: -8px;
}
.md-table tr td .link {
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px dotted #333;
  -webkit-transition: all 0.1s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.md-table tr td .link span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  width: 16px;
  height: 16px;
  color: #024ca2;
  border: 1px solid #024ca2;
  margin-right: 3px;
  border-radius: 50%;
}
.md-table tr td .link:hover {
  color: #024ca2;
  border-bottom-color: #024ca2;
}
.md-table tr td .t-but-act {
  display: inline-block;
  vertical-align: middle;
  color: #999;
  -webkit-transition: all 0.1s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.md-table tr td .t-but-act span {
  font-size: 18px;
}
.md-table tr td .t-but-act:hover {
  color: #333;
}
.md-table tr:nth-child(odd) td {
  background-color: #f9f9f9;
}
.md-table tr:hover td {
  background-color: #f3f3f3;
}
.md-table tr.selected td {
  background-color: #f7f5e7;
}
.md-table tr input,
.md-table tr select {
  background-color: #fff;
  border-radius: 5px;
  font-size: 12px;
  padding: 3px 5px;
}
.md-table tr input[type=checkbox] {
  display: none;
}
.md-table tr .check-style::before {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 21px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  content: '\e835';
  font-size: 18px;
  cursor: pointer;
}
.md-table tr input[type=checkbox]:checked + .check-style {
  color: #024ca2;
}
.md-table tr input[type=checkbox]:checked + .check-style::before {
  content: '\e834';
}
.md-table thead tr td,
.md-table thead tr:nth-child(odd) td {
  color: #024ca2;
  border-bottom-color: #d5d5d5;
  font-weight: 600;
  background-color: transparent;
}
.table-menu {
  display: table;
  width: 100%;
  margin-bottom: 10px;
}
.table-menu .tm-left {
  display: flex;
  justify-content: center;
  align-items: center;
  float: left;
}
.table-menu .tm-left input[value=search] {
  border-radius: 0 5px 5px 0;
  height: 32px;
  padding: 0 5px;
  margin: 0 0 0 -30px;
}
.table-menu .tm-right {
  float: right;
  display: flex;
  justify-content: center;
  align-items: center;
}
.table-menu .tm-right .md-button {
  height: 32px;
  padding: 0 10px;
}
.table-menu .tm-right .md-button span {
  font-size: 21px;
}
.table-menu .tm-right .tm-more .more {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 21px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
  background-color: #ff9f22;
  -webkit-transition: all 0.1s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.table-menu .tm-right .tm-more .more:hover {
  background-color: #024ca2;
}
.table-menu .tm-right .tm-more .more::before {
  content: '\e5cf';
}
.table-menu .tm-right .tm-more .more.remove::before {
  content: '\e5ce';
}
.table-menu input[type=text],
.table-menu input[type=number] {
  height: 32px;
  border-color: #999;
  border-radius: 10px;
  padding: 0 15px;
  color: #999;
  border-radius: 5px;
  -webkit-transition: all 0.1s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.table-menu input[type=text]:hover,
.table-menu input[type=number]:hover,
.table-menu input[type=text]:focus,
.table-menu input[type=number]:focus {
  border-color: #024ca2;
  color: #333;
}
.table-toggle {
  display: none;
  border: 1px solid #ddd;
  border-bottom: none;
  padding: 15px 15px 1px 15px;
  box-sizing: border-box;
}
.table-toggle.show {
  display: block;
}
.table-detail tr td {
  padding: 5px 0 5px 10px;
}
.table-detail tr td:first-child {
  font-weight: 600;
}
.paging {
  display: table;
  width: 100%;
  margin: 20px 0 0 0;
}
.paging .paging-left {
  float: left;
}
.paging .paging-right {
  display: flex;
  justify-content: center;
  align-items: center;
  float: right;
  border: 1px solid #ddd;
  border-radius: 5px;
}
.paging .paging-right em {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 7px;
  font-style: normal;
  border-right: 1px solid #ddd;
}
.paging .paging-right a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 7px;
  text-decoration: none;
  border-right: 1px solid #ddd;
  -webkit-transition: all 0.1s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.paging .paging-right a span {
  font-size: 21px;
}
.paging .paging-right a:last-child {
  border-right: none;
}
.paging .paging-right a.current {
  font-weight: 700;
  color: #024ca2;
}
.paging .paging-right a:hover {
  background-color: #fbf6f1;
}
.img-place {
  display: inline-block;
  vertical-align: top;
  margin: 0 5px 5px 0;
  border: 1px solid #ddd;
  overflow: hidden;
  border-radius: 5px;
}
.img-place img {
  display: block;
  background-position: center;
  background-size: cover;
  width: auto;
  -webkit-transition: all 0.1s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.img-place.large img {
  height: 300px;
}
.img-place.medium img {
  height: 200px;
}
.img-place.small img {
  height: 100px;
}
.img-place.thum img {
  height: 30px;
}
.img-place:hover img {
  transform: scale(1.05);
}
.leftside-content-menu-button {
  display: none;
  border: 1px solid #ddd;
  overflow: hidden;
  margin-bottom: 5px;
  font-size: 18px;
  padding: 10px;
  font-weight: 700;
  color: #888;
  -webkit-transition: all 0.1s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  border-radius: 10px;
  cursor: pointer;
}
.leftside-content-menu-button span {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
.leftside-content-menu-button:hover {
  background-color: #024ca2;
  color: #fff;
}
.leftside-content-menu-button::after {
  display: block;
  content: '\e5cc';
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 21px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  float: right;
  font-size: 28px;
}
.leftside-content-menu-button.hide {
  display: none;
}
.leftside-content-menu {
  display: block;
}
.leftside-content-menu input {
  display: none;
}
.leftside-content-menu label {
  display: block;
  border: 1px solid #ddd;
  overflow: hidden;
  margin-bottom: 5px;
  border-radius: 10px;
}
.leftside-content-menu label strong {
  display: block;
  font-size: 18px;
  padding: 10px;
  -webkit-transition: all 0.1s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.leftside-content-menu label strong::after {
  display: block;
  content: '\e5cc';
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 21px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  float: right;
  font-size: 28px;
}
.leftside-content-menu label strong:hover {
  cursor: pointer;
  color: #024ca2;
}
.leftside-content-menu label a {
  display: none;
  text-decoration: none;
  padding: 10px 0;
  margin: 0 10px;
  border-top: 1px solid #ddd;
  -webkit-transition: all 0.1s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.leftside-content-menu label a b {
  font-weight: normal;
  float: right;
}
.leftside-content-menu label a span {
  display: block;
  padding: 3px 0;
  border-bottom: 1px solid #eee;
}
.leftside-content-menu label a span:last-child {
  border-bottom: none;
}
.leftside-content-menu label a.full {
  padding: 0;
}
.leftside-content-menu label a.full em {
  display: none;
  font-style: normal;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  font-weight: 700;
  color: #024ca2;
}
.leftside-content-menu label a.full em::after {
  content: '\e8f4';
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 21px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  float: right;
}
.leftside-content-menu label a:hover {
  color: #024ca2;
  padding-left: 5px;
}
.leftside-content-menu input:checked + label strong {
  background-color: #024ca2;
  color: #fff;
}
.leftside-content-menu input:checked + label a,
.leftside-content-menu input:checked + label em {
  display: block;
}
@keyframes infiniteRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.popup-main {
  display: none;
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  animation-name: fadeIn;
  animation-duration: 0.5s;
  animation-fill-mode: both;
}
.popup-main.show {
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup-main .popup-wrapped {
  display: block;
  width: 800px;
  max-width: 90%;
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
}
.popup-main .popup-wrapped .popup-head {
  display: block;
  padding: 15px;
  border-bottom: 1px solid #eee;
}
.popup-main .popup-wrapped .popup-head label {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 21px;
  font-weight: 700;
  color: #024ca2;
}
.popup-main .popup-wrapped .popup-head .closed {
  float: right;
  font-size: 26px;
  color: #999;
  cursor: pointer;
  -webkit-transition: all 0.1s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.popup-main .popup-wrapped .popup-head .closed:hover {
  color: #024ca2;
}
.popup-main .popup-wrapped .popup-content {
  display: block;
  margin: 15px;
  max-height: calc(90vh - 95px);
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box;
}
.user-page .u-pic {
  display: block;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0 auto;
  border: 10px solid #eee;
  box-sizing: border-box;
}
.user-page .u-field {
  display: block;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.user-page .u-field .t-large {
  font-size: 21px;
}
.user-page .u-field::before {
  content: attr(data-title);
  display: block;
  font-weight: 600;
  color: #024ca2;
  margin-bottom: 5px;
  font-size: 14px;
}
.user-page hr {
  margin-bottom: 15px;
}
.user-page .u-action {
  display: flex;
  justify-content: center;
  align-items: center;
}
.user-page .u-action button,
.user-page .u-action a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  padding: 0 15px;
  height: 42px;
  border: 1px solid #666;
  color: #666;
  margin: 0 3px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: all 0.1s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.user-page .u-action button:first-child,
.user-page .u-action a:first-child {
  border-color: #024ca2;
  color: #024ca2;
}
.user-page .u-action button span,
.user-page .u-action a span {
  margin-right: 5px;
}
.user-page .u-action button:hover,
.user-page .u-action a:hover {
  color: #fff;
  border-color: #024ca2;
  background-color: #024ca2;
}
.popup-light {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
}
.popup-light.show {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  animation: 0.5s fadeIn;
}
.popup-light.show .pl-status {
  animation: 0.73s fadeInTop both;
  opacity: 1;
}
.popup-light .pl-status {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 5vh;
  background-color: #fff;
  box-shadow: 0 0 22px 1px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  opacity: 0;
  -webkit-transition: all 0.1s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.popup-light .pl-status::before {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  font-size: 21px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
}
.popup-light .pl-status .pl-content {
  display: block;
  padding: 10px 0;
  font-size: 12px;
}
.popup-light .pl-status .pl-close {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  -webkit-transition: all 0.1s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.popup-light .pl-status .pl-close:hover {
  color: #024ca2;
}
.popup-light .pl-status .pl-close::before {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 21px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  content: '\e5cd';
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  border-radius: 50%;
}
.popup-light .pl-status.loading .pl-content {
  padding-right: 15px;
}
.popup-light .pl-status.loading::before {
  content: '\e627';
  color: #024ca2;
  animation: 0.5s loadingAnimate infinite;
  margin: -2px 0 0 0;
}
.popup-light .pl-status.warning::before {
  content: '\e001';
  color: #ff9f22;
}
.popup-light .pl-status.success::before {
  content: '\e92d';
  color: #33be5a;
}
.popup-light .pl-status.error::before {
  content: '\e888';
  color: #fd1f1f;
}
.popup-main-state {
  display: none;
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  animation-name: fadeIn;
  animation-duration: 0.5s;
  animation-fill-mode: both;
}
.popup-main-state.show {
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup-main-state.show .pms-container {
  animation: 0.5s bounceIn both;
}
.popup-main-state .pms-container {
  display: block;
  padding: 35px;
  width: 90%;
  max-width: 500px;
  background-color: #fff;
  border-radius: 15px;
  box-sizing: border-box;
}
.popup-main-state .pms-container .pms-content {
  display: block;
  padding-left: 80px;
}
.popup-main-state .pms-container .pms-content .icon {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 21px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  float: left;
  margin-left: -80px;
  box-shadow: 0 5px 20px 3px rgba(0, 0, 0, 0.15);
}
.popup-main-state .pms-container .pms-content .icon::before {
  font-size: 42px;
}
.popup-main-state .pms-container .pms-content strong {
  font-size: 21px;
  display: block;
  margin-bottom: 5px;
}
.popup-main-state .pms-container .pms-content .pms-but {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  height: 32px;
  border-radius: 10px;
  margin-top: 20px;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: all 0.1s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.popup-main-state.warning .pms-content .icon {
  color: #ff9f22;
}
.popup-main-state.warning .pms-content .icon::before {
  content: '\f083';
}
.popup-main-state.warning .pms-content strong {
  color: #ff9f22;
}
.popup-main-state.warning .pms-content .pms-but {
  border: 2px solid #ff9f22;
  color: #ff9f22;
}
.popup-main-state.warning .pms-content .pms-but:hover {
  cursor: pointer;
  background-color: #ff9f22;
  color: #fff;
}
.popup-main-state.success .pms-content .icon {
  color: #33be5a;
}
.popup-main-state.success .pms-content .icon::before {
  content: '\e92d';
}
.popup-main-state.success .pms-content strong {
  color: #33be5a;
}
.popup-main-state.success .pms-content .pms-but {
  border: 2px solid #33be5a;
  color: #33be5a;
}
.popup-main-state.success .pms-content .pms-but:hover {
  cursor: pointer;
  background-color: #33be5a;
  color: #fff;
}
.popup-main-state.error .pms-content .icon {
  color: #fd1f1f;
}
.popup-main-state.error .pms-content .icon::before {
  content: '\e888';
}
.popup-main-state.error .pms-content strong {
  color: #fd1f1f;
}
.popup-main-state.error .pms-content .pms-but {
  border: 2px solid #fd1f1f;
  color: #fd1f1f;
}
.popup-main-state.error .pms-content .pms-but:hover {
  cursor: pointer;
  background-color: #fd1f1f;
  color: #fff;
}
.dashboard-component {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-right: -10px;
  flex-wrap: wrap;
}
.dashboard-component .dc-item {
  display: table;
  padding: 15px;
  background-color: #024ca2;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  margin: 0 10px 10px 0;
  -webkit-transition: all 0.1s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  box-sizing: border-box;
}
.dashboard-component .dc-item strong {
  display: block;
  padding: 15px 15px 15px 40px;
  border-radius: 10px 10px 0 0;
  background-color: #04748f;
  color: #fff;
  font-size: 21px;
  margin: -15px -15px 10px -15px;
  line-height: 20px;
  text-transform: uppercase;
  -webkit-transition: all 0.1s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.dashboard-component .dc-item strong::before {
  content: '\e85d';
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 21px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  vertical-align: middle;
  font-size: 26px;
  margin: -5px 5px 0 -30px;
}
.dashboard-component .dc-item span {
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 5px 0;
}
.dashboard-component .dc-item span:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.dashboard-component .dc-item span em {
  font-style: normal;
  float: right;
}
.dashboard-component.multi-color .dc-item strong {
  background-color: transparent;
  padding-left: 15px;
  margin-bottom: 0;
}
.dashboard-component.multi-color .dc-item strong::before {
  display: none;
}
.dashboard-component.multi-color .dc-item.red {
  background-color: #ff4567;
}
.dashboard-component.multi-color .dc-item.green {
  background-color: #00bc6e;
}
.dashboard-component.multi-color .dc-item.blue {
  background-color: #0062e3;
}
.dashboard-component.multi-color .dc-item.orange {
  background-color: #ffb845;
}
.dashboard-component.multi-color .dc-item.purple {
  background-color: #9c45ff;
}
.dashboard-component.multi-color .dc-item.cyan {
  background-color: #23bfd4;
}
.dashboard-component.link .dc-item {
  cursor: pointer;
}
.dashboard-component.link .dc-item i {
  font-style: normal;
  font-weight: 600;
  display: table;
  padding: 5px 10px;
  border-radius: 5px;
  background-color: #fff;
  color: #024ca2;
  margin: 15px 0 0 0;
  float: right;
}
.dashboard-component.link .dc-item i::after {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 21px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  content: '\f1df';
  float: right;
  margin-left: 15px;
  -webkit-transition: all 0.1s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.dashboard-component.link .dc-item:hover {
  background-color: #013470;
  transform: scale(1.025);
}
.dashboard-component.link .dc-item:hover i::after {
  margin-left: 5px;
}
.dashboard-component.link .dc-item:hover strong {
  background-color: #001731;
}
.dashboard-component.grid-5 .dc-item {
  width: calc(20% - 10px);
}
.dashboard-component.grid-4 .dc-item {
  width: calc(25% - 10px);
}
.dashboard-component.grid-3 .dc-item {
  width: calc(33.33333% - 10px);
}
.dashboard-component.grid-2 .dc-item {
  width: calc(50% - 10px);
}
.w-25 {
  width: 25%;
}
.w-50 {
  width: 50%;
}
.w-75 {
  width: 75%;
}
.w-100 {
  width: 100%;
}
@keyframes fadeSlide {
  from {
    transform: translateX(5px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInTop {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 1;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes loadingAnimate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes bounceIn {
  0%,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@media only screen and (max-width: 1300px) {
  .dashboard-component.grid-5 .dc-item {
    width: calc(25% - 10px);
  }
}
@media only screen and (max-width: 1200px) {
  .page-header.short {
    width: calc(100% - 380px);
  }
  .page-left {
    width: calc(100% - 290px);
  }
  .page-right {
    width: 280px;
  }
  .article-list ul li {
    width: 50%;
    float: left;
    margin-right: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .dashboard-component.grid-4 .dc-item,
  .dashboard-component.grid-5 .dc-item {
    width: calc(33.3333333% - 10px);
  }
}
@media only screen and (max-width: 900px) {
  .page-header.short {
    width: calc(100% - 90px);
  }
  header {
    height: calc(100% - 75px);
    width: 280px;
    left: -280px;
    -webkit-transition: all 0.1s ease-out 0s;
    transition: all 0.2s ease-out 0s;
  }
  header .logo-md div {
    display: block;
  }
  header.show {
    left: 10px;
  }
  header nav {
    height: calc(100vh - 200px);
  }
  header nav .menu-container {
    width: 265px;
  }
  header nav .menu-container a label,
  header nav .menu-container .parent label {
    display: flex;
    background-color: transparent;
    position: relative;
    opacity: 1;
  }
  header nav .menu-container .drop-menu .parent strong {
    opacity: 1;
  }
  header .other-menu a label {
    display: block;
    opacity: 1;
    padding: 5px 0;
  }
  .mobile-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100vw - 20px);
    height: 45px;
    background-color: #024ca2;
    border-radius: 15px;
    position: fixed;
    left: 10px;
    bottom: 10px;
    z-index: 2;
  }
  .mobile-menu li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 33.333333%;
    height: 45px;
  }
  .mobile-menu li span,
  .mobile-menu li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 45px;
    color: white;
    text-decoration: none;
  }
  .mobile-menu li span.alert::after,
  .mobile-menu li a.alert::after {
    content: '';
    display: block;
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: red;
    border: 2px solid #fff;
    margin: -14px 0 0 -22px;
    border-radius: 50%;
  }
  main {
    width: calc(100vw - 20px);
    left: 10px;
  }
  main h1 {
    padding-top: 10px;
  }
  .page-main .main-container .frame {
    padding: 5px;
  }
  .splite-content .splite-left {
    float: none;
    padding-right: 0;
    width: 100% !important;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
  }
  .splite-content .splite-right {
    float: none;
    width: 100% !important;
    max-width: none;
  }
  .splite-content .u-field {
    margin-bottom: 0;
  }
  .user-page .splite-content .splite-left {
    margin-bottom: 0;
  }
  .page-header {
    width: calc(100% - 20px);
    left: 10px;
  }
  .page-header.short {
    width: calc(100% - 20px);
  }
  .table-wrap {
    max-width: calc(100vw - 70px);
  }
  .page-main {
    width: 100%;
    height: calc(100vh - 145px);
  }
  .page-left {
    width: 100%;
    height: calc(100vh - 145px);
  }
  .page-right {
    position: fixed;
    float: none;
    left: auto;
    width: 300px;
    right: -300px;
    height: calc(100vh - 75px);
    -webkit-transition: all 0.1s ease-out 0s;
    transition: all 0.2s ease-out 0s;
  }
  .page-right.show {
    right: 10px;
    box-shadow: 0 0 15px 3px rgba(0, 0, 0, 0.3);
  }
  .category-menu {
    display: none;
  }
  .menu-content a {
    font-size: 18px;
    font-weight: 700;
  }
  .leftside-content-menu-button {
    display: block;
  }
  .leftside-content-menu {
    display: none;
  }
  .leftside-content-menu.show {
    display: block;
  }
  .dashboard-component.grid-3 .dc-item,
  .dashboard-component.grid-4 .dc-item,
  .dashboard-component.grid-5 .dc-item {
    width: calc(50% - 10px);
  }
}
@media only screen and (max-width: 640px) {
  .front-logo-md {
    top: 15px;
    left: 15px;
  }
  .login-page .login-container {
    position: relative;
    border-radius: 0;
    width: 100%;
    padding: 0;
    top: 0;
    left: 0;
  }
  .login-page .login-container .login-left {
    float: none;
    width: 100%;
    left: 0;
    height: auto;
    padding: 50px 30px 600px 30px;
    border-radius: 0;
    text-align: center;
    box-sizing: border-box;
  }
  .login-page .login-container .login-left .left-content h1 img {
    display: inline-block;
  }
  .login-page .login-container .login-right {
    float: none;
    width: 100%;
    height: auto;
    padding: 0 30px 50px 30px;
    margin: -560px 0 0 0;
  }
  .login-page .login-container .login-right .login-form em {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 70%;
    height: 0;
    border-bottom: 1px solid #ddd;
    margin: 20px auto;
  }
  .login-page .login-container .login-right .login-form em::after {
    display: block;
    padding: 0 5px;
    background-color: #fff;
    content: 'atau';
    font-size: 12px;
    font-weight: 600;
  }
  .reg-page .reg-container {
    position: relative;
    border-radius: 0;
    width: 100%;
    padding: 0;
    top: 0;
    left: 0;
  }
  .reg-page .reg-container .reg-left {
    float: none;
    width: 100%;
    left: 0;
    height: auto;
    padding: 50px 30px 250px 30px;
    border-radius: 0;
    box-sizing: border-box;
  }
  .reg-page .reg-container .reg-left .left-content h1 strong {
    font-size: 42px;
    line-height: 42px;
  }
  .reg-page .reg-container .reg-right {
    float: none;
    width: 100%;
    height: auto;
    padding: 0 10px 50px 10px;
    margin: -230px 0 0 0;
    box-sizing: border-box;
  }
  .page-header .header-button .md-button {
    padding: 0 5px;
  }
  .page-header .header-button .md-button span {
    margin-right: 0;
  }
  .page-header .header-button .md-button label {
    display: none;
  }
  .payment .pay-field {
    padding: 0 0 15px 0;
  }
  .payment .pay-field::before {
    float: none;
    margin-left: 0;
    margin-bottom: 10px;
  }
  .main-form .field {
    padding: 0 0 15px 0;
  }
  .main-form .field::before {
    float: none;
    margin-left: 0;
    margin-bottom: 10px;
    width: auto;
  }
  .md-form .field {
    padding-left: 0;
  }
  .md-form .field::before {
    float: none;
    height: auto;
    margin-left: 0;
    margin-bottom: 10px;
    width: auto;
  }
  .table-toggle .table-menu .tm-left,
  .table-toggle .table-menu .tm-right {
    float: none;
    justify-content: flex-start;
  }
  .table-toggle .table-menu .tm-left {
    margin-bottom: 15px;
  }
  .table-toggle .table-menu .tm-right {
    flex-wrap: wrap;
    margin-right: -5px;
  }
  .table-toggle .table-menu .tm-right .md-button {
    width: calc(50% - 5px);
  }
  .paging {
    text-align: center;
  }
  .paging .paging-left {
    float: none;
    margin-bottom: 10px;
  }
  .paging .paging-right {
    float: none;
    display: inline-flex;
  }
  .menu-content {
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    margin-right: 5px;
  }
  .menu-content a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid #ddd;
  }
  .menu-content a.current {
    border: none;
    border-bottom: 1px solid #ddd;
    margin-bottom: 0;
  }
  .table-header {
    width: 100%;
    box-sizing: border-box;
  }
  .table-header b,
  .table-header em {
    font-size: 21px;
  }
  .dashboard-component.grid-2 .dc-item,
  .dashboard-component.grid-3 .dc-item,
  .dashboard-component.grid-4 .dc-item,
  .dashboard-component.grid-5 .dc-item {
    width: calc(100% - 10px);
  }
}
