@charset "UTF-8";
/*
* Noto Sans (EN: 400,600,700)
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital@0;1&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,600;1,600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,700;1,700&display=swap");
/*
* Noto Sans (TC: 400,600, 700)
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@700&display=swap");
@keyframes fadeInOut {
  0%, 100% {
    /* background-color: transparent; */
    background-color: #02122B;
  }
  30%, 70% {
    /* background-color: rgba(2, 118, 255, 0.2); */
    background-color: #02122B;
  }
}
@keyframes ani-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes ani-fadeIn {
  0% {
    transform: translateY(-40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
.a-link {
  color: aliceblue;
}

.a-link:hover {
  color: #2863D8;
}

.header {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  padding: 0.7rem 6rem;
  /* background: linear-gradient(90deg, #1a1f2c, #2c3444); */
  /* background-color: transparent; */
  background-color: #02122B;
  color: #fff;
  font-family: "Arial", sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000; /* 確保 header 在其他元素之上 */
}
.header.scrolled {
  /* background-color: rgba(0, 12, 39, 0.5) !important; 滾動後的背景顏色 */
  background-color: #02122B;
}
@media screen and (max-width: 991px) {
  .header.scrolled {
    background-color: #000C27 !important;
  }
}
.header .header-logo {
  font-size: 24px;
  font-weight: bold;
  color: #01CFC8;
  padding: 0px 30px 0px 0px;
}
.header .header-logo .logo-img {
  width: 50px; /* 根據需要調整寬度 */
  height: auto; /* 保持圖片的縱橫比 */
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 991px) {
  .header .header-logo {
    padding: 0px;
  }
}
.header .header-nav {
  display: flex;
  gap: 2rem;
  font-size: 15px;
  justify-content: flex-start; /* 將內容靠左對齊 */
  align-items: center;
}
.header .header-nav a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.header .header-nav a:hover {
  color: #01CFC8;
}
.header .header-icons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}
@media screen and (max-width: 991px) {
  .header {
    padding: 0.7rem 1rem;
  }
  .header .header-nav {
    display: none;
  }
  .header .header-icons {
    display: none;
  }
}

.icon-button {
  background: none !important;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 20px;
  padding: 5px;
  transition: color 0.3s;
}
.icon-button:hover {
  color: #01CFC8;
}

.signup-button, .signup-button2 {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #01CFC8;
  border-radius: 5px;
  height: 36px;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 14px;
  font-weight: 700;
  color: #01CFC8;
  /* background-color: transparent; */
  background-color: #02122B;
  cursor: pointer;
  transition: all ease-in-out 0.3s;
}
.signup-button:hover, .signup-button2:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1) !important;
  transform: translateY(-5px);
}

.signup-button {
  margin-left: 1rem;
}

.user-dropdown {
  position: relative;
}

.dropdown-content,
.dropdown-content-lan {
  display: none;
  position: absolute;
  right: 0;
  /* background-color: rgba(0, 0, 0, 0.5); */
  background-color: #02122B;
  min-width: 140px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 999;
  border-radius: 5px;
  padding-top: 20px;
  padding-bottom: 10px;
  /* padding-left: 16px; */
}
.dropdown-content a,
.dropdown-content-lan a {
  font-size: 15px;
  color: white;
  padding: 4px 16px;
  text-decoration: none;
  display: block;
  /* background-color: rgba(0,0,0,0.2); */
}
.dropdown-content a:hover,
.dropdown-content-lan a:hover {
  background-color: #000C27;
  color: #fff !important;
}

.user-dropdown:hover .dropdown-content {
  display: block;
}

.language-dropdown {
  position: relative;
}

.dropdown-content-lan {
  min-width: 100px;
}

.language-dropdown:hover .dropdown-content-lan {
  display: block;
}

#offcanvasExample {
  display: none;
}

.phone-header-button {
  position: fixed;
  top: 0;
  z-index: 2100;
  right: 0px; /* 假設 2x 是 2rem */
  width: 60px;
  height: 60px;
  /* background-color: transparent; */
  background-color: #02122B;
  /* opacity: 0.5; */
  color: white;
  border: none;
  display: none;
}
@media screen and (max-width: 991px) {
  .phone-header-button {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .phone-header-button {
    margin-top: 0px !important;
    display: block;
  }
}

/* Offcanvas */
.phone-header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: #000c27;
  color: white;
  opacity: 0.9;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.phone-header-menu {
  display: flex;
  gap: 20px;
}

.phone-header-menu-item {
  color: white;
  text-decoration: none;
}

.phone-header-main {
  text-align: center;
  margin-bottom: 40px;
}

.phone-header-title {
  font-size: 36px;
  margin-bottom: 20px;
}

.phone-header-subtitle {
  font-size: 18px;
  margin-bottom: 30px;
  color: white;
}

.phone-header-cta {
  display: inline-block;
  background-color: #01CFC8;
  color: #00226E;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.phone-header-footer {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.phone-header-footer-item {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}

.illustrate {
  font-weight: bold;
}

.monica-reading-highlight {
  animation: fadeInOut 1.5s ease-in-out;
}

#msg, #msg2, #msg3 {
  width: 500px;
  max-width: calc(100% - 16px);
  min-width: unset;
  border-radius: 10px;
  border: none;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
#msg #msg_top, #msg #msg_clear, #msg2 #msg_top, #msg2 #msg_clear, #msg3 #msg_top, #msg3 #msg_clear {
  padding: 10px 15px;
}
#msg #msg_top, #msg2 #msg_top, #msg3 #msg_top {
  border-radius: 10px 10px 0px 0px;
  background: #2863D8;
}
#msg #msg_top .alert-title, #msg #msg_top .msg_close, #msg2 #msg_top .alert-title, #msg2 #msg_top .msg_close, #msg3 #msg_top .alert-title, #msg3 #msg_top .msg_close {
  font-size: 18px;
}
#msg #msg_top .alert-title, #msg2 #msg_top .alert-title, #msg3 #msg_top .alert-title {
  font-weight: bold;
}
#msg #msg_top .msg_close, #msg2 #msg_top .msg_close, #msg3 #msg_top .msg_close {
  opacity: 0.5;
}
#msg #msg_top .msg_close:hover, #msg2 #msg_top .msg_close:hover, #msg3 #msg_top .msg_close:hover {
  opacity: 0.75;
}
#msg #msg_cont2, #msg2 #msg_cont2, #msg3 #msg_cont2 {
  padding: 15px;
  color: #000;
  font-size: 14px;
}
#msg #msg_clear, #msg2 #msg_clear, #msg3 #msg_clear {
  border-top: 1px solid #dee2e6;
}
#msg #msg_clear button, #msg2 #msg_clear button, #msg3 #msg_clear button {
  margin: 0px !important;
  height: 40px !important;
  padding: 5px 15px !important;
  border-radius: 5px !important;
  overflow: hidden;
  position: relative;
}
#msg #msg_clear button::after, #msg2 #msg_clear button::after, #msg3 #msg_clear button::after {
  position: absolute;
  content: "";
  z-index: -1;
  display: block;
  left: -20%;
  right: -20%;
  top: -15%;
  height: 150%;
  width: 150%;
  bottom: 0;
  background: #fff;
  transform: skewX(45deg) scale(0, 1);
  transition: all 0.5s ease 0s;
}
#msg #msg_clear button:hover, #msg2 #msg_clear button:hover, #msg3 #msg_clear button:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1) !important;
  transform: translateY(-5px);
}
#msg #msg_clear button:hover::after, #msg2 #msg_clear button:hover::after, #msg3 #msg_clear button:hover::after {
  transform: skewX(45deg) scale(1, 1);
}
#msg #msg_clear button + button, #msg2 #msg_clear button + button, #msg3 #msg_clear button + button {
  margin-left: 3px;
}
#msg #msg_clear button.msg_close2, #msg2 #msg_clear button.msg_close2, #msg3 #msg_clear button.msg_close2 {
  background: #fff;
  border: 1px solid #c3c3c3;
  color: #000;
}
#msg #msg_clear button.msg_close2:hover, #msg #msg_clear button.msg_close2:focus, #msg #msg_clear button.msg_close2:active, #msg #msg_clear button.msg_close2:not(:disabled):not(.disabled):active, #msg2 #msg_clear button.msg_close2:hover, #msg2 #msg_clear button.msg_close2:focus, #msg2 #msg_clear button.msg_close2:active, #msg2 #msg_clear button.msg_close2:not(:disabled):not(.disabled):active, #msg3 #msg_clear button.msg_close2:hover, #msg3 #msg_clear button.msg_close2:focus, #msg3 #msg_clear button.msg_close2:active, #msg3 #msg_clear button.msg_close2:not(:disabled):not(.disabled):active {
  border-color: #c3c3c3;
  color: #000;
}
#msg #msg_clear button.msg_login, #msg #msg_clear button.msg_close, #msg2 #msg_clear button.msg_login, #msg2 #msg_clear button.msg_close, #msg3 #msg_clear button.msg_login, #msg3 #msg_clear button.msg_close {
  background: #2863D8;
  border: 1px solid #2863D8;
}
#msg #msg_clear button.msg_login, #msg #msg_clear button.msg_login:focus, #msg #msg_clear button.msg_login:active, #msg #msg_clear button.msg_login:not(:disabled):not(.disabled):active, #msg #msg_clear button.msg_login:not(:disabled):not(.disabled).active, #msg #msg_clear button.msg_close, #msg #msg_clear button.msg_close:focus, #msg #msg_clear button.msg_close:active, #msg #msg_clear button.msg_close:not(:disabled):not(.disabled):active, #msg #msg_clear button.msg_close:not(:disabled):not(.disabled).active, #msg2 #msg_clear button.msg_login, #msg2 #msg_clear button.msg_login:focus, #msg2 #msg_clear button.msg_login:active, #msg2 #msg_clear button.msg_login:not(:disabled):not(.disabled):active, #msg2 #msg_clear button.msg_login:not(:disabled):not(.disabled).active, #msg2 #msg_clear button.msg_close, #msg2 #msg_clear button.msg_close:focus, #msg2 #msg_clear button.msg_close:active, #msg2 #msg_clear button.msg_close:not(:disabled):not(.disabled):active, #msg2 #msg_clear button.msg_close:not(:disabled):not(.disabled).active, #msg3 #msg_clear button.msg_login, #msg3 #msg_clear button.msg_login:focus, #msg3 #msg_clear button.msg_login:active, #msg3 #msg_clear button.msg_login:not(:disabled):not(.disabled):active, #msg3 #msg_clear button.msg_login:not(:disabled):not(.disabled).active, #msg3 #msg_clear button.msg_close, #msg3 #msg_clear button.msg_close:focus, #msg3 #msg_clear button.msg_close:active, #msg3 #msg_clear button.msg_close:not(:disabled):not(.disabled):active, #msg3 #msg_clear button.msg_close:not(:disabled):not(.disabled).active {
  color: #fff;
}
#msg #msg_clear button.msg_login:hover, #msg #msg_clear button.msg_close:hover, #msg2 #msg_clear button.msg_login:hover, #msg2 #msg_clear button.msg_close:hover, #msg3 #msg_clear button.msg_login:hover, #msg3 #msg_clear button.msg_close:hover {
  color: #2863D8 !important;
  border-color: #2863D8;
}

