@font-face {
font-family: 'Sofia pro'; 
src: url('/hc/theming_assets/01HZKPMECTPDWPSM1BTEVF00BT') format('opentype');
font-weight: normal;
font-style: normal; 
}

@font-face {
font-family: 'Aktiv'; 
src: url('/hc/theming_assets/01HZKPMEKSWZMN0DXJ6XZH5ST4') format('truetype');
font-weight: normal;
font-style: normal; 
}

/**********
 Variables
 **********/
strong {
  font-weight: 600 !important;
}

.articles__link {
    font-weight: 600 !important;
}

body {
  /* Colors */
  --primary-color: rgba(51, 26, 171, 1);
  --secondary-color: rgba(63, 101, 205, 1);
  --primary-bg-color: #FFFFFF;
  --primary-bg-color-always: #FFFFFF;
  --secondary-bg-color: rgba(244, 244, 249, 1);
  --secondary-bg-color-always: rgba(244, 244, 249, 1);
  --primary-text-color: #111827;
  --secondary-text-color: #6b7280;
  --link-color: rgba(51, 26, 171, 1);
  --border-color: #d1d5db;
  --info-color: rgba(61, 140, 156, 1);
  --success-color: rgba(193, 201, 210, 1);
  --warning-color: rgba(179, 151, 112, 1);
  --danger-color: #e64545;
  --primary-color-hover: #231276;
  --primary-color-active: #1f1069;
  --secondary-color-hover: #2b4ba4;
  --secondary-color-active: #284698;
  --secondary-bg-color-hover: #e7e7f2;
  --secondary-bg-color-active: #e0e0ee;
  --secondary-text-color-hover: #626875;
  --secondary-text-color-active: #5d636f;
  --link-color-hover: #231276;
  --link-color-active: #1f1069;

  /* Text */
  --text-font-family: 'Inter', Helvetica Neue, Arial, sans-serif;
  --heading-font-family: 'Inter', Helvetica Neue, Arial, sans-serif;
  --text-font-size: 16px;
  --text-font-size-large: calc(16px + 2px);
  --text-font-size-small: calc(16px - 2px);
  --heading-1-font-size: 32px;
  --heading-2-font-size: 24px;
  --heading-3-font-size: 20px;
  --heading-4-font-size: 18px;
  --heading-5-font-size: 16px;
  --heading-6-font-size: calc(16px - 2px);

  /* Other */
  --border-radius-base: 12px;
  --border-radius-small: calc(12px / 2);
  --border-radius-button: 6px;
  --logo-height: 40px;

  /* Theme settings */
  --white-color: #fff;
  --border-width: 1px;
  --minus-border-width: -1px;
  --box-shadow: 0px 4px 40px rgba(0, 0, 0, .12);
  --duration: 400ms;
  --timing-function: cubic-bezier(.17, .67, .54, 1);
  --assets-check-svg: url(/hc/theming_assets/01HZKPM92MAV6633APX5W0ANNT);
}

.ui-dark body {
  /* Colors */
  --primary-color: #1863BC;
  --secondary-color: #e645f8;
  --primary-bg-color: #000C20;
  --primary-bg-color-always: #000C20;
  --secondary-bg-color: #182233;
  --secondary-bg-color-always: #182233;
  --primary-text-color: #FFFFFF;
  --secondary-text-color: #8290A8;
  --link-color: #1863BC;
  --border-color: #31405a;
  --info-color: #1863BC;
  --success-color: #67C30B;
  --warning-color: #F1D52F;
  --danger-color: #e64545;
  --primary-color-hover: #2d81e4;
  --primary-color-active: #3b89e6;
  --secondary-color-hover: #ee80fa;
  --secondary-color-active: #f08ffb;
  --secondary-bg-color-hover: #1f2b41;
  --secondary-bg-color-active: #223048;
  --secondary-text-color-hover: #8e9bb0;
  --secondary-text-color-active: #94a0b5;
  --link-color-hover: #2d81e4;
  --link-color-active: #3b89e6;
}

/***********
 Base styles
 ***********/
*,
*:before,
*:after {
  box-sizing: border-box;
}

body,
html {
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--text-font-family);
  font-size: var(--text-font-size);
  font-weight: 400;
  line-height: 1.65;
  background-color: var(--primary-bg-color);
  color: var(--primary-text-color);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a {
  color: var(--link-color);
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  color: black;
}

a:active,
a.is-active {
  color: var(--link-color-active);
}

a.link-primary,
.my-activities-menu__item a {
  color: var(--primary-color);
}

a.link-primary:hover,
.my-activities-menu__item a:hover {
  color: var(--primary-color-hover);
}

a.link-primary:active,
a.link-primary.is-active,
.my-activities-menu__item a:active {
  color: var(--primary-color-active);
}

a.link-secondary {
  color: var(--secondary-color);
}

a.link-secondary:hover {
  color: var(--secondary-color-hover);
}

a.link-secondary:active,
a.link-secondary.is-active {
  color: var(--secondary-color-active);
}

[dir] a.is-disabled {
  cursor: default;
}

a.is-disabled,
a.is-disabled:hover,
a.is-disabled:active,
a.is-disabled.is-active {
  color: var(--secondary-text-color);
}

[dir] a,
[dir] button,
[dir] [type=submit],
[dir] [type=button],
[dir] [type=reset] {
  cursor: pointer;
}

a,
input,
button,
select,
textarea,
label {
  transition: all 400ms cubic-bezier(0.17, 0.67, 0.54, 1);
}

a:focus,
input:focus,
button:focus,
select:focus,
textarea:focus,
label:focus {
  outline: none;
}

a.focus-visible,
input.focus-visible,
button.focus-visible,
select.focus-visible,
textarea.focus-visible,
label.focus-visible {
  outline: auto 5px -webkit-focus-ring-color;
}

