/*
 *  UniQ Mega Menu (Light Theme v1.2.1)
 *  Author: uniq.webdev@gmail.com
 */
.uq-theme-light {
  transition: all ease-in-out .3s;

  border: 1px solid rgba(0, 0, 0, .11);
  border-radius: 4px;
  background-clip: border-box;
  box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .04);

  -webkit-margin-after: 20px;
  margin-block-end: 20px;
}

.uq-theme-light:hover {
  border-color: rgba(0, 0, 0, .12);
  box-shadow: 0 .25rem .5rem rgba(0, 0, 0, .04);
}

.uq-theme-light > .uq-nav {
  border-radius: calc(4px - 1px);
  background-color: #fff;
}

.uq-theme-light .uq-header {
  font-size: 14px;
  line-height: 1.75;

  margin: 0;
  padding: 1em .5em;

  transition-timing-function: ease-in-out;
  transition-duration: .3s;
  transition-property: color, background-color, border-radius;

  color: rgba(0, 0, 0, .66);
  border-radius: calc(4px - 1px) calc(4px - 1px) 0 0;
  background-color: rgba(0, 0, 0, .03);
}

.uq-theme-light .uq-header:hover {
  color: rgba(0, 0, 0, .87);
}

.uq-theme-light .uq-header::before {
  font-family: 'uq-menu' !important;
  font-size: 1.125em;
  font-weight: normal;
  font-style: normal;
  font-variant: normal;

  display: block;

  width: 2.3333em;
  margin: 0;
  padding: 0;

  content: '\e911';
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center;
  text-transform: none;

  opacity: .5;

  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.uq-theme-light .uq-header + .uq-nav {
  border-radius: 0 0 calc(4px - 1px) calc(4px - 1px);

  -webkit-border-before: 1px solid rgba(0, 0, 0, .11);
  border-block-start: 1px solid rgba(0, 0, 0, .11);
}

.uq-theme-light .uq-title {
  font-size: inherit;
  font-weight: normal;
  line-height: 1.5;

  margin: 0;
  padding: 0 .5em;

  letter-spacing: .2px;

  color: inherit;

  flex: 1 1 auto;
}

.uq-theme-light.minimized > .uq-header {
  border-radius: calc(4px - 1px);
}

@media (max-width: 991.98px) {
  .uq-mega-wrapper .uq-menu {
    border: 0;
  }

  .uq-mega-wrapper .uq-menu > .uq-header {
    color: #fff;
    background-color: #00897b;
  }

  .uq-mega-wrapper .uq-menu.uq-menu-absolute > .uq-nav {
    z-index: 1100;
    right: 0;
    left: 0;

    -webkit-border-before: 0;
    border-block-start: 0;
  }

  .uq-theme-light:not(.expanded) > .uq-header {
    border-radius: calc(4px - 1px);
  }

  .uq-theme-light.uq-menu-absolute > .uq-nav {
    right: -1px;
    left: -1px;

    display: block !important;
    visibility: hidden;

    transition: all ease-in-out .3s;
    transform: translateY(7%);

    opacity: 0;
    border: 1px solid rgba(0, 0, 0, .11);
    border-radius: 0 0 4px 4px;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .04);
  }

  .uq-theme-light.uq-menu-absolute.expanded {
    border-radius: 4px 4px 0 0;
  }

  .uq-theme-light.uq-menu-absolute.expanded > .uq-header {
    border-radius: calc(4px - 1px) calc(4px - 1px) 0 0;
  }

  .uq-theme-light.uq-menu-absolute.expanded > .uq-nav {
    visibility: visible;

    transform: translate(0);

    opacity: 1;
  }
}

@media (min-width: 992px) {
  .uq-theme-light.uq-menu-absolute:not(.uq-mega-horizontal) {
    border-radius: 4px 4px 0 0;
  }

  .uq-theme-light.uq-menu-absolute:not(.uq-mega-horizontal) > .uq-nav {
    right: -1px;
    left: -1px;

    visibility: visible;

    transition: all ease-in-out .3s;
    transform: translate(0);

    opacity: 1;
    border: 1px solid rgba(0, 0, 0, .11);
    border-radius: 0 0 4px 4px;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .04);
  }

  .uq-theme-light.uq-menu-absolute:not(.uq-mega-horizontal).minimized {
    border-radius: 4px;
  }

  .uq-theme-light.uq-menu-absolute:not(.uq-mega-horizontal).minimized > .uq-nav {
    display: block;
    visibility: hidden;

    transform: translateY(7%);

    opacity: 0;
  }

  .uq-mega-wrapper {
    display: flex;

    flex-flow: row nowrap;
    -webkit-margin-after: 20px;
    margin-block-end: 20px;
  }

  .uq-mega-wrapper .uq-menu {
    -webkit-margin-after: 0;
    margin-block-end: 0;
  }

  .uq-mega-wrapper .uq-menu + .uq-menu {
    -webkit-margin-start: 20px;
    margin-inline-start: 20px;
  }

  .uq-mega-wrapper .uq-mega-horizontal {
    flex-grow: 1;
  }

  .uq-mega-wrapper .uq-mega-vertical {
    width: 262px;

    border: 0;
  }

  .uq-mega-wrapper .uq-mega-vertical .uq-header {
    color: #fff;
    background-color: #00897b;

    flex-grow: 1;
  }

  .uq-mega-wrapper .uq-mega-vertical > .uq-nav {
    z-index: 1100;
    right: 0;
    left: 0;

    -webkit-border-before: 0;
    border-block-start: 0;
  }
}

