/* container wallet */
.wallet {
  display: flex;
  justify-content: space-between;

  max-width: 80rem;
  min-height: 52.5rem;
  margin: 3.75rem auto;

  padding: 70px 0px 70px 140px;
  padding-bottom: 0;

  background: rgba(239, 236, 254, 0.5)
    url("../../assetsBlockchain/homepage/homepage-app-shapes-bg.png") no-repeat
    right bottom 2.5rem;

  border-radius: 1rem;
}

.wallet-content {
  color: #7349f2;
  flex: 1;
}

.wallet-btn {
  background: rgb(239, 236, 254);
  padding: 16px;
  margin-bottom: 1.25rem;
  border-radius: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;

  width: fit-content;
}
.wallet-btn > .img {
  width: 32px;
  display: grid;
  place-items: center;
}
.wallet-btn img {
  height: 32px;
}
.wallet-btn > p {
  margin-left: 10px;
  font-size: 18px;
}

.wallet h2 {
  margin: 0px 0px 1.875rem;
  max-width: 30.5rem;
  font-size: 2.5rem;
  line-height: 3.25rem;
}

.wallet-menu {
  background-color: rgb(247, 245, 255);

  border: 1px solid rgb(222, 216, 253);

  margin-bottom: 0.75rem;
  padding: 1rem 1.25rem 1rem;

  max-width: 30.5rem;
  border-radius: 0.75rem;
  line-height: 1.5rem;
  max-height: 100%;
  cursor: pointer;
}

.wallet-menu > h3 {
  color: rgb(115, 73, 242);
  font-weight: 600;
  font-size: 1rem;
  transition: 0.25s ease 0s;
}

.wallet-menu > p {
  max-width: 80%;
  margin-top: 0px; /*8px*/
  font-size: 1rem;
  font-weight: 400;
  height: 0;
  overflow: hidden;
  height: 100%;
}

.wallet-menu ~ button {
  margin-top: 104px;
  padding: 0.75rem 1.375rem;

  background-color: rgb(115, 73, 242);
  color: white;
  border: 0.125rem solid rgb(115, 73, 242);
  border-radius: 0.5rem;

  font-size: 1.125rem;
  transition: 0.3s ease;
  cursor: pointer;
}

.wallet-menu ~ button:hover {
  background-color: rgb(83, 34, 229);
}

/* wallet img */

.wallet-img {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.wallet-img-mobile {
  display: none;
}

/* responsive mobile */
@media (max-width: 426px) {
  .wallet {
    padding: 16px;
    flex-direction: column;

    margin: 60px 1rem;

    background: rgba(239, 236, 254, 0.5);
  }
  .wallet h2 {
    font-size: 1.25rem;
    max-width: 22rem;
    line-height: 1.75rem;
  }

  .wallet-menu {
    display: none;
  }

  .wallet-img {
    display: none;
  }

  .wallet-menu ~ button {
    margin-top: auto;
    font-size: 0.875rem;
    padding: 0.625rem 0.875rem;
  }

  .wallet-img-mobile {
    background: url("../../assetsBlockchain/homepage/homepage-app-shapes-bg.png")
      no-repeat;
    background-size: contain;
    margin: 32px 0px 24px;

    display: grid;
    place-items: center;
  }

  .wallet-img-mobile > img {
    min-height: 350px;
    height: 375px;
    margin-left: 40px;
  }

  .wallet-scroll-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-top: 30px;
  }

  .wallet-arrow {
    display: flex;
    gap: 10px;
  }

  .wallet-arrow > div {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    width: 44px;
    top: 460px;
    bottom: auto;
    z-index: 1;

    border: 1px solid rgb(115, 73, 242);
    border-radius: 8px;
    color: rgb(115, 73, 242);
  }

  .wallet-status-menu {
    display: flex;
    gap: 8px;
  }

  .wallet-status-menu > .dash {
    background-color: rgb(222, 216, 253);
    height: 0.25rem;
    width: 1.25rem;
    margin: 0px;
    border-radius: 0.125rem;
  }
  .wallet-status-menu > :first-child {
    background-color: rgb(115, 73, 242);
  }
  .wallet-scroll-bar + div {
    margin-top: 30px;
  }
  .wallet-scroll-bar + div > h3 {
    font-size: 1rem;
  }
  .wallet-scroll-bar + div > p {
    margin-top: 10px;
    line-height: 1.5rem;
    max-width: 95%;
    opacity: 0;
    transition: opacity 0.2s;
  }

  .wallet-scroll-bar + div > h3:hover + p {
    opacity: 1;
  }
}