[dir] figure {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

.iframe {
  position: relative;
}

.iframe iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.table-container {
  width: 100%;
  overflow-y: auto;
}

.list-unstyled {
  display: block;
  margin: 24px 0;
  padding: 0;
}

.list-unstyled li {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.is-hidden,
[hidden] {
  display: none !important;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .is-hidden--xl {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .is-hidden--lg {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .is-hidden--md {
    display: none !important;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .is-hidden--sm {
    display: none !important;
  }
}

@media (max-width: 1399px) {
  .is-hidden--xl-down {
    display: none !important;
  }
}

@media (max-width: 1199px) {
  .is-hidden--lg-down {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .is-hidden--md-down {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .is-hidden--sm-down {
    display: none !important;
  }
}

@media (max-width: 575px) {
  .is-hidden--xs,
  .is-hidden--xs-down {
    display: none !important;
  }
}

@media (min-width: 1400px) {
  .is-hidden--xxl,
  .is-hidden--xxl-up {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .is-hidden--xl-up {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .is-hidden--lg-up {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .is-hidden--md-up {
    display: none !important;
  }
}

@media (min-width: 576px) {
  .is-hidden--sm-up {
    display: none !important;
  }
}

[dir=ltr] .is-hidden--ltr {
  display: none !important;
}

[dir=rtl] .is-hidden--rtl {
  display: none !important;
}

.ui-light .is-hidden--light-mode {
  display: none !important;
}

.ui-dark .is-hidden--dark-mode {
  display: none !important;
}

/********
 Headings
 ********/
h2 {
  font-size: 24px;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: "Sofia pro", Arial, sans-serif;
  line-height: 1.2;
  color: #221E52;
  letter-spacing: .75px;
  
  
}

h1, .h1 {
  font-size: var(--heading-2-font-size);
  line-height: 1.2;
  color: #221E52;
}

h2, .h2 {
  font-size: 26px;
  line-height: 1.3;
  color: #221E52;
}

h3, .h3,
h4, .h4 {
  font-size: var(--heading-4-font-size);
  line-height: 1.4;
}

h5, .h5 {
  font-size: var(--heading-5-font-size);
}

h6, .h6 {
  font-size: var(--heading-5-font-size);
}

@media (min-width: 992px) {
  h1, .h1 {
    font-size: var(--heading-1-font-size);
    line-height: 1.1;
  }

  h2, .h2 {
  font-size: 26px;
  line-height: 1.2;
  }

  h3, .h3 {
    font-size: 21px;
    line-height: 1.3;
  }
}

[dir] h1,
[dir] .h1 {
  margin: 0 0 1.2em;
}

[dir] .markdown h1,
[dir] .markdown .h1 {
  margin-top: 1.2em;
}

.markdown pre {
  border-radius: var(--border-radius-base);
  background-color: var(--secondary-bg-color);
  padding: 16px;
  width: 100%;
  overflow-x: auto;
  font-size: var(--text-font-size-small);
}

.ui-light .markdown pre,
.ui-light .markdown pre code {
  color: var(--secondary-bg-color);
  background-color: var(--primary-text-color);
}

code, kbd, samp {
  display: block;
}

.markdown code {
  display: inline-block;
  border-radius: var(--border-radius-button);
  background-color: var(--secondary-bg-color);
  font-size: var(--text-font-size-small);
  padding: 0 4px;
}

.ui-light .markdown code {
  color: var(--secondary-bg-color);
  background-color: var(--primary-text-color);
}

.markdown pre code {
  display: block;
  margin: -16px;
  padding: 16px;
  background-color: var(--secondary-bg-color);
}

/**********/
/* Layout */
/**********/

body {
  display: flex;
  flex-direction: column;
  font-size: 16px;
}

.main-container {
  padding: 0 15px;
  width: 100%;
}

.content-container {
  max-width: 1080px;
  width: 100%;
}

@media (min-width: 992px) {
  .main-container {
    flex: 1 0 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-end;
  }

  .main-container > .row {
    height: 100%;
    width: calc(100% + 30px);
    flex: 1 0 100%;
  }

  .main-container__sidebar {
    position: relative;
    flex: 0 0 250px !important;
    max-width: 250px !important;
    min-width: 250px !important;
  }

  /* Hide sidebar collapse button */
  .sidebar-collapse-btn {
    display: none !important;
  }

  /* Hide sidebar width controller */
  .sidebar-width-controller {
    display: none !important;
  }

  .main-container__sidebar ~ .main-container__content {
    flex: 0 0 calc(100% - 250px) !important;
    max-width: calc(100% - 250px) !important;
  }

  .main-container__sidebar::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: calc((100vw - 1140px) / 2 + 250px);
    min-width: 250px;
    background-color: var(--secondary-bg-color);
    z-index: -1;
  }

  .main-container__sidebar-fixed.is-active {
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    padding: 0 15px;
    margin-left: -15px;
  }
}

@media (max-width: 991px) {
  .main-container__sidebar {
    border-bottom: var(--border-width) solid var(--border-color);
  }

  .main-container__sidebar,
  .main-container__content {
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
}

.powered-by-zendesk {
  display: none !important;
}

/* Header */
@media (min-width: 992px) {
  .header__container {
    height: 60px;
    margin-right: -15px;
    margin-left: -15px;
    padding-right: 15px;
    padding-left: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .header__container--left {
    padding-left: 0;
    margin-left: 0;
  }

  .header__container--right {
    display: block !important;
    padding-right: 0;
    margin-right: 0;
    transition: none !important;
    border-bottom: var(--border-width) solid var(--border-color);
  }

  .header__logo {
    display: block;
  }

  .header__nav {
    display: flex;
    align-items: center;
  }

  .header__nav > * {
    margin-left: 16px;
  }

  .header__logo span {
    display: block;
    margin-left: 8px;
  }

  .header__mobile-menu {
    display: none;
  }
}

.header__topbar {
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  .header__topbar {
    border-bottom: var(--border-width) solid var(--border-color);
  }

  .header__container--right {
    display: none;
  }

  .header__nav > * {
    margin-left: 6px;
  }
}

.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--primry-text-color);
  font-size: var(--text-font-size-large);
  font-weight: 500;
}

.header__logo:hover {
  text-decoration: none;
}

.header__logo img {
  height: var(--logo-height);
}

.header__container [role="search"] {
  flex: 1 1 10px;
  display: block;
  position: relative;
}

.header__container [role="search"]::before {
  position: absolute;
  top: 50%;
  left: 4px;
  transform: translateY(-50%);
  color: var(--secondary-text-color);
}

.header__container [type="search"] {
  width: 100%;
  height: 59px;
  border: none;
  box-shadow: none !important;
  padding-left: 30px;
  background-color: transparent !important;
}

.header__nav-github {
  font-size: 26px;
  color: var(--border-color);
}

.header__nav {
  display: flex;
  align-items: center;
}

.btn.header__nav-btn {
  font-weight: normal;
  color: var(--secondary-text-color);
}

.header__nav .btn + .dropdown,
.header__nav .btn + .btn {
  margin-left: 8px;
}


@media (max-width: 991px) {
  .header__container--left {
    padding: 5px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header__logo span {
    display: none;
  }

  .header__mobile-menu {
    display: block;
    height: 100%;
    padding: 0 5px;
    color: var(--secondary-text-color);
    font-size: 20px;
    cursor: pointer;
  }

  .header__mobile-menu.is-active,
  .header__mobile-menu:hover {
    color: var(--primary-color);
  }

  .header__locale {
    width: 100%;
    margin-bottom: 8px;
  }
}

.header__color-mode-switcher {
  display: block;
  position: relative;
  z-index: 2;
  width: 40px;
  height: 26px;
}

.header__color-mode-switcher::before {
  content: '';
  display: block;
  width: 100%;
  height: 12px;
  border-radius: 10px;
  background-color: var(--border-color);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: -1;
  opacity: .5;
}

.header__color-mode-switcher span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transition: all var(--duration) var(--timing-function);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: var(--border-color);
  color: var(--white-color);
}

.ui-dark .header__color-mode-switcher span {
  transform: translateX(14px);
  color: var(--primary-bg-color);
}

.header__color-mode-switcher:hover span,
.header__color-mode-switcher:active span {
  background-color: var(--primary-color-hover);
}

.header__color-mode-switcher span i {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Header search */
.header-search::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  content: "\f002";
}

/* Header menu */
.header__menu {
  padding-top: 24px;
  padding-bottom: 24px;
}

@media (min-width: 992px) {
  .header__menu .header-menu-toggle {
    display: none;
  }
}

@media (max-width: 991px) {
  .header__menu {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    visibility: hidden;
    transition: all .3s ease;
  }

  .header__menu::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
    background-color: var(--primary-text-color);
    opacity: 0;
    transition: all .3s ease;
  }

  .ui-dark .header__menu::before {
    background-color: var(--secondary-bg-color);
  }

  .header__menu .header-menu-toggle {
    display: block;
    position: absolute;
    top: 15px;
    right: 5px;
    width: 30px;
    height: 30px;
    opacity: 0;
    transition: all .3s ease;
    color: var(--white-color);
    font-size: 16px;
    line-height: 30px;
    text-align: center;
  }

  .header__menu-box {
    width: calc(100% - 40px);
    max-width: 320px;
    background-color: var(--primary-bg-color);
    padding: 24px;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: all .3s ease;
  }

  .header__menu.is-active {
    visibility: visible;
  }

  .header__menu.is-active::before {
    opacity: .75;
  }

  .header__menu.is-active .header__menu-box {
    transform: translateX(0);
  }

  .header__menu.is-active .header-menu-toggle {
    opacity: 1;
  }
}

.sidebar-menu-heading {
  margin-top: 0;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-family: "Sofia pro", Arial, sans-serif;
  line-height: 1.2;
  color: #221E52 !important;
  letter-spacing: .75px;
  font-weight: 600;

  
  font-size: var(--text-font-size-small);
  color: var(--primary-text-color);
}

.sidebar-menu {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-menu + .sidebar-menu,
.sidebar-menu + .sidebar-menu-heading {
  margin-top: 24px;
}

.sidebar-menu li {
  display: block;
  margin-right: -15px;
  padding: 0;
}

.sidebar-menu li a,
.sidebar-menu li button {
  display: flex;
  align-items: center;
  position: relative;
  font-weight: 500;
  padding: 6px 32px 6px 0;
  font-size: 14px;
  color: var(--secondary-text-color);
  border: none;
  background-color: transparent;
  transition: color .3s ease-in-out;
}

.sidebar-menu li a img,
.sidebar-menu li button img {
  display: block;
  width: 26px;
  height: 26px;
  margin-right: 12px;
}

.sidebar-menu li .sidenav__item__article {
  font-weight: normal;
}

.sidebar-menu li .sidenav__item__article.is-active {
  color: var(--primary-color);
}

.sidebar-menu li a i {
  display: block;
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
}

.sidebar-menu li a:hover,
.sidebar-menu li button:hover {
  text-decoration: none;
  color: var(--primary-text-color);
}

.sidebar-menu li a[aria-expanded="true"],
.sidebar-menu li a.is-active {
  color: var(--primary-color);
}

.sidebar-menu li a[aria-expanded="true"] i,
.sidebar-menu li a.is-active i {
  transform: rotate(180deg);
}

.sidebar-submenu {
  padding-left: 13px;
}

.sidebar-submenu {
  margin: 0;
  padding-left: 12px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.sidebar-submenu li {
  margin-right: 0;
}

.sidebar-submenu li.is-active {
  position: relative;
  z-index: 2;
}

.sidebar-submenu li.is-active::before {
  content: '';
  display: block;
  width: calc(100% + 12px);
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  background-color: var(--primary-bg-color);
  border: var(--border-width) solid var(--border-color);
}

@media (min-width: 992px) {
  .sidebar-submenu li.is-active::before {
    border-right: none;
    border-top-left-radius: var(--border-radius-base);
    border-bottom-left-radius: var(--border-radius-base);
  }
}

@media (max-width: 991px) {
  .sidebar-submenu li.is-active::before {
    border-radius: var(--border-radius-base);
  }
}

.sidebar-submenu li a {
  padding-top: 4px;
  padding-bottom: 4px;
  font-weight: normal;
}

.sidebar-submenu li.is-active a,
.sidebar-submenu li a[aria-expanded] {
  color: var(--primary-text-color);
}

i.arrow-bottom {
  display: inline-block;
  width: .5em;
  height: .5em;
}

i.arrow-bottom::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid currentColor;
  border-left: 1px solid currentColor;
  transform: rotate(-45deg);
}

[role="main"] {
  padding: 40px 0 0;
}

@media (min-width: 992px) {
  [role="main"] {
    padding: 40px 15px 0;
  }
}

[dir] .btn--avatar {
  border: none;
  padding: 0;
}

[dir] .btn--avatar img {
  width: 37px;
  height: 37px;
}

/* Welcome */
[dir] .welcome__title {
  margin: 0;
}

[dir] .welcome__subtitle {
  color: var(--secondary-text-color);
  font-size: var(--heading-2-font-size);
  margin: 12px 0 0;
}

.section__description {
  color: var(--secondary-text-color);
  font-size: var(--heading-4-font-size);
  margin: 12px 0 0;
}

.section__subscribe {
  margin-top: 24px;
}

.section + .section {
  margin-top: 40px;
}

@media (min-width: 480px) {
  .section__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .section__container > * {
    margin-top: 0 !important;
  }
}

.section__meta {
  display: flex;
  align-items: center;
  margin-top: 24px;
}

.section__meta > * + * {
  margin-left: 8px;
}

@media (min-width: 992px) {
  .section + .section {
    margin-top: 60px;
  }

  .welcome {
    margin-bottom: -20px;
  }
}

/* Helpers */
.helpers {
  position: relative;
  z-index: 2;
}

.helpers__container {
  margin-bottom: -15px;
}

.helpers__container > .col-12 {
  margin-bottom: 15px;
}

.helpers__item {
  display: flex;
  flex-direction: column;
  padding: 30px;
  position: relative;
  z-index: 2;
  height: 100%;
  border-radius: 1.25rem;;
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(28, 52, 139, .12);
}


.helpers__item::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.2) 0%, rgba(255, 255, 255, .2) 100%);
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration) var(--timing-function);
  z-index: -1;
}

@media (max-width: 575px) {
  .helpers__item {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .helpers__item + .helpers__item {
    border-top: var(--border-width) solid var(--border-color);
  }
}

@media (min-width: 576px) {
  .helpers__item {
    align-items: center;
    padding-top: 24px;
    padding-bottom: 32px;
    text-align: center;
  }
}

/* Helpers Item 1*/

.helpers__item1 {
  display: flex;
  flex-direction: column;
  padding: 30px;
  position: relative;
  z-index: 2;
  height: 100%;
  border-radius: 1.25rem;;
  background-color: #FCF3E6;
  overflow: hidden;
  background-image: url('/hc/theming_assets/01K492MDVN7DHS2SAPTQP9BVJ2');
  background-size: cover;      /* Shows entire image, may leave empty space */
  background-position: center;   /* Centers the image */
  background-repeat: no-repeat;
  box-shadow: 0 16px 36px rgba(28, 52, 139, .17);
  
}


.helpers__item1::before {
 transition: all var(--duration) var(--timing-function);
 z-index: -1;
}

.helpers__item1:hover,
.helpers__item1:active {
  transform: translateY(-6px);
}

@media (max-width: 575px) {
  .helpers__item1 {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .helpers__item1 + .helpers__item1 {
    border-top: var(--border-width) solid var(--border-color);
  }
}

@media (min-width: 576px) {
  .helpers__item1 {
    align-items: center;
    padding-top: 24px;
    padding-bottom: 32px;
    text-align: center;
  }
}

/* Helpers Item 2*/

.helpers__item2 {
  display: flex;
  flex-direction: column;
  padding: 30px;
  position: relative;
  z-index: 2;
  height: 100%;
  border-radius: 1.25rem;;
  background-color: #FCF3E6;
  overflow: hidden;
  background-image: url('/hc/theming_assets/01K493R7W20F51VBPZ4F2AX2TD');
  background-size: cover;      /* Shows entire image, may leave empty space */
  background-position: center;   /* Centers the image */
  background-repeat: no-repeat;
  box-shadow: 0 16px 36px rgba(28, 52, 139, .17);
}


.helpers__item2::before {
 transition: all var(--duration) var(--timing-function);
 z-index: -1;
}

.helpers__item2:hover,
.helpers__item2:active {
  transform: translateY(-6px);
}

@media (max-width: 575px) {
  .helpers__item2 {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .helpers__item1 + .helpers__item1 {
    border-top: var(--border-width) solid var(--border-color);
  }
}

@media (min-width: 576px) {
  .helpers__item1 {
    align-items: center;
    padding-top: 24px;
    padding-bottom: 32px;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .helpers__item2 {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .helpers__item2 + .helpers__item2 {
    border-top: var(--border-width) solid var(--border-color);
  }
}

@media (min-width: 576px) {
  .helpers__item2 {
    align-items: center;
    padding-top: 24px;
    padding-bottom: 32px;
    text-align: center;
  }
}

/* Helpers Item 3*/

.helpers__item3 {
  display: flex;
  flex-direction: column;
  padding: 30px;
  position: relative;
  z-index: 2;
  height: 100%;
  border-radius: 1.25rem;;
  background-color: #FCF3E6;
  overflow: hidden;
  background-image: url('/hc/theming_assets/01K49AETF398D8F3FHGFBEEDS5');
  background-size: cover;      /* Shows entire image, may leave empty space */
  background-position: center;   /* Centers the image */
  background-repeat: no-repeat;
  box-shadow: 0 16px 36px rgba(28, 52, 139, .17);
}

@media (max-width: 575px) {
  .helpers__item3 {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .helpers__item3 + .helpers__item3 {
    border-top: var(--border-width) solid var(--border-color);
  }
}

@media (min-width: 576px) {
  .helpers__item3 {
    align-items: center;
    padding-top: 24px;
    padding-bottom: 32px;
    text-align: center;
  }
}

.helpers__item3::before {
 transition: all var(--duration) var(--timing-function);
 z-index: -1;
}

.helpers__item3:hover,
.helpers__item3:active {
  transform: translateY(-6px);
}

@media (max-width: 575px) {
  .helpers__item3 {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .helpers__item3 + .helpers__item3 {
    border-top: var(--border-width) solid var(--border-color);
  }
}

@media (min-width: 576px) {
  .helpers__item3 {
    align-items: center;
    padding-top: 24px;
    padding-bottom: 32px;
    text-align: center;
  }
}

.helpers__icon {
  display: none;
}

@media (min-width: 576px) {
  .helpers__icon {
    display: block;
    margin-bottom: 16px;
  }
}

.helpers__icon img,
.helpers__icon svg {
  display: block;
  margin: 0 auto;
  width: 60px;
  height: 60px;
}

@media (min-width: 768px) {
  .helpers__icon img,
  .helpers__icon svg {
    width: 100px;
    height: 100px;
  }
}

.helpers__title {
  transition: color var(--duration) var(--timing-function);
  font-size: 1.35rem;
  line-height: 1.875rem;
  font-weight: 600;
}

@media (min-width: 576px) {
  .helpers__title {
    margin-bottom: 13px;
  }
}

.helpers__description {
  color: #333153;
  font-size: 15px;
  font-weight: 400;
  transition: color var(--duration) var(--timing-function);
}

.helpers__item:hover,
.helpers__item:active {
  z-index: 3;
  background-color: var(--primary-color);
  color: var(--white-color);
}

.helpers__item:hover::before,
.helpers__item:active::before {
  opacity: 1;
  visibility: visible;
}

.helpers__item:hover .helpers__title,
.helpers__item:active .helpers__title,
.helpers__item:hover .helpers__description,
.helpers__item:active .helpers__description {
  color: var(--white-color);
}

/* Promoted articles */
.promoted .container {
  margin-bottom: -24px;
}

.promoted__link {
  display: block;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: var(--border-radius-small);
  border: var(--border-width) solid var(--border-color);
  background-color: transparent;
  color: var(--primary-text-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.promoted__link:hover,
.promoted__link:active {
  background-color: var(--secondary-bg-color);
  border-color: var(--primary-color);
}

/* Category list */
.category-list .container {
  margin-bottom: -15px;
}

.category-list .col-12 {
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .category-list .container {
    margin-bottom: -30px;
  }

  .category-list .col-12 {
    margin-bottom: 30px;
  }
}

.category-list__item {
  display: block;
  position: relative;
  padding: 24px;
  height: 100%;
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-base);
  z-index: 3;
  overflow: hidden;
}

.category-list__item::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.2) 0%, rgba(255, 255, 255, .2) 100%);
  transition: all var(--duration) var(--timing-function);
  z-index: -1;
}

.category-list__item:hover,
.category-list__item:active {
  transform: translateY(-6px);
}

.category-list__title {
  display: block;
  color: var(--white-color);
}

.category-list__description {
  display: block;
  margin-top: 12px;
  color: var(--white-color);
  font-size: var(--text-font-size-small);
}

/* Category tree */
.category-tree {
  --primary-bg-color: var(--secondary-bg-color-always);
  --secondary-bg-color: var(--primary-bg-color-always);

  background-color: var(--primary-bg-color);
  border-radius: var(--border-radius-base);
  padding: 0 24px;
}

.category-tree__item + .category-tree__item {
  border-top: var(--border-width) solid var(--border-color);
}

.category-tree__heading {
  display: block;
  color: var(--primary-text-color);
  padding: 26px 40px 26px 0;
  position: relative;
}

.category-tree__heading i {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transition: all var(--duration) var(--timing-function);
  transform: translateY(-50%);
  color: var(--secondary-text-color);
  opacity: .3;
}

.category-tree__heading:hover,
.category-tree__heading:active,
.category-tree__heading.is-active {
  color: var(--primary-color);
}

.category-tree__heading.is-active i {
  transform: rotate(180deg) translateY(50%);
  color: var(--primary-color);
  opacity: 1;
}

@media (min-width: 992px) {
  .category-tree__heading {
    font-size: 24px;
  }
}

.category-tree__content {
  padding: 22px 0 18px;
}

.category-tree__heading p {
  margin: 0;
}

.category-tree__heading p.category-tree__description {
  color: var(--secondary-text-color);
  font-size: var(--text-font-size);
  margin-top: 6px;
  font-weight: normal;
}

.category-tree__section {
  display: flex;
  padding-bottom: 40px;
}

.category-tree__section-icon {
  display: block;
  overflow: hidden;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--secondary-bg-color);
  margin-right: 16px;
  position: relative;
}

.category-tree__section-icon img,
.category-tree__section-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.category-tree__section-icon i {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 22px;
  color: var(--secondary-text-color);
  opacity: .25;
}

@media (max-width: 480px) {
  .category-tree__section-icon {
    width: 40px;
    height: 40px;
    margin-right: 12px;
  }

  .category-tree__section-icon i {
    font-size: 18px;
  }
}

.category-tree__section-icon ~ div {
  flex: 1 1 10px;
}

.category-tree__section-name {
  display: block;
  color: #221E52;
  font-weight: 600;
  letter-spacing: .75px;
}

.category-tree__section-description {
  display: block;
  color: var(--secondary-text-color);
  margin-top: 6px;
}

.category-tree__section-name:hover,
.category-tree__section-name:active {
  color: var(--primary-color);
  font-weight: 600;
  letter-spacing: .75px;
}

.category-tree__section-description span {
  display: inline-block;
  border-radius: var(--border-radius-small);
  font-size: 12px;
  padding: 2px 4px;
  background-color: var(--secondary-bg-color);
  color: var(--primary-text-color);
  font-weight: normal;
  vertical-align: middle;
}

.category-tree__subsections,
.category-tree__articles {
  margin-top: 24px;
}

.category-tree__article {
  display: block;
}

.category-tree__article + .category-tree__article {
  margin-top: 16px;
}

.category-tree__subsection {
  display: block;
  padding: 6px 12px;
  border-radius: var(--border-radius-button);
  background-color: var(--primary-color);
  color: var(--white-color);
  font-weight: bold;
}

.category-tree__subsection + .category-tree__subsection {
  margin-top: 4px;
}

.category-tree__subsection:hover,
.category-tree__subsection:active {
  background-color: var(--primary-color-hover);
  color: var(--white-color);
}

.category-tree__more {
  margin-top: 40px;
}

.category-tree__empty {
  color: var(--secondary-text-color);
  font-style: italic;
}

.category-tree__empty a {
  color: var(--secondary-text-color);
}

/* Recent activity */
.recent-activity-header {
  margin-bottom: 36px;
}

.recent-activity-list {
  margin-right: -15px;
  margin-left: -15px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -30px;
}

.recent-activity-item {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 15px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .recent-activity-item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  .recent-activity-item {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}

.recent-activity-item-parent {
  display: block;
  margin-bottom: 6px;
  color: var(--primary-color);
  font-weight: bold;
}

@media (min-width: 992px) {
  .recent-activities--multicolor-headings .recent-activity-item:nth-child(3n+1) .recent-activity-item-parent {
    color: var(--primary-color);
  }

  .recent-activities--multicolor-headings .recent-activity-item:nth-child(3n+2) .recent-activity-item-parent {
    color: var(--secondary-color);
  }

  .recent-activities--multicolor-headings .recent-activity-item:nth-child(3n+3) .recent-activity-item-parent {
    color: var(--success-color);
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .recent-activities--multicolor-headings .recent-activity-item:nth-child(2n+1) .recent-activity-item-parent {
    color: var(--primary-color);
  }

  .recent-activities--multicolor-headings .recent-activity-item:nth-child(2n+2) .recent-activity-item-parent {
    color: var(--secondary-color);
  }
}

.recent-activity-item-parent:hover,
.recent-activity-item-parent:active {
  color: var(--primary-color-hover);
}

.recent-activity-item-link {
  display: block;
  margin-bottom: 8px;
  font-size: var(--heading-4-font-size);
  font-weight: bold;
  color: var(--primary-text-color);
}

.recent-activity-item-meta {
  font-size: 13px;
  color: var(--secondary-text-color);
}

.recent-activity-comment-icon {
  display: none;
}

.recent-activity-item-comment {
  margin-right: 12px;
}

.recent-activity-comment-icon::after {
  content: attr(data-comment-count);
}

.recent-activity-controls {
  text-align: center;
  margin-top: 40px;
}

.recent-activity-item .btn {
  margin-top: 12px;
  padding: 4px 28px 4px 16px;
  border-radius: 50px;
}

.recent-activity-item .btn::after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}

/* CTA */
.cta__container {
  background-color: var(--primary-color);
  color: var(--white-color);
  display: flex;
  border-radius: var(--border-radius-base);
  position: relative;
  z-index: 3;
  overflow: hidden;
}

.cta__container::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.2) 0%, rgba(255, 255, 255, .2) 100%);
  transition: all var(--duration) var(--timing-function);
  z-index: -1;
}

.cta__content {
  padding: 12px 24px;
  flex: 1 1 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white-color);
}

.cta__title {
  margin: 0;
  color: var(--white-color); !important:
}

.cta__subtitle {
  color: var(--white-color);
  margin: 12px 0 24px;
}

.cta__btn {
  color: var(--white-color);
}

.button-container {
  display: flex;
}

.cta__btn {
  margin-right: 10px; /* Adjust margin as needed for spacing between buttons */
}

.cta__btn {
  position: relative;
  /* Other button styles */
}

[dir] .cta__btn:hover,
[dir] .cta__btn:active {
  color: var(--primary-color);
  background-color: var(--white-color);
  border-color: var(--white-color);
}

@media (min-width: 992px) {
  .cta__title {
    font-size: var(--heading-1-font-size);
  }

  .cta__subtitle {
    font-size: var(--heading-3-font-size);
  }
}

@media (min-width: 768px) {
  .cta__content {
    padding: 46px;
  }
}

/* Footer */
.footer {
  margin-top: 42px;
  padding: 24px 0;
  border-top: var(--border-width) solid var(--border-color);
}

@media (min-width: 992px) {
  .footer {
    margin-right: 15px;
    margin-left: 15px;
  }
}

.footer__soc a {
  display: inline-block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--secondary-bg-color);
  text-align: center;
  line-height: 36px;
  color: var(--secondary-text-color);
  font-size: 18px;
  text-decoration: none;
}

.footer__soc a:hover,
.footer__soc a:active {
  color: var(--primary-bg-color);
  background-color: var(--link-color-hover);
}

.footer__copy {
  text-align: right;
  color: var(--secondary-text-color);
  font-size: 14px;
}

@media (max-width: 767px) {
  .footer__soc,
  .footer__copy {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 6px;
  }
}

@media (max-width: 991px) {
  .footer__soc {
    margin-bottom: 12px;
  }

  .footer__soc a {
    margin-left: 4px;
  }
}

/* Breadcrumbs */
.breadcrumbs {
  display: inline-flex;
  margin: 0 0 15px !important;
  padding: 5px 15px !important;
  background-color: #EDF0F9;
  border: none;
  text-align: left;
  outline: none;
  transition: 0.4s;
  margin-bottom: 5px !important;
  border-radius: 9px;
  font-weight: 700 !important;
}

.breadcrumbs--bottom {
  margin: 12px 0 0 !important;
}

.breadcrumbs li:first-child > a {
  content: "Home";
  color: #1F1C35;
  margin-right: 5px;
}

.breadcrumbs li {
  display: inline;
  max-width: 450px;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #1F1C35 !important;
  margin-bottom: 0px !important;
}

.breadcrumbs li {
  display: inline;
  font-size: 14px;
  max-width: 450px;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #1F1C35 !important;
}

.breadcrumbs li:first-child > a {
  color: #1F1C35 !important;
}

.breadcrumbs li:last-child > a {
  color: #1F1C35;
}

.breadcrumbs a {
  color: #1F1C35;
  font-weight: 500;
}

.breadcrumbs li + li::before {
  content: "❘";
  margin: 0 4px;
  color: #1F1C35;
}

.breadcrumbs li:before {
  color: #1F1C35;
}

.breadcrumbs li a:visited {
  color: #1F1C35;
}

/* Inner pages */
.inner-page-heading .section__title {
  margin-bottom: 0;
}

h1.section__title {
	font-size: 32px;
}

h2.section__title {
	font-size: 26px;
}

.inner-page-heading--center {
  text-align: center;
}

.inner-page {
  background-color: var(--primary-bg-color);
  padding-top: 48px;
  padding-bottom: 48px;
}

.inner-page__sections {
  margin-bottom: 10px;
}

.inner-page__sections .col-12 {
  margin-bottom: 30px;
}

.article-heading {
  margin: -40px 0 40px;
}

.entry-info {
  display: flex;
  font-size: 14px;
}

.entry-info__avatar {
  flex-shrink: 0;
}

[dir=ltr] .entry-info__avatar {
  padding-right: 12px;
}

[dir=rtl] .entry-info__avatar {
  padding-left: 12px;
}

.avatar {
  position: relative;
  display: inline-block;
}

[dir] .user-avatar {
  border-radius: 100%;
}

.user-avatar--profile {
  margin-bottom: 12px;
}

.user-avatar--default {
  width: 40px;
  height: 40px;
}

.meta {
  font-size: var(--text-font-size-small);
  color: var(--secondary-text-color);
}

.inner-page__rightbar + .inner-page__rightbar {
  margin-top: 24px;
  padding-top: 24px;
  border-top: var(--border-width) solid var(--border-color);
}

.inner-page__rightbar h3,
.recent-articles-title,
.related-articles-title,
.recent-articles h3 {z
  margin: 0 0 24px;
  font-size: var(--heading-3-font-size);
}

.related-articles ul,
.recent-articles ul {
  margin: 0;
  padding: 0;
  display: block;
}

.related-articles ul li,
.recent-articles ul li {
  display: block;
  list-style: none;
  margin: 0;
  padding: 6px 0;
}

.share {
  display: flex;
  margin: 0;
  padding: 0;
}

.share li {
  display: block;
  margin: 0 12px 0 0;
  padding: 0;
  list-style: none;
}

.attachments {
  margin: 24px 0;
}

.attachment-list {
  display: block;
  margin: 24px 0;
  padding: 0;
}

.attachment-list__item {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.attachment-list__item + .attachment-list__item {
  margin-top: 8px;
}

.attachment-list__item i {
  color: var(--primary-color);
}

.article-vote {
  margin: 40px 0;
  border-top: var(--border-width) solid var(--border-color);
  padding-top: 24px;
  text-align: center;
}

.article-vote__title {
  margin: 0 0 24px;
}

.article-vote__count {
  margin-top: 12px;
}

.article-more-questions {
  margin: 40px 0;
}

.article-lists {
  margin: 40px 0 0;
  border-top: var(--border-width) solid var(--border-color);
  padding-top: 40px;
}

@media (max-width: 767px) {
  .article-lists .col-12 + .col-12 {
    margin-top: 40px;
  }
}

/* Comments */
.comments {
  border-top: var(--border-width) solid var(--border-color);
  padding-top: 40px;
}

.comments__heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}

.comments__title {
  margin: 0;
}

.comments__container {
  background-color: var(--secondary-bg-color);
  border-radius: var(--border-radius-base);
  padding: 40px;
}

.comment-form__body textarea {
  height: 112px;
}

.comment-form__attachments,
.comment-form__controls {
  margin-top: 8px;
}

.comment-form__ccs ul {
  display: block;
  margin: 0 0 8px;
}

.comment-form__mark-as-solved {
  display: flex;
  margin-bottom: 8px;
}

.comment-form__mark-as-solved label {
  margin-left: 8px;
}

.comments__list {
  padding: 0 40px 16px;
  margin: 0 -40px 40px;
  border-bottom: var(--border-width) solid var(--border-color);
}

.comments__list--content {
  margin-right: 0;
  margin-left: 0;
  padding-right: 0;
  padding-left: 0;
}

.comment {
  position: relative;
  margin-bottom: 24px;
}

.comment__left {
  width: 100%;
}

.comment__sidebar {
  width: 30px;
  margin-left: 12px;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
}

.comment__sidebar ~ .comment__left {
  width: calc(100% - 42px);
  min-height: 80px;
}

.comment + .comment {
  padding-top: 24px;
  border-top: var(--border-width) solid var(--border-color);
}

.comment + .comment .comment__sidebar {
  top: 24px;
}

.comment__heading {
  display: flex;
  align-items: center;
}

.user-avatar {
  margin-right: 12px;
}

.comment__body {
  margin-top: 12px;
}

.comment__actions {
  margin-top: 4px;
}

.request-details {
  display: flex;
  flex-wrap: wrap;
}

.request-details dt {
  flex: 0 0 50%;
  max-width: 50%;
  margin: 0;
  font-weight: bold;
}

.request-details dd {
  flex: 0 0 50%;
  max-width: 50%;
  margin: 0;
  color: var(--secondary-text-color);
}

.request-status {
  padding: 2px 8px;
  border: var(--border-radius-button);
  background-color: var(--secondary-bg-color);
  font-size: var(--text-font-size-small);
}

.request-status--open,
.request-status--new {
  background-color: var(--danger-color);
  color: var(--white-color);
}

.request-status--answered {
  background-color: var(--warning-color);
  color: var(--white-color);
}

.request-status--solved,
.request-status--closed {
  background-color: var(--success-color);
  color: var(--white-color);
}

/**/
.my-activities-menu {
  display: flex;
  margin: 36px 0 0;
  padding: 0;
  font-weight: bold;
  border-bottom: var(--border-width) solid var(--border-color);
}

.my-activities-menu__item {
  display: block;
  margin: 0 32px 0 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 480px) {
  .my-activities-menu__item {
    margin: 0 12px 0 0;
  }
}

.my-activities-menu__item.is-active {
  padding: 0 0 12px;
  border-bottom: 3px solid var(--primary-color);
}

.my-activities {
  width: 100%;
}

.my-activities thead {
  font-weight: bold;
}

.my-activities thead td {
  padding-bottom: 12px;
}

.my-activities tbody td {
  padding: 4px 0;
}

.my-activities__btn {
  width: 10px;
}

.pagination {
  display: block;
  margin: 24px 0;
}

.pagination-list {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.pagination-list li {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pagination-list li + li {
  margin-left: 4px;
}

@media (max-width: 767px) {
  .my-activities__is-hidden {
    display: none !important;
  }
}

.my-activities thead .requests-link,
.my-activities thead .requests-link:hover,
.my-activities thead .requests-link:active {
  color: var(--primary-text-color);
}

.my-activities thead .requests-sort-symbol {
  font-size: 10px;
  color: var(--link-color);
  margin-left: 4px;
}

#search-filter {
  margin-bottom: 40px;
}

.filter {
  margin: 0;
}

@media (min-width: 768px) {
  .filter {
    display: block !important;
    height: auto !important;
  }
}

@media (max-width: 767px) {
  #search-filter h3::after {
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-weight: 900;
    content: "\f107";
    color: var(--secondary-text-color);
    margin-left: 8px;
  }
}


.filter li {
  padding: 4px 0;
}

.filter__btn {
  margin-top: 24px;
}

.topic-list {
  margin-bottom: -16px;
}

.topic-list__item {
  padding: 24px;
  margin-bottom: 16px;
  border-radius: var(--border-radius-base);
  background-color: var(--secondary-bg-color);
}

.topic-list__heading {
  margin-top: 0;
}

.topic-list + .pagination {
  margin-top: 40px;
}

.topic-controls {
  margin-bottom: 40px;
}

.vote-sum {
  margin: 0 12px;
}

/* Profile */
.profile-stats:first-child {
  margin-top: 0;
}

.profile-stats__stat {
  display: flex !important;
}

.profile-stats__label {
  display: block;
  flex: 0 0 50%;
  max-width: 50%;
  color: var(--secondary-text-color);
  font-size: var(--text-font-size-small);
}

.profile-stats__label::after {
  content: ':';
}

.profile-stats__value {
  display: block;
  flex: 0 0 50%;
  max-width: 50%;
  font-weight: bold;
  font-size: var(--text-font-size-small);
}

.community-badges-block {
  padding-bottom: 24px;
}

.community-badges {
  display: flex;
  flex-wrap: wrap;
}

.community-badges img {
  width: 40px;
  height: 40px;
  margin-right: 4px;
}

.community-badge-titles {
  display: inline-block;
  font-family: var(--text-font-family);
  font-size: var(--text-font-size-small);
  font-weight: normal;
  background-color: var(--secondary-color);
  padding: 2px 4px;
  border-radius: var(--border-radius-button);
  color: var(--white-color);
  line-height: 1;
  vertical-align: middle;
}

.profile-heading {
  margin-bottom: 40px;
}

.profile-heading h2 {
  margin: 0 0 12px;
}

.profile-user-meta > span {
  display: block;
  font-weight: bold;
  color: var(--primary-text-color);
}

.profile-badges-item-image {
  display: block;
  margin-right: 12px;
}

.profile-badges-item-image img {
  width: 40px;
  height: 40px;
  display: block;
}

.profile-badges-item-image.titles {
  border-radius: 50%;
  background-color: var(--secondary-text-color);
}

.profile-badges-item-metadata {
  margin-top: 12px;
}

@media (max-width: 767px) {
  .request-sidebar {
    margin-top: 36px;
    background-color: var(--secondary-bg-color);
    border-radius: var(--border-radius-base);
    padding: 12px;
  }
}

.my-activities__filter {
  display: flex;
  align-items: flex-end;
  margin-top: 12px;
  margin-bottom: 32px;
}

.my-activities__filter > * + * {
  margin-left: 8px;
}

.my-activities__filter label[for] {
  margin-bottom: 4px;
}

.my-activities__search {
  width: 50%;
  position: relative;
}

.my-activities__search input[type="search"] {
  padding-left: 42px;
}

.my-activities__search::before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-size: 14px;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "\f002";
  left: 15px;
  color: var(--secondary-text-color);
}

@media (max-width: 575px) {
  .my-activities__filter {
    flex-direction: column;
  }

  .my-activities__filter > * {
    width: 100%;
  }

  .my-activities__filter > * + * {
    margin-left: 0;
    margin-top: 8px;
  }
}

.markdown > * {
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}

.ui-dark #hc-wysiwyg [class^=wysiwyg-icon-]:active,
.ui-dark #hc-wysiwyg [class^=wysiwyg-icon-][aria-selected=true] {
  background-color: var(--primary-bg-color);
  border-color: var(--primary-bg-color);
}

#hc-wysiwyg [role=form] input {
  min-height: 28px;
  border-radius: 2px;
}

.ui-dark #hc-wysiwyg [role=form] input {
  color: #000;
}

.ui-dark #hc-wysiwyg [role=form] label {
  color: #000;
}

