.wpp {
  position: fixed;
  bottom: 85px;
  left: 300px;
  height: 50px;
  display: flex;
}

.wpp-float {
  position: relative;
  width: 50px;
  height: 50px;
  bottom: 0;
  left: 0;
  background-color: #3ed54d !important;
  color: #fff;
  border-radius: 50px;
  font-size: 35px;
  text-align: center;
  box-shadow: var(--primary) 0px 0px 8px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease 0s;
  text-decoration: none;
}

.wpp-float:hover {
  box-shadow: var(--primary) 0px 2px 16px;
  color: #fff;
}

.wpp-float-text {
  transform: translateX(0px);
  box-shadow: rgb(0 0 0 / 10%) 2px 2px 13px;
  flex-shrink: 0;
  border: 1px solid rgb(226, 226, 226);
  border-radius: 5px;
  background: white;
  cursor: pointer;
  margin: auto 15px;
  max-width: 172px;
  max-height: 55px;
  display: flex;
  order: 1;
  text-decoration: none !important;
  color: rgb(0, 0, 0) !important;
  bottom: 38px;
}

.wpp-float-text span {
  text-align: center;
  padding: 7px 10px;
  line-height: 14px;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 14px;
  margin: auto;
}

.wpp-float-text::before {
  content: "";
  position: absolute;
  background: white;
  border-bottom: 1px solid rgb(226, 226, 226);
  border-left: 1px solid rgb(226, 226, 226);
  left: -5px;
  top: 50%;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  z-index: 1;
  transform: rotate(-45deg);
}

.wpp-float-text::after {
  content: "";
  position: absolute;
  background: white;
  border-bottom: 1px solid rgb(226, 226, 226);
  border-left: 1px solid rgb(226, 226, 226);
  left: -5px;
  top: 50%;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  z-index: 1;
  transform: rotate(-45deg);
}

aside#sideMenu {
  position: relative;

  width: 100%;
  max-width: 285px;
  height: 100%;
}

.container-menu {
  background: radial-gradient(123.22% 129.67% at 100.89% -5.6%, var(--bg-primary) 0%, var(--bg-secondary) 100%);

  position: fixed;

  height: 100%;
  width: 100%;
  max-width: 285px;

  display: flex;
  flex-direction: column;
}

.content-menu {
  height: max-content;
}

.logo-menu a img {
  width: 110px;
  margin: 35px 30px 25px 45px;
}

.balance-available {
  position: relative;

  display: flex;
  flex-direction: row;
  align-items: center;

  width: 100%;

  background: var(--bg-primary);
}

.balance-available .coin img {
  width: 32px;
  height: 55px;
}

.user-balance {
  margin: 10px;
}

.user-balance-text {
  transition: .2s linear;
}

.user-balance h2 {
  font-weight: 400;
  font-size: 14px;
  color: var(--game-text-primary);
  opacity: 0.7;
}

.user-balance h1 {
  font-family: 'Ubuntu';
  font-weight: 400;
  font-size: 20px;
  color: var(--game-text-primary);
}

.toggle-money-visibility {
  position: relative;
  margin: 10px 20px 10px auto;
  color: var(--game-text-primary);
  padding: 10px;
  transition: top 5s ease-in;
}

.toggle-money-visibility:hover {
  bottom: 1px;
  filter: drop-shadow(0 0 10px var(--bg-shadow));
}

.blur-balance {
  filter: blur(5px);
  transition: .2s linear;
}

.side-menu {
  padding: 10px 20px;
  overflow-y: auto;
}

/* Firefox */
/*.side-menu {
  scrollbar-width: auto;
  scrollbar-color: #208e88 #0f1923;
}*/

/* Chrome, Edge, and Safari */
/*.side-menu::-webkit-scrollbar {
  width: 10px;
}

.side-menu::-webkit-scrollbar-track {
  background: radial-gradient(123.22% 129.67% at 100.89% -5.6%, #121d27 0%, #0f1923 100%);
}

.side-menu::-webkit-scrollbar-thumb {
  background: linear-gradient(91.26deg, #3ce1d9 19.13%, #208e88 65.96%);
  border-radius: 10px;
  border: 3px solid var(--bg-secondary);
}*/

.options-menu {
  margin: 25px 5px;
  position: relative;
}

/*
.options-menu.new::after {
  content: 'NOVO';
  font-size: 10px;
  position: absolute;
  right: 10px;
  font-weight: 700;
  top: 10px;
  border-radius: 100px;
  padding: 2px 10px;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0px 10px #2ac1b982;
}

.options-menu.bank::after {
  content: 'DEPÓSITO / SAQUE';
  font-size: 10px;
  position: absolute;
  right: -10px;
  font-weight: 700;
  top: 10px;
  border-radius: 100px;
  padding: 2px 10px;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0px 10px #2ac1b982;
}
*/

