@charset "UTF-8";
/*!------------------------------------------------------------------
[MAIN STYLESHEET]

PROJECT:	Project Name
VERSION:	Versoin Number
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[TABLE OF CONTENTS]
-------------------------------------------------------------------*/
/* #5c5c77; */
:root {
  --red: #AA332F;
  --darkgrey: #444444;
  --lightgrey: #EFEFEF;
  --white: #FFFFFF;
  --lightred: #C28191;
  --grey:#C5C5C5; }

/*  typography */
@font-face {
  font-family: 'Open Sans';
  src: url("../fonts/OpenSans/OpenSans-SemiBold.woff2") format("woff2"), url("../fonts/OpenSans/OpenSans-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Open Sans';
  src: url("../fonts/OpenSans/OpenSans-Bold.woff2") format("woff2"), url("../fonts/OpenSans/OpenSans-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Open Sans';
  src: url("../fonts/OpenSans/OpenSans-Regular.woff2") format("woff2"), url("../fonts/OpenSans/OpenSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap; }

bodyx {
  line-height: 1.2;
  font-family: "Open Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  color: #707070; }

p, .paragraph {
  font-weight: 400;
  color: #707070;
  font-size: 1.125rem;
  /* line-height: 1.9; */
  font-family: "Open Sans", sans-serif; }

h1, h2, h3, h4, h5, h6 {
  color: #144B74;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  line-height: 1.2; }

h1, .h1 {
  font-size: 2rem; }
  @media (max-width: 575px) {
    h1, .h1 {
      font-size: 2rem; } }
h2, .h2 {
  font-size: 1.375rem; }
  @media (max-width: 575px) {
    h2, .h2 {
      font-size: 1.375rem; } }
h3, .h3 {
  font-size: 1.125rem; }
  @media (max-width: 575px) {
    h3, .h3 {
      font-size: 1.125rem; } }
h4, .h4 {
  font-size: 1.125rem; }
  @media (max-width: 575px) {
    h4, .h4 {
      font-size: 1.125rem; } }
h5, .h5 {
  font-size: 1.125rem; }
  @media (max-width: 575px) {
    h5, .h5 {
      font-size: 1.125rem; } }
h6, .h6 {
  font-size: 1.125rem; }
  @media (max-width: 575px) {
    h6, .h6 {
      font-size: 1.125rem; } }
/* Button style */
.btn {
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  text-transform: capitalize;
  /* padding: 15px 40px; */
  border-radius: 0;
  font-weight: 300;
  border: 0;
  position: relative;
  z-index: 1;
  transition: .2s ease;
  overflow: hidden; }
  .btn-no-xpadding {
    padding-left: 0;
    padding-right: 0; }
  .btn-text__normal {
    text-transform: none; }
  .btn::before {
    position: absolute;
    content: "";
    height: 80%;
    width: 100%;
    left: 0;
    bottom: 10%;
    z-index: -1;
    transition: transform .2s ease-in-out;
    transform-origin: top;
    transform: scaleY(0); }
  .btn:focus {
    outline: 0;
    box-shadow: none !important; }
  .btn:active {
    box-shadow: none; }
  .btn:hover::before {
    transform: scaleY(1);
    transform-origin: bottom; }

.btn-sm {
  font-size: 14px;
  padding: 10px 35px; }

.btn-xs {
  font-size: 12px;
  padding: 5px 15px; }

.btn-filter {
  background: #fff;
  color: #707070;
  border: 1px solid #707070;
  padding: .5rem; }
  .btn-filter:hover {
    background: #707070;
    border-color: #707070;
    color: #fff; }
  .btn-filter.active {
    background: #144B74;
    border-color: #144B74;
    color: #fff; }
  .btn-filter__topics {
    margin-bottom: .75rem;
    border-radius: 50px;
    border: 1px solid #b1b1b1;
    padding: .5rem .75rem;
    font-size: .875rem;
    font-weight: 700;
    background-color: #cdeaf9;
    color: #707070; }
    .btn-filter__topics:hover {
      background: #000044;
      color: white;
      text-decoration: none; }

.btn-disclaimer {
  color: #fff;
  font-size: .875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.42857143;
  border-radius: 5px;
  border: 0 solid #144B74;
  background: #144B74; }
  .btn-disclaimer:hover {
    color: #0D0D0D;
    border: 0 solid #F2F2F2;
    background: #F2F2F2; }
  .btn-disclaimer--decline {
    color: #0D0D0D;
    border: 0 solid #F2F2F2;
    background: #F2F2F2; }
    .btn-disclaimer--decline:hover {
      color: #fff;
      border: 0 solid #144B74;
      background: #144B74; }

.btn-bis {
  background: #aa332f;
  color: #fff;
  border: 1px solid #aa332f;
  padding: .5rem; }
  .btn-bis::before {
    content: none; }
  .btn-bis:hover {
    background: #882825;
    border-color: #882825;
    color: #fff; }

.btn-primary {
  background: #144B74;
  color: #fff; }
  .btn-primary::before {
    background: #fff; }
  .btn-primary:active {
    background: #144B74 !important;
    color: #144B74; }
    .btn-primary:active::before {
      height: 80%; }
  .btn-primary:hover {
    background: #0d2f49;
    color: #144B74; }

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #0d2f49;
  border-color: #0d2f49; }

.btn-secondary {
  background: #fff;
  color: #144B74;
  border: 1px solid #fff; }
  .btn-secondary::before {
    background: #144B74; }
  .btn-secondary:active {
    background: #144B74;
    color: #fff;
    border: 1px solid #fff; }
  .btn-secondary:hover {
    background: #fff;
    color: #fff;
    border: 1px solid #fff; }

.btn-slider {
  background: #EF8223;
  color: #fff; }
  .btn-slider::before {
    background: #fff; }
  .btn-slider:active {
    background: #EF8223 !important;
    color: #EF8223; }
    .btn-slider:active::before {
      height: 80%; }
  .btn-slider:hover {
    background: #d0690f;
    color: #EF8223; }

.btn-primary-outline {
  border: 1px solid #144B74;
  color: #144B74;
  background: transparent; }
  .btn-primary-outline::before {
    background: #fff; }
  .btn-primary-outline:hover {
    background: #144B74;
    color: #144B74; }
  .btn-primary-outline:active {
    background: #144B74;
    color: #fff; }

.btn-sidebar {
  padding-left: 0;
  padding-right: 0;
  color: #144B74;
  text-align: left;
  text-transform: none;
  font-weight: 600;
  line-height: 1.36; }

.buttons {
  list-style: none;
  padding-inline-start: unset !important;
  border-left: 0 !important; }

html {
  font-family: "Open Sans", sans-serif; }

body {
  background-color: #fff;
  overflow-x: hidden;
  font-family: "Open Sans", sans-serif; }

::selection {
  background: #1c67a0;
  color: #fff; }

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh; }

/* preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #0a55a7;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center; }

/* ol,
ul:not(.fa-ul, .breadcrumb, .nav-tabs, .footer-list, .page-sidebar, .page-sidebar__submenu) {
  list-style-type: disc;
  margin: 0px;
  font-family: $primary-font;
  font-size: 16px;
  color: $text-color;
} */
/* ul {
  list-style-type: none;

  li {
    &:before {
      content: "\2B22";
      display:block;
      color: magenta;
      font-size:135px;
      -webkit-transform: rotate(-30deg);
      -moz-transform: rotate(-30deg);
      -o-transform: rotate(-30deg);
      transform: rotate(-30deg);
    }
  }
} */
img {
  vertical-align: middle;
  border: 0; }

a, a:hover {
  text-decoration: underline; }

a, a:focus {
  text-decoration: none; }

a {
  color: #2787C8; }
  a:hover {
    color: #2787C8; }

a,
button,
select {
  cursor: pointer;
  transition: .2s ease; }
  a:focus,
  button:focus,
  select:focus {
    outline: 0; }

a.text-primary:hover {
  color: #144B74 !important; }

a.text-light:hover {
  color: #144B74 !important; }

a[target=_blank] {
  overflow-wrap: break-word; }

h4 {
  transition: .2s ease; }

a h4:hover {
  color: #144B74; }

.slick-slide {
  outline: 0; }

.section {
  padding-top: 90px;
  padding-bottom: 20px; }
  .section-sm {
    padding-top: 40px;
    padding-bottom: 40px; }
  .section-title {
    margin-bottom: 30px; }

.bg-cover {
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat; }

.border-primary {
  border-color: #ededf1 !important; }

/* overlay */
.overlay {
  position: relative; }
  .overlay::before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #1a1a37;
    opacity: 0.8; }

.outline-0 {
  outline: 0 !important; }

.d-unset {
  display: unset !important; }

.bg-primary {
  background: #144B74 !important; }

.bg-secondary {
  background: #1a1a37 !important; }

.bg-gray {
  background: #f8f8f8; }

.text-primary {
  color: #144B74 !important; }

.text-color {
  color: #707070; }

.text-light {
  color: #8585a4 !important; }

.text-lighten {
  color: #d6d6e0 !important; }

.text-muted {
  color: #b5b5b7 !important; }

.font-secondary {
  font-family: "futura-bold"; }

.mb-10 {
  margin-bottom: 10px !important; }

.mb-20 {
  margin-bottom: 20px !important; }

.mb-30 {
  margin-bottom: 30px !important; }

.mb-40 {
  margin-bottom: 40px !important; }

.mb-50 {
  margin-bottom: 50px !important; }

.mb-60 {
  margin-bottom: 60px !important; }

.mb-70 {
  margin-bottom: 70px !important; }

.mb-80 {
  margin-bottom: 80px !important; }

.mb-90 {
  margin-bottom: 90px !important; }

.mb-100 {
  margin-bottom: 100px !important; }

.pl-150 {
  padding-left: 150px; }

.zindex-1 {
  z-index: 1; }

.overflow-hidden {
  overflow: hidden; }

.vertical-align-middle {
  vertical-align: middle; }

.icon-md {
  font-size: 36px; }

/* page title */
.page-title-section {
  margin-top: 88px;
  padding: 200px 0 40px; }

@media screen and (max-width: 600px) {
  .page-title-section {
    padding: 40px 0 25px; }
  .lib-element-card-body {
    height: 180px !important; }
  .notice-button {
    display: none; } }

.custom-breadcrumb li.nasted {
  position: relative;
  padding-left: 25px; }
  .custom-breadcrumb li.nasted::before {
    position: absolute;
    font-family: "themify";
    content: "\e649";
    font-size: 20px;
    top: 50%;
    left: -5px;
    color: #fff;
    transform: translateY(-50%); }

/* /page title */
.list-styled {
  padding-left: 25px; }
  .list-styled li {
    position: relative;
    margin-bottom: 15px; }
    .list-styled li::before {
      position: absolute;
      content: "";
      height: 10px;
      width: 10px;
      border-radius: 50%;
      background: #144B74;
      left: -25px;
      top: 5px; }

textarea.form-control {
  height: 200px;
  padding: 20px; }

#map_canvas {
  height: 500px; }

.post-thumb-sm {
  max-width: 100px; }

/* pagination */
.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; }
  .pagination .page-item {
    margin: 0 10px; }
    .pagination .page-item.active .page-link {
      background: #144B74;
      color: #fff;
      border-color: #144B74; }
    .pagination .page-item:first-child .page-link, .pagination .page-item:last-child .page-link {
      border-radius: 0; }
    .pagination .page-item .page-link {
      color: #707070;
      width: 40%; }

.content {
  /* ul:not(.fa-ul, .breadcrumb, .nav-tabs) {
    padding-left: 2rem;

    li {
      position: relative;
      margin-bottom: 0.2rem;
      list-style-type: disc;
      p {
          margin-bottom: 0.2rem;
      }
    }
  } */
  /* Based on Bootstrap's `table-responsive` style. */ }
  .content * {
    margin-bottom: 20px; }
  .content strong {
    color: #144B74; }
  .content a:hover {
    text-decoration: underline; }
  .content p img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto; }
  .content h1,
  .content h2,
  .content h3,
  .content h4,
  .content h5,
  .content h6 {
    margin-bottom: 10px; }
  .content ol {
    padding-left: 2rem;
    list-style-type: decimal; }
    .content ol li {
      margin-bottom: 0.2rem; }
      .content ol li p {
        margin-bottom: 0.2rem; }
  .content table {
    width: 100%;
    overflow-x: scroll;
    font-size: 1.0rem;
    overflow-wrap: normal;
    word-wrap: normal;
    word-break: break-word;
    margin-bottom: 2rem;
    margin-top: 2rem; }
    @media (max-width: 575px) {
      .content table {
        word-break: normal; } }
  .content .table td,
  .content .table th {
    border-top: 1px solid #a8a8a8; }
  .content th, .content td {
    padding: 10px 20px;
    text-align: left; }
  .content tr:hover {
    background-color: #f5f5f5; }
  .content table tr th {
    border: 0; }
  .content table tr td {
    border-bottom: 1px solid #a8a8a8; }
  .content table thead th {
    background-color: #144B74;
    color: #fff;
    font-weight: 400; }
  .content th {
    background-color: #fff;
    color: #707070;
    font-weight: 700; }
  .content blockquote p {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1em; }
  .content pre {
    padding: 10px 20px;
    background: #131314;
    color: #cdd8e3; }

.partner-thumb-sm {
  height: 85px;
  width: 85px;
  object-fit: cover; }

/** Not work for mobile devices **/
/**
.notice-table {
    display: flex!important;
}

.notice-cell-left {
}

.notice-cell-center {
    flex:2;
}

.notice-cell-right {
}
**/
#searchOpen .fa-search {
  color: #fff !important; }

.search-wrapper .algolia-autocomplete .ds-dropdown-menu {
  min-width: auto; }

.aside-toc {
  top: 98px;
  line-height: 1.9;
  z-index: 980; }
  .aside-toc ul {
    padding-inline-start: 10px;
    border-left: 1px solid #eee; }
  .aside-toc a:hover {
    text-decoration: underline; }

@media screen and (max-width: 600px) {
  .sidebar {
    display: none; }
  .btn-notice {
    display: none; } }

footer .text-color {
  color: #d1d6e8; }

footer .fa {
  color: #d1d6e8; }

.book-card-body {
  height: 20px;
  flex: 1 1 auto;
  padding: 1.25rem; }

.container-card-body {
  height: 180px;
  flex: 1 1 auto;
  padding: 1.25rem; }

.card-header {
  background-color: #1a1a37; }

.homepage-apply {
  padding-bottom: 15px; }

figcaption {
  color: gray;
  font-size: 0.8em;
  font-weight: 500; }

.footnotes ol li:target {
  scroll-margin-top: 98px; }

.content sup:target {
  scroll-margin-top: 98px; }

figure img:target {
  scroll-margin-top: 98px; }

#backTopBtn {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Fixed/sticky position */
  bottom: 20px;
  /* Place the button at the bottom of the page */
  right: 30px;
  /* Place the button 30px from the right */
  z-index: 99;
  /* Make sure it does not overlap */
  border: none;
  /* Remove borders */
  outline: none;
  /* Remove outline */
  color: #80808080;
  /* Set a background color */
  background-color: transparent;
  /* Set a background color */
  cursor: pointer;
  /* Add a mouse pointer on hover */
  font-size: 4rem;
  /* Increase font size */ }

@media screen and (max-width: 600px) {
  .footnotes ol li:target {
    scroll-margin-top: 0px; }
  .content sup:target {
    scroll-margin-top: 0px; }
  #backTopBtn {
    font-size: 2rem;
    right: 0;
    bottom: 2rem; } }

.anchorjs-link {
  font-weight: 400;
  color: black; }

.anchorjs-link:hover {
  color: #0a55a7;
  text-decoration: none; }

.sidebar-title {
  font-weight: 600;
  color: #144B74; }

.badge {
  border: none;
  color: #5c5c77;
  background: #00000014;
  font-weight: 400;
  border-radius: 3px;
  padding: 5px 10px;
  margin-right: 8px;
  margin-bottom: 8px; }

.badge:hover {
  background: #000044;
  color: white;
  text-decoration: none; }

.highlight {
  position: relative; }
  .highlight code {
    display: flex;
    align-items: flex-end;
    min-height: 40px;
    font-size: 0.95rem; }
    .highlight code * {
      display: contents; }
  .highlight code[class^="language-"] > span[style*="display:flex"] {
    display: contents !important; }

.highlight-copy-btn {
  position: absolute;
  top: 0.4rem;
  right: 0.8rem;
  border: 0;
  border-radius: 4px;
  padding: 1px;
  font-size: 0.8rem;
  line-height: 1.8;
  background-color: transparent;
  opacity: 0.2;
  min-width: 1rem;
  text-align: center; }

.highlight-copy-btn:hover {
  color: black;
  opacity: 1; }

.navbar-brand {
  padding-top: 0;
  padding-bottom: 0; }

.navbar-toggler {
  border: 1px solid transparent;
  font-size: 1rem; }

.article-content .list-inline {
  line-height: 1.9rem; }

@media screen and (max-width: 600px) {
  .article-content .list-inline {
    line-height: 0.8rem; } }

#TableOfContents .toc-list .toc-link:before {
  height: 2rem; }

#TableOfContents .toc-list a:hover {
  font-weight: 400;
  color: #144B74;
  text-decoration: none; }

#TableOfContents .toc-list .is-active-link {
  color: #144B74;
  font-weight: 600; }
  #TableOfContents .toc-list .is-active-link:hover {
    font-weight: 600; }

#TableOfContents .toc-list .is-active-link:before {
  background-color: #144B74; }

.fixed-top {
  z-index: 990; }

.cta {
  background-image: linear-gradient(220deg, #d7dfef 0%, #2a5bc9 100%); }

/* Style asides as Bootstrap alerts. */
/* Asides use <p> block element whereas alerts use <div>. */
.article-style aside p,
div.alert > div {
  position: relative;
  display: block;
  margin-top: 0;
  line-height: 1.5rem;
  margin-bottom: 0; }

div.alert div > * {
  margin-bottom: 0.5rem;
  /* Use smaller paragraph spacing than usual. */ }

div.alert div > :last-child {
  margin-bottom: 0; }

.article-style aside a,
div.alert a {
  text-decoration: none; }

.article-style aside,
.alert-note {
  background-color: #f6fbfe;
  border-color: #1976d2;
  color: #12537e; }

.alert-note p {
  color: #12537e; }

.alert-warning {
  color: #cd0930;
  background-color: #fff5f7;
  border-color: #ff3860; }

.alert-warning p {
  color: #cd0930; }

.alert-warning-title {
  font-weight: 900;
  color: white;
  font-size: 1rem;
  background-image: linear-gradient(to left, transparent 10%, #cd0930 90%); }

.alert-note-title {
  font-weight: 900;
  color: white;
  font-size: 1rem;
  background-image: linear-gradient(to left, transparent 10%, #0a55a7 90%); }

.alert, .article-style aside {
  padding: 0; }
  .alert ul, .article-style aside ul {
    padding: 0 1.5rem;
    margin-bottom: 0; }

.default-page {
  margin-top: 120px;
  margin-bottom: 120px; }
  .fixed-top + .default-page {
    margin-top: 208px; }
    @media (max-width: 575px) {
      .fixed-top + .default-page {
        margin-top: 32px; } }
.html-content-page .content h2 {
  margin-top: -98px;
  padding-top: 98px; }

@media (max-width: 575px) {
  .html-content-page .content h2 {
    margin-top: 0px;
    padding-top: 0px; } }

.fullscreen {
  position: relative;
  margin-top: 88px;
  min-height: calc(100vh - 88px); }
  .fullscreen iframe {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    border: 0; }

.top-header {
  font-size: 12px;
  transition: transform .2s ease;
  transform-origin: top;
  font-weight: 400; }
  .top-header.hide {
    transform: scaleY(0);
    transform-origin: top; }

@media (max-width: 991px) {
  .header {
    position: static !important;
    background: #1a1a37; } }

.navigation {
  background: #0b111e;
  background: linear-gradient(90deg, #0b111e 0%, #144b74 56%, #2787c8 100%);
  transition: .2s ease; }

.navbar-nav {
  padding-left: 50px;
  height: 88px; }
  @media (max-width: 575px) {
    .navbar-nav {
      display: inline; } }
  @media (max-width: 991px) {
    .navbar-nav {
      padding-left: 0;
      height: auto; } }
.nav-bg {
  background-color: #144B74; }

.top-height {
  margin-top: -46px; }

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

.navbar-light .navbar-toggler {
  border: 0; }

.nav-item {
  margin: 0 15px;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  /* &::before {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 6px;
    width: 100%;
    content: "";
    background: $white;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .3s ease;
  }

  &:hover,
  &.active {
    &::before {
      transform: scaleY(1);
      transform-origin: bottom;
    }
  } */ }
  .nav-item .nav-link {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.36; }
    @media (max-width: 575px) {
      .nav-item .nav-link {
        font-weight: 400; } }
  @media (max-width: 575px) {
    .nav-item {
      display: inline;
      margin: 0; } }
.navbar-light .navbar-nav .nav-link {
  color: #fff; }

link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: rgba(255, 255, 255, 0.8); }

.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show > .nav-link {
  color: #fff; }

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 0; }
  @media (max-width: 575px) {
    .navbar-expand-lg .navbar-nav .nav-link {
      padding: 10px; } }
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  background: #fff;
  box-shadow: 0 2px 5px #0000000d; }

.navbar .dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0); }

.navbar .dropdown-menu {
  box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
  border-bottom: 5px solid #144B74;
  padding: 15px;
  margin: 0;
  top: 88px;
  border-radius: 0;
  display: block;
  visibility: hidden;
  transition: .3s ease;
  opacity: 0;
  transform: translateY(20px);
  background: #fff; }
  @media (max-width: 991px) {
    .navbar .dropdown-menu {
      display: none;
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      transform-origin: unset; } }
  .navbar .dropdown-menu.view {
    visibility: visible !important;
    opacity: 1;
    transform: translateY(0); }
    @media (max-width: 991px) {
      .navbar .dropdown-menu.view {
        display: block; } }
  .navbar .dropdown-menu.show {
    visibility: hidden; }
    @media (max-width: 991px) {
      .navbar .dropdown-menu.show {
        visibility: visible;
        display: block; } }
.navbar .dropdown-item {
  position: relative;
  color: #144B74;
  transition: .2s ease;
  font-family: "Open Sans", sans-serif; }
  .navbar .dropdown-item:not(:last-child) {
    margin-bottom: 10px; }
  .navbar .dropdown-item:hover {
    color: #144B74;
    background: rgba(168, 168, 168, 0.25); }

@media (max-width: 575px) {
  .navbar-brand {
    padding: 10px 0; } }

.navbar-brand__title {
  color: white;
  font-family: 'Open Sans', sans-serif;
  font-size: 2.0rem;
  font-weight: 600; }
  @media (max-width: 575px) {
    .navbar-brand__title {
      padding-left: 10px; } }
/* search */
.search-btn {
  border: 0;
  background: transparent;
  padding: 20px; }

.search-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 2;
  visibility: hidden;
  transition: .2s ease;
  opacity: 0; }
  .search-wrapper.open {
    visibility: visible;
    opacity: 1; }

.search-box {
  height: 112px;
  width: 100%;
  border: 0;
  background: #fff;
  font-size: 30px;
  padding: 0; }
  .search-box:focus {
    box-shadow: none !important; }

.search-close {
  position: absolute;
  right: 5px;
  top: 28px;
  border: 0;
  background: transparent;
  page-break-after: 10px;
  font-size: 20px; }

.algolia-autocomplete {
  width: 100%;
  left: 0; }

select.nav-item {
  color: white;
  background-color: #144B74;
  font-weight: 600;
  padding: 19px; }

.carousel-indicators {
  position: static;
  justify-content: start;
  margin: 0; }
  .carousel-indicators__wrapper {
    position: absolute;
    bottom: -40px;
    width: 100%; }
  .carousel-indicators__item {
    margin: 0 6px !important;
    width: 10px !important;
    height: 10px !important; }
    .carousel-indicators__item:first-child {
      margin-left: 0 !important; }

.carousel-item__container {
  border: 1px solid #707070; }

.carousel-item__inner {
  min-height: 350px; }
  @media (max-width: 575px) {
    .carousel-item__inner {
      min-height: auto; } }
.carousel-control-prev,
.carousel-control-next {
  background: none;
  border: 0; }

.hero-section {
  margin-top: 88px;
  padding: 75px 0 150px; }
  @media (max-width: 991px) {
    .hero-section {
      margin-top: 0; } }
@media screen and (max-width: 600px) {
  .hero-section {
    padding: 60px 0 122px; } }

.hero-slider-item h1 {
  font-size: 35px; }

.hero-slider .prevArrow,
.hero-slider .nextArrow {
  position: absolute;
  bottom: -123px;
  z-index: 9;
  padding: 15px;
  color: rgba(255, 255, 255, 0.5);
  border: 0;
  font-size: 25px;
  transition: all linear 0.2s;
  background: transparent; }
  .hero-slider .prevArrow:focus,
  .hero-slider .nextArrow:focus {
    outline: 0; }
  .hero-slider .prevArrow:hover,
  .hero-slider .nextArrow:hover {
    color: #144B74; }

.hero-slider .prevArrow {
  right: 60px; }

.hero-slider .nextArrow {
  right: 0; }

.hero-slider .slick-arrow {
  display: none; }

.hero-slider .slick-dots {
  position: absolute;
  left: 0;
  bottom: -100px;
  padding-left: 0; }
  .hero-slider .slick-dots li {
    display: inline-block;
    margin: 0 6px; }
    .hero-slider .slick-dots li.slick-active button {
      background: #fff; }
    .hero-slider .slick-dots li button {
      color: transparent;
      padding: 0;
      overflow: hidden;
      height: 10px;
      width: 10px;
      background: rgba(255, 255, 255, 0.2);
      border: 0;
      outline: 0; }

/* banner feature */
.feature-icon {
  font-size: 50px;
  color: #144B74;
  display: inline-block; }

.feature-blocks {
  margin-top: -100px;
  padding-left: 70px;
  padding-top: 80px;
  padding-right: 30%; }
  @media (max-width: 1400px) {
    .feature-blocks {
      padding-right: 10%; } }
  @media (max-width: 1200px) {
    .feature-blocks {
      padding-right: 50px;
      padding-left: 50px;
      padding-top: 30px; }
      .feature-blocks h3 {
        font-size: 20px; } }
  @media (max-width: 991px) {
    .feature-blocks {
      margin-top: 0;
      padding: 50px; }
      .feature-blocks h3 {
        font-size: 25px; } }
/* /banner feature */
/* book */
.card-btn {
  font-size: 12px;
  padding: 5px 10px; }

.flex-basis-33 {
  flex-basis: 33.3333%; }

.hover-shadow {
  transition: .3s ease; }
  .hover-shadow:hover {
    box-shadow: 0px 4px 25px 0px rgba(27, 39, 71, 0.15); }

/* /book */
/* success story */
.success-video {
  min-height: 300px; }
  .success-video .play-btn {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%); }
    @media (max-width: 767px) {
      .success-video .play-btn {
        left: 50%;
        transform: translate(-50%, -50%); } }
.play-btn {
  display: inline-block;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  background: #144B74;
  color: #fff;
  font-size: 40px;
  text-align: center; }
  .play-btn i {
    line-height: 80px; }
  .play-btn::before {
    position: absolute;
    content: "";
    height: 0;
    width: 0;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    z-index: -2;
    transition: .3s ease;
    transition-delay: .2s; }
  .play-btn::after {
    position: absolute;
    content: "";
    height: 80%;
    width: 80%;
    transform: translate(-50%, -50%);
    background: #144B74;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    z-index: -1;
    transition: .3s ease; }
  .play-btn:hover::before {
    height: 80%;
    width: 80%;
    transition-delay: 0s; }
  .play-btn:hover::after {
    height: 0;
    width: 0;
    transition: 0s ease; }

/* /success story */
/* partner */
.partner-info {
  width: 70%;
  bottom: 0;
  right: 0; }

/* /partner */
/* footer */
.newsletter {
  background-image: linear-gradient(to right, transparent 50%, #144B74 50%);
  margin-bottom: -170px;
  position: relative;
  z-index: 1; }
  .newsletter-block {
    padding-left: 50px; }
    @media (max-width: 575px) {
      .newsletter-block {
        padding-left: 15px; } }
.input-wrapper {
  position: relative; }
  .input-wrapper button {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%); }

.form-control {
  height: 88px;
  background: #fff;
  border-radius: 0;
  padding-left: 25px;
  padding-right: 25px; }
  .form-control:focus {
    border-color: #144B74;
    box-shadow: none; }

.newsletter-block .form-control {
  height: 90px; }

.bg-footer {
  background: #0b111e;
  background: linear-gradient(90deg, #0b111e 0%, #144b74 56%, #2787c8 100%); }

.logo-footer {
  margin-top: -20px;
  display: inline-block; }

.footer {
  border-color: #fff !important;
  padding-top: 30px; }

/* /footer */
.filter-controls li {
  cursor: pointer;
  transition: .1s ease; }
  .filter-controls li.active {
    font-weight: 600;
    color: #144B74; }
  .filter-controls li:hover {
    color: #144B74; }

#bp_container {
  cursor: zoom-out; }

.card-type {
  position: absolute;
  top: 30px;
  left: 30px;
  padding: 3px 10px;
  color: #fff;
  background: #144B74;
  z-index: 1; }

.card-meta {
  font-size: 15px; }

.card-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden; }

/* .card-body {
    height: 200px;
    padding: 1rem 1rem;
} */
.blog-shape-left {
  position: absolute;
  left: 0;
  bottom: 0; }

.blog-shape-right {
  position: absolute;
  right: 0;
  top: 50%; }

.clip-half-cycle {
  clip-path: circle(157% at 50% -100%); }

.title-border-left {
  position: relative;
  padding-left: 30px; }
  .title-border-left::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 5px;
    border-radius: 30px;
    background: #144B74; }

.post-search {
  border: 0;
  background: transparent;
  position: absolute;
  bottom: 15px;
  right: 0; }

.tag-list a {
  display: inline-block;
  padding: 10px 22px;
  background: #fff;
  box-shadow: 0px 5px 20px 0px rgba(51, 77, 128, 0.12);
  border-radius: 35px;
  margin-bottom: 15px;
  color: #707070; }
  .tag-list a:hover {
    background: #144B74;
    color: #fff;
    box-shadow: 0; }

blockquote {
  padding: 30px 40px;
  font-style: italic;
  color: #144B74;
  border-left: 2px solid #144B74;
  box-shadow: 0px 15px 39px 0px rgba(8, 18, 109, 0.1);
  position: relative;
  margin-bottom: 40px; }
  blockquote::before {
    position: absolute;
    content: "";
    font-family: "themify";
    font-size: 100px;
    color: rgba(20, 75, 116, 0.3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-style: normal; }
  blockquote p {
    font-style: normal;
    margin-top: 10px; }

.post-thumb-sm {
  max-height: 70px;
  width: auto; }

.pagination .page-item {
  margin: 5px; }
  .pagination .page-item .page-link {
    border-radius: 50%;
    background: #fff;
    color: #144B74;
    border: 1px solid #144B74;
    box-shadow: none;
    height: 30px;
    width: 30px;
    font-size: 12px;
    line-height: 30px;
    text-align: center;
    padding: 0; }
  .pagination .page-item.active .page-link {
    background: #144B74;
    color: #fff; }

.content img {
  max-width: 100%; }

/* /blog */
/* paging */
.link-article .pre-article {
  display: inline-block; }
  .link-article .pre-article i {
    position: relative;
    top: -1px; }

.link-article .next-article {
  float: right;
  text-align: right; }
  .link-article .next-article i {
    position: relative;
    top: -1px; }

/* pager*/
.pager {
  padding-left: 0;
  padding-bottom: 40px;
  margin: 20px 0;
  text-align: center;
  list-style: none; }

.pager li {
  display: inline; }

.pager li > a, .pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #144B74; }

.pager li > a:focus, .pager li > a:hover {
  text-decoration: none;
  background-color: #144B74;
  color: #fff; }

.pager .next > a, .pager .next > span {
  float: right; }

.pager .previous > a, .pager .previous > span {
  float: left; }

.pager .disabled > a, .pager .disabled > a:focus, .pager .disabled > a:hover, .pager .disabled > span {
  color: #144B74;
  cursor: not-allowed;
  background-color: #144B74; }

.copyright__text {
  color: #fff;
  font-size: .875rem;
  line-height: 1.35; }

.intro {
  margin: 120px 0; }
  .intro--small {
    margin: 40px 0; }
  @media (max-width: 991px) {
    .intro__margin {
      margin-bottom: 40px; } }
.features {
  margin: 120px 0; }
  .features--small {
    margin: calc(120px / 2) 0; }
  .features__image {
    height: 80px; }
  @media (max-width: 991px) {
    .features__card {
      margin-bottom: 40px; } }
  .features__card-body {
    height: auto;
    padding-bottom: 0; }
    @media (max-width: 991px) {
      .features__card-body {
        padding-bottom: 1rem; } }
  .features__more {
    display: flex;
    padding-top: 40px; }
  .features__more-icon {
    color: #144B74;
    width: 2rem;
    height: 2rem; }
  .features__more-text {
    padding-left: 10px;
    color: #144B74;
    font-size: 1.125rem;
    font-weight: 600; }

.text-image {
  margin: 120px 0; }
  .text-image--small {
    margin: calc(120px / 2) 0; }
  .text-image--no-margin {
    margin-bottom: 0; }
  .text-image__image {
    max-height: 230px; }
    .card-img .text-image__image {
      max-height: 120px; }
  .text-image__button {
    margin-top: 20px; }
  @media (max-width: 991px) {
    .text-image__margin {
      margin-bottom: 40px; } }
  .text-image__list-icon--check {
    margin-top: .25rem;
    max-width: 50% !important; }

.info-boxes {
  margin: 120px 0; }
  .info-boxes--small {
    margin: calc(120px / 2) 0; }
  .info-boxes__row {
    gap: 32px; }
  .info-boxes__box {
    flex: 1;
    padding: 40px 20px; }
    @media (max-width: 991px) {
      .info-boxes__box {
        margin-bottom: 20px; } }
    .info-boxes__box--left {
      background: #0B111E;
      background: linear-gradient(90deg, #0B111E 0%, #0a2a47 100%); }
    .info-boxes__box--middle {
      background: #0a2a47;
      background: linear-gradient(90deg, #0a2a47 0%, #1a5c8c 100%); }
    .info-boxes__box--right {
      background: #1a5c8c;
      background: linear-gradient(90deg, #1a5c8c 0%, #2787C8 100%); }
  .info-boxes__headline {
    color: #fff; }
  .info-boxes__text {
    color: #fff; }

.partner {
  margin-top: 4rem;
  margin-bottom: 4rem; }
  .partner__headline {
    font-size: 1.125rem; }

.text-with-background {
  background: #0b111e;
  background: linear-gradient(90deg, #0b111e 0%, #144b74 56%, #2787c8 100%);
  margin: 120px 0;
  padding: 40px;
  color: #fff; }
  .text-with-background__text {
    color: #fff; }
  .text-with-background__listing li {
    color: #fff !important; }
  .text-with-background strong {
    color: #fff; }

.text {
  margin: 120px 0; }
  .text__command-line {
    background: #707070;
    display: block;
    padding: .5rem 1rem;
    color: #fff;
    font-family: "Courier New", sans-serif; }
  .text__button {
    padding: .5rem 1rem; }
  .text__button-icon {
    margin: 0;
    margin-right: 1rem; }
  .text__listing {
    margin: 1.5rem 0 !important; }
    p + .text__listing {
      margin-top: -1rem !important; }
    .text__listing.mb-0 {
      margin-bottom: 0 !important; }

.tabs-content {
  margin: 120px 0; }
  .tabs-content__row {
    margin-bottom: 0; }
  .tabs-content__tabs {
    padding-left: 0 !important; }
    .tabs-content__tabs .nav-item {
      margin: 0;
      margin-right: 4px; }
      .tabs-content__tabs .nav-item .nav-link {
        margin: 0;
        padding: 4px 10px;
        border: 0;
        background: #707070;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        color: #fff;
        font-weight: 400; }
        .tabs-content__tabs .nav-item .nav-link:hover {
          background: #EF8223;
          text-decoration: none; }
        .tabs-content__tabs .nav-item .nav-link.active {
          background: #EF8223;
          color: #fff; }

.events {
  margin: 120px 0; }
  .fixed-top + .events {
    margin-top: 208px; }
    @media (max-width: 575px) {
      .fixed-top + .events {
        margin-top: 32px; } }
.event__infos-item {
  margin-top: 2rem; }

.events-more {
  margin: 120px 0; }

.events-filter__controls {
  display: inline-table; }

.events-filter__button {
  text-transform: uppercase;
  margin-right: .5rem;
  margin-bottom: .5rem;
  font-size: .75rem; }

.accordion {
  max-width: 100%;
  flex: 0 0 100%; }
  .accordion + .accordion {
    margin-top: 2rem; }
  .accordion .btn-accordion {
    padding-left: 0;
    padding-right: 0; }

.card {
  border: 1px solid #969696;
  border-radius: 0;
  margin-bottom: 32px; }
  .card-header--gray {
    background-color: #f8f8f8;
    border-bottom-color: #969696;
    color: #909090;
    font-weight: 700; }
  .card-header__title {
    margin-left: .75rem; }
  .card-footer--links {
    padding: 0 2rem 2rem;
    background-color: transparent;
    border-top: 0; }
    .card-footer--links .nav-item:last-child {
      margin-right: 0; }
  .card-body {
    padding: 32px; }
    .card-body p:last-child {
      margin-bottom: 0; }
  .card-img {
    padding: 32px; }
  .card-subtitle {
    color: #969696;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: .75rem; }
  .card-badge {
    margin-bottom: .75rem;
    border-radius: 50px;
    border: 1px solid #b1b1b1;
    padding: .5rem .75rem;
    font-size: .875rem;
    font-weight: 700;
    background-color: #cdeaf9;
    color: #707070; }
    .card-badge.badge-category {
      background-color: #c6e3db;
      color: #707070; }
  .card-title {
    margin-bottom: .75rem;
    color: #144B74;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    font-size: 1.5rem; }
  .card-link-no-action {
    text-decoration: none; }
    .card-link-no-action:hover, .card-link-no-action:focus {
      text-decoration: none; }
  .card-table {
    width: auto;
    margin-bottom: .75rem;
    color: #707070; }
    .card-table td,
    .card-table th {
      border-top: none; }
    .card-table th {
      font-weight: 600; }
      .card-table th:first-child {
        padding-left: 0; }
  .card__infos {
    margin-bottom: .75rem;
    color: #707070;
    font-size: 1.125rem; }
  .card__date {
    background: #144B74;
    border-bottom: 0;
    padding: 10px 1.25rem;
    color: #fff; }
    .card__date:first-child {
      border-radius: 0; }
  .accordion > .card {
    border-color: #144B74; }

.card__info-item + .card__info-item {
  margin-left: .75rem; }

.accordion .card-header {
  background-color: #144B74; }
  .accordion .card-header--gray {
    background-color: #f8f8f8; }

.nav-link__card {
  color: #144B74;
  text-transform: capitalize; }
  .nav-link__card:hover {
    background-color: #144B74;
    color: #fff; }

.filter__item {
  margin-bottom: 2rem;
  display: block;
  transition: all 0.5s ease-out 0ms; }
  .filter__item--hidden {
    display: none;
    transition: all 0.5s ease-out 0ms; }
  .filter__item--no-spacing {
    margin-bottom: 0; }

.filter__landingpage .card-img-top {
  max-height: 100px;
  width: auto; }

.filter__landingpage .card__link {
  margin-top: 1.25rem;
  text-align: center; }

.tags-filter__item--hidden {
  display: none;
  transition: all 0.5s ease-out 0ms; }

.elearning div, .elearning span, .elearning ul, .elearning li, .elearning h1, .elearning h2, .elearning h3, .elearning h4, .elearning p {
  color: #000; }

.elearning code {
  color: #882825; }

.elearning h1, .elearning h2, .elearning h3, .elearning h4 {
  margin-top: 2rem;
  margin-bottom: 2rem; }

.elearning ul, .elearning ol {
  margin: 1rem 0;
  list-style-type: square;
  padding-inline-start: 1.25rem; }
  .elearning ul li::marker, .elearning ol li::marker {
    color: #aa332f; }

.elearning a {
  color: #aa332f; }
  .elearning a:hover {
    color: #882825; }

.elearning__highlight {
  position: relative; }

.elearning__pre {
  background-color: #F1F1F1 !important;
  padding: 15px;
  padding-top: 50px;
  -webkit-box-shadow: inset 0px 0px 15px 4px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0px 0px 15px 4px rgba(0, 0, 0, 0.3);
  border-radius: 0.2rem;
  color: #444;
  overflow: auto; }

.elearning__clipboard {
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer; }
  .elearning__clipboard:hover .elearning__clipboard-label {
    visibility: visible;
    opacity: 1; }

.elearning__clipboard-label {
  visibility: hidden;
  background-color: #144B74;
  color: #fff !important;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 20000;
  bottom: 150%;
  left: 50%;
  margin-left: -75px;
  opacity: 0;
  transition: opacity 0.3s; }
  .elearning__clipboard-label:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #144B74 transparent transparent transparent; }

.elearning__badge {
  margin: 0 0 0 .75rem;
  background: #aa332f;
  color: #fff !important;
  font-size: 1.125rem; }
  .elearning__badge:hover {
    background: #882825; }

.elearning__sponsor-title {
  display: block;
  color: #aa332f; }

.elearning__sponsor-image {
  max-height: 40px; }

.elearning__headline {
  margin-bottom: 3rem !important;
  margin-top: 0 !important;
  padding: 30px 40px;
  background-image: url(/images/elearning/title_bar_bg.png);
  background-position: center;
  background-size: cover;
  color: #fff !important; }

.elearning .alert-warning {
  padding: 1rem;
  border-color: #882825; }

.icon_cd_holder {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  /*justify-content: space-evenly;*/ }

.icon_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  color: var(--white);
  background-color: var(--white);
  margin-right: 20px;
  margin-bottom: 25px;
  border: 0;
  max-width: 30%; }

@media (max-width: 767px) {
  .icon_btn {
    max-width: none; } }

.icon-button__inline {
  display: inline !important;
  margin: 0 !important;
  vertical-align: bottom; }

.icon_btn_txt {
  position: absolute;
  font-size: 1.25rem;
  font-weight: bold;
  color: #fff !important; }

.icon_ind_holder {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 15px; }

.icon_ind {
  flex-grow: 1;
  height: 20px;
  visibility: hidden;
  background-image: url(/images/elearning/extern/arrow_down_red.png) !important;
  background-repeat: no-repeat;
  background-position: bottom center;
  position: absolute;
  width: 20px;
  margin-top: 90px; }

.icon_cd_reveal {
  display: none;
  padding-top: 30px; }

.icon_cd_reveals {
  display: block; }

.icon_cd_reveal {
  position: absolute;
  left: -5000px; }

@media (max-width: 767px) {
  .icon_cd_reveals {
    display: none; }
  .icon_cd_reveal {
    position: static;
    left: auto; } }

.hotword {
  border: solid 2px var(--red);
  background-color: var(--white);
  border-radius: 10px;
  position: absolute;
  padding: 20px;
  margin-right: 5rem;
  display: none; }

@media (max-width: 767px) {
  .hotword {
    margin-right: 1rem; } }

.hw_link {
  cursor: pointer; }

.hw_close {
  background-image: url(/images/elearning/extern/close.png) !important;
  background-repeat: no-repeat;
  width: 21px;
  height: 21px;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer; }

.hw_header {
  font-weight: bold;
  margin-bottom: 20px; }

/* Tab Click & Display */
.tab_btn_holder {
  display: flex;
  flex-wrap: wrap;
  width: 100%; }

.tab_btn {
  height: 50px;
  padding: 0;
  border: 0;
  border-bottom: solid 1px var(--darkgrey);
  flex-grow: 1;
  background-color: var(--white); }

.tab_btn_visited {
  background-image: url(/images/elearning/extern/tick.png) !important;
  background-repeat: no-repeat;
  background-position: 98% 90%; }

.tab_btn_txt {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 43px;
  font-size: 1.25rem; }

.tab_reveal_text > p {
  margin-bottom: 0px; }

.tab_reveal_text > ul {
  margin-top: 0px; }

.tab_btn_cur {
  height: 6px;
  background-color: var(--red);
  visibility: hidden; }

.tab_cd_reveal {
  display: none;
  padding-top: 35px; }

.tab_cd_header {
  font-size: 1.25rem;
  margin-bottom: 20px;
  font-weight: bold; }

.tab_reveal_content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between; }

@media (min-width: 1024px) {
  .tab_reveal_content {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row; } }

.tab_reveal_img {
  width: 200px !important;
  height: 200px !important;
  flex-basis: 1; }

.tab_reveal_img > img {
  width: 200px !important;
  height: 200px !important; }

.tab_reveal_text {
  flex-basis: 80%;
  margin-bottom: 20px; }

@media (min-width: 1024px) {
  .tab_reveal_img {
    flex-basis: 1; }
  .tab_reveal_text {
    flex-basis: 80%; } }

.tab_reveal_text_noimg {
  flex-basis: auto; }

.tab_ind_holder {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 15px; }

.tab_ind {
  flex-grow: 1;
  height: 20px;
  visibility: hidden;
  background-image: url(/images/elearning/extern/arrow_down_grey.png) !important;
  background-repeat: no-repeat;
  background-position: bottom center; }

/* image click and display screens */
.image_cd_holder {
  width: 100%;
  /*display: flex;*/
  /* mjb commented out 21/6/23 */
  flex-wrap: nowrap;
  align-items: start;
  justify-content: space-between; }

.image_btn_holder {
  display: flex;
  flex-wrap: wrap;
  max-width: 420px;
  flex-basis: auto; }

.image_cd_reveal {
  display: none; }

.image_cd_reveal p:first-child {
  margin: 0; }

.image_cd_reveals {
  width: 68%;
  /* mjb commented out 20/6/23 */
  /*flex-basis: auto;
  float: left;*/
  margin-left: 10px; }

/* mjb commented out 20/6/23 */
.image_cd_reveal {
  position: absolute;
  left: -5000px; }

.image_cd_holder {
  display: flex;
  justify-content: flex-start; }

.image_btn_holder {
  width: 420px !important; }

@media (max-width: 767px) {
  .image_cd_reveals {
    position: absolute;
    left: -5000px; }
  .image_cd_reveal {
    position: static;
    left: auto; }
  .image_cd_reveal p + ul {
    margin-top: 0rem; }
  .image_cd_holder {
    display: inline; }
  .image_btn_holder {
    width: auto !important;
    max-width: none; } }

.image_btn {
  margin-right: 10px;
  margin-bottom: 10px;
  width: 200px;
  height: 250px;
  cursor: pointer; }

@media (max-width: 767px) {
  .image_btn {
    width: 100%; } }

.image_btn_txt {
  text-align: center;
  font-weight: bold;
  width: 200px;
  height: 40px;
  overflow: hidden;
  text-overflow: ellipsis; }

.image_ind {
  flex-grow: 1;
  height: 20px;
  visibility: hidden;
  background-image: url(/images/elearning/extern/arrow_down_red.png) !important;
  background-repeat: no-repeat;
  background-position: bottom center;
  position: absolute;
  width: 20px;
  margin-top: 410px; }

/*  Expando */
.expando_btn {
  color: var(--red);
  border: solid 1px var(--red);
  padding: 20px;
  width: 100%;
  text-align: left;
  margin-top: 2px; }

.expando_reveal {
  display: none;
  padding: 20px;
  border-left: solid 1px var(--darkgrey);
  border-right: solid 1px var(--darkgrey);
  border-bottom: solid 1px var(--darkgrey); }

.text_cd_holder {
  width: 100%;
  display: flex; }

.text_cd_btns {
  width: 50%; }

.text_cd_btn {
  width: 100%;
  padding: 20px;
  color: var(--red);
  border: solid 1px var(--red);
  margin-top: 2px; }

.text_cd_reveals {
  width: 50%; }

.text_cd_reveal {
  display: none;
  padding: 20px;
  border: solid 1px var(--darkgrey);
  margin-top: 2px; }

@media (max-width: 767px) {
  .text_cd_holder {
    flex-wrap: wrap; }
  .text_cd_reveals {
    width: 100%; }
  .text_cd_btns {
    width: 100%; }
  /* mjbnow */
  .tab_reveal_text > .mobileImgZoom {
    margin-top: 3rem; } }

fieldset {
  padding: 0; }

.rb_option, .cb_option {
  /* removed , .cb_option mjb 5/6/23 */
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  border: solid 1px var(--red);
  padding: 20px;
  cursor: pointer; }

.rb, .cb {
  /* removed , .cb_option > .cb  mjb 5/6/23 */
  accent-color: var(--red) !important;
  cursor: pointer;
  margin-right: 0.425rem; }

.rb_label, .cb_label {
  margin-bottom: 0;
  cursor: pointer; }

.submit_btn {
  color: var(--red);
  border: solid 1px var(--red);
  padding: 20px;
  margin-bottom: 20px; }
  .submit_btn.button-click {
    color: var(--white);
    padding: 10px 30px;
    border: 2px solid var(--red); }
    .submit_btn.button-click:hover {
      color: var(--red);
      border: 2px solid var(--red); }

.feedback {
  display: none; }

.mobileImgZoom {
  margin-top: 1rem; }

.desktopImgZoom {
  display: block !important; }

.mobileImgZoom {
  display: none; }

@media (max-width: 767px) {
  .desktopImgZoom {
    display: none !important; }
  .mobileImgZoom {
    display: block; } }

.page-navigation {
  display: flex; }
  .page-navigation__item {
    max-width: 49%; }
    .page-navigation__item--right {
      margin-left: auto; }
  .page-navigation__icon {
    color: #fff; }
  .page-navigation__link-text {
    margin-left: 2rem;
    color: #fff !important; }
    .page-navigation__link-text--left {
      margin-left: 0;
      margin-right: 2rem; }

.expand__icon {
  color: #aa332f;
  font-size: 1.125rem !important; }
  .expand__icon--active {
    transform: rotate(90deg); }

.use-cases {
  margin: 120px 0; }
  .fixed-top + .use-cases {
    margin-top: 208px; }
    @media (max-width: 575px) {
      .fixed-top + .use-cases {
        margin-top: 32px; } }
  .use-cases__teaser-headline {
    margin-bottom: 2rem; }
  .use-cases__content strong {
    color: #144B74; }
  .use-cases__content ul {
    margin-top: 1rem;
    margin-bottom: 2rem;
    font-size: 1.125rem; }
  .use-cases__content p + h2 {
    margin-top: 2rem; }

.downloads {
  margin: 120px 0; }
  .fixed-top + .downloads {
    margin-top: 208px; }
    @media (max-width: 575px) {
      .fixed-top + .downloads {
        margin-top: 32px; } }
.blog {
  margin: 120px 0; }
  .fixed-top + .blog {
    margin-top: 208px; }
    @media (max-width: 575px) {
      .fixed-top + .blog {
        margin-top: 32px; } }
  .blog__governance-structure-image, .blog__ecosystem-image {
    margin-top: 40px;
    margin-bottom: 40px; }
  .blog__content strong {
    color: #144B74; }
  .blog__content ul, .blog__content ol {
    margin-top: 1rem;
    margin-bottom: 2rem;
    font-size: 1.125rem; }
  .blog__content p + h2 {
    margin-top: 2rem; }
  .blog__info-data {
    color: #707070; }
  .blog__infos {
    margin-bottom: 40px; }
  .blog .content h2,
  .blog .content h3,
  .blog .content h4 {
    margin-top: -78px;
    padding-top: 98px; }
  @media (max-width: 575px) {
    .blog .content h2,
    .blog .content h3,
    .blog .content h4 {
      margin-top: 2rem;
      padding-top: 0px; } }
.releases__item {
  margin: 0;
  padding: 2rem 0;
  border-bottom: 1px solid #707070; }

.contact {
  margin: 120px 0; }
  .fixed-top + .contact {
    margin-top: 208px; }
    @media (max-width: 575px) {
      .fixed-top + .contact {
        margin-top: 32px; } }
  .contact__img {
    max-width: 250px; }

.search {
  margin: 120px 0; }
  .fixed-top + .search {
    margin-top: 208px; }
    @media (max-width: 575px) {
      .fixed-top + .search {
        margin-top: 32px; } }
.signup__form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 2rem 0; }

.signup__label {
  margin-bottom: 0;
  font-weight: bold; }

.signup__input {
  border: 1px solid #144B74; }
  .signup__input.mce_inline_error {
    border-color: #aa332f; }

.signup .mce_inline_error {
  color: #aa332f; }

.signup .checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem; }

#mc_embed_signup {
  clear: left;
  max-width: 600px; }
  #mc_embed_signup .clear {
    clear: both; }
  #mc_embed_signup .mc-field-group {
    clear: left;
    position: relative;
    width: 96%;
    padding-bottom: 3%;
    min-height: 50px;
    display: grid; }
    #mc_embed_signup .mc-field-group label {
      display: block; }
    #mc_embed_signup .mc-field-group input {
      display: block;
      width: 100%;
      padding: 8px 0;
      text-indent: 2%; }
    #mc_embed_signup .mc-field-group.input-group input {
      display: inline;
      width: auto;
      border: none; }
    #mc_embed_signup .mc-field-group.input-group label {
      display: inline;
      margin-left: 10px; }
    #mc_embed_signup .mc-field-group.input-group ul {
      margin: 0;
      padding: 5px 0;
      list-style: none; }
    #mc_embed_signup .mc-field-group.input-group li {
      display: block;
      padding: 3px 0;
      margin: 0; }
  #mc_embed_signup .indicates-required {
    text-align: right;
    font-size: .6875rem;
    margin-right: 4%; }
  #mc_embed_signup .asterisk {
    color: #e85c41;
    font-size: 150%;
    font-weight: normal;
    position: relative;
    top: 5px; }
  #mc_embed_signup .response {
    margin: 1em 0;
    padding: 1em 0 .5em;
    font-weight: bold;
    float: left;
    width: 80%; }
    #mc_embed_signup .response--success {
      color: #529214; }

.content code {
  color: #882825; }

.content__highlight {
  position: relative; }

.content__pre {
  background-color: #F1F1F1 !important;
  padding: 15px;
  padding-top: 50px;
  -webkit-box-shadow: inset 0px 0px 15px 4px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0px 0px 15px 4px rgba(0, 0, 0, 0.3);
  border-radius: 0.2rem;
  color: #444;
  overflow: auto; }

.content__clipboard {
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer; }
  .content__clipboard:hover .content__clipboard-label {
    visibility: visible;
    opacity: 1; }

.content__clipboard-label {
  visibility: hidden;
  background-color: #144B74;
  color: #fff !important;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 20000;
  bottom: 150%;
  left: 50%;
  margin-left: -75px;
  margin-bottom: 0;
  opacity: 0;
  transition: opacity 0.3s; }
  .content__clipboard-label:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #144B74 transparent transparent transparent; }

@keyframes blink {
  to {
    visibility: hidden; } }

@keyframes pulseText {
  0%, 100% {
    opacity: 1; }
  50% {
    opacity: 0.5; } }

.chatbot {
  position: fixed;
  right: 0;
  top: 120px;
  z-index: 1000;
  width: 376px;
  height: min(640px, calc(100vh - 136px));
  box-sizing: border-box;
  background: #f2f4f5;
  border-radius: 5px;
  box-shadow: -4px 6px 9px 0 rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out, width 0.4s ease-in-out; }
  .chatbot--fullsize {
    width: 640px; }
  .chatbot--white {
    background: #fff; }
  .chatbot--visible {
    transform: translateX(0); }
  .chatbot--hidden {
    pointer-events: none;
    visibility: hidden; }
  .chatbot__header {
    background: #144b74;
    border-radius: 5px 5px 0 0;
    flex-shrink: 0; }
    .chatbot__header--hidden {
      display: none; }
  .chatbot__navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 1rem;
    background: #144b74;
    border-radius: 10px;
    color: #fff; }
  .chatbot__nav-left {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.1);
    /* border: 1px solid rgba(255,255,255,.25); */
    color: #fff;
    cursor: pointer;
    transition: background .2s ease, transform .1s ease; }
    .chatbot__nav-left:hover {
      background: rgba(255, 255, 255, 0.16); }
    .chatbot__nav-left:active {
      transform: scale(0.96); }
    .chatbot__nav-left svg {
      display: block; }
    .chatbot__nav-left--no-button {
      background: none;
      border: 1px solid transparent;
      cursor: auto; }
      .chatbot__nav-left--no-button:hover {
        background: none; }
    .chatbot__nav-left:focus {
      outline: 2px solid rgba(255, 255, 255, 0.5);
      outline-offset: 2px; }
    .chatbot__nav-left .chatbot__btn-back {
      flex: 0 0 32px;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 9999px;
      background: rgba(255, 255, 255, 0.1);
      /* border: 1px solid rgba(255,255,255,.25); */
      color: #fff;
      cursor: pointer;
      transition: background .2s ease, transform .1s ease;
      appearance: none;
      border: 0;
      padding: 0;
      background-clip: padding-box; }
      .chatbot__nav-left .chatbot__btn-back:hover {
        background: rgba(255, 255, 255, 0.16); }
      .chatbot__nav-left .chatbot__btn-back:active {
        transform: scale(0.96); }
      .chatbot__nav-left .chatbot__btn-back svg {
        display: block; }
  .chatbot__nav-middle {
    flex: 1 1 auto;
    min-width: 0; }
    .chatbot__nav-middle h2 {
      margin: 0;
      color: #fff;
      font-size: 16px;
      font-weight: 600;
      line-height: 1.5;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
  .chatbot__nav-right {
    display: flex;
    gap: 10px; }
    .chatbot__nav-right .chatbot__btn-close,
    .chatbot__nav-right .chatbot__btn-size {
      flex: 0 0 32px;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 9999px;
      background: rgba(255, 255, 255, 0.1);
      /* border: 1px solid rgba(255,255,255,.25); */
      color: #fff;
      cursor: pointer;
      transition: background .2s ease, transform .1s ease;
      appearance: none;
      border: 0;
      padding: 0;
      background-clip: padding-box; }
      .chatbot__nav-right .chatbot__btn-close:hover,
      .chatbot__nav-right .chatbot__btn-size:hover {
        background: rgba(255, 255, 255, 0.16); }
      .chatbot__nav-right .chatbot__btn-close:active,
      .chatbot__nav-right .chatbot__btn-size:active {
        transform: scale(0.96); }
      .chatbot__nav-right .chatbot__btn-close svg,
      .chatbot__nav-right .chatbot__btn-size svg {
        display: block; }
  .chatbot__btn-size.chatbot__btn-size--to-small {
    display: none; }
  .chatbot--fullsize .chatbot__btn-size.chatbot__btn-size--to-big {
    display: none; }
  .chatbot--fullsize .chatbot__btn-size.chatbot__btn-size--to-small {
    display: flex; }
  .chatbot__header-content {
    padding: 1rem 1rem 3rem; }
    .chatbot__navigation + .chatbot__header-content {
      padding-top: 0; }
  .chatbot__content {
    display: flex;
    flex-direction: column;
    margin-top: 8px;
    margin-right: 4px;
    padding: 1rem;
    max-height: calc(100% - 64px - 16px + 8px);
    overflow-y: auto;
    overflow-x: hidden;
    /* overflow-x: auto; */ }
    .chatbot--header-big .chatbot__content {
      max-height: calc(100% - 156px + 3rem - 16px + 8px);
      margin-top: -3rem; }
    .chatbot__content::-webkit-scrollbar {
      width: 8px; }
    .chatbot__content::-webkit-scrollbar-thumb {
      border-radius: 20px;
      background: rgba(21, 74, 115, 0.6); }
    .chatbot__content::-webkit-scrollbar-track {
      background: transparent; }
  .chatbot__question-big {
    display: flex;
    /* margin-top: -3rem; */
    padding: 1rem;
    align-items: flex-start;
    gap: 8px;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 10px;
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(90deg, #154A73, #22AFDD, #C6E3DB);
    background-origin: border-box;
    background-clip: padding-box, border-box; }
    .chatbot__question-big--hidden {
      display: none; }
  .chatbot__question-field {
    flex: 1 0 0;
    align-self: stretch;
    height: 104px;
    border: none;
    color: #144B74;
    font-size: .875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.42857143;
    resize: none;
    overflow-y: auto;
    overflow-x: hidden;
    word-break: break-word; }
    .chatbot__question-field:focus {
      outline: none;
      box-shadow: none; }
    .chatbot__question-field::placeholder {
      color: #a8a8a8; }
  .chatbot__question-button-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
    align-self: stretch; }
  .chatbot__question-button {
    margin: 0;
    padding: 0;
    background: none;
    border: none; }
  .chatbot__question-wrapper {
    max-width: 90%;
    align-self: flex-end;
    display: flex;
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border-radius: 5px;
    background: #dde8f0;
    backdrop-filter: blur(15px); }
    .chatbot__question-wrapper--hidden {
      display: none; }
  .chatbot__llm-info {
    margin-top: -8px;
    margin-bottom: 1.5rem;
    color: #666;
    text-align: center;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal; }
    .chatbot__llm-info--hidden {
      display: none; }
  .chatbot__disclaimer-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 64px);
    background: #fff;
    margin-top: 8px;
    margin-right: 4px;
    overflow-y: auto;
    overflow-x: hidden; }
    .chatbot__disclaimer-box::-webkit-scrollbar {
      width: 8px; }
    .chatbot__disclaimer-box::-webkit-scrollbar-thumb {
      border-radius: 20px;
      background: rgba(21, 74, 115, 0.6); }
    .chatbot__disclaimer-box::-webkit-scrollbar-track {
      background: transparent; }
    .chatbot__disclaimer-box--hidden {
      display: none; }
  .chatbot__disclaimer-header {
    padding: 1rem 0;
    border-bottom: 1px solid #E5E5E5;
    color: #0D0D0D;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.5;
    text-align: center; }
  .chatbot__disclaimer-text {
    flex: 1;
    padding: 1.5rem 2rem;
    color: #191919;
    font-size: .875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.42857143; }
  .chatbot__disclaimer-buttons {
    display: flex;
    padding: 1rem;
    flex-direction: row;
    justify-content: end;
    align-items: flex-end;
    align-self: stretch;
    gap: 10px;
    border-top: 1px solid #E5E5E5; }
  .chatbot__question {
    margin: 0;
    align-self: stretch;
    color: #144b74;
    font-size: .875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.42857143; }
  .chatbot__headline {
    margin: 0;
    color: rgba(255, 255, 255, 0.96);
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.5; }
  .chatbot__subheadline {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: .875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.42857143; }
  .chatbot__assistant-help-wrapper {
    margin-top: 32px; }
    .chatbot__assistant-help-wrapper--hidden {
      display: none; }
  .chatbot__assistant-help-header {
    padding: 0 8px; }
  .chatbot__assistant-helper-headline {
    margin: 0;
    color: #144B74;
    font-size: .75rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1; }
  .chatbot__assistant-helper-text {
    margin: 0;
    color: #707070;
    font-size: .75rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.333; }
  .chatbot__assistant-help-box {
    display: flex;
    padding: 12px 8px;
    margin-top: 8px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    border-radius: 5px;
    border: 1px solid #ccc;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px); }
  .chatbot__status {
    margin-bottom: 10px; }
    .chatbot__status--hidden {
      display: none; }
  .chatbot__status-info {
    color: #144b74;
    font-size: .875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.42857143; }
    .chatbot__status-info.pulsing {
      animation: pulseText 1.4s ease-in-out infinite; }
    .chatbot__status-info.done {
      animation: blink 1s steps(2, start) infinite; }
      .chatbot__status-info.done:after {
        content: '';
        display: inline-block;
        width: 1ch;
        height: 1em;
        background-color: currentColor;
        vertical-align: bottom;
        animation: blink 1s steps(2, start) infinite; }
  .chatbot__answer-wrapper {
    margin-top: 1.5rem; }
    .chatbot--header-big .chatbot__answer-wrapper {
      margin-top: 0; }
  .chatbot__answer {
    padding: 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
    background: #fefefe;
    color: #144b74;
    font-size: .875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.42857143;
    max-width: 100%;
    word-wrap: break-word;
    word-break: break-word;
    white-space: pre-wrap; }
    .chatbot__answer * {
      font-size: .875rem;
      font-style: normal;
      font-weight: 400;
      line-height: 1.42857143; }
    .chatbot__answer a {
      display: inline;
      white-space: nowrap;
      word-break: normal; }
    .chatbot__answer--hidden {
      display: none; }
    .chatbot__answer ul,
    .chatbot__answer ol {
      margin-bottom: 0; }
  .chatbot__footer {
    margin-top: 2rem; }
    .chatbot__footer--hidden {
      display: none; }
  .chatbot__another-question-button {
    width: 100%;
    display: flex;
    padding: .5rem 1rem;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    background: #fff; }
    .chatbot__another-question-button--hidden {
      display: none; }
  .chatbot__answer-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 10px; }
    .chatbot__answer-buttons--hidden {
      display: none; }
  .chatbot__button {
    display: flex;
    width: 32px;
    height: 32px;
    padding: 2px 0;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1px solid #ccc;
    border-radius: 20px;
    color: #707070;
    transition: background 0.2s ease; }
    .chatbot__button:hover {
      background: #707070;
      color: #fff; }
    .chatbot__button:disabled {
      background: transparent;
      color: #707070;
      cursor: auto; }
    .chatbot__button--active {
      background: #144B74;
      color: #fff; }
      .chatbot__button--active:hover, .chatbot__button--active:disabled {
        background: #144B74;
        color: #fff; }
  .chatbot__button-copy {
    /* background: $white; */
    /* border: 1px solid #ccc;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.875rem; */
    cursor: pointer;
    /* transition: background 0.2s ease; */
    /* &:hover {
      background: $light;
    } */ }
    .chatbot__button-copy--hidden {
      display: none; }
    .chatbot__button-copy-icon--success {
      color: #00ff00; }
    .chatbot__button-copy-icon--failure {
      color: #aa332f; }
  .chatbot__feedback-status {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    transition: display 0.4s ease-in-out; }
    .chatbot__feedback-status--hidden {
      display: none; }
    .chatbot__feedback-status .alert, .chatbot__feedback-status .article-style aside, .article-style .chatbot__feedback-status aside {
      /* layout */
      display: inline-flex;
      margin-bottom: 0;
      padding: 8px 16px;
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
      /* style */
      border-radius: 5px;
      box-shadow: 0 2px 8px 0 rgba(220, 220, 220, 0.25);
      border: 0;
      font-size: .875rem; }
    .chatbot__feedback-status .alert-info {
      background: #FEFEFE; }
  .chatbot__another-question-text {
    color: #144b74;
    font-size: .875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.42857143; }
  .chatbot__another-question-form {
    display: flex;
    padding: .5rem;
    align-items: flex-start;
    gap: 8px;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 10px;
    border: 2px solid #c6e3db;
    background: #fff; }
    .chatbot__another-question-form--hidden {
      display: none; }
  .chatbot__another-question-field {
    flex: 1 0 0;
    align-self: stretch;
    border: none;
    color: #a8a8a8;
    font-size: .875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.42857143; }
  .chatbot__another-question-button-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
    align-self: stretch; }
  .chatbot__another-question-send-button {
    margin: 0;
    padding: 0;
    background: none;
    border: none; }
  .chatbot__terms-condition-wrapper {
    margin: 4px 0 0; }
    .chatbot__terms-condition-wrapper--hidden {
      display: none; }
  .chatbot__terms-condition-info {
    margin-bottom: 0;
    text-align: center;
    color: #707070;
    font-size: .625rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal; }
  .chatbot__link-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.4em; }
  .chatbot__link-line {
    display: flex;
    align-items: center;
    font-size: 0.95em;
    color: #004990;
    word-break: break-word; }
    .chatbot__link-line a {
      text-decoration: underline;
      color: #2787C8;
      max-width: 85%;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      font-size: 0.75rem;
      line-height: 1.3333;
      /* 133.333% */ }
  .chatbot__link-text {
    font-size: 0.75rem; }
  .chatbot__link-icon {
    margin-left: 0.5em;
    font-size: 1em; }

.chatbot-tab {
  position: fixed;
  right: 0;
  top: 120px;
  /* 25%; */
  /* transform: translateY(-50%); */
  z-index: 1000;
  width: 48px;
  box-sizing: border-box;
  padding: 36px 10px;
  border-radius: 15px 0 0 15px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
  line-height: 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  border: 5px solid transparent;
  border-right-width: 0;
  /* background:
          linear-gradient($bg, $bg) padding-box,                // füllt Innenfläche
          linear-gradient(90deg, $gradL 0%, $gradR 100%) border-box; // gradient im Rand */
  background: #EF8223;
  outline: 5px solid white;
  transition: transform .25s ease; }
  .chatbot-tab:hover {
    transform: scale(1.1); }
  .chatbot-tab--hidden {
    display: none; }
  .chatbot-tab__text {
    transform: rotate(180deg); }

.chatbot-feedback--hidden {
  display: none; }

.chatbot-feedback__headline {
  color: #144B74;
  font-size: .75rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.333; }

.chatbot-feedback__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px; }

.chatbot-feedback__button {
  flex: 0 0 auto; }

.chatbot-feedback__form--hidden {
  display: none; }

.chatbot-feedback__comment {
  /* Layout */
  display: flex;
  width: 344px;
  height: 104px;
  padding: 16px;
  align-items: flex-start;
  gap: 8px;
  flex-shrink: 0;
  /* Style */
  border-radius: 5px;
  border: 1px solid #CCC;
  background: #FEFEFE; }
  .chatbot-feedback__comment::placeholder {
    color: #a8a8a8;
    font-size: .875rem;
    line-height: 1.42857; }

.chatbot-feedback__submit {
  margin-top: 10px;
  text-align: right; }

.chatbot-feedback .btn-chatbot-feedback {
  /* Layout */
  display: inline-flex;
  padding: 8px 12px;
  justify-content: center;
  align-items: center;
  /* Style */
  border-radius: 50px;
  border: 1px solid #b1b1b1;
  /* Typography */
  color: #707070;
  font-size: .875rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap; }
  .chatbot-feedback .btn-chatbot-feedback:disabled {
    background: transparent;
    color: #707070;
    cursor: auto;
    opacity: 1; }
  .chatbot-feedback .btn-chatbot-feedback:hover {
    background: #707070;
    color: #fff; }
  .chatbot-feedback .btn-chatbot-feedback--active {
    background: #144B74;
    color: white;
    border-color: #144B74; }
    .chatbot-feedback .btn-chatbot-feedback--active:disabled {
      background: #144B74;
      color: white; }

.chatbot-feedback .btn-chatbot-submit {
  color: #144B74;
  font-size: .875rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal; }

.footer-list__link {
  color: #fff;
  font-size: .875rem;
  line-height: 1.667; }
  .footer-list__link:hover {
    color: #fff; }

.footer-list-headline {
  margin-bottom: 0;
  font-size: .875rem;
  line-height: 1.667; }

.footer-signup {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff; }
  .footer-signup:hover {
    color: #fff; }
  .footer-signup__text {
    font-size: .875rem;
    line-height: 1.333; }

.breadcrumb {
  padding: 0;
  background: transparent;
  color: #707070;
  padding-inline-start: 0 !important;
  border-left: 0 !important; }
  .breadcrumb__item--active {
    font-weight: 600;
    color: #144B74; }
  .breadcrumb__item:before {
    font: normal normal normal 18px/1 FontAwesome;
    content: "\f0da";
    padding: 0 10px; }
  .breadcrumb__item:first-child:before {
    content: none; }
  .breadcrumb__separator {
    padding: 0 10px;
    display: none; }
  .breadcrumb__link {
    color: #707070; }
    .breadcrumb__link:hover {
      color: #707070; }

.test:before {
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f0da"; }

.page-sidebar {
  padding-left: 0;
  padding-inline-start: 0 !important;
  list-style-type: none;
  border-left: 0 !important; }
  .page-sidebar__submenu {
    margin-top: 1rem;
    margin-left: .5rem;
    list-style-type: none;
    border-left-color: #aa332f !important; }
  .page-sidebar__link-text {
    color: #aa332f; }
  .page-sidebar__link {
    color: #aa332f; }
    .page-sidebar__link:hover {
      color: #aa332f; }
    .page-sidebar__link--active {
      font-weight: 700; }

.content ul:not(.fa-ul, .tabs-content__tabs) {
  padding-left: 1.25rem;
  list-style-type: none; }
  .content ul:not(.fa-ul, .tabs-content__tabs) li {
    position: relative;
    margin-bottom: 0.2rem;
    padding-left: 2rem; }
    .content ul:not(.fa-ul, .tabs-content__tabs) li::marker {
      content: none; }
    .content ul:not(.fa-ul, .tabs-content__tabs) li:before {
      position: absolute;
      left: 0;
      /* content: "\2B22"; */
      display: block;
      color: #144B74;
      /* transform: rotate(-30deg); */
      content: '';
      width: 32px;
      height: 32px;
      background-image: url("/images/graphics/list-icon.png");
      background-size: 12px 14px;
      background-repeat: no-repeat;
      background-position: center left; }
    .content ul:not(.fa-ul, .tabs-content__tabs) li p {
      margin-bottom: 0.2rem; }
  .content ul:not(.fa-ul, .tabs-content__tabs).text-with-background__listing li::marker {
    color: #fff; }

.content ol li {
  line-height: 1.8;
  color: #707070;
  font-family: "Open Sans", sans-serif; }

.content ul li {
  line-height: 1.8;
  color: #707070;
  font-family: "Open Sans", sans-serif; }

ol.toc-list {
  list-style-type: none;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #707070;
  border-left: 2px solid #EEE; }
  ol.toc-list .toc-list {
    border-left: none; }

.table__nowrap {
  white-space: nowrap; }

.cursor-pointer {
  cursor: pointer; }