.ui-dark .wysiwyg-icon-formats {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' focusable='false' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' d='M2.5 1.5h6m-3 0v10'/%3E%3C/svg%3E") !important;
}

.ui-dark .wysiwyg-icon-bold {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' focusable='false' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M5.4 1c1.69 0 3.1 1.336 3.1 3 0 .95-.46 1.794-1.17 2.342C8.317 6.842 9 7.842 9 9c0 1.664-1.41 3-3.1 3H2.5a.5.5 0 01-.5-.5v-10a.5.5 0 01.5-.5h2.9zM3 11h2.9C7.05 11 8 10.1 8 9s-.95-2-2.1-2H3v4zm2.4-9H3v4h2.4c1.15 0 2.1-.9 2.1-2s-.95-2-2.1-2z'/%3E%3C/svg%3E") !important;
}

.ui-dark .wysiwyg-icon-italic {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' focusable='false' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' d='M5.5 1.5h2m-1 0l-2 10m-1 0h2'/%3E%3C/svg%3E") !important;
}

.ui-dark .wysiwyg-icon-bullist {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' focusable='false' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' d='M5 2.5h5.5M5 6.5h5.5m-5.5 4h5.5'/%3E%3Cg fill='%23fff'%3E%3Ccircle cx='2' cy='2.5' r='1'/%3E%3Ccircle cx='2' cy='6.5' r='1'/%3E%3Ccircle cx='2' cy='10.5' r='1'/%3E%3C/g%3E%3C/svg%3E") !important;
}

