.ThemeGlobal {
    .ImcNavigation {
      --navigation-padding: 0;
      --navigation-background: #000;
      --navigation-burger-margin: 0;
      --navigation-burger-padding: 0 20px 10px;
      --navigation-logo-width: 300px;
      --navigation-logo-padding: 24px 40px 0px 0px;
      --navigation-logo-mobile-padding: 20px 0;
      --navigation-item-text-color: #fff;
      --navigation-item-font-weight: 700;
      --navigation-item-hover-text-color: #fff;
      --navigation-item-active-text-color: #fff;
      --navigation-dropdown-background: #000;
      --navigation-dropdown-item-font-weight: 400;
      --navigation-dropdown-item-hover-text-color: #30EA03;
      --navigation-dropdown-item-active-text-color: #30EA03;
      --navigation-search-result-hover-background: #222;
      --navigation-search-result-match-text-color: #30EA03;
      --navigation-search-result-breadcrumb-text-color: #ccc;
      --navigation-dropdown-category-switch-active-border: 1px solid transparent;
      --navigation-mobile-profile-background: #222;
      --navigation-mobile-return-item-background: #222;

      .navLeftSection {
        .MenuItem:not(.more-button) {
          .NavItemContent {
            .ImcText {
              position: relative;
                  &:after {
                      content: "";
                      display: block;
                      height: 3px;
                      width: 0;
                      background: #30EA03;
                      position: absolute;
                      left: 0;
                      bottom: -3px;
                      transition: all ease-in-out .2s;
                  }
            }
            &.active {
              .ImcText {
                    &:after {
                        width: 100%;
                    }
              }
            }
          }
          &:hover {
            .NavItemContent {
              .ImcText {
                    &:after {
                        width: 100%;
                    }
              }
            }
          }
        }
      }
    }
    .ImcFooter {
      --footer-background: #000;
      --footer-item-text-color: #fff;
      --footer-item-hover-text-color: #30EA03;
    }
    .panelHeader {
      .panelTitle {
        display: inline-block;
        position: relative;
        padding-bottom: 10px;
        font-size: 32px;
        &::after {
            content: '';
            display: block;
            width: 100%;
            height: 5px;
            background: #30EA03;
            position: absolute;
            left: 0;
            bottom: 0;
          }
      }
    }
    .ImcTrainingCard {
      --training-card-shadow: none;
      --training-card-border: 0px solid #ffffff;
    }
  }
  