.favorite-container .favorite-sidebar {
  width: 400px;
  flex-shrink: 0;
  background-color: #3E4C72;
  border-radius: 10px;
  transition: all ease-in-out 0.3s;
}
.favorite-container .favorite-sidebar .sidebar-toggle {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
}
.favorite-container .favorite-sidebar .sidebar-toggle .title {
  font-weight: 600;
}
.favorite-container .favorite-sidebar .sidebar-toggle i {
  transition: all ease-in-out 0.3s;
  transform: rotate(90deg);
}
.favorite-container .favorite-sidebar .sidebar-con {
  height: auto;
  overflow-y: auto;
  transition: all ease-in-out 0.3s;
  margin-top: 10px;
}
.favorite-container .favorite-sidebar h2 {
  color: #fff;
  font-size: 18px;
  line-height: 1.4;
}
.favorite-container .favorite-sidebar h2 img {
  height: 18px;
}
.favorite-container .favorite-sidebar h2 .title {
  display: inline;
}
.favorite-container .favorite-sidebar ul {
  margin-bottom: 40px;
  margin-left: 20px;
}
.favorite-container .favorite-sidebar ul li.active {
  font-weight: 700;
}
.favorite-container .favorite-sidebar ul li.active a {
  color: white;
}
.favorite-container .favorite-sidebar ul li a {
  color: rgba(255, 255, 255, 0.8);
}
.favorite-container .favorite-sidebar ul li a:hover {
  color: white;
}
.favorite-container .favorite-sidebar ul:last-child {
  margin-bottom: 0;
}
.favorite-container .favorite-sidebar.active {
  width: auto;
}
.favorite-container .favorite-sidebar.active .sidebar-toggle {
  justify-content: center;
}
.favorite-container .favorite-sidebar.active .sidebar-toggle .title {
  display: none;
}
.favorite-container .favorite-sidebar.active .sidebar-toggle .icon {
  margin-left: -5px;
}
.favorite-container .favorite-sidebar.active .sidebar-toggle .icon i {
  transform: rotate(-90deg);
}
.favorite-container .favorite-sidebar.active .sidebar-con {
  overflow: visible;
  margin-top: 20px;
}
.favorite-container .favorite-sidebar.active .sidebar-con .sidebar-item {
  position: relative;
}
.favorite-container .favorite-sidebar.active .sidebar-con .sidebar-item h2 {
  padding: 10px;
}
.favorite-container .favorite-sidebar.active .sidebar-con .sidebar-item h2 .title {
  display: none;
}
.favorite-container .favorite-sidebar.active .sidebar-con .sidebar-item ul {
  display: none;
}
.favorite-container .favorite-sidebar.active .sidebar-con .sidebar-item:hover h2 .title, .favorite-container .favorite-sidebar.active .sidebar-con .sidebar-item:hover ul {
  display: block;
  position: absolute;
  left: 40px;
  width: 350px;
  padding: 10px;
  background: #506293;
  z-index: 100;
}
.favorite-container .favorite-sidebar.active .sidebar-con .sidebar-item:hover h2 {
  background: #506293;
  border-radius: 5px;
  cursor: pointer;
}
.favorite-container .favorite-sidebar.active .sidebar-con .sidebar-item:hover h2 .title {
  top: 0px;
  font-size: 16px;
  border-radius: 0 5px 0 0;
}
.favorite-container .favorite-sidebar.active .sidebar-con .sidebar-item:hover ul {
  top: 40px;
  margin: 0px;
  border-radius: 0 0 5px 5px;
}
.favorite-container .favorite-main .card-header {
  background-color: rgba(62, 76, 114, 0.6);
}
.favorite-container .favorite-main .card-footer {
  background: none;
  text-align: center;
}
.favorite-container .favorite-main .card-footer .btn {
  height: 40px;
  line-height: 1;
}
.favorite-container .favorite-main .card-footer .btn + .btn {
  margin-left: 10px;
}
.favorite-container .favorite-main .nav-tabs {
  font-size: 16px;
}
.favorite-container .favorite-main .nav-tabs button.nav-link {
  flex-basis: auto;
  flex-grow: 0;
  padding: 12px 15px;
  flex-shrink: 0;
}
.favorite-container .favorite-main .favorite-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.favorite-container .favorite-main .favorite-filter .tool {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.favorite-container .favorite-main .favorite-filter .tool .form-check-custom {
  margin: 0px;
}
.favorite-container .favorite-main .favorite-filter .tool .gap {
  margin: 0 10px;
}
@media screen and (max-width: 1200px) {
  .favorite-container .favorite-sidebar {
    width: 300px;
  }
}
@media screen and (max-width: 991px) {
  .favorite-container {
    flex-direction: column;
    padding: 80px 0px;
  }
  .favorite-container .favorite-sidebar {
    width: calc(100% - 30px);
    margin: 0 15px;
    padding: 15px;
  }
  .favorite-container .favorite-sidebar .sidebar-toggle .icon i {
    transform: rotate(0deg);
  }
  .favorite-container .favorite-sidebar .sidebar-con {
    height: 0px;
    margin-top: 0px;
  }
  .favorite-container .favorite-sidebar .sidebar-con .sidebar-item h2 {
    font-size: 16px;
  }
  .favorite-container .favorite-sidebar .sidebar-con .sidebar-item ul li {
    font-size: 14px;
    line-height: 1.4;
  }
  .favorite-container .favorite-sidebar.active .sidebar-toggle {
    justify-content: space-between;
  }
  .favorite-container .favorite-sidebar.active .sidebar-toggle .title {
    display: block;
  }
  .favorite-container .favorite-sidebar.active .sidebar-toggle .icon i {
    transform: rotate(180deg);
  }
  .favorite-container .favorite-sidebar.active .sidebar-con {
    margin-top: 10px;
    height: 300px;
    overflow-y: auto;
  }
  .favorite-container .favorite-sidebar.active .sidebar-con .sidebar-item h2 .title, .favorite-container .favorite-sidebar.active .sidebar-con .sidebar-item ul {
    position: static !important;
    top: auto !important;
    left: auto !important;
    background: transparent !important;
    padding: 0px !important;
    width: auto !important;
  }
  .favorite-container .favorite-sidebar.active .sidebar-con .sidebar-item h2 {
    padding: 0px;
    background: transparent !important;
  }
  .favorite-container .favorite-sidebar.active .sidebar-con .sidebar-item h2 .title {
    display: inline !important;
  }
  .favorite-container .favorite-sidebar.active .sidebar-con .sidebar-item ul {
    display: block !important;
    margin-left: 20px !important;
  }
}

.footer-section {
  background: #090B45;
}

body.ui-body,
h1, h2, h3, h4, h5, h6,
.btn,
.form-control {
  font-family: "Noto Sans", "Noto Sans TC", system-ui, sans-serif !important;
}

body.ui-body {
  /*Front - Main Content*/
  /*Select 2*/
}
body.ui-body.has-header-bg .header {
  /* background-color: rgba(0, 12, 39, 0.5); */
  background-color: #02122B;
}
body.ui-body main.ui-main {
  background-color: #efefef;
  padding-top: 65px;
  padding-bottom: 80px;
  color: #000;
  position: relative;
}
body.ui-body main.ui-main > * {
  z-index: 2;
  position: relative;
}
body.ui-body main.ui-main .bg-dec {
  position: absolute;
  z-index: 1;
}
body.ui-body main.ui-main .bg-dec-top {
  top: 0px;
  right: 0px;
  text-align: right;
}
body.ui-body main.ui-main .bg-dec-top img {
  width: 80%;
}
body.ui-body main.ui-main .bg-dec-bottom {
  bottom: 0px;
  left: 0px;
}
body.ui-body main.ui-main .bg-dec-bottom img {
  width: 100%;
}
body.ui-body h2 img, body.ui-body h3 img {
  display: inline;
  margin-right: 10px;
  vertical-align: middle;
  top: -2px;
  position: relative;
  height: 25px;
}
body.ui-body h2.flex {
  align-items: center;
  position: relative;
  flex-wrap: wrap;
}
body.ui-body h2.flex img {
  top: auto;
}
body.ui-body h2.flex .btn-tool {
  position: absolute;
  top: 0px;
  right: 0px;
}
body.ui-body h2.flex .btn-tool img {
  margin-right: 0px;
}
@media screen and (max-width: 767px) {
  body.ui-body h2.flex ul.list-tag {
    margin-top: 10px;
  }
}
body.ui-body h2.has-dec {
  position: relative;
  display: inline-block;
}
body.ui-body h2.has-dec::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -25px;
  display: block;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background-image: linear-gradient(-25deg, #01CFC8 0%, #2863D8 100%);
  z-index: -1;
}
body.ui-body h3 {
  font-size: 30px;
}
body.ui-body ul.list-styled, body.ui-body ol.list-styled {
  margin-left: 10px;
  padding-left: 10px;
}
body.ui-body ul.list-styled li, body.ui-body ol.list-styled li {
  margin-bottom: 5px;
}
body.ui-body ul.list-styled li::marker, body.ui-body ol.list-styled li::marker {
  vertical-align: top;
}
body.ui-body ul.list-styled {
  list-style: disc outside none !important;
}
body.ui-body ol.list-styled {
  list-style: decimal outside none !important;
}
body.ui-body a.link {
  text-decoration: none !important;
  color: #2863D8;
  display: inline;
}
body.ui-body a, body.ui-body button, body.ui-body .form-control {
  outline: none !important;
}
body.ui-body a:focus, body.ui-body a:active, body.ui-body button:focus, body.ui-body button:active, body.ui-body .form-control:focus, body.ui-body .form-control:active {
  outline: none !important;
}
body.ui-body input:not([type=submit]):not([type=checkbox]):not([type=radio]):not([type=file])::-webkit-input-placeholder, body.ui-body textarea::-webkit-input-placeholder {
  font-weight: 400 !important;
}
body.ui-body .dec-circle {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 3px solid #2863D8;
  position: absolute;
  top: 100px;
  left: -100px;
  z-index: -1;
  top: calc(50% - 250px);
}
body.ui-body .dec-circle::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background-image: linear-gradient(-25deg, #01CFC8 0%, #2863D8 100%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0.8;
  transform: scale(0.8);
}
body.ui-body .dec-circle.bottom-0 {
  top: auto;
  bottom: -200px !important;
}
body.ui-body .bg-dark {
  background-color: #081C4B !important;
}
body.ui-body .bg-grey {
  background: #aaa;
}
body.ui-body .bg-primary {
  background: #2863D8 !important;
}
body.ui-body .bg-success {
  background: #00B13D !important;
}
body.ui-body .bg-warning {
  background: #FAC73C !important;
}
body.ui-body .bg-secondary {
  background: #01CFC8 !important;
}
body.ui-body .bg-info {
  background: #01CFC8 !important;
}
body.ui-body .text-primary {
  color: #2863D8 !important;
}
body.ui-body .text-success {
  color: #00B13D !important;
}
body.ui-body .text-warning {
  color: #FAC73C !important;
}
body.ui-body .text-danger {
  color: #E83737 !important;
}
body.ui-body .text-grey {
  color: #919191 !important;
}
body.ui-body .text-orange {
  color: #FF610D !important;
}
body.ui-body .text-md {
  font-size: 16px;
}
body.ui-body .text-xs {
  font-size: 12px;
  color: #666;
}
@media screen and (max-width: 767px) {
  body.ui-body .text-xs {
    font-size: 12px;
  }
}
body.ui-body .tip {
  font-size: 12px;
  color: #666;
}
body.ui-body .pic {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  text-align: center;
}
body.ui-body .pic img {
  margin: auto;
  width: 100%;
}
body.ui-body .resource-text {
  font-size: 12px;
  margin-top: 10px;
}
body.ui-body .resource-text img {
  height: 18px;
}
body.ui-body .btn {
  font-size: 14px;
  padding: 5px 15px !important;
  height: 40px !important;
  line-height: 27px !important;
  min-width: 130px;
  font-weight: 600;
  box-shadow: none !important;
  transition: all ease-in-out 0.3s;
  border-width: 1px;
  position: relative;
  font-family: "Noto Sans", "Noto Sans TC", system-ui, sans-serif !important;
  border-radius: 5px;
}
body.ui-body .btn:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1) !important;
  transform: translateY(-5px);
}
body.ui-body .btn-sm {
  padding: 5px 15px !important;
  min-width: unset;
  font-size: 14px;
  height: 40px !important;
  line-height: 30px !important;
}
body.ui-body .btn-sm img, body.ui-body .btn-sm svg {
  height: 14px;
  width: auto;
}
body.ui-body .btn-primary {
  background: #2863D8;
  border-color: #2863D8;
}
body.ui-body .btn-primary, body.ui-body .btn-primary:focus, body.ui-body .btn-primary:active, body.ui-body .btn-primary:not(:disabled):not(.disabled):active, body.ui-body .btn-primary:not(:disabled):not(.disabled).active {
  color: #fff;
}
body.ui-body .btn-primary:hover {
  color: #2863D8 !important;
}
body.ui-body .btn-primary.disabled, body.ui-body .btn-primary:disabled {
  background: #2863D8;
}
body.ui-body .btn-secondary, body.ui-body .btn-info {
  background: #01CFC8;
  border-color: #01CFC8;
}
body.ui-body .btn-secondary, body.ui-body .btn-secondary:focus, body.ui-body .btn-secondary:active, body.ui-body .btn-secondary:not(:disabled):not(.disabled):active, body.ui-body .btn-secondary:not(:disabled):not(.disabled).active, body.ui-body .btn-info, body.ui-body .btn-info:focus, body.ui-body .btn-info:active, body.ui-body .btn-info:not(:disabled):not(.disabled):active, body.ui-body .btn-info:not(:disabled):not(.disabled).active {
  color: #fff;
}
body.ui-body .btn-secondary:hover, body.ui-body .btn-info:hover {
  color: #01CFC8 !important;
}
body.ui-body .btn-secondary.disabled, body.ui-body .btn-secondary:disabled, body.ui-body .btn-info.disabled, body.ui-body .btn-info:disabled {
  background: #01CFC8;
}
body.ui-body .btn-danger {
  background: #E83737;
  border-color: #E83737;
}
body.ui-body .btn-danger, body.ui-body .btn-danger:focus, body.ui-body .btn-danger:active, body.ui-body .btn-danger:not(:disabled):not(.disabled):active, body.ui-body .btn-danger:not(:disabled):not(.disabled).active {
  color: #fff;
}
body.ui-body .btn-danger:hover {
  color: #E83737 !important;
}
body.ui-body .btn-danger.disabled, body.ui-body .btn-danger:disabled {
  background: #E83737;
}
body.ui-body .btn-default {
  border: 1px solid #c3c3c3 !important;
  background: #fff;
  color: #000;
}
body.ui-body .btn-default:hover, body.ui-body .btn-default:focus, body.ui-body .btn-default:active, body.ui-body .btn-default:not(:disabled):not(.disabled):active {
  border-color: #c3c3c3;
  color: #000;
}
body.ui-body .btn-outline-primary {
  background-color: #fff;
  color: #2863D8;
  border-color: #2863D8;
}
body.ui-body .btn-outline-secondary, body.ui-body .btn-outline-info {
  background-color: #fff;
  color: #01CFC8;
  border-color: #01CFC8;
}
body.ui-body .btn-outline-danger {
  background-color: #fff;
  color: #E83737;
  border-color: #E83737;
}
body.ui-body .btn i, body.ui-body .btn img {
  margin-right: 5px;
  vertical-align: middle;
}
body.ui-body .btn img {
  height: 16px;
}
@media screen and (max-width: 767px) {
  body.ui-body .btn {
    font-size: 14px;
    height: 50px;
    line-height: 46px;
  }
  body.ui-body .btn-sm {
    height: 35px;
    line-height: 25px;
  }
}
body.ui-body .btn-group {
  display: flex;
}
body.ui-body .btn-group .btn {
  flex-grow: 1;
  border-radius: 0px;
  border: none !important;
  height: 50px !important;
}
body.ui-body .btn-group .btn-default {
  background: #efefef;
  color: #00226E !important;
}
body.ui-body .btn-group .btn:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
body.ui-body .btn-group .btn:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
body.ui-body .btn-upload {
  position: relative;
}
body.ui-body .btn-upload input {
  opacity: 0;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
body.ui-body .btn-upload .btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
}
body.ui-body .form-control {
  padding: 10px !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  max-width: unset;
  color: #212529 !important;
  border-color: #c3c3c3 !important;
  line-height: auto;
}
body.ui-body .form-control::-moz-placeholder {
  color: #999 !important;
  opacity: 1; /* Firefox */
  font-weight: 400 !important;
}
body.ui-body .form-control::placeholder {
  color: #999 !important;
  opacity: 1; /* Firefox */
  font-weight: 400 !important;
}
body.ui-body .form-control:focus {
  box-shadow: none;
  border-color: #005de0 !important;
}
body.ui-body input.form-control,
body.ui-body select.form-control {
  height: 40px;
}
body.ui-body select.form-control {
  background-image: url("../images/ic_angle.svg");
  background-size: 12px 6px;
  background-repeat: no-repeat;
  background-position: top 17px right 10px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0 30px 0 10px !important;
  width: 100%;
  display: block;
}
body.ui-body input[type=file].form-control {
  height: auto;
}
body.ui-body .form-check-custom,
body.ui-body .form-radio-custom {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0px;
  margin-right: 10px;
  font-size: 16px;
  margin-bottom: 10px;
}
body.ui-body .form-check-custom input,
body.ui-body .form-radio-custom input {
  opacity: 0;
  position: absolute;
  z-index: 2;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
body.ui-body .form-check-custom input:checked + .icon,
body.ui-body .form-radio-custom input:checked + .icon {
  background: #2863D8;
  border-color: #2863D8;
}
body.ui-body .form-check-custom input:checked + .icon::before,
body.ui-body .form-radio-custom input:checked + .icon::before {
  display: block;
}
body.ui-body .form-check-custom .icon,
body.ui-body .form-radio-custom .icon {
  width: 20px;
  height: 20px;
  background: #ffffff;
  border: 1px solid #c3c3c3;
  margin-right: 5px;
  position: relative;
  flex-shrink: 0;
}
body.ui-body .form-check-custom .icon::before,
body.ui-body .form-radio-custom .icon::before {
  position: absolute;
  content: "";
  display: none;
}
body.ui-body .form-check-custom .icon {
  border-radius: 2px;
}
body.ui-body .form-check-custom .icon::before {
  top: 4px;
  left: 4px;
  height: 6px;
  width: 10px;
  border-left: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: rotate(-45deg);
}
body.ui-body .form-radio-custom .icon {
  border-radius: 50%;
}
body.ui-body .form-radio-custom .icon::before {
  top: 5px;
  left: 5px;
  height: 8px;
  width: 8px;
  background: #fff;
  border-radius: 50%;
}
body.ui-body .form-group {
  margin-bottom: 15px;
}
body.ui-body .form-group label {
  color: #666;
  font-size: 14px;
  margin-bottom: 0px;
}
body.ui-body .form-group .text, body.ui-body .form-group .tip {
  margin-top: 5px;
  line-height: 1.4;
}
body.ui-body .form-group .text {
  color: #333;
  font-size: 16px;
}
body.ui-body .form-group.has-error label, body.ui-body .form-group.has-error .text {
  color: #E83737 !important;
}
body.ui-body .form-group.has-error .form-control {
  border-color: #E83737 !important;
}
@media screen and (max-width: 767px) {
  body.ui-body .form-group label {
    margin-bottom: 5px;
  }
  body.ui-body .form-group .form-control {
    padding: 10px;
  }
}
body.ui-body .form-inline {
  display: flex;
  flex-wrap: wrap;
}
body.ui-body .form-inline .form-check-custom, body.ui-body .form-inline .form-radio-custom {
  margin: 5px 15px 5px 0;
  justify-content: flex-start;
}
body.ui-body .form-inline .form-check-custom + .form-control, body.ui-body .form-inline .form-radio-custom + .form-control {
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  body.ui-body .form-inline .form-check-custom, body.ui-body .form-inline .form-radio-custom {
    width: calc(20% - 15px);
  }
}
@media screen and (max-width: 575px) {
  body.ui-body .form-inline .form-check-custom, body.ui-body .form-inline .form-radio-custom {
    width: 100%;
  }
}
body.ui-body .form-inline .form-group {
  display: flex;
  align-items: center;
}
body.ui-body .form-inline .form-group label {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  body.ui-body .form-inline .form-group {
    width: 100%;
  }
}
body.ui-body .input-group .btn {
  width: auto;
  min-width: unset;
  font-size: 14px;
}
body.ui-body .input-group .form-control {
  width: 1% !important;
  height: 40px;
  max-width: unset !important;
}
body.ui-body .select2-container .select2-search--inline .select2-search__field {
  height: 28px;
  margin-left: 10px;
  font-size: 13px;
  color: #999;
  font-weight: 400;
}
body.ui-body .select2-container .select2-results__option {
  font-size: 16px;
}
body.ui-body .select2-container .select2-selection--multiple {
  border-color: #c3c3c3 !important;
  background-image: url("../images/ic_angle.svg");
  background-size: 12px 6px;
  background-repeat: no-repeat;
  background-position: top 17px right 10px;
  padding-right: 40px;
}
body.ui-body .select2-container .select2-selection--multiple .select2-selection__choice {
  background: rgba(40, 99, 216, 0.1);
  border-color: rgba(40, 99, 216, 0.2);
  font-size: 16px;
}
body.ui-body .select2-container .select2-selection--multiple .select2-selection__choice .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 8px;
}
body.ui-body .select2-container .select2-selection--multiple .select2-selection__choice__remove {
  border-color: rgba(40, 99, 216, 0.2);
}
body.ui-body .select2-container.select2-container--focus .select2-selection--multiple {
  border-color: #005de0 !important;
}
body.ui-body hr {
  border-color: #d8d8d8;
}
body.ui-body .gap {
  margin: 0px 5px;
  color: rgba(0, 0, 0, 0.2);
}
body.ui-body .func-tool {
  margin: 40px 0;
  text-align: center;
}
body.ui-body .func-tool .btn {
  margin-bottom: 10px;
}
body.ui-body .func-tool .btn + .btn {
  margin-left: 10px;
}
body.ui-body .func-tool .btn-default {
  background: #fff;
}
body.ui-body .badge {
  border-radius: 15px;
  color: #fff;
}
body.ui-body .badge i {
  margin-right: 5px;
}
body.ui-body .badge-primary {
  background: #2863D8;
}
body.ui-body .alert {
  border-radius: 10px;
}
body.ui-body .alert ul li, body.ui-body .alert ol li {
  margin: 7px 0;
}
body.ui-body .alert .alert-heading i {
  margin-right: 5px;
}
body.ui-body .alert img, body.ui-body .alert svg {
  height: 16px;
  width: 16px;
}
body.ui-body .alert-primary svg.bi {
  vertical-align: -0.125em;
  fill: currentcolor;
}
body.ui-body .alert-info {
  background: rgba(1, 207, 200, 0.1);
  color: #01CFC8;
  border-color: rgba(1, 207, 200, 0.2);
}
body.ui-body .breadcrumb {
  padding: 15px 0;
  margin-bottom: 0px;
}
body.ui-body .breadcrumb .breadcrumb-item a {
  color: #2863D8;
}
body.ui-body .loading-ai {
  text-align: center;
  margin-bottom: 15px;
}
body.ui-body .loading-ai .icon {
  animation: ani-rotate 3s ease-in-out infinite;
}
body.ui-body .loading-ai .icon img {
  width: 100px;
}
body.ui-body .loading-ai .tip {
  margin-top: 5px;
}
body.ui-body .modal {
  z-index: 2200;
}
body.ui-body .modal .modal-dialog .modal-content {
  border-radius: 10px;
  overflow: hidden;
}
body.ui-body .modal .modal-dialog .modal-content .modal-header,
body.ui-body .modal .modal-dialog .modal-content .modal-footer {
  border-radius: 0px !important;
  padding: 10px 15px;
}
body.ui-body .modal .modal-dialog .modal-content .modal-header .modal-title {
  font-size: 18px;
}
body.ui-body .modal .modal-dialog .modal-content .modal-body {
  padding: 15px;
  font-size: 14px;
  color: #000;
}
body.ui-body .modal .modal-dialog.modal-fullscreen-dark .modal-content {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  border-radius: 0px;
}
body.ui-body .modal .modal-dialog.modal-fullscreen-dark .modal-content .btn-close {
  background-size: cover;
  margin: 0;
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 2;
  opacity: 1;
}
body.ui-body .modal .modal-dialog.modal-fullscreen-dark .modal-content .modal-body {
  display: flex;
  color: #fff;
  align-items: center;
}
body.ui-body .modal .modal-dialog.modal-fullscreen-dark .modal-content .modal-body .form-control {
  background: transparent;
  border: none;
  font-size: 25px !important;
  color: #fff !important;
  text-align: center;
  border-bottom: 2px solid #fff;
  border-radius: 0px;
  padding: 20px !important;
  height: auto;
}
body.ui-body .modal .modal-dialog.modal-fullscreen-dark .modal-content .modal-body input:not([type=submit]):not([type=checkbox]):not([type=radio]):not([type=file])::-webkit-input-placeholder, body.ui-body .modal .modal-dialog.modal-fullscreen-dark .modal-content .modal-body textarea::-webkit-input-placeholder {
  font-size: 25px;
}
body.ui-body ul.pagination {
  padding: 10px 0 20px 0;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}