.ui-dark .wysiwyg-icon-numlist {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' focusable='false' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M4.5 3a.5.5 0 010-1h6a.5.5 0 110 1h-6zm0 4a.5.5 0 010-1h6a.5.5 0 110 1h-6zm0 4a.5.5 0 110-1h6a.5.5 0 110 1h-6zM1.49 3.22c-.13 0-.21-.08-.21-.22v-.09c0-.13.08-.21.21-.21h.28V1.57l-.05.05c-.05.05-.1.07-.15.07-.04 0-.1-.01-.15-.08l-.07-.06a.242.242 0 01-.06-.15c0-.04.01-.09.07-.15l.41-.39c.07-.07.14-.1.22-.1h.14c.13 0 .21.08.21.22V2.7h.28c.13 0 .22.08.22.21V3c0 .13-.08.22-.22.22H1.49zm-.12 4.02c-.14 0-.23-.09-.23-.22 0-.58.38-.85.69-1.06.21-.15.39-.27.39-.42 0-.18-.14-.24-.27-.24-.15 0-.24.1-.28.14-.05.06-.11.09-.17.09a.21.21 0 01-.13-.05l-.08-.07c-.1-.08-.12-.19-.05-.29.13-.17.36-.38.75-.38.49 0 .83.31.83.76 0 .46-.37.71-.66.9-.17.11-.31.21-.37.32h.84c.13 0 .22.08.22.21v.09c0 .14-.08.22-.22.22H1.37zm.59 4c-.32 0-.56-.13-.71-.24-.1-.08-.12-.19-.04-.3l.06-.1c.05-.08.12-.1.16-.1.04 0 .09.01.13.04.08.06.21.13.37.13.19 0 .33-.11.33-.26 0-.25-.31-.28-.41-.28-.15 0-.22-.04-.27-.14a.239.239 0 01.03-.29s.37-.44.38-.45h-.56c-.13 0-.21-.08-.21-.21v-.08c0-.13.08-.22.21-.22h1.13c.13 0 .22.08.22.21s-.03.19-.08.26l-.41.48c.30.09.56.33.56.72-.01.41-.31.83-.89.83z'/%3E%3C/svg%3E") !important;
}

