.tradicional {
    position: relative;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(
      180deg,
      #FDD880 16.39%,
      #FDD880 20.51%,
      #FDD880 24.79%,
      #FDD880 30.46%,
      #FDD880 34.11%,
      #FDD880 36.21%,
      #FDD880 100%
    );
    display: flex;
    flex-direction: row;
  }
  
  /* ESTILIZAÇÃO JOGO */
  .main-games {
    width: calc(100% - 280px);
    /* max-width: 100%; */
    padding: 15px 18px;
    display: flex;
    flex-direction: column;
  }
  select option {
    color: black !important;
  }
  /* HEADER ETAPAS */
  .header-steps {
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 25px;
  }
  
  .content-header-steps {
    width: 100%;
    position: relative;
  }
  
  .progress-bar {
    display: flex;
  }
  
  span.contents-progress {
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    height: 4px;
    background: #636363;
    position: relative;
    transition: width 0.5s linear;
  }
  
  span.contents-progress:first-child {
    border-radius: 100px 0 0 100px;
  }
  
  span.contents-progress:last-child {
    border-radius: 0 100px 100px 0;
  }
  
  .line-progress {
    position: absolute;
    left: 0;
    width: 0;
    height: 4px;
    transition: .8s linear;
  }
  
  span.contents-progress:first-child .line-progress {
    border-radius: 100px 0 0 100px;
  }
  
  span.contents-progress:last-child .line-progress {
    border-radius: 0 100px 100px 0;
  }
  
  span.contents-progress.active .line-progress {
    position: absolute;
    left: 0;
    height: 4px;
    width: 100%;
    z-index: 1;
    background: #FDD880;
    box-shadow: 0 0 10px #FDD880;
  }
  
  span.contents-progress.active .content-circle-progress {
    border-color: #FDD880;
  }
  
  span.contents-progress.active.finished .line-progress {
    width: 100%;
    z-index: 1;
    background: #FDD880;
    box-shadow: 0 0 10px #FDD880;
  }
  
  span.contents-progress.active.finished .content-circle-progress {
    border-color: #FDD880;
    background: #FDD880;
  
  }
  
  .name-progress {
    position: absolute;
    bottom: 26px;
    font-size: 12px;
    text-align: center;
  }
  
  .content-circle-progress {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #AEAEAE;
    border-radius: 100px;
    background: var(--bg-primary);
    transition: ease-in-out .5s;
    position: relative;
    z-index: 2;
    color: black;
  }
  
  /* SESSÃO DE JOGOS */
  #stepsGames {
    position: relative;
    background-color: var(--bg-primary);
    padding: 35px;
    border-radius: 5px;
  }
  
  .effect-first-step::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: 0px;
    right: 0px;
    background: #FDD880;
    filter: blur(55px);
  }
  
  .btn-back {
    color: #a2a1a1;
    margin: 0px 10px 35px;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
  }
  
  .btn-back span {
    font-size: 0.7rem;
    border-radius: 100px;
    border: 1px solid #a2a1a1;
    margin-right: 10px;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .btn-back span i {
    color: #fff;
  }
  
  /* CONFIG PADRÃO - JOGOS */
  .container-add-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
  }
  
  .container-add-numbers button {
    color: #fff;
    height: 25px;
    width: 25px;
    background: #FDD880;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    transition: 0.25s ease-in-out;
  }
  
  #valueNumbers {
    color: #fff;
    font-weight: 700;
    background: var(--bg-secondary);
    padding: 10px 20px;
    border-radius: 10px;
  }
  
  .separator-steps {
    opacity: 0.1;
    border-radius: 100px;
  }
  
  .header-games {
    margin: 10px;
  }
  
  .header-games .title {
    font-weight: 500;
    font-size: 22px;
    color: #ffffff;
    mix-blend-mode: normal;
    opacity: 0.9;
  }
  
  .header-games .title span {
    font-weight: 700;
  }
  
  .header-games .subtitle {
    font-weight: 400;
    font-size: 16px;
    display: flex;
    align-items: center;
    color: #ffffff;
    mix-blend-mode: normal;
    opacity: 0.6;
  }
  
  /* JOGOS FAVORITOS */
  
  .star-animate {
    position: absolute;
    top: -15px;
    left: -15px;
    /* background: url(../images/stars.png) */
    width: 50px;
    height: 50px;
    background: url(../images/stars.png) no-repeat;
    background-position: 0 0;
    cursor: pointer;
    background-size: cover;
    transition: background-position 1s steps(28);
    transition-duration: 0s;
  
    &.is-active {
      transition-duration: 1s;
      background-position: -1400px 0;
    }
  }
  
  .favorite-games {
    margin: 20px 10px;
    display: none;
  }
  
  #myFavoriteGames {
    display: flex;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    padding-left: 25px;
  }
  
  #myFavoriteGames.disabled {
    cursor: no-drop;
  }
  
  #myFavoriteGames.disabled > * {
    cursor: no-drop;
  }
  
  #myFavoriteGames > strong {
    color: #FDD880;
  }
  
  #myFavoriteGames > i  {
    color: #FDD880;
    text-shadow: 0 0 15px #FDD880;
    animation: pulse 1s infinite alternate;
    margin-right: 5px;
  }
  
  @keyframes pulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
  }
  
  .content-favorite {
    margin: 15px;
  }
  
  #saveFavoritesGuesses {
    color: #fff;
    cursor: pointer;
    position: relative;
    padding-left: 25px;
  }
  
  #saveFavoritesGuesses.active > i {
    color: #FDD880;
    text-shadow: 0 0 15px #FDD880;
    margin-right: 5px;
  }
  
  /* MODALIDADES */
  .header-modalities {
    margin: 30px 10px;
  }
  
  .content-modalities {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    scrollbar-width: auto;
    scrollbar-color: #208e88 #17153a;
  }
  
  .content-modalities::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }
  
  .content-modalities::-webkit-scrollbar-track {
    background: radial-gradient(
      123.22% 129.67% at 100.89% -5.6%,
      #201d47 0%,
      #17153a 100%
    );
    border-radius: 100px;
  }
  
  .content-modalities::-webkit-scrollbar-thumb {
    background: linear-gradient(91.26deg, #3ce1d9 19.13%, #208e88 65.96%);
    border-radius: 10px;
    border: 3px solid var(--bg-secondary);
  }
  
  .btn-modalities {
    /*opacity: 0.4;*/
    border: 1px solid rgba(255, 255, 255);
    border-radius: 100px;
    color: #fff;
    font-size: 14px;
    padding: 8px 20px;
    margin: 5px;
    white-space: nowrap;
    transition: 0.3s ease;
  }
  
  .btn-modalities.animate {
    opacity: 0.8;
  }
  
  .btn-modalities:hover {
    opacity: 1;
    transform: scale(1.025);
  }
  
  .btn-modalities.active {
    background: #FDD880;
    border-color: #FDD880;
    color: #000;
    opacity: 1;
    box-shadow: 0 5px 10px #00000067;
  }
  
  .btn-modalities:disabled {
    opacity: 0.2;
    cursor: no-drop;
  }
  
  .btn-modalities:disabled:hover {
    opacity: 0.2;
    transform: scale(1);
  }
  
  /* BOTÃO PRÓXIMO PASSO */
  
  .next-step {
    display: none;
    /* width: 100%; */
  }
  
  /* .next-step-mobile {
    display: none !important;
  } */
  
  .next-step-mobile .btn-next {
    margin: 5px !important;
    padding: 12px 32px !important;
    width: unset;
  }
  
  
  .btn-next {
    background: #FDD880;
    color: #000;
    font-weight: 700;
    padding: 12px 38px;
    border-radius: 100px;
    display: block;
    margin: 20px auto 0px;
    width: 140px;
    transition: 0.2s ease;
  }
  
  /* .btn-next:disabled {
    display: none !important;
  } */
  
  .btn-next:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px #00000067;
  }
  
  .step-final {
    display: flex;
    flex-direction: column;
    margin: 10px;
  }
  
  .content-final {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 20px 0px;
  }
  
  .btn-final {
    background: #FDD880;
    color: #000;
    font-weight: 700;
    padding: 12px 38px;
    border-radius: 100px;
    display: block;
    /* margin: 30px 0px 10px auto; */
    transition: 0.2s ease;
  }
  
  .btn-next:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px #00000067;
  }
  
  /* GRUPOS */
  .container-select-animal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .content-select-animal {
    height: 110px;
    width: calc(100% / 5 - 10px);
    margin: 5px;
  }
  
  .img-select-animal {
    width: 100%;
    height: 100%;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
    border-radius: 10px;
    background-color: #000;
    overflow: hidden;
  }
  
  .img-select-animal > img {
    opacity: 0.6;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    position: relative;
    object-fit: cover;
    object-position: top;
  }
  
  .img-select-animal .content-sequencial {
    display: flex;
    justify-content: space-between;
    bottom: 0;
    position: absolute;
    width: 100%;
    border-radius: 0 0 10px 10px;
  }
  
  .img-select-animal p.title,
  .img-select-animal p.sequencial,
  .img-select-animal p.number {
    font-weight: bold;
    position: absolute;
    top: 0;
    color: #fff;
    width: 100%;
    text-align: center;
  }
  
  .img-select-animal p.title {
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-size: 22px;
    top: 0px;
  }
  
  .img-select-animal p.sequencial {
    position: relative;
    opacity: 0.6;
  }
  
  .img-select-animal p.number {
    height: 100%;
    width: 100%;
    font-size: 70px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 3px;
    opacity: 0.7;
    letter-spacing: -10px;
    left: -5px;
    text-shadow: 5px 3px 0 #000000, 1px 13px 5px #000000 !important;
  }
  
  .img-select-animal:hover > img {
    opacity: 0.9;
  }
  
  .img-select-animal:hover {
    transform: scale(1.03);
  }
  
  .img-select-animal.active > img {
    background-color: #FDD880;
    opacity: 0.9;
  }
  
  .img-select-animal.active {
    left: 0;
    transform: scale(1.05);
    border: 4px solid #FDD880;
    box-shadow: inset 0px 0px 0px 1px #FDD880;
    box-sizing: border-box;
  }
  
  .btn-add,
  .btn-remove,
  .btn-bicho-selected,
  .btn-remove-bicho {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 25px;
    height: 40%;
    background: #1aa50b;
    color: #fff;
    content: '\f00c';
    font-weight: 900;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
  }
  
  .btn-remove-bicho {
    border-radius: 30px 0 10px 0;
  }
  
  .btn-bicho-selected {
    border-radius: 0 10px 0 30px;
  }
  
  .btn-add,
  .btn-remove,
  .btn-remove-bicho,
  .btn-remove-bicho {
    content: '';
  }
  
  .btn-add:hover,
  .btn-remove:hover {
    color: #fff;
  }
  
  .btn-remove,
  .btn-remove-bicho {
    background: #dc3545;
  }
  
  /* TECLADO */
  .container-select-numbers {
    display: flex;
    align-items: center;
    justify-content: start;
  }
  
  .content-place-numbers {
    display: flex;
    justify-content: center;
    margin: 20px 70px;
    width: 100%;
    flex-wrap: wrap;
  }
  
  .content-place-numbers .digits-keyboard {
    background: transparent;
    border: none;
    border-bottom: 2px solid #a2a1a1;
    color: #FDD880;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 5px;
    min-width: 30px;
    max-width: 70px;
    width: 100%;
    transition: 0.5s ease-out;
    cursor: help;
    flex: 1 0 30px;
  }
  
  .content-place-numbers .digits-keyboard.active {
    border-bottom: 2px solid #3ce1d9;
  }
  
  .content-select-numbers {
    color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .row-keyboard {
    display: flex;
    flex-direction: row;
  }
  
  .btn.btn-keyboard {
    padding: 15px;
    margin: 5px;
    width: 70px;
    height: 70px;
    background: #FDD880;
    /*color: #fff;*/
    color: #000;
    font-weight: 500;
    font-size: 1.5rem;
    border-radius: 100px;
    transition: 0.1s ease-in-out;
    position: relative;
  }
  
  .btn.btn-keyboard:hover {
    background: #008585;
    font-size: 1.8rem;
  }
  
  .btn.btn-keyboard:after {
    content: '';
    display: block;
    position: absolute;
    border-radius: 4em;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.5s;
    box-shadow: 0 0 10px 5px #413e3e;
  }
  
  .btn.btn-keyboard:active:after {
    box-shadow: 0 0 0 0 #1f1f1f;
    position: absolute;
    border-radius: 4em;
    left: 0;
    top: 0;
    opacity: 1;
    transition: 0s;
  }
  
  .btn.btn-keyboard:active {
    top: 1px;
  }
  
  .btn.backspace {
    padding: 15px;
    margin: 5px;
    width: 70px;
    height: 70px;
    background: #FDD880;
    color: #a3a3b2;
    font-weight: 500;
    font-size: 1.5rem;
    border-radius: 100px;
    transition: 0.1s ease-in-out;
    position: relative;
  }
  
  .btn.backspace:hover {
    background: #008585;
    font-size: 1.8rem;
  }
  
  .btn.backspace:after {
    content: '';
    display: block;
    position: absolute;
    border-radius: 4em;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.5s;
    box-shadow: 0 0 10px 5px #413e3e;
  }
  
  .btn.backspace:active:after {
    box-shadow: 0 0 0 0 #1f1f1f;
    position: absolute;
    border-radius: 4em;
    left: 0;
    top: 0;
    opacity: 1;
    transition: 0s;
  }
  
  .btn.backspace:active {
    top: 1px;
  }
  
  .btn.btn-randomize {
    padding: 15px;
    margin: 5px;
    width: 70px;
    height: 70px;
    background: #FDD880;
    color: #a3a3b2;
    font-weight: 500;
    font-size: 1.5rem;
    border-radius: 100px;
    transition: 0.1s ease-in-out;
    position: relative;
  }
  
  .btn.btn-randomize:hover {
    background: #008585;
    font-size: 1.8rem;
  }
  
  .btn.btn-randomize:after {
    content: '';
    display: block;
    position: absolute;
    border-radius: 4em;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.5s;
    box-shadow: 0 0 10px 5px #413e3e;
  }
  
  .btn.btn-randomize:active:after {
    box-shadow: 0 0 0 0 #1f1f1f;
    position: absolute;
    border-radius: 4em;
    left: 0;
    top: 0;
    opacity: 1;
    transition: 0s;
  }
  
  .btn.btn-randomize:active {
    top: 1px;
  }
  
  .btn.backspace {
    color: #ff4141;
  }
  
  /* LOTERIAS */
  
  .container-date-lot {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
  }
  
  .container-date-lot button {
    color: #fff;
    height: 25px;
    width: 25px;
    background: #FDD880;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    transition: 0.25s ease-in-out;
  }
  
  #date-lottery-selected {
    color: #fff;
    font-weight: 700;
    background: var(--bg-secondary);
    padding: 10px 20px;
    border-radius: 10px;
  }
  
  .spinner-loteries {
    font-size: 2rem;
    color: #fff;
    text-align: center;
    margin: 30px 0;
    width: 100%;
  }
  
  .container-lotteries-game {
    display: flex;
    margin: 25px 5px;
  }
  
  .content-name-lotterie {
    font-weight: 600;
    color: #fff;
    padding: 5px 12px;
    border: 1px solid #fff;
    border-radius: 100px;
    height: max-content;
    max-width: max-content;
    min-width: 200px;
    display: flex;
    justify-content: start;
    align-items: center;
    margin-top: 10px;
    white-space: nowrap;
    transition: .5s all ease-in-out;
  }
  
  .content-name-lotterie.selected {
    background: #FDD880;
    border-color: #FDD880;
  }
  
  .content-available-times {
    margin: 0 0 0 20px;
    width: 100%;
    max-height: 170px;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-wrap: wrap;
    scrollbar-width: auto;
    scrollbar-color: #208e88 #17153a;
  }
  
  .content-available-times::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }
  
  .content-available-times::-webkit-scrollbar-track {
    background: radial-gradient(
      123.22% 129.67% at 100.89% -5.6%,
      #201d47 0%,
      #17153a 100%
    );
    border-radius: 100px;
  }
  
  .content-available-times::-webkit-scrollbar-thumb {
    background: linear-gradient(91.26deg, #3ce1d9 19.13%, #208e88 65.96%);
    border-radius: 10px;
    border: 3px solid var(--bg-secondary);
  }
  
  /* CHECKBOXS */
  .item-checkbox {
    display: flex;
    justify-content: start;
    align-items: center;
    min-width: 110px;
    color: #fff;
    margin: 15px;
  }
  
  .item-checkbox label {
    cursor: pointer;
    padding-left: 10px;
    white-space: nowrap;
  }
  
  .item-checkbox input[type='checkbox'] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
  }
  
  .item-checkbox input[type='checkbox']:checked {
    background-color: #FDD880;
    border-color: #FDD880;
  }
  
  .item-checkbox input[type='checkbox']::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #1a183e;
    font-size: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .item-checkbox input[type='checkbox']:checked::before {
    opacity: 1;
  }
  
  /* COLOCAÇÕES */
  
  .container-placementss-game {
    display: flex;
  }
  
  .content-name-placements {
    font-weight: 600;
    color: #fff;
    padding: 5px 20px;
    border: 2px solid #fff;
    border-radius: 100px;
    height: max-content;
    max-width: max-content;
    min-width: 200px;
    display: flex;
    justify-content: start;
    align-items: center;
    margin-top: 10px;
    white-space: nowrap;
  }
  
  .content-available-times {
    margin: 0 0 0 20px;
    width: 100%;
    max-height: 170px;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-wrap: wrap;
    scrollbar-width: auto;
    scrollbar-color: #208e88 #17153a;
  }
  
  .content-available-times::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }
  
  .content-available-times::-webkit-scrollbar-track {
    background: radial-gradient(
      123.22% 129.67% at 100.89% -5.6%,
      #201d47 0%,
      #17153a 100%
    );
    border-radius: 100px;
  }
  
  .content-available-times::-webkit-scrollbar-thumb {
    background: linear-gradient(91.26deg, #3ce1d9 19.13%, #208e88 65.96%);
    border-radius: 10px;
    border: 3px solid var(--bg-secondary);
  }
  
  .content-placements {
    display: flex;
    flex-wrap: wrap;
  }
  
  /* APOSTAR */
  .container-purchase .separator-steps {
    margin: 15px 0;
  }
  
  .content-purchase {
    display: flex;
  }
  
  .item-purchase.value-bet {
    position: relative;
  }
  
  .item-purchase.value-bet label[for='valueBet'] {
    position: absolute;
    z-index: 2;
    padding: 10px;
    left: 10px;
    font-weight: 200;
  }
  
  .item-purchase.value-bet input {
    background: #0000;
    border: 1px solid #fff;
    border-radius: 100px;
    padding: 10px 20px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: end;
  }
  
  .item-purchase {
    display: flex;
    justify-content: start;
    align-items: center;
    color: #fff;
    margin: 15px;
  }
  
  .item-purchase label {
    cursor: pointer;
    padding-left: 10px;
    white-space: nowrap;
  }
  
  .item-purchase input[type='checkbox'] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
  }
  
  .item-purchase input[type='checkbox']:checked {
    background-color: #FDD880;
    border-color: #FDD880;
  }
  
  .item-purchase input[type='checkbox']::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #1a183e;
    font-size: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .item-purchase input[type='checkbox']:checked::before {
    opacity: 1;
  }
  
  .content-amount-purchase h2 {
    color: #FDD880;
    font-size: 1rem;
    font-weight: 700;
    margin: 10px;
    white-space: nowrap;
  }
  
  .content-amount-purchase {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .content-amount-purchase .value-bet-purchase {
    display: flex;
    align-items: center;
  }
  
  .content-amount-purchase .value-bet-purchase span:first-child {
    font-size: 1rem;
    color: #FDD880;
    opacity: 0.7;
    margin: 5px;
  }
  
  .content-amount-purchase .value-bet-purchase span:last-child {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FDD880;
    opacity: 0.9;
  }
  
  .footer-purchase {
    display: flex;
    flex-direction: column;
  }
  
  #error-text {
    display: none;
    width: 100%;
    background: #2b000047;
    text-align: center;
    color: #fff;
    font-weight: 500;
    padding: 10px;
    font-size: 1rem;
    margin: 20px 0 10px;
    border-radius: 15px;
}
  
  .footer-purchase p {
    font-weight: 300;
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.6;
  }
  
  .footer-purchase span img {
    position: relative;
    top: 6px;
  }
  
  /* NAVEGAÇÃO DE APOSTAS */
  #listItemsGame {
    width: 100%;
    height: 70px;
    position: relative;
    bottom: 0px;
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  
  #listItemsGame.hide {
    display: none;
  }
  
  .container-list-items {
    background: #FDD880;
    width: -webkit-fill-available;
    width: -moz-available;
    height: max-content;
    position: fixed;
    z-index: 10;
    bottom: 0px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    padding: 5px 15px 5px 10px;
    border-radius: 15px 0 0 0;
  }
  
  .item-list {
    background: linear-gradient(
      180deg,
      #FDD880 16.39%,
      #FDD880 20.51%,
      #FDD880 24.79%,
      #FDD880 30.46%,
      #FDD880 34.11%,
      #FDD880 36.21%,
      #FDD880 100%
    );
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    border: 2px solid rgba(217, 217, 217, 0.1);
    border-radius: 100px;
    margin: 10px 5px;
    cursor: pointer;
    transition: 0.1s linear;
    width: max-content;
  }
  
  .item-list:hover {
    border-color: #008585;
  }
  
  .item-list:hover .clear-bet,.clear-bet {
    background: #008585;
  }
  
  .clear-bet {
    background: rgba(217, 217, 217, 0.1);
    border-radius: 100px 0px 0px 100px;
    display: block;
    padding: 10px;
  }
  
  .number-bet {
    padding: 0 12px 0 10px;
    white-space: nowrap;
    color: #000;
  }
  
  .clear-lot {
    background: rgba(217, 217, 217, 0.1);
    border-radius: 100px 0px 0px 100px;
    display: block;
    padding: 10px;
  }
  
  .number-lot {
    padding: 0 12px 0 10px;
    white-space: nowrap;
  }
  
  .container-bets {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: max-content;
    overflow-x: auto;
  }
  
  .content-bets {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
  }
  
  .content-bets:active {
    cursor: grab;
  }
  
  .content-bets {
    scrollbar-width: auto;
    scrollbar-color: #208e88 #17153a;
  }
  
  .content-bets::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }
  
  .content-bets::-webkit-scrollbar-track {
    background: radial-gradient(
      123.22% 129.67% at 100.89% -5.6%,
      #201d47 0%,
      #17153a 100%
    );
    border-radius: 100px;
  }
  
  .content-bets::-webkit-scrollbar-thumb {
    background: linear-gradient(91.26deg, #3ce1d9 19.13%, #208e88 65.96%);
    border-radius: 10px;
    border: 3px solid var(--bg-secondary);
  }
  
  .btn-scroll-bets {
    background: #FDD880;
    color: #ffffff;
    font-size: 0.8rem;
    border-radius: 100px;
    width: 40px;
    height: 40px;
    margin: 10px 15px;
    padding: 20px 18px 20px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .content-amount .amount {
    display: flex;
  }
  
  .content-amount h2 {
    color: #FDD880;
    font-size: 1rem;
    font-weight: 700;
    margin: 10px;
    white-space: nowrap;
  }
  
  .content-amount {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: 15px;
  }
  
  .content-amount .value-bet {
    display: flex;
    align-items: center;
  }
  
  .content-amount .value-bet span:first-child {
    font-size: 1rem;
    color: #FDD880;
    opacity: 0.7;
    margin: 5px;
  }
  
  .content-amount .value-bet span:last-child {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FDD880;
    opacity: 0.9;
  }
  
  /* ANIMAÇÕES */
  .shake-animation {
    animation: shake 0.6s;
  }
  
  @keyframes shake {
    0% {
      transform: translateX(0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
      transform: translateX(-5px);
    }
    20%,
    40%,
    60%,
    80% {
      transform: translateX(5px);
    }
    100% {
      transform: translateX(0);
    }
  }
  
  @keyframes lds-ellipsis1 {
    0% {
      transform: scale(0);
    }
    100% {
      transform: scale(1);
    }
  }
  
  @keyframes lds-ellipsis3 {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(0);
    }
  }
  
  @keyframes lds-ellipsis2 {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(24px, 0);
    }
  }
  
  @keyframes animate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  .container-result {
    color: #fff;
    text-align: center;
  }
  
  #resultados {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  #resultados-info {
    padding: 10px;
    border: 1px solid #fff;
    flex: 1;
    white-space: nowrap;
  }

  .btn-close-modal {
  color: red;
  font-size: 1.5rem;
}

