.mobile-menu {
  display: none;

  input {
    visibility: hidden;
  }

  input + label {
    z-index: 5;
    width: 20px;
    height: 20px;
    position: absolute;

    &:hover {
      cursor: pointer;
    }

    span {
      position: absolute;
      width: 100%;
      height: 2px;
      top: 50%;
      margin-top: -1px;
      left: 0;
      display: block;
      background: #000;
      transition: .5s;
    }

    span:first-child {
      top: 3px;
    }

    span:last-child {
      top: 16px;
    }

  }

  input:checked + label {

    span {
      top: 50%;
      opacity: 0;


      &:first-child {
        opacity: 1;
        transform: rotate(405deg);
      }

      &:last-child {
        opacity: 1;
        transform: rotate(-405deg);
      }

    }

  }

  input ~ .mobile-links {
    background: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 3;
    transition: .5s;
    transition-delay: .5s;
    overflow: hidden;
    display: none;

    > ul {
      top: 16%;
      padding: 0;
      margin: 0 auto;
      text-align: center;
      position: relative;

      > li {
        opacity: 0;
        transition: .5s;
        transition-delay: 0s;

        a {
          display: flex;
          margin: 15px;
          color: #444444;
          font-size: 22px;
          font-weight: 700;
          align-items: center;
          text-decoration: none;
          justify-content: center;
          text-transform: uppercase;
          font-family: MyriadProRegular;

          .speech-bubble {
            margin: 0;
            height: 18px;
            font-size: 10px;
            margin-right: 10px;
            width: 18px !important;

            &:after {
              z-index: -10;
              margin-right: -6px;
              border-top-width: 12px;
              border-left-width: 12px;
            }

          }

        }

        .top {
          display: none;

          ul {
            margin: 0;
            padding: 0;
            margin-bottom: 15px;

            li {
              margin-top: 15px;

              a {
                font-size: 12px;
              }

            }

          }

        }

        &.has-children {
          display: flex;
          flex-direction: column;

          a {
            margin-top: 0;
            margin-bottom: 0;
          }

          .expandable {
            display: flex;
            align-items: center;
            justify-content: center;

            span {
              font-size: 16px;
              font-weight: 700;
              font-family: MyriadProRegular;
            }

          }

        }

      }

    }

  }

  input:checked ~ .mobile-links {
    height: 100%;
    transition-delay: 0s;
    display: block;

    > ul {

      > li {

        opacity: 1;
        transition-delay: .5s;
      }

    }

  }

}