/*  Item  */
.uq-theme-light .uq-item {
  font-size: 14px;

  transition: background-color ease-in-out .3s;
}

.uq-theme-light .uq-item:hover .uq-btn-toggle {
  border-inline-start-color: rgba(0, 0, 0, .07);
}

.uq-theme-light .uq-item:hover .uq-link,
.uq-theme-light .uq-item.current .uq-link,
.uq-theme-light .uq-item.expanded .uq-link {
  color: rgba(0, 0, 0, .87);
}

.uq-theme-light .uq-item:hover .uq-icon,
.uq-theme-light .uq-item.current .uq-icon,
.uq-theme-light .uq-item.expanded .uq-icon {
  color: rgba(0, 0, 0, .5);
}

.uq-theme-light .uq-item:hover .uq-btn-toggle,
.uq-theme-light .uq-item.current .uq-btn-toggle,
.uq-theme-light .uq-item.expanded .uq-btn-toggle {
  color: rgba(0, 0, 0, .66);
}

.uq-theme-light .uq-item.current .uq-name {
  font-weight: bold;
}

.uq-theme-light .uq-item-info .uq-item:hover,
.uq-theme-light .uq-item-info .uq-item.current,
.uq-theme-light .uq-item-info .uq-item.expanded {
  background-color: transparent;
}

.uq-theme-light .uq-item-info > .uq-item .uq-count {
  display: none;
}

.uq-theme-light .uq-item-info .uq-btn-toggle:hover {
  background-color: transparent;
}

.uq-theme-light .uq-item-info .uq-btn-toggle-icon {
  border: 1px solid rgba(0, 0, 0, .07);
  border-radius: 50%;

  inline-size: 1.5rem;
  block-size: 1.5rem;
}

.uq-theme-light .uq-item-info .uq-btn-toggle-icon::before {
  font-size: 1rem;
}

/*  Link  */
.uq-theme-light .uq-link {
  font-size: inherit;

  margin: 0;
  padding: .375em .5em;

  transition: color ease-in-out .3s;
  text-decoration: none;

  color: rgba(0, 0, 0, .66);
}

/*  Icon  */
.uq-theme-light .uq-icon {
  font-size: 1.5em;
  font-weight: normal;

  width: 1.75em;
  max-height: 1.5em;

  transition: color ease-in-out .3s;

  color: rgba(0, 0, 0, .38);

  flex: 0 0 1.75em;
}

.uq-theme-light .uq-name {
  line-height: 1.5;

  margin: 0;
  padding: .375em .5em;
}

/*  Count  */
.uq-theme-light .uq-count {
  font-size: .75em;
  font-weight: 600;
  line-height: 1;

  min-width: 2em;
  margin: 0 .6667em;
  padding: .3125em .5em;

  transition: all ease-in-out .3s;

  color: rgba(0, 0, 0, .5);
  border: 1px solid rgba(0, 0, 0, .095);
  border-radius: .75em;
  background-color: rgba(0, 0, 0, .018);
}

.uq-theme-light.uq-count-column .uq-item .uq-count {
  -webkit-margin-start: auto;
  margin-inline-start: auto;
  -webkit-margin-end: 4em;
  margin-inline-end: 4em;
}

.uq-theme-light.uq-count-column .uq-item.uq-item-parent .uq-count {
  -webkit-margin-end: .6667em;
  margin-inline-end: .6667em;
}

.uq-theme-light .uq-label {
  font-size: .65em;
  font-weight: 600;
  line-height: 1.125;

  position: absolute;
  z-index: auto;
  right: 0;
  bottom: 87.5%;

  min-width: 2em;
  padding: .3125em .5em;

  transition: all ease-in-out .3s;
  letter-spacing: .1px;

  color: rgba(255, 255, 255, .95);
  border: 1px solid #575757;
  border-radius: .25em;
  background-color: #575757;
}

.uq-theme-light .uq-label::before {
  border-block-start-color: inherit;
}

/*  Toggle  */
.uq-theme-light .uq-btn-toggle {
  font-size: inherit;
  line-height: 1.5;

  width: 2.5em;

  transition: all ease-in-out .3s;

  color: rgba(0, 0, 0, .5);

  flex: 0 0 2.5em;
}

.uq-theme-light .uq-btn-toggle:hover {
  color: rgba(0, 0, 0, .66);
  background-color: rgba(0, 0, 0, .017);
}

.uq-theme-light .uq-btn-toggle > span {
  width: 1.5em;
  height: 1.5em;

  transition: all ease-in-out .3s;
}

/*  List  */
.uq-theme-light ul li + li {
  -webkit-border-before: 1px solid rgba(0, 0, 0, .07);
  border-block-start: 1px solid rgba(0, 0, 0, .07);
}