.btn-close-modal:hover {
  opacity: 0.7;
}

.btn-close-modal:active {
  opacity: .8;
}

/* MODAL NOTICE */
.modal.modal-notice {
  transition: .25s cubic-bezier(0.95, 0.01, 0.36, 1);
  transform: translateY(-100%);
}

.modal.modal-notice.open {
  transform: translateY(0%);
}

.modal-notice .modal-title {
  display: flex;
  justify-content: space-between;
}

.modal-notice .modal-title h1 {
  background: -webkit-linear-gradient(180deg, rgba(42, 193, 185, 0.5), #FDD880);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-notice .modal-content {
  background: var(--bg-primary);
  box-shadow: 0 4px 10px #000;
  color: #fff;
  padding: 20px 35px;
  max-width: 1100px;
}

.content-banner picture img[alt="Banner - Mania"] {
  width: 300px;
  box-shadow: 0 5px 10px rgb(0 0 0 / 50%);
  border-radius: 10px;
  margin: 10px 0;
}

.modal-notice .modal-footer {
  display: flex;
  flex-direction: column;
}

.modal-notice .modal-footer .input-group {
  display: flex;
  flex-direction: row;
  margin: 5px 0;
}

.input-group label[for="notShowAgain"] {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0 5px;
}

.modal-notice #confirmNotice {
  width: 100%;
  background: #FDD880;
  padding: 20px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 5px 5px rgb(0 0 0 / 50%);
  transition: .25s ease;
}

