.common-menu-flex-container {
  padding-bottom: 60px;
  width: 100%;
  display: flex;
  gap: 50px;

  @media screen and (max-width: 768px) {
    flex-direction: column;
    gap: 20px;
  }

  .common-menu-content {
    flex: 1;

    &.island {
      overflow: hidden;
      border-radius: 10px;
      background-color: white;
      box-shadow: 0 3px 6px #0000000A;
    }
  }
}