@charset "UTF-8";

::-moz-placeholder {
  color: #7A7A7A;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #7A7A7A;
}

::-webkit-input-placeholder {
  color: #7A7A7A;
}

/* Button
-------------------------- */
/* Button
-------------------------- */
/* Button
-------------------------- */
/* BEM
 -------------------------- */
/* Button
-------------------------- */
/* Button
-------------------------- */
/* BEM
 -------------------------- */
.e-animate__fadeInRight {
  animation-name: eFadeInRight;
}

@keyframes eFadeInRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.e-animate__fadeInLeft {
  animation-name: eFadeInLeft;
}

@keyframes eFadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.e-animate__fadeInUp {
  animation-name: eFadeInUp;
}

@keyframes eFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.e-animate__fadeInDown {
  animation-name: eFadeInDown;
}

@keyframes eFadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.e-animate__lightSpeedInLeft {
  animation-name: eLightSpeedInLeft;
}

@keyframes eLightSpeedInLeft {
  0% {
    transform: translate3d(-50px, 0, 0) skewX(30deg);
    opacity: 0;
  }

  60% {
    transform: skewX(-20deg);
    opacity: 1;
  }

  80% {
    transform: skewX(5deg);
  }

  to {
    transform: translateZ(0);
  }
}

.e-animate__flipInX {
  animation-name: eFlipInX;
  backface-visibility: visible !important;
}

@keyframes eFlipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  to {
    transform: perspective(400px);
    opacity: 1;
  }
}

.e-animate__flipInY {
  animation-name: eFlipInY;
  backface-visibility: visible !important;
}

@keyframes eFlipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  to {
    transform: perspective(400px);
    opacity: 1;
  }
}

/* Button
-------------------------- */
/* Button
-------------------------- */
/* Button
-------------------------- */
/* Button
-------------------------- */
/* BEM
 -------------------------- */
.e-button {
  display: inline-block;
  margin: 0;
  color: #333333;
  background: #ffffff;
  border: 1px solid #dcdfe6;
  border-color: #dcdfe6;
  text-align: center;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  padding: 6px 16px;
  font-size: 14px;
  border-radius: 0;
  height: 36px;
}

.e-button+.e-button {
  margin-left: 10px;
}

.e-button.is-round {
  padding: 6px 16px;
}

.e-button [class*=e-icon-] {
  transform: translateY(calc(50% - 9.3333333333px));
}

.e-button:hover {
  color: #005096;
  border-color: #005096;
}

.e-button::-moz-focus-inner {
  border: 0;
}

.e-button [class*=e-icon-] {
  transform: translateY(calc(50% - 7px));
}

.e-button [class*=e-icon-]+span {
  margin-left: 5px;
}

.e-button.is-plain:hover {
  background: #ffffff;
  border-color: #005096;
  color: #005096;
}

.e-button.is-active {
  color: #004887;
  border-color: #004887;
}

.e-button.is-disabled,
.e-button.is-disabled:hover {
  color: #ffffff;
  cursor: not-allowed;
  background-image: none;
  background-color: #C1C6CB;
  border-color: #C1C6CB;
}

.e-button.is-disabled.e-button--text {
  color: #cacaca;
  background-color: transparent;
  border-color: transparent;
}

.e-button.is-disabled.is-plain,
.e-button.is-disabled.is-plain:hover {
  background-color: #ffffff;
  border-color: #cacaca;
  color: #ffffff;
}

.e-button.is-loading {
  position: relative;
  pointer-events: none;
}

.e-button.is-loading:before {
  pointer-events: none;
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: inherit;
  background-color: rgba(255, 255, 255, 0.35);
}

.e-button.is-round {
  border-radius: 20px;
  padding: 12px 23px;
}

.e-button.is-circle {
  border-radius: 50%;
  padding: 6px;
}

.e-button.is-catalog-entrance {
  height: 40px;
  padding-right: 4rem;
  padding-left: 4rem;
  border-width: 2px;
}

.e-button--primary {
  color: #ffffff;
  background-color: #005096;
  border-color: #005096;
}

.e-button--primary:hover {
  background: #296CA6;
  border-color: #296CA6;
  color: #fff;
}

.e-button--primary.is-active {
  background: transparent;
  border-color: #004887;
  color: #004887;
}

.e-button--primary.is-disabled,
.e-button--primary.is-disabled:hover,
.e-button--primary.is-disabled:active {
  color: #ffffff;
  background-color: #cacaca;
  border-color: #cacaca;
}

.e-button--primary.is-plain {
  color: #005096;
  background: transparent;
  border-color: #005096;
}

.e-button--primary.is-plain:hover {
  background: #005096;
  border-color: #005096;
  color: #ffffff;
}

.e-button--primary.is-plain.is-disabled,
.e-button--primary.is-plain.is-disabled:hover,
.e-button--primary.is-plain.is-disabled:active {
  color: #ffffff;
  background-color: #cacaca;
  border-color: #cacaca;
}

.e-button--success {
  color: #ffffff;
  background-color: #009b6d;
  border-color: #009b6d;
}

.e-button--success:hover {
  background: transparent;
  border-color: #33af8a;
  color: #33af8a;
}

.e-button--success.is-active {
  background: transparent;
  border-color: #008c62;
  color: #008c62;
}

.e-button--success.is-disabled,
.e-button--success.is-disabled:hover,
.e-button--success.is-disabled:active {
  color: #ffffff;
  background-color: #cacaca;
  border-color: #cacaca;
}

.e-button--success.is-plain {
  color: #009b6d;
  background: transparent;
  border-color: #009b6d;
}

.e-button--success.is-plain:hover {
  background: #009b6d;
  border-color: #009b6d;
  color: #ffffff;
}

.e-button--success.is-plain.is-disabled,
.e-button--success.is-plain.is-disabled:hover,
.e-button--success.is-plain.is-disabled:active {
  color: #ffffff;
  background-color: #cacaca;
  border-color: #cacaca;
}

.e-button--warning {
  color: #ffffff;
  background-color: #ffc819;
  border-color: #ffc819;
}

.e-button--warning:hover {
  background: transparent;
  border-color: #ffd347;
  color: #ffd347;
}

.e-button--warning.is-active {
  background: transparent;
  border-color: #e6b417;
  color: #e6b417;
}

.e-button--warning.is-disabled,
.e-button--warning.is-disabled:hover,
.e-button--warning.is-disabled:active {
  color: #ffffff;
  background-color: #cacaca;
  border-color: #cacaca;
}

.e-button--warning.is-plain {
  color: #ffc819;
  background: transparent;
  border-color: #ffc819;
}

.e-button--warning.is-plain:hover {
  background: #ffc819;
  border-color: #ffc819;
  color: #ffffff;
}

.e-button--warning.is-plain.is-disabled,
.e-button--warning.is-plain.is-disabled:hover,
.e-button--warning.is-plain.is-disabled:active {
  color: #ffffff;
  background-color: #cacaca;
  border-color: #cacaca;
}

.e-button--danger {
  color: #ffffff;
  background-color: #ee1533;
  border-color: #ee1533;
}

.e-button--danger:hover {
  background: transparent;
  border-color: #f1445c;
  color: #f1445c;
}

.e-button--danger.is-active {
  background: transparent;
  border-color: #d6132e;
  color: #d6132e;
}

.e-button--danger.is-disabled,
.e-button--danger.is-disabled:hover,
.e-button--danger.is-disabled:active {
  color: #ffffff;
  background-color: #cacaca;
  border-color: #cacaca;
}

.e-button--danger.is-plain {
  color: #ee1533;
  background: transparent;
  border-color: #ee1533;
}

.e-button--danger.is-plain:hover {
  background: #ee1533;
  border-color: #ee1533;
  color: #ffffff;
}

.e-button--danger.is-plain.is-disabled,
.e-button--danger.is-plain.is-disabled:hover,
.e-button--danger.is-plain.is-disabled:active {
  color: #ffffff;
  background-color: #cacaca;
  border-color: #cacaca;
}

.e-button--info {
  color: #ffffff;
  background-color: #1EB9E1;
  border-color: #1EB9E1;
}

.e-button--info:hover {
  background: #4bc7e7;
  border-color: #4bc7e7;
  color: #fff;
}

.e-button--info.is-active {
  background: transparent;
  border-color: #20a8cb;
  color: #20a8cb;
}

.e-button--info.is-disabled,
.e-button--info.is-disabled:hover,
.e-button--info.is-disabled:active {
  color: #ffffff;
  background-color: #cacaca;
  border-color: #cacaca;
}

.e-button--info.is-plain {
  color: #24bbe1;
  background: transparent;
  border-color: #24bbe1;
}

.e-button--info.is-plain:hover {
  background: #24bbe1;
  border-color: #24bbe1;
  color: #ffffff;
}

.e-button--info.is-plain.is-disabled,
.e-button--info.is-plain.is-disabled:hover,
.e-button--info.is-plain.is-disabled:active {
  color: #ffffff;
  background-color: #cacaca;
  border-color: #cacaca;
}

.e-button--yellow {
  color: #333333;
  background-color: #ffc819;
  border-color: #ffc819;
}

.e-button--yellow:hover {
  background: #ffd347;
  border-color: #ffd347;
}

.e-button--white {
  color: #ffffff;
  background-color: transparent;
  border-color: #ffffff;
}

.e-button--white:hover {
  color: #ffffff;
  background: #005096;
  border-color: #005096;
}

.e-button--large {
  padding: 7px 21px;
  font-size: 14px;
  border-radius: 0;
  height: 42px;
}

.e-button--large.is-round {
  padding: 7px 21px;
}

.e-button--large [class*=e-icon-] {
  transform: translateY(calc(50% - 9.3333333333px));
}

.e-button--large.is-circle {
  padding: 7px;
  min-width: 42px;
}

.e-button--medium {
  padding: 6px 16px;
  font-size: 14px;
  border-radius: 0;
  height: 36px;
}

.e-button--medium.is-round {
  padding: 6px 16px;
}

.e-button--medium [class*=e-icon-] {
  transform: translateY(calc(50% - 9.3333333333px));
}

.e-button--medium.is-circle {
  padding: 6px;
  min-width: 36px;
}

.e-button--small {
  padding: 4px 10px;
  font-size: 13px;
  border-radius: 0;
  height: 32px;
}

.e-button--small.is-round {
  padding: 4px 10px;
}

.e-button--small [class*=e-icon-] {
  transform: translateY(calc(50% - 8.6666666667px));
}

.e-button--small.is-circle {
  padding: 4px;
  min-width: 32px;
}

.e-button--mini {
  padding: 0 7px;
  font-size: 12px;
  border-radius: 0;
  height: 24px;
}

.e-button--mini.is-round {
  padding: 0 7px;
}

.e-button--mini [class*=e-icon-] {
  transform: translateY(calc(50% - 8px));
}

.e-button--mini.is-circle {
  padding: 0;
  min-width: 24px;
}

.e-button--long {
  padding-left: 50px;
  padding-right: 50px;
}

.e-button--text {
  border-color: transparent;
  color: #005096;
  background: transparent;
  padding-left: 0;
  padding-right: 0;
}

.e-button--text:hover,
.e-button--text:focus {
  color: #3373ab;
  border-color: transparent;
  background-color: transparent;
}

.e-button--text.is-disabled,
.e-button--text.is-disabled:hover,
.e-button--text.is-disabled:focus {
  border-color: transparent;
}

.e-button-group {
  display: inline-block;
  vertical-align: middle;
}

.e-button-group::before,
.e-button-group::after {
  display: table;
  content: "";
}

.e-button-group::after {
  clear: both;
}

.e-button-group>.el-button {
  float: left;
  position: relative;
}

.e-button-group>.el-button+.el-button {
  margin-left: 0;
}

.e-button-group>.el-button.is-disabled {
  z-index: 1;
}

.e-button-group>.el-button:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.e-button-group>.el-button:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.e-button-group>.el-button:first-child:last-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.e-button-group>.el-button:first-child:last-child.is-round {
  border-radius: 20px;
}

.e-button-group>.el-button:first-child:last-child.is-circle {
  border-radius: 50%;
}

.e-button-group>.el-button:not(:first-child):not(:last-child) {
  border-radius: 0;
}

.e-button-group>.el-button:not(:last-child) {
  margin-right: -1px;
}

.e-button-group>.el-button:hover,
.e-button-group>.el-button:focus,
.e-button-group>.el-button:active {
  z-index: 1;
}

.e-button-group>.el-button.is-active {
  z-index: 1;
}

.e-button-group>.el-dropdown>.el-button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left-color: rgba(255, 255, 255, 0.5);
}

.e-button-group .el-button--primary:first-child {
  border-right-color: rgba(255, 255, 255, 0.5);
}

.e-button-group .el-button--primary:last-child {
  border-left-color: rgba(255, 255, 255, 0.5);
}

.e-button-group .el-button--primary:not(:first-child):not(:last-child) {
  border-left-color: rgba(255, 255, 255, 0.5);
  border-right-color: rgba(255, 255, 255, 0.5);
}

.e-button-group .el-button--success:first-child {
  border-right-color: rgba(255, 255, 255, 0.5);
}

.e-button-group .el-button--success:last-child {
  border-left-color: rgba(255, 255, 255, 0.5);
}

.e-button-group .el-button--success:not(:first-child):not(:last-child) {
  border-left-color: rgba(255, 255, 255, 0.5);
  border-right-color: rgba(255, 255, 255, 0.5);
}

.e-button-group .el-button--warning:first-child {
  border-right-color: rgba(255, 255, 255, 0.5);
}

.e-button-group .el-button--warning:last-child {
  border-left-color: rgba(255, 255, 255, 0.5);
}

.e-button-group .el-button--warning:not(:first-child):not(:last-child) {
  border-left-color: rgba(255, 255, 255, 0.5);
  border-right-color: rgba(255, 255, 255, 0.5);
}

.e-button-group .el-button--danger:first-child {
  border-right-color: rgba(255, 255, 255, 0.5);
}

.e-button-group .el-button--danger:last-child {
  border-left-color: rgba(255, 255, 255, 0.5);
}

.e-button-group .el-button--danger:not(:first-child):not(:last-child) {
  border-left-color: rgba(255, 255, 255, 0.5);
  border-right-color: rgba(255, 255, 255, 0.5);
}

.e-button-group .el-button--info:first-child {
  border-right-color: rgba(255, 255, 255, 0.5);
}

.e-button-group .el-button--info:last-child {
  border-left-color: rgba(255, 255, 255, 0.5);
}

.e-button-group .el-button--info:not(:first-child):not(:last-child) {
  border-left-color: rgba(255, 255, 255, 0.5);
  border-right-color: rgba(255, 255, 255, 0.5);
}

/* Button
-------------------------- */
/* Button
-------------------------- */
/* BEM
 -------------------------- */
.e-icon-customer-service {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("../assets/images/icons/icon_customer_service.png") no-repeat;
}

.e-icon-user-light {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url("../assets/images/icons/icon_user_light.png") no-repeat;
}

.e-icon-round-arrow-right-light {
  display: inline-block;
  width: 7px;
  height: 18px;
  background: url("../assets/images/icons/icon_angle_right_active.png") no-repeat;
  margin-left: 2px !important;
}

.e-icon-round-arrow-right-active {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("../assets/images/icons/icon_round_arrow_right_active.png") no-repeat;
}

.e-icon-round-arrow-right-active2 {
  display: inline-block;
  width: 8px;
  height: 21px;
  background: url("../assets/images/icons/icon_angle_right_primary.png") center no-repeat;
}

.e-icon-angle-bottom-big {
  display: inline-block;
  width: 28px;
  height: 15px;
  background: url("../assets/images/icons/icon_angle_bottom_big.png") no-repeat;
}

.e-icon-aspect {
  display: inline-block;
  width: 21px;
  height: 19px;
  background: url("../assets/images/icons/icon_aspect.png") no-repeat;
}

.e-icon-guide-user {
  display: inline-block;
  width: 36px;
  height: 36px;
  background: url("../assets/images/icons/icon_guide_user.png") no-repeat;
  position: absolute;
  top: 50%;
  left: calc(35rem / 14);
  margin-top: -17px;
}

.e-icon-guide-wallet {
  display: inline-block;
  width: 36px;
  height: 36px;
  background: url("../assets/images/icons/icon_guide_wallet.png") no-repeat;
  position: absolute;
  top: 50%;
  left: calc(35rem / 14);
  margin-top: -14px;
}

.e-icon-search {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("../assets/images/icons/icon_search.png") center no-repeat;
}

.e-icon-search2 {
  display: inline-block;
  width: 13px;
  height: 13px;
  background: url("../assets/images/icons/search_icon.png") no-repeat;
  background-size: contain;
}

.e-icon-search-white {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("../assets/images/icons/icon_search_white.png") no-repeat;
}

.e-icon-classification {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("../assets/images/icons/icon_classification.png") no-repeat;
}

.e-icon-chart {
  display: inline-block;
  width: 13px;
  height: 13px;
  background: url("../assets/images/icons/icon_chart.png") no-repeat;
}

.e-icon-caret-down {
  display: inline-block;
  width: 10px;
  height: 6px;
  background: url("../assets/images/icons/icon_caret_down.png") no-repeat;
}

.e-icon-address {
  display: inline-block;
  width: 14px;
  height: 15px;
  background: url("../assets/images/icons/icon_address.png") no-repeat;
}

.e-icon-tel {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("../assets/images/icons/icon_tel.png") no-repeat;
}

.e-icon-post-code {
  display: inline-block;
  width: 16px;
  height: 13px;
  background: url("../assets/images/icons/icon_post_code.png") no-repeat;
}

.e-icon-download-active {
  display: inline-block;
  width: 18px;
  height: 16px;
  background: url("../assets/images/icons/icon_download_active.png") no-repeat;
}

.e-icon-download-active-o {
  display: inline-block;
  width: 13px;
  height: 13px;
  background: url("../assets/images/icons/icon_download_active_o.png") no-repeat;
}

.e-icon-print {
  display: inline-block;
  width: 19px;
  height: 19px;
  background: url("../assets/images/icons/icon_print.png") no-repeat;
}

