/* aks
================================*/
.aks {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: initial;
  align-items: initial;
  width: 100%;
  min-height: 60px;
  padding: 0;
  position: relative;
  line-height: initial;
  font-family: inherit;
  box-sizing: border-box;
  background-color: #ffffff;
  transition: background 0.3s;
}

@media (min-width: 992px) {
  .aks {
    height: auto;
  }
}

.aks *,
.aks *:before,
.aks *:after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
}

.aks.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 19998;
}

.aks.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  will-change: opacity;
  z-index: 19998;
}

.aks > .container {
  display: -ms-flexbox;
  display: flex;
}

/* MOBILE HEADER
================================*/
.aks-header {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

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

/* OVERLAY PANEL
================================*/
.overlay-panel {
  width: 0;
  height: 0;
  position: fixed;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: -999999;
  transition: opacity 0.8s;
}

.overlay-panel.is-visible {
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: 19999;
}

.overlay-panel.is-invisible {
  opacity: 0;
}

@media (min-width: 992px) {
  .overlay-panel.is-visible {
    display: none !important;
  }
}

/* aks BRAND TEXT
================================*/
.aks-brand-text a {
  font-size: 16px;
  font-weight: bold;
  color: #555d65;
  text-decoration: none;
}

@media (min-width: 992px) {
  .aks-brand-text a {
    font-size: 22px;
  }
}

.aks-header .aks-brand-text {
  padding: 0 1rem;
}

/* aks LOGO
================================*/
.aks-logo {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.aks-logo a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.aks-logo a img {
  height: 40px;
  display: block;
}

@media (min-width: 992px) {
  .aks-logo a img {
    height: 48px;
  }
}

.aks-logo-top .aks-body .aks-logo img {
  width: auto;
  height: auto;
}

.aks-header .aks-logo {
  padding: 0 1rem;
}

.aks-logo.aks-item a img {
  width: auto;
  height: auto;
}

/* aks BUTTON TOGGLER
================================*/
.aks-button-toggler {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  cursor: pointer;
}

.aks-button-toggler .hamburger-icon {
  width: 20px;
  height: 2px;
  display: inline-block;
  font-style: normal;
  color: #555d65;
  box-shadow: inset 0 0 0 32px, 0 -6px, 0 6px;
}

/* aks BODY
================================*/
.aks-body {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: -100%;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #ffffff;
  z-index: 20000;
  transition: left 0.8s cubic-bezier(0.1, 0.1, 0.1, 0.1), right 0.8s cubic-bezier(0.1, 0.1, 0.1, 0.1);
}

@media (min-width: 500px) {
  .aks-body {
    width: 320px;
  }
}

@media (min-width: 992px) {
  .aks-body {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    position: relative;
    left: auto;
    overflow: visible;
    z-index: auto;
    background-color: transparent;
    transition: all 0s ease 0s;
  }
}

.aks-body.offcanvas-right {
  left: auto;
  right: -100%;
}

@media (min-width: 992px) {
  .aks-body.offcanvas-right {
    right: auto;
  }
}

.aks-body.is-visible {
  left: 0;
  transition: left 0.8s, right 0.8s;
}

.aks-body.offcanvas-right.is-visible {
  right: 0;
  left: auto;
}

@media (min-width: 992px) {
  .aks-body.offcanvas-right.is-visible {
    right: auto;
  }
}

.aks-body.is-invisible {
  left: -100%;
}

.aks-body.offcanvas-right.is-invisible {
  right: -100%;
}

.aks-body.scroll-momentum {
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 992px) {
  .aks-centered .aks-body {
    -ms-flex-pack: center;
    justify-content: center;
  }
  .aks-justified .aks-body {
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .aks-logo-top .aks-body {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.aks-body-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px 0px ;
  border-bottom: solid 1px #e9ecef;
}

@media (min-width: 992px) {
  .aks-body-header {
    border: none;
  }
  .aks-centered .aks-body-header {
    padding: 0;
  }
  .aks-logo-top .aks-body-header {
    padding-top: 20px;
  }
}

.aks-body-close-button {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin-left: auto;
  padding-bottom: 2px;
  line-height: initial;
  text-align: center;
  font-size: 25px;
  color: #555d65;
  cursor: pointer;
}

@media (min-width: 992px) {
  .aks-body-close-button {
    display: none;
  }
}

.aks-body-section {
  width: 100%;
  padding: 16px;
  display: inline-flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (min-width: 992px) {
  .aks-body-section {
    width: auto;
    display: inline-block;
  }
}

.aks-body-section + .aks-body-section {
  padding-top: 0;
}

@media (min-width: 992px) {
  .aks-body-section + .aks-body-section {
    padding-top: 16px;
  }
}

/* aks MENU
================================*/
.aks-menu {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0rem;
  display: inline-block;
  float: left;
}

@media (min-width: 992px) {
  .aks-menu {
    width: auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
  }
  .aks .aks-menu {
    -ms-flex-item-align: stretch;
    align-self: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .aks-logo-top .aks-menu {
    -ms-flex-pack: center;
    justify-content: center;
  }
}

/* Navbar item */
.aks-item {
  width: 100%;
  margin: 0;
  float: left;
  display: inline-block;
}

@media (min-width: 992px) {
  .aks-item {
    width: auto;
  }
}

/* Navbar link */
.aks-link {
  width: 100%;
  padding: 13px 16px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  font-size: 14px;
  letter-spacing: 0.3px;
  color: #555d65;
  transition: color 0.3s;
}

.aks-link:visited {
  color: #555d65;
}

@media (min-width: 992px) {
  .aks-item:last-child .aks-link {
    border-top: none;
    border-bottom: none;
  }
}

.aks-item:not(.aks-brand-text):hover .aks-link,
.aks-item:not(.aks-brand-text):focus .aks-link,
.aks-item:not(.aks-brand-text).is-active .aks-link {
  text-decoration: none !important;
  color: #7367F0;
  background-color: transparent;
}

@media (min-width: 992px) {
  .aks-link {
    height: 100%;
    padding: 2px 16px;
    line-height: 60px;
  }
}

.aks-menu.aks-social-menu + .aks-menu:not(.aks-social-menu) .aks-item:first-child .aks-link {
  border-top: solid 1px #e9ecef;
}

@media (min-width: 992px) {
  .aks-menu.aks-social-menu + .aks-menu:not(.aks-social-menu) .aks-item:first-child .aks-link {
    border-top: none;
  }
}

.aks-link i {
  width: 28px;
  float: left;
  text-align: center;
  font-size: 24px;
  line-height: 0;
}

.aks-link i[class*=fa] {
  font-size: 21px;
}

@media (min-width: 992px) {
  .aks-link i {
    width: auto;
  }
}

.aks-link i + span {
  padding-left: 8px;
}

.aks-icon-item .aks-link {
  padding: 13px 16px;
}

@media (min-width: 992px) {
  .aks-icon-item .aks-link {
    width: 100%;
    margin: 0;
    padding: 25px 25.6px;
    border-left: solid 1px #e9ecef;
  }
}

@media (min-width: 992px) {
  .aks-icon-item .aks-link span:not(.submenu-indicator) {
    display: none;
  }
}

@media (min-width: 992px) {
  .aks-icon-item .aks-link .aks-badge {
    right: 10px;
  }
}

@media (min-width: 992px) {
  .aks-icon-item .aks-link i {
    width: 20px;
    height: 26px;
    margin: 0;
    line-height: 26px;
    text-align: center;
    float: left;
    font-size: 25.6px;
  }
  .aks-icon-item .aks-link i[class*=fa] {
    width: auto;
    font-size: 21px;
  }
}

.aks-avatar-item .aks-link {
  font-size: 12px;
  font-weight: bold;
}

.aks-avatar-item .aks-link img {
  width: 48px;
  border: solid 2px #7367F0;
  border-radius: 50%;
}

.aks-avatar-item .aks-link span {
  margin-left: 8px;
}

.aks-body-section + .aks-menu:not(.aks-social-menu) > .aks-item:first-child > .aks-link {
  border-top: solid 1px #e9ecef;
}

@media (min-width: 992px) {
  .aks-body-section + .aks-menu:not(.aks-social-menu) > .aks-item:first-child > .aks-link {
    border-top: none;
  }
}

/* aks SOCIAL MENU
================================*/
.aks-social-menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  padding: 0 16px;
  text-align: center;
}

@media (min-width: 992px) {
  .aks-social-menu {
    width: auto;
  }
}

@media (max-width: 991px) {
  .aks-social-menu {
    padding: 16px;
  }
}

.aks-social-menu .aks-item {
  width: auto;
  display: inline-block;
}

.aks-social-menu .aks-item .aks-link {
  margin: 0;
  padding: 0 5px;
  border: none;
}

.aks-social-menu .aks-item .aks-link i {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  width: 38px;
  height: 38px;
  margin: 0;
  line-height: initial;
  font-size: 19px;
  border-radius: 50%;
  background-color: #f8f9fa;
}

.aks-social-menu .aks-item .aks-link i:not([class*=fa]):before {
  margin-right: -1px;
}

.aks-social-menu .aks-item:last-child .aks-link {
  padding-right: 0;
}

.aks-social-menu .aks-item:first-child .aks-link {
  padding-left: 0;
}

@media (max-width: 991px) {
  .aks-social-menu .aks-item {
    display: flex;
  }
}

/* SUBMENU INDICATOR
================================*/
.submenu-indicator {
  width: 46px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 20000;
}

@media (min-width: 992px) {
  .submenu-indicator {
    width: 6px;
    height: 6px;
    margin-left: 6px;
    float: right;
    position: relative;
  }
  li:not(.aks-icon-item) span:not(.aks-badge) + .submenu-indicator,
  li:not(.aks-icon-item) i + span + .aks-badge + .submenu-indicator {
    margin-left: 0;
  }
}

.submenu-indicator:after {
  height: 6px;
  width: 6px;
  margin: -3px 0 0 -3px;
  top: 50%;
  left: 50%;
  content: "";
  position: absolute;
  border-style: solid;
  border-width: 0 1px 1px 0;
  border-color: transparent #555d65 #555d65 transparent;
  transform: rotate(45deg);
  transition: border 0.3s, transform 0.3s;
}

.aks-item:hover > .aks-link > .submenu-indicator:after,
.aks-item:focus > .aks-link > .submenu-indicator:after,
.aks-item.is-active > .aks-link > .submenu-indicator:after {
  border-color: transparent #7367F0 #7367F0 transparent;
}

.submenu-indicator.is-active:after {
  transform: rotate(-135deg);
}

@media (min-width: 992px) {
  .submenu-indicator.is-active:after {
    transform: rotate(45deg);
  }
}

/* aks BUTTON
================================*/
.aks-btn {
  width: 100%;
  padding: 10px 12px;
  text-align: center;
  display: block;
  line-height: 1.4;
  font-size: 14px;
  white-space: nowrap;
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
  border: solid 1px #7367F0;
  background-color: #7367F0;
  transition: opacity 0.3s, background 0.3s;
}

.aks-btn:hover, .aks-btn:focus {
  color: #ffffff;
  text-decoration: none;
  background-color: #6254ee;
}

@media (min-width: 992px) {
  .aks-btn {
    width: auto;
  }
}

/* aks TEXT
================================*/
.aks-text {
  padding: 11px 0;
  display: inline-block;
  color: #555d65;
  font-size: 14px;
}

@media (min-width: 992px) {
  .aks-text {
    padding: 11px 16px;
  }
}

/* aks BADGE
================================*/
.aks-badge {
  min-width: 18px !important;
  height: 18px;
  margin: 0 5px;
  display: inline-block;
  line-height: 18px;
  text-align: center;
  font-size: 11px;
  color: #ffffff;
  border-radius: 20px;
  background-color: #7367F0;
}

@media (min-width: 992px) {
  .aks-link .aks-badge {
    position: absolute;
    right: -2px;
    top: calc(50% + -20px);
  }
  .aks-dropdown-link .aks-badge {
    position: static;
  }
}

/* aks INLINE FORM
================================*/
.aks-inline-form {
  position: relative;
}

@media (min-width: 992px) {
  .aks-inline-form {
    display: -ms-flexbox;
    display: flex;
  }
}

.aks-inline-form .aks-btn {
  display: -ms-flexbox;
  display: flex;
  width: auto;
  height: 100%;
  position: absolute;
  top: 0;
  right: 4px;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.aks-input {
  width: 100%;
  padding: 11px 32px 11px 12px;
  outline-width: 0;
  font-size: 14px;
  color: #555d65;
  line-height: 1.4;
  box-shadow: none;
  border-radius: 4px;
  background-color: #fbfcfc;
  border-style: solid;
  border-width: 1px;
  border-color: #dee2e6;
  transition: border 0.3s;
}

.aks-input:hover, .aks-input:focus {
  border-color: #7367F0;
}

.aks-input::placeholder {
  color: #575f68;
}

.aks-input:-ms-input-placeholder {
  color: #575f68;
}

.aks-input::-ms-input-placeholder {
  color: #575f68;
}

.aks-search-icon {
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  color: #a2a9b1;
  text-align: left;
  text-indent: -9999px;
  border: 2px solid;
  border-radius: 50%;
  transform: rotate(-45deg);
  transition: color 0.3s;
}

.aks-search-icon:after, .aks-search-icon:before {
  content: '';
  pointer-events: none;
}

.aks-search-icon:before {
  width: 2px;
  height: 7px;
  top: 10px;
  position: absolute;
  left: 50%;
  border-radius: 0 0 1px 1px;
  box-shadow: inset 0 0 0 32px;
  transform: translateX(-50%);
}

.aks-btn:hover .aks-search-icon {
  color: #7367F0;
}

/* aks DROPDOWN
================================*/
.aks-dropdown {
  width: 100%;
  max-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  list-style: none;
  position: static;
  display: block;
  z-index: 20001;
  background-color: #fcfdfd;
  transition: max-height 2s cubic-bezier(0, 1, 0, 1);
}

.aks-dropdown.is-visible {
  max-height: 2500px;
  transition: max-height 5s ease-out;
}

@media (min-width: 992px) {
  .aks-dropdown {
    width: 200px;
    margin-top: 40px;
    position: absolute;
    display: inline-block;
    opacity: 0;
    box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.05);
    transition: opacity 0.3s linear, max-height 0s linear 0.6s, margin 0.3s;
  }
  .aks-dropdown.is-visible {
    margin-top: 0;
    opacity: 1;
    overflow: visible;
    transition: opacity 0.3s linear, max-height 0s linear, margin 0.3s;
  }
  .aks-item > .aks-dropdown {
    border-top: solid 1px #e9ecef;
  }
}

.aks-dropdown .aks-dropdown {
  left: 100%;
}

.aks-dropdown .aks-dropdown-left {
  right: 100%;
  left: auto;
}

.aks-dropdown-item {
  width: 100%;
  margin: 0;
  float: left;
  display: inline-block;
}

.aks-dropdown-link {
  width: 100%;
  display: inline-block;
  position: relative;
  font-size: 13px;
  text-align : left;
  color: #555d65;
  border-bottom: solid 1px #e9ecef;
  transition: color 0.3s, background 0.3s;
}
.aks-dropdown-link:visited {
  color: #555d65;
}

.aks-dropdown-item:hover > .aks-dropdown-link,
.aks-dropdown-item:focus > .aks-dropdown-link,
.aks-dropdown-item.is-active > .aks-dropdown-link {
  text-decoration: none !important;
  color: #7367F0;
  background-color: #f5f6f8;
}

.aks-dropdown-link {
  padding: 8px 19px;
  border:1px #ececec dotted;
}

.aks-dropdown-link + ul .aks-dropdown-link {
  padding-left: 32px;
}

.aks-dropdown-link + ul .aks-dropdown-link + ul .aks-dropdown-link {
  padding-left: 48px;
}

.aks-dropdown-link + ul .aks-dropdown-link + ul .aks-dropdown-link + ul .aks-dropdown-link {
  padding-left: 48px;
}

.aks-dropdown-link + ul .aks-dropdown-link + ul .aks-dropdown-link + ul .aks-dropdown-link + ul .aks-dropdown-link {
  padding-left: 64px;
}

.aks-dropdown-link + ul .aks-dropdown-link + ul .aks-dropdown-link + ul .aks-dropdown-link + ul .aks-dropdown-link + ul .aks-dropdown-link {
  padding-left: 128px;
}

@media (min-width: 992px) {
  .aks-dropdown-link {
    padding-left: 19px !important;
    border-bottom: none;
  }
}

.aks-dropdown-link > .submenu-indicator {
  right: 0;
  top: 0;
  position: absolute;
}

.aks-dropdown-item:hover > .aks-dropdown-link > .submenu-indicator:after,
.aks-dropdown-item:focus > .aks-dropdown-link > .submenu-indicator:after,
.aks-dropdown-item.is-active > .aks-dropdown-link > .submenu-indicator:after {
  border-color: transparent #7367F0 #7367F0 transparent;
}

@media (min-width: 992px) {
  .aks-dropdown-link > .submenu-indicator {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
  }
  .aks-dropdown-link > .submenu-indicator:after {
    transform: rotate(-45deg);
  }
  .aks-dropdown-link > .submenu-indicator.submenu-indicator-left:after {
    transform: rotate(135deg);
  }
}

/* aks HORIZONTAL DROPDOWN
================================*/
.aks-dropdown-horizontal {
  background-color: #fcfdfd;
}

@media (min-width: 992px) {
  .aks-dropdown-horizontal {
    width: 100% !important;
    left: 0;
  }
  .aks-dropdown-horizontal .aks-dropdown-horizontal {
    left: 0;
    top: 100%;
    border-top: solid 1px #f2f4f5;
  }
  .aks-dropdown-horizontal .aks-dropdown-item {
    width: auto;
  }
  .aks-dropdown-horizontal .aks-dropdown-link {
    padding: 19px 19px;
    display: -ms-flexbox;
    display: flex;
  }
  .aks-dropdown-horizontal .submenu-indicator {
    right: 0px;
    position: relative;
  }
  .aks-dropdown-horizontal .submenu-indicator:after {
    margin-top: 5px;
    transform: rotate(45deg);
  }
  .aks-dropdown-horizontal.is-visible {
    display: block;
  }
}

/* MEGAMENU
================================*/
.aks-megamenu {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  display: block;
  position: static;
  font-size: 14px;
  color: #555d65;
  z-index: 20001;
  background-color: #fcfdfd;
  transition: max-height 2s cubic-bezier(0, 1, 0, 1);
}

.aks-megamenu.is-visible {
  max-height: 2500px;
  border-bottom: solid 1px #e9ecef;
  transition: max-height 5s ease-out;
}

@media (min-width: 992px) {
  .aks-megamenu {
    margin-top: 40px;
    position: absolute;
    opacity: 0;
    border-top: solid 0px transparent;
    transition: opacity 0.3s linear, max-height 0s linear 0.6s, margin 0.3s;
  }
  .aks-megamenu.is-visible {
    margin-top: 0;
    opacity: 1;
    border-top: solid 1px #e9ecef;
    border-bottom: none;
    box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.05);
    transition: opacity 0.3s linear, max-height 0s linear, margin 0.3s;
  }
  .aks-megamenu.aks-megamenu-half {
    width: 50%;
  }
  .aks-megamenu.aks-megamenu-quarter {
    width: 25%;
  }
}

.scroll-momentum .aks-megamenu {
  transform: translateZ(0);
}

@media (min-width: 992px) {
  .scroll-momentum .aks-megamenu {
    transform: none;
  }
}

.aks-megamenu [class*="container"] {
  width: 100%;
}

.aks-megamenu [class*="container"] [class*="col-"] {
  padding: 0;
}

.aks-megamenu-container {
  padding: 16px;
  display: table;
}

/* MEGAMENU GRID
================================*/
.aks-row {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.aks-row > [class^=aks-col] {
  width: 100%;
  min-height: 20px;
  margin-bottom: 1rem;
  position: relative;
}

@media (min-width: 992px) {
  .aks-row .aks-col {
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .aks-row .aks-col-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .aks-row .aks-col-2 {
    -ms-flex: 0 0 16.666666%;
    flex: 0 0 16.666666%;
    max-width: 16.666666%;
  }
  .aks-row .aks-col-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .aks-row .aks-col-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .aks-row .aks-col-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666666%;
  }
  .aks-row .aks-col-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .aks-row .aks-col-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .aks-row .aks-col-8 {
    -ms-flex: 0 0 66.666666%;
    flex: 0 0 66.666666%;
    max-width: 66.666666%;
  }
  .aks-row .aks-col-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .aks-row .aks-col-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .aks-row .aks-col-11 {
    -ms-flex: 0 0 91.666666%;
    flex: 0 0 91.666666%;
    max-width: 91.666666%;
  }
  .aks-row .aks-col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.aks-row:last-of-type [class^=aks-col]:last-child {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .aks-row:last-of-type [class^=aks-col] {
    margin-bottom: 0;
  }
}

/* MEGAMENU LIST
================================*/
.aks-list {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 992px) {
  [class^=aks-col]:last-of-type .aks-list {
    padding: 0;
  }
}

.aks-list > li {
  width: 100%;
  margin: 0;
}

.aks-list > li > a {
  padding: 10px 30px 10px 30px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  font-size: 13px;
  color: #555d65;
  text-decoration: none;
  transition: color 0.3s, background 0.3s;
}

.aks-list > li > a:hover {
  color: #7367F0;
  background-color: #f5f6f8;
}

@media (min-width: 992px) {
  .aks-list > li > a {
    border-right: solid 1px #e9ecef;
  }
}

[class^=aks-col]:last-of-type .aks-list > li > a {
  border-right: none;
}

.aks-list > li:not(.aks-list-heading) > a:before {
  content: "\25E5";
  position: absolute;
  left: 12px;
  font-size: 9px;
  transform: rotate(45deg);
}

.aks-list-heading {
  text-transform: uppercase;
  font-weight: bold;
}

.aks-list-heading > a {
  padding: 0 16px 13px !important;
}

.aks-list-heading > a:hover {
  color: #555d65 !important;
  background-color: transparent !important;
}

/* aks TABS
================================*/
.aks-tabs {
  width: 100%;
  float: left;
  display: block;
  position: relative;
  background-color: #f8f9fa;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.07);
}

@media (min-width: 992px) {
  .aks-tabs:after {
    content: "";
    width: 80%;
    height: 100%;
    position: absolute;
    right: 0;
    background-color: #ffffff;
    z-index: 99;
  }
}

.aks-tabs-nav {
  width: 100%;
  margin: 0;
  padding: 0;
  float: left;
  list-style: none;
}

@media (min-width: 992px) {
  .aks-tabs-nav {
    width: 20%;
  }
}

.aks-tabs-nav > li a {
  width: 100%;
  padding: 14px 16px;
  float: left;
  font-size: 14px;
  text-decoration: none;
  color: #555d65;
  outline: 0;
  background-color: #f8f9fa;
  transition: background 0.3s;
}

.aks-tabs-nav > li.is-active a,
.aks-tabs-nav > li:hover a,
.aks-tabs-nav > li:active a {
  background-color: #ffffff;
}

.aks-tabs-pane {
  width: 100%;
  min-height: 30px;
  padding: 16px;
  float: right;
  display: none;
  position: relative;
  opacity: 0;
  font-size: 15px;
  color: #555d65;
  z-index: 100;
  background-color: #ffffff;
  transition: opacity 0.5s;
}

.aks-tabs-pane.is-active {
  display: block;
  opacity: 1;
}

@media (min-width: 992px) {
  .aks-tabs-pane {
    width: 80%;
  }
}

/* TRANSPARENT aks
 ================================*/
.aks-transparent {
  background-color: transparent;
}

.aks-transparent .aks-header .aks-brand-text a {
  color: #ffffff;
}

@media (min-width: 992px) {
  .aks-transparent .aks-body .aks-brand-text a {
    color: #ffffff;
  }
}

.aks-transparent .aks-button-toggler .hamburger-icon {
  color: #ffffff;
}

@media (min-width: 992px) {
  .aks-transparent .aks-link {
    color: #ffffff;
  }
  .aks-transparent .aks-link > .submenu-indicator:after {
    border-color: transparent #ffffff #ffffff transparent;
  }
  .aks-transparent .aks-item:hover > .aks-link > .submenu-indicator:after,
  .aks-transparent .aks-item:focus > .aks-link > .submenu-indicator:after,
  .aks-transparent .aks-item.is-active > .aks-link > .submenu-indicator:after {
    border-color: transparent #ffffff #ffffff transparent;
  }
  .aks-transparent .aks-item:not(.aks-brand-text):hover .aks-link,
  .aks-transparent .aks-item:not(.aks-brand-text):focus .aks-link,
  .aks-transparent .aks-item:not(.aks-brand-text).is-active .aks-link {
    color: #ffffff;
  }
  .aks-transparent .aks-icon-item .aks-link {
    border-left: none;
  }
}

@media (min-width: 992px) {
  .aks-transparent .aks-input {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.01);
    border-color: rgba(255, 255, 255, 0.05);
  }
  .aks-transparent .aks-input ::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.2);
  }
  .aks-transparent .aks-input ::-moz-placeholder {
    color: rgba(255, 255, 255, 0.2);
  }
  .aks-transparent .aks-input :-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.2);
  }
  .aks-transparent .aks-input :-moz-placeholder {
    color: rgba(255, 255, 255, 0.2);
  }
}

@media (min-width: 992px) {
  .aks-transparent .aks-social-menu .aks-link i {
    background-color: rgba(255, 255, 255, 0.05);
  }
}

@media (min-width: 992px) {
  .aks-transparent .aks-item > .aks-dropdown,
  .aks-transparent .aks-megamenu.is-visible {
    border-top-color: transparent;
  }
}

/* aks FULLSCREEN
 ================================*/
@media (max-width: 991px) {
  .aks-fullscreen .aks-body {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .aks-fullscreen .aks-body-header {
    border: none;
    padding: 0;
  }
  .aks-fullscreen .aks-body-header .aks-body-close-button,
  .aks-fullscreen .aks-body-header .aks-brand-text,
  .aks-fullscreen .aks-body-header .aks-logo {
    position: absolute;
    top: 20px;
  }
  .aks-fullscreen .aks-body-header .aks-body-close-button {
    right: 20px;
  }
  .aks-fullscreen .aks-body-header .aks-brand-text,
  .aks-fullscreen .aks-body-header .aks-logo {
    left: 20px;
  }
  .aks-fullscreen .aks-menu {
    width: 300px;
  }
  .aks-fullscreen .aks-link,
  .aks-fullscreen .aks-dropdown-link {
    border: none;
  }
  .aks-fullscreen .aks-link {
    -ms-flex-pack: center;
    justify-content: center;
  }
  .aks-fullscreen .aks-dropdown-link {
    text-align: center;
  }
  .aks-fullscreen .aks-btn {
    width: 300px;
    -webkit-align-self: center;
    align-self: center;
  }
  .aks-fullscreen .aks-inline-form {
    width: 300px;
    margin: auto;
  }
  .aks-fullscreen .aks-inline-form .aks-btn {
    width: auto;
  }
}

/* UTILITIES
 ================================*/
.align-to-right {
  margin-left: auto !important;
}

.align-to-left {
  margin-right: auto !important;
}

.margin-top {
  margin-top: 1rem !important;
}

@media (min-width: 992px) {
  .margin-top {
    margin-top: 0 !important;
  }
}

@media (max-width: 991px) {
  .hide-on-portrait {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .hide-on-landscape {
    display: none !important;
  }
}
.top-product {background: #373f4c;padding: 20px;position: absolute;z-index: 99;left: 0;right: 0;text-align:center !important;
    color: #ccc;background-position: top right;top: -65px;;
}
.top-product a{color : #ccc;font-size:14px;} .top-product a:hover{text-decoration : underline;color:#fff;font-size:14px;}
.products-container{position:relative}
