.btn-close-modal {
  color: var(--danger);
  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(254, 93, 0, 0.5), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-notice .modal-content {
  background: var(--modal-bg);
  box-shadow: 0 4px 10px var(--modal-shadow);
  color: var(--game-text-primary);
  padding: 20px 35px;
  max-width: 1100px;
}

.img-banner {
  position: relative;
  z-index: 1;
  /* margin-top: 10px; */

  &::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, var(--bg-primary) 5%, transparent) 95%;
    z-index: 10;
  }
}

.content-banner picture img[alt="Banner depósito"] {
  width: 100%;
  box-shadow: 0 5px 10px var(--bg-shadow);
  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-link);
  margin: 0 5px;
}

.deposit-header #confirmNotice {
  width: max-content;
  background: var(--primary);
  padding: 7px 8px;
  margin-right: 9px;
  border-radius: 5px;
  font-size: 0.71rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 2px 2px var(--bg-shadow);
  transition: .25s ease;
}

.modal-notice #confirmNotice {
  width: max-content;
  background: var(--primary);
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 5px 5px var(--bg-shadow);
  transition: .25s ease;
}

.modal-notice #confirmNotice:hover {
  transform: scale(0.98);
  /* box-shadow: 0 0px 0px rgb(0 0 0 / 0%); */
}

/* MODAL LOGIN */
.no-account {
  text-align: center;
  color: #9ca3af;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.no-account a {
  color: var(--primary);
  cursor: pointer;
  margin-left: 4px;
}

.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,
.modal-signup .modal-content {
  background: var(--bg-primary);
  box-shadow: 0 4px 10px var(--modal-shadow);
  color: var(--game-text-primary);
  padding: 20px 35px;
  max-width: 430px;
  width: 100%;
}

.modal-login .modal-title img[alt="Jogo do Bicho Online"] {
  width: 50px;
  margin: 20px auto 0;
}

.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,
.modal-signup .title-modal-signup {
  margin: 15px 0 0;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--game-text-primary);
}

.modal-login .tabs-login p {
  opacity: .5;
  font-size: 12px;
  margin: 0;
}

.modal-login .modal-body img[alt="Jogo do Bicho Online - Login com Google"] {
  width: 25px;
  margin: 0 8px;
}

.modal-login .modal-footer {
  margin: 0 0 10px;
}

.btn.btn-modal-login {
  background: var(--primary);
  color: #fff;
  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 var(--bg-shadow);
}

/* MODAL SIGNUP */
.modal.modal-signup {
  transition: .25s cubic-bezier(0.95, 0.01, 0.36, 1);
  transform: translateY(-100%);
}

.modal.modal-signup .modal-title img {
  max-height: 50px;
}

.modal.modal-signup.open {
  transform: translateY(0%) !important;
}

.modal-signup .modal-content {
  padding: 0px;
  max-width: 500px;
  background: var(--modal-bg);
}

.container-inputs-signup {
  width: 100%;
}

.modal-signup .modal-title {
  background: var(--primary);
  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: var(--primary);
}

.modal-signup .modal-body h2 {
  font-size: 1rem;
  font-weight: 400;
  margin: 15px;
  color: #343434;
}

.modal-signup .modal-body h3 {
  color: #343434;
}

.modal-signup .modal-footer {
  padding: 20px;
}

.btn-go {
  margin: 15px 0 0;
  width: 100%;
  background: var(--primary);
  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: var(--danger);
}

.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;
  opacity: .2;
}

.modal-success .modal-title h1 {
  color: #387655;
  text-align: center;
}

.modal-success .modal-title h2 {
  color: #242424;
  font-weight: 400;
  font-size: 1rem;
  text-align: center;
}

.modal-success .modal-title h2 span {
  color: #387655;
}

.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: #F3F3F3;
  padding: 10px 30px;
}

.modal-success .container-info-purchase div {
  margin: 5px 0;
}

.container-info-purchase div h1,
h2 {
  color: #242424;
  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;
  margin: 15px 8px;
}

.modal-success .header-list-purchase .content-header-list h1 {
  font-size: 1rem;
  font-weight: 400;
  color: #242424;
  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: #25ab63;
  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: var(--danger);
}

.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: #242424;
  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: var(--modal-bg);
  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%, var(--modal-bg) 75%) 0 50%, linear-gradient(135deg, transparent 70%, var(--modal-bg) 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%, var(--modal-bg) 75%) 0 50%, linear-gradient(-135deg, transparent 70%, var(--modal-bg) 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: var(--game-text-primary);
  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: var(--primary);
  padding: 20px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 5px 5px var(--bg-shadow);
}

.btn-reedem:active {
  box-shadow: 0 0 0;
}

.modal-bonus .message-error {
  width: 100%;
  background: var(--danger);
  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: var(--primary);
}

