.navbar-theme-switch {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: rgb(239, 240, 245);
}

.navbar-height {
  width: 100%;
  height: 113px;
}
.theme-light .navbar-height {
  background-color: rgb(255, 255, 255);
}
.theme-light-alt .navbar-height {
  background-color: rgb(248, 248, 248);
}
.theme-dark .navbar-height {
  background-color: rgb(48, 69, 82);
}
.theme-dark-alt .navbar-height {
  background-color: rgb(31, 50, 63);
}
.theme-blue .navbar-height {
  background-color: rgb(10, 109, 230);
}

.navbar {
  position: fixed;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  width: 100%;
  height: auto;
  color: rgb(31, 50, 63);
  z-index: 2000;
  padding: 0;
}
@media all and (min-width: 1025px) {
  .navbar {
    background-color: rgb(255, 255, 255);
  }
  .theme-light .navbar {
    background-color: rgb(255, 255, 255);
  }
  .theme-light-alt .navbar {
    background-color: rgb(248, 248, 248);
  }
  .theme-dark .navbar {
    background-color: rgb(48, 69, 82);
  }
  .theme-dark-alt .navbar {
    background-color: rgb(31, 50, 63);
  }
  .theme-blue .navbar {
    background-color: rgb(10, 109, 230);
  }
}
.theme-light .navbar {
  color: rgb(31, 50, 63);
}
.theme-light-alt .navbar {
  color: rgb(31, 50, 63);
}
.theme-dark .navbar {
  color: rgb(255, 255, 255);
}
.theme-dark-alt .navbar {
  color: rgb(255, 255, 255);
}
.theme-blue .navbar {
  color: rgb(255, 255, 255);
}
.navbar--wrapper-header {
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
}
.navbar__container {
  max-width: 1728px;
  width: 100%;
  padding: 0 135px;
  max-height: 113px;
  height: 100%;
  background-color: rgb(255, 255, 255);
}
.theme-light .navbar__container {
  background-color: rgb(255, 255, 255);
}
.theme-light-alt .navbar__container {
  background-color: rgb(248, 248, 248);
}
.theme-dark .navbar__container {
  background-color: rgb(48, 69, 82);
}
.theme-dark-alt .navbar__container {
  background-color: rgb(31, 50, 63);
}
.theme-blue .navbar__container {
  background-color: rgb(10, 109, 230);
}
@media all and (max-width: 1024px) {
  .navbar__container {
    z-index: 1000;
  }
}
@media all and (max-width: 1280px) {
  .navbar__container {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    padding: 0 30px;
  }
}
.navbar__main-menu {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  padding: 30px 0;
  background-color: rgb(255, 255, 255);
}
.theme-light .navbar__main-menu {
  background-color: rgb(255, 255, 255);
}
.theme-light-alt .navbar__main-menu {
  background-color: rgb(248, 248, 248);
}
.theme-dark .navbar__main-menu {
  background-color: rgb(48, 69, 82);
}
.theme-dark-alt .navbar__main-menu {
  background-color: rgb(31, 50, 63);
}
.theme-blue .navbar__main-menu {
  background-color: rgb(10, 109, 230);
}
@media all and (max-width: 1024px) {
  .navbar__main-menu {
    top: 0;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    padding-inline: 30px;
    width: 100vw;
    height: 100%;
    left: -30px;
  }
}
.navbar__logo {
  margin-right: 50px;
}
.navbar__button-container {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 70%;
          flex: 1 0 70%;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
  gap: 20px;
}
@media all and (max-width: 1024px) {
  .navbar__button-container {
    display: none;
  }
}
.navbar__button-container--mobile {
  display: none;
}
@media all and (max-width: 1024px) {
  .navbar__button-container--mobile {
    width: 100%;
    z-index: 450;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    position: fixed;
    top: 96px;
    margin-top: -100px;
    left: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
    padding: 2rem 1.5rem;
    gap: 10px;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: -o-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s, -o-transform 0.3s;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 100%;
            flex: 1 0 100%;
    background-color: rgb(255, 255, 255);
  }
  .theme-light .navbar__button-container--mobile {
    background-color: rgb(255, 255, 255);
  }
  .theme-light-alt .navbar__button-container--mobile {
    background-color: rgb(248, 248, 248);
  }
  .theme-dark .navbar__button-container--mobile {
    background-color: rgb(48, 69, 82);
  }
  .theme-dark-alt .navbar__button-container--mobile {
    background-color: rgb(31, 50, 63);
  }
  .theme-blue .navbar__button-container--mobile {
    background-color: rgb(10, 109, 230);
  }
  .navbar__button-container--mobile .btn {
    -webkit-box-flex: 2;
    -webkit-flex-grow: 2;
            flex-grow: 2;
    margin-bottom: 0;
  }
}
.navbar__collapsed-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  max-height: 70vh;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  width: 100%;
  top: -1px;
  left: 0;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: -o-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s, -o-transform 0.3s;
  background-color: rgb(255, 255, 255);
}
.theme-light .navbar__collapsed-menu {
  background-color: rgb(255, 255, 255);
}
.theme-light-alt .navbar__collapsed-menu {
  background-color: rgb(248, 248, 248);
}
.theme-dark .navbar__collapsed-menu {
  background-color: rgb(48, 69, 82);
}
.theme-dark-alt .navbar__collapsed-menu {
  background-color: rgb(31, 50, 63);
}
.theme-blue .navbar__collapsed-menu {
  background-color: rgb(10, 109, 230);
}
@media all and (max-width: 1024px) {
  .navbar__collapsed-menu {
    -webkit-box-shadow: 0 3px 10px -3px rgba(0, 0, 0, 0.2);
            box-shadow: 0 3px 10px -3px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  .theme-light .navbar__collapsed-menu {
    -webkit-box-shadow: 0 3px 10px -3px rgba(0, 0, 0, 0.2);
            box-shadow: 0 3px 10px -3px rgba(0, 0, 0, 0.2);
  }
  .theme-light-alt .navbar__collapsed-menu {
    -webkit-box-shadow: 0 3px 10px -3px rgba(0, 0, 0, 0.2);
            box-shadow: 0 3px 10px -3px rgba(0, 0, 0, 0.2);
  }
  .theme-dark .navbar__collapsed-menu {
    -webkit-box-shadow: 0 3px 10px -3px rgba(0, 0, 0, 0.2);
            box-shadow: 0 3px 10px -3px rgba(0, 0, 0, 0.2);
  }
  .theme-dark-alt .navbar__collapsed-menu {
    -webkit-box-shadow: 0 3px 10px -3px rgba(0, 0, 0, 0.2);
            box-shadow: 0 3px 10px -3px rgba(0, 0, 0, 0.2);
  }
}
.navbar__collapsed-menu::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  height: 100%;
  background-color: rgb(255, 255, 255);
}
.theme-light .navbar__collapsed-menu::before {
  background-color: rgb(255, 255, 255);
}
.theme-light-alt .navbar__collapsed-menu::before {
  background-color: rgb(248, 248, 248);
}
.theme-dark .navbar__collapsed-menu::before {
  background-color: rgb(48, 69, 82);
}
.theme-dark-alt .navbar__collapsed-menu::before {
  background-color: rgb(31, 50, 63);
}
.theme-blue .navbar__collapsed-menu::before {
  background-color: rgb(10, 109, 230);
}
@media all and (min-width: 1025px) and (max-width: 1280px) {
  .navbar__collapsed-menu::before {
    width: 100vw;
    left: -30px;
  }
}
@media all and (min-width: 1281px) and (max-width: 1727px) {
  .navbar__collapsed-menu::before {
    width: calc(100vw + 135px);
    left: -270px;
  }
}
@media all and (min-width: 1728px) {
  .navbar__collapsed-menu::before {
    width: 100vw;
    left: calc((1728px - 100vw) / 2 - 135px);
  }
}
@media all and (max-width: 1024px) {
  .navbar__collapsed-menu::before {
    display: none;
  }
}
@media all and (max-width: 1024px) {
  .navbar__collapsed-menu {
    position: absolute;
    top: 96px;
    max-height: unset;
    border-top: 1px solid rgb(208, 214, 218);
    z-index: -1;
    overflow: hidden;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .navbar__collapsed-menu > * {
    padding: 2rem 0;
  }
}
.navbar__collapsed-menu.closed {
  -webkit-transform: translateY(-125%);
       -o-transform: translateY(-125%);
          transform: translateY(-125%);
}
@media all and (max-width: 1024px) {
  .navbar__collapsed-menu.closed {
    position: absolute;
  }
}
.navbar__tab-menu {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 0;
          flex: 1 0 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  padding: 0;
  margin: 0;
}
@media all and (max-width: 1024px) {
  .navbar__tab-menu {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
            order: 3;
    pointer-events: auto !important;
    max-height: 60vh;
    -ms-scroll-chaining: none;
        overscroll-behavior: contain;
    overflow-y: auto;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 100%;
            flex: 1 0 100%;
    border-top: 1px solid rgb(208, 214, 218);
  }
}
.navbar__tab {
  padding: 3rem 5rem 3rem 0;
  position: relative;
  -webkit-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
  cursor: pointer;
}
.navbar__tab .navbar__link h5 {
  color: rgb(94, 112, 122);
  display: inline-block;
}
.theme-light .navbar__tab .navbar__link h5 {
  color: rgb(94, 112, 122);
}
.theme-light-alt .navbar__tab .navbar__link h5 {
  color: rgb(94, 112, 122);
}
.theme-dark .navbar__tab .navbar__link h5 {
  color: rgb(255, 255, 255);
}
.theme-dark-alt .navbar__tab .navbar__link h5 {
  color: rgb(255, 255, 255);
}
.navbar__tab:hover .navbar__link h5 {
  color: rgb(31, 50, 63);
}
.theme-light .navbar__tab:hover .navbar__link h5 {
  color: rgb(31, 50, 63);
}
.theme-light-alt .navbar__tab:hover .navbar__link h5 {
  color: rgb(31, 50, 63);
}
.theme-dark .navbar__tab:hover .navbar__link h5 {
  color: rgb(248, 248, 248);
}
.theme-dark-alt .navbar__tab:hover .navbar__link h5 {
  color: rgb(248, 248, 248);
}
.navbar__tab:hover .navbar__link h5::after {
  content: "";
  bottom: -15px;
  left: 0;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: rgb(10, 109, 230);
}
@media all and (max-width: 1024px) {
  .navbar__tab:hover .navbar__link h5::after {
    content: none;
  }
}
@media all and (min-width: 1025px) {
  .navbar__tab:hover .dropdown-menu {
    display: block;
  }
}
@media all and (min-width: 1025px) {
  .navbar__tab:hover .tab-panel-dropdown {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
  }
}
@media all and (max-width: 1024px) {
  .navbar__tab {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 100%;
            flex: 1 0 100%;
    padding: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    position: static;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
  }
}
.navbar__link {
  text-transform: uppercase;
  position: relative;
  cursor: pointer;
}
.navbar__link > h5 {
  line-height: 1.4rem;
}
.navbar__link-arrow, .navbar__link-arrow.materials-styles {
  display: none;
}
@media all and (max-width: 1024px) {
  .navbar__link-arrow, .navbar__link-arrow.materials-styles {
    display: inline-block;
    padding: 25px;
    margin: -25px -25px;
  }
}
.navbar__left-arrow, .navbar__right-arrow {
  color: rgb(94, 112, 122);
}
.theme-light .navbar__left-arrow, .theme-light .navbar__right-arrow {
  color: rgb(94, 112, 122);
}
.theme-light-alt .navbar__left-arrow, .theme-light-alt .navbar__right-arrow {
  color: rgb(94, 112, 122);
}
.theme-dark .navbar__left-arrow, .theme-dark .navbar__right-arrow {
  color: rgb(255, 255, 255);
}
.theme-dark-alt .navbar__left-arrow, .theme-dark-alt .navbar__right-arrow {
  color: rgb(255, 255, 255);
}
.navbar__side-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  background: inherit;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  height: 84px;
  -webkit-align-self: baseline;
          align-self: baseline;
}
@media all and (max-width: 1024px) {
  .navbar__side-wrapper {
    margin-right: 30px;
    width: 100%;
  }
}
.navbar__side-wrapper .fico-solr-search-autocomplete-search {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  height: 84px;
}
@media all and (max-width: 1024px) {
  .navbar__side-wrapper .fico-solr-search-autocomplete-search {
    height: 53px;
  }
}
.navbar__language-select {
  margin-right: 50px;
}
@media all and (max-width: 1024px) {
  .navbar__language-select {
    margin-left: 30px;
    margin-right: 0;
  }
}
.navbar__search {
  width: 50px;
  height: 50px;
  margin-left: 30px;
  background: rgb(255, 255, 255);
  position: absolute;
  right: 0;
  bottom: 17px;
  -webkit-transition: width 300ms linear;
  -o-transition: width 300ms linear;
  transition: width 300ms linear;
}
.theme-light .navbar__search {
  background: rgb(255, 255, 255);
}
.theme-light-alt .navbar__search {
  background: rgb(248, 248, 248);
}
.theme-dark .navbar__search {
  background: rgb(48, 69, 82);
}
.theme-dark-alt .navbar__search {
  background: rgb(31, 50, 63);
}
.theme-blue .navbar__search {
  background: rgb(10, 109, 230);
}
@media all and (max-width: 1024px) {
  .navbar__search {
    min-width: 160px;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    position: relative;
    right: 30px;
    bottom: 0;
    padding: 0;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 50%;
            flex: 1 0 50%;
  }
}
.navbar__search--full-width {
  width: 100%;
}
.navbar__search-box {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  background: rgba(10, 109, 230, 0.1);
  border-radius: 24px;
}
.theme-light .navbar__search-box {
  background: rgba(10, 109, 230, 0.1);
}
.theme-light-alt .navbar__search-box {
  background: rgba(10, 109, 230, 0.1);
}
.theme-dark .navbar__search-box {
  background: rgba(255, 255, 255, 0.1);
}
.theme-dark-alt .navbar__search-box {
  background: rgba(255, 255, 255, 0.1);
}
.navbar__input-search {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 100%;
  outline: 0;
  border: 0;
  border-radius: 24px;
  padding: 0 75px;
  font-size: 1.6rem;
  color: rgb(10, 109, 230);
  background: transparent;
}
.theme-light .navbar__input-search {
  color: rgb(10, 109, 230);
}
.theme-light-alt .navbar__input-search {
  color: rgb(10, 109, 230);
}
.theme-dark .navbar__input-search {
  color: rgb(255, 255, 255);
}
.theme-dark-alt .navbar__input-search {
  color: rgb(255, 255, 255);
}
@media all and (max-width: 1024px) {
  .navbar__input-search {
    display: block;
    padding: 0 50px;
  }
}
.navbar__input-search::-webkit-input-placeholder {
  color: rgb(10, 109, 230);
  opacity: 1;
}
.navbar__input-search::-moz-placeholder {
  color: rgb(10, 109, 230);
  opacity: 1;
}
.navbar__input-search:-ms-input-placeholder {
  color: rgb(10, 109, 230);
  opacity: 1;
}
.navbar__input-search::-ms-input-placeholder {
  color: rgb(10, 109, 230);
  opacity: 1;
}
.navbar__input-search::placeholder {
  color: rgb(10, 109, 230);
  opacity: 1;
}
.theme-light .navbar__input-search::-webkit-input-placeholder {
  color: rgb(10, 109, 230);
}
.theme-light .navbar__input-search::-moz-placeholder {
  color: rgb(10, 109, 230);
}
.theme-light .navbar__input-search:-ms-input-placeholder {
  color: rgb(10, 109, 230);
}
.theme-light .navbar__input-search::-ms-input-placeholder {
  color: rgb(10, 109, 230);
}
.theme-light .navbar__input-search::placeholder {
  color: rgb(10, 109, 230);
}
.theme-light-alt .navbar__input-search::-webkit-input-placeholder {
  color: rgb(10, 109, 230);
}
.theme-light-alt .navbar__input-search::-moz-placeholder {
  color: rgb(10, 109, 230);
}
.theme-light-alt .navbar__input-search:-ms-input-placeholder {
  color: rgb(10, 109, 230);
}
.theme-light-alt .navbar__input-search::-ms-input-placeholder {
  color: rgb(10, 109, 230);
}
.theme-light-alt .navbar__input-search::placeholder {
  color: rgb(10, 109, 230);
}
.theme-dark .navbar__input-search::-webkit-input-placeholder {
  color: rgb(255, 255, 255);
}
.theme-dark .navbar__input-search::-moz-placeholder {
  color: rgb(255, 255, 255);
}
.theme-dark .navbar__input-search:-ms-input-placeholder {
  color: rgb(255, 255, 255);
}
.theme-dark .navbar__input-search::-ms-input-placeholder {
  color: rgb(255, 255, 255);
}
.theme-dark .navbar__input-search::placeholder {
  color: rgb(255, 255, 255);
}
.theme-dark-alt .navbar__input-search::-webkit-input-placeholder {
  color: rgb(255, 255, 255);
}
.theme-dark-alt .navbar__input-search::-moz-placeholder {
  color: rgb(255, 255, 255);
}
.theme-dark-alt .navbar__input-search:-ms-input-placeholder {
  color: rgb(255, 255, 255);
}
.theme-dark-alt .navbar__input-search::-ms-input-placeholder {
  color: rgb(255, 255, 255);
}
.theme-dark-alt .navbar__input-search::placeholder {
  color: rgb(255, 255, 255);
}
.navbar__input-btn-container {
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}
.navbar__input-btn {
  width: 48px;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  background-color: transparent;
  border: none;
}
.navbar__input-btn > i, .navbar__input-btn > .materials-styles {
  font-size: 24px !important;
  color: rgb(10, 109, 230);
}
.theme-light .navbar__input-btn > i, .theme-light .navbar__input-btn > .materials-styles {
  color: rgb(10, 109, 230);
}
.theme-light-alt .navbar__input-btn > i, .theme-light-alt .navbar__input-btn > .materials-styles {
  color: rgb(10, 109, 230);
}
.theme-dark .navbar__input-btn > i, .theme-dark .navbar__input-btn > .materials-styles {
  color: rgb(255, 255, 255);
}
.theme-dark-alt .navbar__input-btn > i, .theme-dark-alt .navbar__input-btn > .materials-styles {
  color: rgb(255, 255, 255);
}
.navbar__input-btn.close-icon {
  height: auto;
  display: none;
}
.navbar__input-btn.close-icon .materials-styles {
  -webkit-transform: translateY(2px);
       -o-transform: translateY(2px);
          transform: translateY(2px);
}
.navbar__lang-dropdown {
  padding-top: 0 !important;
  margin-right: 20px;
}
@media all and (max-width: 1024px) {
  .navbar__lang-dropdown {
    margin-right: 15px;
  }
}
.navbar__lang-dropdown--menu {
  width: 100%;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}

