.nav-wrapper {
  --tw-bg-opacity: 1;
  background-color: rgba(52, 63, 63, var(--tw-bg-opacity));
  width: 100%;
  position: relative;
  padding: 20px;
}
.nav-wrapper .navigation-inner {
  display: flex;
  width: 100%;
  align-items: center;
}
.nav-wrapper .navigation-inner .navigation-logo {
  width: 80%;
  height: 75px;
  background-image: url("/images/svgs/hubtools header-logo.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
}
.nav-wrapper .navigation-inner .navigation-hamburger {
  width: 20%;
  height: 50px;
  float: right;
}
.nav-wrapper .navigation-inner .navigation-hamburger .open-nav {
  width: 45px;
  height: 45px;
  float: right;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
  z-index: 6666;
  position: relative;
}
.nav-wrapper .navigation-inner .navigation-hamburger .open-nav svg {
  fill: white;
}

/**
  Nav SVG
**/
.qht-hb-icon:hover {
  -webkit-animation: qht-svgIconRotate 0.5s forwards;
          animation: qht-svgIconRotate 0.5s forwards;
}
.qht-hb-icon:not(:hover) {
  -webkit-animation: qht-svgIconRotateReverse 0.5s forwards;
          animation: qht-svgIconRotateReverse 0.5s forwards;
}

.nav-flyout {
  --tw-bg-opacity: 1;
  background-color: rgba(241, 93, 42, var(--tw-bg-opacity));
  box-shadow: 5px 10px 10px 5px #000;
  height: 100vh;
  width: 32%;
  position: fixed;
  visibility: hidden;
  overflow: scroll;
  background-image: url("/images/svgs/flyout-watermark.svg");
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: 400px;
  z-index: 9999;
  right: 0;
  padding: 20px;
  /* Optional: show position indicator in red */
}
.nav-flyout::-webkit-scrollbar {
  width: 0;
  /* Remove scrollbar space */
  background: transparent;
  /* Optional: just make scrollbar invisible */
}
.nav-flyout::-webkit-scrollbar-thumb {
  background: #FF0000;
}
.nav-flyout .nav-close {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  align-content: center;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 20px;
}
.nav-flyout .nav-close .nc {
  width: 25px;
  height: 25px;
  z-index: 9999;
  top: 0px;
  right: 0px;
  background-image: url("/images/svgs/close-menu-icon-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}
.nav-flyout .inner-top-nav {
  width: 100%;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 32px;
  padding-right: 32px;
}
.nav-flyout .inner-top-nav .top-nav-user-info-main a {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
  font-size: 26px !important;
  font-weight: 800 !important;
  padding-left: 0px !important;
}
.nav-flyout .inner-top-nav .top-nav-user-info-sub {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
  font-size: 16px !important;
  padding-left: 0px !important;
}
.nav-flyout .inner-top-nav .top-nav-user-info-sub a {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
  font-size: 16px !important;
  padding-left: 0px !important;
  padding-right: 3px !important;
}
.nav-flyout .inner-top-nav .icons {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
  padding-top: 20px;
}
.nav-flyout .inner-top-nav .icons .icon {
  width: 20px;
  height: 20px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  margin-right: 26px;
  font-size: 18px !important;
}
.nav-flyout .inner-top-nav .icons .icon.logout {
  background-image: url("/images/svgs/logout-icon-white.svg");
  margin-right: 14px !important;
}
.nav-flyout .inner-top-nav .icons .icon.help {
  background-image: url("/images/svgs/help-icon-white.svg");
  margin-right: 14px !important;
}
.nav-flyout .inner-top-nav .icons .icon:last-child {
  margin-right: 0;
}
.nav-flyout .inner-top-nav .flyout-links {
  font-size: 16px !important;
}
.nav-flyout .inner-top-nav .divider {
  border-bottom: 1px solid white;
  margin-bottom: 16px;
  padding-top: 16px;
  margin-top: 16px;
}
.nav-flyout .main-nav {
  width: 100%;
  padding-bottom: 20px;
  padding-left: 32px;
  padding-right: 32px;
}
@media screen and (max-width: 900px) {
  .nav-flyout {
    width: 75%;
  }
}
@media screen and (max-width: 767px) {
  .nav-flyout {
    width: 100%;
  }
}

/**
  Main nav items
**/
.main-nav-items li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 0px;
}
.main-nav-items li:hover:before {
  -webkit-animation: qht-bumpInOut 0.75s forwards;
          animation: qht-bumpInOut 0.75s forwards;
}
.main-nav-items li a {
  color: white;
  font-size: 17px !important;
  font-weight: 600;
  transition: 0.4s;
}
.main-nav-items li a:hover {
  font-weight: 600;
}
.main-nav-items li:before {
  content: "";
  background-image: url("/images/svgs/link-arrow-white.svg");
  background-size: 20px;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  background-repeat: no-repeat;
  top: 5px;
}

/**
  Fixed nav class
**/
.nav-fixed {
  position: fixed;
  top: 0;
  z-index: 1;
}

/**
  Top nav
**/
.top-nav {
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgba(29, 36, 38, var(--tw-bg-opacity));
  color: white;
  padding: 4px;
  position: relative;
}
.top-nav .top-nav-inner {
  display: flex;
  justify-content: flex-end;
  align-content: center;
}
.top-nav .top-nav-inner .account-name {
  color: white !important;
}
.top-nav .top-nav-inner .top-nav-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
}
.top-nav .top-nav-inner .top-nav-icon.logout {
  background-image: url("/images/svgs/logout-icon-white.svg");
}
.top-nav .top-nav-inner .top-nav-icon.help {
  background-image: url("/images/svgs/help-icon-orange.svg");
}
.top-nav .top-nav-inner .top-nav-icon:last-child {
  margin-right: 0;
}
.top-nav .top-nav-inner div:first-child {
  margin-right: 12px;
}

/**
  New Hamburger
**/
.hamburger {
  display: flex;
  align-self: center;
  flex-direction: column;
  justify-content: space-between;
  width: 45px;
  height: 28px;
  cursor: pointer;
  position: relative;
  float: right;
  margin-top: 10px;
}

.hamburger div {
  align-self: flex-end;
  height: 3px;
  width: 100%;
  background: #fff;
}

.hamburger .meat {
  width: 75%;
  transition: all 200ms ease-in-out;
}

.hamburger .bottom-bun {
  width: 50%;
  transition: all 400ms ease-in-out;
}

.hamburger:hover div {
  width: 100%;
}

.hamburger:hover .top-bun {
  -webkit-animation: burger-hover 1s infinite ease-in-out alternate;
          animation: burger-hover 1s infinite ease-in-out alternate;
}

.hamburger:hover .meat {
  -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 200ms;
          animation: burger-hover 1s infinite ease-in-out alternate forwards 200ms;
}

.hamburger:hover .bottom-bun {
  -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 400ms;
          animation: burger-hover 1s infinite ease-in-out alternate forwards 400ms;
}
