#modal.sign-modal {
  padding-right: 90px;
  height: 90px;
  justify-content: center;
  top: 20%;
}
#modal.sign-modal,
header {
  display: flex;
  align-items: center;
}
header {
  flex-direction: row;
  justify-content: space-between;
  box-sizing: border-box;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  transition: 0.3s;
  border-bottom: 1px solid #e8e8e8;
  max-width: 1440px;
  position: fixed;
  z-index: 2;
  padding: 16px 24px 16px 264px;
  margin: auto;
}
header .left p {
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.045em;
  font-weight: 400;
  margin: 0;
}
header .menu {
  display: none;
}
header .logout {
  border-radius: 10px;
  height: 48px;
  width: 48px;
}
header .left {
  display: flex;
  align-items: center;
  gap: 200px;
}
header .left label {
  display: flex;
  gap: 10px;
  align-items: center;
}
header .left label p {
  margin: 0;
}
header .left label .session_wallet-block {
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.045em;
  font-weight: 400;
  border: 1px solid #e8e8e8;
  background: #fff;
  border-radius: 100px;
  color: #000;
  display: flex;
  gap: 12px;
  padding: 8px 8px 8px 16px;
  align-items: center;
}
header .left label .session_wallet-block .copy_ref {
  width: 32px;
  height: 32px;
  border-radius: 100px;
  background: #e8e8e8;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .right {
  display: flex;
  align-items: center;
  gap: 16px;
}
header .right .btn {
  width: 48px;
  height: 48px;
  background: #fff;
  border: 1px solid #e8e8e8;
}
header h1 {
  font-size: 24px;
  line-height: 140%;
  letter-spacing: -0.045em;
  font-weight: 500;
  margin: unset;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 20px;
}
header button.btn {
  text-align: center;
  padding: 15px;
}
header button.btn:after {
  display: none;
}
@media screen and (max-width: 860px) {
  header {
    padding: 10px 15px;
  }
  header .menu {
    display: block;
    border: 1px solid #e8e8e8;
    background-image: url(/images/menu-burger.svg);
    background-position: 50%;
    background-size: 24px 24px;
    background-repeat: no-repeat;
    width: 48px;
    height: 48px;
    border-radius: 10px;
  }
  header.stick {
    padding: 7px 15px;
  }
  header .left label .session_wallet-block,
  header .no-wallet,
  header .wallet-connected-label {
    display: none;
  }
  header .left {
    gap: 20px;
  }
  header .left h1 {
    display: none;
  }
}
