@charset "UTF-8";
/*
    Mega Menu Module
    author: edytor49@gmail.com
    @ Mobile First Method
*/
  /*$debug-browser-support: false; // ╨┤╨╗╤П ╨▓╤Л╨▓╨╛╨┤╨░ ╨╕╨╜╤Д╨╛╤А╨╝╨░╤Ж╨╕╨╕ ╨┐╨╛ ╨▒╤А╨░╤Г╨╖╨╡╤А╨░╨╝ ╨▓ ╨┤╨╡╨▒╨░╨│╨╡

  $browser-minimum-versions: (
    "ie": "9"
  );

  $graceful-usage-threshold: 0.25000; // ╨╝╨╕╨╜╨╕╨╝╨░╨╗╤М╨╜╤Л╨╣ ╨┐╤А╨╛╤Ж╨╡╨╜╤В╨╜╤Л╨╣ ╨┐╨╛╤А╨╛╨│
*/
.megamenu-wrapper ul, .megamenu-wrapper ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.megamenu-wrapper a {
  -webkit-transition: none;
  transition: none;
}

.megamenu {
  display: inline-block;
  position: relative;
  font-size: 15px;
  line-height: 18px;
}
.megamenu__heading {
  display: block;
  padding: 13px 45px 13px 20px;
  border-bottom: 1px solid #a3a3a4;
}
.megamenu__dropdown {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f3f3f3;
  overflow: visible;
  /* Force Hardware Acceleration */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -moz-transition: -moz-transform 0.5s 0s;
  -o-transition: -o-transform 0.5s 0s;
  -webkit-transition: -webkit-transform 0.5s;
  -webkit-transition-delay: 0s;
  -webkit-transition: -webkit-transform 0.5s 0s;
  transition: -webkit-transform 0.5s 0s;
  transition: transform 0.5s 0s;
  transition: transform 0.5s 0s, -webkit-transform 0.5s 0s;
}
.megamenu__dropdown.dropdown-is-active {
  z-index: 12;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -moz-transition: -moz-transform 0.5s 0s;
  -o-transition: -o-transform 0.5s 0s;
  -webkit-transition: -webkit-transform 0.5s;
  -webkit-transition-delay: 0s;
  -webkit-transition: -webkit-transform 0.5s 0s;
  transition: -webkit-transform 0.5s 0s;
  transition: transform 0.5s 0s;
  transition: transform 0.5s 0s, -webkit-transform 0.5s 0s;
}
.megamenu__nav {
  width: 100%;
  height: 100%;
}
.megamenu__nav > ul > li:hover > a {
  background-color: #ffffff;
}

.megamenu__trigger {
  display: block;
  position: fixed;
  top: 3px;
  left: 10px;
  z-index: 11;
  padding: 16px 0;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 25px;
  color: #231f20;
  font-weight: 700;
}

@media screen and (max-width: 770px) {
  .megamenu__trigger {
    top: 10px;
    left: 12px;
  }
}

.megamenu__trigger .burger-menu {
  margin-right: 15px;
  vertical-align: top;
}
.megamenu__trigger.dropdown-is-active {
  background-color: #f3f3f3;
}
.megamenu__trigger.dropdown-is-active .burger-menu {
  margin-left: 15px;
}
.megamenu__trigger.dropdown-is-active .burger-menu .icon-bar {
  visibility: hidden;
}
.megamenu__trigger.dropdown-is-active .burger-menu .icon-bar:nth-child(2) {
  visibility: visible;
  width: 15px;
}
.megamenu__close {
  cursor: pointer;
  /* 'X' close icon - mobile version only */
  position: absolute;
  z-index: 12;
  right: 0;
  top: 0;
  height: 45px;
  width: 45px;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  color: transparent;
}
.megamenu__close::after, .megamenu__close::before {
  /* this is the 'X' icon */
  content: '';
  position: absolute;
  height: 20px;
  width: 2px;
  background-color: #a3a3a4;
  z-index: 12;
  top: 50%;
  left: 50%;
}
.megamenu__close::after {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.megamenu__close::before {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.megamenu__close:hover {
  cursor: pointer;
}
.megamenu__close:hover::after, .megamenu__close:hover::before {
  background-color: #231f20;
}
.megamenu__title {
  color: #231f20;
  text-transform: uppercase;
  font-weight: 700;
}
#js-megamenu-nav.move-out li.megamenu-nav__item a.megamenu__close{
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0)
}
.megamenu-nav, .megamenu-nav ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  background-color: #ececec;
}
.megamenu-nav li, .megamenu-nav ul li {
  display: block;
  position: static;
}
.megamenu-nav a, .megamenu-nav ul a {
  display: block;
  padding: 13px 20px 13px 20px;
  font-size: 15px;
  line-height: 18px;
}