/*  Accordion Menu  */
@media (max-width: 991.98px) {
  .uq-theme-light .uq-sub-menu > .uq-accordion {
    -webkit-border-before: 1px solid rgba(0, 0, 0, .07);
    border-block-start: 1px solid rgba(0, 0, 0, .07);
  }

  .uq-theme-light .uq-sub-menu > .uq-accordion > ul {
    background-color: rgba(0, 0, 0, .017);
  }

  .uq-theme-light .uq-sub-menu > .uq-accordion > ul > li {
    border-color: rgba(0, 0, 0, .05);
  }

  .uq-theme-light .uq-sub-menu > .uq-accordion > ul > li > .uq-item {
    -webkit-padding-start: 1em;
    padding-inline-start: 1em;
  }

  .uq-theme-light .uq-sub-menu > .uq-accordion > ul > li > .uq-item .uq-name {
    position: relative;
  }

  .uq-theme-light .uq-sub-menu > .uq-accordion > ul > li > .uq-item .uq-name::before {
    font-size: 1em;
    font-weight: normal;

    position: absolute;
    top: 50%;
    left: -.825em;

    display: block;

    width: 1em;

    content: '\2022';
    text-align: center;

    opacity: .5;

    -webkit-margin-before: -.75em;
    margin-block-start: -.75em;
  }

  [dir='rtl'] .uq-theme-light .uq-sub-menu > .uq-accordion > ul > li > .uq-item .uq-name::before {
    right: -.825em;
    left: auto;
  }

  .uq-theme-light .uq-sub-menu > .uq-accordion > ul > li > .uq-item .uq-icon + .uq-name::before {
    display: none;

    content: '';
  }

  .uq-theme-light .uq-sub-menu > .uq-accordion > ul .uq-item:hover .uq-btn-toggle {
    border-inline-start-color: rgba(0, 0, 0, .05);
  }

  .uq-theme-light .uq-sub-menu > .uq-accordion .uq-accordion > ul > li > .uq-item {
    -webkit-padding-start: 2em;
    padding-inline-start: 2em;
  }

  .uq-theme-light .uq-sub-menu > .uq-accordion .uq-accordion .uq-accordion > ul > li > .uq-item {
    -webkit-padding-start: 3em;
    padding-inline-start: 3em;
  }
}

@media (min-width: 992px) {
  .uq-theme-light .uq-accordion > ul > li > .uq-sub-menu > .uq-accordion,
  .uq-theme-light [data-nav-mode='accordion'] > .uq-sub-menu > .uq-accordion,
  .uq-theme-light [data-nav-mode='collapsible'] > .uq-sub-menu > .uq-accordion {
    -webkit-border-before: 1px solid rgba(0, 0, 0, .07);
    border-block-start: 1px solid rgba(0, 0, 0, .07);
  }

  .uq-theme-light .uq-accordion > ul > li > .uq-sub-menu > .uq-accordion > ul,
  .uq-theme-light [data-nav-mode='accordion'] > .uq-sub-menu > .uq-accordion > ul,
  .uq-theme-light [data-nav-mode='collapsible'] > .uq-sub-menu > .uq-accordion > ul {
    background-color: rgba(0, 0, 0, .017);
  }

  .uq-theme-light .uq-accordion > ul > li > .uq-sub-menu > .uq-accordion > ul > li,
  .uq-theme-light [data-nav-mode='accordion'] > .uq-sub-menu > .uq-accordion > ul > li,
  .uq-theme-light [data-nav-mode='collapsible'] > .uq-sub-menu > .uq-accordion > ul > li {
    border-color: rgba(0, 0, 0, .05);
  }

  .uq-theme-light .uq-accordion > ul > li > .uq-sub-menu > .uq-accordion > ul > li > .uq-item,
  .uq-theme-light [data-nav-mode='accordion'] > .uq-sub-menu > .uq-accordion > ul > li > .uq-item,
  .uq-theme-light [data-nav-mode='collapsible'] > .uq-sub-menu > .uq-accordion > ul > li > .uq-item {
    -webkit-padding-start: 1em;
    padding-inline-start: 1em;
  }

  .uq-theme-light .uq-accordion > ul > li > .uq-sub-menu > .uq-accordion > ul > li > .uq-item .uq-name,
  .uq-theme-light [data-nav-mode='accordion'] > .uq-sub-menu > .uq-accordion > ul > li > .uq-item .uq-name,
  .uq-theme-light [data-nav-mode='collapsible'] > .uq-sub-menu > .uq-accordion > ul > li > .uq-item .uq-name {
    position: relative;
  }

  .uq-theme-light .uq-accordion > ul > li > .uq-sub-menu > .uq-accordion > ul > li > .uq-item .uq-name::before,
  .uq-theme-light [data-nav-mode='accordion'] > .uq-sub-menu > .uq-accordion > ul > li > .uq-item .uq-name::before,
  .uq-theme-light [data-nav-mode='collapsible'] > .uq-sub-menu > .uq-accordion > ul > li > .uq-item .uq-name::before {
    font-size: 1em;
    font-weight: normal;

    position: absolute;
    top: 50%;
    left: -.825em;

    display: block;

    width: 1em;

    content: '\2022';
    text-align: center;

    opacity: .5;

    -webkit-margin-before: -.75em;
    margin-block-start: -.75em;
  }

  [dir='rtl'] .uq-theme-light .uq-accordion > ul > li > .uq-sub-menu > .uq-accordion > ul > li > .uq-item .uq-name::before,
  [dir='rtl']
  .uq-theme-light [data-nav-mode='accordion'] > .uq-sub-menu > .uq-accordion > ul > li > .uq-item .uq-name::before,
  [dir='rtl']
  .uq-theme-light [data-nav-mode='collapsible'] > .uq-sub-menu > .uq-accordion > ul > li > .uq-item .uq-name::before {
    right: -.825em;
    left: auto;
  }

  .uq-theme-light .uq-accordion > ul > li > .uq-sub-menu > .uq-accordion > ul > li > .uq-item .uq-icon + .uq-name::before,
  .uq-theme-light [data-nav-mode='accordion'] > .uq-sub-menu > .uq-accordion > ul > li > .uq-item .uq-icon + .uq-name::before,
  .uq-theme-light [data-nav-mode='collapsible'] > .uq-sub-menu > .uq-accordion > ul > li > .uq-item .uq-icon + .uq-name::before {
    display: none;

    content: '';
  }

  .uq-theme-light .uq-accordion > ul > li > .uq-sub-menu > .uq-accordion > ul .uq-item:hover .uq-btn-toggle,
  .uq-theme-light [data-nav-mode='accordion'] > .uq-sub-menu > .uq-accordion > ul .uq-item:hover .uq-btn-toggle,
  .uq-theme-light [data-nav-mode='collapsible'] > .uq-sub-menu > .uq-accordion > ul .uq-item:hover .uq-btn-toggle {
    border-inline-start-color: rgba(0, 0, 0, .05);
  }

  .uq-theme-light .uq-accordion > ul > li > .uq-sub-menu > .uq-accordion .uq-accordion > ul > li > .uq-item,
  .uq-theme-light [data-nav-mode='accordion'] > .uq-sub-menu > .uq-accordion .uq-accordion > ul > li > .uq-item,
  .uq-theme-light [data-nav-mode='collapsible'] > .uq-sub-menu > .uq-accordion .uq-accordion > ul > li > .uq-item {
    -webkit-padding-start: 2em;
    padding-inline-start: 2em;
  }

  .uq-theme-light .uq-accordion > ul > li > .uq-sub-menu > .uq-accordion .uq-accordion .uq-accordion > ul > li > .uq-item,
  .uq-theme-light [data-nav-mode='accordion'] > .uq-sub-menu > .uq-accordion .uq-accordion .uq-accordion > ul > li > .uq-item,
  .uq-theme-light [data-nav-mode='collapsible'] > .uq-sub-menu > .uq-accordion .uq-accordion .uq-accordion > ul > li > .uq-item {
    -webkit-padding-start: 3em;
    padding-inline-start: 3em;
  }
}