.ui-dark .wysiwyg-icon-code-block {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' focusable='false' viewBox='0 0 12 12'%3E%3Cg fill='none' stroke='%23fff'%3E%3Crect width='11' height='9' x='.5' y='1.5' rx='.5' ry='.5'/%3E%3Cpath stroke-linecap='round' d='M5.5 8.5h4m-7-5l2.1 2.1a.5.5 0 010 .7L2.5 8.5'/%3E%3C/g%3E%3C/svg%3E") !important;
}

.ui-dark .wysiwyg-icon-link {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' focusable='false' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M3.328 5.176l.673.673-.701.715-.325-.326-1.397 1.396a1.975 1.975 0 000 2.792l.108.1c.776.67 1.95.637 2.685-.1l1.396-1.395-.345-.346.7-.715.706.706a.5.5 0 010 .708l-1.75 1.75A2.975 2.975 0 01.871 6.926l1.75-1.75a.5.5 0 01.707 0zm4.892-2.09a.5.5 0 01.689.702l-.059.07-2.525 2.474L3.857 8.85l-.069.059a.5.5 0 01-.702-.69l.057-.069 2.475-2.525L8.15 3.143l.07-.057zM11.134.87a2.975 2.975 0 010 4.207l-1.75 1.75a.5.5 0 01-.708 0l-.705-.705.715-.701.344.345 1.396-1.396a1.975 1.975 0 000-2.793l-.108-.1a1.975 1.975 0 00-2.684.1L6.238 2.974l.326.327-.715.7-.673-.673a.5.5 0 010-.707l1.75-1.75a2.975 2.975 0 014.208 0z'/%3E%3C/svg%3E") !important;
}