.e-icon-font-size {
  display: inline-block;
  width: 20px;
  height: 16px;
  background: url("../assets/images/icons/icon_font-size.png") no-repeat;
}

.e-icon-internet {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url("../assets/images/icons/icon_internet.png") no-repeat;
}

.e-icon-phone {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("../assets/images/icons/icon_phone.png") no-repeat;
}

.e-icon-phone-active {
  display: inline-block;
  width: 10px;
  height: 14px;
  background: url("../assets/images/icons/icon_phone_active.png") no-repeat;
}

.e-icon-earch {
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url("../assets/images/icons/earch.png") center no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-right: 5px;
}

.e-icon-qrcode {
  display: inline-block;
  width: 17px;
  height: 17px;
  background: url("../assets/images/icons/icon_qrcode.png") no-repeat;
}

.e-icon-information {
  display: inline-block;
  width: 19px;
  height: 19px;
  background: url("../assets/images/icons/icon_information.jpg") no-repeat;
  background-size: 100%;
}

.e-icon-email {
  display: inline-block;
  width: 20px;
  height: 16px;
  background: url("../assets/images/icons/icon_email.png") no-repeat;
}

.e-icon-to-top {
  display: inline-block;
  width: 15px;
  height: 17px;
  background: url("../assets/images/icons/icon_to_top.png") no-repeat;
}

.e-icon-calendar-active {
  display: inline-block;
  width: 16px;
  height: 17px;
  background: url("../assets/images/icons/icon_calendar_active.png") no-repeat;
}

.e-icon-eye-dirty {
  display: inline-block;
  width: 22px;
  height: 12px;
  background: url("../assets/images/icons/icon_eye-dirty.png") no-repeat;
}

.e-icon-bar-chart {
  display: inline-block;
  width: 46px;
  height: 46px;
  background: url("../assets/images/organization/icons/icon_bar_chart.png") no-repeat;
  background-size: contain;
}

.e-icon-line-chart {
  display: inline-block;
  width: 46px;
  height: 46px;
  background: url("../assets/images/organization/icons/icon_line_chart.png") no-repeat;
  background-size: contain;
}

.e-icon-money {
  display: inline-block;
  width: 46px;
  height: 46px;
  background: url("../assets/images/organization/icons/icon_money.png") no-repeat;
  background-size: contain;
}

.e-icon-check-list {
  display: inline-block;
  width: 46px;
  height: 46px;
  background: url("../assets/images/organization/icons/icon_check_list.png") no-repeat;
  background-size: contain;
}

.e-icon-pagination-prev {
  display: inline-block;
  position: relative;
  width: 7px;
  height: 9px;
}

.e-icon-pagination-prev::after,
.e-icon-pagination-prev::before {
  position: absolute;
  top: 4px;
  width: 6px;
  left: -2px;
  height: 1px;
  background-color: currentColor;
  border-radius: 2px;
  content: "";
}

.e-icon-pagination-prev::after {
  transform: rotate(140deg) translate(-3px);
}

.e-icon-pagination-prev::before {
  transform: rotate(40deg) translate(3px);
}

.e-icon-pagination-next {
  display: inline-block;
  position: relative;
  width: 7px;
  height: 9px;
}

.e-icon-pagination-next::after,
.e-icon-pagination-next::before {
  position: absolute;
  top: 4px;
  width: 6px;
  height: 1px;
  background-color: currentColor;
  border-radius: 2px;
  content: "";
}

.e-icon-pagination-next::after {
  transform: rotate(40deg) translate(-3px);
}

.e-icon-pagination-next::before {
  transform: rotate(140deg) translate(3px);
}

.e-icon-pagination-front {
  display: inline-block;
  position: relative;
  width: 7px;
  height: 9px;
  padding-left: 1px;
  border-left: 1px solid currentColor;
}

.e-icon-pagination-front::after,
.e-icon-pagination-front::before {
  position: absolute;
  top: 4px;
  left: -2px;
  width: 6px;
  height: 1px;
  background-color: currentColor;
  border-radius: 2px;
  content: "";
}

.e-icon-pagination-front::after {
  transform: rotate(140deg) translate(-3px);
}

.e-icon-pagination-front::before {
  transform: rotate(40deg) translate(3px);
}

.e-icon-pagination-last {
  display: inline-block;
  position: relative;
  width: 8px;
  height: 9px;
  padding-right: 1px;
  border-right: 1px solid currentColor;
}

.e-icon-pagination-last::after,
.e-icon-pagination-last::before {
  position: absolute;
  top: 4px;
  width: 6px;
  height: 1px;
  background-color: currentColor;
  border-radius: 2px;
  content: "";
}

.e-icon-pagination-last::after {
  transform: rotate(40deg) translate(-3px);
}

.e-icon-pagination-last::before {
  transform: rotate(140deg) translate(3px);
}

.e-icon-level-active {
  display: inline-block;
  width: 38px;
  height: 38px;
  background: url("../assets/images/organization/icons/icon_level_active.png") no-repeat;
}

.e-icon-level-light {
  display: inline-block;
  width: 38px;
  height: 38px;
  background: url("../assets/images/organization/icons/icon_level_light.png") no-repeat;
}

.e-icon-branch-active {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url("../assets/images/organization/icons/icon_branch_active.png") no-repeat;
}

.e-icon-branch-light {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url("../assets/images/organization/icons/icon_branch_light.png") no-repeat;
}

.e-icon-admixture-active {
  display: inline-block;
  width: 37px;
  height: 35px;
  background: url("../assets/images/organization/icons/icon_admixture_active.png") no-repeat;
}

.e-icon-admixture-light {
  display: inline-block;
  width: 37px;
  height: 35px;
  background: url("../assets/images/organization/icons/icon_admixture_light.png") no-repeat;
}

.e-icon-close {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url("../assets/images/icons/icon_close.png") no-repeat;
}

.e-icon-close-light {
  display: inline-block;
  width: 10px;
  height: 11px;
  background: url("../assets/images/icons/icon_close_light.png") no-repeat;
}

.e-icon-book-small-active {
  display: inline-block;
  width: 21px;
  height: 20px;
  background: url("../assets/images/icons/icon_book_small_active.png") no-repeat;
}

.e-icon-rule-small-active {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("../assets/images/icons/icon_rule_small_active.png") no-repeat;
}

.e-icon-checklist-small-active {
  display: inline-block;
  width: 17px;
  height: 19px;
  background: url("../assets/images/icons/icon_checklist_small_active.png") no-repeat;
}

.e-icon-arrow-right-active {
  display: inline-block;
  width: 6px;
  height: 11px;
  background: url("../assets/images/icons/icon_arrow_right_active.png") no-repeat;
}

/* Button
-------------------------- */
/* Button
-------------------------- */
/* Button
-------------------------- */
/* BEM
 -------------------------- */
.e-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
}

.e-link.is-underline:hover:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 0;
  bottom: 0;
  border-bottom: 1px solid #005096;
}

.e-link.is-disabled {
  cursor: not-allowed;
}

.e-link [class*=e-icon-]+span {
  margin-left: 5px;
}

.e-link.e-link--default {
  color: #333333;
}

.e-link.e-link--default:hover {
  color: #005096;
}

.e-link.e-link--default:after {
  border-color: #005096;
}

.e-link.e-link--default.is-disabled {
  color: #999999;
}

.e-link.e-link--primary {
  color: #005096;
}

.e-link.e-link--primary:hover:not(.no-hover) {
  color: #3373ab;
}

.e-link.e-link--primary:after {
  border-color: #005096;
}

.e-link.e-link--primary.is-disabled {
  color: #80a8cb;
}

.e-link.e-link--primary.is-underline:hover:after {
  border-color: #005096;
}

.e-link.e-link--danger {
  color: #ee1533;
}

.e-link.e-link--danger:hover:not(.no-hover) {
  color: #f1445c;
}

.e-link.e-link--danger:after {
  border-color: #ee1533;
}

.e-link.e-link--danger.is-disabled {
  color: #f78a99;
}

.e-link.e-link--danger.is-underline:hover:after {
  border-color: #ee1533;
}

.e-link.e-link--success {
  color: #009b6d;
}

.e-link.e-link--success:hover:not(.no-hover) {
  color: #33af8a;
}

.e-link.e-link--success:after {
  border-color: #009b6d;
}

.e-link.e-link--success.is-disabled {
  color: #80cdb6;
}

.e-link.e-link--success.is-underline:hover:after {
  border-color: #009b6d;
}

.e-link.e-link--warning {
  color: #ffc819;
}

.e-link.e-link--warning:hover:not(.no-hover) {
  color: #ffd347;
}

.e-link.e-link--warning:after {
  border-color: #ffc819;
}

.e-link.e-link--warning.is-disabled {
  color: #ffe48c;
}

.e-link.e-link--warning.is-underline:hover:after {
  border-color: #ffc819;
}

.e-link.e-link--info {
  color: #24bbe1;
}

.e-link.e-link--info:hover:not(.no-hover) {
  color: #50c9e7;
}

.e-link.e-link--info:after {
  border-color: #24bbe1;
}

.e-link.e-link--info.is-disabled {
  color: #92ddf0;
}

.e-link.e-link--info.is-underline:hover:after {
  border-color: #24bbe1;
}

/* Button
-------------------------- */
/* Button
-------------------------- */
/* Button
-------------------------- */
/* BEM
 -------------------------- */
.e-tag {
  background-color: #e6eef5;
  border-color: #ccdcea;
  color: #005096;
  display: inline-block;
  height: 32px;
  padding: 0 10px;
  line-height: 30px;
  font-size: 12px;
  color: #005096;
  border-width: 1px;
  border-style: solid;
  border-radius: 0;
  box-sizing: border-box;
  white-space: nowrap;
}

.e-tag.is-hit {
  border-color: #005096;
}

.e-tag .e-tag__close {
  color: #005096;
}

.e-tag .e-tag__close:hover {
  color: #ffffff;
  background-color: #005096;
}

.e-tag.e-tag--info {
  background-color: #e9f8fc;
  border-color: #d3f1f9;
  color: #24bbe1;
}

.e-tag.e-tag--info.is-hit {
  border-color: #24bbe1;
}

.e-tag.e-tag--info .e-tag__close {
  color: #24bbe1;
}

.e-tag.e-tag--info .e-tag__close:hover {
  color: #ffffff;
  background-color: #24bbe1;
}

.e-tag.e-tag--success {
  background-color: #e6f5f0;
  border-color: #ccebe2;
  color: #009b6d;
}

.e-tag.e-tag--success.is-hit {
  border-color: #009b6d;
}

.e-tag.e-tag--success .e-tag__close {
  color: #009b6d;
}

.e-tag.e-tag--success .e-tag__close:hover {
  color: #ffffff;
  background-color: #009b6d;
}

.e-tag.e-tag--warning {
  background-color: #fffae8;
  border-color: #fff4d1;
  color: #ffc819;
}

.e-tag.e-tag--warning.is-hit {
  border-color: #ffc819;
}

.e-tag.e-tag--warning .e-tag__close {
  color: #ffc819;
}

.e-tag.e-tag--warning .e-tag__close:hover {
  color: #ffffff;
  background-color: #ffc819;
}

.e-tag.e-tag--danger {
  background-color: #fde8eb;
  border-color: #fcd0d6;
  color: #ee1533;
}

.e-tag.e-tag--danger.is-hit {
  border-color: #ee1533;
}

.e-tag.e-tag--danger .e-tag__close {
  color: #ee1533;
}

.e-tag.e-tag--danger .e-tag__close:hover {
  color: #ffffff;
  background-color: #ee1533;
}

.e-tag .el-icon-close {
  border-radius: 50%;
  text-align: center;
  position: relative;
  cursor: pointer;
  font-size: 12px;
  height: 16px;
  width: 16px;
  line-height: 16px;
  vertical-align: middle;
  top: -1px;
  right: -5px;
}

.e-tag .el-icon-close::before {
  display: block;
}

.e-tag--dark {
  background-color: #005096;
  border-color: #005096;
  color: white;
}

.e-tag--dark.is-hit {
  border-color: #005096;
}

.e-tag--dark .e-tag__close {
  color: white;
}

.e-tag--dark .e-tag__close:hover {
  color: #ffffff;
  background-color: #3373ab;
}

.e-tag--dark.e-tag--info {
  background-color: #24bbe1;
  border-color: #24bbe1;
  color: white;
}

.e-tag--dark.e-tag--info.is-hit {
  border-color: #24bbe1;
}

.e-tag--dark.e-tag--info .e-tag__close {
  color: white;
}

.e-tag--dark.e-tag--info .e-tag__close:hover {
  color: #ffffff;
  background-color: #50c9e7;
}

.e-tag--dark.e-tag--success {
  background-color: #009b6d;
  border-color: #009b6d;
  color: white;
}

.e-tag--dark.e-tag--success.is-hit {
  border-color: #009b6d;
}

.e-tag--dark.e-tag--success .e-tag__close {
  color: white;
}

.e-tag--dark.e-tag--success .e-tag__close:hover {
  color: #ffffff;
  background-color: #33af8a;
}

.e-tag--dark.e-tag--warning {
  background-color: #ffc819;
  border-color: #ffc819;
  color: white;
}

.e-tag--dark.e-tag--warning.is-hit {
  border-color: #ffc819;
}

.e-tag--dark.e-tag--warning .e-tag__close {
  color: white;
}

.e-tag--dark.e-tag--warning .e-tag__close:hover {
  color: #ffffff;
  background-color: #ffd347;
}

.e-tag--dark.e-tag--danger {
  background-color: #ee1533;
  border-color: #ee1533;
  color: white;
}

.e-tag--dark.e-tag--danger.is-hit {
  border-color: #ee1533;
}

.e-tag--dark.e-tag--danger .e-tag__close {
  color: white;
}

.e-tag--dark.e-tag--danger .e-tag__close:hover {
  color: #ffffff;
  background-color: #f1445c;
}

.e-tag--plain {
  background-color: white;
  border-color: #99b9d5;
  color: #005096;
}

.e-tag--plain.is-hit {
  border-color: #005096;
}

.e-tag--plain .e-tag__close {
  color: #005096;
}

.e-tag--plain .e-tag__close:hover {
  color: #ffffff;
  background-color: #005096;
}

.e-tag--plain.e-tag--info {
  background-color: white;
  border-color: #a7e4f3;
  color: #24bbe1;
}

.e-tag--plain.e-tag--info.is-hit {
  border-color: #24bbe1;
}

.e-tag--plain.e-tag--info .e-tag__close {
  color: #24bbe1;
}

.e-tag--plain.e-tag--info .e-tag__close:hover {
  color: #ffffff;
  background-color: #24bbe1;
}

.e-tag--plain.e-tag--success {
  background-color: white;
  border-color: #99d7c5;
  color: #009b6d;
}

.e-tag--plain.e-tag--success.is-hit {
  border-color: #009b6d;
}

.e-tag--plain.e-tag--success .e-tag__close {
  color: #009b6d;
}

.e-tag--plain.e-tag--success .e-tag__close:hover {
  color: #ffffff;
  background-color: #009b6d;
}

.e-tag--plain.e-tag--warning {
  background-color: white;
  border-color: #ffe9a3;
  color: #ffc819;
}

.e-tag--plain.e-tag--warning.is-hit {
  border-color: #ffc819;
}

.e-tag--plain.e-tag--warning .e-tag__close {
  color: #ffc819;
}

.e-tag--plain.e-tag--warning .e-tag__close:hover {
  color: #ffffff;
  background-color: #ffc819;
}

.e-tag--plain.e-tag--danger {
  background-color: white;
  border-color: #f8a1ad;
  color: #ee1533;
}

.e-tag--plain.e-tag--danger.is-hit {
  border-color: #ee1533;
}

.e-tag--plain.e-tag--danger .e-tag__close {
  color: #ee1533;
}

.e-tag--plain.e-tag--danger .e-tag__close:hover {
  color: #ffffff;
  background-color: #ee1533;
}

.e-tag--medium {
  height: 28px;
  line-height: 26px;
}

.e-tag--medium .el-icon-close {
  transform: scale(0.8);
}

.e-tag--small {
  height: 24px;
  padding: 0 8px;
  line-height: 22px;
}

.e-tag--small .el-icon-close {
  transform: scale(0.8);
}

.e-tag--mini {
  height: 20px;
  padding: 0 5px;
  line-height: 19px;
}

.e-tag--mini .el-icon-close {
  margin-left: -3px;
  transform: scale(0.7);
}

/* Button
-------------------------- */
/* Button
-------------------------- */
/* Button
-------------------------- */
/* BEM
 -------------------------- */
.e-tooltip {
  box-sizing: border-box;
  position: absolute;
  display: block;
  max-width: 250px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0;
  padding: 0;
  color: #333333;
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  visibility: visible;
  z-index: 1070;
}

.e-tooltip.is-hidden {
  display: none;
}

.e-tooltip[x-placement^=top] {
  padding-bottom: 8px;
}

.e-tooltip[x-placement^=top] [e-arrow] {
  bottom: -5.07106781px;
}

.e-tooltip[x-placement^=top] .e-tooltip-arrow-content {
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07);
  transform: translateY(-6.53553391px) rotate(45deg);
}

.e-tooltip[x-placement=top] [e-arrow] {
  left: 50%;
  transform: translate(-50%);
}

.e-tooltip[x-placement=top-start] [e-arrow] {
  left: 13px;
}

.e-tooltip[x-placement=top-end] [e-arrow] {
  right: 13px;
}

.e-tooltip[x-placement^=right] {
  padding-left: 8px;
}

.e-tooltip[x-placement^=right] [e-arrow] {
  left: -5.07106781px;
}

.e-tooltip[x-placement^=right] .e-tooltip-arrow-content {
  box-shadow: -3px 3px 7px rgba(0, 0, 0, 0.07);
  transform: translate(6.53553391px) rotate(45deg);
}

.e-tooltip[x-placement=right] [e-arrow] {
  top: 50%;
  transform: translateY(-50%);
}

.e-tooltip[x-placement=right-start] [e-arrow] {
  top: 5px;
}

.e-tooltip[x-placement=right-end] {
  padding-top: 8px;
}