/*  Slide Menu  */
.uq-theme-light .uq-slide .uq-item-parent:not(.current).expanded {
  background-color: rgba(0, 0, 0, .017);
}

.uq-theme-light .uq-slide-wrapper ul.uq-list-action {
  transition-timing-function: ease-in-out;
  transition-duration: .3s;
}

.uq-theme-light .uq-sub-menu > .uq-slide .uq-item.uq-item-back .uq-link {
  font-weight: bold;
}

/*  Flyout Menu  */
@media (min-width: 576px) {
  .uq-theme-light .uq-item-wrapper {
    margin: .25em;
    padding: .5em;

    transition: all ease-in-out .3s;

    border: 1px solid rgba(0, 0, 0, .07);
    border-radius: 4px;
    background-color: #fff;

    -webkit-margin-after: .4em;
    margin-block-end: .4em;
  }

  .uq-theme-light .uq-item-wrapper:hover {
    box-shadow: 0 .25rem .5rem rgba(0, 0, 0, .04);
  }
}

@media (max-width: 991.98px) {
  .uq-theme-light .uq-row-item + .uq-row-item .uq-item-info {
    -webkit-border-before: 1px solid rgba(0, 0, 0, .05);
    border-block-start: 1px solid rgba(0, 0, 0, .05);
  }

  .uq-theme-light .uq-item-image {
    width: auto !important;

    align-items: center;
  }

  .uq-theme-light .uq-sub-menu > .uq-flyout {
    -webkit-border-before: 1px solid rgba(0, 0, 0, .07);
    border-block-start: 1px solid rgba(0, 0, 0, .07);
  }

  .uq-theme-light .uq-sub-menu > .uq-flyout > ul {
    background-color: rgba(0, 0, 0, .017);
  }

  .uq-theme-light .uq-sub-menu > .uq-flyout > ul > li {
    border-color: rgba(0, 0, 0, .05);
  }

  .uq-theme-light .uq-sub-menu > .uq-flyout > ul > li > .uq-item {
    -webkit-padding-start: 1em;
    padding-inline-start: 1em;
  }

  .uq-theme-light .uq-sub-menu > .uq-flyout .uq-sub-menu > div > ul > li > .uq-item {
    -webkit-padding-start: 2em;
    padding-inline-start: 2em;
  }

  .uq-theme-light .uq-sub-menu > .uq-flyout .uq-sub-menu .uq-sub-menu > div > ul > li > .uq-item {
    -webkit-padding-start: 3em;
    padding-inline-start: 3em;
  }

  .uq-theme-light .uq-sub-list {
    display: none;

    background-color: rgba(0, 0, 0, .017);
  }

  .uq-theme-light .uq-sub-list > div {
    -webkit-border-before: 1px solid rgba(0, 0, 0, .07);
    border-block-start: 1px solid rgba(0, 0, 0, .07);
  }

  .uq-theme-light .uq-sub-list .uq-item {
    -webkit-padding-start: 1em;
    padding-inline-start: 1em;
  }

  .uq-theme-light .uq-sub-list .uq-item + .uq-sub-menu > div:not(.uq-slide) .uq-item {
    -webkit-padding-start: 2em;
    padding-inline-start: 2em;
  }

  .uq-theme-light .uq-sub-grid {
    min-height: auto !important;

    background-color: rgba(0, 0, 0, .017);

    -webkit-border-before: 1px solid rgba(0, 0, 0, .07);
    border-block-start: 1px solid rgba(0, 0, 0, .07);
  }
}