.position-static-responsive {
  position: static;
}

.nav-tabs {
  border-bottom: none;
}

.underline {
  border-bottom: 1px solid rgb(208, 214, 218);
}

.animate__animated.animate__slideInRight {
  --animate-duration: 0.2s;
}

.tab-panel-dropdown {
  position: fixed;
  margin-top: 30px;
  left: 0;
  min-width: 100%;
  display: none;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  border-top: 1px solid rgb(208, 214, 218);
}
@media all and (max-width: 1024px) {
  .tab-panel-dropdown {
    width: unset;
    margin-top: unset;
  }
}

.bottom-border {
  display: none;
  z-index: 10000;
  width: 100vw;
  height: 1px;
  background-color: rgb(208, 214, 218);
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 196px;
  left: 0;
}

.navbar__tab--active {
  visibility: hidden;
}

.tab-dropdown-menu {
  z-index: 300;
  border: none;
  -webkit-transition: left 200ms ease;
  -o-transition: left 200ms ease;
  transition: left 200ms ease;
  -webkit-box-shadow: 0 3px 10px -3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 10px -3px rgba(0, 0, 0, 0.2);
  width: auto;
  background-color: rgb(255, 255, 255);
}
.theme-light .tab-dropdown-menu {
  border-bottom: none;
  border-left: none;
  border-right: none;
  -webkit-box-shadow: 0 3px 10px -3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 10px -3px rgba(0, 0, 0, 0.2);
  background-color: rgb(255, 255, 255);
}
.theme-light-alt .tab-dropdown-menu {
  border-bottom: none;
  border-left: none;
  border-right: none;
  -webkit-box-shadow: 0 3px 10px -3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 10px -3px rgba(0, 0, 0, 0.2);
  background-color: rgb(248, 248, 248);
}
.theme-dark .tab-dropdown-menu {
  border-bottom: none;
  border-left: none;
  border-right: none;
  -webkit-box-shadow: 0 3px 10px -3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 10px -3px rgba(0, 0, 0, 0.2);
  background-color: rgb(48, 69, 82);
}
.theme-dark-alt .tab-dropdown-menu {
  border-bottom: none;
  border-left: none;
  border-right: none;
  -webkit-box-shadow: 0 3px 10px -3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 10px -3px rgba(0, 0, 0, 0.2);
  background-color: rgb(31, 50, 63);
}
.theme-blue .tab-dropdown-menu {
  border-bottom: none;
  border-left: none;
  border-right: none;
  background-color: rgb(10, 109, 230);
}
.tab-dropdown-menu.tab-panel-dropdown {
  width: 100%;
}
@media all and (max-width: 1024px) {
  .tab-dropdown-menu {
    position: absolute;
    display: block;
    -webkit-transition: left 200ms ease;
    -o-transition: left 200ms ease;
    transition: left 200ms ease;
    overflow: hidden;
    height: auto;
    border: none !important;
    left: 105%;
    top: 89px;
    width: 100%;
    overflow-y: hidden;
    background-color: rgb(255, 255, 255);
  }
  .theme-light .tab-dropdown-menu {
    background-color: rgb(255, 255, 255);
  }
  .theme-light-alt .tab-dropdown-menu {
    background-color: rgb(248, 248, 248);
  }
  .theme-dark .tab-dropdown-menu {
    background-color: rgb(48, 69, 82);
  }
  .theme-dark-alt .tab-dropdown-menu {
    background-color: rgb(31, 50, 63);
  }
  .theme-blue .tab-dropdown-menu {
    background-color: rgb(10, 109, 230);
  }
}