/* MODAL CONFIG */
.modal.modal-config {
  transition: .25s cubic-bezier(0.95, 0.01, 0.36, 1);
  transform: translateX(-100%);
}

.modal.modal-config.open {
  transform: translateX(0%);
}

.modal-config .modal-content {
  background: var(--bg-primary);
  padding: 15px 35px;
  color: var(--game-text-primary);
}

.modal-config .modal-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.modal-config .modal-body {
  margin: 10px 0;
  display: flex;
  flex-direction: column;
}

.modal-config .modal-title h1 {
  font-size: 1.5rem;
}

.layout-config {
  margin: 10px 0;
  border-bottom: 2px solid #ffffff2e;
  width: 100%;
}

.layout-config h1,
h2 {
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
}

.radio-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 15px 0;
}

.check {
  display: inline-block;
  height: 20px;
  width: 40px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.check__check {
  z-index: 2;
  opacity: 0;
  cursor: pointer;
}

.check__check:checked~.check__indicator {
  background: var(--primary);
}

.check__check:checked~.check__indicator:after {
  transform: translate(20px, -50%);
}

.check__check,
.check__indicator {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
}

.check__indicator {
  background: var(--text-link);
  transition: background 0.25s ease;
}

.check__indicator:after {
  height: 15px;
  width: 15px;
  background: var(--game-text-primary);
  content: '';
  position: absolute;
  border-radius: 100%;
  top: 50%;
  transform: translate(0, -50%);
  left: 3px;
  transition: transform 0.25s ease;
}

.btn-save-changes {
  width: 100%;
  background: var(--primary);
  padding: 20px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 5px 5px var(--bg-shadow);
}

/* 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: var(--modal-bg);
}

.modal-users .modal-title {
  display: flex;
  justify-content: space-between;
  color: var(--game-text-primary);
  font-size: .8rem;
  margin: 10px 0 20px;
}

.modal-users .modal-title h1 {
  background: -webkit-linear-gradient(120deg, var(--game-text-primary), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.5rem;
}

.modal.modal-users form .row {
  gap: 10px;
  flex-wrap: wrap;
}

.text-customization {
  color: var(--game-text-primary);
  margin: 10px 0;
}

.text-customization a {
  color: var(--primary);
  text-decoration: dashed;
  cursor: pointer;
}

.modal-users .input-group {
  flex: 1 0 170px;
}

.modal-users .btn-save {
  margin: 10px 0;
  width: 100%;
  background: var(--primary);
  padding: 20px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 5px 5px var(--bg-shadow);
}

.btn-save:active {
  box-shadow: 0 0 0;
}

.btn-open {
  background: var(--primary);
  padding: 10px;
  border-radius: 5px;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 5px 5px var(--bg-shadow);
}

.modal-users .message-error {
  width: 100%;
  background: var(--danger);
  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: var(--primary);
}

/* 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: var(--modal-bg);
  padding: 10px 0;
}

.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: var(--game-text-primary);
}

.modal-bank .modal-title .content-modal-title:last-child {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 2px solid var(--text-light);
}

.modal-bank .modal-title .content-modal-title:last-child .user-status {
  border: 2px solid var(--text-light);
  ;
  padding: 5px 10px;
  border-radius: 100px;
  color: var(--text-light);
  ;
  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: var(--primary);
}


.modal-bank .btn-withdraw,
.modal-bank .btn-deposit {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-light);
  margin: 0px 20px;
  padding: .5rem 0;
}

.modal-bank .btn-withdraw.active,
.modal-bank .btn-deposit.active {
  border-bottom: 2px solid var(--primary);
  color: var(--primary);
}

.modal-bank .modal-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 10px;
}

.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: var(--primary);
  padding: 15px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 700;
  min-width: 270px;
  color: #fff;
  box-shadow: 0 5px 5px var(--bg-shadow);
  transition: .2s ease-in-out;
}

.modal-bank .btn-deposit-request:hover {
  transform: scale(1.040);
  box-shadow: 0 0 0 var(--modal-shadow);
}

.modal-bank .btn-deposit-cancel {
  display: none;
  margin: 10px auto;
  background: var(--danger);
  padding: 15px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 700;
  min-width: 280px;
  color: #fff;
  box-shadow: 0 5px 5px var(--bg-shadow);
  transition: .2s ease-in-out;
}

.modal-bank .btn-deposit-cancel:hover {
  transform: scale(1.040);
  box-shadow: 0 0 0 var(--modal-shadow);
}

.modal-bank .modal-footer .message-error {
  width: 100%;
  max-width: 550px;
  background: var(--danger);
  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: var(--primary) !important;
}

/* SWAL DEPOSIT */
.item-swal-bank {
  font-size: 1rem;
  color: var(--danger);
}

.text-swal-bank {
  font-size: .9rem;
  margin: 5px 0;
  color: #fff;
  opacity: .7;
  font-weight: 500;
}

.title-swal-bank {
  font-size: 2rem;
  color: #ffc341;
}

/* 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: var(--text-light);
}

.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;
}

.btn-deposit.active,
.btn-withdraw.active {
  color: var(--primary) !important;
  border-bottom: 2px solid var(--primary);
}

/* 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: var(--game-text-primary);
  opacity: .6;
}

.header-stages span {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  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: column !important;
  align-items: center !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: var(--game-text-primary);
  border-radius: 5px;
  border: 2px solid var(--primary);
  padding: 10px;
  box-shadow: 0 5px 10px var(--bg-shadow);
}

#qrcode {
  width: 250px;
  height: 250px;
  background: #fff;
  border-radius: 5px;
  border: 2px solid var(--primary);
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  box-shadow: 0 5px 10px var(--bg-shadow);
}

#qrcode>canvas {
  width: 100% !important;
}

.container-pix .btn-copy-code {
  background: var(--primary);
  width: 250px;
  color: #fff;
  padding: 20px;
  margin: 25px 0;
  border-radius: 5px;
  box-shadow: 0 5px 10px var(--bg-shadow);
  text-transform: uppercase;
  font-weight: 700;
}

.stage-one,
.stage-two,
.stage-three,
.notice-deposit {
  padding: 0 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: var(--text-light);
  margin: 15px 10px;
  display: none;
}

.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: var(--danger) !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 var(--primary);
  background: var(--primary-light);
}

.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: var(--primary);
  color: #fff !important;
  position: absolute;
  border: 3px solid var(--modal-bg);
  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 var(--primary);
  box-shadow: 0 5px 10px #4c4c4c6a;
}

/* STAGE 2 */
.body-stages.body-stage-two {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  /* flex-direction: column;
  padding: 0 10px; */
}

.value-stage-two,
.coupon-stage-two {
  margin: 10px;
  width: 100%;
}

.group-values {
  overflow: hidden;
  /* max-width: 230px; */
  width: 100%;
  display: flex;
  padding: 0 5px;
  gap: 5px;

  &:active {
    cursor: grabbing;
  }

  & .btn-primary {
    margin: 10px 0px;
    background: var(--primary-medium);
    padding: 8px;
    border-radius: 2px;
    font-weight: 200;
    white-space: nowrap;
    font-size: 1rem;
    font-family: inherit;
    color: #fff;
    transition: .2s ease-in-out;

    &:hover {
      transform: scale(1.040);
    }

    &:active {
      opacity: .5;
    }
  }
}

.input-value-group {
  position: relative;
  /* width: 230px; */
  width: 100%;
  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: var(--game-text-primary);
  font-weight: 300;
  font-size: 1rem;
}

.input-value-group>span:last-child {
  right: 15px;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-light);
}