@media (min-width: 992px) {
  .uq-theme-light .uq-flyout > ul > li:not([data-nav-mode]) > .uq-sub-menu,
  .uq-theme-light [data-nav-mode='flyout'] > .uq-sub-menu {
    top: -1px;

    border: 1px solid rgba(0, 0, 0, .11);
    box-shadow: 0 .25rem .5rem rgba(0, 0, 0, .04);
  }

  .uq-theme-light .uq-flyout > ul > li:not([data-nav-mode]).static-mode > .uq-sub-menu,
  .uq-theme-light [data-nav-mode='flyout'].static-mode > .uq-sub-menu {
    bottom: -1px;
  }

  .uq-theme-light .uq-flyout > ul > li:not([data-nav-mode]).static-mode > .uq-sub-menu > div::-webkit-scrollbar,
  .uq-theme-light [data-nav-mode='flyout'].static-mode > .uq-sub-menu > div::-webkit-scrollbar {
    width: 8px;
  }

  .uq-theme-light .uq-flyout > ul > li:not([data-nav-mode]).static-mode > .uq-sub-menu > div::-webkit-scrollbar-track,
  .uq-theme-light [data-nav-mode='flyout'].static-mode > .uq-sub-menu > div::-webkit-scrollbar-track {
    background: #f0f0f0;
  }

  .uq-theme-light .uq-flyout > ul > li:not([data-nav-mode]).static-mode > .uq-sub-menu > div::-webkit-scrollbar-thumb,
  .uq-theme-light [data-nav-mode='flyout'].static-mode > .uq-sub-menu > div::-webkit-scrollbar-thumb {
    background: #d5d5d5;
  }

  .uq-theme-light .uq-flyout > ul > li:not([data-nav-mode]).static-mode > .uq-sub-menu > div::-webkit-scrollbar-thumb:hover,
  .uq-theme-light [data-nav-mode='flyout'].static-mode > .uq-sub-menu > div::-webkit-scrollbar-thumb:hover {
    background: #b5b5b5;
  }

  .uq-theme-light .uq-flyout > ul > li:not([data-nav-mode]) .uq-item-parent.expanded {
    background-color: rgba(0, 0, 0, .017);
  }

  .uq-theme-light .uq-item-wrapper:hover .uq-item-image img {
    transform: scale(1.1);
  }

  .uq-theme-light .uq-item-info > .uq-item .uq-link {
    font-weight: 600;

    text-transform: uppercase;
  }

  .uq-theme-light .uq-item-info > .uq-item .uq-btn-toggle {
    display: none;
  }

  .uq-theme-light .uq-item-image img {
    transition: transform .5s ease .05s;
  }

  .uq-theme-light .uq-sub-list {
    -webkit-border-before: 1px solid rgba(0, 0, 0, .07);
    border-block-start: 1px solid rgba(0, 0, 0, .07);
  }

  .uq-theme-light .uq-nav > .uq-row {
    padding: .5em;

    align-items: flex-start;
  }

  .uq-theme-light .uq-sub-grid {
    background-color: rgba(0, 0, 0, .017);
  }

  .uq-theme-light .uq-sub-grid > .uq-row {
    flex-flow: row nowrap;
  }

  .uq-theme-light .uq-row-item {
    min-inline-size: 170px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .uq-theme-light .uq-flyout > ul > li.grid-mode > .uq-sub-menu,
  .uq-theme-light [data-nav-mode='flyout'].grid-mode > .uq-sub-menu {
    top: 0;
    bottom: -1px;
  }

  .uq-theme-light .uq-flyout > ul > li.grid-mode > .uq-sub-menu > div,
  .uq-theme-light [data-nav-mode='flyout'].grid-mode > .uq-sub-menu > div {
    overflow: hidden auto;

    height: 100%;
    min-height: auto !important;
  }

  .uq-theme-light .uq-flyout > ul > li.grid-mode > .uq-sub-menu > div::-webkit-scrollbar,
  .uq-theme-light [data-nav-mode='flyout'].grid-mode > .uq-sub-menu > div::-webkit-scrollbar {
    width: 8px;
  }

  .uq-theme-light .uq-flyout > ul > li.grid-mode > .uq-sub-menu > div::-webkit-scrollbar-track,
  .uq-theme-light [data-nav-mode='flyout'].grid-mode > .uq-sub-menu > div::-webkit-scrollbar-track {
    background: #f0f0f0;
  }

  .uq-theme-light .uq-flyout > ul > li.grid-mode > .uq-sub-menu > div::-webkit-scrollbar-thumb,
  .uq-theme-light [data-nav-mode='flyout'].grid-mode > .uq-sub-menu > div::-webkit-scrollbar-thumb {
    background: #d5d5d5;
  }

  .uq-theme-light .uq-flyout > ul > li.grid-mode > .uq-sub-menu > div::-webkit-scrollbar-thumb:hover,
  .uq-theme-light [data-nav-mode='flyout'].grid-mode > .uq-sub-menu > div::-webkit-scrollbar-thumb:hover {
    background: #b5b5b5;
  }
}

/*  Slim Menu  */
@media (min-width: 992px) {
  .uq-theme-light [data-nav-mode='slim'] .uq-icon {
    min-height: 1.5em;
  }
}

/*  Mega Menu  */
@media (max-width: 991.98px) {
  .uq-theme-light .uq-mega .uq-sub-menu > .uq-slide {
    -webkit-border-before: 1px solid rgba(0, 0, 0, .07);
    border-block-start: 1px solid rgba(0, 0, 0, .07);
  }

  .uq-theme-light .uq-mega > .uq-nav {
    border: 1px solid rgba(0, 0, 0, .11);
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .04);
  }
}

