#desktop-menu-placeholder {
  display: none;
}
@media screen and (min-width: 1100px) {
  .hidden-on-desktop {
    display: none;
  }
  #desktop-menu-placeholder {
    display: block;
    .main-desktop-link-list {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      height: 100%;
      li {
        padding: 0;
        line-height: 100%;
        overflow: hidden;
        opacity: 0.6;
        a {
          font-weight: 400;
        }
      }
      li:hover {
        opacity: 1;
      }
      li:not(:first-child) {
        border-left: 1px solid #fff;
        padding-left: 0.7rem;
        padding-right: 0.2rem;
      }
    }
  }
}
@media screen and (min-width: 1200px) {
  .hidden-on-desktop {
    display: none;
  }
  #desktop-menu-placeholder {
    display: block;
    .main-desktop-link-list {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      height: 100%;
      li {
        padding: 0;
        line-height: 100%;
        overflow: hidden;
        opacity: 0.6;
        a {
          font-weight: 400;
        }
      }
      li:hover {
        opacity: 1;
      }
      li:first-child {
        padding-right: .6rem;
      }
      li:not(:first-child) {
        border-left: 1px solid #fff;
        padding-left: 1rem;
        padding-right: 0.5rem;
      }
    }
  }
}