.modal-notice #confirmNotice:hover {
  transform: scale(0.98);
  box-shadow: 0 0px 0px rgb(0 0 0 / 0%);

}

/* MODAL LOGIN */
.modal.modal-login {
  transition: .25s cubic-bezier(0.95, 0.01, 0.36, 1);
  transform: translateY(-100%);
}

.modal.modal-login.open {
  transform: translateY(0%);
}

.modal-login .modal-content {
  background: var(--bg-primary);
  box-shadow: 0 4px 10px #000;
  color: #fff;
  padding: 20px 35px;
  max-width: 430px;
  width: 100%;
}

.modal-login .modal-title img[alt="Jogo do Bicho Online - Bicho Mania"] {
  width: 50px;
}

.modal-login .modal-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-login .btn-close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 20px;
  opacity: .5;
  cursor: pointer;
}

.modal-login .btn-close-modal:active {
  opacity: 1;
}

.modal-login .title-modal-login {
  margin: 15px 0;
  font-size: 1.5rem;
  font-weight: 500;
}

.modal-login .modal-body img[alt="Jogo do Bicho Online - Bicho Mania, Login com Google"] {
  width: 25px;
  margin: 0 8px;
}

.modal-login .modal-footer {
  margin: 0 0 10px;
}

.btn.btn-modal-login {
  background: #FDD880;
  padding: 15px 20px;
  border-radius: 5px;
  text-align: center;
  width: 100%;
  transition: .25s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.btn.btn-modal-login:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 10px rgb(0, 0, 0, 0.5);
}

/* MODAL SIGNUP */
.modal.modal-signup {
  transition: .25s cubic-bezier(0.95, 0.01, 0.36, 1);
  transform: translateY(-100%);
}

.modal.modal-signup.open {
  transform: translateY(0%) !important;
}

.modal-signup .modal-content {
  padding: 0px;
  max-width: 500px;
}

.modal-signup .modal-title {
  background: #FDD880;
  border-radius: 10px 10px 0 0;
  padding: 10px;
}

.modal-signup .btn-close-modal {
  position: absolute;
  right: 15px;
  top: 10px;
  color: #fff;
  font-size: 1.5rem;
}

.modal-signup .icon-success {
  color: #fff;
  font-size: 5rem;
  text-align: center;
  padding: 40px;
}

.modal-signup .modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 20px;
}

.modal-signup .modal-body h1 {
  color: #FDD880;
}

.modal-signup .modal-body h2 {
  font-size: 1rem;
  font-weight: 400;
  margin: 15px;
  color: #343434;
}

.modal-signup .modal-body h3 {
  color: #343434;
}

.btn-go {
  margin: 15px 0 0;
  width: 100%;
  background: #FDD880;
  padding: 20px;
  border-radius: 5px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

/* MODAL COMPRA EFETUADA */
.modal.modal-success {
  transition: .25s cubic-bezier(0.95, 0.01, 0.36, 1);
  transform: translateY(-200%) !important;
}

.modal.modal-success.open {
  /* transition: .25s cubic-bezier(0.95, 0.01, 0.36, 1); */
  transform: translateY(-10%) !important;
}

.modal.modal-success {
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  position: absolute;
  z-index: 15;
  right: -7%;
  overflow: auto;
  /* display: none; */
}

.modal-success.open {
  display: flex;
}

.modal.modal-success .modal-content {
  background: #00352f !important;
  color: #fff !important;
  border-radius: 10px;
  width: max-content;
  height: max-content;
  max-width: 700px;
  overflow-y: hidden;
  overflow-x: hidden;
  padding: 10px 35px;
  margin: auto;
  display: flex;
  flex-direction: column;
  position: relative;
}

.modal-success .btn-close-modal {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 1;
}

.modal-success .btn-close-modal i {
  color: #A2A2A6;
  font-size: 1.8rem;
  margin: 15px;
}

.modal-success .btn-close-modal:active i {
  color: red;
}

.modal-success .modal-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0px 10px 20px;
}

.modal-success img[alt="Aposta realizada com sucesso!"] {
  position: relative;
  top: 30px;
  width: 100px;
  margin-bottom: 30px;
}

.modal-success .modal-title h1 {
  color: #FDD880;
  text-align: center;
}

.modal-success .modal-title h2 {
  color: #FDD880;
  font-weight: 400;
  font-size: 1rem;
  text-align: center;
}

.modal-success .modal-title h2 span {
  color: #FDD880;
}

.modal.modal-success .modal-body {
  max-width: 950px;
  width: 100%;
  display: block;
  margin: auto;
  overflow-y: auto;
}

.modal-success .modal-body .container-info-purchase {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  background: #00352f !important;
  padding: 10px 30px;
}

.modal-success .container-info-purchase div {
  margin: 5px 0;
}

.container-info-purchase div h1,
h2 {
  color: #fff;
  font-weight: 400;
  font-size: 1rem;
}

.modal-success .content-info-purchase h1 {
  text-transform: uppercase;
}

.modal-success .content-info-purchase h2 span {
  font-weight: 600;
}

.modal-success .content-info-history-purchase .user-history,
.history-purchase {
  text-transform: uppercase;
}

.modal-success .content-info-history-purchase .history-purchase {
  font-weight: 600;
}

.modal-success .container-list-purchase {
  display: flex;
  background: #00352f !important;
  flex-direction: column;
  padding: 10px 22px;
  max-height: 250px;
  overflow-y: auto;
  color: white;
}

.modal-success .header-list-purchase {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin: 15px 8px;
}

.modal-success .header-list-purchase .content-header-list h1 {
  font-size: 1rem;
  font-weight: 400;
  color: #FDD880;
  text-align: center;
}

.modal-success .header-list-purchase .content-header-list h1 span {
  font-weight: 600;
}

.modal-success .header-list-purchase .content-header-list .btn.btn-showmore {
  color: #FDD880;
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: 5px;
  align-items: center;
}

.modal-success .header-list-purchase .content-header-list .btn.btn-showmore.active {
  color: red;
}

.modal-success .content-list-purchase {
  max-height: 250px;
  overflow-y: auto;
}

.modal-success .content-list-purchase table {
  width: 100%;
  border-collapse: collapse;
}

.modal-success .content-list-purchase th,
.content-list-purchase td {
  padding: 8px 15px;
  white-space: nowrap;
}

.modal-success .left-align {
  text-align: left;
}

.modal-success .center-align {
  text-align: center;
}

.modal-success .right-align {
  text-align: right;
}

.modal-success .modal-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.modal-success .container-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.modal-success .container-footer h3 {
  font-size: 1rem;
  color: #FDD880;
  font-weight: 400;
  margin-right: 5px;
  text-align: center;
}

/* MODAL BONUS */
.modal.modal-bonus {
  transition: .25s cubic-bezier(0.95, 0.01, 0.36, 1);
  transform: translateX(-100%);
}

.modal.modal-bonus.open {
  transform: translateX(0%);
}

.modal.modal-bonus .modal-content {
  background: #201d47;
  position: relative;
  overflow-x: visible !important;
  overflow-y: visible !important;
  border-radius: 0px;
  max-width: 450px;
  width: 100%;
}

.modal.modal-bonus .modal-content::before {
  content: "";
  display: block;
  position: absolute;
  width: 25px;
  height: 100%;
  right: 0;
  top: 0;
  left: -25px;
  background: linear-gradient(135deg, transparent 70%, rgb(32 29 71) 75%) 0 50%, linear-gradient(135deg, transparent 70%, rgb(32 29 71) 75%) 0 50%;
  background-repeat: repeat-y;
  background-size: 25px 8px, 25px 8px;

}

.modal.modal-bonus .modal-content::after {
  content: "";
  display: block;
  position: absolute;
  width: 25px;
  height: 100%;
  right: -25px;
  top: 0;
  background: linear-gradient(-135deg, transparent 70%, rgb(32 29 71) 75%) 0 50%, linear-gradient(-135deg, transparent 70%, rgb(32 29 71) 75%) 0 50%;
  background-repeat: repeat-y;
  background-position: right;
  background-size: 25px 8px, 25px 8px;
}

.modal-bonus .modal-title {
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-size: .8rem;
  margin: 10px 0 0;
}