.ui-dark .wysiwyg-icon-image {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' focusable='false' viewBox='0 0 12 12'%3E%3Cg fill='none' stroke='%23fff'%3E%3Crect width='11' height='9' x='.5' y='1.5' rx='.5' ry='.5'/%3E%3Cpath d='M.5 10.5l3.65-3.65a.5.5 0 01.71 0l1.79 1.8a.5.5 0 00.71 0l.79-.79a.5.5 0 01.71 0L11 10'/%3E%3C/g%3E%3Ccircle cx='8' cy='4' r='1' fill='%23fff'/%3E%3C/svg%3E") !important;
}

.ui-dark .wysiwyg-icon-quote {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' focusable='false' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' d='M5 6.5H3c-.3 0-.5-.2-.5-.5V4c0-.3.2-.5.5-.5h2c.3 0 .5.2.5.5v2c0 .3-.2.5-.5.5zm5 0H8c-.3 0-.5-.2-.5-.5V4c0-.3.2-.5.5-.5h2c.3 0 .5.2.5.5v2c0 .3-.2.5-.5.5zM9.5 10c.5-.5 1-1.5 1-3V5.5m-6 4.5c.5-.5 1-1.5 1-3V5.5'/%3E%3C/svg%3E") !important;
}

#tinymce {
  display: block;
  padding: 12px;
  background: transparent;
  height: 100%;
  min-height: 100%;
}

