.sticky-nav {
    background: white;
    z-index: 100;
    top: 0;
    position: sticky;
    display: flex;
    align-items: center;
    height: 88px;
    overflow: hidden;
    width: 100%;

    @media only screen and (max-width: 989px) {
        height: auto;
    }

    .sticky-nav-wrapper {
      @media only screen and (max-width: 989px) {
        flex-flow: row wrap;
        gap: 16px 0!important;
      }
    }
    
    .sticky-nav-item-prev {
      @media only screen and (max-width: 989px) {
        order: 1;
        width: 100px;
        flex-basis: unset;
      }
    }
    .sticky-nav-item-apply {
      @media only screen and (max-width: 989px) {
        order: 2;
        width: calc(100% - 100px);
        flex-basis: unset;
      }
    }
    .sticky-nav-item-nav {
      @media only screen and (max-width: 989px) {
        order: 3;
        padding-right: 0!important;
        padding-left: 0!important;
        padding-top: 16px!important;
        border-top: 1px solid rgba(0, 0, 0, 0.15);
        .post-nav {
          padding-left: 16px;
        }
      }
    }
    .share-button {
      height: 48px;
      width: 48px;
      position: relative;
      background-color: #f2f2f2;
      margin-left: 6px;
      border-radius: 100%;
      .popup-trigger {
        display: flex;
        justify-content: center;
        align-items: center;
      }
    }
    .sticky-nav-wrapper {
      align-items: center;
      @media only screen and (max-width: 989px) {
        flex-direction: row;
        gap: 16px;
        padding-top: 16px;
        padding-bottom: 16px;
        }
      .plate--column {
        min-height: unset;
      }
    }
  
    .prev-link {
      margin-right: 90px;
      position: relative;
    }
  
    .post-nav {
      position: relative;
      display: flex;
      overflow-x: scroll;
      -ms-overflow-style: none;
      scrollbar-width: none;
     
      &::-webkit-scrollbar {
        display: none;
      }
      a {
        margin-right: 32px;
        text-decoration: none;
        transition: opacity 0.3s ease-in-out;
        white-space: nowrap;
        color: #050505;
        
        &.active {
          opacity: 1;
        }
        &:not(.active) {
          opacity: 0.4;
        }
        &:not(.active):hover {
            opacity: 1;
        }

      }
      &:nth-last-child(1) {
        margin-right: 0;
      }
    }
  }
  