.modal-bonus .modal-title h1 {
  background: -webkit-linear-gradient(180deg, #ebd197, #b48811);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-bonus .btn-reedem {
  margin: 20px 0 10px;
  width: 100%;
  background: #FDD880;
  padding: 20px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 5px 5px rgb(0 0 0 / 50%);
}

.btn-reedem:active {
  box-shadow: 0 0 0;
}

.modal-bonus .message-error {
  width: 100%;
  background: red;
  text-align: center;
  color: #fff;
  font-weight: 700;
  padding: 10px;
  font-size: 1rem;
  margin: 10px 0 0;
  border-radius: 5px;
}

.modal-bonus .message-error.success {
  background: #FDD880;
}

/* MODAL USERS */
.modal.modal-users {
  transition: .25s cubic-bezier(0.95, 0.01, 0.36, 1);
  transform: translateX(-100%);
}

.modal.modal-users.open {
  transform: translateX(0%);
}

.modal.modal-users .modal-content {
  background: #201d47;
}

.modal-users .modal-title {
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-size: .8rem;
  margin: 10px 0 20px;
}

.modal-users .modal-title h1 {
  background: -webkit-linear-gradient(120deg, #ffffff, #3ce1d9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.5rem;
}

.modal.modal-users form .row {
  gap: 10px;
  flex-wrap: wrap;
}

.modal-users .input-group {
  flex: 1 0 170px;
}

.modal-users .btn-save {
  margin: 20px 0 10px;
  width: 100%;
  background: #FDD880;
  padding: 20px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 5px 5px rgb(0 0 0 / 50%);
}

.btn-save:active {
  box-shadow: 0 0 0;
}

.btn-open {
  background: #FDD880;
  padding: 10px;
  border-radius: 5px;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 5px 5px rgb(0, 0, 0, .2);
}

.modal-users .message-error {
  width: 100%;
  background: red;
  text-align: center;
  color: #fff;
  font-weight: 700;
  padding: 10px;
  font-size: 1rem;
  margin: 20px 0 10px;
  border-radius: 5px;
}

.modal-users .message-error.success {
  background: #FDD880;
}

/* MODAL BANCO */
.modal.modal-bank {
  transition: .25s cubic-bezier(0.95, 0.01, 0.36, 1);
  transform: translateX(-100%);
}

.modal.modal-bank.open {
  transform: translateX(0%);
}

.modal.modal-bank .modal-content {
  max-width: 1200px !important;
  width: 100% !important;
  background: #201d47;
}

.modal-bank .modal-title .content-modal-title:first-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0 5px;
}

.modal-bank .modal-title .content-modal-title:first-child h1 {
  font-weight: 500;
  font-size: 1.5rem;
  color: #fff;
}

.modal-bank .modal-title .content-modal-title:last-child {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 2px solid rgb(255, 255, 255, 0.5);
}

.modal-bank .modal-title .content-modal-title:last-child .user-status {
  border: 2px solid rgb(255 255 255 / 50%);
  ;
  padding: 5px 10px;
  border-radius: 100px;
  color: rgb(255 255 255 / 50%);
  ;
  margin: 15px 0px;
}

.modal-bank .modal-title .content-modal-title:last-child .user-status h1 {
  font-size: 1rem;
  font-weight: 500;
}

.modal-bank .modal-title .content-modal-title:last-child .user-status h1 span {
  color: #FDD880;
}


.modal-bank .btn-withdraw,
.modal-bank .btn-deposit {
  font-size: 1.2rem;
  font-weight: 700;
  color: rgb(255 255 255 / 50%);
  margin: 0px 20px;
  padding: .5rem 0;
}

.modal-bank .btn-withdraw.active,
.modal-bank .btn-deposit.active {
  border-bottom: 2px solid #FDD880;
  color: #FDD880;
}

.modal-bank .modal-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.modal-bank .modal-footer .buttons-footer {
  display: none;
}

.modal-bank .modal-footer .buttons-footer.d-flex {
  display: flex !important;
}

.modal-bank .modal-footer .buttons-footer.d-none {
  display: none !important;
}

.modal-bank .container-select-deposit {
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-bank .btn-deposit-request {
  margin: 10px auto;
  background: #FDD880;
  padding: 15px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 700;
  min-width: 280px;
  color: #fff;
  box-shadow: 0 5px 5px rgb(0 0 0 / 50%);
  transition: .2s ease-in-out;
}

.modal-bank .btn-deposit-request:hover {
  transform: scale(1.040);
  box-shadow: 0 0 0 #000;
}

.modal-bank .btn-deposit-cancel {
  display: none;
  margin: 10px auto;
  background: red;
  padding: 15px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 700;
  min-width: 280px;
  color: #fff;
  box-shadow: 0 5px 5px rgb(0 0 0 / 50%);
  transition: .2s ease-in-out;
}

.modal-bank .btn-deposit-cancel:hover {
  transform: scale(1.040);
  box-shadow: 0 0 0 #000;
}

.modal-bank .modal-footer .message-error {
  width: 100%;
  background: red;
  text-align: center;
  color: #fff;
  font-weight: 700;
  padding: 10px;
  font-size: 1rem;
  margin: 10px 0 0;
  border-radius: 5px;
}

.modal-bank .modal-footer .message-error.success {
  background: #FDD880 !important;
}

/* SWAL DEPOSIT */
.item-swal-bank {
  font-size: 1rem;
  color: red;
}

.subtitle-swal-bank {
  font-size: .9rem;
  margin: 15px 0 5px;
  color: rgb(255 255 255 / 80%);
}

.title-swal-bank {
  font-size: 1rem;
  color: red;
}









































/* HEADER MODAL */
.modal-bank-user>.modal-header {
  border-bottom: none;
  padding: 1rem 2rem;
}

.modal-bank-user>.modal-header .modal-title {
  font-weight: 400;
  font-size: 24px;
  color: rgb(255 255 255 / 50%);
}

.modal-bank-user>.modal-select-options {
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  border-bottom: 1px solid #E6E6E6;
}

.modal-bank-user>.modal-select-options .btn-deposit,
.btn-withdraw {
  padding: .5rem 0;
  margin: 0 1rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.1rem;
  color: rgba(87, 87, 87, 0.7);
}

.btn-deposit.active,
.btn-withdraw.active {
  color: #FDD880 !important;
  border-bottom: 2px solid #FDD880;
}

/* CONTAINER MP PAYMENT */
.container-payment-purchase {
  display: none;
  height: 100%;
  width: 100%;
}

.container-payment-purchase.d-none {
  display: none !important;
}

.container-payment-purchase.d-flex {
  display: flex !important;
}

/* HEADER STAGES */
.header-stages {
  width: 100%;
  display: flex;
  margin: 10px 0px 5px;
}

.header-stages h1 {
  font-weight: 500;
  font-size: 1rem;
  white-space: nowrap;
  color: rgb(255 255 255 / 80%);
}

.header-stages span {
  font-size: 14px;
  font-weight: 500;
  color: #FDD880;
  border-bottom: 2px solid rgb(255 255 255 / 80%);
  width: 100%;
  align-self: flex-end;
  text-align: end;
  margin-left: .2rem;
}

/* BODY MODAL */
.modal-body-bank.d-none {
  display: none !important;
}

.modal-body-bank.d-flex {
  display: flex !important;
}

.modal-body-bank {
  display: flex;
  justify-content: center !important;
  flex-direction: row !important;
  align-items: self-start !important;
  flex-wrap: wrap;
}

.container-payment-purchase.pix {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 30px;
}

.container-pix .content-pix img {
  width: 250px;
  height: 250px;
  background: #fff;
  border-radius: 5px;
  border: 2px solid #FDD880;
  padding: 10px;
  box-shadow: 0 5px 10px rgb(0 0 0 / 50%);
}

#qrcode {
  width: 250px;
  height: 250px;
  background: #fff;
  border-radius: 5px;
  border: 2px solid #FDD880;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  box-shadow: 0 5px 10px rgb(0 0 0 / 50%);
}

#qrcode>canvas {
  width: 100% !important;
}

.container-pix .btn-copy-code {
  background: #FDD880;
  width: 250px;
  color: #fff;
  padding: 20px;
  margin: 25px 0;
  border-radius: 5px;
  box-shadow: 0 5px 10px rgb(0 0 0 / 50%);
  text-transform: uppercase;
  font-weight: 700;
}

.stage-one,
.stage-two,
.stage-three,
.notice-deposit {
  padding: 25px 10px;
  width: 100%;
}

.container-payment-deposit,
.container-bank-deposit {
  width: 100%;
  max-width: 550px;
}

/* STAGE 1 */
.stage-one {
  display: flex;
  flex-direction: column;
}

.body-stages.body-stage-one {
  display: flex;
  flex-direction: column;
}

.body-stages.body-stage-one>.subtitle-stage-one {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: rgb(255 255 255 / 50%);
  margin: 15px 10px;
}

