.drop_heading {
  display: flex;
  align-items: center;
  cursor: pointer;
  height: 50px;
}

.menu {
  background: #161519;
  border-radius: 5px;
  filter: drop-shadow(0 0 16px rgb(19, 19, 19));
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  padding: 12px;
  top: -1000px;
  width: 0;
  height: 0;
  opacity: 0;
}

.menu.is_active {
  opacity: 1;
}

.menu_header {
  font-weight: bold;
  padding-bottom: 10px;
}

#menu_products.is_active {
  top: auto;
  width: 400px;
  height: 495px;
  transform: translate(-15px, 270px);
}

#menu_community.is_active {
  top: auto;
  width: 420px;
  height: 80px;
  transform: translate(-15px, 70px);
}

.drop_item_sub_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Add margin after menu_sect if not last */
.menu > .menu_sect:not(:last-child) {
    margin-bottom: 20px;
}


/* Add margin after fbuttons if not last */
.menu_sect > .fbutton:not(:last-child) {
    margin-bottom: 8px;
}

@media screen and (max-width: 960px) {
  .drop_heading {
    justify-content: space-between;
    height: 80px;
  }

  .menu {
    display: flex;
    flex-direction: column;
  }

  .menu.is_active {
    width: 100% !important;
    height: 100% !important;
    opacity: 1;
    padding-bottom: 20px !important;
  }

  #menu_products {
    background: transparent;
    filter: none;
    position: relative;
    transform: translate(0px, 0px) !important;
    padding: 0;
  }

  #menu_community {
    background: transparent;
    filter: none;
    position: relative;
    transform: translate(0px, 0px) !important;
    padding: 0;
  }
}