#tinymce a {
  text-decoration: underline;
}

#tinymce a:hover {
  text-decoration: none;
}

#tinymce > *:first-child {
  margin-top: 0;
}

#tinymce > *:last-child {
  margin-bottom: 0;
}

#tinymce pre {
  background-color: var(--primary-bg-color);
  border: none;
}

#hc-wysiwyg [role=menu],
#hc-wysiwyg [role=menu] > [role=button] {
  background-color: var(--primary-bg-color);
  border-color: var(--border-color);
}

#hc-wysiwyg [role=menu] > [role=button]:hover {
  background: var(--secondary-bg-color);
}

/* Wysiwyg body */
.wysiwyg-body p code {
  display: inline-block;
  padding: 0 0.25em;
  border-radius: 2px;
  border: 1px solid var(--border-color);
  background-color: var(--secondary-bg-color);
  color: var(--primary-text-color);
  white-space: pre;
}

.wysiwyg-body pre code {
  border-radius: var(--border-radius-small);
  padding: 10px 15px;
  overflow-x: auto;
}

.wysiwyg-body pre .hljs {
  font-size: var(--text-font-size-small);
}

.ui-light .wysiwyg-body pre .hljs {
  color: var(--secondary-bg-color);
  background-color: var(--primary-text-color);
}

.ui-dark .wysiwyg-body pre .hljs {
  background-color: var(--secondary-bg-color);
}

.ui-dark .comments__container .wysiwyg-body pre .hljs {
  background-color: var(--primary-bg-color);
}

.wysiwyg-body a {
  text-decoration: underline;
}

.wysiwyg-body a:hover {
  text-decoration: none;
}

.wysiwyg-body blockquote {
  border-left: 5px solid var(--border-color);
  font-style: italic;
  margin-left: 0;
  margin-right: 0;
  overflow: hidden;
  padding-left: 1.5em;
  padding-right: 1.5em;
}

/***** Tool Tip *****/
.tooltip {
  position: relative;
  display: inline-block;
  color: #331AAB;
  border-bottom: 1.8px dotted #331AAB;
  font-weight: 500;
  text-decoration: none;
}

.tooltip:hover {
  position: relative;
  display: inline-block;
  color: black;
  border-bottom: 1.8px dotted black;
  font-weight: 500;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 300px;
  background-color: white;
  color: black;
  text-align: center;
  border-radius: 17px;
  padding: 15px 10px;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  margin-left: -140px;
  opacity: 0;
  transition: opacity 1s;
  font-weight: 400;
  box-shadow: rgba(149, 157, 165, 0.5) 0px 8px 24px;
}

.tooltip .tooltiptext::after {
  content: " ";
  position: absolute;
  top: 100%; /* At the bottom of the tooltip */
  left: 50%;
  margin-left: -15px;
  border-width: 7px;
  border-style: solid;
  border-color: white transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/***** Lists *****/

.custom-ol {
  margin-left:15px; 
  padding-left:0; 
  counter-reset:steps;
}

.custom-ol > li {
  margin-left:0; 
  padding-left:16px;  
  list-style:none inside;
  margin-bottom:5px;
  position: relative;
}

.custom-ol > li:before {
  content: counter(steps);
  counter-increment: steps;
  margin-right: 0.5rem;
  background: #E7EAF2;
  color: #6B7280;
  font-weight: 500;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  line-height: 1.2em;
  position: absolute;
  left: -15px;
  top: 3.5px;
  font-size: 90%;
}

.custom-ul {
  list-style-type: none;
  margin: 10px 0 10px 20px;
}

.custom-ul > li:before {
	content: "•"; 
  color: #C1C9D2;
  font-size: 180%;
  display: inline-grid;
  position: absolute;
  width: 1em;
  margin-left: -30px;
  margin-top: -13px;
}

ol li {
  margin-bottom: 10px;
}

/***** Section Line *****/

hr {
  height: 1.5px !important; 
  background-color: #e0e0e0 !important;
  border: none !important;
}

/***** Tables *****/

table {
  border-collapse: collapse;
  border: none;
}

/***** Spotlight Section *****/

.section-sbs {
    justify-content: space-between;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap; /* Allow flex items to wrap */
}

.sbs-child {
    align-self: center;
    width: calc(50% - 10px); /* 50% width minus spacing */
    max-width: 100%;
    display: flex;
    position: relative;
}

@media screen and (max-width: 767px) {
    .sbs-child {
        width: 100%; /* Make child items take full width when screen size is less than 600px */
    }
}

card-text_wrapper {
    position: relative;
}

.sbs-media {
    border-radius: 16px;
    overflow: hidden;
  	max-width: 600px;
}

@media screen and (max-width: 767px) {
    .sbs-media {
        width: 70%; /* Make child items take full width when screen size is less than 600px */
      	margin: 0 auto; /* Center both horizontally and vertically */
    }
}


}

.sbs-video {
    animation: 1000ms ease-out 2000ms 1 normal backwards running SuperSmooth;
}

.sbs-text-content.right {
    padding-left: 2rem;
  padding-right: 2rem;
}

.arrow-link {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    color: var(--primary-600);
    align-items: center;
    margin-top: 2rem;
    font-weight: 500;
    text-decoration: none;
    transition: all .35s cubic-bezier(.6,.6,0,1);
    display: flex;
}

.arrow-link-text {
    align-self: center;
    align-items: center;
    font-size: 1.125rem;
    line-height: 1.125rem;
    display: flex;
}

.mb-0 {
    margin-bottom: 0;
}

/***** Product Announcement Section *****/
.wrapper-integrations {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  
}

.integration-grid-item {
    display: flex;
  }