.body-stages.body-stage-one>.select-method-payments {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.rules-deposit {
  font-size: .9rem !important;
  color: red !important;
  font-weight: bold !important;
  margin: 20px 10px 10px !important;
  text-align: center;
}

.rules-deposit.ul {
  margin: 0px 10px !important;
  text-transform: uppercase;
}

ul li.rules-deposit {
  margin: 0px 10px !important;
  text-transform: uppercase;
}

.body-stages.body-stage-one>.select-method-payments .btn-payment {
  border-radius: 5px;
  border: 1px solid #C7C7C7;
  padding: 1rem;
  margin: 5px 10px;
  width: 150px;
  height: 65px;
  text-align: center;
  flex: 1;
  position: relative;
  transition: 1s all cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.body-stages.body-stage-one>.select-method-payments .btn-payment.disabled {
  opacity: .6;
}

.body-stages.body-stage-one>.select-method-payments .btn-payment.disabled:hover {
  transform: scale(1);
  border: 1px solid #c7c7c7;
  box-shadow: none;
}

.body-stages.body-stage-one>.select-method-payments .btn-payment img {
  width: 85px;
}

.body-stages.body-stage-one>.select-method-payments .btn-payment.active {
  border: 1px solid #FDD880;
  background: rgba(42, 193, 185, 0.1);
}

.btn-payment.active::after {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-size: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 900;
  width: 25px;
  height: 25px;
  background: #FDD880;
  color: #fff !important;
  position: absolute;
  border: 3px solid #201d47;
  border-radius: 100%;
  top: -12px;
  right: -10px;
  transition: 1s all cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.body-stages.body-stage-one>.select-method-payments .btn-payment:hover,
.btn-payment:focus {
  transform: scale(1.050);
  border: 1px solid #FDD880;
  box-shadow: 0 5px 10px #4c4c4c6a;
}

/* STAGE 2 */
.body-stages.body-stage-two {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.value-stage-two,
.coupon-stage-two {
  margin: 10px;
}

.input-value-group {
  position: relative;
  width: 230px;
  font-size: 1.2rem;
}

.input-value-group>span {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

.input-value-group>span:first-child {
  left: 15px;
  color: rgb(255 255 255 / 50%);
  font-weight: 300;
  font-size: 1rem;
}

.input-value-group>span:last-child {
  right: 15px;
  font-size: 1.5rem;
  font-weight: 500;
  color: rgb(255 255 255 / 50%);
}

.input-value {
  background: var(--bg-secondary);
  border: 2px solid var(--bg-secondary) !important;
  padding: 8px 50px 8px 35px;
  width: 230px;
  text-align: end;
  font-size: 1.5rem;
  font-weight: 500;
  color: rgb(255 255 255 / 50%);
}

.input-value.is-invalid {
  border-color: red !important;
}

.input-value-stage-two h2 {
  font-weight: 400;
  font-size: 14px;
  color: rgb(255 255 255 / 50%);
  margin: 15px 0px;
}

.coupon-stage-two h2 {
  font-weight: 400;
  font-size: 14px;
  color: rgb(255 255 255 / 50%);
  margin: 15px 0px;
}

.input-coupon-stage-two {
  display: flex;
}

.input-message {
  text-transform: uppercase;
  color: #FDD880;
  font-weight: bold;
  font-size: 0.94rem;
}

.input-coupon-stage-two>.input-coupon {
  background: var(--bg-secondary);
  border: 1px solid var(--text-secondary);
  padding: 15px;
  text-align: end;
  font-weight: 400;
  color: rgb(255 255 255 / 50%);
  font-size: 14px;
  border-radius: 5px 0 0 5px;
  width: 140px;
  text-align: start;
  text-transform: uppercase;
}

.input-coupon-stage-two>.input-coupon::placeholder {
  text-transform: lowercase;
}

.input-coupon-stage-two>.btn-stage-two.validateCouponDeposit {
  color: #fff;
  background: #FDD880;
  border-radius: 0px 5px 5px 0px;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  opacity: .5;
  transition: .2s all ease-in-out;
  box-shadow: 0 0 10px #FDD88029;
  min-width: 115px;
}

.input-coupon-stage-two>.btn-stage-two.validateCouponDeposit.remove-coupon {
  background: #c7c7c7 !important;
}

.input-coupon-stage-two>.btn-stage-two.validateCouponDeposit.remove-coupon:hover {
  background: #a7a6a6 !important;
}

.input-coupon:focus {
  border-color: #FDD880;
}

.input-coupon:focus+.validateCouponDeposit {
  opacity: 1;
}

.input-coupon-stage-two>.btn-stage-two.validateCouponDeposit:hover {
  opacity: 1;
}

/* VALIDATE INPUT CLASS */
.input-coupon.validateCheck {
  border-color: #FDD880;
  font-weight: bold;
  text-transform: uppercase;
}

.input-coupon.validateCheck::after {
  content: 'Cupom aplicado';
  position: absolute;
  top: 0px;
  font-size: 1rem;
  color: #FDD880;
}

.input-coupon.validateCheck+.validateCouponDeposit {
  opacity: 1;
}

.input-coupon.is-invalid {
  border-color: red;
}

.input-coupon.is-invalid+.validateCouponDeposit {
  opacity: 1;
  background: red;
}

.input-value:focus {
  border-bottom: 2px solid #FDD880 !important;
}

/* NOTICE DEPOSIT */
.notice-deposit {
  display: flex;
  flex-direction: column;
}

.notice-deposit .title-notice {
  display: flex;
}

.notice-deposit .title-notice>h1 {
  font-weight: 500;
  font-size: 35px;
  color: #6D9DC5;
}

.notice-deposit>.subtitle-notice {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
}

.notice-deposit .title-notice>h2 {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: rgb(255 255 255 / 50%);
  align-self: flex-end;
  margin: 5px;
}

.notice-deposit>.subtitle-notice>.adjectives {
  display: flex;
}

.notice-deposit>.subtitle-notice>.adjectives span {
  background: #FDD880;
  border-radius: 100px;
  font-weight: 400;
  font-size: 12px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #FFF;
  padding: 2px 15px;
  margin: 5px 3px;
}

/* STAGE 3 */
/* BODY PIX */
.body-three .body-pix h2 {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: rgb(255 255 255 / 50%);
  margin: 15px 10px;
}

/* .body-three .body-pix .btn-next-payment:hover:before {
    opacity: 1;
    transform: translate(0, 0);
}

.body-three .body-pix .btn-next-payment:before {
    content: attr(data-hover);
    position: absolute;
    left: 0;
    width: 100%;
    text-transform: uppercase;
    font-size: 1rem;
    opacity: 0;
    transform: translate(-100%, 0);
    transition: all .3s ease-in-out;
}

.body-three .body-pix .btn-next-payment:hover div {
    opacity: 0;
    transform: translate(100%, 0);
} */

.body-three .body-pix .btn-next-payment div {
  text-transform: uppercase;
  font-size: 1rem;
  transition: all .3s ease-in-out;
}

.body-three .body-pix .btn-next-payment:disabled {
  pointer-events: none;
}

.body-three .body-pix .payment-data {
  margin: 30px 0px;
  text-align: center;
}

.body-three .body-pix .payment-data h3 {
  font-size: 18px;
  color: rgb(255 255 255 / 50%);
  font-weight: 400;
}

.body-three .body-pix .payment-data h3 span {
  color: #FDD880;
  font-weight: 500;
}

.body-three .body-pix .payment-data h3 .couponValueText {
  font-size: 20px;
  color: var(--success);
  font-weight: bold;
  margin: 0px 5px;
}

.checkExistingCoupon {
  font-weight: bold !important;
}

.checkExistingCoupon i {
  color: #FDD880 !important;
}

.container-payment.pix {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 20px;
}

.container-payment.pix img {
  border-radius: 5px;
  border: 2px solid #FDD880;
  padding: 15px;
  width: 200px;
  box-shadow: 0 10px 15px #00000069;
}

/* BODY MP */
.body-three .body-mp h2 {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: rgb(255 255 255 / 50%);
}

.body-three .body-mp button {
  background: #FDD880;
  border-radius: 100px;
  padding: 10px 20px;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #FFF;
  opacity: .6;
  transition: .2s all cubic-bezier(0.68, -0.55, 0.27, 1.55);
  margin: auto;
}

.body-three .body-mp .btn-next-payment {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FDD880;
  width: 280px;
  border-radius: 100px;
  padding: 10px 20px;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  color: #FFF;
  opacity: .6;
  transition: .2s all cubic-bezier(0.68, -0.55, 0.27, 1.55);
  margin: 20px auto;
  cursor: pointer;
}

/* .body-three .body-mp .btn-next-payment:hover:before {
    opacity: 1;
    transform: translate(0, 0);
}

.body-three .body-mp .btn-next-payment:before {
    content: attr(data-hover);
    position: absolute;
    left: 0;
    width: 100%;
    text-transform: uppercase;
    font-size: 1rem;
    opacity: 0;
    transform: translate(-100%, 0);
    transition: all .3s ease-in-out;
}

.body-three .body-mp .btn-next-payment:hover div {
    opacity: 0;
    transform: translate(100%, 0);
} */

.body-three .body-mp .btn-next-payment div {
  text-transform: uppercase;
  font-size: 1rem;
  transition: all .3s ease-in-out;
}

.body-three .body-mp .btn-next-payment:disabled {
  pointer-events: none;
}

.body-three .body-mp button:hover {
  opacity: 1;
  transform: scale(1.040);
}

.body-three .body-mp .payment-data {
  margin: 30px 0px;
  text-align: center;
}

.body-three .body-mp .payment-data h3 {
  font-size: 18px;
  color: rgb(255 255 255 / 50%);
  font-weight: 400;
}

.body-three .body-mp .payment-data h3 span {
  color: #373737;
  font-weight: 500;
}

.body-three .body-mp .payment-data h3 .couponValueText {
  font-size: 18px;
  color: var(--success);
  font-weight: bold;
  margin: 0px 5px;
}

.container-payment.mp {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 20px;
}

.container-payment.mp img {
  border-radius: 15px;
  padding: 20px 80px;
  width: 280px;
  border: 1px solid #C7C7C7;
  box-shadow: 0 5px 15px #00000029;
}

/* WITHDRAW */
.value-avaible-withdraw {
  display: flex;
  justify-content: center;
  align-items: center;
}

.container-info-whithdraw {
  width: 100%;
  max-width: 550px;
  /* margin: 10px 20px; */
}

.container-history-withdraw {
  width: 100%;
  max-width: 550px;
  padding: 40px 20px;
}

.available-value {
  align-self: flex-end;
}

.text-available-value {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: rgb(255 255 255 / 50%);
  margin: 20px 0px 20px 20px;
}

.text-available-value span {
  color: #6D9DC5;
  font-weight: bold;
}

.finish-withdraw {
  margin-left: auto;
}

.btn-finish-withdraw {
  margin: 10px auto;
  background: #FDD880;
  padding: 15px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 700;
  min-width: 280px;
  color: #fff;
  box-shadow: 0 5px 5px rgb(0 0 0 / 50%);
  transition: .2s ease-in-out;
}

.btn-finish-withdraw:hover {
  transform: scale(1.040);
  box-shadow: 0 0 0 #000;
}

.container-warn h1 {
  font-weight: 700;
  font-size: 1rem;
  line-height: 18px;
  color: red;
  margin-bottom: 15px;
}

.container-warn p {
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 18px;
  color: rgb(255 255 255 / 50%);
}

.container-warn p span {
  color: red;
  font-weight: bold;
}

.withdrawal-request {
  width: 100%;
}

.column-withdrawal-request {
  color: rgb(255 255 255 / 80%);
}

.column-withdrawal-request:last-child {
  justify-content: flex-end;
}

.withdrawal-request.waiting .row-withdrawal-request {
  background-color: #f9b23233;
}

.withdrawal-request.waiting .status-withdraw {
  color: #ffa500;
  background-color: #f9b23233;
  margin: 10px;
}

.withdraw-request {
  border: 1px solid #ced4da;
  padding: 10px;
  border-radius: 4px;
  background-color: rgb(248, 242, 241);
  margin-bottom: 10px;
  justify-content: center;
}

.withdrawal-request.waiting .status-withdraw {
  content: "Aguardando";
  color: #ffa500;
  background-color: #f9b23233;
  padding: 8px;
  border-radius: 10px;
  margin: 10px;
  font-weight: bold;
}

.withdrawal-request.processing .status-withdraw {
  content: "Processando" !important;
  background-color: #56ca988c;
  color: #56ca98;
  padding: 8px;
  border-radius: 10px;
  margin-top: 10px;
  font-weight: bold;
}

.container-withdrawal-request {}

.row-withdrawal-request {
  display: flex;
  border-radius: 10px;
}

.withdrawal-request.waiting .row-withdrawal-request {
  background-color: #f9b23233;
}

.withdrawal-request.processing .row-withdrawal-request {
  background-color: #56ca988c;
}

.column-withdrawal-request {
  font-size: 14px;
  font-weight: bold;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 10px;
}

.column-withdrawal-request:nth-child(1) {
  justify-content: flex-start;
}

.column-withdrawal-request:nth-child(4) {
  justify-content: flex-end;
}

/* history withdraw */
.content-history {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.content-history h5 {
  text-align: center;
  font-size: 1.5rem;
  margin: 10px;
  color: rgb(255 255 255 / 80%);
}

.content-history .content-span-history {
  margin: 20px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  background: #6d9dc529;
  border-radius: 100px;
  color: #6D9DC5;
}

.content-history .content-span-history i {
  font-size: 2rem;
}

.content-history h2 {
  font-weight: 400;
  font-size: 1rem;
  color: rgb(255 255 255 / 50%);
  opacity: .8;
}

/* Select method withdraw */
.select-method-withdraw {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.btn-method-withdraw {
  margin: 10px;
  border-radius: 5px;
  border: 2px solid #C7C7C7;
  color: rgb(255 255 255 / 50%);
  padding: 10px 20px;
  max-width: 160px;
  font-size: .95rem;
  min-width: 90px;
  transition: .5s all cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  cursor: pointer;
}

.btn-method-withdraw:disabled {
  transform: scale(1);
  border: 2px solid #C7C7C7 !important;
  background: none;
  color: rgb(255 255 255 / 50%);
  box-shadow: none;
}

.btn-method-withdraw.active {
  border-color: #6D9DC5;
  background: #6D9DC51A;
}

.btn-method-withdraw.active::before {
  font-family: 'Font Awesome 5 Free';
  content: "\f00d";
  font-size: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 900;
  width: 25px;
  height: 25px;
  background: red;
  color: #fff !important;
  position: absolute;
  border: 3px solid #201d47;
  border-radius: 100%;
  top: -12px;
  right: -10px;
  transition: 1s all cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.input-method-withdraw {
  flex: 1;
  background: rgba(109, 157, 197, 0.1);
  border-radius: 5px;
  border: 2px solid rgb(109, 157, 197);
  color: rgba(255, 255, 255, 0.5);
  padding: 10px 20px;
  font-size: 0.95rem;
}

.content-input-withdraw {
  position: relative;
  width: 230px;
  font-size: 1.2rem;
}

.content-input-withdraw>span {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

.content-input-withdraw>span:first-child {
  left: 15px;
  color: rgb(255 255 255 / 50%);
  font-weight: 300;
  font-size: 1rem;
}

.input-withdraw {
  background: var(--bg-secondary);
  border: 2px solid var(--bg-secondary) !important;
  padding: 8px 10px 8px 35px;
  width: 230px;
  text-align: end;
  font-size: 1.5rem;
  font-weight: 500;
  color: rgb(255 255 255 / 50%);
}

.input-withdraw:focus {
  border-bottom: 3px solid #FDD880;
}

.input-withdraw-stage-two h2 {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: rgb(255 255 255 / 50%);
  margin: 15px 0px;
}

@media only screen and (max-width: 1221px) {
  .withdraw.hideMobile {
    display: none !important;
  }

  .modal-body-bank.withdraw.mobileWithdraw {
    flex-flow: wrap-reverse !important;
    align-content: start;
  }
}

@media only screen and (max-width: 1131px) {
  .hideMobile {
    display: none !important;
  }

  .notice-deposit>.subtitle-notice {
    align-self: center;
  }

  .notice-deposit>.title-notice {
    align-self: center;
  }
}

@media only screen and (max-width: 600px) {
  .container-payment.mp {
    display: none !important;
  }

  .notice-deposit {
    place-items: center !important;
  }

  .body-three .body-pix,
  .body-mp {
    text-align: center;
  }

  .finish-withdraw {
    margin: auto !important;
  }

  .value-avaible-withdraw {
    flex-direction: column !important;
  }

  .body-stages h2 {
    text-align: center !important;
  }

  .user-status {
    display: none !important;
  }

  .text-available-value {
    margin: 20px 0px !important;
  }

  .btn-method-withdraw {
    flex: 1;
  }

  .btn-method-withdraw.active {
    flex: 0;
  }
}

/* MODAL 

.btn-close-modal {
  color: red;
  font-size: 1.5rem;
}

.btn-close-modal:hover {
  opacity: 0.7;
}

.btn-close-modal:active {
  opacity: .8;
}

/* MODAL NOTICE */
.modal.modal-notice {
    transition: .25s cubic-bezier(0.95, 0.01, 0.36, 1);
    transform: translateY(-100%);
  }
  
  .modal.modal-notice.open {
    transform: translateY(0%);
  }
  
  .modal-notice .modal-title {
    display: flex;
    justify-content: space-between;
  }
  
  .modal-notice .modal-title h1 {
    background: -webkit-linear-gradient(180deg, rgba(42, 193, 185, 0.5), #FDD880);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .modal-notice .modal-content {
    background: var(--bg-primary);
    box-shadow: 0 4px 10px #000;
    color: #fff;
    padding: 20px 35px;
    max-width: 1100px;
  }
  
  .content-banner picture img[alt="Banner - Mania"] {
    width: 300px;
    box-shadow: 0 5px 10px rgb(0 0 0 / 50%);
    border-radius: 10px;
    margin: 10px 0;
  }
  
  .modal-notice .modal-footer {
    display: flex;
    flex-direction: column;
  }
  
  .modal-notice .modal-footer .input-group {
    display: flex;
    flex-direction: row;
    margin: 5px 0;
  }
  
  .input-group label[for="notShowAgain"] {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0 5px;
  }
  
  .modal-notice #confirmNotice {
    width: 100%;
    background: #FDD880;
    padding: 20px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 5px 5px rgb(0 0 0 / 50%);
    transition: .25s ease;
  }
  
  .modal-notice #confirmNotice:hover {
    transform: scale(0.98);
    box-shadow: 0 0px 0px rgb(0 0 0 / 0%);
  
  }
  
  /* MODAL LOGIN */
  .modal.modal-login {
    transition: .25s cubic-bezier(0.95, 0.01, 0.36, 1);
    transform: translateY(-100%);
  }
  
  .modal.modal-login.open {
    transform: translateY(0%);
  }
  
  .modal-login .modal-content {
    background: var(--bg-primary);
    box-shadow: 0 4px 10px #000;
    color: #fff;
    padding: 20px 35px;
    max-width: 430px;
    width: 100%;
  }
  
  .modal-login .modal-title img[alt="Jogo do Bicho Online - Bicho Mania"] {
    width: 50px;
  }
  
  .modal-login .modal-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .modal-login .btn-close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 20px;
    opacity: .5;
    cursor: pointer;
  }
  
  .modal-login .btn-close-modal:active {
    opacity: 1;
  }
  
  .modal-login .title-modal-login {
    margin: 15px 0;
    font-size: 1.5rem;
    font-weight: 500;
  }
  
  .modal-login .modal-body img[alt="Jogo do Bicho Online - Bicho Mania, Login com Google"] {
    width: 25px;
    margin: 0 8px;
  }
  
  .modal-login .modal-footer {
    margin: 0 0 10px;
  }
  
  .btn.btn-modal-login {
    background: #FDD880;
    padding: 15px 20px;
    border-radius: 5px;
    text-align: center;
    width: 100%;
    transition: .25s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  }
  
  .btn.btn-modal-login:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 10px rgb(0, 0, 0, 0.5);
  }
  
  /* MODAL SIGNUP */
  .modal.modal-signup {
    transition: .25s cubic-bezier(0.95, 0.01, 0.36, 1);
    transform: translateY(-100%);
  }
  
  .modal.modal-signup.open {
    transform: translateY(0%) !important;
  }
  
  .modal-signup .modal-content {
    padding: 0px;
    max-width: 500px;
  }
  
  .modal-signup .modal-title {
    background: #FDD880;
    border-radius: 10px 10px 0 0;
    padding: 10px;
  }
  
  .modal-signup .btn-close-modal {
    position: absolute;
    right: 15px;
    top: 10px;
    color: #fff;
    font-size: 1.5rem;
  }
  
  .modal-signup .icon-success {
    color: #fff;
    font-size: 5rem;
    text-align: center;
    padding: 40px;
  }
  
  .modal-signup .modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 20px;
  }
  
  .modal-signup .modal-body h1 {
    color: #FDD880;
  }
  
  .modal-signup .modal-body h2 {
    font-size: 1rem;
    font-weight: 400;
    margin: 15px;
    color: #343434;
  }
  
  .modal-signup .modal-body h3 {
    color: #343434;
  }
  
  .btn-go {
    margin: 15px 0 0;
    width: 100%;
    background: #FDD880;
    padding: 20px;
    border-radius: 5px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
  }
  
  /* MODAL COMPRA EFETUADA */
  .modal.modal-success {
    transition: .25s cubic-bezier(0.95, 0.01, 0.36, 1);
    transform: translateY(-100%);
  }
  
  .modal.modal-success.open {
    /* transition: .25s cubic-bezier(0.95, 0.01, 0.36, 1); */
    transform: translateY(0%);
  }
  
  .modal.modal-success {
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    position: absolute;
    z-index: 15;
    overflow: auto;
    /* display: none; */
  }
  
  .modal-success.open {
    display: flex;
  }
  
  .modal.modal-success .modal-content {
    background: #fff;
    border-radius: 10px;
    width: max-content;
    height: max-content;
    max-width: 700px;
    overflow-y: hidden;
    overflow-x: hidden;
    padding: 10px 35px;
    margin: auto;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  
  .modal-success .btn-close-modal {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 1;
  }
  
  .modal-success .btn-close-modal i {
    color: #A2A2A6;
    font-size: 1.8rem;
    margin: 15px;
  }
  
  .modal-success .btn-close-modal:active i {
    color: red;
  }
  
  .modal-success .modal-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 0px 10px 20px;
  }
  
  .modal-success img[alt="Aposta realizada com sucesso!"] {
    position: relative;
    top: 30px;
    width: 100px;
    margin-bottom: 30px;
  }
  
  .modal-success .modal-title h1 {
    color: #FDD880;
    text-align: center;
  }
  
  .modal-success .modal-title h2 {
    color: #FDD880;
    font-weight: 400;
    font-size: 1rem;
    text-align: center;
  }
  
  .modal-success .modal-title h2 span {
    color: #FDD880;
  }
  
  .modal.modal-success .modal-body {
    max-width: 950px;
    width: 100%;
    display: block;
    margin: auto;
    overflow-y: auto;
  }
  
  .modal-success .modal-body .container-info-purchase {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    background: #00352f;
    padding: 10px 30px;
  }
  
  .modal-success .container-info-purchase div {
    margin: 5px 0;
  }
  
  .container-info-purchase div h1,
  h2 {
    color: #FDD880;
    font-weight: 400;
    font-size: 1rem;
  }
  
  .modal-success .content-info-purchase h1 {
    text-transform: uppercase;
  }
  
  .modal-success .content-info-purchase h2 span {
    font-weight: 600;
  }
  
  .modal-success .content-info-history-purchase .user-history,
  .history-purchase {
    text-transform: uppercase;
  }
  
  .modal-success .content-info-history-purchase .history-purchase {
    font-weight: 600;
  }
  
  .modal-success .container-list-purchase {
    display: flex;
    background: #FCFCFC;
    flex-direction: column;
    padding: 10px 22px;
    max-height: 250px;
    overflow-y: auto;
  }
  
  .modal-success .header-list-purchase {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin: 15px 8px;
  }
  
  .modal-success .header-list-purchase .content-header-list h1 {
    font-size: 1rem;
    font-weight: 400;
    color: #FDD880;
    text-align: center;
  }
  
  .modal-success .header-list-purchase .content-header-list h1 span {
    font-weight: 600;
  }
  
  .modal-success .header-list-purchase .content-header-list .btn.btn-showmore {
    color: #FDD880;
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 5px;
    align-items: center;
  }
  
  .modal-success .header-list-purchase .content-header-list .btn.btn-showmore.active {
    color: red;
  }
  
  .modal-success .content-list-purchase {
    max-height: 250px;
    overflow-y: auto;
  }
  
  .modal-success .content-list-purchase table {
    width: 100%;
    border-collapse: collapse;
  }
  
  .modal-success .content-list-purchase th,
  .content-list-purchase td {
    padding: 8px 15px;
    white-space: nowrap;
  }
  
  .modal-success .left-align {
    text-align: left;
  }
  
  .modal-success .center-align {
    text-align: center;
  }
  
  .modal-success .right-align {
    text-align: right;
  }
  
  .modal-success .modal-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
  }
  
  .modal-success .container-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .modal-success .container-footer h3 {
    font-size: 1rem;
    color: #FDD880;
    font-weight: 400;
    margin-right: 5px;
    text-align: center;
  }
  
  /* MODAL BONUS */
  .modal.modal-bonus {
    transition: .25s cubic-bezier(0.95, 0.01, 0.36, 1);
    transform: translateX(-100%);
  }
  
  .modal.modal-bonus.open {
    transform: translateX(0%);
  }
  
  .modal.modal-bonus .modal-content {
    background: #201d47;
    position: relative;
    overflow-x: visible !important;
    overflow-y: visible !important;
    border-radius: 0px;
    max-width: 450px;
    width: 100%;
  }
  
  .modal.modal-bonus .modal-content::before {
    content: "";
    display: block;
    position: absolute;
    width: 25px;
    height: 100%;
    right: 0;
    top: 0;
    left: -25px;
    background: linear-gradient(135deg, transparent 70%, rgb(32 29 71) 75%) 0 50%, linear-gradient(135deg, transparent 70%, rgb(32 29 71) 75%) 0 50%;
    background-repeat: repeat-y;
    background-size: 25px 8px, 25px 8px;
  
  }
  
  .modal.modal-bonus .modal-content::after {
    content: "";
    display: block;
    position: absolute;
    width: 25px;
    height: 100%;
    right: -25px;
    top: 0;
    background: linear-gradient(-135deg, transparent 70%, rgb(32 29 71) 75%) 0 50%, linear-gradient(-135deg, transparent 70%, rgb(32 29 71) 75%) 0 50%;
    background-repeat: repeat-y;
    background-position: right;
    background-size: 25px 8px, 25px 8px;
  }
  
  .modal-bonus .modal-title {
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-size: .8rem;
    margin: 10px 0 0;
  }
  
  .modal-bonus .modal-title h1 {
    background: -webkit-linear-gradient(180deg, #ebd197, #b48811);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .modal-bonus .btn-reedem {
    margin: 20px 0 10px;
    width: 100%;
    background: #FDD880;
    padding: 20px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 5px 5px rgb(0 0 0 / 50%);
  }
  
  .btn-reedem:active {
    box-shadow: 0 0 0;
  }
  
  .modal-bonus .message-error {
    width: 100%;
    background: red;
    text-align: center;
    color: #fff;
    font-weight: 700;
    padding: 10px;
    font-size: 1rem;
    margin: 10px 0 0;
    border-radius: 5px;
  }
  
  .modal-bonus .message-error.success {
    background: #FDD880;
  }
  
  /* MODAL USERS */
  .modal.modal-users {
    transition: .25s cubic-bezier(0.95, 0.01, 0.36, 1);
    transform: translateX(-100%);
  }
  
  .modal.modal-users.open {
    transform: translateX(0%);
  }
  
  .modal.modal-users .modal-content {
    background: #201d47;
  }
  
  .modal-users .modal-title {
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-size: .8rem;
    margin: 10px 0 20px;
  }
  
  .modal-users .modal-title h1 {
    background: -webkit-linear-gradient(120deg, #ffffff, #3ce1d9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.5rem;
  }
  
  .modal.modal-users form .row {
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .modal-users .input-group {
    flex: 1 0 170px;
  }
  
  .modal-users .btn-save {
    margin: 20px 0 10px;
    width: 100%;
    background: #FDD880;
    padding: 20px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 5px 5px rgb(0 0 0 / 50%);
  }
  
  .btn-save:active {
    box-shadow: 0 0 0;
  }
  
  .btn-open {
    background: #FDD880;
    padding: 10px;
    border-radius: 5px;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 5px 5px rgb(0, 0, 0, .2);
  }
  
  .modal-users .message-error {
    width: 100%;
    background: red;
    text-align: center;
    color: #fff;
    font-weight: 700;
    padding: 10px;
    font-size: 1rem;
    margin: 20px 0 10px;
    border-radius: 5px;
  }
  
  .modal-users .message-error.success {
    background: #FDD880;
  }
  
  /* MODAL BANCO */
  .modal.modal-bank {
    transition: .25s cubic-bezier(0.95, 0.01, 0.36, 1);
    transform: translateX(-100%);
  }
  
  .modal.modal-bank.open {
    transform: translateX(0%);
  }
  
  .modal.modal-bank .modal-content {
    max-width: 1200px !important;
    width: 100% !important;
    background: #201d47;
  }
  
  .modal-bank .modal-title .content-modal-title:first-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0 5px;
  }
  
  .modal-bank .modal-title .content-modal-title:first-child h1 {
    font-weight: 500;
    font-size: 1.5rem;
    color: #fff;
  }
  
  .modal-bank .modal-title .content-modal-title:last-child {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 2px solid rgb(255, 255, 255, 0.5);
  }
  
  .modal-bank .modal-title .content-modal-title:last-child .user-status {
    border: 2px solid rgb(255 255 255 / 50%);
    ;
    padding: 5px 10px;
    border-radius: 100px;
    color: rgb(255 255 255 / 50%);
    ;
    margin: 15px 0px;
  }
  
  .modal-bank .modal-title .content-modal-title:last-child .user-status h1 {
    font-size: 1rem;
    font-weight: 500;
  }
  
  .modal-bank .modal-title .content-modal-title:last-child .user-status h1 span {
    color: #FDD880;
  }
  
  
  .modal-bank .btn-withdraw,
  .modal-bank .btn-deposit {
    font-size: 1.2rem;
    font-weight: 700;
    color: rgb(255 255 255 / 50%);
    margin: 0px 20px;
    padding: .5rem 0;
  }
  
  .modal-bank .btn-withdraw.active,
  .modal-bank .btn-deposit.active {
    border-bottom: 2px solid #FDD880;
    color: #FDD880;
  }
  
  .modal-bank .modal-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  
  .modal-bank .modal-footer .buttons-footer {
    display: none;
  }
  
  .modal-bank .modal-footer .buttons-footer.d-flex {
    display: flex !important;
  }
  
  .modal-bank .modal-footer .buttons-footer.d-none {
    display: none !important;
  }
  
  .modal-bank .container-select-deposit {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .modal-bank .btn-deposit-request {
    margin: 10px auto;
    background: #FDD880;
    padding: 15px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 700;
    min-width: 280px;
    color: #fff;
    box-shadow: 0 5px 5px rgb(0 0 0 / 50%);
    transition: .2s ease-in-out;
  }
  
  .modal-bank .btn-deposit-request:hover {
    transform: scale(1.040);
    box-shadow: 0 0 0 #000;
  }
  
  .modal-bank .btn-deposit-cancel {
    display: none;
    margin: 10px auto;
    background: red;
    padding: 15px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 700;
    min-width: 280px;
    color: #fff;
    box-shadow: 0 5px 5px rgb(0 0 0 / 50%);
    transition: .2s ease-in-out;
  }
  
  .modal-bank .btn-deposit-cancel:hover {
    transform: scale(1.040);
    box-shadow: 0 0 0 #000;
  }
  
  .modal-bank .modal-footer .message-error {
    width: 100%;
    background: red;
    text-align: center;
    color: #fff;
    font-weight: 700;
    padding: 10px;
    font-size: 1rem;
    margin: 10px 0 0;
    border-radius: 5px;
  }
  
  .modal-bank .modal-footer .message-error.success {
    background: #FDD880 !important;
  }
  
  /* SWAL DEPOSIT */
  .item-swal-bank {
    font-size: 1rem;
    color: red;
  }
  
  .subtitle-swal-bank {
    font-size: .9rem;
    margin: 15px 0 5px;
    color: rgb(255 255 255 / 80%);
  }
  
  .title-swal-bank {
    font-size: 1rem;
    color: red;
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  /* HEADER MODAL */
  .modal-bank-user>.modal-header {
    border-bottom: none;
    padding: 1rem 2rem;
  }
  
  .modal-bank-user>.modal-header .modal-title {
    font-weight: 400;
    font-size: 24px;
    color: rgb(255 255 255 / 50%);
  }
  
  .modal-bank-user>.modal-select-options {
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    border-bottom: 1px solid #E6E6E6;
  }
  
  .modal-bank-user>.modal-select-options .btn-deposit,
  .btn-withdraw {
    padding: .5rem 0;
    margin: 0 1rem;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    color: rgba(87, 87, 87, 0.7);
  }
  
  .btn-deposit.active,
  .btn-withdraw.active {
    color: #FDD880 !important;
    border-bottom: 2px solid #FDD880;
  }
  
  /* CONTAINER MP PAYMENT */
  .container-payment-purchase {
    display: none;
    height: 100%;
    width: 100%;
  }
  
  .container-payment-purchase.d-none {
    display: none !important;
  }
  
  .container-payment-purchase.d-flex {
    display: flex !important;
  }
  
  /* HEADER STAGES */
  .header-stages {
    width: 100%;
    display: flex;
    margin: 10px 0px 5px;
  }
  
  .header-stages h1 {
    font-weight: 500;
    font-size: 1rem;
    white-space: nowrap;
    color: rgb(255 255 255 / 80%);
  }
  
  .header-stages span {
    font-size: 14px;
    font-weight: 500;
    color: #FDD880;
    border-bottom: 2px solid rgb(255 255 255 / 80%);
    width: 100%;
    align-self: flex-end;
    text-align: end;
    margin-left: .2rem;
  }
  
  /* BODY MODAL */
  .modal-body-bank.d-none {
    display: none !important;
  }
  
  .modal-body-bank.d-flex {
    display: flex !important;
  }
  
  .modal-body-bank {
    display: flex;
    justify-content: center !important;
    flex-direction: row !important;
    align-items: self-start !important;
    flex-wrap: wrap;
  }
  
  .container-payment-purchase.pix {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px;
  }
  
  .container-pix .content-pix img {
    width: 250px;
    height: 250px;
    background: #fff;
    border-radius: 5px;
    border: 2px solid #FDD880;
    padding: 10px;
    box-shadow: 0 5px 10px rgb(0 0 0 / 50%);
  }
  
  #qrcode {
    width: 250px;
    height: 250px;
    background: #fff;
    border-radius: 5px;
    border: 2px solid #FDD880;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    box-shadow: 0 5px 10px rgb(0 0 0 / 50%);
  }
  
  #qrcode>canvas {
    width: 100% !important;
  }
  
  .container-pix .btn-copy-code {
    background: #FDD880;
    width: 250px;
    color: #fff;
    padding: 20px;
    margin: 25px 0;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgb(0 0 0 / 50%);
    text-transform: uppercase;
    font-weight: 700;
  }
  
  .stage-one,
  .stage-two,
  .stage-three,
  .notice-deposit {
    padding: 25px 10px;
    width: 100%;
  }
  
  .container-payment-deposit,
  .container-bank-deposit {
    width: 100%;
    max-width: 550px;
  }
  
  /* STAGE 1 */
  .stage-one {
    display: flex;
    flex-direction: column;
  }
  
  .body-stages.body-stage-one {
    display: flex;
    flex-direction: column;
  }
  
  .body-stages.body-stage-one>.subtitle-stage-one {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: rgb(255 255 255 / 50%);
    margin: 15px 10px;
  }
  
  .body-stages.body-stage-one>.select-method-payments {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .rules-deposit {
    font-size: .9rem !important;
    color: red !important;
    font-weight: bold !important;
    margin: 20px 10px 10px !important;
    text-align: center;
  }
  
  .rules-deposit.ul {
    margin: 0px 10px !important;
    text-transform: uppercase;
  }
  
  ul li.rules-deposit {
    margin: 0px 10px !important;
    text-transform: uppercase;
  }
  
  .body-stages.body-stage-one>.select-method-payments .btn-payment {
    border-radius: 5px;
    border: 1px solid #C7C7C7;
    padding: 1rem;
    margin: 5px 10px;
    width: 150px;
    height: 65px;
    text-align: center;
    flex: 1;
    position: relative;
    transition: 1s all cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  
  .body-stages.body-stage-one>.select-method-payments .btn-payment.disabled {
    opacity: .6;
  }
  
  .body-stages.body-stage-one>.select-method-payments .btn-payment.disabled:hover {
    transform: scale(1);
    border: 1px solid #c7c7c7;
    box-shadow: none;
  }
  
  .body-stages.body-stage-one>.select-method-payments .btn-payment img {
    width: 85px;
  }
  
  .body-stages.body-stage-one>.select-method-payments .btn-payment.active {
    border: 1px solid #FDD880;
    background: rgba(42, 193, 185, 0.1);
  }
  
  .btn-payment.active::after {
    font-family: "Font Awesome 5 Free";
    content: "\f00c";
    font-size: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    width: 25px;
    height: 25px;
    background: #FDD880;
    color: #fff !important;
    position: absolute;
    border: 3px solid #201d47;
    border-radius: 100%;
    top: -12px;
    right: -10px;
    transition: 1s all cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  
  .body-stages.body-stage-one>.select-method-payments .btn-payment:hover,
  .btn-payment:focus {
    transform: scale(1.050);
    border: 1px solid #FDD880;
    box-shadow: 0 5px 10px #4c4c4c6a;
  }
  
  /* STAGE 2 */
  .body-stages.body-stage-two {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .value-stage-two,
  .coupon-stage-two {
    margin: 10px;
  }
  
  .input-value-group {
    position: relative;
    width: 230px;
    font-size: 1.2rem;
  }
  
  .input-value-group>span {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
  }
  
  .input-value-group>span:first-child {
    left: 15px;
    color: rgb(255 255 255 / 50%);
    font-weight: 300;
    font-size: 1rem;
  }
  
  .input-value-group>span:last-child {
    right: 15px;
    font-size: 1.5rem;
    font-weight: 500;
    color: rgb(255 255 255 / 50%);
  }
  
  .input-value {
    background: var(--bg-secondary);
    border: 2px solid var(--bg-secondary) !important;
    padding: 8px 50px 8px 35px;
    width: 230px;
    text-align: end;
    font-size: 1.5rem;
    font-weight: 500;
    color: rgb(255 255 255 / 50%);
  }
  
  .input-value.is-invalid {
    border-color: red !important;
  }
  
  .input-value-stage-two h2 {
    font-weight: 400;
    font-size: 14px;
    color: rgb(255 255 255 / 50%);
    margin: 15px 0px;
  }
  
  .coupon-stage-two h2 {
    font-weight: 400;
    font-size: 14px;
    color: rgb(255 255 255 / 50%);
    margin: 15px 0px;
  }
  
  .input-coupon-stage-two {
    display: flex;
  }
  
  .input-message {
    text-transform: uppercase;
    color: #FDD880;
    font-weight: bold;
    font-size: 0.94rem;
  }
  
  .input-coupon-stage-two>.input-coupon {
    background: var(--bg-secondary);
    border: 1px solid var(--text-secondary);
    padding: 15px;
    text-align: end;
    font-weight: 400;
    color: rgb(255 255 255 / 50%);
    font-size: 14px;
    border-radius: 5px 0 0 5px;
    width: 140px;
    text-align: start;
    text-transform: uppercase;
  }
  
  .input-coupon-stage-two>.input-coupon::placeholder {
    text-transform: lowercase;
  }
  
  .input-coupon-stage-two>.btn-stage-two.validateCouponDeposit {
    color: #fff;
    background: #FDD880;
    border-radius: 0px 5px 5px 0px;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    opacity: .5;
    transition: .2s all ease-in-out;
    box-shadow: 0 0 10px #FDD88029;
    min-width: 115px;
  }
  
  .input-coupon-stage-two>.btn-stage-two.validateCouponDeposit.remove-coupon {
    background: #c7c7c7 !important;
  }
  
  .input-coupon-stage-two>.btn-stage-two.validateCouponDeposit.remove-coupon:hover {
    background: #a7a6a6 !important;
  }
  
  .input-coupon:focus {
    border-color: #FDD880;
  }
  
  .input-coupon:focus+.validateCouponDeposit {
    opacity: 1;
  }
  
  .input-coupon-stage-two>.btn-stage-two.validateCouponDeposit:hover {
    opacity: 1;
  }
  
  /* VALIDATE INPUT CLASS */
  .input-coupon.validateCheck {
    border-color: #FDD880;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .input-coupon.validateCheck::after {
    content: 'Cupom aplicado';
    position: absolute;
    top: 0px;
    font-size: 1rem;
    color: #FDD880;
  }
  
  .input-coupon.validateCheck+.validateCouponDeposit {
    opacity: 1;
  }
  
  .input-coupon.is-invalid {
    border-color: red;
  }
  
  .input-coupon.is-invalid+.validateCouponDeposit {
    opacity: 1;
    background: red;
  }
  
  .input-value:focus {
    border-bottom: 2px solid #FDD880 !important;
  }
  
  /* NOTICE DEPOSIT */
  .notice-deposit {
    display: flex;
    flex-direction: column;
  }
  
  .notice-deposit .title-notice {
    display: flex;
  }
  
  .notice-deposit .title-notice>h1 {
    font-weight: 500;
    font-size: 35px;
    color: #6D9DC5;
  }
  
  .notice-deposit>.subtitle-notice {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .notice-deposit .title-notice>h2 {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: rgb(255 255 255 / 50%);
    align-self: flex-end;
    margin: 5px;
  }
  
  .notice-deposit>.subtitle-notice>.adjectives {
    display: flex;
  }
  
  .notice-deposit>.subtitle-notice>.adjectives span {
    background: #FDD880;
    border-radius: 100px;
    font-weight: 400;
    font-size: 12px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #FFF;
    padding: 2px 15px;
    margin: 5px 3px;
  }
  
  /* STAGE 3 */
  /* BODY PIX */
  .body-three .body-pix h2 {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: rgb(255 255 255 / 50%);
    margin: 15px 10px;
  }
  
  /* .body-three .body-pix .btn-next-payment:hover:before {
      opacity: 1;
      transform: translate(0, 0);
  }
  
  .body-three .body-pix .btn-next-payment:before {
      content: attr(data-hover);
      position: absolute;
      left: 0;
      width: 100%;
      text-transform: uppercase;
      font-size: 1rem;
      opacity: 0;
      transform: translate(-100%, 0);
      transition: all .3s ease-in-out;
  }
  
  .body-three .body-pix .btn-next-payment:hover div {
      opacity: 0;
      transform: translate(100%, 0);
  } */
  
  .body-three .body-pix .btn-next-payment div {
    text-transform: uppercase;
    font-size: 1rem;
    transition: all .3s ease-in-out;
  }
  
  .body-three .body-pix .btn-next-payment:disabled {
    pointer-events: none;
  }
  
  .body-three .body-pix .payment-data {
    margin: 30px 0px;
    text-align: center;
  }
  
  .body-three .body-pix .payment-data h3 {
    font-size: 18px;
    color: rgb(255 255 255 / 50%);
    font-weight: 400;
  }
  
  .body-three .body-pix .payment-data h3 span {
    color: #FDD880;
    font-weight: 500;
  }
  
  .body-three .body-pix .payment-data h3 .couponValueText {
    font-size: 20px;
    color: var(--success);
    font-weight: bold;
    margin: 0px 5px;
  }
  
  .checkExistingCoupon {
    font-weight: bold !important;
  }
  
  .checkExistingCoupon i {
    color: #FDD880 !important;
  }
  
  .container-payment.pix {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 20px;
  }
  
  .container-payment.pix img {
    border-radius: 5px;
    border: 2px solid #FDD880;
    padding: 15px;
    width: 200px;
    box-shadow: 0 10px 15px #00000069;
  }
  
  /* BODY MP */
  .body-three .body-mp h2 {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: rgb(255 255 255 / 50%);
  }
  
  .body-three .body-mp button {
    background: #FDD880;
    border-radius: 100px;
    padding: 10px 20px;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 30px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #FFF;
    opacity: .6;
    transition: .2s all cubic-bezier(0.68, -0.55, 0.27, 1.55);
    margin: auto;
  }
  
  .body-three .body-mp .btn-next-payment {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FDD880;
    width: 280px;
    border-radius: 100px;
    padding: 10px 20px;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 30px;
    color: #FFF;
    opacity: .6;
    transition: .2s all cubic-bezier(0.68, -0.55, 0.27, 1.55);
    margin: 20px auto;
    cursor: pointer;
  }
  
  /* .body-three .body-mp .btn-next-payment:hover:before {
      opacity: 1;
      transform: translate(0, 0);
  }
  
  .body-three .body-mp .btn-next-payment:before {
      content: attr(data-hover);
      position: absolute;
      left: 0;
      width: 100%;
      text-transform: uppercase;
      font-size: 1rem;
      opacity: 0;
      transform: translate(-100%, 0);
      transition: all .3s ease-in-out;
  }
  
  .body-three .body-mp .btn-next-payment:hover div {
      opacity: 0;
      transform: translate(100%, 0);
  } */
  
  .body-three .body-mp .btn-next-payment div {
    text-transform: uppercase;
    font-size: 1rem;
    transition: all .3s ease-in-out;
  }
  
  .body-three .body-mp .btn-next-payment:disabled {
    pointer-events: none;
  }
  
  .body-three .body-mp button:hover {
    opacity: 1;
    transform: scale(1.040);
  }
  
  .body-three .body-mp .payment-data {
    margin: 30px 0px;
    text-align: center;
  }
  
  .body-three .body-mp .payment-data h3 {
    font-size: 18px;
    color: rgb(255 255 255 / 50%);
    font-weight: 400;
  }
  
  .body-three .body-mp .payment-data h3 span {
    color: #373737;
    font-weight: 500;
  }
  
  .body-three .body-mp .payment-data h3 .couponValueText {
    font-size: 18px;
    color: var(--success);
    font-weight: bold;
    margin: 0px 5px;
  }
  
  .container-payment.mp {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 20px;
  }
  
  .container-payment.mp img {
    border-radius: 15px;
    padding: 20px 80px;
    width: 280px;
    border: 1px solid #C7C7C7;
    box-shadow: 0 5px 15px #00000029;
  }
  
  /* WITHDRAW */
  .value-avaible-withdraw {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .container-info-whithdraw {
    width: 100%;
    max-width: 550px;
    /* margin: 10px 20px; */
  }
  
  .container-history-withdraw {
    width: 100%;
    max-width: 550px;
    padding: 40px 20px;
  }
  
  .available-value {
    align-self: flex-end;
  }
  
  .text-available-value {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: rgb(255 255 255 / 50%);
    margin: 20px 0px 20px 20px;
  }
  
  .text-available-value span {
    color: #6D9DC5;
    font-weight: bold;
  }
  
  .finish-withdraw {
    margin-left: auto;
  }
  
  .btn-finish-withdraw {
    margin: 10px auto;
    background: #FDD880;
    padding: 15px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 700;
    min-width: 280px;
    color: #fff;
    box-shadow: 0 5px 5px rgb(0 0 0 / 50%);
    transition: .2s ease-in-out;
  }
  
  .btn-finish-withdraw:hover {
    transform: scale(1.040);
    box-shadow: 0 0 0 #000;
  }
  
  .container-warn h1 {
    font-weight: 700;
    font-size: 1rem;
    line-height: 18px;
    color: red;
    margin-bottom: 15px;
  }
  
  .container-warn p {
    font-style: normal;
    font-weight: 400;
    font-size: 1rem;
    line-height: 18px;
    color: rgb(255 255 255 / 50%);
  }
  
  .container-warn p span {
    color: red;
    font-weight: bold;
  }
  
  .withdrawal-request {
    width: 100%;
  }
  
  .column-withdrawal-request {
    color: rgb(255 255 255 / 80%);
  }
  
  .column-withdrawal-request:last-child {
    justify-content: flex-end;
  }
  
  .withdrawal-request.waiting .row-withdrawal-request {
    background-color: #f9b23233;
  }
  
  .withdrawal-request.waiting .status-withdraw {
    color: #ffa500;
    background-color: #f9b23233;
    margin: 10px;
  }
  
  .withdraw-request {
    border: 1px solid #ced4da;
    padding: 10px;
    border-radius: 4px;
    background-color: rgb(248, 242, 241);
    margin-bottom: 10px;
    justify-content: center;
  }
  
  .withdrawal-request.waiting .status-withdraw {
    content: "Aguardando";
    color: #ffa500;
    background-color: #f9b23233;
    padding: 8px;
    border-radius: 10px;
    margin: 10px;
    font-weight: bold;
  }
  
  .withdrawal-request.processing .status-withdraw {
    content: "Processando" !important;
    background-color: #56ca988c;
    color: #56ca98;
    padding: 8px;
    border-radius: 10px;
    margin-top: 10px;
    font-weight: bold;
  }
  
  .container-withdrawal-request {}
  
  .row-withdrawal-request {
    display: flex;
    border-radius: 10px;
  }
  
  .withdrawal-request.waiting .row-withdrawal-request {
    background-color: #f9b23233;
  }
  
  .withdrawal-request.processing .row-withdrawal-request {
    background-color: #56ca988c;
  }
  
  .column-withdrawal-request {
    font-size: 14px;
    font-weight: bold;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 10px;
  }
  
  .column-withdrawal-request:nth-child(1) {
    justify-content: flex-start;
  }
  
  .column-withdrawal-request:nth-child(4) {
    justify-content: flex-end;
  }
  
  /* history withdraw */
  .content-history {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .content-history h5 {
    text-align: center;
    font-size: 1.5rem;
    margin: 10px;
    color: rgb(255 255 255 / 80%);
  }
  
  .content-history .content-span-history {
    margin: 20px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    background: #6d9dc529;
    border-radius: 100px;
    color: #6D9DC5;
  }
  
  .content-history .content-span-history i {
    font-size: 2rem;
  }
  
  .content-history h2 {
    font-weight: 400;
    font-size: 1rem;
    color: rgb(255 255 255 / 50%);
    opacity: .8;
  }
  
  /* Select method withdraw */
  .select-method-withdraw {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  
  .btn-method-withdraw {
    margin: 10px;
    border-radius: 5px;
    border: 2px solid #C7C7C7;
    color: rgb(255 255 255 / 50%);
    padding: 10px 20px;
    max-width: 160px;
    font-size: .95rem;
    min-width: 90px;
    transition: .5s all cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    cursor: pointer;
  }
  
  .btn-method-withdraw:disabled {
    transform: scale(1);
    border: 2px solid #C7C7C7 !important;
    background: none;
    color: rgb(255 255 255 / 50%);
    box-shadow: none;
  }
  
  .btn-method-withdraw.active {
    border-color: #6D9DC5;
    background: #6D9DC51A;
  }
  
  .btn-method-withdraw.active::before {
    font-family: 'Font Awesome 5 Free';
    content: "\f00d";
    font-size: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    width: 25px;
    height: 25px;
    background: red;
    color: #fff !important;
    position: absolute;
    border: 3px solid #201d47;
    border-radius: 100%;
    top: -12px;
    right: -10px;
    transition: 1s all cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  
  .input-method-withdraw {
    flex: 1;
    background: rgba(109, 157, 197, 0.1);
    border-radius: 5px;
    border: 2px solid rgb(109, 157, 197);
    color: rgba(255, 255, 255, 0.5);
    padding: 10px 20px;
    font-size: 0.95rem;
  }
  
  .content-input-withdraw {
    position: relative;
    width: 230px;
    font-size: 1.2rem;
  }
  
  .content-input-withdraw>span {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
  }
  
  .content-input-withdraw>span:first-child {
    left: 15px;
    color: rgb(255 255 255 / 50%);
    font-weight: 300;
    font-size: 1rem;
  }
  
  .input-withdraw {
    background: var(--bg-secondary);
    border: 2px solid var(--bg-secondary) !important;
    padding: 8px 10px 8px 35px;
    width: 230px;
    text-align: end;
    font-size: 1.5rem;
    font-weight: 500;
    color: rgb(255 255 255 / 50%);
  }
  
  .input-withdraw:focus {
    border-bottom: 3px solid #FDD880;
  }
  
  .input-withdraw-stage-two h2 {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: rgb(255 255 255 / 50%);
    margin: 15px 0px;
  }
  
  @media only screen and (max-width: 1221px) {
    .withdraw.hideMobile {
      display: none !important;
    }
  
    .modal-body-bank.withdraw.mobileWithdraw {
      flex-flow: wrap-reverse !important;
      align-content: start;
    }
  }
  
  @media only screen and (max-width: 1131px) {
    .hideMobile {
      display: none !important;
    }
  
    .notice-deposit>.subtitle-notice {
      align-self: center;
    }
  
    .notice-deposit>.title-notice {
      align-self: center;
    }
  }
  
  @media only screen and (max-width: 600px) {
    .container-payment.mp {
      display: none !important;
    }
  
    .notice-deposit {
      place-items: center !important;
    }
  
    .body-three .body-pix,
    .body-mp {
      text-align: center;
    }
  
    .finish-withdraw {
      margin: auto !important;
    }
  
    .value-avaible-withdraw {
      flex-direction: column !important;
    }
  
    .body-stages h2 {
      text-align: center !important;
    }
  
    .user-status {
      display: none !important;
    }
  
    .text-available-value {
      margin: 20px 0px !important;
    }
  
    .btn-method-withdraw {
      flex: 1;
    }
  
    .btn-method-withdraw.active {
      flex: 0;
    }
  }

  

  .concluido {
    --tw-text-opacity: 1;
    color: white;
    background-color: rgb(63 255 0 / 54%);
  }

  .aguardando {

    --tw-text-opacity: 1;
    color: white;
    background-color: rgb(0 255 255 / 54%);
  }