@media (min-width: 992px) {
  .uq-theme-light.uq-mega-horizontal {
    border: 0;
  }

  .uq-theme-light.uq-mega-horizontal > .uq-nav {
    border: 0;
    border-radius: 4px;
    background-color: #00897b;
  }

  .uq-theme-light .uq-mega > ul > li,
  .uq-theme-light [data-nav-mode='mega'] {
    display: flex;

    border: 0;

    flex: 0 1 auto;
  }

  .uq-theme-light .uq-mega > ul > li + li,
  .uq-theme-light [data-nav-mode='mega'] + li {
    -webkit-border-start: 1px solid rgba(0, 0, 0, .07);
    border-inline-start: 1px solid rgba(0, 0, 0, .07);
  }

  .uq-theme-light .uq-mega > ul > li > .uq-item,
  .uq-theme-light [data-nav-mode='mega'] > .uq-item {
    transition: background-color ease-in-out .3s;
  }

  .uq-theme-light .uq-mega > ul > li > .uq-item:hover,
  .uq-theme-light .uq-mega > ul > li > .uq-item.current,
  .uq-theme-light .uq-mega > ul > li > .uq-item.expanded,
  .uq-theme-light [data-nav-mode='mega'] > .uq-item:hover,
  .uq-theme-light [data-nav-mode='mega'] > .uq-item.current,
  .uq-theme-light [data-nav-mode='mega'] > .uq-item.expanded {
    background-color: rgba(0, 0, 0, .095);
  }

  .uq-theme-light .uq-mega > ul > li > .uq-item:hover > .uq-link,
  .uq-theme-light .uq-mega > ul > li > .uq-item.current > .uq-link,
  .uq-theme-light .uq-mega > ul > li > .uq-item.expanded > .uq-link,
  .uq-theme-light [data-nav-mode='mega'] > .uq-item:hover > .uq-link,
  .uq-theme-light [data-nav-mode='mega'] > .uq-item.current > .uq-link,
  .uq-theme-light [data-nav-mode='mega'] > .uq-item.expanded > .uq-link {
    color: #fff;
  }

  .uq-theme-light .uq-mega > ul > li > .uq-item:hover > .uq-link .uq-icon,
  .uq-theme-light .uq-mega > ul > li > .uq-item.current > .uq-link .uq-icon,
  .uq-theme-light .uq-mega > ul > li > .uq-item.expanded > .uq-link .uq-icon,
  .uq-theme-light [data-nav-mode='mega'] > .uq-item:hover > .uq-link .uq-icon,
  .uq-theme-light [data-nav-mode='mega'] > .uq-item.current > .uq-link .uq-icon,
  .uq-theme-light [data-nav-mode='mega'] > .uq-item.expanded > .uq-link .uq-icon {
    color: rgba(255, 255, 255, .75);
  }

  .uq-theme-light .uq-mega > ul > li > .uq-item:hover > .uq-btn-toggle,
  .uq-theme-light .uq-mega > ul > li > .uq-item.current > .uq-btn-toggle,
  .uq-theme-light .uq-mega > ul > li > .uq-item.expanded > .uq-btn-toggle,
  .uq-theme-light [data-nav-mode='mega'] > .uq-item:hover > .uq-btn-toggle,
  .uq-theme-light [data-nav-mode='mega'] > .uq-item.current > .uq-btn-toggle,
  .uq-theme-light [data-nav-mode='mega'] > .uq-item.expanded > .uq-btn-toggle {
    color: rgba(255, 255, 255, .95);
  }

  .uq-theme-light .uq-mega > ul > li > .uq-item:hover.active + .uq-sub-menu,
  .uq-theme-light .uq-mega > ul > li > .uq-item.current.active + .uq-sub-menu,
  .uq-theme-light .uq-mega > ul > li > .uq-item.expanded.active + .uq-sub-menu,
  .uq-theme-light [data-nav-mode='mega'] > .uq-item:hover.active + .uq-sub-menu,
  .uq-theme-light [data-nav-mode='mega'] > .uq-item.current.active + .uq-sub-menu,
  .uq-theme-light [data-nav-mode='mega'] > .uq-item.expanded.active + .uq-sub-menu {
    visibility: visible;

    transform: translateY(0);

    opacity: 1;
  }

  .uq-theme-light .uq-mega > ul > li > .uq-item > .uq-btn-toggle,
  .uq-theme-light [data-nav-mode='mega'] > .uq-item > .uq-btn-toggle {
    color: rgba(255, 255, 255, .75);
    border: 0;
    background-color: transparent !important;
  }

  .uq-theme-light .uq-mega > ul > li > .uq-item > .uq-link,
  .uq-theme-light [data-nav-mode='mega'] > .uq-item > .uq-link {
    padding: .875em .5em;

    color: rgba(255, 255, 255, .85);
  }

  .uq-theme-light .uq-mega > ul > li > .uq-item > .uq-link .uq-icon,
  .uq-theme-light [data-nav-mode='mega'] > .uq-item > .uq-link .uq-icon {
    color: rgba(255, 255, 255, .5);
  }

  .uq-theme-light .uq-mega > ul > li > .uq-item > .uq-link .uq-count,
  .uq-theme-light [data-nav-mode='mega'] > .uq-item > .uq-link .uq-count {
    color: rgba(255, 255, 255, .75);
    border-color: rgba(0, 0, 0, .095);
    background-color: rgba(0, 0, 0, .095);
  }

  .uq-theme-light .uq-mega > ul > li > .uq-sub-menu,
  .uq-theme-light [data-nav-mode='mega'] > .uq-sub-menu {
    display: block !important;
    visibility: hidden;

    min-width: 18em;

    transition: all ease-in-out .3s;
    transform: translateY(7%);

    opacity: 0;
    border: 1px solid rgba(0, 0, 0, .11);
    background-color: #fff;
    box-shadow: 0 .25rem .5rem rgba(0, 0, 0, .04);
  }
}