.integration-item, .integration-item > * {
    transition: all 0.3s cubic-bezier(0.6, 0.6, 0, 1);
}

.integration-item {
    box-shadow: 0 16px 36px rgba(28, 52, 139, .12);
}

.integration-item {
    grid-column-gap: 1.175rem;
    grid-row-gap: 1.175rem;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    color: var(--arcade-dark);
    background-color: #fff;
    border-radius: 1.25rem;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 1.5rem;
    text-decoration: none;
    display: flex;
}

.integration-item::before {
 transition: all var(--duration) var(--timing-function);
 z-index: -1;
}

.integration-item:hover,
.integration-item:active {
  transform: translateY(-6px);
}

.integration-text {
    grid-column-gap: .25rem;
    grid-row-gap: .25rem;
    flex-direction: column;
    display: flex;
}

.integration-title {
    margin-bottom: 0;
  	font-weight: 600;
    font-size: 1.30rem;
    line-height: 1.875rem;
}

.integration-description {
    color: var(--600);
    font-size: 1rem;
    line-height: 1.375rem;
  font-weight: 400;
}

w-node-_660c4110-3ec6-3ee4-46ad-6383923dbfaa-c6678575 {
    align-self: stretch;
}

.container.container-integrations {
    z-index: 2;
    position: relative;
}

.container {
    width: 90%;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

/* Media Query for stacking items into one column at a specific screen width */
@media screen and (max-width: 768px) {
    .wrapper-integrations {
        grid-template-columns: 1fr; /* Set one column at smaller screen width */
    }
}

/***** FAQs Section *****/

.integration-grid-item2 {
    display: flex;
  	text-align: center;
  }

.integration-description2 {
  color: var(--600);
  font-size: 1rem;
  line-height: 1.375rem;
  font-weight: 500;
}

.integration-item2, .integration-item2 > * {
    transition: all 0.3s cubic-bezier(0.6, 0.6, 0, 1);
}

.integration-item2 {
    box-shadow: 0 16px 36px rgba(28, 52, 139, .12);
}

.integration-item2 {
    grid-column-gap: 1.175rem;
    grid-row-gap: 1.175rem;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    color: var(--arcade-dark);
    background-color: #fff;
    border-radius: 1.25rem;
    flex-direction: column;
    align-items: center;
  	justify-content: center;
    width: 100%;
    padding: 1.5rem;
    text-decoration: none;
    display: flex;
  	text-align: center;
}

.integration-item2::before {
 transition: all var(--duration) var(--timing-function);
 z-index: -1;
}

.integration-item2:hover,
.integration-item2:active {
  transform: translateY(-6px);
}

/***** TOC *****/

.toc__container{
  border-left: 1.5px solid; 
  border-color: #e0e0e0;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: 20px;
  margin-right: 10px;
}


.toc__element.toc__element--level-0 {
  font-size: 14px;
  font-weight: 400 !important;
  transition: font-size 0.5s ease, font-weight 0.5s ease, padding-left 0.5s ease, color 0.5s ease;
}

.toc__element.toc__element--level-0 a {
  color: #CCCCCC !important;
  font-weight: 400 !important;
}

.toc__element.toc__element--level-0 a:hover {
  font-size: 14px;
  color: black !important;
  transition: color 0.5s ease;
}

.toc__element.toc__element--level-0.is-active {
  font-size: 14px;
  font-weight: 600 !important;
  padding-left: 5px;
  color: black !important;
  transition: font-size 0.5s ease, font-weight 0.5s ease, padding-left 0.5s ease, color 0.5s ease;
}

.toc__element.toc__element--level-0.is-active a {
  font-size: 14px;
  font-weight: 600 !important;
  color: black !important;
}

h4.toc__title {
  color: #331AAB;
}


.toc__list.js-toc-list li:nth-last-child(-n+1) {
  display: none;
}


.spoiler__title {
    font-weight: 500 !important;
  }

.tabs__links a {
    font-weight: 600 !important;
}

.callout.callout--style-info.callout--type-2 {
    border-radius: 12px !important; /* Adjust the value as needed */
}

.callout.callout--style-danger.callout--type-2 {
    border-radius: 12px !important; /* Adjust the value as needed */
}

.callout.callout--style-warning.callout--type-2 {
    border-radius: 12px !important; /* Adjust the value as needed */
}

.row.justify-content-center {
  justify-content: unset !important; /* Or you can use any other value like 'flex-start' or 'flex-end' */
}


/***** Searchable Table *****/
        .dtSearch_table-wrapper {
            max-width: 1400px;
            margin: 0 auto;
        }
        .dtSearch_table-header {
            margin-bottom: 2rem;
        }
        .dtSearch_table-title {
            color: var(--primary);
            margin-bottom: 0.5rem;
            letter-spacing: -0.02em;
        }
        .dtSearch_table-description {
            color: var(--secondary);
            margin-bottom: 2rem;
        }
        .dtSearch_search-container {
            position: relative;
            max-width: 400px;
            margin-bottom: 2rem;
        }
        .dtSearch_search-input {
            width: 100%;
            padding: 0.75rem 2.75rem 0.75rem 1rem;
            border: 1px solid #e8e8ed;
            border-radius: 0.5rem;
            color: var(--primary);
            background: var(--white);
            transition: all 0.2s ease;
        }
        .dtSearch_search-input:focus {
            outline: none;
            border-color: var(--link);
            box-shadow: 0 0 0 3px rgba(62, 1, 184, 0.1);
        }
        .dtSearch_search-input::placeholder {
            color: var(--tertiary);
        }
        .dtSearch_search-icon {
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--tertiary);
            width: 16px;
            height: 16px;
        }
        .dtSearch_table-card {
            background-color: var(--white);
            border-radius: 1rem;
            box-shadow: 0 30px 90px rgba(84, 88, 246, 0.06);
            overflow: hidden;
        }
        .dtSearch_table-container {
            overflow-x: auto;
        }
        .dtSearch_table-container table {
            width: 100%;
            border-collapse: collapse;
        }
        .dtSearch_table-container thead {
            background: #4764C5;
            border-bottom: 2px solid #e8e8ed;
          	color: #fff;
            font-weight: bold;
        }
        .dtSearch_table-container th {
            padding: 1rem 1rem;
            text-align: left;
            color: #fff;
            font-weight: bold;
        }
        .dtSearch_table-container td {
            padding: 1rem 1rem;
            border-bottom: 1px solid #e8e8ed;
            color: var(--primary);
            overflow-wrap: break-word;
        }
        .dtSearch_table-container tbody tr {
            transition: background-color 0.15s ease;
        }
        .dtSearch_table-container tbody tr:hover:not(.dtSearch_category-row) {
            background-color: #F4F4F9;
        }
        .dtSearch_table-container tbody tr:last-child td {
            border-bottom: none;
        }
        .dtSearch_table-container tbody tr.dtSearch_hidden {
            display: none;
        }
        
        /* Category Row Styles */
        .dtSearch_category-row {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            cursor: pointer;
            user-select: none;
        }
        .dtSearch_category-row:hover {
            background: linear-gradient(135deg, #5568d3 0%, #6a4190 100%);
        }
        .dtSearch_category-row td {
            padding: 0.875rem 1rem;
            font-weight: 600;
            color: #ffffff;
            border-bottom: 2px solid #e8e8ed;
        }
        .dtSearch_category-toggle {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .dtSearch_category-icon {
            transition: transform 0.2s ease;
            font-size: 0.875rem;
        }
        .dtSearch_category-row.dtSearch_collapsed .dtSearch_category-icon {
            transform: rotate(-90deg);
        }
        .dtSearch_category-count {
            opacity: 0.9;
            font-size: 0.875rem;
            margin-left: 0.5rem;
        }
        
        .dtSearch_no-results {
            text-align: center;
            padding: 4rem 2rem;
            color: var(--secondary);
            display: none;
        }
        .dtSearch_no-results.dtSearch_show {
            display: block;
        }
        .dtSearch_no-results-icon {
            margin-bottom: 1rem;
            opacity: 0.5;
        }
        .dtSearch_results-count {
            padding: 1rem 1.5rem;
            background: #F4F4F9;
            border-top: 1px solid #e8e8ed;
            color: var(--secondary);
        }
        .dtSearch_results-count strong {
            color: var(--primary);
        }
        @media (max-width: 768px) {
            .dtSearch_search-container {
                max-width: 100%;
            }
            .dtSearch_table-container th,
            .dtSearch_table-container td {
                padding: 1rem;
            }
        }