.axio-mega-menu {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);

  width: 100vw;
  max-height: calc(100vh - 100px);

  /* background: #fff; */
  background: #d6e1f2;
  display: none;
  z-index: 99999;

  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  padding: 60px;
  gap: 30px;
  align-items: stretch;
}

.mega-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.mega-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 40px;
  background: none;
  border: 0;
  cursor: pointer;
  color: #4172b6;
}

.mega-widget h2 {
  color: #4172b6;
  font-size: 1.325rem;
  text-align: center;
}


@media (max-width: 768px) {

  .axio-mega-menu {
    top: 95px;
  }

  .mega-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mega-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .mega-widget {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .mega-widget ul {
    padding: 0;
    list-style: none;
    text-align: center;
  }

  .mega-widget li {
    text-align: center;
  }

  /* chiusura sticky */
  .mega-close {
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 40px;
    background: none;
    border: 0;
    cursor: pointer;
    z-index: 100000;
  }

}