/*  ShowCase  */
@media (max-width: 991.98px) {
  .uq-theme-light.uq-showcase .uq-sub-list {
    display: block;
  }

  .uq-theme-light.uq-showcase .uq-item-info > .uq-item .uq-btn-toggle {
    display: none;
  }
}

/*  Colors  */
.uq-theme-light .uq-item-blue:hover .uq-link,
.uq-theme-light .uq-item-blue.current .uq-link,
.uq-theme-light .uq-item-blue.expanded .uq-link {
  color: #0288d1;
}

.uq-theme-light .uq-item-blue:hover .uq-icon,
.uq-theme-light .uq-item-blue.current .uq-icon,
.uq-theme-light .uq-item-blue.expanded .uq-icon {
  color: #0288d1;
}

.uq-theme-light .uq-item-blue + .uq-sub-list {
  border-color: #0288d1;
}

.uq-theme-light .uq-item-blue .uq-icon {
  color: #0288d1;
}

.uq-theme-light .uq-label-blue {
  border-color: #0288d1;
  background-color: #0288d1;
}

.uq-theme-light .uq-item-indigo:hover .uq-link,
.uq-theme-light .uq-item-indigo.current .uq-link,
.uq-theme-light .uq-item-indigo.expanded .uq-link {
  color: #3f51b5;
}

.uq-theme-light .uq-item-indigo:hover .uq-icon,
.uq-theme-light .uq-item-indigo.current .uq-icon,
.uq-theme-light .uq-item-indigo.expanded .uq-icon {
  color: #3f51b5;
}

.uq-theme-light .uq-item-indigo + .uq-sub-list {
  border-color: #3f51b5;
}

.uq-theme-light .uq-item-indigo .uq-icon {
  color: #3f51b5;
}

.uq-theme-light .uq-label-indigo {
  border-color: #3f51b5;
  background-color: #3f51b5;
}

.uq-theme-light .uq-item-purple:hover .uq-link,
.uq-theme-light .uq-item-purple.current .uq-link,
.uq-theme-light .uq-item-purple.expanded .uq-link {
  color: #673ab7;
}

.uq-theme-light .uq-item-purple:hover .uq-icon,
.uq-theme-light .uq-item-purple.current .uq-icon,
.uq-theme-light .uq-item-purple.expanded .uq-icon {
  color: #673ab7;
}

.uq-theme-light .uq-item-purple + .uq-sub-list {
  border-color: #673ab7;
}

.uq-theme-light .uq-item-purple .uq-icon {
  color: #673ab7;
}

.uq-theme-light .uq-label-purple {
  border-color: #673ab7;
  background-color: #673ab7;
}

.uq-theme-light .uq-item-pink:hover .uq-link,
.uq-theme-light .uq-item-pink.current .uq-link,
.uq-theme-light .uq-item-pink.expanded .uq-link {
  color: #d81b60;
}

.uq-theme-light .uq-item-pink:hover .uq-icon,
.uq-theme-light .uq-item-pink.current .uq-icon,
.uq-theme-light .uq-item-pink.expanded .uq-icon {
  color: #d81b60;
}

.uq-theme-light .uq-item-pink + .uq-sub-list {
  border-color: #d81b60;
}

.uq-theme-light .uq-item-pink .uq-icon {
  color: #d81b60;
}

.uq-theme-light .uq-label-pink {
  border-color: #d81b60;
  background-color: #d81b60;
}

.uq-theme-light .uq-item-red:hover .uq-link,
.uq-theme-light .uq-item-red.current .uq-link,
.uq-theme-light .uq-item-red.expanded .uq-link {
  color: #f44336;
}

.uq-theme-light .uq-item-red:hover .uq-icon,
.uq-theme-light .uq-item-red.current .uq-icon,
.uq-theme-light .uq-item-red.expanded .uq-icon {
  color: #f44336;
}

.uq-theme-light .uq-item-red + .uq-sub-list {
  border-color: #f44336;
}

.uq-theme-light .uq-item-red .uq-icon {
  color: #f44336;
}

.uq-theme-light .uq-label-red {
  border-color: #f44336;
  background-color: #f44336;
}

.uq-theme-light .uq-item-orange:hover .uq-link,
.uq-theme-light .uq-item-orange.current .uq-link,
.uq-theme-light .uq-item-orange.expanded .uq-link {
  color: #fb8c00;
}

.uq-theme-light .uq-item-orange:hover .uq-icon,
.uq-theme-light .uq-item-orange.current .uq-icon,
.uq-theme-light .uq-item-orange.expanded .uq-icon {
  color: #fb8c00;
}

.uq-theme-light .uq-item-orange + .uq-sub-list {
  border-color: #fb8c00;
}