.nav-title {
  display: none;
}
@media all and (max-width: 1024px) {
  .nav-title {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
    width: 100%;
    border-bottom: 1px solid rgb(208, 214, 218);
  }
}

.navbar-dropdown {
  padding-left: 0;
}

.nav-item-container {
  padding: 30px 10px;
  background-color: rgb(255, 255, 255);
}
@media all and (min-width: 1025px) {
  .nav-item-container {
    height: 100% !important;
  }
}
.theme-light .nav-item-container {
  background-color: rgb(255, 255, 255);
}
.theme-light-alt .nav-item-container {
  background-color: rgb(248, 248, 248);
}
.theme-dark .nav-item-container {
  background-color: rgb(48, 69, 82);
}
.theme-dark-alt .nav-item-container {
  background-color: rgb(31, 50, 63);
}
.theme-blue .nav-item-container {
  background-color: rgb(10, 109, 230);
}
@media all and (max-width: 1024px) {
  .nav-item-container {
    height: 100%;
    width: 100%;
    border-top: none;
    overflow-y: auto;
    height: 80%;
    -ms-scroll-chaining: none;
        overscroll-behavior: contain;
  }
}

.nav-item {
  overflow-y: auto;
  position: relative;
}
@media all and (min-width: 1025px) {
  .nav-item {
    max-height: 70vh;
  }
}
.nav-item::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.nav-item::-webkit-scrollbar-thumb {
  background: rgb(208, 214, 218);
  border-radius: 10px;
}
.nav-item::-webkit-scrollbar-track {
  background: rgb(239, 240, 245);
  border-radius: 10px;
}
@-moz-document url-prefix() {
  .nav-item {
    scrollbar-color: rgb(208, 214, 218) rgb(239, 240, 245);
    scrollbar-width: thin;
  }
}
.nav-item .scroll-x {
  display: none !important;
}
.nav-item .scroll-y {
  right: 0 !important;
  width: 10px !important;
}
.nav-item .scroll-element_track {
  opacity: 1 !important;
  background-color: rgb(239, 240, 245) !important;
}
.nav-item .scroll-bar {
  opacity: 1 !important;
  background-color: rgb(208, 214, 218) !important;
}
@media all and (max-width: 1024px) {
  .nav-item {
    overflow-y: auto;
  }
}
@media all and (min-width: 1025px) {
  .nav-item .scroll-content {
    height: auto !important;
    max-height: 70vh !important;
  }
}