.input-value {
  background: var(--bg-secondary);
  border: 2px solid var(--bg-secondary) !important;
  padding: 8px 50px 8px 35px;
  /* width: 230px; */
  width: 100%;
  text-align: start;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--game-text-primary);
}

.input-value.is-invalid {
  border-color: var(--danger) !important;
}

.input-signup.is-invalid {
  border-color: var(--danger) !important;
}

.input-value-stage-two h2 {
  font-weight: 400;
  font-size: 14px;
  color: var(--text-light);
  margin: 15px 0px;
  display: none;
}

.coupon-stage-two h2 {
  font-weight: 400;
  font-size: 14px;
  color: var(--text-light);
  margin: 15px 0px;
}

.coupon-stage-two {
  & .group-coupon {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 0 5px;
    flex-wrap: wrap;

    & .btn-add-coupon {
      color: var(--primary);
      padding: 10px 0;

      &:hover {
        opacity: .8;
      }

      &:active {
        opacity: .5;
      }
    }

    & h2 {
      font-size: 1rem;
      display: flex;
      gap: 10px;
      font-weight: 400;
      color: var(--text-light);
      margin: 15px 0px;

      & i {
        background: var(--primary-light);
        color: var(--text-secondary);
        padding: 6px;
        font-size: 14px;
        border-radius: 100px;
        transform: rotate(-45deg);
      }
    }
  }
}

.hidden-div-coupon {
  transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
  overflow: hidden;
}

.input-coupon-stage-two {
  display: flex;
}

.input-message {
  text-transform: uppercase;
  color: var(--primary);
  font-weight: bold;
  font-size: 0.94rem;
}

.input-coupon-stage-two>.input-coupon {
  background: var(--bg-secondary);
  border: 1px solid var(--primary-medium);
  padding: 15px;
  text-align: end;
  font-weight: 400;
  color: var(--text-light);
  font-size: 14px;
  border-radius: 5px 0 0 5px;
  width: 100%;
  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: var(--primary);
  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 var(--primary)29;
  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: var(--primary);
}

