
  
  /*
   * Styles: element holding navigation UI
   * 1: Position the nav 40px from the bottom and make it full-width
   * 2: Reset styles for the <fieldset> element
   */
  .nav {
    /* #1 */
    height: 100%;
    width: 100%;
    display: flex;
    position: absolute;
    z-index: 49;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    /* #2 */
    border: none;
    margin: 0 auto;
    padding: 0;
  }

  .nav > div {
    width: 90%;
    display: flex;
    height: 30px;
    align-items: center;
  }

  .nav > div > button {
    padding: 0;
    margin: auto;
    width: 30px;
  }

  .nav > div > button > img {
    margin: auto;
  }

  .nav > div:first-child {
    width: 5%;
    height: 40px;
  }

  .nav > div:nth-child(2) > ul {
    margin: auto;
    margin-top: 18%;
  }

  .nav > div:last-child {
    width: 5%;
    height: 40px;
  }
  /*
   * Styles: previous/next buttons
   * 1: Reset styles
   * 2: General styles
   * 3: Set up the `opacity` so that it will transition from 70% transparency to opaque when hovered over
   */
  .seq-next,
  .seq-prev {
    /* #1 */
    padding: 0;
    background: transparent;
    border: none;
  
    /* #2 */
    padding: .75em;
    cursor: pointer;
    color: white;
    font-size: .75em;
    text-transform: uppercase;
  
    /* #3 */
    opacity: .7;
    transition-duration: .25s;
    transition-property: opacity;
  }
  
  .seq-next:hover,
  .seq-prev:hover {
    opacity: 1;
  }
  
  /*
   * Styles: next/previous buttons and pagination container
   */
  .seq-next,
  .seq-prev,
  .seq-pagination {
    position: relative;
    display: flex;
    height: auto;
    vertical-align: middle;
    margin-top: 0;
  }
  
  /*
   * Add some space to sides of pagination
   */
  .seq-pagination {
    margin: 0 1em;
    padding: 0;
  }

  .seq-pagination > a {
    height: 10px;
  }
  
  /*
   * Styles: pagination links
   * 1: Make the links relative so their active indicator dot can be position: absolute
   * 2: Reset styles
   * 3: Make the links sit side-by-side
   * 4: General styles
   */
  .seq-pagination li {
    /* #1 */
    position: relative;
  
    /* #2 */
    list-style: none;
  
    /* #3 */
    display: flex;
    vertical-align: middle;
  
    /* #4 */
    width: 50px;
    height: 40px;
    margin: 0 .25em;
  }
  
  /*
   * Styles: A small dot that appears when a pagination link is active
   * 1: position the dot under the image and centered
   * 2: Make the dot transparent when not active and set up a transition for when it becomes active
   */
  .seq-pagination li:before {
      content: "";
      display: block;
      position: absolute;
      /* top: 100%; */
      /* left: 50%; */
      width: 6px;
      height: 6px;
      margin-left: 2px;
      margin-top: 2px;
      border-radius: 50%;
      background: white;
      opacity: 0;
      transition-duration: .25s;
      transition-property: opacity;
      z-index: 99;
  }
  
  /*
   * Show the indicator dot for the current link
   */
  .seq-pagination .seq-current:before {
    opacity: .7;
  }
  
  /*
   * Reset styles
   */
  .seq-pagination img,
  .seq-pagination a {
    display: block;
    border: none;
  }