.nav-dropdown-item {
  cursor: pointer;
  width: 100%;
  font-weight: 500;
  color: rgb(31, 50, 63);
  font-size: 1.8rem;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  -webkit-transition: all 100ms ease;
  -o-transition: all 100ms ease;
  transition: all 100ms ease;
}
.theme-light .nav-dropdown-item {
  color: rgb(31, 50, 63);
}
.theme-light-alt .nav-dropdown-item {
  color: rgb(31, 50, 63);
}
.theme-dark .nav-dropdown-item {
  color: rgb(255, 255, 255);
}
.theme-dark-alt .nav-dropdown-item {
  color: rgb(255, 255, 255);
}
.theme-blue .nav-dropdown-item {
  color: rgb(255, 255, 255);
}
.nav-dropdown-item a {
  padding: 20px 30px;
  display: block;
}
.nav-dropdown-item:hover {
  color: rgb(10, 109, 230);
  background-color: rgba(10, 109, 230, 0.1);
  border-radius: 3px;
}
.theme-light .nav-dropdown-item:hover {
  color: rgb(10, 109, 230);
  background: rgba(10, 109, 230, 0.1);
}
.theme-light-alt .nav-dropdown-item:hover {
  color: rgb(10, 109, 230);
  background: rgba(10, 109, 230, 0.1);
}
.theme-dark .nav-dropdown-item:hover {
  color: rgb(255, 255, 255);
  background: rgba(255, 255, 255, 0.1);
}
.theme-dark-alt .nav-dropdown-item:hover {
  color: rgb(255, 255, 255);
  background: rgba(255, 255, 255, 0.1);
}
.nav-dropdown-item:active {
  background: rgba(255, 255, 255, 0.1);
}
@media all and (max-width: 1024px) {
  .nav-dropdown-item {
    white-space: normal;
  }
  .nav-dropdown-item > .dropdown-item-link {
    color: rgb(10, 109, 230);
  }
  .theme-light .nav-dropdown-item > .dropdown-item-link {
    color: rgb(10, 109, 230);
  }
  .theme-light-alt .nav-dropdown-item > .dropdown-item-link {
    color: rgb(10, 109, 230);
  }
  .theme-dark .nav-dropdown-item > .dropdown-item-link {
    color: rgb(255, 255, 255);
  }
  .theme-dark-alt .nav-dropdown-item > .dropdown-item-link {
    color: rgb(255, 255, 255);
  }
  .theme-blue .nav-dropdown-item > .dropdown-item-link {
    color: rgb(255, 255, 255);
  }
}
.nav-dropdown-item:hover .dropdown-item-link {
  color: rgb(10, 109, 230);
}
.theme-light .nav-dropdown-item:hover .dropdown-item-link {
  color: rgb(10, 109, 230);
}
.theme-light-alt .nav-dropdown-item:hover .dropdown-item-link {
  color: rgb(10, 109, 230);
}
.theme-dark .nav-dropdown-item:hover .dropdown-item-link {
  color: rgb(255, 255, 255);
}
.theme-dark-alt .nav-dropdown-item:hover .dropdown-item-link {
  color: rgb(255, 255, 255);
}
.dropdown-item-link {
  color: rgb(31, 50, 63);
}
.theme-light .dropdown-item-link {
  color: rgb(31, 50, 63);
}
.theme-light-alt .dropdown-item-link {
  color: rgb(31, 50, 63);
}
.theme-dark .dropdown-item-link {
  color: rgb(255, 255, 255);
}
.theme-dark-alt .dropdown-item-link {
  color: rgb(255, 255, 255);
}
.theme-blue .dropdown-item-link {
  color: rgb(255, 255, 255);
}

