@media screen and (min-width: 1551px) {
  .re-sticky-nav {
    position: fixed;
    top: 152px;
    left: 10px;
    width: 325px;
    z-index: 999;
    background: white;
    padding: 25px;
  }

  .entry-content .re-sticky-nav-inner>ul {
    margin-left: 0;
  }

  .entry-content .re-sticky-nav-inner ul>li {
    list-style-type: none;
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 1550px) {
  .re-sticky-nav {
    position: fixed;
    top: 152px;
    left: -325px;
    width: 325px;
    z-index: 999;
    background: white;
    padding: 25px;
  }

  .re-sticky-nav label {
    display: flex;
    flex-direction: column;
    width: 50px;
    cursor: pointer;
    background: white;
    position: absolute;
    top: 0;
    right: -50px;
    padding: 10px;
  }

  .re-sticky-nav label span {
    background: #000;
    border-radius: 10px;
    height: 4px;
    margin: 4px 0;
    transition: .4s cubic-bezier(0.68, -0.6, 0.32, 1.6);

  }


  .re-sticky-nav span:nth-of-type(1) {
    width: 50%;

  }

  .re-sticky-nav span:nth-of-type(2) {
    width: 100%;
  }


  .re-sticky-nav span:nth-of-type(3) {
    width: 75%;

  }


  .re-sticky-nav input[type="checkbox"] {
    display: none;
  }


  .re-sticky-nav:hover {
    left: 10px;
  }

  .entry-content .re-sticky-nav-inner>ul {
    margin-left: 0;
  }

  .entry-content .re-sticky-nav-inner ul>li {
    list-style-type: none;
    margin-bottom: 5px;
  }
}