/*
	Theme Name: BOT Treasury
	Version: 1.0.0
    Author: FourierLab Inc.
*/
/*
TABLE OF CONTENTS:
1 - Global Defaults
2 - Layouts
  2.1 - Header / Navbar
  2.2 - Content Area
  2.3 - Footer
  2.4 - Responsive Settings
---------------------------
*/
/* Global Defaults
================================================== */
html {
  box-sizing: border-box;
}
body {
  font-family: '微軟正黑體', 'Microsoft Yahei', '微软雅黑', STXihei, '华文细黑', sans-serif;
  -webkit-text-size-adjust: none;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body, input, textarea, select, button {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "liga", "kern";
  -moz-font-feature-settings: "liga", "kern";
  font-feature-settings: "liga", "kern";
  -webkit-font-kerning: normal;
  -moz-font-kerning: normal;
  font-kerning: normal;
}
a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: 0;
  transition: all 0.2s;
}
a:hover {
  color: inherit;
}
button:focus, a:focus, a:active {
  outline: 0;
}
p {
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
small {
  font-size: 85%;
  font-weight: inherit;
}
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5rem;
}
sub {
  bottom: -0.25rem;
}
button, input, label {
  font-family: '微軟正黑體', 'Microsoft Yahei', '微软雅黑', STXihei, '华文细黑', sans-serif;
}
img {
  image-rendering: -webkit-optimize-contrast;
}
::-webkit-input-placeholder {
  color: #898989;
}
::-moz-placeholder {
  color: #898989;
}
:-ms-input-placeholder {
  color: #898989;
}
input:-moz-placeholder {
  color: #898989;
}
::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}
::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
.no-padding {
  padding: 0;
}
.no-margin {
  margin: 0;
}
.no-bankground {
  background: none;
}
.no-border {
  border: none;
}
.no-shadow {
  box-shadow: none;
}
.no-radius {
  border-radius: 0;
}
.inline {
  display: inline !important;
}
.block {
  display: block !important;
}
.hide {
  display: none !important;
}
.object-center {
  margin: 0 auto 0;
}
.alignleft {
  float: left;
}
.alignright {
  float: right;
}
.text-bold {
  font-weight: bold;
}
.text-normal {
  font-weight: normal;
}
.text-black {
  color: #000;
}
.text-white {
  color: #fff;
}
.bg-grey {
  background-color: #f4f4f4;
}
.bg-image {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
/* Layouts
================================================== */
html, body {
  padding: 0;
  margin: 0;
}
body {
  color: #141a26;
  background-color: #f4f4f4;
  font-size: 1rem;
  font-weight: normal;
  position: relative;
  overflow-x: hidden;
}
body::before {
  width: 230px;
  height: 100%;
  content: '';
  background: rgb(255, 255, 255);
  position: absolute;
  left: 0;
  top: 0;
}
h1, h2, h3, h4, h5, h6 {
  color: #9a0036;
  font-weight: bold;
}
h1 {
  font-size: 1.75rem;
}
h2 {
  font-size: 1.5rem;
}
h3 {
  font-size: 1.4rem;
}
h4 {
  font-size: 1.3rem;
}
h5 {
  font-size: 1.2rem;
}
h6 {
  font-size: 1.1rem;
}
p {
  font-size: 1rem;
}
a {
  color: #864a89;
}
a:hover {
  color: #591a4a;
}
/******* Buttons ********/
.btn {
  font-size: 0.975rem;
  font-weight: bold;
  margin: 5px;
  white-space: nowrap;
  text-decoration: none;
  border-radius: 0.5rem;
}
.btn.disabled, .btn[disabled] {
  cursor: not-allowed;
}
.btn-lg, .btn-group-lg > .btn {
  padding: 0.525rem 1.725rem;
  font-size: 1.075rem;
}
.btn-sm, .btn-group-sm > .btn {
  font-size: 0.925rem;
}
.btn:first-child {
  margin-left: 0;
}
.btn:last-child {
  margin-right: 0;
}
.btn-primary, .btn-danger {
  color: #fff;
  background-color: #9a0036;
  border-color: #9a0036;
}
.btn-primary:hover, .btn-danger:hover {
  color: #fff;
  background-color: #d93657;
  border-color: #d93657;
}
.btn-primary:focus, .btn-primary.focus, .btn-danger:focus, .btn-danger.focus {
  color: #fff;
  background-color: #d93657;
  border-color: #9a0036;
  box-shadow: 0 0 0 0.2rem rgba(154, 0, 54, 0.25);
}
.btn-primary.disabled, .btn-primary:disabled, .btn-danger.disabled, .btn-danger:disabled {
  color: #fff;
  background-color: #999;
  border-color: #999;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle, .btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #591a4a;
  border-color: #580730;
}
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus, .btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(176, 15, 97, 0.5);
}
.btn-secondary {
  color: #fff;
  background-color: #4d4d4d;
  border-color: #4d4d4d;
}
.btn-secondary:hover {
  color: #fff;
  background-color: #888;
  border-color: #888;
}
.btn-secondary:focus, .btn-secondary.focus {
  color: #fff;
  background-color: #888;
  border-color: #4d4d4d;
  box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.15);
}
.btn > [class*=fa-] {
  opacity: 0.5;
  margin-right: 0.15rem;
}
/******* Grids ********/
.smallest-gutters {
  margin-right: -5px;
  margin-left: -5px
}
.smallest-gutters > .col, .smallest-gutters > [class*=col-] {
  padding-right: 5px;
  padding-left: 5px
}
.smaller-gutters {
  margin-right: -10px;
  margin-left: -10px
}
.smaller-gutters > .col, .smaller-gutters > [class*=col-] {
  padding-right: 10px;
  padding-left: 10px
}
.small-gutters {
  margin-right: -15px;
  margin-left: -15px
}
.small-gutters > .col, .small-gutters > [class*=col-] {
  padding-right: 15px;
  padding-left: 15px
}
.medium-gutters {
  margin-right: -30px;
  margin-left: -30px
}
.medium-gutters > .col, .medium-gutters > [class*=col-] {
  padding-right: 30px;
  padding-left: 30px
}
.large-gutters {
  margin-right: -45px;
  margin-left: -45px
}
.large-gutters > .col, .large-gutters > [class*=col-] {
  padding-right: 45px;
  padding-left: 45px
}
.col-md-25, .col-md-35, .col-md-55, .col-md-75 {
  position: relative;
}
.col-md-25 {
  -ms-flex: 0 0 23%;
  flex: 0 0 23%;
  max-width: 23%;
}
.col-md-35 {
  -ms-flex: 0 0 27%;
  flex: 0 0 27%;
  max-width: 27%;
}
.col-md-55 {
  -ms-flex: 0 0 55%;
  flex: 0 0 55%;
  max-width: 55%;
}
.col-md-75 {
  -ms-flex: 0 0 77%;
  flex: 0 0 77%;
  max-width: 77%;
}
.offset-25 {
  margin-left: 23%;
}
.pre-follow::before {
  display: block;
  position: absolute;
  content: 'to';
  left: -0.425rem;
  top: 50%;
  transform: translateY(-50%);
}
.pre-follow:lang(zh-hant)::before {
  content: '至';
}
/******* No Javascript ********/
.no-js .page-layout {
  display: none;
}
.no-js body {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 999999999;
  top: 0;
  color: #000;
  font-size: 16px;
  padding: 24px;
  background: #fff;
}
.no-js body:after {
  content: "您的瀏覽器不支援Javascript, 本網站需要Javasctip才能正常瀏覽, 請使用可執行Javascript的瀏覽器！"
}
/******* Mobile Toggle ********/
.mobile-toggle {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  height: 56px;
  width: 56px;
  line-height: 56px;
  text-align: center;
  margin: 0;
  color: #9a0036;
  z-index: 1031;
  transition: none;
}
.mobile-toggle:hover, .mobile-toggle:focus, .mobile-toggle:active {
  color: #9a0036;
  text-decoration: none;
}
.mobile-toggle::after {
  font-family: 'Font Awesome 5 Pro';
  display: block;
  content: '\f0c9';
  font-weight: 500;
  font-size: 1.75rem;
}
.mobile-toggle.close-toggle::after {
  content: '\f00d';
}
/******* Loading ********/
body.loading-progress {
  overflow: hidden;
}
.page-loading {
  content: '';
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 10000;
}
body.loading-progress .page-loading {
  display: block;
}
.loading-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  color: #fff;
  font-weight: 500;
  text-align: center;
  margin: 0;
  padding: 0;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.35);
}
.loading-spinner {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.35), 2px 1px 0px white;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -50px;
  margin-left: -50px;
  animation: spin 0.7s linear infinite;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
