.menu-noWalletsContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border: 1px solid #e4e4e4;
  border-radius: 45px;
  min-height: 300px;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.03),
    0 12px 24px rgba(0, 0, 0, 0.06),
    0 32px 64px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.menu-header {
  max-width: 1300px;
  width: 100%;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 15px;
}

.menu-headerLogo {
  width: 100px;
}

.menu-headerTitle {
  font-size: 48px;
  margin-bottom: 0px;
}

.menu-headerSubtitle {
  font-weight: 500;
  color: #787878;
  margin-top: 0px;
  font-size: 32px;
}

.menu-mainContainer {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
  max-width: 1100px;
  width: 100%;
}

.menu-currencyContainer {
  width: 100%;
}

.menu-currencyText {
  font-weight: 500;
  color: #787878;
  margin-top: 0px;
}

.menu-currencyButtons {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.menu-currencyButton {
  display: flex;
  font-family: inherit;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  background-color: #ffffff;
  border: 1px solid #e4e4e4;
  color: #787878;
  font-weight: 600;
  max-width: 90px;
  width: 100%;
  gap: 10px;
  padding: 10px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-currencySpan {
  color: #9f9f9f;
  background-color: #e9e9e9;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 7px;
  padding-bottom: 7px;
  margin: 0;
  border-radius: 50%;
}

.menu-currencyButton--active {
  background-color: #0c6fff;
  color: #ffffff;
}

.menu-currencyButton--active .menu-currencySpan {
  background-color: #ffffff6c;
  color: #ffffff;
}

.menu-walletContainer {
  display: flex;
  flex-direction: row;
  gap: 30px;
  max-width: 1100px;
  width: 100%;
}

.menu-walletsCardAmount {
  display: flex;
  font-family: inherit;
  background-color: #00000000;
  border: 1px solid #00000034;
  color: #6e6e6e;
  width: 40px;
  height: 40px;
  text-align: center;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 600;
  margin: 0px;
}

.menu-wallet {
  display: inline-block;
  margin-top: 45px;
  border-radius: 45px;
  background-color: #ffffff;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.03),
    0 12px 24px rgba(0, 0, 0, 0.06),
    0 32px 64px rgba(0, 0, 0, 0.1);
  overflow-x: auto;
  overflow-y: hidden;
  width: fit-content;
  max-width: 700px;
  width: 100%;
  padding: 50px;
  position: relative;
  z-index: 200;
  border: 1px solid #e4e4e4;
}

.menu-walletText {
  font-weight: 500;
  color: #787878;
  margin-top: 0px;
}

.menu-walletBalance {
  font-size: 128px;
  margin-top: 70px;
  margin-bottom: 0px;
}

.menu-walletTextDiv {
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-walletCardNumberContainer {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

.menu-walletCardNumber {
  color: #787878;
  font-weight: 600;
  margin: 0px;
}

.menu-walletCardProfile {
  border: none;
  background-color: #ffffff;
  cursor: pointer;
}

.menu-manageWalletContainer {
  margin-top: 45px;
  padding: 50px;
  background-color: #ffffff;
  border: 1px solid #e4e4e4;
  border-radius: 45px;
}

.menu-manageWalletText {
  margin-top: 0px;
  color: #787878;
  font-weight: 500;
}

.menu-manageWalletButtons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 230px;
  margin-top: 70px;
  gap: 10px;
}

.menu-manageWalletAdd,
.menu-manageWalletTransfer,
.menu-manageWalletWithdraw {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  color: #000000;
  width: 100%;
  font-weight: 600;
  background-color: #f8f8f8;
  border: none;
  padding: 8px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.menu-manageWalletAddIconDiv {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  background-color: #0c6fff;
  transition: all 0.3s ease;
}
.menu-manageWalletTransferIcon {
  width: 30px;
  padding: 5px;
}

.menu-manageWalletWithdrawIcon {
  width: 25px;
  padding: 7.5px;
}

.menu-manageWalletTransferIconDiv,
.menu-manageWalletWithdrawIconDiv {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  background-color: #d8d8d8;
  transition: all 0.3s ease;
}

.menu-latestActionsContainer {
  margin-top: 45px;
  box-sizing: border-box;
  padding: 50px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 45px;
  border: 1px solid #e4e4e4;
  position: relative;
  z-index: 1;
}

.menu-latestActionsText {
  color: #787878;
  font-weight: 500;
}

.menu-latestActionsTextDiv {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.menu-latestActionsNoActions {
  padding: 20px;
  background-color: #f8f8f8;
  font-weight: 500;
  color: #787878;
  width: fit-content;
  border-radius: 40px;
  font-family: inherit;
}

.menu-newsSection {
  margin-top: 45px;
  padding: 50px;
  padding-right: 0px;
  border-radius: 45px;
  background-color: #ffffff;
  border: 1px solid #e4e4e4;
}

.menu-newsContainer::-webkit-scrollbar {
  border-radius: 999px;
  transition: all 0.3s ease;
}

.menu-newsContainer::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: transparent;
  border: 3px solid #ffffff;
  cursor: pointer;
  transition: all 0.5s ease;
}

.menu-newsContainer::-webkit-scrollbar-thumb:hover {
  background: #c0c0c0;
}

.menu-newsContainer {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  overflow-y: hidden;
}

.menu-newsBlog {
  padding: 20px;
  border-radius: 40px;
  height: auto;
  border-right: 1px solid #e4e4e4;
}

.menu-newsBlogTitle {
  font-weight: 500;
}

.menu-newsText {
  color: #787878;
  font-weight: 500;
}

.menu-newsBlogDate {
  margin-top: 30px;
  font-size: 13px;
  color: #aeaeae;
}

.menu-newsBlogSubtitle {
  color: #7d7d7d;
  margin-top: 20px;
  margin-bottom: 30px;
}

.menu-newsBlogButton {
  width: 100%;
  padding: 20px;
  border-radius: 30px;
  background-color: #f8f8f8;
  border: 1px solid #e4e4e4;
  font-family: inherit;
  color: #000000;
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-newsBlogButton:hover {
  background-color: #ffffff;
}

.menu-benefitsContainer {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 45px;
}

.menu-benefitsDiv {
  max-width: 300px;
  width: 100%;
  padding: 50px;
  background-color: #ffffff;
  border-radius: 45px;
  border: 1px solid #e4e4e4;
  transition: all 0.3s ease;
  position: relative;
  z-index: 200;
}

.menu-benefitsDiv:hover {
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.03),
    0 12px 24px rgba(0, 0, 0, 0.06),
    0 32px 64px rgba(0, 0, 0, 0.1);
}

.menu-benefitsHeader {
  color: #787878;
  margin-top: 0px;
  margin-bottom: 0px;
  font-weight: 500;
}

.menu-benefitsIcon {
  margin-top: 60px;
}

.menu-benefitsTitle {
  font-weight: 500;
  font-size: 20px;
}

.menu-benefitsSubtitle {
  margin-bottom: 0px;
  color: #787878;
}

.menu-logoutButtonContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 45px;
  margin-top: 45px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.menu-logoutButton {
  padding: 20px;
  width: 100px;
  background-color: #ffffff;
  border: 1px solid #e4e4e4;
  border-radius: 40px;
  color: #000000;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.menu-needHelpButton {
  padding: 20px;
  max-width: 160px;
  width: 100%;
  margin-right: 15px;
  background-color: #ffffff;
  font-family: inherit;
  border: none;
  color: #000000;
  border: 1px solid #e4e4e4;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 600;
}

.menu-logoutButton:hover,
.popup-noButton:hover,
.continueAsGuest-button:hover,
.addCard-guestCardButton:hover,
.menu-needHelpButton:hover {
  background-color: #f6f6f6;
}