.e-tooltip[x-placement=right-end] [e-arrow] {
  bottom: 5px;
}

.e-tooltip[x-placement^=bottom] {
  padding-top: 8px;
}

.e-tooltip[x-placement^=bottom] [e-arrow] {
  top: -5.07106781px;
}

.e-tooltip[x-placement^=bottom] .e-tooltip-arrow-content {
  box-shadow: -3px -3px 7px rgba(0, 0, 0, 0.07);
  transform: translateY(6.53553391px) rotate(45deg);
}

.e-tooltip[x-placement=bottom] [e-arrow] {
  left: 50%;
  transform: translate(-50%);
}

.e-tooltip[x-placement=bottom-start] [e-arrow] {
  left: 13px;
}

.e-tooltip[x-placement=bottom-end] [e-arrow] {
  right: 13px;
}

.e-tooltip[x-placement^=left] {
  padding-right: 8px;
}

.e-tooltip[x-placement^=left] [e-arrow] {
  right: -5.07106781px;
}

.e-tooltip[x-placement^=left] .e-tooltip-arrow-content {
  box-shadow: 3px -3px 7px rgba(0, 0, 0, 0.07);
  transform: translate(-6.53553391px) rotate(45deg);
}

.e-tooltip[x-placement=left] [e-arrow] {
  top: 50%;
  transform: translateY(-50%);
}

.e-tooltip[x-placement=left-start] [e-arrow] {
  top: 5px;
}

.e-tooltip[x-placement=left-end] [e-arrow] {
  bottom: 5px;
}

.e-tooltip .e-tooltip-inner {
  min-width: 30px;
  min-height: 32px;
  padding: 6px 8px;
  color: #ffffff;
  text-align: left;
  text-decoration: none;
  word-wrap: break-word;
  background-color: rgba(0, 0, 0, 0.749);
  border-radius: 2px;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.122), 0 6px 16px rgba(0, 0, 0, 0.078), 0 9px 28px 8px rgba(0, 0, 0, 0.051);
}

.e-tooltip [e-arrow] {
  position: absolute;
  display: block;
  width: 13.07106781px;
  height: 13.07106781px;
  overflow: hidden;
  background: 0 0;
  pointer-events: none;
}

.e-tooltip .e-tooltip-arrow-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 5px;
  height: 5px;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.749);
  content: "";
  pointer-events: auto;
}

.e-tooltip-hidden {
  display: none;
}

.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}

.fade-enter-to,
.fade-leave-from {
  opacity: 1;
}

.fade-enter-active {
  transition: opacity 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.fade-leave-active {
  transition: opacity 0.3s cubic-bezier(0.4, 0, 1, 1);
}

.slide-fade-enter-active {
  transition: transform 0.2s ease, transform-origin 0.2s ease, opacity 0.2s ease;
}

.slide-fade-leave-active {
  transition: transform 0.2s cubic-bezier(1, 0.5, 0.8, 1), transform-origin 0.2s cubic-bezier(1, 0.5, 0.8, 1), opacity 0.2s cubic-bezier(1, 0.5, 0.8, 1);
}

.slide-fade-enter-from,
.slide-fade-leave-to {
  transform: scaleY(0.8);
  transform-origin: 0% 0%;
  opacity: 0;
  pointer-events: none;
}

.popover-transition-enter-from,
.popover-transition-leave-to {
  opacity: 0;
  transform: scale(0.85);
}

.popover-transition-enter-to,
.popover-transition-leave-from {
  transform: scale(1);
  opacity: 1;
}

.popover-transition-enter-active {
  transition: opacity 0.15s cubic-bezier(0, 0, 0.2, 1), transform 0.15s cubic-bezier(0, 0, 0.2, 1);
}

.popover-transition-leave-active {
  transition: opacity 0.15s cubic-bezier(0.4, 0, 1, 1), transform 0.15s cubic-bezier(0.4, 0, 1, 1);
}

.zoom-big-fast-enter-from {
  transform: scale(0.8);
  opacity: 0;
}

.zoom-big-fast-enter-active {
  animation-duration: 0.1s;
  animation-fill-mode: both;
  animation-play-state: paused;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}

.zoom-big-fast-enter-to {
  animation-name: ToolTipZoomIn;
  animation-play-state: running;
}

.zoom-big-fast-leave-active {
  animation-duration: 0.1s;
  animation-fill-mode: both;
  animation-play-state: paused;
  animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
}

.zoom-big-fast-leave-to {
  animation-name: ToolTipZoomOut;
  animation-play-state: running;
  pointer-events: none;
}

.zoom-big-enter-from {
  transform: scale(0.8);
  opacity: 0;
}

.zoom-big-enter-active {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}

.zoom-big-enter-to {
  animation-name: ToolTipZoomIn;
  animation-play-state: running;
}

.zoom-big-leave-active {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
  animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
}

.zoom-big-leave-to {
  animation-name: ToolTipZoomOut;
  animation-play-state: running;
  pointer-events: none;
}

@keyframes ToolTipZoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes ToolTipZoomOut {
  0% {
    transform: scale(1);
  }

  to {
    transform: scale(0.8);
    opacity: 0;
  }
}

/* Button
-------------------------- */
/* Button
-------------------------- */
/* Button
-------------------------- */
/* BEM
 -------------------------- */
.e-h-primary {
  margin-bottom: 20px;
  color: #333333;
  font-size: 32px;
  letter-spacing: 1px;
}

.e-h-large {
  margin-bottom: 20px;
  color: #333333;
  font-size: 40px;
  letter-spacing: 1px;
}

.e-h-medium {
  margin-bottom: 20px;
  color: #333333;
  font-size: 30px;
  letter-spacing: 1px;
}

.e-h-block-primary {
  margin-bottom: 30px;
  color: #333333;
  font-size: 16px;
}

.bg-color {
  background-color: #fff;
}

.bg-color-regular {
  background-color: #f8fafd;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

.text-nowrap {
  white-space: nowrap;
}

.text-bold {
  font-weight: bold;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-gray-100 {
  color: #e4e7ed;
}

a.text-gray-100:hover,
a.text-gray-100:focus {
  color: #e4e7ed;
}

.text-gray-200 {
  color: #ebeef5;
}

a.text-gray-200:hover,
a.text-gray-200:focus {
  color: #ebeef5;
}

.text-gray-300 {
  color: #f2f6fc;
}

a.text-gray-300:hover,
a.text-gray-300:focus {
  color: #f2f6fc;
}

.text-gray-400 {
  color: #ced4da;
}

a.text-gray-400:hover,
a.text-gray-400:focus {
  color: #ced4da;
}

.text-gray-500 {
  color: #dcdfe6;
}

a.text-gray-500:hover,
a.text-gray-500:focus {
  color: #dcdfe6;
}

.text-gray-600 {
  color: #999999;
}

a.text-gray-600:hover,
a.text-gray-600:focus {
  color: #999999;
}

.text-gray-700 {
  color: #7a7a7a;
}

a.text-gray-700:hover,
a.text-gray-700:focus {
  color: #7a7a7a;
}

.text-gray-800 {
  color: #666666;
}

a.text-gray-800:hover,
a.text-gray-800:focus {
  color: #666666;
}

.text-gray-900 {
  color: #333333;
}

a.text-gray-900:hover,
a.text-gray-900:focus {
  color: #333333;
}

.text-blue {
  color: #005096;
}

a.text-blue:hover,
a.text-blue:focus {
  color: #005096;
}

.text-indigo {
  color: #6610f2;
}

a.text-indigo:hover,
a.text-indigo:focus {
  color: #6610f2;
}

.text-purple {
  color: #6f42c1;
}

a.text-purple:hover,
a.text-purple:focus {
  color: #6f42c1;
}

.text-pink {
  color: #d63384;
}

a.text-pink:hover,
a.text-pink:focus {
  color: #d63384;
}

.text-red {
  color: #ee1533;
}

a.text-red:hover,
a.text-red:focus {
  color: #ee1533;
}

.text-orange {
  color: #db2626;
}

a.text-orange:hover,
a.text-orange:focus {
  color: #db2626;
}

.text-yellow {
  color: #ffc819;
}

a.text-yellow:hover,
a.text-yellow:focus {
  color: #ffc819;
}

.text-green {
  color: #009b6d;
}

a.text-green:hover,
a.text-green:focus {
  color: #009b6d;
}

.text-teal {
  color: #26dba6;
}

a.text-teal:hover,
a.text-teal:focus {
  color: #26dba6;
}

.text-cyan {
  color: #24bbe1;
}

a.text-cyan:hover,
a.text-cyan:focus {
  color: #24bbe1;
}

.text-white {
  color: #fff;
}

a.text-white:hover,
a.text-white:focus {
  color: #fff;
}

.text-gray {
  color: #999999;
}

a.text-gray:hover,
a.text-gray:focus {
  color: #999999;
}

.text-gray-dark {
  color: #666666;
}

a.text-gray-dark:hover,
a.text-gray-dark:focus {
  color: #666666;
}

.bg-primary {
  color: #005096;
}

a.bg-primary:hover,
a.bg-primary:focus {
  color: #005096;
}

.bg-secondary {
  color: #999999;
}

a.bg-secondary:hover,
a.bg-secondary:focus {
  color: #999999;
}

.bg-success {
  color: #009b6d;
}

a.bg-success:hover,
a.bg-success:focus {
  color: #009b6d;
}

.bg-info {
  color: #24bbe1;
}

a.bg-info:hover,
a.bg-info:focus {
  color: #24bbe1;
}

.bg-warning {
  color: #ffc819;
}

a.bg-warning:hover,
a.bg-warning:focus {
  color: #ffc819;
}

.bg-danger {
  color: #ee1533;
}

a.bg-danger:hover,
a.bg-danger:focus {
  color: #ee1533;
}

.bg-light {
  color: #e4e7ed;
}

a.bg-light:hover,
a.bg-light:focus {
  color: #e4e7ed;
}

.bg-dark {
  color: #333333;
}

a.bg-dark:hover,
a.bg-dark:focus {
  color: #333333;
}

.text-size-extra-large {
  font-size: 20px;
}

.text-size-large {
  font-size: 18px;
}

.text-size-medium {
  font-size: 16px;
}

.text-size-base {
  font-size: 14px;
}

.text-size-extra-small {
  font-size: 13px;
}

.text-size-extra-small {
  font-size: 13px;
}

.light-height-primary {
  line-height: 1.5;
}

.light-height-small {
  line-height: 1.2;
}

.light-height-medium {
  line-height: 1.75;
}

/* Button
-------------------------- */
.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

/* Button
-------------------------- */
.row-gutters-0 {
  margin-left: 0px !important;
  margin-right: 0px !important;
}

.row-gutters-0>[class*=col-] {
  padding-right: 0px !important;
  padding-left: 0px !important;
}

.row-gutters-0.row-gutters-around {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.row-gutters-0.row-gutters-around>[class*=col-] {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.row-gutters-6 {
  margin-left: calc(-6rem / 14) !important;
  margin-right: calc(-6rem / 14) !important;
}

.row-gutters-6>[class*=col-] {
  padding-right: calc(6rem / 14) !important;
  padding-left: calc(6rem / 14) !important;
}

.row-gutters-6.row-gutters-around {
  margin-top: calc(-6rem / 14) !important;
  margin-bottom: calc(-6rem / 14) !important;
}

.row-gutters-6.row-gutters-around>[class*=col-] {
  margin-top: calc(6rem / 14) !important;
  margin-bottom: calc(6rem / 14) !important;
}

.row-gutters-10 {
  margin-left: calc(-10rem / 14) !important;
  margin-right: calc(-10rem / 14) !important;
}

.row-gutters-10>[class*=col-] {
  padding-right: calc(10rem / 14) !important;
  padding-left: calc(10rem / 14) !important;
}

.row-gutters-10.row-gutters-around {
  margin-top: calc(-10rem / 14) !important;
  margin-bottom: calc(-10rem / 14) !important;
}

.row-gutters-10.row-gutters-around>[class*=col-] {
  margin-top: calc(10rem / 14) !important;
  margin-bottom: calc(10rem / 14) !important;
}

.row-gutters-15 {
  margin-left: calc(-15rem / 14) !important;
  margin-right: calc(-15rem / 14) !important;
}

.row-gutters-15>[class*=col-] {
  padding-right: calc(15rem / 14) !important;
  padding-left: calc(15rem / 14) !important;
}

.row-gutters-15.row-gutters-around {
  margin-top: calc(-15rem / 14) !important;
  margin-bottom: calc(-15rem / 14) !important;
}

.row-gutters-15.row-gutters-around>[class*=col-] {
  margin-top: calc(15rem / 14) !important;
  margin-bottom: calc(15rem / 14) !important;
}

.row-gutters-20 {
  margin-left: calc(-20rem / 14) !important;
  margin-right: calc(-20rem / 14) !important;
}

.row-gutters-20>[class*=col-] {
  padding-right: calc(20rem / 14) !important;
  padding-left: calc(20rem / 14) !important;
}

.row-gutters-20.row-gutters-around {
  margin-top: calc(-20rem / 14) !important;
  margin-bottom: calc(-20rem / 14) !important;
}

.row-gutters-20.row-gutters-around>[class*=col-] {
  margin-top: calc(20rem / 14) !important;
  margin-bottom: calc(20rem / 14) !important;
}

.row-gutters-25 {
  margin-left: calc(-25rem / 14) !important;
  margin-right: calc(-25rem / 14) !important;
}

.row-gutters-25>[class*=col-] {
  padding-right: calc(25rem / 14) !important;
  padding-left: calc(25rem / 14) !important;
}

.row-gutters-25.row-gutters-around {
  margin-top: calc(-25rem / 14) !important;
  margin-bottom: calc(-25rem / 14) !important;
}

.row-gutters-25.row-gutters-around>[class*=col-] {
  margin-top: calc(25rem / 14) !important;
  margin-bottom: calc(25rem / 14) !important;
}

.row-gutters-30 {
  margin-left: calc(-30rem / 14) !important;
  margin-right: calc(-30rem / 14) !important;
}

.row-gutters-30>[class*=col-] {
  padding-right: calc(30rem / 14) !important;
  padding-left: calc(30rem / 14) !important;
}

.row-gutters-30.row-gutters-around {
  margin-top: calc(-30rem / 14) !important;
  margin-bottom: calc(-30rem / 14) !important;
}

.row-gutters-30.row-gutters-around>[class*=col-] {
  margin-top: calc(30rem / 14) !important;
  margin-bottom: calc(30rem / 14) !important;
}

.row-gutters-50 {
  margin-left: calc(-50rem / 14) !important;
  margin-right: calc(-50rem / 14) !important;
}

.row-gutters-50>[class*=col-] {
  padding-right: calc(50rem / 14) !important;
  padding-left: calc(50rem / 14) !important;
}

.row-gutters-50.row-gutters-around {
  margin-top: calc(-50rem / 14) !important;
  margin-bottom: calc(-50rem / 14) !important;
}

.row-gutters-50.row-gutters-around>[class*=col-] {
  margin-top: calc(50rem / 14) !important;
  margin-bottom: calc(50rem / 14) !important;
}

/* Button
-------------------------- */
.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

/* Button
-------------------------- */
.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.m-6 {
  margin: 5rem !important;
}

.mt-6,
.my-6 {
  margin-top: 5rem !important;
}

.mr-6,
.mx-6 {
  margin-right: 5rem !important;
}

.mb-6,
.my-6 {
  margin-bottom: 5rem !important;
}

.ml-6,
.mx-6 {
  margin-left: 5rem !important;
}

.m-7 {
  margin: 7.5rem !important;
}

.mt-7,
.my-7 {
  margin-top: 7.5rem !important;
}

.mr-7,
.mx-7 {
  margin-right: 7.5rem !important;
}

.mb-7,
.my-7 {
  margin-bottom: 7.5rem !important;
}

.ml-7,
.mx-7 {
  margin-left: 7.5rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.p-6 {
  padding: 5rem !important;
}

.pt-6,
.py-6 {
  padding-top: 5rem !important;
}

.pr-6,
.px-6 {
  padding-right: 5rem !important;
}

.pb-6,
.py-6 {
  padding-bottom: 5rem !important;
}

.pl-6,
.px-6 {
  padding-left: 5rem !important;
}

.p-7 {
  padding: 7.5rem !important;
}

.pt-7,
.py-7 {
  padding-top: 7.5rem !important;
}

.pr-7,
.px-7 {
  padding-right: 7.5rem !important;
}

.pb-7,
.py-7 {
  padding-bottom: 7.5rem !important;
}

.pl-7,
.px-7 {
  padding-left: 7.5rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-n6 {
  margin: -5rem !important;
}

.mt-n6,
.my-n6 {
  margin-top: -5rem !important;
}

.mr-n6,
.mx-n6 {
  margin-right: -5rem !important;
}

.mb-n6,
.my-n6 {
  margin-bottom: -5rem !important;
}

.ml-n6,
.mx-n6 {
  margin-left: -5rem !important;
}

.m-n7 {
  margin: -7.5rem !important;
}

.mt-n7,
.my-n7 {
  margin-top: -7.5rem !important;
}

.mr-n7,
.mx-n7 {
  margin-right: -7.5rem !important;
}

.mb-n7,
.my-n7 {
  margin-bottom: -7.5rem !important;
}

.ml-n7,
.mx-n7 {
  margin-left: -7.5rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }

  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }

  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }

  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }

  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }

  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }

  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }

  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }

  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }

  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }

  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }

  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }

  .m-sm-6 {
    margin: 5rem !important;
  }

  .mt-sm-6,
  .my-sm-6 {
    margin-top: 5rem !important;
  }

  .mr-sm-6,
  .mx-sm-6 {
    margin-right: 5rem !important;
  }

  .mb-sm-6,
  .my-sm-6 {
    margin-bottom: 5rem !important;
  }

  .ml-sm-6,
  .mx-sm-6 {
    margin-left: 5rem !important;
  }

  .m-sm-7 {
    margin: 7.5rem !important;
  }

  .mt-sm-7,
  .my-sm-7 {
    margin-top: 7.5rem !important;
  }

  .mr-sm-7,
  .mx-sm-7 {
    margin-right: 7.5rem !important;
  }

  .mb-sm-7,
  .my-sm-7 {
    margin-bottom: 7.5rem !important;
  }

  .ml-sm-7,
  .mx-sm-7 {
    margin-left: 7.5rem !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }

  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }

  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }

  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }

  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }

  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }

  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }

  .p-sm-6 {
    padding: 5rem !important;
  }

  .pt-sm-6,
  .py-sm-6 {
    padding-top: 5rem !important;
  }

  .pr-sm-6,
  .px-sm-6 {
    padding-right: 5rem !important;
  }

  .pb-sm-6,
  .py-sm-6 {
    padding-bottom: 5rem !important;
  }

  .pl-sm-6,
  .px-sm-6 {
    padding-left: 5rem !important;
  }

  .p-sm-7 {
    padding: 7.5rem !important;
  }

  .pt-sm-7,
  .py-sm-7 {
    padding-top: 7.5rem !important;
  }

  .pr-sm-7,
  .px-sm-7 {
    padding-right: 7.5rem !important;
  }

  .pb-sm-7,
  .py-sm-7 {
    padding-bottom: 7.5rem !important;
  }

  .pl-sm-7,
  .px-sm-7 {
    padding-left: 7.5rem !important;
  }

  .m-sm-n1 {
    margin: -0.25rem !important;
  }

  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important;
  }

  .m-sm-n2 {
    margin: -0.5rem !important;
  }

  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important;
  }

  .m-sm-n3 {
    margin: -1rem !important;
  }

  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }

  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }

  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }

  .m-sm-n4 {
    margin: -1.5rem !important;
  }

  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }

  .m-sm-n5 {
    margin: -3rem !important;
  }

  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }

  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }

  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }

  .m-sm-n6 {
    margin: -5rem !important;
  }

  .mt-sm-n6,
  .my-sm-n6 {
    margin-top: -5rem !important;
  }

  .mr-sm-n6,
  .mx-sm-n6 {
    margin-right: -5rem !important;
  }

  .mb-sm-n6,
  .my-sm-n6 {
    margin-bottom: -5rem !important;
  }

  .ml-sm-n6,
  .mx-sm-n6 {
    margin-left: -5rem !important;
  }

  .m-sm-n7 {
    margin: -7.5rem !important;
  }

  .mt-sm-n7,
  .my-sm-n7 {
    margin-top: -7.5rem !important;
  }

  .mr-sm-n7,
  .mx-sm-n7 {
    margin-right: -7.5rem !important;
  }

  .mb-sm-n7,
  .my-sm-n7 {
    margin-bottom: -7.5rem !important;
  }

  .ml-sm-n7,
  .mx-sm-n7 {
    margin-left: -7.5rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }

  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }

  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }

  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }

  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }

  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }

  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }

  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }

  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }

  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }

  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }

  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }

  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }

  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }

  .m-md-6 {
    margin: 5rem !important;
  }

  .mt-md-6,
  .my-md-6 {
    margin-top: 5rem !important;
  }

  .mr-md-6,
  .mx-md-6 {
    margin-right: 5rem !important;
  }

  .mb-md-6,
  .my-md-6 {
    margin-bottom: 5rem !important;
  }

  .ml-md-6,
  .mx-md-6 {
    margin-left: 5rem !important;
  }

  .m-md-7 {
    margin: 7.5rem !important;
  }

  .mt-md-7,
  .my-md-7 {
    margin-top: 7.5rem !important;
  }

  .mr-md-7,
  .mx-md-7 {
    margin-right: 7.5rem !important;
  }

  .mb-md-7,
  .my-md-7 {
    margin-bottom: 7.5rem !important;
  }

  .ml-md-7,
  .mx-md-7 {
    margin-left: 7.5rem !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }

  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }

  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }

  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }

  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }

  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }

  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }

  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }

  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }

  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }

  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }

  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }

  .p-md-6 {
    padding: 5rem !important;
  }

  .pt-md-6,
  .py-md-6 {
    padding-top: 5rem !important;
  }

  .pr-md-6,
  .px-md-6 {
    padding-right: 5rem !important;
  }

  .pb-md-6,
  .py-md-6 {
    padding-bottom: 5rem !important;
  }

  .pl-md-6,
  .px-md-6 {
    padding-left: 5rem !important;
  }

  .p-md-7 {
    padding: 7.5rem !important;
  }

  .pt-md-7,
  .py-md-7 {
    padding-top: 7.5rem !important;
  }

  .pr-md-7,
  .px-md-7 {
    padding-right: 7.5rem !important;
  }

  .pb-md-7,
  .py-md-7 {
    padding-bottom: 7.5rem !important;
  }

  .pl-md-7,
  .px-md-7 {
    padding-left: 7.5rem !important;
  }

  .m-md-n1 {
    margin: -0.25rem !important;
  }

  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important;
  }

  .m-md-n2 {
    margin: -0.5rem !important;
  }

  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important;
  }

  .m-md-n3 {
    margin: -1rem !important;
  }

  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }

  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }

  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }

  .m-md-n4 {
    margin: -1.5rem !important;
  }

  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }

  .m-md-n5 {
    margin: -3rem !important;
  }

  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }

  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }

  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }

  .m-md-n6 {
    margin: -5rem !important;
  }

  .mt-md-n6,
  .my-md-n6 {
    margin-top: -5rem !important;
  }

  .mr-md-n6,
  .mx-md-n6 {
    margin-right: -5rem !important;
  }

  .mb-md-n6,
  .my-md-n6 {
    margin-bottom: -5rem !important;
  }

  .ml-md-n6,
  .mx-md-n6 {
    margin-left: -5rem !important;
  }

  .m-md-n7 {
    margin: -7.5rem !important;
  }

  .mt-md-n7,
  .my-md-n7 {
    margin-top: -7.5rem !important;
  }

  .mr-md-n7,
  .mx-md-n7 {
    margin-right: -7.5rem !important;
  }

  .mb-md-n7,
  .my-md-n7 {
    margin-bottom: -7.5rem !important;
  }

  .ml-md-n7,
  .mx-md-n7 {
    margin-left: -7.5rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }

  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }

  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }

  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }

  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }

  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }

  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }

  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }

  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }

  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }

  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }

  .m-lg-6 {
    margin: 5rem !important;
  }

  .mt-lg-6,
  .my-lg-6 {
    margin-top: 5rem !important;
  }

  .mr-lg-6,
  .mx-lg-6 {
    margin-right: 5rem !important;
  }

  .mb-lg-6,
  .my-lg-6 {
    margin-bottom: 5rem !important;
  }

  .ml-lg-6,
  .mx-lg-6 {
    margin-left: 5rem !important;
  }

  .m-lg-7 {
    margin: 7.5rem !important;
  }

  .mt-lg-7,
  .my-lg-7 {
    margin-top: 7.5rem !important;
  }

  .mr-lg-7,
  .mx-lg-7 {
    margin-right: 7.5rem !important;
  }

  .mb-lg-7,
  .my-lg-7 {
    margin-bottom: 7.5rem !important;
  }

  .ml-lg-7,
  .mx-lg-7 {
    margin-left: 7.5rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }

  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }

  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }

  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }

  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }

  .p-lg-6 {
    padding: 5rem !important;
  }

  .pt-lg-6,
  .py-lg-6 {
    padding-top: 5rem !important;
  }

  .pr-lg-6,
  .px-lg-6 {
    padding-right: 5rem !important;
  }

  .pb-lg-6,
  .py-lg-6 {
    padding-bottom: 5rem !important;
  }

  .pl-lg-6,
  .px-lg-6 {
    padding-left: 5rem !important;
  }

  .p-lg-7 {
    padding: 7.5rem !important;
  }

  .pt-lg-7,
  .py-lg-7 {
    padding-top: 7.5rem !important;
  }

  .pr-lg-7,
  .px-lg-7 {
    padding-right: 7.5rem !important;
  }

  .pb-lg-7,
  .py-lg-7 {
    padding-bottom: 7.5rem !important;
  }

  .pl-lg-7,
  .px-lg-7 {
    padding-left: 7.5rem !important;
  }

  .m-lg-n1 {
    margin: -0.25rem !important;
  }

  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }

  .m-lg-n2 {
    margin: -0.5rem !important;
  }

  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }

  .m-lg-n3 {
    margin: -1rem !important;
  }

  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }

  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }

  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }

  .m-lg-n4 {
    margin: -1.5rem !important;
  }

  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }

  .m-lg-n5 {
    margin: -3rem !important;
  }

  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }

  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }

  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }

  .m-lg-n6 {
    margin: -5rem !important;
  }

  .mt-lg-n6,
  .my-lg-n6 {
    margin-top: -5rem !important;
  }

  .mr-lg-n6,
  .mx-lg-n6 {
    margin-right: -5rem !important;
  }

  .mb-lg-n6,
  .my-lg-n6 {
    margin-bottom: -5rem !important;
  }

  .ml-lg-n6,
  .mx-lg-n6 {
    margin-left: -5rem !important;
  }

  .m-lg-n7 {
    margin: -7.5rem !important;
  }

  .mt-lg-n7,
  .my-lg-n7 {
    margin-top: -7.5rem !important;
  }

  .mr-lg-n7,
  .mx-lg-n7 {
    margin-right: -7.5rem !important;
  }

  .mb-lg-n7,
  .my-lg-n7 {
    margin-bottom: -7.5rem !important;
  }

  .ml-lg-n7,
  .mx-lg-n7 {
    margin-left: -7.5rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }

  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1400px) {
  .m-xl-0 {
    margin: 0 !important;
  }

  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }

  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }

  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }

  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }

  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }

  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }

  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }

  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }

  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }

  .m-xl-6 {
    margin: 5rem !important;
  }

  .mt-xl-6,
  .my-xl-6 {
    margin-top: 5rem !important;
  }

  .mr-xl-6,
  .mx-xl-6 {
    margin-right: 5rem !important;
  }

  .mb-xl-6,
  .my-xl-6 {
    margin-bottom: 5rem !important;
  }

  .ml-xl-6,
  .mx-xl-6 {
    margin-left: 5rem !important;
  }

  .m-xl-7 {
    margin: 7.5rem !important;
  }

  .mt-xl-7,
  .my-xl-7 {
    margin-top: 7.5rem !important;
  }

  .mr-xl-7,
  .mx-xl-7 {
    margin-right: 7.5rem !important;
  }

  .mb-xl-7,
  .my-xl-7 {
    margin-bottom: 7.5rem !important;
  }

  .ml-xl-7,
  .mx-xl-7 {
    margin-left: 7.5rem !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }

  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }

  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }

  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }

  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }

  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }

  .p-xl-6 {
    padding: 5rem !important;
  }

  .pt-xl-6,
  .py-xl-6 {
    padding-top: 5rem !important;
  }

  .pr-xl-6,
  .px-xl-6 {
    padding-right: 5rem !important;
  }

  .pb-xl-6,
  .py-xl-6 {
    padding-bottom: 5rem !important;
  }

  .pl-xl-6,
  .px-xl-6 {
    padding-left: 5rem !important;
  }

  .p-xl-7 {
    padding: 7.5rem !important;
  }

  .pt-xl-7,
  .py-xl-7 {
    padding-top: 7.5rem !important;
  }

  .pr-xl-7,
  .px-xl-7 {
    padding-right: 7.5rem !important;
  }

  .pb-xl-7,
  .py-xl-7 {
    padding-bottom: 7.5rem !important;
  }

  .pl-xl-7,
  .px-xl-7 {
    padding-left: 7.5rem !important;
  }

  .m-xl-n1 {
    margin: -0.25rem !important;
  }

  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }

  .m-xl-n2 {
    margin: -0.5rem !important;
  }

  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }

  .m-xl-n3 {
    margin: -1rem !important;
  }

  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }

  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }

  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }

  .m-xl-n4 {
    margin: -1.5rem !important;
  }

  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }

  .m-xl-n5 {
    margin: -3rem !important;
  }

  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }

  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }

  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }

  .m-xl-n6 {
    margin: -5rem !important;
  }

  .mt-xl-n6,
  .my-xl-n6 {
    margin-top: -5rem !important;
  }

  .mr-xl-n6,
  .mx-xl-n6 {
    margin-right: -5rem !important;
  }

  .mb-xl-n6,
  .my-xl-n6 {
    margin-bottom: -5rem !important;
  }

  .ml-xl-n6,
  .mx-xl-n6 {
    margin-left: -5rem !important;
  }

  .m-xl-n7 {
    margin: -7.5rem !important;
  }

  .mt-xl-n7,
  .my-xl-n7 {
    margin-top: -7.5rem !important;
  }

  .mr-xl-n7,
  .mx-xl-n7 {
    margin-right: -7.5rem !important;
  }

  .mb-xl-n7,
  .my-xl-n7 {
    margin-bottom: -7.5rem !important;
  }

  .ml-xl-n7,
  .mx-xl-n7 {
    margin-left: -7.5rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }

  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }

  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.revealer-slide-top {
  opacity: 0;
  transform: translate(0, -30px);
}