.options-menu .label {
  font-size: 10px;
  position: absolute;
  right: 10px;
  font-weight: 700;
  top: 10px;
  border-radius: 100px;
  padding: 2px 10px;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0px 5px var(--primary);
}

.options-menu.bank .label {
  right: -10px;
}

.options-menu.new .label {
  right: -10px;
}

.options-menu:first-child {
  margin: 10px 5px 25px 5px;
}

.options-menu:last-child {
  margin: 25px 5px 5px 5px;
}

.options-menu a {
  font-weight: 400;
  font-size: 16px;
  color: var(--text-link);

  letter-spacing: 0.5px;
  text-decoration: none;

  transition: color 0.3s linear;
  cursor: pointer;
}

.options-menu a i {
  margin: 10px;
}

.options-menu.active a {
  font-weight: 600;
  color: var(--game-text-primary);
}

.options-menu.active a i {
  background-image: linear-gradient(91.26deg, var(--text-neon) 19.13%, var(--primary) 65.96%);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  color: transparent;
}

.options-menu a:hover i {
  background-image: linear-gradient(91.26deg, var(--text-neon) 19.13%, var(--primary) 65.96%);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  color: transparent;
}

.options-menu a:hover {
  color: var(--game-text-primary);
  font-weight: 600;
}

/* CABEÇALHO USUÁRIO */
.header-user {
  border-radius: 5px;
  padding: 10px 30px;
  margin-bottom: 25px;
  background-color: var(--bg-primary);
  color: var(--game-text-primary);
}

.content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.content-header .img-logo img[alt="JOGO DO BICHO ONLINE - APOSTAR"] {
  width: 100px;
}

.content-header.mobile {
  display: none !important;
}

.options-user {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.users-content {
  display: flex;
  align-items: center;
  gap: 20px;

  & .open-notifications {
    position: relative;
    color: var(--game-text-primary);
    text-decoration: none;
    z-index: 1;
    transform: scale(1.2);

    & .badge {
      position: absolute;
      transform: scale(0.8);
      left: -10px;
      z-index: 2;
      top: -8px;
    }
  }
}

.arrow-modal {
  transition: .2s ease-in-out;
  color: var(--text-link);
  margin: 0 5px;
}

.options-user.mobile {
  display: none;
}

.icon-user {
  border-radius: 100%;
  background: var(--game-bg);
  color: var(--text-secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  font-size: 0.8rem;
  margin-right: 8px;
}

.name-user {
  font-weight: 400;
  color: var(--text-link);
}

/* MENU BURGUER */
.menu-burger {
  z-index: 13;
  position: relative;
}

.menu-burger.active {
  z-index: 14;
  position: fixed !important;
  right: 20px;
}

#menuBurguer {
  display: flex;
  flex-direction: column;
  width: 35px;
  cursor: pointer;
}

#menuBurguer .menu-burguer-lines {
  background: var(--game-text-primary);
  border-radius: 10px;
  height: 4px;
  margin: 4px 0;
  transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.menu-burguer-lines:nth-of-type(1) {
  width: 50%;
}

.menu-burguer-lines:nth-of-type(2) {
  width: 100%;
}

.menu-burguer-lines:nth-of-type(3) {
  width: 75%;
}

#verifyLinesBurguers.active~.menu-burguer-lines:nth-of-type(1) {
  transform-origin: bottom;
  transform: rotatez(45deg) translate(8px, 0px);
}

#verifyLinesBurguers.active~.menu-burguer-lines:nth-of-type(2) {
  transform-origin: top;
  transform: rotatez(-45deg);
}

#verifyLinesBurguers.active~.menu-burguer-lines:nth-of-type(3) {
  transform-origin: bottom;
  width: 50%;
  transform: translate(17px, -7px) rotatez(45deg);
}

.bg-mobile.menu-open-only {
  z-index: 12;
}

.bg-content-desc {
  border-radius: 5px;
  padding: 10px 30px;
  margin-bottom: 25px;
  background-color: var(--bg-primary);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Centraliza o conteúdo horizontalmente */
  justify-content: center;
  /* Centraliza o conteúdo verticalmente */
  text-align: center;
  /* Centraliza o texto */
}

.bg-content-desc .title {
  font-weight: 500;
  font-size: 22px;
  color: #ffffff;
  mix-blend-mode: normal;
  opacity: 0.9;
  margin: 0;
  /* Remove a margem esquerda */
}

.bg-content-desc .subtitle {
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  mix-blend-mode: normal;
  opacity: 0.6;
  margin: 0;
  /* Remove a margem esquerda */
}

.btn-menu-deposit {
  background: var(--primary);
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: 500;
  font-family: "Poppins";
  box-shadow: 0 5px 10px var(--modal-bottom);
  white-space: wrap;
}

@media (max-width: 350px) {
  .btn-menu-deposit {
    font-size: 10px;
    padding: 5px;
  }
}