.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: var(--primary);
  font-weight: bold;
  text-transform: uppercase;
}

.input-coupon.validateCheck::after {
  content: 'Cupom aplicado';
  position: absolute;
  top: 0px;
  font-size: 1rem;
  color: var(--primary);
}

.input-coupon.validateCheck+.validateCouponDeposit {
  opacity: 1;
}

.input-coupon.is-invalid {
  border-color: var(--danger);
}

.input-coupon.is-invalid+.validateCouponDeposit {
  opacity: 1;
  background: var(--danger);
}

.input-value:focus {
  border-bottom: 2px solid var(--primary) !important;
}

/* NOTICE DEPOSIT */
.notice-deposit {
  display: flex;
  flex-direction: column;
}

.notice-deposit .title-notice {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 15px 0 0;
}

.notice-deposit .title-notice>h2 {
  font-weight: 500;
  font-size: 35px;
  color: var(--primary);
  line-height: 15px;
  margin: 0 5px;
  text-shadow: 0 0 15px var(--primary);
}

.notice-deposit .title-notice>h3 {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: var(--text-light);
  margin: 5px 5px 0;
  text-align: center;
}

.notice-deposit .title-notice>h3>small {
  color: var(--danger);
}

.notice-deposit>.subtitle-notice {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 10px;
}

.notice-deposit>.subtitle-notice>.adjectives {
  display: flex;
}

.notice-deposit>.subtitle-notice>.adjectives span {
  background: var(--primary);
  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: var(--text-light);
  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: var(--text-light);
  font-weight: 400;
}

.body-three .body-pix .payment-data h3 span {
  color: var(--primary);
  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: var(--primary) !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 var(--primary);
  padding: 15px;
  width: 200px;
  box-shadow: 0 10px 15px var(--modal-shadow);
}

/* BODY MP */
.body-three .body-mp h2 {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: var(--text-light);
}

.body-three .body-mp button {
  background: var(--primary);
  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: var(--primary);
  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: var(--text-light);
  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 var(--modal-shadow);
}

/* MODAL BANK */
.modal-bank .header-stages {
  flex-direction: column-reverse;
  align-items: center;
}

.stage-one,
.stage-two,
.stage-three,
.notice-deposit {
  padding: 0 15px;
}

.header-stages {
  margin: 10px 0 5px;
}

.modal-bank .header-stages span {
  width: revert;
  align-self: center;
  border-bottom: none;
}

.modal-bank .modal-title .content-modal-title:first-child {
  justify-content: flex-end;
}

.modal-bank .modal-title .title-modal {
  display: none;
}

.modal-bank .content-modal-title .btn-close-modal {
  position: absolute;
  top: 10px;
  right: 10px;
}

.modal-bank .modal-title .content-modal-title:first-child {
  margin: 0;
}

.modal-bank .modal-content {
  padding: 10px 15px;
}

/* WITHDRAW */
.value-avaible-withdraw {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: 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: center;
}

.text-available-value {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: var(--text-light);
  margin: 20px 0px 20px 20px;
}

.text-available-value span {
  color: var(--primary);
  font-weight: bold;
}

.finish-withdraw {
  margin: 0 auto;
}

.btn-finish-withdraw {
  margin: 10px auto;
  background: var(--primary);
  padding: 15px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 700;
  min-width: 280px;
  color: #fff;
  box-shadow: 0 5px 5px var(--bg-shadow);
  transition: .2s ease-in-out;
}

.btn-finish-withdraw:hover {
  transform: scale(1.040);
  box-shadow: 0 0 0 var(--modal-shadow);
}

.container-warn h1 {
  font-weight: 700;
  font-size: 1rem;
  line-height: 18px;
  color: var(--danger);
  margin-bottom: 15px;
  text-align: center;
}

.container-warn p {
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 18px;
  color: var(--text-light);
}

.container-warn p span {
  color: var(--danger);
  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: #c5896d29;
  border-radius: 100px;
  color: #c5896d;
}

.content-history .content-span-history i {
  font-size: 2rem;
}

.content-history h2 {
  font-weight: 400;
  font-size: 1rem;
  color: var(--text-light);
  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: var(--text-light);
  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: var(--text-light);
  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: var(--danger);
  color: #fff !important;
  position: absolute;
  border: 3px solid var(--modal-bg);
  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: var(--primary-dark);
  border-radius: 5px;
  border: 2px solid var(--primary-medium);
  color: #e9e9e9;
  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: var(--text-light);
  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: var(--text-light);
}

.input-withdraw:focus {
  border-bottom: 3px solid var(--primary);
}

.input-withdraw-stage-two h2 {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: var(--text-light);
  /* 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;
  }
}