body.ui-body ul.pagination li {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  line-height: 30px;
  text-align: center;
  margin: 5px;
  font-size: 12px;
  flex-shrink: 0;
}
body.ui-body ul.pagination li a {
  display: block;
  color: #00226E;
}
body.ui-body ul.pagination li:hover {
  background: rgba(0, 34, 110, 0.1);
}
body.ui-body ul.pagination li.active {
  background: #00226E;
}
body.ui-body ul.pagination li.active a {
  color: #fff;
}
body.ui-body .nav-tabs {
  border-bottom-color: #c3c3c3;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}
body.ui-body .nav-tabs button.nav-link {
  flex-basis: 0;
  flex-grow: 1;
  color: #919191;
  padding-top: 20px;
  padding-bottom: 20px;
  line-height: 1;
  border: none;
  border-radius: 0px;
  font-weight: 600;
}
body.ui-body .nav-tabs button.nav-link:hover {
  border: none;
}
body.ui-body .nav-tabs button.nav-link.active {
  background: #01CFC8;
  color: #fff;
}
body.ui-body .tab-content .tab-pane {
  padding-top: 20px;
}
body.ui-body table.table {
  table-layout: fixed;
}
body.ui-body table.table th, body.ui-body table.table td {
  padding: 10px;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  body.ui-body table.table th, body.ui-body table.table td {
    font-size: 14px;
  }
}
body.ui-body .w-80px {
  width: 80px !important;
}
body.ui-body .w-100px {
  width: 100px !important;
}
body.ui-body .w-120px {
  width: 120px !important;
}
body.ui-body .w-150px {
  width: 150px !important;
}
body.ui-body .card {
  border-radius: 10px;
  overflow: hidden;
}
body.ui-body .card .card-header {
  padding: 10px 15px;
  border-bottom: none;
}
body.ui-body .card .card-header .card-title {
  color: #fff;
  margin-bottom: 0px;
}
body.ui-body .card .card-body .form-group label {
  margin-bottom: 5px;
}
body.ui-body .card-product, body.ui-body .card-resource, body.ui-body .card-news, body.ui-body .card-search {
  transition: all ease-in-out 0.3s;
}
body.ui-body .card-product:hover, body.ui-body .card-resource:hover, body.ui-body .card-news:hover, body.ui-body .card-search:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
body.ui-body .card-chat {
  top: 80px;
}
body.ui-body .card-chat .card-body {
  max-height: 400px;
  overflow-y: auto;
}
body.ui-body .card-chat .card-footer {
  background: #f4f4f4;
}
@media screen and (max-width: 767px) {
  body.ui-body .card-chat {
    top: unset;
  }
}
body.ui-body .card-chat-float {
  top: unset;
  bottom: 0px;
  right: 20px;
  width: 400px;
  position: fixed;
  z-index: 1000;
  border: none;
  background: none;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
body.ui-body .card-chat-float a.btn-toggle i {
  transition: all ease-in-out 0.3s;
  color: #fff;
}
body.ui-body .card-chat-float .card-header {
  background: #3E4C72;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body.ui-body .card-chat-float .card-body {
  background: #fff;
}
@media screen and (max-width: 575px) {
  body.ui-body .card-chat-float {
    width: 100%;
    right: 0px;
  }
  body.ui-body .card-chat-float .card-body {
    max-height: 300px;
  }
}
body.ui-body .card-product {
  padding: 20px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  border: none;
  background: #fff;
  margin-bottom: 15px;
}
body.ui-body .card-product .card-body {
  padding: 0px;
}
body.ui-body .card-product .card-footer {
  border: none;
  align-self: flex-end;
  padding: 0px;
}
body.ui-body .card-product .alert {
  margin-top: 10px;
}
body.ui-body .card-product span.badge {
  width: -moz-fit-content;
  width: fit-content;
}
body.ui-body .card-product .title, body.ui-body .card-product .date {
  margin-top: 10px;
}
body.ui-body .card-product .title {
  font-size: 18px;
  font-weight: 700;
}
body.ui-body .card-product .date {
  color: #919191;
}
body.ui-body .card-product .form-check-custom {
  position: absolute;
  top: 20px;
  left: 20px;
}
@media screen and (max-width: 767px) {
  body.ui-body .card-product {
    flex-direction: column;
  }
}
body.ui-body .card-product-sm {
  flex-direction: column;
  padding: 15px;
}
body.ui-body .card-product-sm .pic {
  padding-bottom: 50%;
  width: calc(100% + 30px);
  margin: -15px -15px 0 -15px;
}
body.ui-body .card-product-sm .title, body.ui-body .card-product-sm .text {
  margin-top: 5px;
}
body.ui-body .card-product-sm .form-check-custom {
  top: 10px;
  left: 10px;
}
body.ui-body .card-product-sm .card-footer {
  padding: 0px;
}
body.ui-body .card-product-sm .card-footer .btn {
  margin-top: 15px;
}
body.ui-body .card-product-sm .card-footer .btn + .btn {
  margin-left: 10px;
}
body.ui-body .card-product-bundle {
  flex-direction: column;
  padding-top: 0px;
  padding-left: 50px;
  padding-bottom: 0px;
}
body.ui-body .card-product-bundle a.btn-link {
  margin-top: 15px;
  text-decoration: none;
}
body.ui-body .card-product-bundle .title {
  margin-top: 15px;
}
body.ui-body .card-product-bundle .card-product-sm {
  padding: 5px;
  box-shadow: none;
  border: 1px solid #efefef;
  margin-top: 20px;
  margin-bottom: 0px;
}
body.ui-body .card-product-bundle .card-product-sm .pic {
  padding-bottom: unset;
  height: 80px;
}
body.ui-body .card-product-bundle .card-product-sm .title, body.ui-body .card-product-bundle .card-product-sm .text {
  margin-top: 5px;
}
body.ui-body .card-product-bundle .card-product-sm .title {
  font-size: 12px;
  line-height: 1.4;
  height: 33px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
body.ui-body .card-product-bundle .card-product-sm:hover {
  transform: none;
}
body.ui-body .card-resource {
  padding: 20px;
  margin-bottom: 30px;
  background: #fff;
  transition: all ease-in-out 0.3s;
  color: #000;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
body.ui-body .card-resource a:hover {
  color: #000;
}
body.ui-body .card-resource .card-header {
  display: flex;
  justify-content: space-between;
  background: none;
  padding: 0px;
}
body.ui-body .card-resource .card-header .title {
  font-size: 20px;
  font-weight: 600;
}
body.ui-body .card-resource .card-header .date {
  font-size: 14px;
  color: #919191;
}
body.ui-body .card-resource .card-content {
  border-top: 1.5px solid #ddd;
  margin-top: 10px;
  padding-top: 10px;
  display: flex;
  align-items: center;
  font-size: 16px;
}
body.ui-body .card-resource .card-content .item {
  width: calc(33.3333333333% - 40px);
  display: flex;
  align-items: center;
}
body.ui-body .card-resource .card-content .item .title {
  flex-shrink: 0;
}
body.ui-body .card-resource .card-content span.text-orange {
  margin-left: auto;
}
@media screen and (max-width: 1200px) {
  body.ui-body .card-resource .card-content {
    flex-wrap: wrap;
  }
  body.ui-body .card-resource .card-content .item:first-child {
    width: 100%;
  }
  body.ui-body .card-resource .card-content .item:not(first-child) {
    width: calc(50% - 40px);
  }
}
@media screen and (max-width: 991px) {
  body.ui-body .card-resource .card-header, body.ui-body .card-resource .card-content {
    padding-left: 0px;
    flex-direction: column;
  }
  body.ui-body .card-resource .card-header .date {
    margin-top: 10px;
  }
  body.ui-body .card-resource .card-content .item {
    width: 100% !important;
    margin-bottom: 10px;
    flex-direction: column;
    align-items: flex-start;
  }
}
body.ui-body .card-news {
  border: none;
  background: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
body.ui-body .card-news .pic {
  padding-bottom: 50%;
  background-size: 120%;
  transition: all ease-in-out 0.3s;
}
body.ui-body .card-news .title {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  margin-top: 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 55px;
}
body.ui-body .card-news .con {
  padding: 20px;
}
body.ui-body .card-news .con .date, body.ui-body .card-news .con .link {
  font-size: 12px;
}
body.ui-body .card-news .con .date, body.ui-body .card-news .con .text {
  color: #919191;
}
body.ui-body .card-news .con .text {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: #000;
}
body.ui-body .card-news .con .text-overflow-2 {
  -webkit-line-clamp: 2;
}
body.ui-body .card-news .con ul.list-tag {
  margin-top: 5px;
}
body.ui-body .card-news .con ul.list-tag li {
  padding: 3px 5px;
  font-size: 10px;
}
body.ui-body .card-news .con .link {
  margin-top: 15px;
  color: #2863D8;
}
@media screen and (max-width: 767px) {
  body.ui-body .card-news .con {
    order: 2;
    padding: 15px;
  }
  body.ui-body .card-news .pic {
    order: 1;
    width: 100%;
  }
}
body.ui-body .card-news:hover .title {
  color: #2863D8;
}
body.ui-body .card-news:hover .pic {
  background-size: 130%;
}
body.ui-body .card-news-lg .pic, body.ui-body .card-news-md .pic {
  border-radius: 5px;
}
body.ui-body .card-news-lg, body.ui-body .card-news-sm {
  background: none;
  box-shadow: none;
  border-radius: 0px;
}
body.ui-body .card-news-lg:hover, body.ui-body .card-news-sm:hover {
  transform: none;
  box-shadow: none;
}
body.ui-body .card-news-lg .pic {
  padding-bottom: unset;
  border-radius: 0px;
  height: 220px;
  background-size: 100% !important;
}
body.ui-body .card-news-lg .title {
  margin-top: 10px;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  body.ui-body .card-news-lg {
    margin-bottom: 30px;
  }
}
body.ui-body .card-news-lg:hover .pic {
  background-size: 110% !important;
}
body.ui-body .card-news-md {
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
}
body.ui-body .card-news-md .inner {
  display: flex;
  align-items: flex-start;
}
body.ui-body .card-news-md .inner .con {
  padding: 0 15px 0 0;
  flex-grow: 1;
}
body.ui-body .card-news-md .inner .con .title {
  margin-top: 0px;
}
body.ui-body .card-news-md .inner .con .text {
  margin-top: 15px;
  -webkit-line-clamp: 1;
}
body.ui-body .card-news-md .inner .pic {
  width: 140px;
  height: 105px;
  padding-bottom: 0px;
  flex-shrink: 0;
  background-size: auto 130%;
}
@media screen and (max-width: 767px) {
  body.ui-body .card-news-md .inner .con {
    order: 2;
  }
  body.ui-body .card-news-md .inner .con .text {
    margin-top: 5px;
  }
  body.ui-body .card-news-md .inner .pic {
    order: 1;
    width: 120px;
    height: 90px;
    margin-right: 10px;
    margin-bottom: 10px;
  }
}
body.ui-body .card-news-md:hover .pic {
  background-size: auto 140%;
}
body.ui-body .card-news-sm {
  border-bottom: 1px solid #C3C3C3;
  padding: 30px 0;
}
body.ui-body .card-news-sm .title {
  border-left: 5px solid #0A3596;
  padding-left: 20px;
  margin-top: 0px;
}
body.ui-body .card-news-sm:first-child {
  padding-top: 0px;
}
body.ui-body .card-news-sm:last-child {
  border-bottom: none;
}
body.ui-body .card-avatar {
  box-shadow: none;
  background: none;
  text-align: center;
  margin-top: 20px;
  border: none;
}
body.ui-body .card-avatar .pic {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  border: 2px solid #01CFC8;
  margin: auto;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
}
body.ui-body .card-avatar .title {
  font-size: 22px;
  margin-top: 15px;
  font-weight: 700;
}
body.ui-body .card-avatar .text {
  font-size: 14px;
  margin-top: 10px;
  color: #295FD7;
}
body.ui-body .card-special {
  padding: 40px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-bottom: 30px;
  overflow: hidden;
  position: relative;
  transition: all ease-in-out 0.3s;
  border: none;
}
body.ui-body .card-special::before {
  content: "";
  display: block;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: -100px;
  right: -100px;
  opacity: 0;
  transition: all ease-in-out 0.3s;
}
body.ui-body .card-special h3, body.ui-body .card-special h4, body.ui-body .card-special .item {
  position: relative;
  z-index: 2;
}
body.ui-body .card-special h3 {
  font-size: 30px;
}
body.ui-body .card-special .row .col-4 > a {
  display: unset;
}
body.ui-body .card-special .item {
  margin-top: 15px;
}
body.ui-body .card-special .item .pic {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 110% 110%;
  width: 100%;
  padding-bottom: 100%;
  border-radius: 5px;
  transition: all ease-in-out 0.3s;
}
body.ui-body .card-special .item .title, body.ui-body .card-special .item .text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  color: #000;
}
body.ui-body .card-special .item .title {
  font-weight: 600;
  margin-top: 10px;
  font-size: 16px;
}
body.ui-body .card-special .item .text {
  -webkit-line-clamp: 2;
  height: 40px;
  line-height: 1.4;
}
body.ui-body .card-special .item:hover .pic {
  background-size: 120% 120%;
}
@media screen and (max-width: 991px) {
  body.ui-body .card-special {
    padding: 30px;
  }
}
@media screen and (max-width: 767px) {
  body.ui-body .card-special {
    padding: 30px 20px;
  }
}
body.ui-body .card-special:hover {
  background: linear-gradient(148deg, rgba(1, 207, 200, 0.7) 0%, #2863D8 100%);
}
body.ui-body .card-special:hover::before {
  opacity: 1;
  top: -50px;
  right: -50px;
}
body.ui-body .card-special:hover .item .title, body.ui-body .card-special:hover .item .text {
  color: #fff;
}
body.ui-body .card-benefit {
  background: none;
  text-align: center;
  padding: 0 15px;
  margin-bottom: 20px;
}
body.ui-body .card-benefit .pic img {
  width: 100px;
}
body.ui-body .card-benefit .title, body.ui-body .card-benefit .text {
  margin-top: 15px;
}
body.ui-body .card-benefit .title {
  font-size: 24px;
  color: #01CFC8;
  font-weight: 600;
  line-height: 1.4;
  height: 68px;
}
body.ui-body .card-benefit .text {
  color: #fff;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  body.ui-body .card-benefit .title {
    height: auto;
  }
}
body.ui-body .card-search {
  padding: 20px;
  margin-bottom: 15px;
}
body.ui-body .card-search .title {
  font-size: 18px;
  font-weight: 600;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
body.ui-body .card-search .text {
  font-size: 16px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
body.ui-body .card-search .pic {
  overflow: hidden;
}
body.ui-body .card-search .pic img {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
body.ui-body .card-search:hover .title {
  color: #2863D8;
}
body.ui-body .card-search:hover .text, body.ui-body .card-search:hover .resource-text {
  color: #000;
}
body.ui-body .card-search:hover .pic img {
  transform: translateY(-50%) scale(1.1);
}
body.ui-body .card-search-list .con {
  display: flex;
  margin-top: 10px;
  align-items: flex-start;
}
body.ui-body .card-search-list .con .pic {
  width: 30%;
  max-width: 160px;
  padding-bottom: 0px;
  height: 90px;
  margin-right: 10px;
  flex-shrink: 0;
}
body.ui-body .card-search-img .pic {
  height: 200px;
}
@media screen and (max-width: 575px) {
  body.ui-body .card-search-img .pic {
    height: 150px;
  }
}
body.ui-body .card-search-img .title, body.ui-body .card-search-img .text {
  margin-top: 10px;
}
body.ui-body .card-search-img .title {
  height: 60px;
}
body.ui-body .card-search-img .text {
  -webkit-line-clamp: 1;
}
body.ui-body .board {
  padding: 20px;
  background: #fff;
  border-radius: 5px;
}
body.ui-body .owl-carousel {
  position: relative;
}
body.ui-body .owl-carousel .owl-nav {
  font-size: 4rem;
  color: #666;
}
body.ui-body .owl-carousel .owl-nav > * {
  position: absolute;
  top: calc(50% - 25px);
  outline: none;
  background-color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}
@media screen and (max-width: 767px) {
  body.ui-body .owl-carousel .owl-nav > * {
    width: 40px;
    height: 40px;
    top: calc(50% - 20px);
  }
  body.ui-body .owl-carousel .owl-nav > * img {
    width: 8px;
  }
}
body.ui-body .owl-carousel .owl-nav .owl-prev {
  left: -20px;
}
@media screen and (max-width: 767px) {
  body.ui-body .owl-carousel .owl-nav .owl-prev {
    left: -15px;
  }
}
body.ui-body .owl-carousel .owl-nav .owl-next {
  right: -20px;
}
@media screen and (max-width: 767px) {
  body.ui-body .owl-carousel .owl-nav .owl-next {
    right: -15px;
  }
}
body.ui-body .owl-carousel .owl-nav.disabled {
  display: block;
}
body.ui-body .owl-carousel .owl-dots {
  text-align: center;
  margin: 20px 0;
}
body.ui-body .owl-carousel .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background: #ddd;
  margin-right: 10px;
  border-radius: 50%;
}
body.ui-body .owl-carousel .owl-dots .owl-dot.active {
  background: #919191;
}
body.ui-body .owl-carousel#owl_gallery .pic {
  padding-bottom: 75%;
}
body.ui-body .owl-carousel#owl_thumb {
  margin-top: 15px;
}
body.ui-body .owl-carousel#owl_thumb .pic {
  padding-bottom: 100%;
  cursor: pointer;
}
body.ui-body .owl-carousel#owl_thumb .owl-item {
  padding-right: 15px;
  opacity: 0.5;
}
body.ui-body .owl-carousel#owl_thumb .owl-item.current {
  opacity: 1;
}
body.ui-body .owl-carousel#owl_thumb .owl-nav {
  display: none;
}
body.ui-body .owl-carousel#owl_project .pic {
  padding-bottom: 50%;
}
body.ui-body .owl-carousel#owl_project .owl-nav > * {
  top: calc(50% - 40px);
}
body.ui-body .owl-carousel.owl-card .owl-stage-outer {
  padding: 20px 0;
}
body.ui-body .owl-carousel.owl-card .card {
  margin: 0 10px;
}
body.ui-body ul.list-item {
  font-size: 16px;
}
body.ui-body ul.list-item > li {
  margin-bottom: 15px;
  display: flex;
}
body.ui-body ul.list-item > li .title {
  width: 120px;
  flex-shrink: 0;
  color: #919191;
}
body.ui-body ul.list-item > li .text {
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  body.ui-body ul.list-item {
    font-size: 14px;
  }
  body.ui-body ul.list-item > li {
    flex-direction: column;
  }
  body.ui-body ul.list-item > li .text {
    margin-top: 5px;
  }
}
body.ui-body ul.list-file {
  margin-bottom: 15px;
}
body.ui-body ul.list-file li {
  border-radius: 5px;
  background: #E0EFFF;
  padding: 10px;
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-bottom: 10px;
}
body.ui-body ul.list-file li .icon {
  flex-shrink: 0;
  margin-right: 5px;
}
body.ui-body ul.list-file li .title {
  width: auto;
  display: flex;
  word-break: break-all;
  align-items: center;
  color: #333 !important;
}
body.ui-body ul.list-file li .btn-delete {
  display: inline-block;
  margin-left: 5px;
  width: 18px;
  height: 18px;
  line-height: 15px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  text-align: center;
  margin-left: auto;
  cursor: pointer;
  flex-shrink: 0;
}
body.ui-body ul.list-file li:hover .title {
  color: #2863D8 !important;
}
body.ui-body ul.list-file li:last-child {
  margin-bottom: 0px;
}
body.ui-body ul.list-file-pic {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
body.ui-body ul.list-file-pic li {
  width: calc(20% - 15px);
  margin-bottom: 0px;
  position: relative;
}
body.ui-body ul.list-file-pic li .pic {
  padding-bottom: 75%;
  width: 100%;
}
body.ui-body ul.list-file-pic li .btn-delete {
  position: absolute;
  top: -5px;
  right: -5px;
}
@media screen and (max-width: 767px) {
  body.ui-body ul.list-file-pic li {
    width: 100%;
  }
}
body.ui-body ul.list-tag {
  display: flex;
  flex-wrap: wrap;
}
body.ui-body ul.list-tag li {
  padding: 3px 10px;
  border: 1.5px solid #2863D8;
  color: #2863D8;
  border-radius: 5px;
  margin-top: 5px;
  font-size: 12px;
  flex-basis: fit;
  flex-shrink: 0;
  font-weight: 400;
  background: #fff;
}
body.ui-body ul.list-tag li + li {
  margin-left: 5px;
}
body.ui-body ul.list-tag-selectable li {
  border-radius: 30px;
  padding: 6px 10px;
  font-size: 14px;
  cursor: pointer;
  border-color: #ccc;
}
body.ui-body ul.list-tag-selectable li:hover, body.ui-body ul.list-tag-selectable li.active {
  background: rgba(40, 99, 216, 0.1);
  border-color: #2863D8;
}
body.ui-body ul.list-tag-selectable li.active {
  color: #2863D8;
}
body.ui-body ul.list-tag-selectable li.active::after {
  content: "x";
  display: inline-block;
  margin-left: 5px;
  width: 18px;
  height: 18px;
  line-height: 15px;
  border-radius: 50%;
  background: rgba(40, 99, 216, 0.9);
  color: #fff;
  text-align: center;
}
body.ui-body ul.list-spec {
  font-size: 16px;
}
body.ui-body ul.list-spec li {
  display: flex;
  margin-bottom: 30px;
}
body.ui-body ul.list-spec li .title {
  width: 180px;
  padding-right: 30px;
  color: #919191;
  flex-shrink: 0;
  text-align: right;
}
body.ui-body ul.list-spec li:last-child {
  margin-bottom: 0px;
}
@media screen and (max-width: 767px) {
  body.ui-body ul.list-spec li {
    flex-direction: column;
    margin-bottom: 15px;
  }
  body.ui-body ul.list-spec li .title {
    text-align: left;
    width: 100%;
    padding-right: 0px;
  }
  body.ui-body ul.list-spec li .text {
    margin-top: 5px;
  }
}
body.ui-body ul.list-chat > li {
  display: flex;
  margin-bottom: 10px;
  gap: 10px;
}
body.ui-body ul.list-chat > li.chat-time {
  gap: 0px;
  padding: 5px 10px;
  background: #f4f4f4;
  border-radius: 30px;
  width: -moz-min-content;
  width: min-content;
  font-size: 12px;
  margin: 0 auto 10px auto;
  color: #919191;
}
body.ui-body ul.list-chat > li .avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  flex-shrink: 0;
}
body.ui-body ul.list-chat > li .con {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
body.ui-body ul.list-chat > li .con .title, body.ui-body ul.list-chat > li .con .text {
  font-size: 14px;
}
body.ui-body ul.list-chat > li .con .title {
  font-weight: 700;
}
body.ui-body ul.list-chat > li .con .text {
  padding: 10px 15px;
  background: #efefef;
  border-radius: 0px 10px 10px 10px;
  align-self: flex-start;
}
body.ui-body ul.list-chat > li .con .date {
  font-size: 12px;
  margin-top: 5px;
  color: #bbb;
}
body.ui-body ul.list-chat > li.user {
  justify-content: flex-end;
}
body.ui-body ul.list-chat > li.user .avatar {
  order: 2;
}
body.ui-body ul.list-chat > li.user .con .title, body.ui-body ul.list-chat > li.user .con .date {
  text-align: right;
}
body.ui-body ul.list-chat > li.user .con .text {
  background: #E0EFFF;
  border-radius: 10px 0px 10px 10px;
  margin-left: auto;
}
body.ui-body ul.step {
  display: flex;
  margin: 20px 0;
  justify-content: center;
}
body.ui-body ul.step li {
  text-align: center;
  flex-basis: 50%;
  position: relative;
}
body.ui-body ul.step li .icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: auto;
  background: #eee;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
body.ui-body ul.step li .title {
  font-size: 16px;
  font-weight: 700;
  margin-top: 10px;
}
body.ui-body ul.step li .text {
  font-size: 12px;
  color: #666;
}
body.ui-body ul.step li.active .icon {
  background: #01CFC8;
}
body.ui-body ul.step li.active .icon svg path {
  stroke: #fff;
}
body.ui-body ul.step li::after {
  content: "";
  border-bottom: 5px solid rgba(1, 207, 200, 0.5);
  display: block;
  width: 100%;
  position: absolute;
  top: 60px;
  left: 50%;
  z-index: -1;
}
body.ui-body ul.step li:last-child {
  padding-right: 0px;
}
body.ui-body ul.step li:last-child::after {
  display: none;
}
@media screen and (max-width: 767px) {
  body.ui-body ul.step li .icon {
    width: 80px;
    height: 80px;
  }
  body.ui-body ul.step li .icon svg {
    width: 30px;
  }
  body.ui-body ul.step li .title {
    font-size: 14px;
  }
  body.ui-body ul.step li::after {
    top: 40px;
  }
}
body.ui-body .quote {
  padding: 40px 60px;
  background: #fff;
  border-radius: 10px;
  position: relative;
  margin-top: 50px;
}
body.ui-body .quote .text {
  margin-top: 10px;
}
body.ui-body .quote .text a:hover {
  color: #2863D8;
}
body.ui-body .quote .author {
  display: flex;
  align-items: center;
}
body.ui-body .quote .author .pic {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  flex-shrink: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border: 2px solid #eee;
}
body.ui-body .quote .author .con {
  padding-left: 15px;
  line-height: 1.4;
}
body.ui-body .quote .author .con .job-title {
  color: #919191;
  font-size: 14px;
  margin-top: 5px;
}
body.ui-body .quote::before, body.ui-body .quote::after {
  position: absolute;
  width: 48px;
  height: 40px;
  display: block;
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/ic_quote.svg");
}
body.ui-body .quote::before {
  top: -20px;
  left: 60px;
}
body.ui-body .quote::after {
  transform: rotate(180deg);
  bottom: -20px;
  right: 60px;
}
@media screen and (max-width: 767px) {
  body.ui-body .quote {
    padding: 40px;
  }
  body.ui-body .quote::before {
    left: 40px;
  }
  body.ui-body .quote::after {
    right: 40px;
  }
}
body.ui-body .section-title {
  max-width: unset;
  margin-top: 5px !important;
  margin-bottom: 30px !important;
}
body.ui-body .section-title .title {
  font-size: 30px;
  text-align: left !important;
  color: #00226E;
  line-height: 1;
}
body.ui-body .product-title h2 {
  font-size: 20px;
}
body.ui-body .product-title span.text-grey {
  font-size: 14px;
  font-weight: 400;
}
body.ui-body .product-title .price, body.ui-body .product-title .num {
  font-weight: 700;
  display: flex;
  align-items: center;
}
body.ui-body .product-title .price span.text-grey, body.ui-body .product-title .num span.text-grey {
  margin-left: 10px;
}
body.ui-body .product-title .price {
  font-size: 26px;
  margin-top: 40px;
}
body.ui-body .product-title .num {
  font-size: 20px;
  margin-top: 5px;
  margin-bottom: 50px;
}
body.ui-body .product-title ul.list-spec {
  margin-top: 10px;
}
body.ui-body .product-title ul.list-spec li {
  justify-content: space-between;
  margin-bottom: 5px;
  font-size: 14px;
}
body.ui-body .product-title ul.list-spec li .title {
  text-align: left;
  width: auto;
}
@media screen and (max-width: 767px) {
  body.ui-body .product-title {
    margin-top: 20px;
  }
}
body.ui-body .product-con {
  font-size: 16px;
  overflow: hidden;
}
body.ui-body .product-con .nav-tabs {
  margin: -20px -20px 0 -20px;
}
body.ui-body .product-con h3 {
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 16px;
}
body.ui-body .product-con p {
  line-height: 2;
  margin-bottom: 5px;
}
body.ui-body .apply-con {
  position: sticky;
  top: 90px;
}
body.ui-body .apply-con h3 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 18px;
}
body.ui-body .apply-con .form-group {
  font-size: 14px;
  margin-right: 0px;
  margin-bottom: 15px;
}
body.ui-body .apply-con .form-group label {
  color: #919191;
}
body.ui-body .apply-con .form-group .form-control {
  margin-top: 5px;
}
body.ui-body .apply-con .form-inline {
  flex-direction: column;
}
body.ui-body .apply-con .form-inline .form-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
body.ui-body .apply-con .form-inline .form-group label {
  width: 40%;
}
body.ui-body .apply-con .btn-primary {
  display: block;
  margin: auto;
}
body.ui-body .apply-con .btn-group {
  margin-top: 15px;
}
body.ui-body .apply-con .btn-group .btn {
  height: 50px;
}
body.ui-body .apply-con .btn-upload {
  width: 130px;
  margin: auto;
}
@media screen and (max-width: 991px) {
  body.ui-body .apply-con {
    margin-top: 20px;
  }
  body.ui-body .apply-con .form-inline .form-group {
    flex-direction: column;
    gap: 0px;
  }
  body.ui-body .apply-con .form-inline .form-group label {
    width: 100%;
  }
  body.ui-body .apply-con .btn-group {
    flex-direction: column;
  }
  body.ui-body .apply-con .btn-group .btn {
    border-radius: 5px !important;
  }
  body.ui-body .apply-con .btn-group .btn + .btn {
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  body.ui-body .apply-con .form-inline .form-group label {
    width: 100%;
  }
}
body.ui-body .article-con {
  line-height: 2;
  font-size: 16px;
}
body.ui-body .article-con h3 {
  font-size: 20px;
}
body.ui-body .article-con .pic {
  margin: 40px 0;
}
body.ui-body .article-con .pic img {
  width: 800px;
}
body.ui-body .search-con .nav-tabs button.nav-link {
  flex-grow: 0;
  min-width: 150px;
}
body.ui-body .ad {
  margin: 20px 0 40px 0;
  text-align: center;
}
body.ui-body .ad img {
  width: 100%;
}
body.ui-body section.mainview {
  padding: 120px 20px 60px 20px;
  margin-top: -66px;
  margin-bottom: 60px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
body.ui-body section.mainview h2, body.ui-body section.mainview h3 {
  color: #fff;
}
body.ui-body section.mainview h2 {
  font-size: 40px;
}
@media screen and (max-width: 1200px) {
  body.ui-body section.mainview h2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  body.ui-body section.mainview h2 {
    font-size: 36px;
  }
}
body.ui-body section.mainview .breadcrumb {
  justify-content: center;
  padding-top: 0px;
}
body.ui-body section.mainview .breadcrumb .breadcrumb-item a {
  color: #fff;
}
body.ui-body section.mainview .breadcrumb .breadcrumb-item a:hover {
  color: #01CFC8;
}
body.ui-body section.mainview .breadcrumb .breadcrumb-item.active {
  color: #fff;
}
body.ui-body section.mainview .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}
body.ui-body section.mainview .board {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}
body.ui-body section.mainview .board h3 {
  margin-bottom: 20px;
}
body.ui-body section.mainview .board .card-news {
  padding: 15px;
  margin-bottom: 15px;
}
body.ui-body section.mainview .board .card-news .pic {
  margin-right: 10px;
  width: 80px;
  height: 60px;
}
body.ui-body section.mainview .board .card-news .con .title {
  color: #000;
}
body.ui-body section.mainview .board .card-news .con .text {
  margin-top: 5px;
  -webkit-line-clamp: 2;
}
body.ui-body section.mainview .board .card-news:last-child {
  margin-bottom: 0px;
}
@media screen and (max-width: 767px) {
  body.ui-body section.mainview .board .card-news .con .title {
    font-size: 16px;
  }
  body.ui-body section.mainview .board .card-news .pic {
    width: 160px;
    height: 120px;
  }
}
body.ui-body section.mainview-lg {
  min-height: 500px;
  display: flex;
  align-items: center;
}
body.ui-body section.mainview-lg h2 {
  font-size: 60px;
}
body.ui-body section.mainview-lg .robot-area {
  margin-top: 20px;
}
body.ui-body section.mainview-lg .robot-area .robot-chat {
  flex-grow: 1;
}
body.ui-body section.mainview-lg .robot-area .robot-chat ul.list-chat > li .con .text {
  font-size: 16px;
}
@media screen and (max-width: 1200px) {
  body.ui-body section.mainview-lg h2 {
    font-size: 40px;
  }
  body.ui-body section.mainview-lg h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  body.ui-body section.mainview-lg {
    min-height: 350px;
  }
  body.ui-body section.mainview-lg h2 {
    font-size: 36px;
  }
  body.ui-body section.mainview-lg h3 {
    font-size: 20px;
  }
  body.ui-body section.mainview-lg .board {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  body.ui-body section.mainview {
    margin-bottom: 40px;
  }
}
body.ui-body .bg-dark {
  padding: 60px 0 0 0;
  background-size: 100% auto;
  background-position: bottom center;
  background-repeat: no-repeat;
}
body.ui-body .bg-dark h2, body.ui-body .bg-dark h3, body.ui-body .bg-dark h4 {
  color: #fff;
  line-height: 2;
}
body.ui-body .bg-dark .form-group label {
  color: #fff;
}
body.ui-body .bg-dark .breadcrumb .breadcrumb-item a {
  color: #fff;
}
body.ui-body .bg-dark .breadcrumb .breadcrumb-item a:hover {
  color: #01CFC8;
}
body.ui-body .bg-dark .breadcrumb .breadcrumb-item.active {
  color: #fff;
}
body.ui-body .bg-dark .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}
body.ui-body .bg-dark ul.pagination li a {
  color: #fff;
}
body.ui-body .bg-dark ul.pagination li:hover {
  background: rgba(255, 255, 255, 0.1);
}
body.ui-body .bg-dark ul.pagination li.active {
  background: #fff;
}
body.ui-body .bg-dark ul.pagination li.active a {
  color: #00226E;
}
body.ui-body .bg-dark .article-con {
  color: #fff;
}
body.ui-body .form-inline.resource-filter {
  margin: 40px 0 60px 0;
}
body.ui-body .form-inline.resource-filter .form-group {
  width: calc(45% - 100px);
}
body.ui-body .form-inline.resource-filter .form-group label {
  flex-shrink: 0;
  font-size: 18px;
  margin-right: 20px;
}
body.ui-body .form-inline.resource-filter .form-group .form-control {
  flex-grow: 1;
}
body.ui-body .form-inline.resource-filter .form-group + .form-group {
  margin-left: 40px;
}
body.ui-body .form-inline.resource-filter .btn {
  margin-left: auto;
  min-width: 160px;
  font-size: 16px;
}
@media screen and (max-width: 991px) {
  body.ui-body .form-inline.resource-filter {
    align-items: center;
  }
  body.ui-body .form-inline.resource-filter .form-group {
    flex-direction: column;
    align-items: flex-start;
  }
  body.ui-body .form-inline.resource-filter .form-group label {
    margin-right: 0px;
    margin-bottom: 5px;
  }
  body.ui-body .form-inline.resource-filter .form-group + .form-group {
    margin-left: 20px;
  }
  body.ui-body .form-inline.resource-filter .btn {
    margin-top: 5px;
  }
}
@media screen and (max-width: 767px) {
  body.ui-body .form-inline.resource-filter {
    flex-direction: column;
  }
  body.ui-body .form-inline.resource-filter .form-group {
    flex-direction: column;
    width: 100%;
  }
  body.ui-body .form-inline.resource-filter .form-group label {
    font-size: 14px;
    width: 100%;
  }
  body.ui-body .form-inline.resource-filter .form-group .form-control {
    width: 100% !important;
  }
  body.ui-body .form-inline.resource-filter .form-group + .form-group {
    margin-left: 0px;
  }
  body.ui-body .form-inline.resource-filter .btn {
    margin: auto;
  }
}
body.ui-body .resource-con {
  margin-top: 20px;
}
body.ui-body .resource-con ul.list-item {
  margin-bottom: 20px;
  position: sticky;
  top: 90px;
}
body.ui-body .resource-con ul.list-item > li {
  margin-bottom: 5px;
  border-radius: 5px;
  background: #193574;
  padding: 15px;
}
body.ui-body .resource-con ul.list-item > li .title, body.ui-body .resource-con ul.list-item > li .text {
  color: #fff;
}
body.ui-body .resource-con ul.list-item > li a.link {
  color: #01CFC8;
}
body.ui-body .resource-con .apply-con {
  background: #193574;
  margin-top: 40px;
  font-size: 16px;
  position: static;
  top: auto;
}
body.ui-body .resource-con .apply-con h3 {
  text-align: left;
}
body.ui-body .resource-con .apply-con .form-inline {
  flex-direction: row;
}
body.ui-body .resource-con .apply-con .form-radio-custom,
body.ui-body .resource-con .apply-con .form-check-custom {
  color: #fff;
}
body.ui-body .resource-con .apply-con a.link {
  margin: 0px 5px;
  color: #fff;
  text-decoration: underline !important;
}
body.ui-body .resource-con .apply-con a.link:hover {
  color: #01CFC8;
}
body.ui-body a.fixed-bot {
  display: block;
  border: 2px solid #01CFC8;
  box-shadow: 0 0 15px rgba(1, 207, 200, 0.2);
  width: 65px;
  height: 65px;
  border-radius: 50%;
  margin-bottom: 10px;
  position: fixed;
  bottom: 100px;
  right: 40px;
  z-index: 999;
  transition: all ease-in-out 0.3s;
}
body.ui-body a.fixed-bot img {
  width: 100%;
}
body.ui-body a.fixed-bot:hover {
  transform: scale(1.1);
}
body.ui-body section.area-news {
  margin-bottom: 40px;
}
body.ui-body section.area-news h3 {
  color: #00226E;
  margin-bottom: 20px;
}
body.ui-body section.area-news h3.d-flex {
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}
body.ui-body section.area-news h3.d-flex .list-tag {
  margin-left: 10px;
}
body.ui-body section.area-news h3.d-flex a.btn-tool {
  position: absolute;
  top: 10px;
  right: 0px;
}
body.ui-body section.area-subscribe {
  padding: 120px 0;
  margin-top: 40px;
  margin-bottom: -80px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
body.ui-body section.area-subscribe .text {
  font-size: 16px;
}
body.ui-body section.area-subscribe .btn {
  margin-top: 20px;
}
body.ui-body section.area-subscribe.bg-white {
  background-color: rgba(255, 255, 255, 0.6) !important;
}
body.ui-body section.area-promote {
  padding: 150px 20px;
  margin-top: 40px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
  color: #fff;
}
body.ui-body section.area-promote .dec-circle {
  top: 50%;
}
body.ui-body section.area-promote h2 {
  color: #fff;
  font-size: 40px;
}
body.ui-body section.area-promote .text {
  font-size: 16px;
}
body.ui-body section.area-promote .btn {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  body.ui-body section.area-promote {
    padding: 100px 20px;
  }
  body.ui-body section.area-promote h2 {
    font-size: 36px;
  }
}
body.ui-body section.area-benefit {
  padding: 60px 0;
  background: #000C27;
  margin-bottom: 40px;
}
body.ui-body .robot-area {
  display: flex;
  align-items: flex-start;
}
body.ui-body .robot-area .robot-chat,
body.ui-body .robot-area .robot-news {
  border-radius: 10px;
  text-align: left;
  position: relative;
  line-height: 1.4;
  width: 50%;
}
body.ui-body .robot-area .robot-chat {
  background: #fff;
  padding: 15px;
  color: #000;
  z-index: 2;
  border-bottom-right-radius: 0px;
}
body.ui-body .robot-area .robot-chat::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 15px solid #efefef;
  border-right: 40px solid transparent;
  position: absolute;
  bottom: -15px;
  right: 0px;
}
body.ui-body .robot-area .robot-chat ul.list-chat {
  height: 200px;
  overflow-y: auto;
}
body.ui-body .robot-area .robot-chat ul.list-chat > li .avatar {
  width: 50px;
  height: 50px;
}
body.ui-body .robot-area .robot-chat ul.list-chat > li.client .text {
  background: none;
  padding: 0px;
}
body.ui-body .robot-area .robot-chat ul.list-chat > li.client .text img {
  position: relative;
  top: -1px;
}
body.ui-body .robot-area .robot-chat ul.list-chat > li.user .text {
  background: rgba(1, 207, 200, 0.1);
}
body.ui-body .robot-area .robot-chat ul.list-chat .list-styled {
  margin-top: 10px;
}
body.ui-body .robot-area .robot-chat .input-group {
  background: #efefef;
  margin: 0 -15px -15px -15px;
  width: calc(100% + 30px);
  padding: 10px;
  border-bottom-left-radius: 10px;
}
body.ui-body .robot-area .robot-chat .input-group .btn {
  height: 40px;
  line-height: 35px;
}
body.ui-body .robot-area .robot-news {
  padding: 20px 20px 20px 60px;
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(0, 0, 0, 0.3));
  box-shadow: 15px 15px 0px rgba(255, 255, 255, 0.1);
  margin-left: -40px;
  margin-top: 20px;
  z-index: 1;
  border-bottom-left-radius: 0px;
}
body.ui-body .robot-area .robot-news .title {
  font-weight: 700;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body.ui-body .robot-area .robot-news .title a {
  font-size: 14px;
  font-weight: 400;
}
body.ui-body .robot-area .robot-news .title a img {
  margin-right: 5px;
  position: relative;
  top: -1px;
}
body.ui-body .robot-area .robot-news .title a:hover {
  color: #fff;
}
body.ui-body .robot-area .robot-news .con {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}
body.ui-body .robot-area .robot-news .con .pic, body.ui-body .robot-area .robot-news .con .text {
  height: 190px;
}
body.ui-body .robot-area .robot-news .con .pic {
  flex-shrink: 0;
  width: 130px;
  border-radius: 10px;
}
body.ui-body .robot-area .robot-news .con .text {
  font-size: 14px;
  overflow-y: auto;
  line-height: 1.6;
}
body.ui-body .robot-area .robot-news.loading::after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: 10px;
  animation: fadeInOut 1.5s ease-in-out infinite;
}
@media screen and (max-width: 767px) {
  body.ui-body .robot-area {
    flex-direction: column;
  }
  body.ui-body .robot-area .robot-chat,
  body.ui-body .robot-area .robot-news {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
  }
  body.ui-body .robot-area .robot-chat::after {
    display: none;
  }
  body.ui-body .robot-area .robot-news {
    padding-left: 20px;
    margin-left: 0px;
    margin-top: 20px;
  }
  body.ui-body .robot-area .robot-news .con .pic, body.ui-body .robot-area .robot-news .con .text {
    height: 120px;
  }
}
@media screen and (max-width: 575px) {
  body.ui-body .robot-area .robot-chat ul.list-chat {
    height: 150px;
  }
  body.ui-body .robot-area .robot-news .con .pic, body.ui-body .robot-area .robot-news .con .text {
    height: 80px;
  }
  body.ui-body .robot-area .robot-news .con .pic {
    width: 100px;
  }
}
body.ui-body .table tr td .btn-sm,
body.ui-body .card-product-sm .btn-sm {
  height: 35px !important;
  line-height: 20px !important;
  padding: 5px 10px !important;
}/*# sourceMappingURL=custom.css.map */