.megamenu-nav a .menu-title.title-icon{
  margin: 15px 0;
  display: block;
  margin-left: 60px;
}

.megamenu-nav a .menu-title.title-icon.two_lines{
  margin-top: 6px;
  margin-bottom: 6px;
}

.megamenu-nav a .menu-icon{
  display: block;
  float: left;
  width: 48px;
  height: 48px;
  background-size: 100%;
}

.megamenu-nav a .count, .megamenu-nav ul a .count {
  color: #a3a3a4;
  margin-left: 5px;
}
.megamenu-nav.is-hidden, .megamenu-nav ul.is-hidden {
  /* push the secondary dropdown items to the right */
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
.megamenu-nav.is-hidden > li > a, .megamenu-nav.move-out > li > a, .megamenu-nav ul.is-hidden > li > a, .megamenu-nav ul.move-out > li > a {
  /* lower down the dropdown items opacity - when secondary dropdown slides in or for dropdown items hidden on the right */
}
.megamenu-nav.move-out > li > a, .megamenu-nav ul.move-out > li > a {
  /* push the dropdown items to the left when secondary dropdown slides in */
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
.dropdown-is-active .megamenu-nav, .dropdown-is-active .megamenu-nav ul {
  -webkit-overflow-scrolling: touch;
}

.has-children > a {
  position: relative;
  padding: 13px 45px 13px 20px;
}

.go-back > span {
  cursor: pointer;
  display: block;
  position: relative;
  padding: 13px 20px 13px 45px;
}
.go-back > span::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.go-back > span::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.go-back > span::before, .go-back > span::after {
  /* arrow icon in CSS - for element with nested unordered lists */
  content: '';
  position: absolute;
  top: 50%;
  left: 28px;
  margin-top: -1px;
  margin-left: -5px;
  display: inline-block;
  height: 2px;
  width: 10px;
  background: #a3a3a4;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: 1px 50%;
  transform-origin: 1px 50%;
}

.see-all a {
  color: white;
  text-align: center;
}

.mgm-item-category > a {
  color: #ff7436;
}

.mgm-item-group__title {
  display: block;
  padding: 13px 20px;
  color: #a3a3a4;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.mgm-item-group__title:hover {
  text-decoration: none;
}

.not-link {
  cursor: default;
}
.not-link:hover {
  text-decoration: none !important;
}

.mega-group {
  margin-top: 15px;
  text-decoration: none;
}
.mega-group:hover {
  text-decoration: none;
}

.js-show-subcategories {
  position: absolute;
  top: 0;
  right: 0;
  width: 45px;
  height: 45px;
  text-align: center;
  color: transparent;
}
.js-show-subcategories::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.js-show-subcategories::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.js-show-subcategories::before, .js-show-subcategories::after {
  /* arrow icon in CSS - for element with nested unordered lists */
  content: '';
  position: absolute;
  top: 50%;
  right: 50%;
  margin-top: -1px;
  margin-right: -5px;
  display: inline-block;
  height: 2px;
  width: 10px;
  background: #a3a3a4;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: 9px 50%;
  transform-origin: 9px 50%;
}

@media (min-width: 992px) {
  .megamenu {
    width: 100%;
  }
  .megamenu__nav {
    overflow: inherit;
    position: static;
  }
  .megamenu__heading {
    display: none !important;
  }
  .megamenu__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    height: auto;
    width: auto;
    min-width: 100%;
    opacity: 0;
    z-index: -1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  .megamenu__dropdown.dropdown-is-active {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -moz-transition: opacity 0.3s 0s, visibility 0.3s 0s, -moz-transform 0.3s 0s;
    -o-transition: opacity 0.3s 0s, visibility 0.3s 0s, -o-transform 0.3s 0s;
    -webkit-transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
    -webkit-transition-delay: 0s, 0s, 0s;
    -webkit-transition: opacity 0.3s 0s, visibility 0.3s 0s, -webkit-transform 0.3s 0s;
    transition: opacity 0.3s 0s, visibility 0.3s 0s, -webkit-transform 0.3s 0s;
    transition: opacity 0.3s 0s, visibility 0.3s 0s, transform 0.3s 0s;
    transition: opacity 0.3s 0s, visibility 0.3s 0s, transform 0.3s 0s, -webkit-transform 0.3s 0s;
  }
  .megamenu__dropdown .has-children > ul {
    visibility: hidden;
  }
  .megamenu__dropdown .has-children > ul.is-active {
    /* when hover over .cd-dropdown-content items - show subnavigation */
    visibility: visible;
  }
  .megamenu__dropdown .has-children > .cd-secondary-dropdown.is-active > li > ul {
    /* if .cd-secondary-dropdown is visible - show also subnavigation */
    visibility: visible;
  }
  .megamenu__trigger {
    position: relative;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    display: block;
  }
  .megamenu .secondary-dropdown {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    left: 100%;
    height: auto;
    min-height: 100%;
    background-color: #ffffff;
    border: 1px solid #f3f3f3;
    border-left: none;
    min-width: 728px;
    letter-spacing: -4px;
    overflow: inherit;
  }
  .open-to-left .megamenu .secondary-dropdown {
    /* use the .open-to-left class if you want to open the dropdown on the left */
    left: auto;
    right: 100%;
  }
  .megamenu .secondary-dropdown.is-hidden {
    /* reset mobile style */
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .megamenu .secondary-dropdown.fade-in {
    /* animate secondary dropdown items when hovering over of of the .cd-dropdown-content list items */
    -webkit-animation: cd-fade-in 0.2s;
    animation: cd-fade-in 0.2s;
  }
  .megamenu .secondary-dropdown.fade-out {
    /* animate secondary dropdown items when hovering over of of the .cd-dropdown-content list items */
    -webkit-animation: cd-fade-out 0.2s;
    animation: cd-fade-out 0.2s;
  }
  .megamenu .secondary-dropdown a:hover {
    text-decoration: underline;
  }
  .megamenu .secondary-dropdown .go-back {
    display: none;
  }
  .megamenu .secondary-dropdown .see-all {
    display: none;
  }
  .megamenu .secondary-dropdown > * {
    display: inline-block;
    vertical-align: top;
    float: none;
    letter-spacing: normal;
  }
  .megamenu .secondary-dropdown > li {
    overflow: hidden;
    margin-bottom: 15px;
  }
  .megamenu .secondary-dropdown > li > a {
    color: #ff7436;
  }
  .megamenu .secondary-dropdown > li > a .js-show-subcategories {
    display: none;
  }
  .megamenu .secondary-dropdown > li > ul {
    visibility: hidden;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    position: relative;
    height: auto;
  }
  .megamenu .secondary-dropdown > li > ul li a {
    padding: 5px 20px;
  }
  .megamenu .secondary-dropdown.is-active > li > ul {
    visibility: visible;
  }
  .megamenu .secondary-dropdown .mgm-item-category > a {
    color: #ff7436;
  }
  .megamenu .secondary-dropdown .mgm-item-group__title {
    display: block;
    padding: 13px 20px;
    color: #a3a3a4;
    font-weight: 700;
  }

  .megamenu-nav {
    /* reset mobile style */
    position: static;
    height: auto;
  }
  .megamenu-nav ul {
    background-color: #fff;
  }
  .megamenu-nav.move-out > li > a {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@media (min-width: 1200px) {
  .megamenu .secondary-dropdown {
    min-width: 878px;
  }
}
@-webkit-keyframes cd-fade-in {
  0% {
    opacity: 0;
    visibility: visible;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes cd-fade-in {
  0% {
    opacity: 0;
    visibility: visible;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@-webkit-keyframes cd-fade-out {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: visible;
  }
}
@keyframes cd-fade-out {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: visible;
  }
}
/*
    Burger Menu Icon
*/
.burger-menu {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.burger-menu .icon-bar {
  display: block;
  height: 4px;
  width: 34px;
  background-color: #231f20;
  margin-bottom: 7px;
  -webkit-transition: width 0.2s ease-in-out;
  transition: width 0.2s ease-in-out;
}
.burger-menu .icon-bar:nth-child(3) {
  margin-bottom: 0;
}

.burger-text {
  visibility: hidden;
  display: none;
}


@media (min-width: 992px) {
  .burger-text {
    visibility: visible;
    display: inline-block;
  }
}

@media (max-width: 991px) {
  .megamenu__nav li li.mgm-item-group > a:hover {
    background-color: #ffffff;
  }
  .megamenu__nav li .mgm-item-group__category:hover{
    background-color: #ffffff;
  }
}