.submenu-item {
  padding: 0;
}

.submenu-list-item a {
  padding-left: 5rem;
}

.bg-transparent {
  background-color: transparent;
}

.slide-to-right {
  display: block !important;
}

.order-first {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
          order: -1;
}

@media all and (max-width: 1024px) {
  .dropdown-menu-active {
    position: absolute;
    display: block;
    -webkit-transition: left 200ms ease;
    -o-transition: left 200ms ease;
    transition: left 200ms ease;
    overflow-y: hidden;
    height: auto;
    border: none !important;
    left: 0;
    top: 89px;
  }
}

.accordion {
  overflow-x: hidden;
  overflow-y: auto;
  height: 330px;
  background-color: rgb(255, 255, 255);
}
.theme-light .accordion {
  background-color: rgb(255, 255, 255);
}
.theme-light-alt .accordion {
  background-color: rgb(248, 248, 248);
}
.theme-dark .accordion {
  background-color: rgb(48, 69, 82);
}
.theme-dark-alt .accordion {
  background-color: rgb(31, 50, 63);
}
.theme-blue .accordion {
  background-color: rgb(10, 109, 230);
}

.tab-panel-collapsed {
  display: none;
}
@media all and (max-width: 1024px) {
  .tab-panel-collapsed {
    display: block;
  }
}
.tab-panel-collapsed:first-child .tab-panel-collapsed__list-item {
  border-top: none;
}
.tab-panel-collapsed:last-child {
  margin-bottom: 50px;
}
.tab-panel-collapsed__list-item {
  width: 100%;
  border-top: 1px solid rgb(208, 214, 218);
}
.tab-panel-collapsed__card {
  width: 100%;
  height: 100%;
  border: none;
  background-color: rgb(255, 255, 255);
  padding: 3rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}