/*
2.1 - Header / Navbar
*/
.header {
  width: 100%;
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  background-color: #fff;
}
.header::after {
  width: 100%;
    height: 8px;
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
    content: '';
background: rgb(154,0,54);
background: linear-gradient(90deg, rgba(154,0,54,1) 0%, rgba(217,54,87,1) 100%);
    z-index: 2;
}

.header .navbar-main {
  margin: 0;
  padding: 0 1.25rem;
  height: 62px;
}
.header .navbar-main a.navbar-brand {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .navbar-main a.navbar-brand:hover {
  text-decoration: none;
}
.header .navbar-main a.navbar-brand img.navbar-brand-logo {
  width: 340px;
  height: auto;
  margin: 0;
  padding: 0;
}
.header .navbar-main a.navbar-brand .navbar-brand-site {
  display: none;
}
.header .nav-item {
  margin: 0 0 0 0.65rem;
  position: relative;
}
.header .nav-item .btn {
  margin: 0;
}
/******* Dropdown ********/
.dropdown-toggle::after {
  border: none;
  font-family: 'Font Awesome 5 Pro';
  display: inline;
  content: '\f107';
  font-weight: 500;
  margin-right: 0;
  margin-left: 0.25rem;
  vertical-align: middle;
}
.dropdown.show .dropdown-toggle::after {
  content: '\f106';
}
.dropdown .dropdown-menu {
  box-shadow: none;
  margin-top: -2px;
}
/*
2.2 - Content Area
*/
.wrapper {
  margin: 0;
  padding: 0;
  position: relative;
}
.wrapper::before {
  position: absolute;
  top: 0;
  left: 230px;
  width: 20px;
  height: 100%;
  display: block;
  content: '';
  background: rgb(0, 0, 0);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.0875) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 20;
}
/******* Page Columns ********/
.page-container {
  width: 100%;
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
}
.page-nav-control {
  position: fixed;
  left: 230px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 21;
}
.page-nav-toggle {
  width: 38px;
  height: 44px;
  line-height: 44px;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0 20rem 20rem 0;
  box-shadow: inset 10px 0px 5px -6px rgba(0, 0, 0, 0.25);
}
.page-nav-toggle::before {
  font-family: 'Font Awesome 5 Pro';
  content: '\f33e';
  font-size: 1.35rem;
  font-weight: 400;
}
.page-container .two-col-wrapper {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
}
.page-container .col-page {
  display: block;
  float: left;
  min-height: 100vh;
  position: relative;
}
.page-container .two-col-wrapper > .col-page-left {
  width: 230px;
}
.page-container .two-col-wrapper > .col-page-right {
  width: calc(100% - 230px);
  background-color: #f4f4f4;
}
/******* Page Menu ********/
.page-nav {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 0 50px 0;
  padding: 0;
}
.page-nav .collapsing {
  transition: none;
  display: none;
}
.page-nav a {
  transition: none;
}
.page-nav a:hover {
  text-decoration: none;
}
ul.page-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.page-menu > li {
  padding: 0;
  margin: 0;
  display: block;
  position: relative;
}
ul.page-menu > li.active::before {
  position: absolute;
  left: 0;
  top: 0;
  content: ' ';
  width: 4px;
  height: 100%;
  background-color: #9a0036;
  display: block;
  z-index: 2;
}
ul.page-menu > li > a {
  padding: 0.7rem 2.5rem 0.7rem 1rem;
  margin: 0;
  display: block;
  color: #9a0036;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.3;
  position: relative;
  cursor: pointer;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background-color: #f6f6f6;
}
ul.page-menu > li > a:hover {
  color: #9a0036;
}
ul.page-menu > li > a::after {
  position: absolute;
  right: 1rem;
  top: 0.7rem;
  font-weight: 500;
  font-family: 'Font Awesome 5 Pro';
  content: '\f106';
}
ul.page-menu > li > a.normal-link {
  color: #212529;
  background-color: transparent;
}
ul.page-menu > li > a.normal-link::after {
  content: '\f105';
}
ul.page-menu > li > a.collapsed {
  color: #212529;
  background-color: #fff;
  border-top: none;
  border-bottom: 1px solid #f4f4f4;
}
ul.page-menu > li > a.collapsed:hover, ul.page-menu > li > a.normal-link:hover {
  color: #9a0036;
}
ul.page-menu > li > a.collapsed::before {
  display: none;
}
ul.page-menu > li > a.collapsed::after {
  content: '\f107';
}
ul.page-menu > li.active > a, ul.page-menu > li.active > a:hover, ul.page-menu > li.active > a.collapsed, ul.page-menu > li.active > a.collapsed:hover {
  color: #fff;
  background-color: #9a0036;
  border-bottom: 1px solid #9a0036;
}
ul.page-menu > li > ul {
  padding: 1.5rem 0;
  margin: 0;
  list-style: none;
  background-color: #f4f4f4;
  position: relative;
}
ul.page-menu > li > ul.show::after {
  content: '';
  width: 100%;
  height: 5px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.095) 0%, rgba(0, 0, 0, 0) 100%);
}
ul.page-menu > li > a::before, ul.page-menu > li > ul.show::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 20px;
  height: 100%;
  display: block;
  background: rgb(0, 0, 0);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.575) 0%, rgba(0, 0, 0, 0.075) 20%, rgba(0, 0, 0, 0) 100%);
  z-index: 0;
}
ul.page-menu > li > ul > li > a {
  padding: 0.4rem 1rem 0.4rem 2rem;
  display: block;
  font-size: 0.965em;
  line-height: 1.35;
  color: #212529;
  position: relative;
}
ul.page-menu > li > ul > li > a:hover {
  color: #9a0036;
}
ul.page-menu > li > ul > li.active > a {
  font-weight: bold;
  color: #9a0036;
}
ul.page-menu > li > ul > li.active > a::after {
  position: absolute;
  left: 1.25em;
  top: 0.525rem;
  font-weight: 400;
  font-size: 0.875rem;
  font-family: 'Font Awesome 5 Pro';
  content: '\f105';
  color: #9a0036;
}
/******* Page Content ********/
.page-content {
  position: relative;
  padding: 0.75rem 1.25rem 1.25rem 1.75rem;
  margin: 0;
  z-index: 1;
}
.page-content::before, .page-content::after {
  display: table;
  content: ' ';
}
.page-content::after {
  clear: both;
}
/******* Page Content Collapse ********/
.page-nav-collapse .wrapper::before {
  display: none;
}
.page-nav-collapse .page-nav-control {
  left: 0px;
}
.page-nav-collapse .page-nav-toggle::before {
  content: '\f340';
}
.page-nav-collapse .page-container .two-col-wrapper > .col-page-left {
  display: none;
}
.page-nav-collapse .page-container .two-col-wrapper > .col-page-right {
  width: 100%;
}
.page-nav-collapse .page-content {
  padding: 0.75rem 1.25rem;
}
/******* Page Utility ********/
.page-utility {
  position: relative;
  padding: 0;
  margin: 0;
}
.page-utility::before, .page-utility::after {
  display: table;
  content: ' ';
}
.page-utility::after {
  clear: both;
}
.page-utility {
  min-height: 2rem;
}
.user-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  font-size: .925rem;
  font-weight: 500;
}
.user-segment {
  display: inline-block;
  margin: 0 0.3rem;
}
.user-segment [class*="fa-"] {
  margin-right: 0.13rem;
  color: #9a0036;
}
.user-div {
  font-size: 0.725rem;
  color: rgba(0, 0, 0, 0.15);
}
.breadcrumb {
  background-color: transparent;
  border-radius: 0;
  padding: 0;
  margin: 0 0 0.5rem 0;
}
.breadcrumb-item {
  padding-left: 0rem;
  font-size: 0.925rem;
}
.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  padding-right: 0.5rem;
  font-family: 'Font Awesome 5 Pro';
  content: '\f105';
  font-size: 0.725rem;
}
.breadcrumb-item.active {
  font-weight: 500;
  color: #141a26;
}
.breadcrumb-item a {
  text-decoration: none;
}
/******* Page News ********/
.page-news {
  padding: 0.75rem 0.75rem 0.75rem 120px;
  background-color: #f1f1f1;
  border-radius: 0.25rem 0.25rem 0 0;
  position: relative;
  font-size: 0.925rem;
  font-weight: bold;
  line-height: 1.3;
  border-bottom: 1px solid rgba(0, 0, 0, 0.015);
  background: rgb(0, 0, 0);
  background: linear-gradient(90deg, rgba(103, 44, 84, 1) 0%, rgba(103, 44, 84, 1) 120px, rgba(251, 251, 251, 1) 120px, rgba(251, 251, 251, 1) 100%);
  box-shadow: inset 0px -12px 11px -13px rgba(0, 0, 0, 0.15);
}
.page-news-label {
  position: absolute;
  left: 0;
  width: 120px;
  line-height: 35px;
  heigth: 100%;
  text-align: center;
  color: #fff;
}
.page-news-content {
  padding-left: 1rem;
}
/******* Page Title ********/
.page-title {
  position: relative;
  padding: 0.5rem 0;
  border-bottom: 1px solid #efefef;
}
.page-title::before, .page-title::after {
  display: table;
  content: ' ';
}
.page-title::after {
  clear: both;
}
.page-title-container {
  margin: 0;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  position: relative;
  min-height: 4rem;
}
.page-title-container::before {
  position: absolute;
  width: 4px;
  height: 36px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #9a0036;
  content: '';
}
.page-category {
  padding: 0.35rem 0.75rem;
  background-color: #f4f4f4;
  border-radius: 0.25rem;
  margin-left: 1rem;
  margin-right: 0.5rem;
  font-size: 1.425rem;
  color: #9a0036;
  font-weight: bold;
}
.page-title-container h1 {
  margin: 0;
  margin-left: 1rem;
  line-height: 1.3;
}
.page-category + h1 {
  margin-left: 0;
}
/******* Font Resize ********/
.font-resize {
  position: absolute;
  z-index: 125;
  top: 21px;
  right: 1.15rem;
  border: none;
  border-radius: 0.5rem;
}
.font-resize .btn-group .btn {
  font-weight: normal;
  position: relative;
  margin: 0;
  font-size: 1rem;
  padding: 0.35rem 0.9rem 0.25rem;
  border-color: #dedede;
  background-color: #f4f4f4;
  font-family: Helvetica, Arial, "sans-serif";
}
.font-resize .btn-group .btn:hover {
  color: #222;
  background-color: #fff;
}
.font-resize .btn-group .btn:first-child {
  border-radius: 0.5rem 0 0 0.5rem;
  border-right: none;
}
.font-resize .btn-group .btn:last-child {
  border-radius: 0 0.5rem 0.5rem 0;
  border-left: none;
}
.font-resize .btn-group .btn.increase:after, .font-resize .btn-group .btn.decrease:after {
  position: absolute;
  top: 0rem;
  right: 0.5rem;
  content: '+';
  font-size: 0.725rem;
  font-weight: bold;
}
.font-resize .btn-group .btn.decrease:after {
  content: '-';
}
.font-resize .btn-group .btn.disable, .font-resize .btn-group .btn.disable:hover, .font-resize .btn-group .btn.disable:focus, .font-resize .btn-group .btn.disable:active {
  color: #dedede;
  cursor: default;
}
/******* Content ********/
.content-body::before, .content-body::after {
  display: table;
  content: ' ';
}
.content-body::after {
  clear: both;
}
.content-body a {
  word-break: break-all;
}
.content-body small {
  font-size: 75%;
}
.content-body a {
  text-decoration: underline;
}
.content-body p a, .content-body li a, .content-body table th a, .content-body table td a {
  text-decoration: underline;
}
.content-body p, .content-notes p {
  margin-bottom: 0.5rem;
}
.content-body p:only-child, .content-body p:last-child, .content-notes p:only-child, .content-notes p:last-child {
  margin-bottom: 0;
}
.content-body a.btn {
  text-decoration: none;
}
.content-body ul, .content-body ol, .content-notes ul, .content-notes ol {
  padding: 0px;
  display: block;
  list-style: none;
}
.content-body ul:last-child, .content-body ol:last-child, .content-body ul:only-child, .content-body ol:only-child, .content-notes ul:last-child, .content-notes ol:last-child, .content-notes ul:only-child, .content-notes ol:only-child {
  margin-bottom: 0;
}
.content-body ol li, .content-notes ol li {
  list-style: decimal;
  margin-left: 15px;
}
.content-body ul li, .content-notes ul li {
  list-style: disc;
  margin-left: 15px;
}
.content-body ul ul li, .content-notes ul ul li {
  list-style: circle;
}
.content-body ul ol li, .content-notes ul ol li {
  list-style: decimal;
}
.content-body ol li, .content-body ul li, .content-notes ol li, .content-notes ul li {
  margin-left: 20px;
}
/******* Form ********/
.form-container {
  margin: 0;
  padding: 1rem;
  position: relative;
}
.form-container::before, .form-container::after {
  display: table;
  content: ' ';
}
.form-container::after {
  clear: both;
}
.form-body::before, .form-body::after {
  display: table;
  content: ' ';
}
.form-body::after {
  clear: both;
}
.form-body {
  margin-bottom: 1rem;
}
.form-body a {
  text-decoration: underline;
}
.form-body ul, .form-body ol {
  padding: 0px;
  display: block;
  list-style: none;
}
.form-body ul:last-child, .form-body ol:last-child, .form-body ul:only-child, .form-body ol:only-child {
  margin-bottom: 0;
}
.form-body ol li {
  list-style: decimal;
  margin-left: 20px;
}
.form-body ul li {
  list-style: disc;
  margin-left: 20px;
}
.form-body ul.list-unstyled li {
  list-style: none;
  margin-left: 0;
}
.form-section-title {
  position: relative;
  padding: 0;
  margin-bottom: 1rem;
}
.form-section-title::before, .form-section-title::after {
  display: table;
  content: ' ';
}
.form-section-title::after {
  clear: both;
}
.form-section-title h2, .form-section-title h4 {
  padding-left: 0.75rem;
  position: relative;
  margin: 0;
}
.form-section-title h2 [class*="fa-"] {
  margin-left: -1.25rem;
}
.form-section-title h4 {
  padding-left: 2rem;
  color: rgba(44, 66, 112, 1);
}
.form-section-title h4::before {
  position: absolute;
  left: 0.75rem;
  top: 0.05rem;
  font-weight: 500;
  font-family: 'Font Awesome 5 Pro';
  content: '\f105';
  color: #9a0036;
}
.form-rows {
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
}
.form-row {
  display: block;
  padding: 0.5rem 1rem;
  margin: 0;
  border-bottom: 1px solid #dee2e6;
  position: relative;
}
.form-row:last-child {
  border-bottom: none;
}
.form-row:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}
.form-row-inner {
  margin-top: 0.5rem;
}
.form-row .control-label {
  margin: 0;
  padding: 0;
  display: block;
  text-align: left;
  font-size: 0.965rem;
  font-weight: bold;
  line-height: 1.125;
}
.form-row .control-label.control-label-inline {
  display: inline-block;
}
.form-control, .custom-select {
  margin: 0;
  border-radius: 0.5rem;
}
.form-control:focus, .custom-select:focus {
  border-color: #ced4da;
}
textarea.form-control {
  border-radius: 0.5rem;
}
textarea.form-control::-webkit-scrollbar-thumb {
  background-color: #cdcdcd;
  border: 4px solid transparent;
  border-radius: 8px;
  background-clip: padding-box;
}
textarea.form-control::-webkit-scrollbar {
  width: 16px;
}
.form-control-inline, .custom-select-inline {
  display: inline-block;
  width: 250px;
}
.datepicker-control {
  position: relative;
}
.datepicker-control::after {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 500;
  font-family: 'Font Awesome 5 Pro';
  content: '\f073';
  color: #9a0036;
  pointer-events: none;
  z-index: 1;
}
.custom-control-input:checked ~ .custom-control-label {
  color: #9a0036;
  font-weight: 500;
}
.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #9a0036;
  background-color: #9a0036;
}
.custom-control-label::before {
  top: 0.25rem;
}
.custom-control-label::after {
  top: 0.25rem;
}
.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: #edc7da;
  border-color: #edc7da;
}
.input-group > .form-control, .input-group > .custom-select, .input-group > .input-group-prepend > .input-group-text, .input-group > .input-group-append > .input-group-text, .input-group > .input-group-prepend > .btn, .input-group > .input-group-append > .btn {
  border-radius: 0.5rem;
  margin: 0;
}
.input-group > .input-group-prepend > .btn, .input-group > .input-group-prepend > .input-group-text, .input-group > .input-group-append:not(:last-child) > .btn, .input-group > .input-group-append:not(:last-child) > .input-group-text, .input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle), .input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .input-group-append > .btn, .input-group > .input-group-append > .input-group-text, .input-group > .input-group-prepend:not(:first-child) > .btn, .input-group > .input-group-prepend:not(:first-child) > .input-group-text, .input-group > .input-group-prepend:first-child > .btn:not(:first-child), .input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.custom-file-input {
  height: calc(1.25em + 1rem + 2px);
}
.custom-file-label {
  height: calc(1.25em + 1rem + 2px);
  padding: 0.375rem 1rem;
  border-radius: 0.5rem;
}
.custom-file-label::after {
  height: calc(1.25em + 1rem + 2px);
  padding: 0.375rem 1rem;
  border-radius: 0 0.5rem 0.5rem 0;
  background-color: #9a0036;
  border-color: #9a0036;
  color: #fff;
  font-weight: bold;
  margin-top: -1px;
}
.custom-file-input:lang(zh-hant) ~ .custom-file-label::after {
  content: '瀏覽';
}
.form-notes, .form-alert, .table-notes {
  font-size: 0.825rem;
  font-weight: bold;
  color: #17a2b8;
  margin-top: 0.25rem;
}
.form-alert {
  font-size: 1.05rem;
  font-weight: bold;
  color: red;
}
.table-notes {
  margin-top: 0rem;
  background-color: #f6f6f6;
}
.form-actions {
  padding: 0.65rem;
  text-align: center;
  background-color: #f4f4f4;
  border-radius: 0.25rem;
}
.form-actions + .form-body, .form-actions + .form-section-title {
  margin-top: 5rem;
}
/******* Inform Search ********/
.form-search-container {
  padding: 2rem;
  display: block;
  background-color: #f6f6f6;
  border-bottom: 1px solid #efefef;
}
.form-search-input {
  display: block;
  margin: 0 auto 1.5rem;
  max-width: 760px;
}
.form-search-input .form-control {
  height: calc(2em + 0.75rem + 2px);
  padding: 1rem;
  font-size: 1rem;
  font-size: 1.125rem;
}
.form-search-actions {
  text-align: center;
}
.form-search-actions .btn.btn-lg {
  width: 100%;
  max-width: 150px;
  margin: 0;
}
.form-search-info {
  border-bottom: 3px solid #efefef;
  padding: 0 1rem 0.75rem;
}
/******* FAQ ********/
.faq-body {
  display: block;
}
.card.card-qa, .card.card-qa .card-header {
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
}
.card.card-qa .btn.btn-link.btn-block {
  margin: 0 0 1px 0;
  padding: 1.2rem 4rem 1.2rem 4rem;
  white-space: normal;
  text-align: left;
  position: relative;
  background-color: #9a0036;
  border: none;
  border-bottom: 1px solid #dedede !important;
  border-radius: 0.5rem 0.5rem 0 0;
  color: #fff;
  transition: none;
}
.card.card-qa .btn.btn-link.btn-block:hover, .card.card-qa .btn.btn-link.btn-block:focus {
  text-decoration: none;
  box-shadow: none;
}
.card.card-qa .btn.btn-link.btn-block.collapsed {
  border-bottom: 1px solid #f6f6f6 !important;
  background-color: transparent;
  border-radius: 0.5rem;
  color: #9a0036;
}
.card.card-qa .btn.btn-link.btn-block.collapsed:hover {
  color: #591a4a;
  background-color: #fff;
}
.card.card-qa .btn.btn-link.btn-block::before {
  width: 22px;
  height: 22px;
  line-height: 22px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #9a0036;
  text-align: center;
  border-radius: 50%;
  background-color: #fff;
  content: 'Q';
  font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
  position: absolute;
  display: block;
  left: 1.75rem;
  top: 1.22rem;
}
.card.card-qa .btn.btn-link.btn-block.collapsed::before {
  color: #fff;
  background-color: #9a0036;
}
.card.card-qa .btn.btn-link.btn-block::after {
  font-family: 'Font Awesome 5 Pro';
  content: '\f106';
  font-weight: 500;
  font-size: 1.2rem;
  position: absolute;
  display: block;
  right: 1.75rem;
  top: 1rem;
}
.card.card-qa .btn.btn-link.btn-block.collapsed::after {
  content: '\f107';
}
.card.card-qa .btn.btn-link.btn-block:focus {
  outline: 0 !important;
}
.card.card-qa .card-body {
  margin: 0 0 1.5rem 0;
  padding: 2rem;
  text-align: left;
  position: relative;
  background-color: #f6f6f6;
  border-radius: 0 0 0.5rem 0.5rem;
}
.card.card-qa .card-body a {
  word-break: break-all;
}
.card.card-qa .card-body small {
  font-size: 75%;
}
.card.card-qa .card-body a {
  text-decoration: underline;
}
.card.card-qa .card-body p a, .card.card-qa .card-body li a, .card.card-qa .card-body table th a, .card.card-qa .card-body table td a {
  text-decoration: underline;
}
.card.card-qa .card-body p {
  margin-bottom: 0.5rem;
}
.card.card-qa .card-body p:only-child, .card.card-qa .card-body p:last-child {
  margin-bottom: 0;
}
.card.card-qa .card-body a.btn {
  text-decoration: none;
}
.card.card-qa .card-body ul, .card.card-qa .card-body ol {
  padding: 0px;
  display: block;
  list-style: none;
}
.card.card-qa .card-body ul:last-child, .card.card-qa .card-body ol:last-child, .card.card-qa .card-body ul:only-child, .card.card-qa .card-body ol:only-child {
  margin-bottom: 0;
}
.card.card-qa .card-body ol li {
  list-style: decimal;
  margin-left: 15px;
}
.card.card-qa .card-body ul li {
  list-style: disc;
  margin-left: 15px;
}
.card.card-qa .card-body ul ul li {
  list-style: circle;
}
.card.card-qa .card-body ul ol li {
  list-style: decimal;
}
.card.card-qa .card-body ol li, .card.card-qa .card-body ul li {
  margin-left: 20px;
}
/******* Tree ********/
.tree-nav {
  display: block;
  padding: 0.5rem 1rem;
  margin: 0;
  position: relative;
}
.tree-header, .tree-body {
  display: block;
  position: relative;
}
.tree-toggle {
  width: 30px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  position: relative;
  text-align: left;
}
.tree-toggle::before {
  font-family: 'Font Awesome 5 Pro';
  font-size: 1.2rem;
  font-weight: 700;
  content: '\f07c';
  color: #9a0036;
  cursor: pointer;
}
.tree-toggle.collapsed::before {
  content: '\f07b';
  color: #898989;
}
.tree-body {
  padding-left: 42px;
}
ul.tree-list, ul.tree-list li {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}
ul.tree-list li {
  margin: 0.25rem 0;
}
ul.tree-list::before {
  content: '';
  width: 1px;
  height: calc(100% - 11px);
  position: absolute;
  background-color: #cdcdcd;
  left: -1.55rem;
}
ul.tree-list li::before {
  content: '';
  width: 7px;
  height: 1px;
  position: absolute;
  background-color: #cdcdcd;
  left: -1.55rem;
  top: 0.75rem;
}
/******* Chosen ********/
.chosen-select, .chosen-select-deselect {
  width: 100%;
}
.chosen-container {
  display: inline-block;
  position: relative;
  width: 100% !important;
  font-size: 1rem;
  text-align: left;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media (max-width: 990px) {
	.custom-select-inline + .chosen-container {
	  width: 250px !important;
	}
}
@media (min-width: 991px) {
	.custom-select-inline + .chosen-container {
	  width: 425px !important;
	}
}
.chosen-container .chosen-drop {
  background: #fff;
  border: 1px solid #ced4da;
  border-bottom-right-radius: 1.25rem;
  border-bottom-left-radius: 1.25rem;
  margin-top: -1px;
  position: absolute;
  top: 100%;
  left: -9000px;
  z-index: 1060;
  overflow: hidden;
}
.chosen-container.chosen-with-drop .chosen-drop {
  left: 0;
  right: 0;
}
.chosen-container .chosen-results {
  margin: 0;
  position: relative;
  max-height: 15rem;
  padding: 0;
  color: #495057;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.chosen-container .chosen-results::-webkit-scrollbar-thumb {
  background-color: #cdcdcd;
  border: 4px solid transparent;
  border-radius: 8px;
  background-clip: padding-box;
}
.chosen-container .chosen-results::-webkit-scrollbar {
  width: 16px;
}
.chosen-container .chosen-results li {
  display: none;
  line-height: 1.5;
  list-style: none;
  margin: 0;
  padding: .475rem .25rem .475rem 1.25rem;
}
.chosen-container .chosen-results li em {
  font-style: normal;
  color: #495057;
}
.chosen-container .chosen-results li.group-result {
  display: list-item;
  cursor: default;
  padding-left: .75rem;
  color: #adb5bd;
  font-weight: normal;
  text-transform: uppercase;
}
.chosen-container .chosen-results li.group-option {
  padding-left: 1.5rem;
}
.chosen-container .chosen-results li.active-result {
  cursor: pointer;
  display: list-item;
  font-size: 1em;
}
.chosen-container .chosen-results li.result-selected {
  color: #495057;
  position: relative;
}
.chosen-container .chosen-results li.result-selected:before {
  display: block;
  position: absolute;
  top: 0.9rem;
  left: 0.25rem;
  width: 0.75rem;
  height: 0.75rem;
  content: '';
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23495057' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 0.75rem 0.75rem;
  background-position: center center;
  background-repeat: no-repeat;
}
.chosen-container .chosen-results li.highlighted {
  background-color: #9a0036;
  background-image: none;
  color: white;
}
.chosen-container .chosen-results li.highlighted:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
}
.chosen-container .chosen-results li.highlighted em {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
}
.chosen-container .chosen-results li.disabled-result {
  display: list-item;
  color: #ced4da;
}
.chosen-container .chosen-results .no-results {
  display: list-item;
  padding: .25rem 0 1rem 1.065rem;
  color: #dc3545;
}
.chosen-container .chosen-results-scroll {
  background: white;
  margin: 0 .25rem;
  position: absolute;
  text-align: center;
  width: 20rem;
  z-index: 1;
}
.chosen-container .chosen-results-scroll span {
  display: inline-block;
  height: 1.5;
  text-indent: -5000px;
  width: .5rem;
}
.chosen-container-single .chosen-single {
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
  color: #495057;
  display: block;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  vertical-align: middle;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}
