.Header-mobile {
  background: #110f35;
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 100%;
  min-width: 380px;
  max-width: 380px;
  transition: all 400ms ease-in-out;
  overflow: auto;
  overflow-y: scroll;
  z-index: 999999;

  .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 16px;

    .logo {
      max-width: 111px;
    }
  }

  .header-content {
    padding: 23px;
  }

  .Button-close {
    background: transparent;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 24px;
  }

  nav {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding-bottom: 150px;

    ul {
      display: flex;
      flex-direction: column;
      gap: 24px;

      li {
        a {
          display: flex;
          align-items: center;
          justify-content: space-between;
          font-size: 18px;
          color: #fff;
        }
      }
    }
  }

  .links {
    gap: 16px;

    .Button {
      width: 100%;
    }
  }

  .app {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);

    p {
      color: rgba(255, 255, 255, 0.4);
      font-size: 14px;
      font-style: normal;
      font-weight: 600;
      line-height: normal;
      padding-bottom: 14px;
    }

    div {
      gap: 16px;

      .Button {
        height: 40px;
        border: 1px solid rgba(255, 255, 255, 0.24);
        padding: 0 16px;
      }
    }
  }
}

.mfp-ready .Header-mobile {
  right: 0;
}
.mfp-removing .Header-mobile {
  right: -100%;
}