.uq-theme-light .uq-item-orange .uq-icon {
  color: #fb8c00;
}

.uq-theme-light .uq-label-orange {
  border-color: #fb8c00;
  background-color: #fb8c00;
}

.uq-theme-light .uq-item-slate:hover .uq-link,
.uq-theme-light .uq-item-slate.current .uq-link,
.uq-theme-light .uq-item-slate.expanded .uq-link {
  color: #607d8b;
}

.uq-theme-light .uq-item-slate:hover .uq-icon,
.uq-theme-light .uq-item-slate.current .uq-icon,
.uq-theme-light .uq-item-slate.expanded .uq-icon {
  color: #607d8b;
}

.uq-theme-light .uq-item-slate + .uq-sub-list {
  border-color: #607d8b;
}

.uq-theme-light .uq-item-slate .uq-icon {
  color: #607d8b;
}

.uq-theme-light .uq-label-slate {
  border-color: #607d8b;
  background-color: #607d8b;
}

.uq-theme-light .uq-item-green:hover .uq-link,
.uq-theme-light .uq-item-green.current .uq-link,
.uq-theme-light .uq-item-green.expanded .uq-link {
  color: #7cb342;
}

.uq-theme-light .uq-item-green:hover .uq-icon,
.uq-theme-light .uq-item-green.current .uq-icon,
.uq-theme-light .uq-item-green.expanded .uq-icon {
  color: #7cb342;
}

.uq-theme-light .uq-item-green + .uq-sub-list {
  border-color: #7cb342;
}

.uq-theme-light .uq-item-green .uq-icon {
  color: #7cb342;
}

.uq-theme-light .uq-label-green {
  border-color: #7cb342;
  background-color: #7cb342;
}

.uq-theme-light .uq-item-teal:hover .uq-link,
.uq-theme-light .uq-item-teal.current .uq-link,
.uq-theme-light .uq-item-teal.expanded .uq-link {
  color: #00897b;
}

.uq-theme-light .uq-item-teal:hover .uq-icon,
.uq-theme-light .uq-item-teal.current .uq-icon,
.uq-theme-light .uq-item-teal.expanded .uq-icon {
  color: #00897b;
}

.uq-theme-light .uq-item-teal + .uq-sub-list {
  border-color: #00897b;
}

.uq-theme-light .uq-item-teal .uq-icon {
  color: #00897b;
}

.uq-theme-light .uq-label-teal {
  border-color: #00897b;
  background-color: #00897b;
}

.uq-theme-light .uq-item-cyan:hover .uq-link,
.uq-theme-light .uq-item-cyan.current .uq-link,
.uq-theme-light .uq-item-cyan.expanded .uq-link {
  color: #9c27b0;
}

.uq-theme-light .uq-item-cyan:hover .uq-icon,
.uq-theme-light .uq-item-cyan.current .uq-icon,
.uq-theme-light .uq-item-cyan.expanded .uq-icon {
  color: #9c27b0;
}

.uq-theme-light .uq-item-cyan + .uq-sub-list {
  border-color: #9c27b0;
}

.uq-theme-light .uq-item-cyan .uq-icon {
  color: #9c27b0;
}

.uq-theme-light .uq-label-cyan {
  border-color: #9c27b0;
  background-color: #9c27b0;
}

.uq-theme-light .uq-item-brown:hover .uq-link,
.uq-theme-light .uq-item-brown.current .uq-link,
.uq-theme-light .uq-item-brown.expanded .uq-link {
  color: #795548;
}

.uq-theme-light .uq-item-brown:hover .uq-icon,
.uq-theme-light .uq-item-brown.current .uq-icon,
.uq-theme-light .uq-item-brown.expanded .uq-icon {
  color: #795548;
}

.uq-theme-light .uq-item-brown + .uq-sub-list {
  border-color: #795548;
}

.uq-theme-light .uq-item-brown .uq-icon {
  color: #795548;
}

.uq-theme-light .uq-label-brown {
  border-color: #795548;
  background-color: #795548;
}

.uq-theme-light .uq-item-white:hover .uq-link,
.uq-theme-light .uq-item-white.current .uq-link,
.uq-theme-light .uq-item-white.expanded .uq-link {
  color: #fff;
}

.uq-theme-light .uq-item-white:hover .uq-icon,
.uq-theme-light .uq-item-white.current .uq-icon,
.uq-theme-light .uq-item-white.expanded .uq-icon {
  color: #fff;
}

.uq-theme-light .uq-item-white + .uq-sub-list {
  border-color: #fff;
}

.uq-theme-light .uq-item-white .uq-icon {
  color: #fff;
}

.uq-theme-light .uq-label-white {
  border-color: #fff;
  background-color: #fff;
}

.uq-theme-light .uq-item-gray:hover .uq-link,
.uq-theme-light .uq-item-gray.current .uq-link,
.uq-theme-light .uq-item-gray.expanded .uq-link {
  color: #595959;
}

.uq-theme-light .uq-item-gray:hover .uq-icon,
.uq-theme-light .uq-item-gray.current .uq-icon,
.uq-theme-light .uq-item-gray.expanded .uq-icon {
  color: #595959;
}

.uq-theme-light .uq-item-gray + .uq-sub-list {
  border-color: #595959;
}

.uq-theme-light .uq-item-gray .uq-icon {
  color: #595959;
}

.uq-theme-light .uq-label-gray {
  border-color: #595959;
  background-color: #595959;
}