.theme-light .tab-panel-collapsed__card {
  background-color: rgb(255, 255, 255);
}
.theme-light-alt .tab-panel-collapsed__card {
  background-color: rgb(248, 248, 248);
}
.theme-dark .tab-panel-collapsed__card {
  background-color: rgb(48, 69, 82);
}
.theme-dark-alt .tab-panel-collapsed__card {
  background-color: rgb(31, 50, 63);
}
.theme-blue .tab-panel-collapsed__card {
  background-color: rgb(10, 109, 230);
}
.tab-panel-collapsed__card.active-collapsed-menu {
  border-radius: 0;
}
.theme-light .tab-panel-collapsed__card.active-collapsed-menu {
  color: rgb(10, 109, 230);
  background-color: rgba(10, 109, 230, 0.1);
}
.theme-light-alt .tab-panel-collapsed__card.active-collapsed-menu {
  color: rgb(10, 109, 230);
  background-color: rgba(10, 109, 230, 0.1);
}
.theme-dark .tab-panel-collapsed__card.active-collapsed-menu {
  color: rgb(255, 255, 255);
  background-color: rgba(255, 255, 255, 0.1);
}
.theme-dark-alt .tab-panel-collapsed__card.active-collapsed-menu {
  color: rgb(255, 255, 255);
  background-color: rgba(255, 255, 255, 0.1);
}
.theme-blue .tab-panel-collapsed__card.active-collapsed-menu {
  color: rgb(255, 255, 255);
}
.tab-panel-collapsed__card.active-collapsed-menu .tab-panel-collapsed__link {
  color: rgb(10, 109, 230);
}
.theme-light .tab-panel-collapsed__card.active-collapsed-menu .tab-panel-collapsed__link {
  color: rgb(10, 109, 230);
}
.theme-light-alt .tab-panel-collapsed__card.active-collapsed-menu .tab-panel-collapsed__link {
  color: rgb(10, 109, 230);
}
.theme-dark .tab-panel-collapsed__card.active-collapsed-menu .tab-panel-collapsed__link {
  color: rgb(255, 255, 255);
}
.theme-dark-alt .tab-panel-collapsed__card.active-collapsed-menu .tab-panel-collapsed__link {
  color: rgb(255, 255, 255);
}
.theme-blue .tab-panel-collapsed__card.active-collapsed-menu .tab-panel-collapsed__link {
  color: rgb(255, 255, 255);
}
.tab-panel-collapsed__link {
  text-align: left;
  font-size: 1.8rem;
  font-weight: 500;
  color: rgb(31, 50, 63);
}
.theme-light .tab-panel-collapsed__link {
  color: rgb(31, 50, 63);
}
.theme-light-alt .tab-panel-collapsed__link {
  color: rgb(31, 50, 63);
}
.theme-dark .tab-panel-collapsed__link {
  color: rgb(255, 255, 255);
}
.theme-dark-alt .tab-panel-collapsed__link {
  color: rgb(255, 255, 255);
}
.theme-blue .tab-panel-collapsed__link {
  color: rgb(255, 255, 255);
}
.tab-panel-collapsed__down-arrow {
  padding: 35px;
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
  margin: -35px -35px;
  font-weight: 700;
  color: rgb(31, 50, 63);
  -webkit-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
.theme-light .tab-panel-collapsed__down-arrow {
  color: rgb(31, 50, 63);
}
.theme-light-alt .tab-panel-collapsed__down-arrow {
  color: rgb(31, 50, 63);
}
.theme-dark .tab-panel-collapsed__down-arrow {
  color: rgb(255, 255, 255);
}
.theme-dark-alt .tab-panel-collapsed__down-arrow {
  color: rgb(255, 255, 255);
}
.theme-blue .tab-panel-collapsed__down-arrow {
  color: rgb(255, 255, 255);
}
.tab-panel-collapsed__down-arrow.collapsed {
  -webkit-transform: rotate(0deg);
       -o-transform: rotate(0deg);
          transform: rotate(0deg);
}
.tab-panel-collapsed__submenu-item {
  padding: 10px;
}
.tab-panel-collapsed__submenu-item--panel {
  width: 100%;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  padding: 2rem 3rem;
  -webkit-transition: all 100ms ease;
  -o-transition: all 100ms ease;
  transition: all 100ms ease;
}
.tab-panel-collapsed__submenu-item--panel:hover {
  background: rgba(10, 109, 230, 0.1);
  border-radius: 3px;
}
.theme-light .tab-panel-collapsed__submenu-item--panel:hover {
  background: rgba(10, 109, 230, 0.1);
}
.theme-light-alt .tab-panel-collapsed__submenu-item--panel:hover {
  background: rgba(10, 109, 230, 0.1);
}
.theme-dark .tab-panel-collapsed__submenu-item--panel:hover {
  background: rgba(255, 255, 255, 0.1);
}
.theme-dark-alt .tab-panel-collapsed__submenu-item--panel:hover {
  background: rgba(255, 255, 255, 0.1);
}
.tab-panel-collapsed__submenu-item--panel:active {
  background: rgba(255, 255, 255, 0.1);
}
.tab-panel-collapsed__submenu-link {
  margin-top: 40px;
  font-size: 1.8rem;
  font-weight: 500;
  color: rgb(10, 109, 230);
  line-height: 2.7rem;
}
.theme-light .tab-panel-collapsed__submenu-link {
  color: rgb(10, 109, 230);
}
.theme-light-alt .tab-panel-collapsed__submenu-link {
  color: rgb(10, 109, 230);
}
.theme-dark .tab-panel-collapsed__submenu-link {
  color: rgb(255, 255, 255);
}
.theme-dark-alt .tab-panel-collapsed__submenu-link {
  color: rgb(255, 255, 255);
}
.theme-blue .tab-panel-collapsed__submenu-link {
  color: rgb(255, 255, 255);
}
.tab-panel-collapsed__submenu-text {
  margin-top: 20px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.5rem;
  color: rgb(31, 50, 63);
}
.theme-light .tab-panel-collapsed__submenu-text {
  color: rgb(31, 50, 63);
}
.theme-light-alt .tab-panel-collapsed__submenu-text {
  color: rgb(31, 50, 63);
}
.theme-dark .tab-panel-collapsed__submenu-text {
  color: rgb(255, 255, 255);
}
.theme-dark-alt .tab-panel-collapsed__submenu-text {
  color: rgb(255, 255, 255);
}
.theme-blue .tab-panel-collapsed__submenu-text {
  color: rgb(255, 255, 255);
}

.tab-panel {
  max-width: 1440px;
  height: inherit;
  overflow: auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}
@media all and (max-width: 1024px) {
  .tab-panel {
    display: none;
    border-top: none;
  }
}
.tab-panel__container {
  width: 100%;
  max-width: 1400px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  background-color: rgb(255, 255, 255);
  padding: 0 30px;
}
.theme-light .tab-panel__container {
  background-color: rgb(255, 255, 255);
}
.theme-light-alt .tab-panel__container {
  background-color: rgb(248, 248, 248);
}
.theme-dark .tab-panel__container {
  background-color: rgb(48, 69, 82);
}
.theme-dark-alt .tab-panel__container {
  background-color: rgb(31, 50, 63);
}
.theme-blue .tab-panel__container {
  background-color: rgb(10, 109, 230);
}
.tab-panel__left {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 25%;
          flex: 0 0 25%;
  border-right: 1px rgb(208, 214, 218) solid;
}
.theme-light .tab-panel__left {
  border-right: 1px solid rgb(208, 214, 218);
}
.theme-light-alt .tab-panel__left {
  border-right: 1px solid rgb(208, 214, 218);
}
.theme-dark .tab-panel__left {
  border-right: 1px solid rgb(208, 214, 218);
}
.theme-dark-alt .tab-panel__left {
  border-right: 1px solid rgb(208, 214, 218);
}
.tab-panel__right {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  width: 100vw;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 70%;
          flex: 1 0 70%;
}
.tab-panel__list-item {
  width: 100%;
  padding: 0;
  font-size: 1.8rem;
  font-weight: 500;
  color: rgb(31, 50, 63);
  text-align: left;
  white-space: normal;
  overflow-wrap: break-word;
}
.theme-light .tab-panel__list-item {
  border-right: rgb(31, 50, 63);
}
.theme-light-alt .tab-panel__list-item {
  border-right: rgb(31, 50, 63);
}
.theme-dark .tab-panel__list-item {
  border-right: rgb(255, 255, 255);
}
.theme-dark-alt .tab-panel__list-item {
  border-right: rgb(255, 255, 255);
}
.tab-panel__submenu-item {
  padding: 30px 30px 30px 0;
  display: block;
}
.tab-panel__submenu-item--container {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  padding: 30px 0 30px 30px;
}
.tab-panel__submenu-item--panel {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 33%;
          flex: 1 0 33%;
  max-width: 34%;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  -webkit-transition: all 100ms ease;
  -o-transition: all 100ms ease;
  transition: all 100ms ease;
}
@media all and (max-width: 1024px) {
  .tab-panel__submenu-item--panel {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 100%;
            flex: 1 0 100%;
    max-width: 100%;
  }
}
.tab-panel__submenu-item--panel a {
  padding: 20px 30px;
  display: block;
  height: 100%;
}
.tab-panel__submenu-item--panel:hover {
  background-color: rgba(10, 109, 230, 0.1);
  border-radius: 3px;
}
.theme-light .tab-panel__submenu-item--panel:hover {
  background-color: rgba(10, 109, 230, 0.1);
}
.theme-light-alt .tab-panel__submenu-item--panel:hover {
  background-color: rgba(10, 109, 230, 0.1);
}
.theme-dark .tab-panel__submenu-item--panel:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.theme-dark-alt .tab-panel__submenu-item--panel:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.tab-panel__submenu-item--panel:hover .tab-panel__submenu-link {
  color: rgb(10, 109, 230);
}
.theme-light .tab-panel__submenu-item--panel:hover .tab-panel__submenu-link {
  color: rgb(10, 109, 230);
}
.theme-light-alt .tab-panel__submenu-item--panel:hover .tab-panel__submenu-link {
  color: rgb(10, 109, 230);
}
.theme-dark .tab-panel__submenu-item--panel:hover .tab-panel__submenu-link {
  color: rgb(255, 255, 255);
}
.theme-dark-alt .tab-panel__submenu-item--panel:hover .tab-panel__submenu-link {
  color: rgb(255, 255, 255);
}
.tab-panel__submenu-item--panel:hover .tab-panel__submenu-text {
  color: rgb(31, 50, 63);
}
.theme-light .tab-panel__submenu-item--panel:hover .tab-panel__submenu-text {
  color: rgb(31, 50, 63);
}
.theme-light-alt .tab-panel__submenu-item--panel:hover .tab-panel__submenu-text {
  color: rgb(31, 50, 63);
}
.theme-dark .tab-panel__submenu-item--panel:hover .tab-panel__submenu-text {
  color: rgb(255, 255, 255);
}
.theme-dark-alt .tab-panel__submenu-item--panel:hover .tab-panel__submenu-text {
  color: rgb(255, 255, 255);
}
.tab-panel__submenu-item--panel:active {
  background: rgba(255, 255, 255, 0.1);
}
.tab-panel__submenu-link {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.7rem;
  color: rgb(31, 50, 63);
}
.theme-light .tab-panel__submenu-link {
  color: rgb(31, 50, 63);
}
.theme-light-alt .tab-panel__submenu-link {
  color: rgb(31, 50, 63);
}
.theme-dark .tab-panel__submenu-link {
  color: rgb(255, 255, 255);
}
.theme-dark-alt .tab-panel__submenu-link {
  color: rgb(255, 255, 255);
}
.theme-blue .tab-panel__submenu-link {
  color: rgb(255, 255, 255);
}

.active {
  color: rgb(10, 109, 230);
  background-color: rgba(10, 109, 230, 0.1);
  border: none;
}
.theme-light .active {
  color: rgb(10, 109, 230);
  background-color: rgba(10, 109, 230, 0.1);
}
.theme-light-alt .active {
  color: rgb(10, 109, 230);
  background-color: rgba(10, 109, 230, 0.1);
}
.theme-dark .active {
  color: rgb(255, 255, 255);
  background-color: rgba(255, 255, 255, 0.1);
}
.theme-dark-alt .active {
  color: rgb(255, 255, 255);
  background-color: rgba(255, 255, 255, 0.1);
}
.theme-blue .active {
  color: rgb(255, 255, 255);
}

.nav-link {
  color: rgb(31, 50, 63);
  padding: 20px 30px;
}
.theme-light .nav-link {
  color: rgb(31, 50, 63);
}
.theme-light-alt .nav-link {
  color: rgb(31, 50, 63);
}
.theme-dark .nav-link {
  color: rgb(255, 255, 255);
}
.theme-dark-alt .nav-link {
  color: rgb(255, 255, 255);
}
.theme-blue .nav-link {
  color: rgb(255, 255, 255);
}

.nav-link:hover {
  color: rgb(10, 109, 230);
  background-color: rgba(10, 109, 230, 0.1);
  border-radius: 3px;
  border: none;
}
.theme-light .nav-link:hover {
  color: rgb(10, 109, 230);
  background-color: rgba(10, 109, 230, 0.1);
}
.theme-light-alt .nav-link:hover {
  color: rgb(10, 109, 230);
  background-color: rgba(10, 109, 230, 0.1);
}
.theme-dark .nav-link:hover {
  color: rgb(255, 255, 255);
  background-color: rgba(255, 255, 255, 0.1);
}
.theme-dark-alt .nav-link:hover {
  color: rgb(255, 255, 255);
  background-color: rgba(255, 255, 255, 0.1);
}
.nav-tabs .nav-link.active {
  color: rgb(10, 109, 230);
  background-color: rgba(10, 109, 230, 0.1);
  border-radius: 3px;
  padding: 20px 30px;
  border: none;
}
.theme-light .nav-tabs .nav-link.active {
  color: rgb(10, 109, 230);
  background-color: rgba(10, 109, 230, 0.1);
}
.theme-light-alt .nav-tabs .nav-link.active {
  color: rgb(10, 109, 230);
  background-color: rgba(10, 109, 230, 0.1);
}
.theme-dark .nav-tabs .nav-link.active {
  color: rgb(255, 255, 255);
  background-color: rgba(255, 255, 255, 0.1);
}
.theme-dark-alt .nav-tabs .nav-link.active {
  color: rgb(255, 255, 255);
  background-color: rgba(255, 255, 255, 0.1);
}
.nav-tabs .nav-link {
  border: none;
  margin: 0;
}

.nav-tabs .dropdown-menu {
  margin: 0;
  padding: 0;
  border: none;
}

.display-mobile {
  display: none;
}
@media all and (max-width: 1024px) {
  .display-mobile {
    display: block;
  }
}

.search-list {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 100%;
          flex: 1 0 100%;
  position: absolute;
  left: 0;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: -17px;
  background-color: rgb(255, 255, 255);
}
.theme-light .search-list {
  color: rgb(31, 50, 63);
  background-color: rgb(255, 255, 255);
}
.theme-light-alt .search-list {
  color: rgb(31, 50, 63);
  background-color: rgb(248, 248, 248);
}
.theme-dark .search-list {
  color: rgb(255, 255, 255);
  background-color: rgb(48, 69, 82);
}
.theme-dark-alt .search-list {
  color: rgb(255, 255, 255);
  background-color: rgb(31, 50, 63);
}
.theme-blue .search-list {
  color: rgb(255, 255, 255);
  background-color: rgb(10, 109, 230);
}
@media all and (max-width: 1024px) {
  .search-list {
    position: fixed;
    top: 202px;
    left: 0;
  }
}
.search-list__container {
  width: 100%;
  max-width: 1728px;
  max-height: 70vh;
  overflow-y: auto;
  padding: 0 135px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0;
}
@media all and (max-width: 1280px) {
  .search-list__container {
    padding: 0 30px;
  }
}
@media all and (max-width: 1024px) {
  .search-list__container {
    padding: 0;
  }
}
.search-list__container::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.search-list__container::-webkit-scrollbar-thumb {
  background: rgb(208, 214, 218);
  border-radius: 10px;
}
.search-list__container::-webkit-scrollbar-track {
  background: rgb(239, 240, 245);
  border-radius: 10px;
}
@-moz-document url-prefix() {
  .search-list__container {
    scrollbar-color: rgb(208, 214, 218) rgb(239, 240, 245);
    scrollbar-width: thin;
  }
}
.search-list__container .scroll-x {
  display: none !important;
}
.search-list__container .scroll-y {
  right: 0 !important;
  width: 10px !important;
}
.search-list__container .scroll-element_track {
  opacity: 1 !important;
  background-color: rgb(239, 240, 245) !important;
}
.search-list__container .scroll-bar {
  opacity: 1 !important;
  background-color: rgb(208, 214, 218) !important;
}
.search-list__group {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 100%;
          flex: 1 0 100%;
  padding: 17px 30px;
  position: relative;
}
.search-list__group::before {
  content: "";
  width: 95%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: rgb(208, 214, 218);
  position: absolute;
}
.theme-light .search-list__group::before {
  background-color: rgb(208, 214, 218);
}
.theme-light-alt .search-list__group::before {
  background-color: rgb(208, 214, 218);
}
.theme-dark .search-list__group::before {
  background-color: rgb(208, 214, 218);
}
.theme-dark-alt .search-list__group::before {
  background-color: rgb(208, 214, 218);
}
.search-list__group:last-child {
  padding: 35px 30px;
}
.search-list__group:last-child::before {
  content: none;
}
.search-list__title {
  font-size: 1.2rem;
  line-height: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px;
  margin-bottom: 10px;
}
.search-list__link {
  padding: 10px;
  text-decoration: underline;
  font-size: 18px;
  font-weight: 500;
  color: rgb(10, 109, 230);
}
.theme-light .search-list__link {
  color: rgb(10, 109, 230);
  background-color: rgb(255, 255, 255);
}
.theme-light-alt .search-list__link {
  color: rgb(10, 109, 230);
  background-color: rgb(248, 248, 248);
}
.theme-dark .search-list__link {
  color: rgb(255, 255, 255);
  background-color: rgb(48, 69, 82);
}
.theme-dark-alt .search-list__link {
  color: rgb(255, 255, 255);
  background-color: rgb(31, 50, 63);
}
.theme-blue .search-list__link {
  color: rgb(255, 255, 255);
  background-color: rgb(10, 109, 230);
}

.theme-light .autocomplete-suggestions-container .autocomplete-suggestions {
  background-color: rgb(255, 255, 255);
}
.theme-light-alt .autocomplete-suggestions-container .autocomplete-suggestions {
  background-color: rgb(248, 248, 248);
}
.theme-dark .autocomplete-suggestions-container .autocomplete-suggestions {
  background-color: rgb(48, 69, 82);
}
.theme-dark-alt .autocomplete-suggestions-container .autocomplete-suggestions {
  background-color: rgb(31, 50, 63);
}
.theme-blue .autocomplete-suggestions-container .autocomplete-suggestions {
  background-color: rgb(10, 109, 230);
}
.autocomplete-suggestions-container .list-group-item {
  background-color: rgb(255, 255, 255);
  cursor: pointer;
  -webkit-transition: all 100ms ease;
  -o-transition: all 100ms ease;
  transition: all 100ms ease;
}
.theme-light .autocomplete-suggestions-container .list-group-item {
  background-color: rgb(255, 255, 255);
  color: rgb(10, 109, 230);
}
.theme-light-alt .autocomplete-suggestions-container .list-group-item {
  background-color: rgb(248, 248, 248);
  color: rgb(10, 109, 230);
}
.theme-dark .autocomplete-suggestions-container .list-group-item {
  background-color: rgb(48, 69, 82);
  color: rgb(255, 255, 255);
}
.theme-dark-alt .autocomplete-suggestions-container .list-group-item {
  background-color: rgb(31, 50, 63);
  color: rgb(255, 255, 255);
}
.theme-blue .autocomplete-suggestions-container .list-group-item {
  background-color: rgb(10, 109, 230);
  color: rgb(255, 255, 255);
}
.autocomplete-suggestions-container .list-group-item:active {
  background: rgba(255, 255, 255, 0.1);
}
.autocomplete-suggestions-container .list-group-item:hover {
  color: rgb(31, 50, 63);
}
.theme-light .autocomplete-suggestions-container .list-group-item:hover {
  background: rgb(240, 242, 242);
  color: rgb(31, 50, 63);
}
.theme-light-alt .autocomplete-suggestions-container .list-group-item:hover {
  background: rgb(240, 242, 242);
  color: rgb(31, 50, 63);
}
.theme-dark .autocomplete-suggestions-container .list-group-item:hover {
  background: rgba(255, 255, 255, 0.2);
  color: rgb(248, 248, 248);
}
.theme-dark-alt .autocomplete-suggestions-container .list-group-item:hover {
  background: rgba(255, 255, 255, 0.2);
  color: rgb(248, 248, 248);
}
.autocomplete-suggestions-container .list-group-item:hover * {
  color: rgb(31, 50, 63);
}
.theme-light .autocomplete-suggestions-container .list-group-item:hover * {
  color: rgb(31, 50, 63) !important;
}
.theme-light-alt .autocomplete-suggestions-container .list-group-item:hover * {
  color: rgb(31, 50, 63) !important;
}
.theme-dark .autocomplete-suggestions-container .list-group-item:hover * {
  color: rgb(248, 248, 248) !important;
}
.theme-dark-alt .autocomplete-suggestions-container .list-group-item:hover * {
  color: rgb(248, 248, 248) !important;
}
.theme-blue .autocomplete-suggestions-container .list-group-item:hover * {
  color: !important;
}
.autocomplete-suggestions-container .list-group-item a {
  color: rgb(31, 50, 63);
}
.theme-light .autocomplete-suggestions-container .list-group-item a {
  color: rgb(31, 50, 63);
}
.theme-light-alt .autocomplete-suggestions-container .list-group-item a {
  color: rgb(31, 50, 63);
}
.theme-dark .autocomplete-suggestions-container .list-group-item a {
  color: rgb(248, 248, 248);
}
.theme-dark-alt .autocomplete-suggestions-container .list-group-item a {
  color: rgb(248, 248, 248);
}
.theme-light .autocomplete-suggestions-container .autocomplete-all a {
  background-color: rgb(255, 255, 255);
  color: rgb(10, 109, 230);
}
.theme-light-alt .autocomplete-suggestions-container .autocomplete-all a {
  background-color: rgb(248, 248, 248);
  color: rgb(10, 109, 230);
}
.theme-dark .autocomplete-suggestions-container .autocomplete-all a {
  background-color: rgb(48, 69, 82);
  color: rgb(255, 255, 255);
}
.theme-dark-alt .autocomplete-suggestions-container .autocomplete-all a {
  background-color: rgb(31, 50, 63);
  color: rgb(255, 255, 255);
}
.theme-blue .autocomplete-suggestions-container .autocomplete-all a {
  background-color: rgb(10, 109, 230);
  color: rgb(255, 255, 255);
}
.autocomplete-suggestions-container .autocomplete-all a:hover {
  color: rgb(31, 50, 63);
}
.theme-light .autocomplete-suggestions-container .autocomplete-all a:hover {
  color: rgba(10, 109, 230, 0.7);
}
.theme-light-alt .autocomplete-suggestions-container .autocomplete-all a:hover {
  color: rgba(10, 109, 230, 0.7);
}
.theme-dark .autocomplete-suggestions-container .autocomplete-all a:hover {
  color: rgba(255, 255, 255, 0.7);
}
.theme-dark-alt .autocomplete-suggestions-container .autocomplete-all a:hover {
  color: rgba(255, 255, 255, 0.7);
}
.theme-blue .autocomplete-suggestions-container .autocomplete-all a:hover {
  color: rgba(255, 255, 255, 0.7);
}

@media all and (max-height: 1024px) {
  nav.block-system-menu-main .navbar .autocomplete-suggestions-container {
    border-top: none;
  }
}