header {
  position: relative;
}

.toggleProductMenu {
  cursor: pointer;
  position: relative;
}
@media all and (min-width: 901px) {
  .toggleProductMenu:after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: inline-block;
    margin-left: 5px;
    color: #F1F1F1;
    transition: transform 0.3s ease-in-out;
  }
}
.toggleProductMenu.product-arrow-flip:after {
  transform: rotate(180deg);
  transition: transform 0.3s ease-in-out;
}

.toggleProductMenu.product-arrow-flip > li::after {
  transform: rotate(180deg);
  transition: transform 0.3s ease-in-out;
}

.tiv-products-menu {
  background-color: rgba(77, 77, 77, 0.96);
  color: white;
  position: absolute;
  z-index: 999;
  left: 0;
  right: 0;
  display: none;
}
@media all and (max-width: 900px) {
  .tiv-products-menu {
    display: none !important;
  }
}

.tiv-products-menu-outer {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.tiv-products-menu-inner {
  padding: 30px 20px 30px 20px;
  display: flex;
  gap: 50px;
}

.tiv-products-menu-section {
  display: flex;
  flex-direction: column;
  flex: 1;
  max-width: 33.33%;
}
.tiv-products-menu-section h2 {
  font-family: "ProximaNova-Bold";
}

.tiv-products-menu-items {
  display: flex;
  flex-direction: column;
}

a.tiv-products-menu-item {
  color: white !important;
  display: flex !important;
}
a.tiv-products-menu-item:hover:after {
  display: none !important;
}

.tiv-products-menu-item {
  align-items: center;
  display: flex;
  gap: 15px;
  transition: all 0.2s;
  cursor: pointer;
  border-radius: 5px;
  padding: 8px;
}
.tiv-products-menu-item:hover {
  background-color: #3b3c3c;
}
.tiv-products-menu-item:hover .tiv-products-menu-item-chevron {
  color: #ab1624;
}
.tiv-products-menu-item .tiv-products-menu-item-icon img {
  width: 20px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.tiv-products-menu-item .tiv-products-menu-item-name {
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  flex: 1;
}
.tiv-products-menu-item .tiv-products-menu-item-name a {
  color: white;
}

.tiv-products-menu-items-show-all {
  margin-top: 15px;
  color: white !important;
  font-weight: 500;
  padding: 8px;
}
.tiv-products-menu-items-show-all:hover {
  background-color: #3b3c3c;
}

.hover {
  display: inline-block;
}

@media all and (min-width: 900px) {
  .hover::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #ab1624;
    transition: width 0.3s;
  }
}

@media all and (min-width: 900px) {
  .hover:hover::after {
    width: 100%;
  }
}/*# sourceMappingURL=main-style-product-menu.css.map */