.revealer-slide-top.is-animated {
  opacity: 1;
  transform: none;
  transition: all 1s;
}

.revealer-slide-right {
  opacity: 1;
  transform: translate(30px, 0);
}

.revealer-slide-right.is-animated {
  opacity: 1;
  transform: none;
  transition: all 1s;
}

.revealer-slide-bottom {
  opacity: 0;
  transform: translate(0, 30px);
}

.revealer-slide-bottom.is-animated {
  opacity: 1;
  transform: none;
  transition: all 1s;
}

.revealer-slide-left {
  opacity: 1;
  transform: translate(-30px, 0);
}

.revealer-slide-left.is-animated {
  opacity: 1;
  transform: none;
  transition: all 1s;
}

.revealer-slide-top-fast {
  opacity: 0;
  transform: translate(0, -20px);
}

.revealer-slide-top-fast.is-animated {
  opacity: 1;
  transform: none;
  transition: all 1s;
}

.revealer-slide-right-fast {
  opacity: 0;
  transform: translate(20px, 0);
}

.revealer-slide-right-fast.is-animated {
  opacity: 1;
  transform: none;
  transition: all 1s;
}

.revealer-slide-bottom-fast {
  opacity: 1;
  transform: translate(0, 20px);
}

.revealer-slide-bottom-fast.is-animated {
  opacity: 1;
  transform: none;
  transition: all 1s;
}

.revealer-slide-left-fast {
  opacity: 1;
  transform: translate(-20px, 0);
}

.revealer-slide-left-fast.is-animated {
  opacity: 1;
  transform: none;
  transition: all 1s;
}

.revealer-slide-top-left {
  opacity: 1;
  transform: translate(-30px, -30px);
}

.revealer-slide-top-left.is-animated {
  opacity: 1;
  transform: none;
  transition: all 1s;
}

.revealer-slide-top-right {
  opacity: 1;
  transform: translate(30px, -30px);
}

.revealer-slide-top-right.is-animated {
  opacity: 1;
  transform: none;
  transition: all 1s;
}

.revealer-slide-bottom-left {
  opacity: 0;
  transform: translate(-30px, 30px);
}

.revealer-slide-bottom-left.is-animated {
  opacity: 1;
  transform: none;
  transition: all 1s;
}

.revealer-slide-bottom-right {
  opacity: 0;
  transform: translate(30px, 30px);
}

.revealer-slide-bottom-right.is-animated {
  opacity: 1;
  transform: none;
  transition: all 1s;
}

.revealer-slide-top-left-fast {
  opacity: 0;
  transform: translate(-20px, -20px);
}

.revealer-slide-top-left-fast.is-animated {
  opacity: 1;
  transform: none;
  transition: all 1s;
}

.revealer-slide-top-right-fast {
  opacity: 0;
  transform: translate(20px, -20px);
}

.revealer-slide-top-right-fast.is-animated {
  opacity: 1;
  transform: none;
  transition: all 1s;
}

.revealer-slide-bottom-left-fast {
  opacity: 0;
  transform: translate(-20px, 20px);
}

.revealer-slide-bottom-left-fast.is-animated {
  opacity: 1;
  transform: none;
  transition: all 1s;
}

.revealer-slide-bottom-right-fast {
  opacity: 0;
  transform: translate(20px, 20px);
}

.revealer-slide-bottom-right-fast.is-animated {
  opacity: 1;
  transform: none;
  transition: all 1s;
}

.clearfix::before,
.clearfix::after {
  display: table;
  content: "";
}