.chosen-container-single .chosen-single abbr {
  display: inline-block;
  position: absolute;
  top: .325rem;
  right: 2rem;
  width: 2rem;
  height: 1.5rem;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23dc3545' d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E");
  background-size: 1.5rem 1.5rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #fff;
  box-shadow: 4px 0 16px 16px #fff;
}
.chosen-container-single .chosen-single abbr:hover {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23921925' d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E");
}
.chosen-container-single .chosen-single span {
  display: block;
  margin-right: 1.5rem;
  color: #495057;
  text-overflow: ellipsis;
}
.chosen-container-single .chosen-single.chosen-disabled .chosen-single abbr:hover {
  background-position: right 2px;
}
.chosen-container-single .chosen-single div {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -0.15rem;
  width: 1.65rem;
  height: 100%;
  background-color: transparent;
}
.chosen-container-single .chosen-single div:after, .chosen-container-active.chosen-with-drop .chosen-single div:after {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0.7rem;
  height: 0.7rem;
  content: "";
  background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat;
  background-size: 0.7rem 0.7rem;
  background-position: center center;
  background-repeat: no-repeat;
}
.chosen-container-single .chosen-single:not(.chosen-single-with-deselect) div:after {
  background-color: #fff;
  box-shadow: 4px 0 16px 16px #fff;
}
.chosen-container-single .chosen-default {
  color: #adb5bd;
}
.chosen-container-single a:not([href]):not([tabindex]) {
  color: #6c757d !important;
}
.chosen-container-single a:not([href]):not([tabindex]).chosen-single:not(.chosen-default) {
  color: #6c757d !important;
}
.chosen-container-single .chosen-search-input {
  border: none;
}
.chosen-container-single .chosen-search {
  margin: 0;
  padding: 0.5rem;
  position: relative;
  white-space: nowrap;
  z-index: 1000;
  background-color: #dedede;
}
.chosen-container-single .chosen-search:after {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  width: 1.25rem;
  height: 1.25rem;
  content: "";
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23adb5bd' d='M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E");
  background-size: 1.25rem 1.25rem;
  background-position: center center;
  background-repeat: no-repeat;
}
.chosen-container-single .chosen-search input[type="text"] {
  background-color: #fff;
  border: none;
  outline: none;
  border-top-left-radius: 100rem;
  border-top-right-radius: 100rem;
  border-bottom-right-radius: 100rem;
  border-bottom-left-radius: 100rem;
  padding: .25rem 1rem .25rem .5rem;
  width: 100%;
}
.chosen-container-single .chosen-drop {
  margin-top: -1px;
  border-bottom-right-radius: 1.25rem;
  border-bottom-left-radius: 1.25rem;
  background-clip: padding-box;
}
.chosen-container-single-nosearch .chosen-search {
  display: none;
}
.chosen-container-active .chosen-single {
  border-color: #80bdff;
  outline: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
@media (prefers-reduced-motion: reduce) {
  .chosen-container-active .chosen-single {
    transition: none;
  }
}
.chosen-container-active.is-valid .chosen-single {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.4);
}
.chosen-container-active.is-invalid .chosen-single {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.4);
}
.chosen-container-active.chosen-with-drop .chosen-single {
  background-color: #fff;
  border: 1px solid #ced4da;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
@media (prefers-reduced-motion: reduce) {
  .chosen-container-active.chosen-with-drop .chosen-single {
    transition: none;
  }
}
.chosen-container-active .chosen-choices {
  border: 1px solid #ced4da;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
@media (prefers-reduced-motion: reduce) {
  .chosen-container-active .chosen-choices {
    transition: none;
  }
}
.chosen-container-active .chosen-choices .search-field input[type="text"] {
  color: #6c757d !important;
}
.chosen-container-active.chosen-with-drop .chosen-choices {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.chosen-container-active.chosen-with-drop .chosen-search-input {
  display: inline-block;
}
.chosen-disabled {
  cursor: default;
  opacity: .5 !important;
}
.chosen-disabled .chosen-single {
  cursor: default;
}
.chosen-disabled .chosen-choices .search-choice .search-choice-close {
  cursor: default;
}
.chosen-container-optgroup-clickable li.group-result {
  text-transform: none !important;
}
.chosen-container-optgroup-clickable li.group-result:hover {
  background-color: #9a0036;
  color: white;
  cursor: pointer;
}
.chosen-container-optgroup-clickable li.group-result:hover em {
  color: white;
}
.chosen-container.is-valid .chosen-single, .chosen-container.is-valid .chosen-choices, .chosen-container.is-valid .chosen-drop, .chosen-container:valid .chosen-single, .chosen-container:valid .chosen-choices, .chosen-container:valid .chosen-drop {
  border-color: #28a745;
}
.chosen-container.is-invalid .chosen-single, .chosen-container.is-invalid .chosen-choices, .chosen-container.is-invalid .chosen-drop, .chosen-container:invalid .chosen-single, .chosen-container:invalid .chosen-choices, .chosen-container:invalid .chosen-drop {
  border-color: #dc3545;
}
input[type="text"].chosen-focus-input {
  position: absolute;
  top: -9000px;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  background: transparent !important;
  border: 0 !important;
  outline: 0;
}
.input-group:nth-of-type(1) .chosen-container .chosen-choices {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group:not(:nth-of-type(1)) .chosen-container .chosen-choices {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group:not(:nth-of-type(1)) .input-group-prepend .input-group-text {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.input-group .chosen-container {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 1% !important;
}
.input-group .chosen-choices .search-field {
  min-height: calc(1.5em + 0.75rem);
}
/******* Uploading ********/
.upload-box {
  display: none;
}
.upload-box.show {
  display: block;
}
.upload-alert {
  text-align: center;
  position: relative;
  margin: 0;
  padding: 1rem;
  background-color: #ffecf5;
  border-color: #f5c6cb;
}
.upload-end {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 46px;
  background-color: rgba(176, 15, 97, 0.1);
  color: rgba(176, 15, 97, 0.85);
  border: 2px solid #fff;
  font-size: 1.5rem;
  display: inline-block;
  vertical-align: middle;
}
.upload-info {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.875rem;
  text-align: center;
  display: block;
  color: #acacac;
  margin-top: 0.9rem;
}
.upload-ellipsis {
  display: inline-block;
  position: relative;
  width: 70px;
  height: 60px;
  margin: -1rem 1.5rem 0;
  vertical-align: middle;
}
.upload-ellipsis div {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9a0036;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.upload-ellipsis div:nth-child(1) {
  left: 8px;
  animation: upload-ellipsis1 0.6s infinite;
}
.upload-ellipsis div:nth-child(2) {
  left: 8px;
  animation: upload-ellipsis2 0.6s infinite;
}
.upload-ellipsis div:nth-child(3) {
  left: 32px;
  animation: upload-ellipsis2 0.6s infinite;
}
.upload-ellipsis div:nth-child(4) {
  left: 56px;
  animation: upload-ellipsis3 0.6s infinite;
}
@keyframes upload-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes upload-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes upload-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
.page-loading .upload-alert {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: transparent;
  border-color: transparent;
}
.page-loading .upload-end {
  background-color: transparent;
  color: #fff;
}
.page-loading .upload-info {
  color: #fff;
}
.page-loading .upload-ellipsis div {
  background: #fff;
}
/******* Alert ********/
.alert {
  margin-bottom: 0;
  border: none !important;
  border-radius: 0.25rem;
}
.alert p {
  margin-bottom: 0;
}
.alert-info, .alert-warning {
  color: #1a1a1a;
  background-color: #f6e6d5;
  border-color: #f6e6d5;
}
.alert-success {
  color: #1a1a1a;
  background-color: #E1EECB;
  border-color: #E1EECB;
}
.alert-danger {
  color: #a32244;
  background-color: #f4d0d3;
  border-color: #f4d0d3;
}
.alert-warning hr, .alert-info hr, .alert-success hr, .alert-danger hr {
  border-top-color: rgba(0, 0, 0, 0.35);
}
.alert-table-bottom [class*=col-] {
  border-left: 1px solid rgba(0, 0, 0, 0.16);
}
.alert-table-bottom [class*=col-]:first-child, .alert-table-bottom [class*=col-]:only-child {
  border-left: none;
}
/******* Table ********/
.table-responsive, .table {
  margin: 0;
}
.table-responsive {
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
}
.table > thead > tr > th {
  text-align: center;
  padding: 0.65rem;
  min-width: 30px;
  white-space: nowrap;
  line-height: 1.3;
  vertical-align: middle;
  color: #000;
  background: #F7DEE0;
}
.table > tbody > tr > th, .table > tbody > tr > td {
  text-align: center;
  vertical-align: middle;
  padding: 0.45rem;
  line-height: 1.3;
}
.table > thead > tr > th.th-primary {
  background-color: #565656;
}
.table > thead > tr > th.th-info {
  background-color: #C9DCF1;
}
.table > thead > tr > th.th-danger {
  background-color: #F1D8BF;
}
.table > tbody > tr > th.text-right, .table > tbody > tr > td.text-right {
  text-align: right !important;
}
.table.table-list th, .table.table-list td {
  text-align: left;
}
.table.table-list th {
  width: 30%;
}
.table.table-bordered {
  border-collapse: separate;
  border-spacing: 0;
}
.table.table-bordered, .table.table-bordered th, .table.table-bordered td {
  border: none;
}
.table.table-bordered tr th, .table.table-bordered tr td {
  border-right: 1px solid #dee2e6;
  border-bottom: 1px solid #dee2e6;
}
.table.table-bordered thead tr:first-child th, .table.table-list.table-bordered tbody tr:first-child th, .table.table-list.table-bordered tbody tr:first-child td {
  border-top: 1px solid #dee2e6;
}
.table.table-bordered tr:first-child th:first-child, .table.table-bordered tr td:first-child, .table.table-list.table-bordered tbody tr th {
  border-left: 1px solid #dee2e6;
}
.table.table-bordered thead tr:first-child th:first-child {
  border-top-left-radius: 0.25rem;
}
.table.table-bordered thead tr:first-child th:last-child {
  border-top-right-radius: 0.25rem;
}
.table.table-bordered tbody tr:last-child td:first-child {
  border-bottom-left-radius: 0.25rem;
}
.table.table-bordered tbody tr:last-child td:last-child {
  border-bottom-right-radius: 0.25rem;
}
.table.table-list.table-bordered tbody tr:first-child th {
  border-top-left-radius: 0.25rem;
}
.table.table-list.table-bordered tbody tr:last-child th {
  border-bottom-left-radius: 0.25rem;
}
.table.table-list.table-bordered tbody tr:first-child td {
  border-top-right-radius: 0.25rem;
}
.table-responsive .table.table-bordered thead tr:first-child th:first-child, .table-responsive .table.table-bordered tbody tr td:first-child {
  border-left: none;
}
.table-responsive .table.table-bordered thead tr:first-child th:last-child, .table-responsive .table.table-bordered tbody tr td:last-child {
  border-right: none;
}
.table-responsive .table.table-bordered thead tr:first-child th {
  border-top: 0;
  border-radius: 0 !important;
}
.table-responsive .table.table-bordered tbody tr:last-child th, .table-responsive .table.table-bordered tbody tr:last-child td {
  border-bottom: 0;
  border-radius: 0 !important;
}
.table .btn:first-child {
  margin-left: 5px;
}
.table .btn:last-child {
  margin-right: 5px;
}
.w-5 {
  width: 5%;
}
.w-10 {
  width: 10%;
}
.w-15 {
  width: 15%;
}
.w-20 {
  width: 20%;
}
.data-table-holder {
  position: relative;
}
/******* Pagination ********/
.pagination, .pagination .page-item {
  list-style: none;
}
.pagination .page-item {
  display: inline-block;
  margin: 0;
}
.pagination .page-item .page-link {
  color: #9a0036;
  text-decoration: none;
}
.pagination .page-item.active .page-link {
  color: #fff;
  background-color: #9a0036;
  border-color: #9a0036;
}
.pagination .page-item:first-child .page-link {
  border-top-left-radius: 30rem;
  border-bottom-left-radius: 30rem;
}
.pagination .page-item:last-child .page-link {
  border-top-right-radius: 30rem;
  border-bottom-right-radius: 30rem;
}
/******* Modal ********/
.modal-header {
  position: relative;
  padding-right: 50px;
}
.modal-header .close {
  position: absolute;
  margin: 0;
  padding: 0;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
/******* Tab ********/
.page-tabs-group {
  margin: 0 0 1rem 0;
}
.page-tabs-group .page-tabs-dropdown.page-tabs-toggler {
  display: none;
  position: relative;
  background-color: #9a0036;
  color: #fff;
  font-weight: bold;
  margin: 0 !important;
  padding: 0.75rem 1.875rem;
  box-sizing: border-box;
  border-radius: 0.5rem;
}
.page-tabs-group .page-tabs-dropdown.page-tabs-toggler.open {
  border-radius: 0.5rem 0.5rem 0 0;
}
.page-tabs-group .page-tabs-dropdown.page-tabs-toggler:hover {
  text-decoration: none;
}
.page-tabs-group .page-tabs-dropdown.page-tabs-toggler::after {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Font Awesome 5 Pro';
  content: '\f107';
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 1px;
}
.page-tabs-group .page-tabs-dropdown.page-tabs-toggler.open::after {
  content: '\f106';
}
.page-tabs.nav-tabs {
  text-align: center;
  border-bottom: none;
  position: relative;
  display: block;
}
.page-tabs.nav-tabs::after {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #dee2e6;
  background-repeat: no-repeat;
  z-index: 0;
  left: 0;
  bottom: 0px;
  content: '';
}
.page-tabs.nav-tabs .nav-item {
  display: inline-flex;
  margin-top: 0.5rem;
  z-index: 2;
}
.page-tabs.nav-tabs .nav-link {
  padding: 0.95rem 0.85rem 0.85rem;
  margin: 0 0.125rem;
  line-height: 1.2;
  text-align: center;
  color: #141a26;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-bottom: 1px solid #dee2e6;
  border-radius: 0.5rem 0.5rem 0 0;
  background: rgb(246, 246, 246);
  background: linear-gradient(0deg, rgba(222, 226, 230, 1) 0%, rgba(246, 246, 246, 1) 10%, rgba(246, 246, 246, 1) 100%);
  cursor: pointer !important;
}
.page-tabs.nav-tabs .nav-link.active {
  border: 1px solid #dee2e6;
  border-bottom: 1px solid #fff;
  color: #9a0036;
  font-weight: bold;
  background: #fff;
  cursor: default !important;
}
.tab-content {
  padding: 0rem;
}
/*
2.3 - Footer
*/
.footer {
  color: #fff;
  background-color: #424242;
  font-size: 0.975rem;
  width: 100%;
  margin: 0;
  display: block;
  position: relative;
  overflow: hidden;
  z-index: 99;
}
.footer a {
  color: #f1d8bf;
  text-decoration: none;
}
.footer a:hover {
  color: #fff;
}
.footer-wrapper {
  position: relative;
  width: 100%;
  height: 90px;
  margin: 0 auto 0;
  padding: 1rem 6rem 1rem 1.5rem;
  display: flex;
  align-items: center;
}
.footer-legal span {
  margin-right: 0.75rem;
}
.footer-links {
  margin-left: auto;
}
.footer-links ul {
  list-style: none;
  display: block;
  margin: 0;
  padding: 0;
}
.footer-links ul li {
  display: inline-block;
  margin: 0 0.35rem;
}
.footer-links ul li:last-child {
  margin-right: 0;
}
.touch-screen .footer-browser {
  display: none;
}
.footer .footer-tools .go-top {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  padding: 0;
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 999;
  background-color: #9a0036;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
}
.footer .footer-tools .go-top:hover {
  background-color: #591a4a;
  line-height: 48px;
}
/*
2.4 - Responsive Settings
*/
@media (max-width: 1365px) {
  body::before {
    width: 200px;
  }
  .wrapper::before {
    left: 200px;
  }
  .page-container .two-col-wrapper > .col-page-left {
    width: 200px;
  }
  .page-container .two-col-wrapper > .col-page-right {
    width: calc(100% - 200px);
  }
  .page-nav-control {
    left: 200px;
  }
}
@media (max-width: 1199px) {
  .col-md-25 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-35, .col-md-55, .col-md-75 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .offset-25, .offset-sm-25, .pre-follow {
    margin-left: 33.333333%;
  }
  .form-control, .custom-select, textarea.form-control, .custom-file, .input-group, .chosen-container {
    margin: 0.25rem 0;
  }
  .input-group > .form-control {
    margin: 0;
  }
  .page-tabs.nav-tabs .nav-link span {
    display: block;
  }
  .footer-wrapper {
    height: auto;
    padding: 1rem 1.5rem;
    display: block;
  }
  .footer-links {
    text-align: left;
    margin-top: 0.5rem;
    padding: 0 2rem 0 0;
  }
  .footer-links ul li:first-child {
    margin-left: 0;
  }
}
@media screen and (min-width: 992px) {
  .page-tabs.nav-tabs {
    display: flex !important;
  }
}
@media (max-width: 991px) {
  body {
    overflow-y: auto;
  }
  body.page-sidebar-expend {
    overflow-y: hidden;
  }
  body::before {
    display: none;
  }
  .header {
    position: fixed;
    top: 0;
    border: none;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    z-index: 1005;
  }
  .header .navbar-main {
    padding: 0 1rem 0 56px;
    height: 56px;
  }
  .header .navbar-main a.navbar-brand img.navbar-brand-logo {
    width: 280px;
  }
  .mobile-toggle {
    display: block;
  }
  .wrapper {
    padding-top: 56px;
  }
  .wrapper::before {
    display: none;
  }
  .page-container .two-col-wrapper {
    margin-top: 0;
  }
  .page-container .col-page {
    float: none;
  }
  .page-container .two-col-wrapper > .col-page-left {
    position: fixed;
    top: 56px;
    width: 100%;
    height: 100%;
    display: block;
    background-color: #f4f4f4;
    overflow-y: auto;
    z-index: 1030;
    transition: all 0.12s;
    left: -100%;
  }
  .page-sidebar-expend .page-container .two-col-wrapper > .col-page-left {
    left: 0;
  }
  .page-nav-collapse .page-container .two-col-wrapper > .col-page-left {
    display: block;
  }
  .page-container .two-col-wrapper > .col-page-right {
    width: 100%;
  }
  .page-nav-control {
    display: none;
  }
  .page-nav {
    top: auto;
    left: auto;
    position: relative;
    background-color: #fff;
    width: 100%;
    padding-bottom: 5rem;
  }
  .page-content {
    padding: 0.75rem;
  }
  .page-utility {
    min-height: 0rem;
    padding: 0;
    margin: 0;
  }
  .page-tabs-group .page-tabs-dropdown.page-tabs-toggler {
    display: block;
  }
  .page-tabs.nav-tabs {
    display: none;
    background-color: #f6f6f6;
    text-align: left;
    border: none;
    margin: 0;
    padding: 0.5rem;
    border-radius: 0 0 0.5rem 0.5rem;
  }
  .page-tabs.nav-tabs::after {
    display: none;
  }
  .page-tabs.nav-tabs .nav-item {
    display: block;
    margin: 0;
    padding: 0;
  }
  .page-tabs.nav-tabs .nav-link {
    color: #353535;
    margin: 0;
    padding: 0.75rem 0.75rem 0.75rem 1.5rem;
    display: block;
    border: none;
    width: 100%;
    background: transparent;
    text-align: left;
    border-radius: 0.5rem;
    position: relative;
  }
  .nav-tabs.page-tabs .nav-link:hover {
    color: #9a0036;
  }
  .nav-tabs.page-tabs .nav-link.active {
    border: none;
    color: #9a0036;
    background-color: #fff;
  }
  .nav-tabs.page-tabs .nav-link.active:before {
    position: absolute;
    font-family: 'Font Awesome 5 Pro';
    content: "\f105";
    left: 0.65rem;
  }
  .page-tabs.nav-tabs .nav-link span {
    display: inline;
  }
  .footer-wrapper {
    padding: 1rem;
  }
  .footer-browser {
    display: none;
  }
  .footer .footer-tools .go-top {
    bottom: 0.75rem;
    right: 0.75em;
    font-size: 1rem;
    width: 36px;
    height: 36px;
    line-height: 36px;
  }
  .footer .footer-tools .go-top:hover {
    line-height: 34px;
  }
}
@media (max-width: 767px) {
  .alert-table-bottom [class*=col-] {
    border-left: none;
  }
  body {
    font-size: 0.925rem;
  }
  h1 {
    font-size: 1.25rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  h3 {
    font-size: 1.15rem;
  }
  h4 {
    font-size: 1.1rem;
  }
  h5 {
    font-size: 1.05rem;
  }
  h6 {
    font-size: 1rem;
  }
  p {
    font-size: 0.925rem;
  }
  .btn {
    padding: 0.275rem 0.65rem;
    font-size: 0.825rem;
  }
  .btn-lg, .btn-group-lg > .btn {
    padding: 0.425rem 1.45rem;
    font-size: 0.925rem;
  }
  .page-category {
    font-size: 1.225rem;
  }
  .form-control, .custom-select, .custom-select, .input-group .btn, .input-group-text {
    font-size: 0.925rem;
  }
  .user-wrapper {
    position: relative;
    top: auto;
    right: auto;
    text-align: right;
    margin-bottom: 0.5rem;
  }
  .user-wrapper, .breadcrumb-item {
    font-size: .785rem;
  }
  .font-resize {
    display: none;
  }
  .page-title {
    padding: 0;
  }
  .page-title-container {
    min-height: 2.75rem;
  }
  .page-content {
    padding: 0.5rem;
  }
  .footer {
    font-size: 0.875rem !important;
  }
}
@media (max-width: 575px) {
  .col-md-25, .col-md-35, .col-md-55, .col-md-75 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .offset-25, .offset-sm-25, .pre-follow {
    margin-left: 0;
  }
  .pre-follow::before {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    text-align: center;
  }
  .mobile-toggle {
    width: 36px;
  }
  .mobile-toggle::after {
    font-size: 1.5rem;
  }
  .form-control-inline, .custom-select-inline {
    width: 180px;
  }
  .form-actions .btn.btn-lg {
    display: block;
    margin: 8px auto;
    width: 100%;
    max-width: 300px;
  }
  .header .navbar-main {
    padding: 0 5px 0 40px;
  }
  .header .navbar-main a.navbar-brand img.navbar-brand-logo {
    width: 260px;
  }
  .page-category {
    display: none;
  }
  .page-title-container h1 {
    margin-left: 1rem;
  }
  .form-row .control-label {
    margin-bottom: 0.25rem;
  }
  .footer-wrapper {
    text-align: center
  }
  .footer-legal span {
    margin-right: 0;
    display: block;
  }
  .footer-links {
    text-align: center;
    padding: 0;
  }
  .footer-links ul li {
    display: block;
  }
}
@media (max-width: 430px) {
  .header .navbar-main a.navbar-brand img.navbar-brand-logo {
    width: 220px;
  }
}
@media (max-width: 360px) {
  .header .navbar-main a.navbar-brand img.navbar-brand-logo {
    width: 196px;
  }
}