.clearfix::after {
  clear: both;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  color: #333333;
  font-size: 14px;
  font-family: "微软雅黑", "PingFang SC", Verdana, Arial, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

@media print {
  .noprint {
    display: none;
  }

  .print-title {
    width: 85%;
    margin: 0 auto;
    font-size: 20pt !important;
  }

  .print-w {
    width: 95%;
    margin: 0 auto;
    margin-left: -50pt;

  }

  .e-header__wrapper {
    width: 100%;
    margin-left: -50pt !important;
    transform: scale(0.8);
  }

  .grd__element__class {

    margin-left: -50pt !important;

  }

  a:not(.print-a):after {
    content: "" !important;
  }
}

.e-logo {
  display: block;
  width: calc(240rem / 14);
  height: 60px;
  margin-top: 15px;
  overflow: hidden;
}

.e-logo>img {
  width: 100%;
}

.e-p-primary {
  color: #333333;
  font-size: 16px;
  font-weight: 300;
  text-align: justify;
}

.e-p-large {
  color: #333333;
  font-size: 18px;
  font-weight: 300;
  text-align: justify;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.big-banner-height {
  height: 500px;
}

.e-gradient-title {
  border-bottom: 2px solid #1eb9e1;
}

.e-gradient-title>span {
  display: inline-block;
  position: relative;
  padding: 15px 0;
  font-weight: 300;
  line-height: 1.4;
}

.e-gradient-title>span::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ffc819;
  content: "";
}

.e-content {
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  background: #F8FAFD;
}

.e-container {
  width: 100%;

  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  transition: padding 0.2s, max-width 0.3s;
}

.e-block {
  margin-top: 5.4rem;
  margin-bottom: 5.4rem;
}

.e-block.is-mask-bg {
  position: relative;
  padding-top: 6.4rem;
  padding-bottom: 6.4rem;
  background-image: inherit;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.e-general-paragraph {
  padding: 18px 0;
  color: #666666;
  font-size: 14px;
  line-height: 1.5;
}

.e-general-graphic .e-general-graphic__item {
  height: 110px;
}

.e-general-graphic .e-general-graphic__item::before,
.e-general-graphic .e-general-graphic__item::after {
  display: table;
  content: "";
}

.e-general-graphic .e-general-graphic__item::after {
  clear: both;
}

.e-general-graphic .e-general-graphic__item {
  margin-top: 20px;
}

.e-general-graphic .e-general-graphic__item-container {
  display: inline-block;
  height: 100%;
}

.e-general-graphic .e-general-graphic__item-container::before,
.e-general-graphic .e-general-graphic__item-container::after {
  display: table;
  content: "";
}

.e-general-graphic .e-general-graphic__item-container::after {
  clear: both;
}

.e-general-graphic .e-general-graphic__picture {
  float: left;
  width: 165px;
  height: 100%;
  overflow: hidden;
}

.e-general-graphic .e-general-graphic__picture>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s;
}

.e-general-graphic .e-general-graphic__picture .e-general-graphic__pictureInner {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  object-fit: cover;
  transition: all 0.6s;
}

.e-general-graphic .e-general-graphic__content {
  position: relative;
  float: left;
  padding: 10px 20px 20px;
  padding-right: 0;
  width: calc(100% - 165px);
  height: 100%;
}

.e-general-graphic .e-general-graphic__content>h3 {
  margin-bottom: 5px;
  color: #333333;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.e-general-graphic .e-general-graphic__content,
.e-general-graphic .e-general-graphic__content>p {
  color: #666666;
  font-size: 14px;
  line-height: 1.5;
}

.e-general-graphic .e-general-graphic__content>p {
  display: -webkit-box;
  height: 42px;
  white-space: normal;
  word-wrap: break-word;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.e-general-graphic .e-general-graphic__header {
  width: 100%;
  overflow: hidden;
}

.e-general-graphic .e-general-graphic__title {
  display: inline-block;
  float: left;
  color: #333;
  /*font-weight: bold;*/
  line-height: 22px;
}

.e-general-graphic .e-general-graphic__date {
  display: inline-block;
  float: right;
  color: #7a7a7a;
  font-size: 12px;
}

.e-general-graphic .e-general-graphic__link {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #005096;
}

.e-general-graphic .e-general-graphic__span {
  display: inline-block;
  vertical-align: middle;
}

.e-general-graphic .e-general-graphic__arrow {

  vertical-align: middle;





  display: inline-block;
  width: 8px;
  height: 13px;
  background: url("../assets/images/icons/icon_angle_right_primary.png") no-repeat 100%;
}

.e-general-graphic .e-general-graphic_fontsize {
  margin-top: 6px;
  font-size: 18px;
}

.e-side-graphic .e-side-graphic__wrapper {
  width: 100%;
  height: 455px;
}

.e-side-graphic .e-side-graphic__left,
.e-side-graphic .e-side-graphic__right {
  float: left;
  position: relative;
  width: 50%;
  height: 100%;
  line-height: 1.75;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.e-side-graphic .e-side-graphic__left>img,
.e-side-graphic .e-side-graphic__right>img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  object-fit: cover;
  transform: translate(-50%, -50%);
  transition: all 0.6s;
}

.e-side-graphic .e-side-graphic__left .e-side-graphic__pictureInner,
.e-side-graphic .e-side-graphic__right .e-side-graphic__pictureInner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  object-fit: cover;
  transform: translate(-50%, -50%);
  transition: all 0.6s;
}

.e-side-graphic .e-side-graphic__left .e-side-graphic__inner,
.e-side-graphic .e-side-graphic__right .e-side-graphic__inner {
  position: absolute;
  top: 50%;
  left: 40px;
  right: 40px;
  transform: translateY(-50%);
}

.e-side-graphic.is-reverse .e-side-graphic__left,
.e-side-graphic.is-reverse .e-side-graphic__right {
  float: right;
}

.e-side-graphic .e-side-graphic__left.is-has-mask {
  overflow: visible;
  z-index: 1;
}

.e-side-graphic .e-side-graphic__left.is-has-mask::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 100%;
  background-image: linear-gradient(to right, #f8fafd 84%, transparent);
  z-index: -1;
  content: '';
}

.e-side-graphic.is-reverse .e-side-graphic__left.is-has-mask::after {
  right: 0;
  left: auto;
  background-image: linear-gradient(to left, #f8fafd 84%, transparent);
}

.e-side-graphic.is-hover .e-side-graphic__left:hover>img,
.e-side-graphic.is-hover .e-side-graphic__right:hover>img {
  transform: scale(1.2);
}

.e-side-graphic.is-hover .e-side-graphic__left:hover .e-side-graphic__pictureInner,
.e-side-graphic.is-hover .e-side-graphic__right:hover .e-side-graphic__pictureInner {
  transform: scale(1.2);
}

.e-side-graphic-list .e-side-graphic+.e-side-graphic {
  margin-top: 40px;
}

.e-ol-graphic {
  padding: calc(16rem / 14) calc(30rem / 14);
}

.e-ol-graphic .e-ol-graphic__item {
  position: relative;
  margin-left: 15px;
  padding: 26px 0;
  border-bottom: 1px solid #dcdfe6;
}

.e-ol-graphic .e-ol-graphic__item::after {
  position: absolute;
  top: 35px;
  left: -10px;
  width: 4px;
  height: 4px;
  background-color: #005096;
  content: "";
}

.e-ol-graphic .e-ol-graphic__item .topFlag {
  display: inline-block;
  width: 14px;
  height: 18px;
  background: url(../assets/images/icons/topflag.png) no-repeat center;
  background-size: 100%;
  position: absolute;
  top: 6px;
  left: 0;
}

.e-ol-graphic .e-ol-graphic__item:last-child {
  border-bottom: none;
}

.e-ol-graphic .e-ol-graphic__item>a {
  display: inline-block;
  width: 100%;
}

.e-ol-graphic .e-ol-graphic__content {
  display: inline-block;
  max-width: 80%;
  color: #005096;
  font-size: 18px;
  line-height: 28px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  padding-left: 25px;
}

.notin-ie .e-ol-graphic .e-ol-graphic__content {
  display: -webkit-box;
  white-space: normal;
  word-wrap: break-word;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.e-ol-graphic .e-ol-graphic__suffix {
  position: absolute;
  top: 50%;
  right: 0;
  color: #7a7a7a;
  font-size: 12px;
  transform: translateY(-50%);
}

.e-general-guide-block {
  padding: 12% 10% 0 10%;
  width: 100%;
  height: calc(300rem / 14);
  background-repeat: no-repeat;
  background-size: cover;
}

.e-general-guide-block::after {
  content: "";
  width: 96%;
  height: 100%;
  position: absolute;
  left: 8px;
  top: 7px;
  background: inherit;
  filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0)) blur(12px);
  opacity: 0.42;
  z-index: -1;
}

.e-general-guide-block>h2 {
  margin-bottom: 25px;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
}

.e-general-guide-block .e-general-guide-block__title {
  margin-bottom: 24px;
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
}

.e-general-guide-block .e-general-guide-block__content {
  margin-bottom: 34px;
  color: #ffffff;
  font-size: 40px;
  font-weight: 200;
  line-height: 1.2;
  letter-spacing: 1.4px;
}

@media screen and (max-width: 1440px) {
  .e-general-guide-block .e-general-guide-block__content {
    font-size: 42px;
  }
}

.e-general-guide-block .e-general-guide-block__link {
  display: inline-block;
  height: 30px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 200;
  line-height: 1;
  letter-spacing: 1px;
}

.e-general-guide-block .e-general-guide-block__link,
.e-general-guide-block .e-general-guide-block__link:hover {
  text-decoration: none;
}

@media screen and (max-width: 1440px) {
  .e-general-guide-block .e-general-guide-block__link {
    font-size: 15px;
  }
}

.e-general-guide-block .e-general-guide-block__link>i,
.e-general-guide-block .e-general-guide-block__link>[class*=e-icon-] {
  margin-left: 10px;
  transform: translateY(7px);
}

.e-fund-pane {
  position: relative;
  margin-bottom: 30px;
  height: 440px;
}

.e-fund-pane .e-fund-pane__wrapper {
  width: 100%;
  height: 100%;
  padding: calc(20rem / 14) calc(30rem / 14) calc(25rem / 14);
  background-color: #f8fafd;
}

.e-fund-pane .e-fund-pane__header {
  width: 100%;
  height: 92px;
  padding: 25px 0 10px;
  color: #2c3c57;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2;
  border-bottom: 1px solid #dcdfe6;
  display: -webkit-box;
  white-space: normal;
  word-wrap: break-word;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.e-fund-pane .e-fund-pane__header a {
  display: inline-block;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  white-space: normal;
  word-wrap: break-word;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.e-fund-pane .e-fund-pane__content {
  position: relative;
  min-height: 260px;
  padding: 12px 0 135px;
}

.e-fund-pane .e-fund-pane__content-bottom {
  position: absolute;
  bottom: 18px;
  left: 0;
}

.e-fund-pane .e-fund-pane__footer {
  width: 100%;
  height: 40px;
}

.e-fund-pane .e-fund-pane__footer .e-button,
.e-fund-pane .e-fund-pane__footer button,
.e-fund-pane .e-fund-pane__footer a {
  width: 100%;
  height: 100%;
}

.e-fund-pane .e-fund-pane__volatility {
  position: relative;
  margin-bottom: 20px;
  font-size: 50px;
  line-height: 1;
}

.e-fund-pane .e-fund-pane__unit {
  font-size: 50%;
}

.e-fund-pane .e-fund-pane__desc {
  margin-bottom: 8px;
  color: #7a7a7a;
  font-size: 14px;
  line-height: 1.2;
}

.e-fund-pane .e-fund-pane__remind {
  display: inline-block;
  width: auto;
  max-width: 100%;
  margin-bottom: 10px;
  padding: 7px 17px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  line-height: 1;
  background-color: #24bbe1;
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.e-fund-pane .e-fund-pane__aspect {
  margin-bottom: 10px;
  color: #24bbe1;
  font-size: 14px;
}

.e-fund-pane .e-fund-pane__aspect>span {
  display: inline-block;
  position: relative;
  white-space: nowrap;
  cursor: pointer;
}

.e-fund-pane .e-fund-pane__aspect>span::before,
.e-fund-pane .e-fund-pane__aspect>span::after {
  display: table;
  content: "";
}

.e-fund-pane .e-fund-pane__aspect>span::after {
  clear: both;
}

.e-fund-pane .e-fund-pane__aspect>span>span {
  display: inline-block;
  transform: translateY(-4px);
}

.e-fund-pane-wrapper[data-e-revealer]:nth-child(4n-1),
.e-fund-pane-wrapper[data-e-revealer]:nth-child(4n) {
  opacity: 0;
  transform: translate(40px, 20px);
}

.e-fund-pane-wrapper[data-e-revealer]:nth-child(4n+1),
.e-fund-pane-wrapper[data-e-revealer]:nth-child(4n+2) {
  opacity: 0;
  transform: translate(-20px, 20px);
}

.e-fund-pane-wrapper[data-e-revealer].is-animated {
  transform: none;
  opacity: 1;
  transition: 0.6s 0.1s;
}

.e-fund-pane-wrapper[data-e-revealer].is-animated:nth-child(4n),
.e-fund-pane-wrapper[data-e-revealer].is-animated:nth-child(4n+1) {
  transition: 0.6s 0.2s;
}

.e-fund-pane-popover {
  position: fixed;
  top: 0;
  left: 100%;
  width: 340px;
  transform: scaleX(0.8);
  transform-origin: 100% 0%;
  opacity: 0;
  transition: opacity 211ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, transform 141ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  pointer-events: none;
  z-index: 2;
}

.e-fund-pane-popover .e-fund-pane-popover__wrapper {
  padding: 26px 30px;
  color: #eff2f6;
  font-size: 16px;
  line-height: 1.5;
  background-color: #005096;
  border-bottom: 3px solid #ffc819;
}

.e-fund-pane-popover .e-fund-pane-popover__title {
  margin-bottom: 12px;
  padding-bottom: 15px;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  border-bottom: 1px solid #3373ab;
}

.e-fund-pane-popover .e-fund-pane-popover__content {
  padding: 5px 0;
  color: #eff2f6;
  font-size: 16px;
  line-height: 1.5;
}

.e-fund-pane-popover .e-fund-pane-popover__content a {
  color: #eff2f6;
  font-size: 16px;
  line-height: 1.5;
}

.e-fund-pane-popover .e-fund-pane-popover__note {
  margin-top: 25px;
  color: #b8c5d9;
  font-size: 12px;
  line-height: 1.5;
}

.e-fund-pane-popover [x-arrow] {
  color: #005096;
}

.e-fund-pane-popover.is-popover-show {
  transform: scaleX(1);
  transform-origin: 100% 0%;
  opacity: 1;
  pointer-events: all;
}

.e-fund-pane-popover.is-remind {
  max-width: 250px;
}

.e-fund-pane-popover[x-placement^=top] {
  transform: scaleY(0.7);
  transform-origin: 0% 100%;
}

.e-fund-pane-popover[x-placement^=top].is-popover-show {
  transform: scaleY(1);
  transform-origin: 0% 100%;
}

.e-fund-pane-popover[x-placement^=bottom] {
  transform: scaleY(0.7);
  transform-origin: 0% 0;
}

.e-fund-pane-popover[x-placement^=bottom].is-popover-show {
  transform: scaleY(1);
  transform-origin: 0% 0%;
}

.e-fund-pane-popover[x-placement^=left] {
  transform: scaleX(0.7);
  transform-origin: 100% 0%;
}

.e-fund-pane-popover[x-placement^=left].is-popover-show {
  transform: scaleX(1);
  transform-origin: 100% 0%;
}

.e-fund-pane-popover[x-placement^=right] {
  transform-origin: 0% 0%;
  transform: scaleX(0.7);
}

.e-fund-pane-popover[x-placement^=right].is-popover-show {
  transform-origin: 0% 0%;
  transform: scaleX(1);
}

.e-fund__color--increase {
  color: #ee1533;
}

.e-fund__color--decrease {
  color: #009b6d;
}

.e-fund__color--increase-o {
  color: #ee1533;
}

.e-fund__color--decrease-o {
  color: #009b6d;
}

.e-detail-banner {
  height: 240px;
}

.e-detail-banner.is-big {
  height: 500px;
}

.in-big-scale .e-detail-banner.is-big {
  height: 400px;
}

@media screen and (max-width: 1440px) {
  .e-detail-banner.is-big {
    height: 400px;
  }
}

.e-detail-banner.is-pure-color .e-detail-banner__wrapper::before {
  background: linear-gradient(to right, #00427a 30%, rgba(0, 66, 122, 0.8) 40%, rgba(0, 66, 122, 0.6) 46%, transparent 60%), linear-gradient(to right, rgba(0, 0, 0, 0.1) 100%, transparent);
  z-index: 1;
}

.e-detail-banner.is-has-mask .e-detail-banner__wrapper::before {
  background: linear-gradient(to right, #00427a 15%, rgba(0, 66, 122, 0.8) 26%, rgba(0, 66, 122, 0.4) 43%, transparent 60%), linear-gradient(to right, rgba(0, 0, 0, 0.26) 100%, transparent);
  z-index: 1;
}

.e-detail-banner .e-detail-banner__wrapper {
  width: 100%;
  min-width: 1260px;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  position: relative;
  background-image: url(../assets/images/detail_banner_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.e-detail-banner .e-detail-banner__wrapper::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
  content: "";
}

.e-detail-banner .e-detail-banner__wrapper::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  content: "";
}

.e-detail-banner .e-detail-banner__container {
  width: 100%;
  min-width: 1260px;
  max-width: 1420px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  transition: padding 0.2s, max-width 0.3s;
  position: relative;
  height: 100%;
  padding: 20px 0;
  z-index: 2;
}

@media screen and (min-width: 576px) {
  .e-detail-banner .e-detail-banner__container {
    max-width: 540px;
  }
}

@media screen and (min-width: 768px) {
  .e-detail-banner .e-detail-banner__container {
    max-width: 684px;
  }
}

@media screen and (min-width: 992px) {
  .e-detail-banner .e-detail-banner__container {
    max-width: 960px;
  }
}

@media screen and (min-width: 1200px) {
  .e-detail-banner .e-detail-banner__container {
    max-width: 1140px;
  }
}

@media screen and (min-width: 1360px) {
  .e-detail-banner .e-detail-banner__container {
    max-width: 1260px;
  }
}

@media screen and (min-width: 1480px) {
  .e-detail-banner .e-detail-banner__container {
    max-width: 1440px;
  }
}

.e-detail-banner .e-detail-banner__header {
  position: relative;
  width: 100%;
  z-index: 2;
}

.e-detail-banner .e-detail-banner__content {
  position: relative;
  padding: 24px 0;
  height: calc(100% - 30px);
  letter-spacing: 1px;
}

.e-detail-banner .e-detail-banner__content.is-sigle-title {
  padding-left: 20px;
}

.e-detail-banner .e-detail-banner__content h2 {
  display: inline-block;
  margin: 6px 0;
  color: #ffffff;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.4;
}

.e-detail-banner .e-detail-banner__content h2+h2 {
  margin-top: 0;
}

.e-detail-banner .e-detail-banner__content p {
  margin: 10px 0;
  color: #ffffff;
  font-size: 14px;
}

.e-detail-banner .e-detail-banner__title {
  position: absolute;
  top: 50%;
  color: #ffffff;
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 2px;
  transform: translateY(-50%);
}

.e-detail-banner .e-detail-banner__title h2 {
  color: #ffffff;
  font-size: 48px;
  font-weight: 300;
}

.e-detail-banner .e-detail-banner__title p {
  margin: 10px 0;
  color: #ffffff;
  font-size: 14px;
}

.e-detail-banner .e-detail-banner__bottom {
  position: absolute;
  bottom: 20px;
  line-height: 1;
  transition: all 0.2s;
  z-index: 2;
}

.e-detail-banner .e-detail-banner__bottom>span {
  color: #a5b7d0;
  font-size: 14px;
}

.e-detail-banner .e-detail-banner__bottom>span+span {
  margin-left: 35px;
}

.e-detail-banner .e-detail-banner__tags {
  display: inline-block;
  width: 100%;
  margin-bottom: 5px;
  padding: 8px 0 12px;
  font-size: 13px;
}

.e-detail-banner .e-detail-banner__tags>span {
  padding: 6px;
  background: rgba(0, 0, 0, 0.2);
  color: #ffffff;
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 5px solid #ffc819;
}

.e-detail-banner .e-detail-banner__tags>span+span {
  margin-left: 10px;
}

.e-detail-banner .e-detail-banner__labels {
  display: inline-block;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 5px;
  padding: 8px 0 12px;
  letter-spacing: 0;
}

.e-detail-banner__label {
  display: inline-block;
  padding: 0 16px;
  height: 25px;
  line-height: 22px;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.8px;
  background: #005096;
  border: 1px solid #005096;
}

.e-detail-banner__label+.e-detail-banner__label {
  margin-left: 10px;
}

.e-detail-banner__label.e-detail-banner__label--info {
  color: #ffffff;
  background: #24bbe1;
  border-color: #24bbe1;
}

.e-detail-banner__label.e-detail-banner__label--info.is-plain {
  color: #24bbe1;
  background: transparent;
}

.e-detail-banner__label.is-plain {
  color: #005096;
  background: transparent;
}

@media print {

  .e-detail-banner .e-detail-banner__title,
  .e-detail-banner .e-detail-banner__title h2,
  .e-detail-banner .e-detail-banner__title p {
    color: #333333;
  }

  .e-detail-banner .e-detail-banner__bottom>span {
    color: #333333;
  }
}

.e-breadcrumbs,
.e-breadcrumbs .e-breadcrumbs__list {
  line-height: 1;
  font-size: 12px;
}

.e-breadcrumbs .e-breadcrumbs__list::before,
.e-breadcrumbs .e-breadcrumbs__list::after {
  display: table;
  content: "";
}

.e-breadcrumbs .e-breadcrumbs__list::after {
  clear: both;
}

.e-breadcrumbs .e-breadcrumbs__item {
  float: left;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  letter-spacing: 1px;
}

.e-breadcrumbs .e-breadcrumbs__item>a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.e-breadcrumbs .e-breadcrumbs__item>a,
.e-breadcrumbs .e-breadcrumbs__item>a:hover {
  text-decoration: none;
}

.e-breadcrumbs .e-breadcrumbs__divider {
  float: left;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.e-breadcrumbs>a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.e-breadcrumbs>a,
.e-breadcrumbs>a:hover {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  text-decoration: none;
}

.e-breadcrumbs>span {
  display: inline-block;
  padding: 0 12px !important;
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 12px;
}

.e-pagination {
  margin: 0;
  margin-top: -8px;
  padding: 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
}

.e-pagination .e-pagination-item {
  display: inline-block;
  padding: 0 2px;
  margin: 8px 8px 0 0;
  min-width: 40px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  vertical-align: middle;
  list-style: none;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  outline: 0;
  cursor: pointer;
  user-select: none;
}

.e-pagination .e-pagination-item>a {
  display: block;
  padding: 0 6px;
  color: rgba(0, 0, 0, 0.85);
  transition: none;
}

.e-pagination .e-pagination-item.is-active {
  color: #005096;
  font-weight: bold;
  border-color: #005096;
  transition: all 0.3s;
}

.e-pagination .e-pagination-item:hover,
.e-pagination .e-pagination-item:focus {
  border-color: #005096;
  transition: all 0.3s;
}

.e-pagination .e-pagination-prev {
  display: inline-block;
  margin: 8px 8px 0 0;
  min-width: 32px;
  height: 32px;
  color: rgba(0, 0, 0, 0.85);
  line-height: 32px;
  text-align: center;
  vertical-align: middle;
  list-style: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
}

.e-pagination .e-pagination-prev:hover .e-pagination-item-link,
.e-pagination .e-pagination-prev:focus .e-pagination-item-link {
  color: #005096;
  border-color: #005096;
}

.e-pagination .e-pagination-prev.is-disabled .e-pagination-item-link {
  color: rgba(0, 0, 0, 0.25);
  border-color: #d9d9d9;
  cursor: not-allowed;
}

.e-pagination .e-pagination-prev.is-disabled:hover .e-pagination-item-link,
.e-pagination .e-pagination-prev.is-disabled:focus-visible .e-pagination-item-link {
  color: rgba(0, 0, 0, 0.25);
  border-color: #d9d9d9;
  cursor: not-allowed;
}

.e-pagination .e-pagination-next {
  display: inline-block;
  margin: 8px 8px 0 0;
  min-width: 36px;
  height: 32px;
  color: rgba(0, 0, 0, 0.85);
  line-height: 32px;
  text-align: center;
  vertical-align: middle;
  list-style: none;
  cursor: pointer;
  transition: all 0.3s;
}

.e-pagination .e-pagination-next:hover .e-pagination-item-link,
.e-pagination .e-pagination-next:focus .e-pagination-item-link {
  color: #005096;
  border-color: #005096;
}

.e-pagination .e-pagination-next.is-disabled .e-pagination-item-link {
  color: rgba(0, 0, 0, 0.25);
  border-color: #d9d9d9;
  cursor: not-allowed;
}

.e-pagination .e-pagination-next.is-disabled:hover .e-pagination-item-link,
.e-pagination .e-pagination-next.is-disabled:focus-visible .e-pagination-item-link {
  color: rgba(0, 0, 0, 0.25);
  border-color: #d9d9d9;
  cursor: not-allowed;
}

.e-pagination .e-pagination-front {
  display: inline-block;
  margin: 8px 8px 0 0;
  min-width: 32px;
  height: 32px;
  color: rgba(0, 0, 0, 0.85);
  line-height: 32px;
  text-align: center;
  vertical-align: middle;
  list-style: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
}

.e-pagination .e-pagination-front:hover .e-pagination-item-link,
.e-pagination .e-pagination-front:focus .e-pagination-item-link {
  color: #005096;
  border-color: #005096;
}

.e-pagination .e-pagination-front.is-disabled .e-pagination-item-link {
  color: rgba(0, 0, 0, 0.25);
  border-color: #d9d9d9;
  cursor: not-allowed;
}

.e-pagination .e-pagination-front.is-disabled:hover .e-pagination-item-link,
.e-pagination .e-pagination-front.is-disabled:focus-visible .e-pagination-item-link {
  color: rgba(0, 0, 0, 0.25);
  border-color: #d9d9d9;
  cursor: not-allowed;
}

.e-pagination .e-pagination-last {
  display: inline-block;
  margin: 8px 8px 0 0;
  min-width: 32px;
  height: 32px;
  color: rgba(0, 0, 0, 0.85);
  line-height: 32px;
  text-align: center;
  vertical-align: middle;
  list-style: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
}

.e-pagination .e-pagination-last:hover .e-pagination-item-link,
.e-pagination .e-pagination-last:focus .e-pagination-item-link {
  color: #005096;
  border-color: #005096;
}

.e-pagination .e-pagination-last.is-disabled .e-pagination-item-link {
  color: rgba(0, 0, 0, 0.25);
  border-color: #d9d9d9;
  cursor: not-allowed;
}

.e-pagination .e-pagination-last.is-disabled:hover .e-pagination-item-link,
.e-pagination .e-pagination-last.is-disabled:focus-visible .e-pagination-item-link {
  color: rgba(0, 0, 0, 0.25);
  border-color: #d9d9d9;
  cursor: not-allowed;
}

.e-pagination .e-pagination-jump-prev {
  display: inline-block;
  margin: 8px 8px 0 0;
  min-width: 32px;
  height: 32px;
  color: rgba(0, 0, 0, 0.85);
  line-height: 32px;
  text-align: center;
  vertical-align: middle;
  list-style: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
}

.e-pagination .e-pagination-jump-prev:hover .e-pagination-item-link,
.e-pagination .e-pagination-jump-prev:focus .e-pagination-item-link {
  color: #005096;
  border-color: #005096;
}

.e-pagination .e-pagination-jump-prev.is-disabled .e-pagination-item-link {
  color: rgba(0, 0, 0, 0.25);
  border-color: #d9d9d9;
  cursor: not-allowed;
}

.e-pagination .e-pagination-jump-prev.is-disabled:hover .e-pagination-item-link,
.e-pagination .e-pagination-jump-prev.is-disabled:focus-visible .e-pagination-item-link {
  color: rgba(0, 0, 0, 0.25);
  border-color: #d9d9d9;
  cursor: not-allowed;
}

.e-pagination .e-pagination-jump-next {
  display: inline-block;
  margin: 8px 8px 0 0;
  min-width: 32px;
  height: 32px;
  color: rgba(0, 0, 0, 0.85);
  line-height: 32px;
  text-align: center;
  vertical-align: middle;
  list-style: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
}

.e-pagination .e-pagination-jump-next:hover .e-pagination-item-link,
.e-pagination .e-pagination-jump-next:focus .e-pagination-item-link {
  color: #005096;
  border-color: #005096;
}

.e-pagination .e-pagination-jump-next.is-disabled .e-pagination-item-link {
  color: rgba(0, 0, 0, 0.25);
  border-color: #d9d9d9;
  cursor: not-allowed;
}

.e-pagination .e-pagination-jump-next.is-disabled:hover .e-pagination-item-link,
.e-pagination .e-pagination-jump-next.is-disabled:focus-visible .e-pagination-item-link {
  color: rgba(0, 0, 0, 0.25);
  border-color: #d9d9d9;
  cursor: not-allowed;
}

.e-pagination .e-pagination-prev .e-pagination-item-link {
  display: block;
  padding: 0 calc(15rem / 14);
  width: 100%;
  height: 100%;
  background-color: #fff;
  font-size: 12px;
  text-align: center;
  border: 1px solid #d9d9d9;
  outline: none;
  transition: all 0.3s;
}

.e-pagination .e-pagination-next .e-pagination-item-link {
  display: block;
  padding: 0 calc(15rem / 14);
  width: 100%;
  height: 100%;
  background-color: #fff;
  font-size: 12px;
  text-align: center;
  border: 1px solid #d9d9d9;
  outline: none;
  transition: all 0.3s;
}

.e-pagination .e-pagination-jump-prev .e-pagination-item-link {
  display: block;
  padding: 0 calc(14rem / 14);
  width: 100%;
  height: 100%;
  background-color: #fff;
  font-size: 12px;
  text-align: center;
  border: 1px solid #d9d9d9;
  outline: none;
  transition: all 0.3s;
}

.e-pagination .e-pagination-jump-next .e-pagination-item-link {
  display: block;
  padding: 0 calc(14rem / 14);
  width: 100%;
  height: 100%;
  background-color: #fff;
  font-size: 12px;
  text-align: center;
  border: 1px solid #d9d9d9;
  outline: none;
  transition: all 0.3s;
}

.e-pagination .e-pagination-front .e-pagination-item-link {
  display: block;
  padding: 0 calc(14rem / 14);
  width: 100%;
  height: 100%;
  background-color: #fff;
  font-size: 12px;
  text-align: center;
  border: 1px solid #d9d9d9;
  outline: none;
  transition: all 0.3s;
}

.e-pagination .e-pagination-last .e-pagination-item-link {
  display: block;
  padding: 0 calc(14rem / 14);
  width: 100%;
  height: 100%;
  background-color: #fff;
  font-size: 12px;
  text-align: center;
  border: 1px solid #d9d9d9;
  outline: none;
  transition: all 0.3s;
}

.e-pagination .e-pagination-quick-jumper {
  display: inline-block;
  margin-top: 8px;
  vertical-align: middle;
}

.e-pagination .e-pagination-quick-jumper input {
  display: inline-block;
  position: relative;
  width: calc(65rem / 14);
  height: 32px;
  margin: 0 8px;
  padding: 4px 11px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  line-height: 1.5715;
  background-color: #fff;
  background-image: none;
  border: 1px solid #d9d9d9;
  transition: all 0.3s;
}

.e-pagination .e-pagination-quick-jumper input:hover,
.e-pagination .e-pagination-quick-jumper input:focus {
  border-color: #005096;
}

.e-pagination .e-pagination-quick-jumper button {
  display: inline-block;
  height: 32px;
  padding: 0 14px;
  color: #ffffff;
  font-size: 14px;
  line-height: normal;
  background: #005096;
  border: 1px solid #005096;
  outline: none;
  transition: 0.1s;
}

.e-pagination .e-pagination-quick-jumper button:hover,
.e-pagination .e-pagination-quick-jumper button:focus {
  background: #3373ab;
}

.e-pagination .e-pagination-quick-jumper+.e-pagination-prev {
  margin-left: 8px;
}

.e-pagination .e-pagination-size-options {
  display: inline-block;
  margin: 8px 8px 0 0;
}

.e-pagination .e-pagination-size-options label {
  display: inline-block;
  padding: 0 5px;
  margin-right: 8px;
  min-width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  vertical-align: middle;
  list-style: none;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  outline: 0;
  cursor: pointer;
  user-select: none;
}

.e-pagination .e-pagination-size-options label.is-checked {
  color: #005096;
  font-weight: bold;
  border-color: #005096;
  transition: all 0.3s;
}

.e-pagination .e-pagination-size-options label:hover,
.e-pagination .e-pagination-size-options label:focus {
  border-color: #005096;
  transition: all 0.3s;
}

.e-pagination .e-pagination-size-options input[type=radio] {
  display: none;
}

.e-pagination .e-pagination-total-text {
  display: inline-block;
  height: 32px;
  margin: 8px 8px 0;
  line-height: 32px;
  vertical-align: middle;
}

.e-pagination .e-pagination-simple {
  display: inline-block;
  margin: 8px 8px 0 0;
  color: #999999;
  font-size: 14px;
  vertical-align: middle;
}

.e-pagination .e-pagination-simple .e-pagination-simple-current {
  padding: 0 5px;
}

.e-pagination .e-pagination-simple .e-pagination-simple-all {
  padding: 0 5px;
}

.e-pagination .e-pagination-simple .e-pagination-simple-current {
  color: #333333;
}

.e-pagination.is-disabled {
  color: rgba(0, 0, 0, 0.25);
}

.e-pagination.is-disabled .e-pagination-prev {
  color: rgba(0, 0, 0, 0.25);
  background: #f5f5f5;
  border-color: #d9d9d9;
  cursor: not-allowed;
}

.e-pagination.is-disabled .e-pagination-prev .e-pagination-item-link {
  color: rgba(0, 0, 0, 0.25);
  background: #f5f5f5;
  border-color: #d9d9d9;
  cursor: not-allowed;
}

.e-pagination.is-disabled .e-pagination-prev:hover .e-pagination-item-link,
.e-pagination.is-disabled .e-pagination-prev:focus .e-pagination-item-link {
  color: rgba(0, 0, 0, 0.25);
  background: #f5f5f5;
  border-color: #d9d9d9;
  cursor: not-allowed;
}

.e-pagination.is-disabled .e-pagination-next {
  color: rgba(0, 0, 0, 0.25);
  background: #f5f5f5;
  border-color: #d9d9d9;
  cursor: not-allowed;
}

.e-pagination.is-disabled .e-pagination-next .e-pagination-item-link {
  color: rgba(0, 0, 0, 0.25);
  background: #f5f5f5;
  border-color: #d9d9d9;
  cursor: not-allowed;
}

.e-pagination.is-disabled .e-pagination-next:hover .e-pagination-item-link,
.e-pagination.is-disabled .e-pagination-next:focus .e-pagination-item-link {
  color: rgba(0, 0, 0, 0.25);
  background: #f5f5f5;
  border-color: #d9d9d9;
  cursor: not-allowed;
}

.e-pagination.is-disabled .e-pagination-front {
  color: rgba(0, 0, 0, 0.25);
  background: #f5f5f5;
  border-color: #d9d9d9;
  cursor: not-allowed;
}

.e-pagination.is-disabled .e-pagination-front .e-pagination-item-link {
  color: rgba(0, 0, 0, 0.25);
  background: #f5f5f5;
  border-color: #d9d9d9;
  cursor: not-allowed;
}

.e-pagination.is-disabled .e-pagination-front:hover .e-pagination-item-link,
.e-pagination.is-disabled .e-pagination-front:focus .e-pagination-item-link {
  color: rgba(0, 0, 0, 0.25);
  background: #f5f5f5;
  border-color: #d9d9d9;
  cursor: not-allowed;
}

.e-pagination.is-disabled .e-pagination-last {
  color: rgba(0, 0, 0, 0.25);
  background: #f5f5f5;
  border-color: #d9d9d9;
  cursor: not-allowed;
}

.e-pagination.is-disabled .e-pagination-last .e-pagination-item-link {
  color: rgba(0, 0, 0, 0.25);
  background: #f5f5f5;
  border-color: #d9d9d9;
  cursor: not-allowed;
}

.e-pagination.is-disabled .e-pagination-last:hover .e-pagination-item-link,
.e-pagination.is-disabled .e-pagination-last:focus .e-pagination-item-link {
  color: rgba(0, 0, 0, 0.25);
  background: #f5f5f5;
  border-color: #d9d9d9;
  cursor: not-allowed;
}

.e-pagination.is-disabled .e-pagination-jump-prev {
  color: rgba(0, 0, 0, 0.25);
  background: #f5f5f5;
  border-color: #d9d9d9;
  cursor: not-allowed;
}

.e-pagination.is-disabled .e-pagination-jump-prev .e-pagination-item-link {
  color: rgba(0, 0, 0, 0.25);
  background: #f5f5f5;
  border-color: #d9d9d9;
  cursor: not-allowed;
}

.e-pagination.is-disabled .e-pagination-jump-prev:hover .e-pagination-item-link,
.e-pagination.is-disabled .e-pagination-jump-prev:focus .e-pagination-item-link {
  color: rgba(0, 0, 0, 0.25);
  background: #f5f5f5;
  border-color: #d9d9d9;
  cursor: not-allowed;
}

.e-pagination.is-disabled .e-pagination-jump-next {
  color: rgba(0, 0, 0, 0.25);
  background: #f5f5f5;
  border-color: #d9d9d9;
  cursor: not-allowed;
}

.e-pagination.is-disabled .e-pagination-jump-next .e-pagination-item-link {
  color: rgba(0, 0, 0, 0.25);
  background: #f5f5f5;
  border-color: #d9d9d9;
  cursor: not-allowed;
}

.e-pagination.is-disabled .e-pagination-jump-next:hover .e-pagination-item-link,
.e-pagination.is-disabled .e-pagination-jump-next:focus .e-pagination-item-link {
  color: rgba(0, 0, 0, 0.25);
  background: #f5f5f5;
  border-color: #d9d9d9;
  cursor: not-allowed;
}

.e-pagination.is-disabled .e-pagination-size-options label {
  color: rgba(0, 0, 0, 0.25);
  background: #f5f5f5;
  border-color: #d9d9d9;
  cursor: not-allowed;
}

.e-pagination.is-disabled .e-pagination-size-options label:hover,
.e-pagination.is-disabled .e-pagination-size-options label:focus {
  color: rgba(0, 0, 0, 0.25);
  background: #f5f5f5;
  border-color: #d9d9d9;
  cursor: not-allowed;
}

.e-pagination.is-disabled .e-pagination-item {
  color: rgba(0, 0, 0, 0.25);
  background: #f5f5f5;
  border-color: #d9d9d9;
  cursor: not-allowed;
}

.e-pagination.is-disabled .e-pagination-item.is-active {
  background: #dbdbdb;
  border-color: transparent;
}

.e-pagination.is-disabled .e-pagination-quick-jumper {
  display: inline-block;
  vertical-align: middle;
}

.e-pagination.is-disabled .e-pagination-quick-jumper input {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  border-color: #d9d9d9;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
}

.e-pagination.is-disabled .e-pagination-quick-jumper input:hover,
.e-pagination.is-disabled .e-pagination-quick-jumper input:focus {
  border-color: #d9d9d9;
  border-right-width: 1px !important;
}

.e-pagination.is-disabled .e-pagination-quick-jumper button {
  color: rgba(0, 0, 0, 0.25);
  background: #f5f5f5;
  border-color: #d9d9d9;
  cursor: not-allowed;
}

.e-pagination.is-disabled .e-pagination-quick-jumper button:hover,
.e-pagination.is-disabled .e-pagination-quick-jumper button:focus {
  color: rgba(0, 0, 0, 0.25);
  background: #f5f5f5;
  border-color: #d9d9d9;
  cursor: not-allowed;
}

.e-pagination.is-space .e-pagination-item {
  margin-right: 10px;
}

.e-pagination.is-space .e-pagination-prev {
  margin-right: 10px;
}

.e-pagination.is-space .e-pagination-next {
  margin-right: 10px;
}

.e-pagination.is-space .e-pagination-front {
  margin-right: 10px;
}

.e-pagination.is-space .e-pagination-last {
  margin-right: 10px;
}

.e-pagination.is-space .e-pagination-jump-prev {
  margin-right: 10px;
}

.e-pagination.is-space .e-pagination-jump-next {
  margin-right: 10px;
}

.e-pagination.is-space .e-pagination-size-options {
  margin-right: 10px;
}

.e-pagination.is-space .e-pagination-quick-jumper input {
  margin: 0 8px 0 10px;
}

.e-pagination.is-space .e-pagination-simple {
  height: 32px;
  margin-right: 10px;
  line-height: 32px;
  vertical-align: middle;
}

.e-pagination.is-space .e-pagination-simple .e-pagination-simple-current {
  padding: 0 8px;
}

.e-pagination.is-space .e-pagination-simple .e-pagination-simple-all {
  padding: 0 8px;
}

.e-recommend-card .e-recommend-card__wrapper {
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.e-recommend-card .e-recommend-card__wrapper:hover {
  box-shadow: 0 6px 16px -8px rgba(0, 0, 0, 0.08), 0 9px 28px rgba(0, 0, 0, 0.05), 0 12px 48px 16px rgba(0, 0, 0, 0.03);
}

.e-recommend-card .e-recommend-card__image {
  width: 100%;
  height: 170px;
  overflow: hidden;
}

.e-recommend-card .e-recommend-card__image>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s;
}

.e-recommend-card .e-recommend-card__image .e-recommend-card__pictureInner {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  object-fit: cover;
  transition: all 0.6s;
}

.e-recommend-card .e-recommend-card__content {
  padding: 16px;
  color: #7a7a7a;
  font-size: 12px;
  background: #f9fafe;
}

.e-recommend-card .e-recommend-card__content p {
  margin-bottom: 16px;
  color: #000000;
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.e-tabs {
  background: #ffffff;
  z-index: 90;
}

.e-tabs.is-float .e-tabs__wrapper {
  position: fixed;
  top: 0;
  z-index: 90;
}

.e-tabs .e-tabs__wrapper {
  position: relative;
  width: 100%;
  height: 50px;
  line-height: 50px;
  background: #ffffff;
  border-bottom: 1px solid #d8d8d8;
  z-index: 90;
}

.e-tabs .e-tabs__list {
  width: 100%;
  min-width: 1260px;
  max-width: 1420px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  transition: padding 0.2s, max-width 0.3s;
}

.e-tabs .e-tabs__list::before,
.e-tabs .e-tabs__list::after {
  display: table;
  content: "";
}

.e-tabs .e-tabs__list::after {
  clear: both;
}

@media screen and (min-width: 576px) {
  .e-tabs .e-tabs__list {
    max-width: 540px;
  }
}

@media screen and (min-width: 768px) {
  .e-tabs .e-tabs__list {
    max-width: 684px;
  }
}

@media screen and (min-width: 992px) {
  .e-tabs .e-tabs__list {
    max-width: 960px;
  }
}

@media screen and (min-width: 1200px) {
  .e-tabs .e-tabs__list {
    max-width: 1140px;
  }
}

@media screen and (min-width: 1360px) {
  .e-tabs .e-tabs__list {
    max-width: 1260px;
  }
}

@media screen and (min-width: 1480px) {
  .e-tabs .e-tabs__list {
    max-width: 1420px;
  }
}

@media screen and (min-width: 992px) {
  .e-tabs .e-tabs__list {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
}

@media screen and (min-width: 1200px) {
  .e-tabs .e-tabs__list {
    padding-left: 4.2rem;
    padding-right: 4.2rem;
  }
}

@media screen and (min-width: 1400px) {
  .e-tabs .e-tabs__list {
    padding-left: 1.8rem;
    padding-right: 1.8rem;
  }
}

.e-tabs .e-tabs__tab {
  float: left;
  margin-right: calc(60rem / 14);
}

.e-tabs .e-tabs__tab .e-tabs__tab-inner {
  color: #7a7a7a;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
}

.e-tabs .e-tabs__tab.is-active .e-tabs__tab-inner {
  color: #005096;
}

.e-tabs .e-tabs__tab:hover .e-tabs__tab-inner {
  color: #005096;
}

.e-tabs .e-tabs__tab:first-child {
  margin-left: 0;
}

.e-tabs .e-tabs__tab:last-child {
  margin-right: 0;
}

.e-tabs .e-tabs__bar {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: #005096;
  transition: width 0.3s, left 0.3s, right 0.3s;
}

.e-ad-banner .e-ad-banner__wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  padding: 90px 105px 70px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.e-ad-banner .e-ad-banner__wrapper::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to right, #044d93 25%, rgba(4, 77, 147, 0.8) 40%, rgba(4, 77, 147, 0.4) 80%, transparent);
  pointer-events: none;
  z-index: 1;
  content: "";
}

.e-ad-banner .e-ad-banner__content {
  position: relative;
  z-index: 10;
}

.e-ad-banner .e-ad-banner__content h2 {
  margin: 10px 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1.2;
}

.e-ad-banner .e-ad-banner__content p {
  padding: 10px 0;
  color: #ffffff;
  font-size: 40px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 1.2;
}

.e-ad-banner .e-ad-banner__content .gradient-paragraph {
  display: inline-block;
  position: relative;
}

.e-ad-banner .e-ad-banner__content .gradient-paragraph::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120%;
  height: 2px;
  background-image: linear-gradient(to right, #ffde73, transparent);
  content: "";
}

.e-ad-banner .e-ad-banner__bottom {
  position: absolute;
  bottom: 70px;
  z-index: 10;
}

.e-ad-banner .e-ad-banner__bottom button {
  padding-left: 46px;
  padding-right: 46px;
  height: 44px;
  color: #ffffff;
  background: #094d94;
  border: 2px solid #ffffff;
}

.e-ad-banner .e-ad-banner__bottom button:hover,
.e-ad-banner .e-ad-banner__bottom button:focus,
.e-ad-banner .e-ad-banner__bottom button:active {
  border: 2px solid #ffffff;
}

.e-menu {
  position: relative;
  width: 100%;
  color: #333333;
  font-size: 14px;
  line-height: 0;
  text-align: left;
  background: #ffffff;
  list-style: none;
  transition: background 0.3s, height 0.3s cubic-bezier(0.2, 0, 0, 1) 0s;
}

.e-menu .e-submenu .e-submenu__title {
  padding: 0 16px;
  height: 56px;
  border-bottom: 1px solid #dcdfe6;
  line-height: 56px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s, background-color 0.3s, color 0.3s;
}

.e-menu .e-submenu .e-submenu__title:hover {
  color: #ffffff;
  background: #24bbe1;
}

.e-menu .e-submenu .e-submenu__arrow {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 10px;
  color: #333333;
  transform: translateY(-50%);
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.e-menu .e-submenu .e-submenu__arrow::before,
.e-menu .e-submenu .e-submenu__arrow::after {
  position: absolute;
  width: 6px;
  height: 1.5px;
  background-color: currentColor;
  border-radius: 2px;
  transition: background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), top 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  content: "";
}

.e-menu .e-submenu .e-submenu__arrow::before {
  transform: rotate(-45deg) translate(2.5px);
}

.e-menu .e-submenu .e-submenu__arrow::after {
  transform: rotate(45deg) translate(-2.5px);
}

.e-menu .e-submenu.is-open .e-submenu__arrow::before {
  transform: rotate(45deg) translate(2.5px);
}

.e-menu .e-submenu.is-open .e-submenu__arrow::after {
  transform: rotate(-45deg) translate(-2.5px);
}

.e-menu .e-submenu .e-menu-item {
  color: #333333;
  background: #ffffff;
}

.e-menu .e-submenu .e-menu-item:hover {
  color: #333333;
  background: #f8fafd;
}

.e-menu .e-menu-item {
  padding: 0 calc(16rem / 14);
  height: calc(56rem /14);
  border-bottom: 1px solid #dcdfe6;
  line-height: calc(56rem /14);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s, background-color 0.3s, color 0.3s;
}

.e-menu .e-menu-item:hover {
  color: #333333;
  background: #f8fafd;
}

.e-menu .e-menu-item label {
  display: inline-block;
  width: 100%;
  cursor: pointer;
  padding-left: 30px;
  position: relative;
}

.e-menu>.e-menu-item {
  color: #ffffff;
  font-size: 16px;
  background: linear-gradient(to right, #005096, #1884bc);
}

.e-menu>.e-menu-item:hover {
  color: #ffffff;
  font-size: 16px;
  background: linear-gradient(to right, #005096, #1884bc);
}

.e-menu>.e-submenu .e-submenu__title {
  position: relative;
  color: #ffffff;
  font-size: 16px;
  background: linear-gradient(to right, #005096, #1884bc);
}

.e-menu>.e-submenu .e-submenu__title:hover {
  color: #ffffff;
  font-size: 16px;
  background: linear-gradient(to right, #005096, #1884bc);
}

.e-menu>.e-submenu .e-submenu__arrow {
  color: #ffffff;
}

.e-menu.is-float {
  position: fixed;
  z-index: 1;
}

.daterangepicker .calendar-table .next span,
.daterangepicker .calendar-table .prev span {
  border-color: #999999 !important;
  border-width: 0 2px 2px 0 !important;
}

.daterangepicker.displayable {
  transform: scaleY(0.8);
  transform-origin: 0% 0%;
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.daterangepicker.displayable.is-display {
  transform: scaleY(1);
  transform-origin: 0% 0%;
  opacity: 1;
}

[x-arrow] {
  position: absolute;
  width: 0;
  height: 0;
  margin: 5px;
  border-style: solid;
  border-color: transparent;
}

[x-placement^=top] {
  margin-bottom: 5px;
}

[x-placement^=top] [x-arrow] {
  bottom: -5px;
  left: calc(50% - 5px);
  margin-top: 0;
  margin-bottom: 0;
  border-width: 5px 5px 0 5px;
  border-top-color: currentColor;
}

[x-placement^=bottom] {
  margin-top: 5px;
}

[x-placement^=bottom] [x-arrow] {
  top: -5px;
  left: calc(50% - 5px);
  margin-top: 0;
  margin-bottom: 0;
  border-width: 0 5px 5px 5px;
  border-bottom-color: currentColor;
}

[x-placement^=right] {
  margin-left: 5px;
}

[x-placement^=right] [x-arrow] {
  left: -5px;
  top: calc(50% - 5px);
  margin-left: 0;
  margin-right: 0;
  border-width: 5px 5px 5px 0;
  border-right-color: currentColor;
}

[x-placement^=left] {
  margin-right: 5px;
}

[x-placement^=left] [x-arrow] {
  right: -5px;
  top: calc(50% - 5px);
  margin-left: 0;
  margin-right: 0;
  border-width: 5px 0 5px 5px;
  border-left-color: currentColor;
}

[x-placement^=top] [x-arrow] {
  border-top-color: #005096;
}

[x-placement^=bottom] [x-arrow] {
  border-bottom-color: #005096;
}

[x-placement^=right] [x-arrow] {
  border-right-color: #005096;
}

[x-placement^=left] [x-arrow] {
  border-left-color: #005096;
}

.hidden-float-panel .e-float-panel {
  display: none;
}

.e-float-panel {
  position: fixed;
  right: 0;
  bottom: 10%;
  z-index: 99;
}

.e-float-panel__box {
  display: block;
  position: relative;
  width: calc(50rem / 14);
  height: calc(50rem / 14);
  text-align: center;
  line-height: calc(56rem / 14);
  background: #ffffff;
  border: 1px solid #b0b0b0;
  cursor: pointer;
}

.e-float-panel__box+.e-float-panel__box {
  border-top: none;
}

.e-float-panel__box:hover .e-float-panel__popup {
  opacity: 1;
  transform: scaleX(1);
  transform-origin: 100% 0%;
  transition: transform 0.2s ease, transform-origin 0.2s ease, opacity 0.2s ease;
  pointer-events: all;
}

.e-float-panel .e-float-panel__popup {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 calc(16rem / 14);
  height: calc(50rem / 14);
  line-height: calc(50rem / 14);
  color: #333333;
  font-size: 16px;
  background: #ffffff;
  white-space: nowrap;
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: 100% 0%;
  box-shadow: 0 1px 6px 0 rgba(0, 80, 150, 0.26);
  transition: transform 0.2s cubic-bezier(1, 0.5, 0.8, 1), transform-origin 0.2s cubic-bezier(1, 0.5, 0.8, 1), opacity 0.2s cubic-bezier(1, 0.5, 0.8, 1);
  pointer-events: none;
  z-index: 1;
}

.e-float-panel .e-float-panel__popup>i {
  transform: translateY(4px);
}

.in-safari .e-float-panel {
  right: 20px;
}

.e-qrcode-tooltip {
  position: fixed;
  width: max-content;
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: 100% 0%;
  transition: transform 0.2s ease, transform-origin 0.2s ease, opacity 0.2s ease;
  z-index: 2;
}

.e-qrcode-tooltip.is-popover-show {
  opacity: 1;
  transform: scaleX(1);
  transform-origin: 100% 0%;
}

.e-qrcode-tooltip .e-qrcode-tooltip__wrapper {
  padding: 15px 35px;
  background: #ffffff;
  box-shadow: 0 1px 6px 0 rgba(0, 80, 150, 0.26);
}

.e-qrcode-tooltip .e-qrcode-tooltip__list {
  margin-left: -12px;
  margin-right: -12px;
}

.e-qrcode-tooltip .e-qrcode-tooltip__list::before,
.e-qrcode-tooltip .e-qrcode-tooltip__list::after {
  display: table;
  content: "";
}

.e-qrcode-tooltip .e-qrcode-tooltip__list::after {
  clear: both;
}

.e-qrcode-tooltip .e-qrcode-tooltip__list li {
  float: left;
  padding: 0 12px;
}

.e-qrcode-tooltip .e-qrcode-tooltip__list li p {
  color: #333333;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.e-qrcode-tooltip .e-qrcode-tooltip__imageBox {
  margin: 0 auto;
  margin-bottom: 8px;
  width: 65px;
  height: 65px;
  text-align: center;
  overflow: hidden;
}

.e-qrcode-tooltip .e-qrcode-tooltip__imageBox img {
  width: 100%;
}

.e-qrcode-tooltip[x-placement^=top] [x-arrow] {
  border-top-color: #ffffff;
}

.e-qrcode-tooltip[x-placement^=bottom] [x-arrow] {
  border-bottom-color: #ffffff;
}

.e-qrcode-tooltip[x-placement^=right] [x-arrow] {
  border-right-color: #ffffff;
}

.e-qrcode-tooltip[x-placement^=left] [x-arrow] {
  border-left-color: #ffffff;
}

#TO_TOP_BUTTON {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}

#TO_TOP_BUTTON.is-to-top-show {
  opacity: 1;
  pointer-events: all;
}

.bg-dotted-pattern {
  background: url(../../assets/images/dotted_pattern.png) center no-repeat;
  background-position: 0 center;
  background-attachment: fixed;
}

.e-report-card {
  display: inline-block;
  width: 100%;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.e-report-card .e-report-card__image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  transition: all 0.3s;
}

.e-report-card .e-report-card__image>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s;
}

.e-report-card .e-report-card__image .e-report-card__pictureInner {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  object-fit: cover;
  transition: all 0.6s;
}

@media screen and (max-width: 1440px) {
  .e-report-card .e-report-card__image {
    height: 220px;
  }
}

.e-report-card .e-report-card__content {
  padding: calc(20rem / 14) 4px calc(30rem / 14);
}

.e-report-card .e-report-card__title {
  margin-bottom: 15px;
  color: #005096;
  font-size: 12px;
}

.e-report-card .e-report-card__desc {
  color: #333333;
  font-size: 18px;
  line-height: 1.5;
  max-height: 52px;
  display: -webkit-box;
  white-space: normal;
  word-wrap: break-word;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.e-report-card .e-report-card__date {
  color: #7a7a7a;
  font-size: 12px;
}

.e-book-card-wrapper {
  height: 460px;
}

.e-book-card-left {
  position: relative;
  height: 100%;
  padding: 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.e-book-card-left::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to top, rgba(0, 80, 150, 0.4), transparent);
  content: "";
}

.e-book-card-left>* {
  z-index: 1;
}

.e-book-card-left .e-book-card__title {
  color: #333333;
  font-size: 20px;
  font-weight: bold;
  display: -webkit-box;
  white-space: normal;
  word-wrap: break-word;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.e-book-card-left .e-book-card__bottom {
  position: absolute;
  bottom: 30px;
  left: 35px;
}

.e-book-card-left .e-book-card__bottom button {
  padding: 0 50px;
  height: 44px;
  color: #fff;
  background: transparent;
  border-width: 2px;
  border-color: #fff;
}

.e-book-card-left .e-book-card__bottom button:hover {
  border-color: #fff;
  background: #fff;
  color: #005096;
}

.e-book-card-left .e-book-card__bottom button:focus,
.e-book-card-left .e-book-card__bottom button:active {
  color: #005096;
  border-color: #005096;
}

.e-book-card-right {
  position: relative;
  height: 100%;
  padding: 35px calc(25rem / 14);
  background: #ffffff;
  border: 1px solid #cccccc;
  border-left: none;
}

.e-book-card-right .e-book-card__name {
  color: #333333;
  font-size: 14px;
  font-weight: bold;
}

.e-book-card-right .e-book-card__title {
  max-height: 126px;
  margin: 15px 0;
  color: #333333;
  font-size: 28px;
  display: -webkit-box;
  white-space: normal;
  word-wrap: break-word;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.e-book-card-right .e-book-card__date {
  color: #7a7a7a;
  font-size: 12px;
}

.e-book-card-right .e-book-card__content {
  max-height: 112px;
  margin: 15px 0;
  color: #666666;
  font-size: 16px;
  line-height: 1.75;
  display: -webkit-box;
  white-space: normal;
  word-wrap: break-word;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.e-book-card-right .e-book-card__bottom {
  padding: 0 calc(25rem / 14);
  position: absolute;
  bottom: 25px;
  left: 0;
  width: 100%;
  text-align: right;
}

.e-book-card-right .e-book-card__bottom a {
  position: relative;
  color: #005096;
  font-size: 14px;
  font-weight: bold;
  position: relative;
  padding-right: 20px;
}

.e-book-card-right .e-book-card__bottom a::after {
  display: inline-block;
  margin-left: 10px;
  right: 0;
  transition: 0.25s cubic-bezier(0.43, 0.17, 0.46, 0.98);
  content: "";
  width: 8px;
  height: 13px;
  background: url(../assets/images/icons/icon_angle_right_primary.png) no-repeat;
  background-size: contain;
  top: 4px;
  position: absolute;
}

.e-book-card-right .e-book-card__bottom a:hover::after {
  transform: translateX(5px);
}

.e-date-picker {
  display: inline-block;
}

.e-date-picker .e-date-picker__wrapper {
  position: relative;
  width: 90px;
  height: 30px;
  border-bottom: 1px solid #ccd6eb;
}

.e-date-picker .e-date-picker__wrapper:hover {
  border-bottom: 1px solid #296CA6;
}

.e-date-picker .e-date-picker__wrapper::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: #005096;
  transition: all 0.2s;
  z-index: 1;
  content: "";
}

.e-date-picker .e-date-picker__wrapper input {
  padding: 0 10px 0 5px;
  width: 100%;
  height: 100%;
  color: #999999;
  font-size: 13px;
  border: none;
}

.e-date-picker .e-date-picker__wrapper input::placeholder {
  color: #666666;
}

.e-date-picker .e-date-picker__wrapper.is-focus-within::after {
  width: 100%;
}

.e-date-picker-group {
  display: inline-block;
  position: relative;
}

.e-date-picker-group.has-suffix {
  padding-right: 40px;
}

.e-date-picker-group .e-date-picker-group__suffix {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.e-date-picker-separate {
  display: inline-block;
  margin: 0 5px;
  color: #999;
}

.e-fund-table table {
  width: 100%;
}

.e-fund-table table th,
.e-fund-table table td {
  text-align: center;
}

.e-fund-table-button {
  padding-left: 16px;
  padding-right: 16px;
  height: 28px;
}

.e-fund-table table th button,
.e-fund-table table td button {
  padding-left: 16px;
  padding-right: 16px;
  height: 28px;
}

.e-fund-table table thead tr {
  border-bottom: 1px solid #cacaca;
}

.e-fund-table table thead th,
.e-fund-table table thead td {
  color: #2b3b56;
  font-size: 14px;
  font-weight: bold;
}

.e-fund-table table thead th>span,
.e-fund-table table thead td>span {
  display: inline-block;
  padding: 15px 10px;
}

.e-fund-table table thead th.is-sortable>span,
.e-fund-table table thead td.is-sortable>span {
  position: relative;
  padding-right: 20px;
  cursor: pointer;
}

.e-fund-table table thead th.is-sortable>span::after,
.e-fund-table table thead td.is-sortable>span::after {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 5px;
  height: 9px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url("../assets/images/icons/table_sortable_arrow.png");
  transform: translateY(-50%);
  z-index: 1;
  content: "";
}

.e-fund-table table thead th.is-sortable.is-asc>span::after,
.e-fund-table table thead td.is-sortable.is-asc>span::after {
  background-image: url("../assets/images/icons/table_sortable_arrow_asc.png");
}

.e-fund-table table thead th.is-sortable.is-desc>span::after,
.e-fund-table table thead td.is-sortable.is-desc>span::after {
  background-image: url("../assets/images/icons/table_sortable_arrow_desc.png");
}

.e-fund-table table thead th[data-sortable]>span,
.e-fund-table table thead td[data-sortable]>span {
  position: relative;
  padding-right: 20px;
  cursor: pointer;
}

.e-fund-table table thead th[data-sortable]>span::after,
.e-fund-table table thead td[data-sortable]>span::after {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 5px;
  height: 9px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url("../assets/images/icons/table_sortable_arrow.png");
  transform: translateY(-50%);
  z-index: 1;
  content: "";
}

.e-fund-table table thead th[data-sortable].is-asc>span::after,
.e-fund-table table thead td[data-sortable].is-asc>span::after {
  background-image: url("../assets/images/icons/table_sortable_arrow_asc.png");
}

.e-fund-table table thead th[data-sortable].is-desc>span::after,
.e-fund-table table thead td[data-sortable].is-desc>span::after {
  background-image: url("../assets/images/icons/table_sortable_arrow_desc.png");
}

.e-fund-table table tbody tr {
  border-bottom: 1px solid #e4e4e4;
}

.e-fund-table table tbody tr:last-child {
  border-color: transparent;
}

.e-fund-table table tbody tr:hover {
  background: #f8fafd;
}

.e-fund-table table tbody td {
  color: #333333;
  font-size: 14px;
  text-align: center;
  vertical-align: middle;
}

.e-fund-table table tbody td>span {
  display: inline-block;
  padding: 20px;
}

.e-fund-table.is-show-less table tbody tr:nth-child(n+7) {
  display: none;
}

.e-fund-table .e-fund-table__title {
  color: #2c3c57;
  font-size: 17px;
  font-weight: bold;
  line-height: 1.4;
}

.e-fund-table .e-fund-table__infos {
  margin-left: -15px;
  margin-right: -15px;
}

.e-fund-table .e-fund-table__infos::before,
.e-fund-table .e-fund-table__infos::after {
  display: table;
  content: "";
}

.e-fund-table .e-fund-table__infos::after {
  clear: both;
}

.e-fund-table .e-fund-table__infos>li {
  float: left;
  padding: 0 15px;
  color: #7a7a7a;
  font-size: 14px;
  border-right: 1px solid #999999;
}

.e-fund-table .e-fund-table__infos>li:last-child {
  border: none;
}

.e-fund-table .e-fund-table__data {
  font-size: 16px;
  font-weight: bold;
}

.e-fund-table .e-fund-table__text {
  color: #333333;
  font-size: 13px;
  line-height: 1.75;
}

.e-fund-table .e-fund-table__date {
  color: #999999;
  font-size: 13px;
}

.e-fund-table .e-fund-table__tags {
  margin-top: 10px;
}

.e-fund-table .e-fund-table__top {
  margin-bottom: 10px;
}

.e-fund-table .e-fund-table__bottom {
  padding: 14px 0;
  background-color: #f8fafd;
  color: #005096;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
}

.e-fund-table .e-fund-table__bottom>i,
.e-fund-table .e-fund-table__bottom>[class*=e-icon-] {
  transform: translateY(-2px);
}

.e-label-card {
  position: relative;
  width: 100%;
  height: calc(90rem / 14);
  line-height: calc(90rem / 14);
  background: #ffffff;
  border-left: 4px solid #005096;
  transition: all 0.25s;
}

.e-label-card::after {
  position: absolute;
  left: 0;
  width: 0;
  height: 100%;
  background: #005096;
  transition: width 0.3s;
  content: "";
}

.e-label-card .e-label-card__wrapper {
  display: inline-block;
  position: relative;
  padding-left: 50px;
  padding-right: 50px;
  width: 100%;
  z-index: 1;
}

.e-label-card .e-label-card__wrapper::before,
.e-label-card .e-label-card__wrapper::after {
  display: table;
  content: "";
}

.e-label-card .e-label-card__wrapper::after {
  clear: both;
}

.e-label-card .e-label-card__inner {
  float: left;
  color: #333333;
  font-size: 24px;
  font-weight: 300;
  transition: all 0.2s;
}

.e-label-card .e-label-card__suffix {
  position: relative;
  float: right;
  height: calc(90rem / 14);
  line-height: calc(90rem / 14);
}

.e-label-card .e-label-card__suffix>i {
  position: absolute;
  top: 50%;
  transform: translate(-100%, -50%);
}

.e-label-card .e-label-card__suffix .hover-visible {
  opacity: 0;
  transition: opacity 0.2s;
}

.e-label-card.is-popover-show .e-label-card__wrapper,
.e-label-card .e-label-card__wrapper:hover {
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.02), 0 6px 0px rgba(0, 0, 0, 0.01), 0 8px 20px 4px rgba(0, 0, 0, 0.07);
}

/* .e-label-card:hover::after {
  width: 100%;
}
.e-label-card:hover .e-label-card__inner {
  color: #ffffff;
}

.e-label-card:hover .hover-visible {
  opacity: 1;
} */

.e-label-card__popover {
  width: 100%;
}

.e-label-card__popover [x-arrow] {
  top: -7px;
  left: 15px !important;
  border-width: 0 8px 8px 8px;
}

.e-document-loading {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff;
  z-index: 99999;
}

.e-document-loading .e-document-loading__content {
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
}

.e-document-loading .e-document-loading__content::before {
  display: inline-block;
  width: 236px;
  height: 51px;
  margin-bottom: 20px;
  background-image: url(../assets/images/logo.png);
  background-size: cover;
  content: "";
}

.e-document-loading .e-document-loading__bar {
  width: 0;
  height: 2px;
  background: #005096;
  transition: width 0.2s linear;
}

.e-document-loading.is-busy {
  opacity: 1;
}

.e-document-loading.is-hidden {
  opacity: 0;
  pointer-events: none;
  transition: all 0.6s;
}

.e-content-openable {
  margin-left: 5px;
  color: #005096;
  white-space: nowrap;
  cursor: pointer;
}

/* browser upgrade */
.low-version-box-selector {
  position: fixed;
  top: 50%;
  left: 50%;
  width: calc(840rem / 14);
  max-width: 80%;
  box-shadow: 0 3px 6px rgb(0 0 0 / 20%);
  transform: translate(-50%, -50%);
  z-index: 200;
}

.low-version-box-header {
  position: relative;
  padding: calc(15rem / 14) 0;
  background: url(../assets/images/bg_dark_blue_gird.png) no-repeat;
  background-size: cover;
  color: #fff;
  font-size: calc(28rem / 14);
  text-align: center;
  line-height: 1;
  letter-spacing: 2px;
  position: relative;
}

.low-version-close-btn {
  position: absolute;
  top: 12px;
  right: 25px;
  width: 30px;
  height: 30px;
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
}

.low-version-close-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 75%;
  height: 2px;
  background: #fff;
  transform: translate(-50%, -50%) rotateZ(135deg);
  -ms-transform: translate(-50%, -50%) rotate(135deg);
}

.low-version-close-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 75%;
  height: 2px;
  background: #fff;
  transform: translate(-50%, -50%) rotateZ(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
}

.low-version-box-body {
  position: relative;
  padding: calc(40rem / 14) calc(70rem / 14);
  background: white;
}

.low-version-box-text {
  color: #333;
  font-size: calc(22rem / 14);
  line-height: 1.75;
  letter-spacing: calc(1.4rem / 14);
  text-align: center;
}

.low-version-boxes {
  padding: calc(30rem / 14);
}

.low-version-box-ul {
  text-align: center;
}

.low-version-box-li {
  display: inline-block;
  line-height: 1;
}

.low-version-box-li.is-active {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.14);
}


/* Button
-------------------------- */
/* Button
-------------------------- */
/* Button
-------------------------- */
/* BEM
 -------------------------- */
.e-color--primary {
  color: #005096;
}

.e-color--primary.is-disabled {
  color: #80a8cb;
}

.e-color--primary.is-underline:hover:after {
  border-color: #005096;
}

.e-color--danger {
  color: #ee1533;
}

.e-color--danger.is-disabled {
  color: #f78a99;
}

.e-color--danger.is-underline:hover:after {
  border-color: #ee1533;
}

.e-color--success {
  color: #009b6d;
}

.e-color--success.is-disabled {
  color: #80cdb6;
}

.e-color--success.is-underline:hover:after {
  border-color: #009b6d;
}

.e-color--warning {
  color: #ffc819;
}

.e-color--warning.is-disabled {
  color: #ffe48c;
}

.e-color--warning.is-underline:hover:after {
  border-color: #ffc819;
}

.e-color--info {
  color: #24bbe1;
}

.e-color--info.is-disabled {
  color: #92ddf0;
}

.e-color--info.is-underline:hover:after {
  border-color: #24bbe1;
}

.e-color--white {
  color: #fff;
}

.e-color--blank {
  color: #000;
}

.e-button.is-disabled.is-plain,
.e-button.is-disabled.is-plain:hover,
.e-button.is-disabled.is-plain:focus {
  background-color: #ffffff;
  border-color: #cacaca;
  color: #ffffff;
}

.e-button--primary.is-plain.is-disabled,
.e-button--primary.is-plain.is-disabled:hover,
.e-button--primary.is-plain.is-disabled:focus,
.e-button--primary.is-plain.is-disabled:active {
  color: #cacaca;
  background-color: #ffffff;
  border-color: #cacaca;
}

.e-button--success.is-plain.is-disabled,
.e-button--success.is-plain.is-disabled:hover,
.e-button--success.is-plain.is-disabled:focus,
.e-button--success.is-plain.is-disabled:active {
  color: #cacaca;
  background-color: #ffffff;
  border-color: #cacaca;
}

.e-button--warning.is-plain.is-disabled,
.e-button--warning.is-plain.is-disabled:hover,
.e-button--warning.is-plain.is-disabled:focus,
.e-button--warning.is-plain.is-disabled:active {
  color: #cacaca;
  background-color: #ffffff;
  border-color: #cacaca;
}

.e-button--danger.is-plain.is-disabled,
.e-button--danger.is-plain.is-disabled:hover,
.e-button--danger.is-plain.is-disabled:focus,
.e-button--danger.is-plain.is-disabled:active {
  color: #cacaca;
  background-color: #ffffff;
  border-color: #cacaca;
}

.e-button--info.is-plain.is-disabled,
.e-button--info.is-plain.is-disabled:hover,
.e-button--info.is-plain.is-disabled:focus,
.e-button--info.is-plain.is-disabled:active {
  color: #cacaca;
  background-color: #ffffff;
  border-color: #cacaca;
}

.e-icon-reward {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url("../assets/images/icons/icon_reward.png") no-repeat center;
  background-size: 100%;
  position: absolute;
  top: 3px;
}

.e-fund-reward {
  width: 500px;
  position: absolute;
  top: -15px;
  left: 35px;
  z-index: 99999;
  display: none;
}

.e-fund-reward .e-fund-pane-reward__wrapper {
  padding: 26px 30px;
  color: #eff2f6;
  font-size: 16px;
  line-height: 1.5;
  background-color: #005096;
  border-bottom: 3px solid #ffc819;
  max-height: 300px;
  overflow-y: auto;
}

.e-fund-reward .e-fund-pane-popover__content {
  padding: 5px 0;
  color: #eff2f6;
  font-size: 16px;
  line-height: 1.5;
  font-weight: lighter;
}

.e-fund-reward [x-arrow] {
  color: #005096;
  left: -13px;
  top: 15px;
  border-width: 8px 8px 8px 0;
  border-right-color: currentColor;
  position: absolute;
  width: 0;
  height: 0;
  margin: 5px;
  border-style: solid;
}

.showReward {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  display: none;
}